chore(docs): Generated References (automated) (#8207)
Co-authored-by: kodiakhq <kodiakhq@users.noreply.github.com>
This commit is contained in:
co-authored by
kodiakhq
parent
5def252e4b
commit
9173dd4f5d
@@ -9171,6 +9171,26 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminLinkPriceListProducts/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminLinkPriceListProducts"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminNotification/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminNotification"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminNotificationListParams/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminNotificationListParams"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminNotificationListResponse/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminNotificationListResponse"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminNotificationParams/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminNotificationParams"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminNotificationResponse/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminNotificationResponse"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminPriceList/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminPriceList"
|
||||
|
||||
+4
-5
@@ -283,14 +283,13 @@ Create the file `src/modules/my-auth/index.ts` with the following content:
|
||||
|
||||
```ts title="src/modules/my-auth/index.ts"
|
||||
import MyAuthProviderService from "./service"
|
||||
import { Module } from "@medusajs/utils"
|
||||
|
||||
export default Module("my-auth", {
|
||||
service: MyAuthProviderService,
|
||||
})
|
||||
export default {
|
||||
services: [MyAuthProviderService],
|
||||
}
|
||||
```
|
||||
|
||||
This exports the module's definition, indicating that the `MyAuthProviderService` is the main service of the module.
|
||||
This exports the module's definition, indicating that the `MyAuthProviderService` is the module's service.
|
||||
|
||||
---
|
||||
|
||||
|
||||
+6
-7
@@ -101,7 +101,7 @@ class MyFileProviderService extends AbstractFileProviderService {
|
||||
|
||||
#### Parameters
|
||||
|
||||
<TypeList types={[{"name":"file","type":"[ProviderUploadFileDTO](../../../types/FileTypes/interfaces/types.FileTypes.ProviderUploadFileDTO/page.mdx)","description":"The file to upload","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"filename","type":"`string`","description":"The filename of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"mimeType","type":"`string`","description":"The mimetype of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"content","type":"`string`","description":"The file content as a binary-encoded string","optional":false,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="upload"/>
|
||||
<TypeList types={[{"name":"file","type":"[ProviderUploadFileDTO](../../../types/FileTypes/interfaces/types.FileTypes.ProviderUploadFileDTO/page.mdx)","description":"The file to upload","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"filename","type":"`string`","description":"The filename of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"mimeType","type":"`string`","description":"The mimetype of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"content","type":"`string`","description":"The file content as a binary-encoded string","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"access","type":"`\"public\"` \\| `\"private\"`","description":"The access level of the file. Defaults to private if not passed","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="upload"/>
|
||||
|
||||
#### Returns
|
||||
|
||||
@@ -159,7 +159,7 @@ class MyFileProviderService extends AbstractFileProviderService {
|
||||
|
||||
#### Parameters
|
||||
|
||||
<TypeList types={[{"name":"fileData","type":"[ProviderGetFileDTO](../../../types/FileTypes/interfaces/types.FileTypes.ProviderGetFileDTO/page.mdx)","description":"The details of the file to get its \npresigned URL.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"fileKey","type":"`string`","description":"The file's key.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"isPrivate","type":"`boolean`","description":"Whether the file is private.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="getPresignedDownloadUrl"/>
|
||||
<TypeList types={[{"name":"fileData","type":"[ProviderGetFileDTO](../../../types/FileTypes/interfaces/types.FileTypes.ProviderGetFileDTO/page.mdx)","description":"The details of the file to get its \npresigned URL.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"fileKey","type":"`string`","description":"The file's key.","optional":false,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="getPresignedDownloadUrl"/>
|
||||
|
||||
#### Returns
|
||||
|
||||
@@ -173,14 +173,13 @@ Create the file `src/modules/my-file/index.ts` with the following content:
|
||||
|
||||
```ts title="src/modules/my-file/index.ts"
|
||||
import MyFileProviderService from "./service"
|
||||
import { Module } from "@medusajs/utils"
|
||||
|
||||
export default Module("my-file", {
|
||||
service: MyFileProviderService,
|
||||
})
|
||||
export default {
|
||||
services: [MyFileProviderService],
|
||||
}
|
||||
```
|
||||
|
||||
This exports the module's definition, indicating that the `MyFileProviderService` is the main service of the module.
|
||||
This exports the module's definition, indicating that the `MyFileProviderService` is the module's service.
|
||||
|
||||
---
|
||||
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+1
-1
@@ -10,4 +10,4 @@ import { TypeList } from "docs-ui"
|
||||
|
||||
## Properties
|
||||
|
||||
<TypeList types={[{"name":"total","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderSummaryDTO"/>
|
||||
<TypeList types={[{"name":"total","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderSummaryDTO"/>
|
||||
|
||||
+4
-5
@@ -50,14 +50,13 @@ Create the file `src/modules/my-fulfillment/index.ts` with the following content
|
||||
|
||||
```ts title="src/modules/my-fulfillment/index.ts"
|
||||
import MyFulfillmentProviderService from "./service"
|
||||
import { Module } from "@medusajs/utils"
|
||||
|
||||
export default Module("my-fulfillment", {
|
||||
service: MyFulfillmentProviderService,
|
||||
})
|
||||
export default {
|
||||
services: [MyFulfillmentProviderService],
|
||||
}
|
||||
```
|
||||
|
||||
This exports the module's definition, indicating that the `MyFulfillmentProviderService` is the main service of the module.
|
||||
This exports the module's definition, indicating that the `MyFulfillmentProviderService` is the module's service.
|
||||
|
||||
---
|
||||
|
||||
|
||||
+4
-5
@@ -120,14 +120,13 @@ Create the file `src/modules/my-notification/index.ts` with the following conten
|
||||
|
||||
```ts title="src/modules/my-notification/index.ts"
|
||||
import MyNotificationProviderService from "./service"
|
||||
import { Module } from "@medusajs/utils"
|
||||
|
||||
export default Module("my-notification", {
|
||||
service: MyNotificationProviderService,
|
||||
})
|
||||
export default {
|
||||
services: [MyNotificationProviderService],
|
||||
}
|
||||
```
|
||||
|
||||
This exports the module's definition, indicating that the `MyNotificationProviderService` is the main service of the module.
|
||||
This exports the module's definition, indicating that the `MyNotificationProviderService` is the module's service.
|
||||
|
||||
---
|
||||
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+2
-2
File diff suppressed because one or more lines are too long
+2
-2
File diff suppressed because one or more lines are too long
+1
-1
@@ -12,7 +12,7 @@ This documentation provides a reference to the `cancelFulfillment` method. This
|
||||
|
||||
## Parameters
|
||||
|
||||
<TypeList types={[{"name":"data","type":"[CancelOrderFulfillmentDTO](../../../interfaces/order.CancelOrderFulfillmentDTO/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"items","type":"[BaseOrderBundledItemActionsDTO](../../../interfaces/order.BaseOrderBundledItemActionsDTO/page.mdx)[]","description":"","optional":false,"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<string, unknown>`","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<string, unknown>`","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="cancelFulfillment"/>
|
||||
<TypeList types={[{"name":"data","type":"[CancelOrderFulfillmentDTO](../../../interfaces/order.CancelOrderFulfillmentDTO/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"items","type":"[BaseOrderBundledItemActionsDTO](../../../interfaces/order.BaseOrderBundledItemActionsDTO/page.mdx)[]","description":"","optional":false,"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":"`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<string, unknown>`","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":"`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<string, unknown>`","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="cancelFulfillment"/>
|
||||
|
||||
## Returns
|
||||
|
||||
|
||||
+2
-2
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+2
-2
File diff suppressed because one or more lines are too long
+2
-2
File diff suppressed because one or more lines are too long
+3
-3
File diff suppressed because one or more lines are too long
+3
-3
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+2
-2
File diff suppressed because one or more lines are too long
+3
-3
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+2
-2
File diff suppressed because one or more lines are too long
+1
-1
@@ -12,7 +12,7 @@ This documentation provides a reference to the `registerFulfillment` method. Thi
|
||||
|
||||
## Parameters
|
||||
|
||||
<TypeList types={[{"name":"data","type":"[RegisterOrderFulfillmentDTO](../../../interfaces/order.RegisterOrderFulfillmentDTO/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"items","type":"[BaseOrderBundledItemActionsDTO](../../../interfaces/order.BaseOrderBundledItemActionsDTO/page.mdx)[]","description":"","optional":false,"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<string, unknown>`","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<string, unknown>`","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="registerFulfillment"/>
|
||||
<TypeList types={[{"name":"data","type":"[RegisterOrderFulfillmentDTO](../../../interfaces/order.RegisterOrderFulfillmentDTO/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"items","type":"[BaseOrderBundledItemActionsDTO](../../../interfaces/order.BaseOrderBundledItemActionsDTO/page.mdx)[]","description":"","optional":false,"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":"`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<string, unknown>`","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":"`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<string, unknown>`","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="registerFulfillment"/>
|
||||
|
||||
## Returns
|
||||
|
||||
|
||||
+1
-1
@@ -12,7 +12,7 @@ This documentation provides a reference to the `registerShipment` method. This b
|
||||
|
||||
## Parameters
|
||||
|
||||
<TypeList types={[{"name":"data","type":"[RegisterOrderShipmentDTO](../../../interfaces/order.RegisterOrderShipmentDTO/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"order_id","type":"`string`","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":"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<string, unknown>`","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<string, unknown>`","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"/>
|
||||
<TypeList types={[{"name":"data","type":"[RegisterOrderShipmentDTO](../../../interfaces/order.RegisterOrderShipmentDTO/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"order_id","type":"`string`","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":"description","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`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<string, unknown>`","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":"`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<string, unknown>`","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
|
||||
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+3
-3
File diff suppressed because one or more lines are too long
+1
-1
@@ -6,4 +6,4 @@ import { TypeList } from "docs-ui"
|
||||
|
||||
# BaseOrderBundledActionsDTO
|
||||
|
||||
<TypeList types={[{"name":"order_id","type":"`string`","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":"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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="BaseOrderBundledActionsDTO"/>
|
||||
<TypeList types={[{"name":"order_id","type":"`string`","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":"description","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="BaseOrderBundledActionsDTO"/>
|
||||
|
||||
+1
-1
@@ -8,4 +8,4 @@ import { TypeList } from "docs-ui"
|
||||
|
||||
ORDER bundled action flows
|
||||
|
||||
<TypeList types={[{"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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="BaseOrderBundledItemActionsDTO"/>
|
||||
<TypeList types={[{"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":"`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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="BaseOrderBundledItemActionsDTO"/>
|
||||
|
||||
@@ -6,4 +6,4 @@ import { TypeList } from "docs-ui"
|
||||
|
||||
# CancelOrderClaimDTO
|
||||
|
||||
<TypeList types={[{"name":"claim_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="CancelOrderClaimDTO"/>
|
||||
<TypeList types={[{"name":"claim_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_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":"`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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="CancelOrderClaimDTO"/>
|
||||
|
||||
+1
-1
@@ -6,4 +6,4 @@ import { TypeList } from "docs-ui"
|
||||
|
||||
# CancelOrderExchangeDTO
|
||||
|
||||
<TypeList types={[{"name":"exchange_id","type":"`string`","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":"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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="CancelOrderExchangeDTO"/>
|
||||
<TypeList types={[{"name":"exchange_id","type":"`string`","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":"description","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="CancelOrderExchangeDTO"/>
|
||||
|
||||
+1
-1
@@ -6,4 +6,4 @@ import { TypeList } from "docs-ui"
|
||||
|
||||
# CancelOrderFulfillmentDTO
|
||||
|
||||
<TypeList types={[{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"items","type":"[BaseOrderBundledItemActionsDTO](../order.BaseOrderBundledItemActionsDTO/page.mdx)[]","description":"","optional":false,"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<string, unknown>`","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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="CancelOrderFulfillmentDTO"/>
|
||||
<TypeList types={[{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"items","type":"[BaseOrderBundledItemActionsDTO](../order.BaseOrderBundledItemActionsDTO/page.mdx)[]","description":"","optional":false,"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":"`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<string, unknown>`","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":"`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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="CancelOrderFulfillmentDTO"/>
|
||||
|
||||
@@ -6,4 +6,4 @@ import { TypeList } from "docs-ui"
|
||||
|
||||
# CancelOrderReturnDTO
|
||||
|
||||
<TypeList types={[{"name":"return_id","type":"`string`","description":"","optional":false,"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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="CancelOrderReturnDTO"/>
|
||||
<TypeList types={[{"name":"return_id","type":"`string`","description":"","optional":false,"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":"`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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="CancelOrderReturnDTO"/>
|
||||
|
||||
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -6,4 +6,4 @@ import { TypeList } from "docs-ui"
|
||||
|
||||
# ReceiveOrderReturnDTO
|
||||
|
||||
<TypeList types={[{"name":"items","type":"[BaseOrderBundledItemActionsDTO](../order.BaseOrderBundledItemActionsDTO/page.mdx)[]","description":"","optional":false,"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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_id","type":"`string`","description":"","optional":false,"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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="ReceiveOrderReturnDTO"/>
|
||||
<TypeList types={[{"name":"items","type":"[BaseOrderBundledItemActionsDTO](../order.BaseOrderBundledItemActionsDTO/page.mdx)[]","description":"","optional":false,"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":"`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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_id","type":"`string`","description":"","optional":false,"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":"`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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="ReceiveOrderReturnDTO"/>
|
||||
|
||||
+1
-1
@@ -6,4 +6,4 @@ import { TypeList } from "docs-ui"
|
||||
|
||||
# RegisterOrderFulfillmentDTO
|
||||
|
||||
<TypeList types={[{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"items","type":"[BaseOrderBundledItemActionsDTO](../order.BaseOrderBundledItemActionsDTO/page.mdx)[]","description":"","optional":false,"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<string, unknown>`","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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="RegisterOrderFulfillmentDTO"/>
|
||||
<TypeList types={[{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"items","type":"[BaseOrderBundledItemActionsDTO](../order.BaseOrderBundledItemActionsDTO/page.mdx)[]","description":"","optional":false,"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":"`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<string, unknown>`","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":"`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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="RegisterOrderFulfillmentDTO"/>
|
||||
|
||||
+1
-1
@@ -6,4 +6,4 @@ import { TypeList } from "docs-ui"
|
||||
|
||||
# RegisterOrderShipmentDTO
|
||||
|
||||
<TypeList types={[{"name":"order_id","type":"`string`","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":"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<string, unknown>`","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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="RegisterOrderShipmentDTO"/>
|
||||
<TypeList types={[{"name":"order_id","type":"`string`","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":"description","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`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<string, unknown>`","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":"`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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="RegisterOrderShipmentDTO"/>
|
||||
|
||||
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
@@ -6,4 +6,4 @@ import { TypeList } from "docs-ui"
|
||||
|
||||
# UpdateReturnDTO
|
||||
|
||||
<TypeList types={[{"name":"id","type":"`string`","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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"items","type":"`object`[]","description":"","optional":true,"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":"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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="UpdateReturnDTO"/>
|
||||
<TypeList types={[{"name":"id","type":"`string`","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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"items","type":"`object`[]","description":"","optional":true,"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<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="UpdateReturnDTO"/>
|
||||
|
||||
@@ -10,4 +10,4 @@ import { TypeList } from "docs-ui"
|
||||
|
||||
## Properties
|
||||
|
||||
<TypeList types={[{"name":"total","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderSummaryDTO"/>
|
||||
<TypeList types={[{"name":"total","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderSummaryDTO"/>
|
||||
|
||||
+1
-1
@@ -6,4 +6,4 @@ The File to be created.
|
||||
|
||||
## Properties
|
||||
|
||||
<TypeList types={[{"name":"filename","type":"`string`","description":"The filename of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"mimeType","type":"`string`","description":"The mimetype of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"content","type":"`string`","description":"The file content as a binary-encoded string","optional":false,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="CreateFileDTO"/>
|
||||
<TypeList types={[{"name":"filename","type":"`string`","description":"The filename of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"mimeType","type":"`string`","description":"The mimetype of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"content","type":"`string`","description":"The file content as a binary-encoded string","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"access","type":"`\"public\"` \\| `\"private\"`","description":"The access level of the file. Defaults to private if not passed","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="CreateFileDTO"/>
|
||||
|
||||
+2
-2
@@ -24,7 +24,7 @@ const [file] = await fileModuleService.createFiles([{
|
||||
|
||||
#### Parameters
|
||||
|
||||
<TypeList types={[{"name":"data","type":"[CreateFileDTO](../types.FileTypes.CreateFileDTO/page.mdx)[]","description":"The files to be created.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"filename","type":"`string`","description":"The filename of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"mimeType","type":"`string`","description":"The mimetype of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"content","type":"`string`","description":"The file content as a binary-encoded string","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/types.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/types.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="createFiles"/>
|
||||
<TypeList types={[{"name":"data","type":"[CreateFileDTO](../types.FileTypes.CreateFileDTO/page.mdx)[]","description":"The files to be created.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"filename","type":"`string`","description":"The filename of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"mimeType","type":"`string`","description":"The mimetype of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"content","type":"`string`","description":"The file content as a binary-encoded string","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"access","type":"`\"public\"` \\| `\"private\"`","description":"The access level of the file. Defaults to private if not passed","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/types.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/types.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="createFiles"/>
|
||||
|
||||
#### Returns
|
||||
|
||||
@@ -46,7 +46,7 @@ const file = await fileModuleService.createFiles({
|
||||
|
||||
#### Parameters
|
||||
|
||||
<TypeList types={[{"name":"data","type":"[CreateFileDTO](../types.FileTypes.CreateFileDTO/page.mdx)","description":"The file to be created.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"filename","type":"`string`","description":"The filename of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"mimeType","type":"`string`","description":"The mimetype of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"content","type":"`string`","description":"The file content as a binary-encoded string","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/types.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/types.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="createFiles"/>
|
||||
<TypeList types={[{"name":"data","type":"[CreateFileDTO](../types.FileTypes.CreateFileDTO/page.mdx)","description":"The file to be created.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"filename","type":"`string`","description":"The filename of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"mimeType","type":"`string`","description":"The mimetype of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"content","type":"`string`","description":"The file content as a binary-encoded string","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"access","type":"`\"public\"` \\| `\"private\"`","description":"The access level of the file. Defaults to private if not passed","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/types.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/types.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="createFiles"/>
|
||||
|
||||
#### Returns
|
||||
|
||||
|
||||
+2
-2
@@ -10,7 +10,7 @@ This method is used to upload a file
|
||||
|
||||
#### Parameters
|
||||
|
||||
<TypeList types={[{"name":"file","type":"[ProviderUploadFileDTO](../types.FileTypes.ProviderUploadFileDTO/page.mdx)","description":"The contents and metadata of the file.\nAmong the file’s details, you can access the file’s path in the `path` property of the file object.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"filename","type":"`string`","description":"The filename of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"mimeType","type":"`string`","description":"The mimetype of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"content","type":"`string`","description":"The file content as a binary-encoded string","optional":false,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="upload"/>
|
||||
<TypeList types={[{"name":"file","type":"[ProviderUploadFileDTO](../types.FileTypes.ProviderUploadFileDTO/page.mdx)","description":"The contents and metadata of the file.\nAmong the file’s details, you can access the file’s path in the `path` property of the file object.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"filename","type":"`string`","description":"The filename of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"mimeType","type":"`string`","description":"The mimetype of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"content","type":"`string`","description":"The file content as a binary-encoded string","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"access","type":"`\"public\"` \\| `\"private\"`","description":"The access level of the file. Defaults to private if not passed","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="upload"/>
|
||||
|
||||
#### Returns
|
||||
|
||||
@@ -36,7 +36,7 @@ If your file service doesn’t perform or offer a similar functionality, you can
|
||||
|
||||
#### Parameters
|
||||
|
||||
<TypeList types={[{"name":"fileData","type":"[ProviderGetFileDTO](../types.FileTypes.ProviderGetFileDTO/page.mdx)","description":"The details of the file.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"fileKey","type":"`string`","description":"The file's key.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"isPrivate","type":"`boolean`","description":"Whether the file is private.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="getPresignedDownloadUrl"/>
|
||||
<TypeList types={[{"name":"fileData","type":"[ProviderGetFileDTO](../types.FileTypes.ProviderGetFileDTO/page.mdx)","description":"The details of the file.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"fileKey","type":"`string`","description":"The file's key.","optional":false,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="getPresignedDownloadUrl"/>
|
||||
|
||||
#### Returns
|
||||
|
||||
|
||||
+1
-1
@@ -4,4 +4,4 @@ import { TypeList } from "docs-ui"
|
||||
|
||||
## Properties
|
||||
|
||||
<TypeList types={[{"name":"upload_dir","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"backend_url","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="LocalFileServiceOptions"/>
|
||||
<TypeList types={[{"name":"upload_dir","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"private_upload_dir","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"backend_url","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="LocalFileServiceOptions"/>
|
||||
|
||||
+1
-1
@@ -6,4 +6,4 @@ The details of a file to retrieve.
|
||||
|
||||
## Properties
|
||||
|
||||
<TypeList types={[{"name":"fileKey","type":"`string`","description":"The file's key.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"isPrivate","type":"`boolean`","description":"Whether the file is private.","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="ProviderGetFileDTO"/>
|
||||
<TypeList types={[{"name":"fileKey","type":"`string`","description":"The file's key.","optional":false,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="ProviderGetFileDTO"/>
|
||||
|
||||
+1
-1
@@ -6,4 +6,4 @@ The details of the file to create.
|
||||
|
||||
## Properties
|
||||
|
||||
<TypeList types={[{"name":"filename","type":"`string`","description":"The filename of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"mimeType","type":"`string`","description":"The mimetype of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"content","type":"`string`","description":"The file content as a binary-encoded string","optional":false,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="ProviderUploadFileDTO"/>
|
||||
<TypeList types={[{"name":"filename","type":"`string`","description":"The filename of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"mimeType","type":"`string`","description":"The mimetype of the uploaded file","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"content","type":"`string`","description":"The file content as a binary-encoded string","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"access","type":"`\"public\"` \\| `\"private\"`","description":"The access level of the file. Defaults to private if not passed","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="ProviderUploadFileDTO"/>
|
||||
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
import { TypeList } from "docs-ui"
|
||||
|
||||
# AdminNotification
|
||||
|
||||
## Properties
|
||||
|
||||
<TypeList types={[{"name":"id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"to","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"channel","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"template","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`null` \\| `Record<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"trigger_type","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"resource_id","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"resource_type","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"receiver_id","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"original_notification_id","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"external_id","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="AdminNotification"/>
|
||||
+9
File diff suppressed because one or more lines are too long
+7
@@ -0,0 +1,7 @@
|
||||
import { TypeList } from "docs-ui"
|
||||
|
||||
# AdminNotificationListResponse
|
||||
|
||||
## Properties
|
||||
|
||||
<TypeList types={[{"name":"limit","type":"`number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"offset","type":"`number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"count","type":"`number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"notifications","type":"[AdminNotification](../types.HttpTypes.AdminNotification/page.mdx)[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"to","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"channel","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"template","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`null` \\| `Record<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"trigger_type","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"resource_id","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"resource_type","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"receiver_id","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"original_notification_id","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"external_id","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="AdminNotificationListResponse"/>
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
import { TypeList } from "docs-ui"
|
||||
|
||||
# AdminNotificationParams
|
||||
|
||||
## Properties
|
||||
|
||||
<TypeList types={[{"name":"fields","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="AdminNotificationParams"/>
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
import { TypeList } from "docs-ui"
|
||||
|
||||
# AdminNotificationResponse
|
||||
|
||||
## Properties
|
||||
|
||||
<TypeList types={[{"name":"notification","type":"[AdminNotification](../types.HttpTypes.AdminNotification/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"to","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"channel","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"template","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`null` \\| `Record<string, unknown>`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"trigger_type","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"resource_id","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"resource_type","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"receiver_id","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"original_notification_id","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"external_id","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="AdminNotificationResponse"/>
|
||||
@@ -46,6 +46,11 @@ import { TypeList } from "docs-ui"
|
||||
- [AdminUpdateInventoryItem](../HttpTypes/interfaces/types.HttpTypes.AdminUpdateInventoryItem/page.mdx)
|
||||
- [AdminInventoryItemParams](../HttpTypes/interfaces/types.HttpTypes.AdminInventoryItemParams/page.mdx)
|
||||
- [AdminInventoryItemResponse](../HttpTypes/interfaces/types.HttpTypes.AdminInventoryItemResponse/page.mdx)
|
||||
- [AdminNotification](../HttpTypes/interfaces/types.HttpTypes.AdminNotification/page.mdx)
|
||||
- [AdminNotificationListParams](../HttpTypes/interfaces/types.HttpTypes.AdminNotificationListParams/page.mdx)
|
||||
- [AdminNotificationParams](../HttpTypes/interfaces/types.HttpTypes.AdminNotificationParams/page.mdx)
|
||||
- [AdminNotificationResponse](../HttpTypes/interfaces/types.HttpTypes.AdminNotificationResponse/page.mdx)
|
||||
- [AdminNotificationListResponse](../HttpTypes/interfaces/types.HttpTypes.AdminNotificationListResponse/page.mdx)
|
||||
- [AdminPriceListPrice](../HttpTypes/interfaces/types.HttpTypes.AdminPriceListPrice/page.mdx)
|
||||
- [AdminPriceList](../HttpTypes/interfaces/types.HttpTypes.AdminPriceList/page.mdx)
|
||||
- [AdminCreatePriceListPrice](../HttpTypes/interfaces/types.HttpTypes.AdminCreatePriceListPrice/page.mdx)
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"id": 4931,
|
||||
"id": 4926,
|
||||
"name": "inventory-next-models",
|
||||
"variant": "project",
|
||||
"kind": 1,
|
||||
@@ -18,28 +18,28 @@
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"id": 4953,
|
||||
"id": 4948,
|
||||
"name": "InventoryItem",
|
||||
"variant": "declaration",
|
||||
"kind": 128,
|
||||
"flags": {},
|
||||
"children": [
|
||||
{
|
||||
"id": 4954,
|
||||
"id": 4949,
|
||||
"name": "constructor",
|
||||
"variant": "declaration",
|
||||
"kind": 512,
|
||||
"flags": {},
|
||||
"signatures": [
|
||||
{
|
||||
"id": 4955,
|
||||
"id": 4950,
|
||||
"name": "new InventoryItem",
|
||||
"variant": "signature",
|
||||
"kind": 16384,
|
||||
"flags": {},
|
||||
"type": {
|
||||
"type": "reference",
|
||||
"target": 4953,
|
||||
"target": 4948,
|
||||
"name": "InventoryItem",
|
||||
"package": "@medusajs/inventory-next"
|
||||
}
|
||||
@@ -47,7 +47,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4982,
|
||||
"id": 4977,
|
||||
"name": "[OptionalProps]",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -63,7 +63,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 4956,
|
||||
"id": 4951,
|
||||
"name": "id",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -74,7 +74,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 4957,
|
||||
"id": 4952,
|
||||
"name": "created_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -90,7 +90,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 4958,
|
||||
"id": 4953,
|
||||
"name": "updated_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -106,7 +106,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 4959,
|
||||
"id": 4954,
|
||||
"name": "deleted_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -132,7 +132,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 4960,
|
||||
"id": 4955,
|
||||
"name": "sku",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -153,7 +153,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 4961,
|
||||
"id": 4956,
|
||||
"name": "origin_country",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -174,7 +174,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 4962,
|
||||
"id": 4957,
|
||||
"name": "hs_code",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -195,7 +195,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 4963,
|
||||
"id": 4958,
|
||||
"name": "mid_code",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -216,7 +216,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 4964,
|
||||
"id": 4959,
|
||||
"name": "material",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -237,7 +237,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 4965,
|
||||
"id": 4960,
|
||||
"name": "weight",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -258,7 +258,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 4966,
|
||||
"id": 4961,
|
||||
"name": "length",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -279,7 +279,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 4967,
|
||||
"id": 4962,
|
||||
"name": "height",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -300,7 +300,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 4968,
|
||||
"id": 4963,
|
||||
"name": "width",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -321,7 +321,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 4969,
|
||||
"id": 4964,
|
||||
"name": "requires_shipping",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -333,7 +333,7 @@
|
||||
"defaultValue": "true"
|
||||
},
|
||||
{
|
||||
"id": 4970,
|
||||
"id": 4965,
|
||||
"name": "description",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -354,7 +354,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 4971,
|
||||
"id": 4966,
|
||||
"name": "title",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -375,7 +375,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 4972,
|
||||
"id": 4967,
|
||||
"name": "thumbnail",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -396,7 +396,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 4973,
|
||||
"id": 4968,
|
||||
"name": "metadata",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -432,7 +432,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 4974,
|
||||
"id": 4969,
|
||||
"name": "location_levels",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -446,7 +446,7 @@
|
||||
"typeArguments": [
|
||||
{
|
||||
"type": "reference",
|
||||
"target": 4983,
|
||||
"target": 4978,
|
||||
"name": "InventoryLevel",
|
||||
"package": "@medusajs/inventory-next"
|
||||
},
|
||||
@@ -461,7 +461,7 @@
|
||||
"defaultValue": "..."
|
||||
},
|
||||
{
|
||||
"id": 4975,
|
||||
"id": 4970,
|
||||
"name": "reservation_items",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -475,7 +475,7 @@
|
||||
"typeArguments": [
|
||||
{
|
||||
"type": "reference",
|
||||
"target": 4932,
|
||||
"target": 4927,
|
||||
"name": "ReservationItem",
|
||||
"package": "@medusajs/inventory-next"
|
||||
},
|
||||
@@ -490,7 +490,7 @@
|
||||
"defaultValue": "..."
|
||||
},
|
||||
{
|
||||
"id": 4976,
|
||||
"id": 4971,
|
||||
"name": "reserved_quantity",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -501,7 +501,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 4977,
|
||||
"id": 4972,
|
||||
"name": "stocked_quantity",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -516,13 +516,18 @@
|
||||
{
|
||||
"title": "Constructors",
|
||||
"children": [
|
||||
4954
|
||||
4949
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Properties",
|
||||
"children": [
|
||||
4982,
|
||||
4977,
|
||||
4951,
|
||||
4952,
|
||||
4953,
|
||||
4954,
|
||||
4955,
|
||||
4956,
|
||||
4957,
|
||||
4958,
|
||||
@@ -539,39 +544,34 @@
|
||||
4969,
|
||||
4970,
|
||||
4971,
|
||||
4972,
|
||||
4973,
|
||||
4974,
|
||||
4975,
|
||||
4976,
|
||||
4977
|
||||
4972
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4983,
|
||||
"id": 4978,
|
||||
"name": "InventoryLevel",
|
||||
"variant": "declaration",
|
||||
"kind": 128,
|
||||
"flags": {},
|
||||
"children": [
|
||||
{
|
||||
"id": 4984,
|
||||
"id": 4979,
|
||||
"name": "constructor",
|
||||
"variant": "declaration",
|
||||
"kind": 512,
|
||||
"flags": {},
|
||||
"signatures": [
|
||||
{
|
||||
"id": 4985,
|
||||
"id": 4980,
|
||||
"name": "new InventoryLevel",
|
||||
"variant": "signature",
|
||||
"kind": 16384,
|
||||
"flags": {},
|
||||
"type": {
|
||||
"type": "reference",
|
||||
"target": 4983,
|
||||
"target": 4978,
|
||||
"name": "InventoryLevel",
|
||||
"package": "@medusajs/inventory-next"
|
||||
}
|
||||
@@ -579,7 +579,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4986,
|
||||
"id": 4981,
|
||||
"name": "id",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -590,7 +590,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 4987,
|
||||
"id": 4982,
|
||||
"name": "created_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -606,7 +606,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 4988,
|
||||
"id": 4983,
|
||||
"name": "updated_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -622,7 +622,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 4989,
|
||||
"id": 4984,
|
||||
"name": "deleted_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -648,7 +648,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 4990,
|
||||
"id": 4985,
|
||||
"name": "inventory_item_id",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -659,7 +659,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 4991,
|
||||
"id": 4986,
|
||||
"name": "location_id",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -670,7 +670,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 4992,
|
||||
"id": 4987,
|
||||
"name": "stocked_quantity",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -682,7 +682,7 @@
|
||||
"defaultValue": "0"
|
||||
},
|
||||
{
|
||||
"id": 4993,
|
||||
"id": 4988,
|
||||
"name": "reserved_quantity",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -694,7 +694,7 @@
|
||||
"defaultValue": "0"
|
||||
},
|
||||
{
|
||||
"id": 4994,
|
||||
"id": 4989,
|
||||
"name": "incoming_quantity",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -706,7 +706,7 @@
|
||||
"defaultValue": "0"
|
||||
},
|
||||
{
|
||||
"id": 4995,
|
||||
"id": 4990,
|
||||
"name": "metadata",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -741,20 +741,20 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 4996,
|
||||
"id": 4991,
|
||||
"name": "inventory_item",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
"flags": {},
|
||||
"type": {
|
||||
"type": "reference",
|
||||
"target": 4953,
|
||||
"target": 4948,
|
||||
"name": "InventoryItem",
|
||||
"package": "@medusajs/inventory-next"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 4997,
|
||||
"id": 4992,
|
||||
"name": "available_quantity",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -779,51 +779,51 @@
|
||||
{
|
||||
"title": "Constructors",
|
||||
"children": [
|
||||
4984
|
||||
4979
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Properties",
|
||||
"children": [
|
||||
4981,
|
||||
4982,
|
||||
4983,
|
||||
4984,
|
||||
4985,
|
||||
4986,
|
||||
4987,
|
||||
4988,
|
||||
4989,
|
||||
4990,
|
||||
4991,
|
||||
4992,
|
||||
4993,
|
||||
4994,
|
||||
4995,
|
||||
4996,
|
||||
4997
|
||||
4992
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4932,
|
||||
"id": 4927,
|
||||
"name": "ReservationItem",
|
||||
"variant": "declaration",
|
||||
"kind": 128,
|
||||
"flags": {},
|
||||
"children": [
|
||||
{
|
||||
"id": 4933,
|
||||
"id": 4928,
|
||||
"name": "constructor",
|
||||
"variant": "declaration",
|
||||
"kind": 512,
|
||||
"flags": {},
|
||||
"signatures": [
|
||||
{
|
||||
"id": 4934,
|
||||
"id": 4929,
|
||||
"name": "new ReservationItem",
|
||||
"variant": "signature",
|
||||
"kind": 16384,
|
||||
"flags": {},
|
||||
"type": {
|
||||
"type": "reference",
|
||||
"target": 4932,
|
||||
"target": 4927,
|
||||
"name": "ReservationItem",
|
||||
"package": "@medusajs/inventory-next"
|
||||
}
|
||||
@@ -831,7 +831,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4935,
|
||||
"id": 4930,
|
||||
"name": "id",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -842,7 +842,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 4936,
|
||||
"id": 4931,
|
||||
"name": "created_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -858,7 +858,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 4937,
|
||||
"id": 4932,
|
||||
"name": "updated_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -874,7 +874,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 4938,
|
||||
"id": 4933,
|
||||
"name": "deleted_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -900,7 +900,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 4939,
|
||||
"id": 4934,
|
||||
"name": "line_item_id",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -921,7 +921,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 4940,
|
||||
"id": 4935,
|
||||
"name": "allow_backorder",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -933,7 +933,7 @@
|
||||
"defaultValue": "false"
|
||||
},
|
||||
{
|
||||
"id": 4941,
|
||||
"id": 4936,
|
||||
"name": "location_id",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -944,7 +944,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 4942,
|
||||
"id": 4937,
|
||||
"name": "quantity",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -955,7 +955,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 4943,
|
||||
"id": 4938,
|
||||
"name": "external_id",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -976,7 +976,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 4944,
|
||||
"id": 4939,
|
||||
"name": "description",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -997,7 +997,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 4945,
|
||||
"id": 4940,
|
||||
"name": "created_by",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -1018,7 +1018,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 4946,
|
||||
"id": 4941,
|
||||
"name": "metadata",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -1054,7 +1054,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 4947,
|
||||
"id": 4942,
|
||||
"name": "inventory_item_id",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -1065,14 +1065,14 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 4948,
|
||||
"id": 4943,
|
||||
"name": "inventory_item",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
"flags": {},
|
||||
"type": {
|
||||
"type": "reference",
|
||||
"target": 4953,
|
||||
"target": 4948,
|
||||
"name": "InventoryItem",
|
||||
"package": "@medusajs/inventory-next"
|
||||
}
|
||||
@@ -1082,12 +1082,17 @@
|
||||
{
|
||||
"title": "Constructors",
|
||||
"children": [
|
||||
4933
|
||||
4928
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Properties",
|
||||
"children": [
|
||||
4930,
|
||||
4931,
|
||||
4932,
|
||||
4933,
|
||||
4934,
|
||||
4935,
|
||||
4936,
|
||||
4937,
|
||||
@@ -1096,12 +1101,7 @@
|
||||
4940,
|
||||
4941,
|
||||
4942,
|
||||
4943,
|
||||
4944,
|
||||
4945,
|
||||
4946,
|
||||
4947,
|
||||
4948
|
||||
4943
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -1111,223 +1111,223 @@
|
||||
{
|
||||
"title": "Classes",
|
||||
"children": [
|
||||
4953,
|
||||
4983,
|
||||
4932
|
||||
4948,
|
||||
4978,
|
||||
4927
|
||||
]
|
||||
}
|
||||
],
|
||||
"packageName": "@medusajs/inventory-next",
|
||||
"symbolIdMap": {
|
||||
"4931": {
|
||||
"4926": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/index.ts",
|
||||
"qualifiedName": ""
|
||||
},
|
||||
"4932": {
|
||||
"4927": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts",
|
||||
"qualifiedName": "ReservationItem"
|
||||
},
|
||||
"4935": {
|
||||
"4930": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts",
|
||||
"qualifiedName": "ReservationItem.id"
|
||||
},
|
||||
"4936": {
|
||||
"4931": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts",
|
||||
"qualifiedName": "ReservationItem.created_at"
|
||||
},
|
||||
"4937": {
|
||||
"4932": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts",
|
||||
"qualifiedName": "ReservationItem.updated_at"
|
||||
},
|
||||
"4938": {
|
||||
"4933": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts",
|
||||
"qualifiedName": "ReservationItem.deleted_at"
|
||||
},
|
||||
"4939": {
|
||||
"4934": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts",
|
||||
"qualifiedName": "ReservationItem.line_item_id"
|
||||
},
|
||||
"4940": {
|
||||
"4935": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts",
|
||||
"qualifiedName": "ReservationItem.allow_backorder"
|
||||
},
|
||||
"4941": {
|
||||
"4936": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts",
|
||||
"qualifiedName": "ReservationItem.location_id"
|
||||
},
|
||||
"4942": {
|
||||
"4937": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts",
|
||||
"qualifiedName": "ReservationItem.quantity"
|
||||
},
|
||||
"4943": {
|
||||
"4938": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts",
|
||||
"qualifiedName": "ReservationItem.external_id"
|
||||
},
|
||||
"4944": {
|
||||
"4939": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts",
|
||||
"qualifiedName": "ReservationItem.description"
|
||||
},
|
||||
"4945": {
|
||||
"4940": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts",
|
||||
"qualifiedName": "ReservationItem.created_by"
|
||||
},
|
||||
"4946": {
|
||||
"4941": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts",
|
||||
"qualifiedName": "ReservationItem.metadata"
|
||||
},
|
||||
"4947": {
|
||||
"4942": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts",
|
||||
"qualifiedName": "ReservationItem.inventory_item_id"
|
||||
},
|
||||
"4948": {
|
||||
"4943": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts",
|
||||
"qualifiedName": "ReservationItem.inventory_item"
|
||||
},
|
||||
"4953": {
|
||||
"4948": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem"
|
||||
},
|
||||
"4956": {
|
||||
"4951": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.id"
|
||||
},
|
||||
"4957": {
|
||||
"4952": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.created_at"
|
||||
},
|
||||
"4958": {
|
||||
"4953": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.updated_at"
|
||||
},
|
||||
"4959": {
|
||||
"4954": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.deleted_at"
|
||||
},
|
||||
"4960": {
|
||||
"4955": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.sku"
|
||||
},
|
||||
"4961": {
|
||||
"4956": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.origin_country"
|
||||
},
|
||||
"4962": {
|
||||
"4957": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.hs_code"
|
||||
},
|
||||
"4963": {
|
||||
"4958": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.mid_code"
|
||||
},
|
||||
"4964": {
|
||||
"4959": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.material"
|
||||
},
|
||||
"4965": {
|
||||
"4960": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.weight"
|
||||
},
|
||||
"4966": {
|
||||
"4961": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.length"
|
||||
},
|
||||
"4967": {
|
||||
"4962": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.height"
|
||||
},
|
||||
"4968": {
|
||||
"4963": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.width"
|
||||
},
|
||||
"4969": {
|
||||
"4964": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.requires_shipping"
|
||||
},
|
||||
"4970": {
|
||||
"4965": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.description"
|
||||
},
|
||||
"4971": {
|
||||
"4966": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.title"
|
||||
},
|
||||
"4972": {
|
||||
"4967": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.thumbnail"
|
||||
},
|
||||
"4973": {
|
||||
"4968": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.metadata"
|
||||
},
|
||||
"4974": {
|
||||
"4969": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.location_levels"
|
||||
},
|
||||
"4975": {
|
||||
"4970": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.reservation_items"
|
||||
},
|
||||
"4976": {
|
||||
"4971": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.reserved_quantity"
|
||||
},
|
||||
"4977": {
|
||||
"4972": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.stocked_quantity"
|
||||
},
|
||||
"4982": {
|
||||
"4977": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts",
|
||||
"qualifiedName": "InventoryItem.[OptionalProps]"
|
||||
},
|
||||
"4983": {
|
||||
"4978": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts",
|
||||
"qualifiedName": "InventoryLevel"
|
||||
},
|
||||
"4986": {
|
||||
"4981": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts",
|
||||
"qualifiedName": "InventoryLevel.id"
|
||||
},
|
||||
"4987": {
|
||||
"4982": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts",
|
||||
"qualifiedName": "InventoryLevel.created_at"
|
||||
},
|
||||
"4988": {
|
||||
"4983": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts",
|
||||
"qualifiedName": "InventoryLevel.updated_at"
|
||||
},
|
||||
"4989": {
|
||||
"4984": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts",
|
||||
"qualifiedName": "InventoryLevel.deleted_at"
|
||||
},
|
||||
"4990": {
|
||||
"4985": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts",
|
||||
"qualifiedName": "InventoryLevel.inventory_item_id"
|
||||
},
|
||||
"4991": {
|
||||
"4986": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts",
|
||||
"qualifiedName": "InventoryLevel.location_id"
|
||||
},
|
||||
"4992": {
|
||||
"4987": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts",
|
||||
"qualifiedName": "InventoryLevel.stocked_quantity"
|
||||
},
|
||||
"4993": {
|
||||
"4988": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts",
|
||||
"qualifiedName": "InventoryLevel.reserved_quantity"
|
||||
},
|
||||
"4994": {
|
||||
"4989": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts",
|
||||
"qualifiedName": "InventoryLevel.incoming_quantity"
|
||||
},
|
||||
"4995": {
|
||||
"4990": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts",
|
||||
"qualifiedName": "InventoryLevel.metadata"
|
||||
},
|
||||
"4996": {
|
||||
"4991": {
|
||||
"sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts",
|
||||
"qualifiedName": "InventoryLevel.inventory_item"
|
||||
},
|
||||
"4997": {
|
||||
"4992": {
|
||||
"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": 4931
|
||||
"1": 4926
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"id": 13488,
|
||||
"id": 13479,
|
||||
"name": "medusa-config",
|
||||
"variant": "project",
|
||||
"kind": 1,
|
||||
"flags": {},
|
||||
"children": [
|
||||
{
|
||||
"id": 13489,
|
||||
"id": 13480,
|
||||
"name": "AdminOptions",
|
||||
"variant": "declaration",
|
||||
"kind": 256,
|
||||
@@ -21,7 +21,7 @@
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"id": 13490,
|
||||
"id": 13481,
|
||||
"name": "disable",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -58,7 +58,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13491,
|
||||
"id": 13482,
|
||||
"name": "path",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -124,7 +124,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13492,
|
||||
"id": 13483,
|
||||
"name": "outDir",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -153,7 +153,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13493,
|
||||
"id": 13484,
|
||||
"name": "backendUrl",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -174,7 +174,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13494,
|
||||
"id": 13485,
|
||||
"name": "vite",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -200,21 +200,21 @@
|
||||
"type": {
|
||||
"type": "reflection",
|
||||
"declaration": {
|
||||
"id": 13495,
|
||||
"id": 13486,
|
||||
"name": "__type",
|
||||
"variant": "declaration",
|
||||
"kind": 65536,
|
||||
"flags": {},
|
||||
"signatures": [
|
||||
{
|
||||
"id": 13496,
|
||||
"id": 13487,
|
||||
"name": "__type",
|
||||
"variant": "signature",
|
||||
"kind": 4096,
|
||||
"flags": {},
|
||||
"parameters": [
|
||||
{
|
||||
"id": 13497,
|
||||
"id": 13488,
|
||||
"name": "config",
|
||||
"variant": "param",
|
||||
"kind": 32768,
|
||||
@@ -249,17 +249,17 @@
|
||||
{
|
||||
"title": "Properties",
|
||||
"children": [
|
||||
13490,
|
||||
13491,
|
||||
13492,
|
||||
13493,
|
||||
13494
|
||||
13481,
|
||||
13482,
|
||||
13483,
|
||||
13484,
|
||||
13485
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 13498,
|
||||
"id": 13489,
|
||||
"name": "HttpCompressionOptions",
|
||||
"variant": "declaration",
|
||||
"kind": 256,
|
||||
@@ -274,7 +274,7 @@
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"id": 13499,
|
||||
"id": 13490,
|
||||
"name": "enabled",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -303,7 +303,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13500,
|
||||
"id": 13491,
|
||||
"name": "level",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -332,7 +332,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13501,
|
||||
"id": 13492,
|
||||
"name": "memLevel",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -361,7 +361,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13502,
|
||||
"id": 13493,
|
||||
"name": "threshold",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -403,16 +403,16 @@
|
||||
{
|
||||
"title": "Properties",
|
||||
"children": [
|
||||
13499,
|
||||
13500,
|
||||
13501,
|
||||
13502
|
||||
13490,
|
||||
13491,
|
||||
13492,
|
||||
13493
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 13503,
|
||||
"id": 13494,
|
||||
"name": "ProjectConfigOptions",
|
||||
"variant": "declaration",
|
||||
"kind": 256,
|
||||
@@ -427,7 +427,7 @@
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"id": 13504,
|
||||
"id": 13495,
|
||||
"name": "databaseName",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -467,7 +467,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13505,
|
||||
"id": 13496,
|
||||
"name": "databaseUrl",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -607,7 +607,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13506,
|
||||
"id": 13497,
|
||||
"name": "databaseSchema",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -640,7 +640,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13507,
|
||||
"id": 13498,
|
||||
"name": "databaseLogging",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -749,7 +749,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13509,
|
||||
"id": 13500,
|
||||
"name": "databaseDriverOptions",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -832,14 +832,14 @@
|
||||
{
|
||||
"type": "reflection",
|
||||
"declaration": {
|
||||
"id": 13510,
|
||||
"id": 13501,
|
||||
"name": "__type",
|
||||
"variant": "declaration",
|
||||
"kind": 65536,
|
||||
"flags": {},
|
||||
"children": [
|
||||
{
|
||||
"id": 13511,
|
||||
"id": 13502,
|
||||
"name": "connection",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -849,14 +849,14 @@
|
||||
"type": {
|
||||
"type": "reflection",
|
||||
"declaration": {
|
||||
"id": 13512,
|
||||
"id": 13503,
|
||||
"name": "__type",
|
||||
"variant": "declaration",
|
||||
"kind": 65536,
|
||||
"flags": {},
|
||||
"children": [
|
||||
{
|
||||
"id": 13513,
|
||||
"id": 13504,
|
||||
"name": "ssl",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -874,14 +874,14 @@
|
||||
"type": {
|
||||
"type": "reflection",
|
||||
"declaration": {
|
||||
"id": 13514,
|
||||
"id": 13505,
|
||||
"name": "__type",
|
||||
"variant": "declaration",
|
||||
"kind": 65536,
|
||||
"flags": {},
|
||||
"children": [
|
||||
{
|
||||
"id": 13515,
|
||||
"id": 13506,
|
||||
"name": "rejectUnauthorized",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -906,7 +906,7 @@
|
||||
{
|
||||
"title": "Properties",
|
||||
"children": [
|
||||
13515
|
||||
13506
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -918,7 +918,7 @@
|
||||
{
|
||||
"title": "Properties",
|
||||
"children": [
|
||||
13513
|
||||
13504
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -930,7 +930,7 @@
|
||||
{
|
||||
"title": "Properties",
|
||||
"children": [
|
||||
13511
|
||||
13502
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -940,7 +940,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13516,
|
||||
"id": 13507,
|
||||
"name": "redisUrl",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -988,7 +988,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13517,
|
||||
"id": 13508,
|
||||
"name": "redisPrefix",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -1036,7 +1036,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13518,
|
||||
"id": 13509,
|
||||
"name": "redisOptions",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -1073,7 +1073,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13519,
|
||||
"id": 13510,
|
||||
"name": "sessionOptions",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -1110,7 +1110,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13521,
|
||||
"id": 13512,
|
||||
"name": "jobsBatchSize",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -1150,7 +1150,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13522,
|
||||
"id": 13513,
|
||||
"name": "workerMode",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -1227,7 +1227,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13523,
|
||||
"id": 13514,
|
||||
"name": "http",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -1254,14 +1254,14 @@
|
||||
"type": {
|
||||
"type": "reflection",
|
||||
"declaration": {
|
||||
"id": 13524,
|
||||
"id": 13515,
|
||||
"name": "__type",
|
||||
"variant": "declaration",
|
||||
"kind": 65536,
|
||||
"flags": {},
|
||||
"children": [
|
||||
{
|
||||
"id": 13525,
|
||||
"id": 13516,
|
||||
"name": "jwtSecret",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -1301,7 +1301,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13526,
|
||||
"id": 13517,
|
||||
"name": "jwtExpiresIn",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -1341,7 +1341,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13527,
|
||||
"id": 13518,
|
||||
"name": "cookieSecret",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -1381,7 +1381,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13528,
|
||||
"id": 13519,
|
||||
"name": "authCors",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -1495,7 +1495,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13529,
|
||||
"id": 13520,
|
||||
"name": "compression",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -1531,13 +1531,13 @@
|
||||
},
|
||||
"type": {
|
||||
"type": "reference",
|
||||
"target": 13498,
|
||||
"target": 13489,
|
||||
"name": "HttpCompressionOptions",
|
||||
"package": "@medusajs/types"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13530,
|
||||
"id": 13521,
|
||||
"name": "storeCors",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -1643,7 +1643,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13531,
|
||||
"id": 13522,
|
||||
"name": "adminCors",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -1749,7 +1749,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13532,
|
||||
"id": 13523,
|
||||
"name": "authMethodsPerActor",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -1839,14 +1839,14 @@
|
||||
{
|
||||
"title": "Properties",
|
||||
"children": [
|
||||
13525,
|
||||
13526,
|
||||
13527,
|
||||
13528,
|
||||
13529,
|
||||
13530,
|
||||
13531,
|
||||
13532
|
||||
13516,
|
||||
13517,
|
||||
13518,
|
||||
13519,
|
||||
13520,
|
||||
13521,
|
||||
13522,
|
||||
13523
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -1858,24 +1858,24 @@
|
||||
{
|
||||
"title": "Properties",
|
||||
"children": [
|
||||
13504,
|
||||
13505,
|
||||
13506,
|
||||
13495,
|
||||
13496,
|
||||
13497,
|
||||
13498,
|
||||
13500,
|
||||
13507,
|
||||
13508,
|
||||
13509,
|
||||
13516,
|
||||
13517,
|
||||
13518,
|
||||
13519,
|
||||
13521,
|
||||
13522,
|
||||
13523
|
||||
13510,
|
||||
13512,
|
||||
13513,
|
||||
13514
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 13533,
|
||||
"id": 13524,
|
||||
"name": "ConfigModule",
|
||||
"variant": "declaration",
|
||||
"kind": 256,
|
||||
@@ -1906,7 +1906,7 @@
|
||||
"kind": "inline-tag",
|
||||
"tag": "@link",
|
||||
"text": "projectConfig",
|
||||
"target": 13534,
|
||||
"target": 13525,
|
||||
"tsLinkText": "projectConfig"
|
||||
},
|
||||
{
|
||||
@@ -1917,7 +1917,7 @@
|
||||
"kind": "inline-tag",
|
||||
"tag": "@link",
|
||||
"text": "admin",
|
||||
"target": 13535,
|
||||
"target": 13526,
|
||||
"tsLinkText": "admin"
|
||||
},
|
||||
{
|
||||
@@ -1942,7 +1942,7 @@
|
||||
"kind": "inline-tag",
|
||||
"tag": "@link",
|
||||
"text": "modules",
|
||||
"target": 13540,
|
||||
"target": 13531,
|
||||
"tsLinkText": "modules"
|
||||
},
|
||||
{
|
||||
@@ -1953,7 +1953,7 @@
|
||||
"kind": "inline-tag",
|
||||
"tag": "@link",
|
||||
"text": "featureFlags",
|
||||
"target": 13541,
|
||||
"target": 13532,
|
||||
"tsLinkText": "featureFlags"
|
||||
},
|
||||
{
|
||||
@@ -1988,7 +1988,7 @@
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"id": 13534,
|
||||
"id": 13525,
|
||||
"name": "projectConfig",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -2003,13 +2003,13 @@
|
||||
},
|
||||
"type": {
|
||||
"type": "reference",
|
||||
"target": 13503,
|
||||
"target": 13494,
|
||||
"name": "ProjectConfigOptions",
|
||||
"package": "@medusajs/types"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13535,
|
||||
"id": 13526,
|
||||
"name": "admin",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -2037,13 +2037,13 @@
|
||||
},
|
||||
"type": {
|
||||
"type": "reference",
|
||||
"target": 13489,
|
||||
"target": 13480,
|
||||
"name": "AdminOptions",
|
||||
"package": "@medusajs/types"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13540,
|
||||
"id": 13531,
|
||||
"name": "modules",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -2185,7 +2185,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13541,
|
||||
"id": 13532,
|
||||
"name": "featureFlags",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -2263,16 +2263,16 @@
|
||||
{
|
||||
"title": "Properties",
|
||||
"children": [
|
||||
13534,
|
||||
13535,
|
||||
13540,
|
||||
13541
|
||||
13525,
|
||||
13526,
|
||||
13531,
|
||||
13532
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 13542,
|
||||
"id": 13533,
|
||||
"name": "PluginDetails",
|
||||
"variant": "declaration",
|
||||
"kind": 2097152,
|
||||
@@ -2280,14 +2280,14 @@
|
||||
"type": {
|
||||
"type": "reflection",
|
||||
"declaration": {
|
||||
"id": 13543,
|
||||
"id": 13534,
|
||||
"name": "__type",
|
||||
"variant": "declaration",
|
||||
"kind": 65536,
|
||||
"flags": {},
|
||||
"children": [
|
||||
{
|
||||
"id": 13544,
|
||||
"id": 13535,
|
||||
"name": "resolve",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -2298,7 +2298,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13545,
|
||||
"id": 13536,
|
||||
"name": "name",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -2309,7 +2309,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13546,
|
||||
"id": 13537,
|
||||
"name": "id",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -2320,7 +2320,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13547,
|
||||
"id": 13538,
|
||||
"name": "options",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -2346,7 +2346,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13548,
|
||||
"id": 13539,
|
||||
"name": "version",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -2361,11 +2361,11 @@
|
||||
{
|
||||
"title": "Properties",
|
||||
"children": [
|
||||
13544,
|
||||
13545,
|
||||
13546,
|
||||
13547,
|
||||
13548
|
||||
13535,
|
||||
13536,
|
||||
13537,
|
||||
13538,
|
||||
13539
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -2377,238 +2377,238 @@
|
||||
{
|
||||
"title": "Interfaces",
|
||||
"children": [
|
||||
13480,
|
||||
13489,
|
||||
13498,
|
||||
13503,
|
||||
13533
|
||||
13494,
|
||||
13524
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Type Aliases",
|
||||
"children": [
|
||||
13542
|
||||
13533
|
||||
]
|
||||
}
|
||||
],
|
||||
"packageName": "@medusajs/types",
|
||||
"symbolIdMap": {
|
||||
"13488": {
|
||||
"13479": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": ""
|
||||
},
|
||||
"13489": {
|
||||
"13480": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "AdminOptions"
|
||||
},
|
||||
"13490": {
|
||||
"13481": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.disable"
|
||||
},
|
||||
"13491": {
|
||||
"13482": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.path"
|
||||
},
|
||||
"13492": {
|
||||
"13483": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.outDir"
|
||||
},
|
||||
"13493": {
|
||||
"13484": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.backendUrl"
|
||||
},
|
||||
"13494": {
|
||||
"13485": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.vite"
|
||||
},
|
||||
"13495": {
|
||||
"13486": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type"
|
||||
},
|
||||
"13496": {
|
||||
"13487": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type"
|
||||
},
|
||||
"13497": {
|
||||
"13488": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "config"
|
||||
},
|
||||
"13498": {
|
||||
"13489": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "HttpCompressionOptions"
|
||||
},
|
||||
"13499": {
|
||||
"13490": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.enabled"
|
||||
},
|
||||
"13500": {
|
||||
"13491": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.level"
|
||||
},
|
||||
"13501": {
|
||||
"13492": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.memLevel"
|
||||
},
|
||||
"13502": {
|
||||
"13493": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.threshold"
|
||||
},
|
||||
"13503": {
|
||||
"13494": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "ProjectConfigOptions"
|
||||
},
|
||||
"13504": {
|
||||
"13495": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.databaseName"
|
||||
},
|
||||
"13505": {
|
||||
"13496": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.databaseUrl"
|
||||
},
|
||||
"13506": {
|
||||
"13497": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.databaseSchema"
|
||||
},
|
||||
"13507": {
|
||||
"13498": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.databaseLogging"
|
||||
},
|
||||
"13509": {
|
||||
"13500": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.databaseDriverOptions"
|
||||
},
|
||||
"13510": {
|
||||
"13501": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type"
|
||||
},
|
||||
"13511": {
|
||||
"13502": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.connection"
|
||||
},
|
||||
"13512": {
|
||||
"13503": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type"
|
||||
},
|
||||
"13513": {
|
||||
"13504": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.ssl"
|
||||
},
|
||||
"13514": {
|
||||
"13505": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type"
|
||||
},
|
||||
"13515": {
|
||||
"13506": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.rejectUnauthorized"
|
||||
},
|
||||
"13516": {
|
||||
"13507": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.redisUrl"
|
||||
},
|
||||
"13517": {
|
||||
"13508": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.redisPrefix"
|
||||
},
|
||||
"13518": {
|
||||
"13509": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.redisOptions"
|
||||
},
|
||||
"13519": {
|
||||
"13510": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.sessionOptions"
|
||||
},
|
||||
"13521": {
|
||||
"13512": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.jobsBatchSize"
|
||||
},
|
||||
"13522": {
|
||||
"13513": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.workerMode"
|
||||
},
|
||||
"13523": {
|
||||
"13514": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.http"
|
||||
},
|
||||
"13524": {
|
||||
"13515": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type"
|
||||
},
|
||||
"13525": {
|
||||
"13516": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.jwtSecret"
|
||||
},
|
||||
"13526": {
|
||||
"13517": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.jwtExpiresIn"
|
||||
},
|
||||
"13527": {
|
||||
"13518": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.cookieSecret"
|
||||
},
|
||||
"13528": {
|
||||
"13519": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.authCors"
|
||||
},
|
||||
"13529": {
|
||||
"13520": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.compression"
|
||||
},
|
||||
"13530": {
|
||||
"13521": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.storeCors"
|
||||
},
|
||||
"13531": {
|
||||
"13522": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.adminCors"
|
||||
},
|
||||
"13532": {
|
||||
"13523": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.authMethodsPerActor"
|
||||
},
|
||||
"13533": {
|
||||
"13524": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "ConfigModule"
|
||||
},
|
||||
"13534": {
|
||||
"13525": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.projectConfig"
|
||||
},
|
||||
"13535": {
|
||||
"13526": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.admin"
|
||||
},
|
||||
"13540": {
|
||||
"13531": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.modules"
|
||||
},
|
||||
"13541": {
|
||||
"13532": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.featureFlags"
|
||||
},
|
||||
"13542": {
|
||||
"13533": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "PluginDetails"
|
||||
},
|
||||
"13543": {
|
||||
"13534": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type"
|
||||
},
|
||||
"13544": {
|
||||
"13535": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.resolve"
|
||||
},
|
||||
"13545": {
|
||||
"13536": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.name"
|
||||
},
|
||||
"13546": {
|
||||
"13537": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.id"
|
||||
},
|
||||
"13547": {
|
||||
"13538": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.options"
|
||||
},
|
||||
"13548": {
|
||||
"13539": {
|
||||
"sourceFileName": "../../../../packages/core/types/src/common/config-module.ts",
|
||||
"qualifiedName": "__type.version"
|
||||
}
|
||||
@@ -2618,7 +2618,7 @@
|
||||
"1": "../../../../packages/core/types/src/common/config-module.ts"
|
||||
},
|
||||
"reflections": {
|
||||
"1": 13488
|
||||
"1": 13479
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
+11021
-11192
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,33 +1,33 @@
|
||||
{
|
||||
"id": 11781,
|
||||
"id": 11772,
|
||||
"name": "sales-channel-models",
|
||||
"variant": "project",
|
||||
"kind": 1,
|
||||
"flags": {},
|
||||
"children": [
|
||||
{
|
||||
"id": 11782,
|
||||
"id": 11773,
|
||||
"name": "SalesChannel",
|
||||
"variant": "declaration",
|
||||
"kind": 128,
|
||||
"flags": {},
|
||||
"children": [
|
||||
{
|
||||
"id": 11783,
|
||||
"id": 11774,
|
||||
"name": "constructor",
|
||||
"variant": "declaration",
|
||||
"kind": 512,
|
||||
"flags": {},
|
||||
"signatures": [
|
||||
{
|
||||
"id": 11784,
|
||||
"id": 11775,
|
||||
"name": "new SalesChannel",
|
||||
"variant": "signature",
|
||||
"kind": 16384,
|
||||
"flags": {},
|
||||
"type": {
|
||||
"type": "reference",
|
||||
"target": 11782,
|
||||
"target": 11773,
|
||||
"name": "SalesChannel",
|
||||
"package": "@medusajs/sales-channel",
|
||||
"qualifiedName": "default"
|
||||
@@ -36,7 +36,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 11797,
|
||||
"id": 11788,
|
||||
"name": "[OptionalProps]",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -54,7 +54,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 11785,
|
||||
"id": 11776,
|
||||
"name": "id",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -65,7 +65,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 11786,
|
||||
"id": 11777,
|
||||
"name": "name",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -76,7 +76,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 11787,
|
||||
"id": 11778,
|
||||
"name": "description",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -97,7 +97,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 11788,
|
||||
"id": 11779,
|
||||
"name": "is_disabled",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -109,7 +109,7 @@
|
||||
"defaultValue": "false"
|
||||
},
|
||||
{
|
||||
"id": 11789,
|
||||
"id": 11780,
|
||||
"name": "created_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -125,7 +125,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 11790,
|
||||
"id": 11781,
|
||||
"name": "metadata",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -161,7 +161,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 11791,
|
||||
"id": 11782,
|
||||
"name": "updated_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -177,7 +177,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 11792,
|
||||
"id": 11783,
|
||||
"name": "deleted_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -203,14 +203,14 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 11793,
|
||||
"id": 11784,
|
||||
"name": "onCreate",
|
||||
"variant": "declaration",
|
||||
"kind": 2048,
|
||||
"flags": {},
|
||||
"signatures": [
|
||||
{
|
||||
"id": 11794,
|
||||
"id": 11785,
|
||||
"name": "onCreate",
|
||||
"variant": "signature",
|
||||
"kind": 4096,
|
||||
@@ -223,14 +223,14 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 11795,
|
||||
"id": 11786,
|
||||
"name": "onInit",
|
||||
"variant": "declaration",
|
||||
"kind": 2048,
|
||||
"flags": {},
|
||||
"signatures": [
|
||||
{
|
||||
"id": 11796,
|
||||
"id": 11787,
|
||||
"name": "onInit",
|
||||
"variant": "signature",
|
||||
"kind": 4096,
|
||||
@@ -247,28 +247,28 @@
|
||||
{
|
||||
"title": "Constructors",
|
||||
"children": [
|
||||
11783
|
||||
11774
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Properties",
|
||||
"children": [
|
||||
11797,
|
||||
11785,
|
||||
11786,
|
||||
11787,
|
||||
11788,
|
||||
11789,
|
||||
11790,
|
||||
11791,
|
||||
11792
|
||||
11776,
|
||||
11777,
|
||||
11778,
|
||||
11779,
|
||||
11780,
|
||||
11781,
|
||||
11782,
|
||||
11783
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Methods",
|
||||
"children": [
|
||||
11793,
|
||||
11795
|
||||
11784,
|
||||
11786
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -278,69 +278,69 @@
|
||||
{
|
||||
"title": "Classes",
|
||||
"children": [
|
||||
11782
|
||||
11773
|
||||
]
|
||||
}
|
||||
],
|
||||
"packageName": "@medusajs/sales-channel",
|
||||
"symbolIdMap": {
|
||||
"11781": {
|
||||
"11772": {
|
||||
"sourceFileName": "../../../../packages/modules/sales-channel/src/models/index.ts",
|
||||
"qualifiedName": ""
|
||||
},
|
||||
"11782": {
|
||||
"11773": {
|
||||
"sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts",
|
||||
"qualifiedName": "default"
|
||||
},
|
||||
"11785": {
|
||||
"11776": {
|
||||
"sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts",
|
||||
"qualifiedName": "default.id"
|
||||
},
|
||||
"11786": {
|
||||
"11777": {
|
||||
"sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts",
|
||||
"qualifiedName": "default.name"
|
||||
},
|
||||
"11787": {
|
||||
"11778": {
|
||||
"sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts",
|
||||
"qualifiedName": "default.description"
|
||||
},
|
||||
"11788": {
|
||||
"11779": {
|
||||
"sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts",
|
||||
"qualifiedName": "default.is_disabled"
|
||||
},
|
||||
"11789": {
|
||||
"11780": {
|
||||
"sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts",
|
||||
"qualifiedName": "default.created_at"
|
||||
},
|
||||
"11790": {
|
||||
"11781": {
|
||||
"sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts",
|
||||
"qualifiedName": "default.metadata"
|
||||
},
|
||||
"11791": {
|
||||
"11782": {
|
||||
"sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts",
|
||||
"qualifiedName": "default.updated_at"
|
||||
},
|
||||
"11792": {
|
||||
"11783": {
|
||||
"sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts",
|
||||
"qualifiedName": "default.deleted_at"
|
||||
},
|
||||
"11793": {
|
||||
"11784": {
|
||||
"sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts",
|
||||
"qualifiedName": "default.onCreate"
|
||||
},
|
||||
"11794": {
|
||||
"11785": {
|
||||
"sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts",
|
||||
"qualifiedName": "default.onCreate"
|
||||
},
|
||||
"11795": {
|
||||
"11786": {
|
||||
"sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts",
|
||||
"qualifiedName": "default.onInit"
|
||||
},
|
||||
"11796": {
|
||||
"11787": {
|
||||
"sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts",
|
||||
"qualifiedName": "default.onInit"
|
||||
},
|
||||
"11797": {
|
||||
"11788": {
|
||||
"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": 11781
|
||||
"1": 11772
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"id": 12281,
|
||||
"id": 12272,
|
||||
"name": "stock-location-next-models",
|
||||
"variant": "project",
|
||||
"kind": 1,
|
||||
@@ -18,28 +18,28 @@
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"id": 12297,
|
||||
"id": 12288,
|
||||
"name": "StockLocationAddress",
|
||||
"variant": "declaration",
|
||||
"kind": 128,
|
||||
"flags": {},
|
||||
"children": [
|
||||
{
|
||||
"id": 12298,
|
||||
"id": 12289,
|
||||
"name": "constructor",
|
||||
"variant": "declaration",
|
||||
"kind": 512,
|
||||
"flags": {},
|
||||
"signatures": [
|
||||
{
|
||||
"id": 12299,
|
||||
"id": 12290,
|
||||
"name": "new StockLocationAddress",
|
||||
"variant": "signature",
|
||||
"kind": 16384,
|
||||
"flags": {},
|
||||
"type": {
|
||||
"type": "reference",
|
||||
"target": 12297,
|
||||
"target": 12288,
|
||||
"name": "StockLocationAddress",
|
||||
"package": "@medusajs/stock-location-next"
|
||||
}
|
||||
@@ -47,7 +47,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12300,
|
||||
"id": 12291,
|
||||
"name": "id",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -58,7 +58,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12301,
|
||||
"id": 12292,
|
||||
"name": "created_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -74,7 +74,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12302,
|
||||
"id": 12293,
|
||||
"name": "updated_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -90,7 +90,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12303,
|
||||
"id": 12294,
|
||||
"name": "deleted_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -116,7 +116,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 12304,
|
||||
"id": 12295,
|
||||
"name": "address_1",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -127,7 +127,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12305,
|
||||
"id": 12296,
|
||||
"name": "address_2",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -147,7 +147,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12306,
|
||||
"id": 12297,
|
||||
"name": "company",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -167,7 +167,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12307,
|
||||
"id": 12298,
|
||||
"name": "city",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -187,7 +187,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12308,
|
||||
"id": 12299,
|
||||
"name": "country_code",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -198,7 +198,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12309,
|
||||
"id": 12300,
|
||||
"name": "phone",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -218,7 +218,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12310,
|
||||
"id": 12301,
|
||||
"name": "province",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -238,7 +238,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12311,
|
||||
"id": 12302,
|
||||
"name": "postal_code",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -258,7 +258,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12312,
|
||||
"id": 12303,
|
||||
"name": "metadata",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -297,52 +297,52 @@
|
||||
{
|
||||
"title": "Constructors",
|
||||
"children": [
|
||||
12298
|
||||
12289
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Properties",
|
||||
"children": [
|
||||
12291,
|
||||
12292,
|
||||
12293,
|
||||
12294,
|
||||
12295,
|
||||
12296,
|
||||
12297,
|
||||
12298,
|
||||
12299,
|
||||
12300,
|
||||
12301,
|
||||
12302,
|
||||
12303,
|
||||
12304,
|
||||
12305,
|
||||
12306,
|
||||
12307,
|
||||
12308,
|
||||
12309,
|
||||
12310,
|
||||
12311,
|
||||
12312
|
||||
12303
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12282,
|
||||
"id": 12273,
|
||||
"name": "StockLocation",
|
||||
"variant": "declaration",
|
||||
"kind": 128,
|
||||
"flags": {},
|
||||
"children": [
|
||||
{
|
||||
"id": 12283,
|
||||
"id": 12274,
|
||||
"name": "constructor",
|
||||
"variant": "declaration",
|
||||
"kind": 512,
|
||||
"flags": {},
|
||||
"signatures": [
|
||||
{
|
||||
"id": 12284,
|
||||
"id": 12275,
|
||||
"name": "new StockLocation",
|
||||
"variant": "signature",
|
||||
"kind": 16384,
|
||||
"flags": {},
|
||||
"type": {
|
||||
"type": "reference",
|
||||
"target": 12282,
|
||||
"target": 12273,
|
||||
"name": "StockLocation",
|
||||
"package": "@medusajs/stock-location-next"
|
||||
}
|
||||
@@ -350,7 +350,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12285,
|
||||
"id": 12276,
|
||||
"name": "id",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -361,7 +361,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12286,
|
||||
"id": 12277,
|
||||
"name": "created_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -377,7 +377,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12287,
|
||||
"id": 12278,
|
||||
"name": "updated_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -393,7 +393,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12288,
|
||||
"id": 12279,
|
||||
"name": "deleted_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -419,7 +419,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 12289,
|
||||
"id": 12280,
|
||||
"name": "name",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -430,7 +430,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12290,
|
||||
"id": 12281,
|
||||
"name": "address_id",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -450,7 +450,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12291,
|
||||
"id": 12282,
|
||||
"name": "address",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -464,7 +464,7 @@
|
||||
},
|
||||
{
|
||||
"type": "reference",
|
||||
"target": 12297,
|
||||
"target": 12288,
|
||||
"name": "StockLocationAddress",
|
||||
"package": "@medusajs/stock-location-next"
|
||||
}
|
||||
@@ -472,7 +472,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12292,
|
||||
"id": 12283,
|
||||
"name": "metadata",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -511,20 +511,20 @@
|
||||
{
|
||||
"title": "Constructors",
|
||||
"children": [
|
||||
12283
|
||||
12274
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Properties",
|
||||
"children": [
|
||||
12285,
|
||||
12286,
|
||||
12287,
|
||||
12288,
|
||||
12289,
|
||||
12290,
|
||||
12291,
|
||||
12292
|
||||
12276,
|
||||
12277,
|
||||
12278,
|
||||
12279,
|
||||
12280,
|
||||
12281,
|
||||
12282,
|
||||
12283
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -534,106 +534,106 @@
|
||||
{
|
||||
"title": "Classes",
|
||||
"children": [
|
||||
12297,
|
||||
12282
|
||||
12288,
|
||||
12273
|
||||
]
|
||||
}
|
||||
],
|
||||
"packageName": "@medusajs/stock-location-next",
|
||||
"symbolIdMap": {
|
||||
"12281": {
|
||||
"12272": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/index.ts",
|
||||
"qualifiedName": ""
|
||||
},
|
||||
"12282": {
|
||||
"12273": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location.ts",
|
||||
"qualifiedName": "StockLocation"
|
||||
},
|
||||
"12285": {
|
||||
"12276": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location.ts",
|
||||
"qualifiedName": "StockLocation.id"
|
||||
},
|
||||
"12286": {
|
||||
"12277": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location.ts",
|
||||
"qualifiedName": "StockLocation.created_at"
|
||||
},
|
||||
"12287": {
|
||||
"12278": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location.ts",
|
||||
"qualifiedName": "StockLocation.updated_at"
|
||||
},
|
||||
"12288": {
|
||||
"12279": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location.ts",
|
||||
"qualifiedName": "StockLocation.deleted_at"
|
||||
},
|
||||
"12289": {
|
||||
"12280": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location.ts",
|
||||
"qualifiedName": "StockLocation.name"
|
||||
},
|
||||
"12290": {
|
||||
"12281": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location.ts",
|
||||
"qualifiedName": "StockLocation.address_id"
|
||||
},
|
||||
"12291": {
|
||||
"12282": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location.ts",
|
||||
"qualifiedName": "StockLocation.address"
|
||||
},
|
||||
"12292": {
|
||||
"12283": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location.ts",
|
||||
"qualifiedName": "StockLocation.metadata"
|
||||
},
|
||||
"12297": {
|
||||
"12288": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts",
|
||||
"qualifiedName": "StockLocationAddress"
|
||||
},
|
||||
"12300": {
|
||||
"12291": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts",
|
||||
"qualifiedName": "StockLocationAddress.id"
|
||||
},
|
||||
"12301": {
|
||||
"12292": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts",
|
||||
"qualifiedName": "StockLocationAddress.created_at"
|
||||
},
|
||||
"12302": {
|
||||
"12293": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts",
|
||||
"qualifiedName": "StockLocationAddress.updated_at"
|
||||
},
|
||||
"12303": {
|
||||
"12294": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts",
|
||||
"qualifiedName": "StockLocationAddress.deleted_at"
|
||||
},
|
||||
"12304": {
|
||||
"12295": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts",
|
||||
"qualifiedName": "StockLocationAddress.address_1"
|
||||
},
|
||||
"12305": {
|
||||
"12296": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts",
|
||||
"qualifiedName": "StockLocationAddress.address_2"
|
||||
},
|
||||
"12306": {
|
||||
"12297": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts",
|
||||
"qualifiedName": "StockLocationAddress.company"
|
||||
},
|
||||
"12307": {
|
||||
"12298": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts",
|
||||
"qualifiedName": "StockLocationAddress.city"
|
||||
},
|
||||
"12308": {
|
||||
"12299": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts",
|
||||
"qualifiedName": "StockLocationAddress.country_code"
|
||||
},
|
||||
"12309": {
|
||||
"12300": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts",
|
||||
"qualifiedName": "StockLocationAddress.phone"
|
||||
},
|
||||
"12310": {
|
||||
"12301": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts",
|
||||
"qualifiedName": "StockLocationAddress.province"
|
||||
},
|
||||
"12311": {
|
||||
"12302": {
|
||||
"sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts",
|
||||
"qualifiedName": "StockLocationAddress.postal_code"
|
||||
},
|
||||
"12312": {
|
||||
"12303": {
|
||||
"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": 12281
|
||||
"1": 12272
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"id": 12589,
|
||||
"id": 12580,
|
||||
"name": "store-models",
|
||||
"variant": "project",
|
||||
"kind": 1,
|
||||
@@ -18,28 +18,28 @@
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"id": 12608,
|
||||
"id": 12599,
|
||||
"name": "StoreCurrency",
|
||||
"variant": "declaration",
|
||||
"kind": 128,
|
||||
"flags": {},
|
||||
"children": [
|
||||
{
|
||||
"id": 12609,
|
||||
"id": 12600,
|
||||
"name": "constructor",
|
||||
"variant": "declaration",
|
||||
"kind": 512,
|
||||
"flags": {},
|
||||
"signatures": [
|
||||
{
|
||||
"id": 12610,
|
||||
"id": 12601,
|
||||
"name": "new StoreCurrency",
|
||||
"variant": "signature",
|
||||
"kind": 16384,
|
||||
"flags": {},
|
||||
"type": {
|
||||
"type": "reference",
|
||||
"target": 12608,
|
||||
"target": 12599,
|
||||
"name": "StoreCurrency",
|
||||
"package": "@medusajs/store",
|
||||
"qualifiedName": "default"
|
||||
@@ -48,7 +48,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12611,
|
||||
"id": 12602,
|
||||
"name": "id",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -59,7 +59,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12612,
|
||||
"id": 12603,
|
||||
"name": "currency_code",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -70,7 +70,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12613,
|
||||
"id": 12604,
|
||||
"name": "is_default",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -83,7 +83,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12614,
|
||||
"id": 12605,
|
||||
"name": "store_id",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -103,7 +103,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12615,
|
||||
"id": 12606,
|
||||
"name": "store",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -117,7 +117,7 @@
|
||||
},
|
||||
{
|
||||
"type": "reference",
|
||||
"target": 12590,
|
||||
"target": 12581,
|
||||
"name": "Store",
|
||||
"package": "@medusajs/store",
|
||||
"qualifiedName": "default"
|
||||
@@ -126,7 +126,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12616,
|
||||
"id": 12607,
|
||||
"name": "created_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -142,7 +142,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12617,
|
||||
"id": 12608,
|
||||
"name": "updated_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -158,7 +158,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12618,
|
||||
"id": 12609,
|
||||
"name": "deleted_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -184,14 +184,14 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 12619,
|
||||
"id": 12610,
|
||||
"name": "onCreate",
|
||||
"variant": "declaration",
|
||||
"kind": 2048,
|
||||
"flags": {},
|
||||
"signatures": [
|
||||
{
|
||||
"id": 12620,
|
||||
"id": 12611,
|
||||
"name": "onCreate",
|
||||
"variant": "signature",
|
||||
"kind": 4096,
|
||||
@@ -204,14 +204,14 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12621,
|
||||
"id": 12612,
|
||||
"name": "onInit",
|
||||
"variant": "declaration",
|
||||
"kind": 2048,
|
||||
"flags": {},
|
||||
"signatures": [
|
||||
{
|
||||
"id": 12622,
|
||||
"id": 12613,
|
||||
"name": "onInit",
|
||||
"variant": "signature",
|
||||
"kind": 4096,
|
||||
@@ -228,54 +228,54 @@
|
||||
{
|
||||
"title": "Constructors",
|
||||
"children": [
|
||||
12609
|
||||
12600
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Properties",
|
||||
"children": [
|
||||
12611,
|
||||
12612,
|
||||
12613,
|
||||
12614,
|
||||
12615,
|
||||
12616,
|
||||
12617,
|
||||
12618
|
||||
12602,
|
||||
12603,
|
||||
12604,
|
||||
12605,
|
||||
12606,
|
||||
12607,
|
||||
12608,
|
||||
12609
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Methods",
|
||||
"children": [
|
||||
12619,
|
||||
12621
|
||||
12610,
|
||||
12612
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12590,
|
||||
"id": 12581,
|
||||
"name": "Store",
|
||||
"variant": "declaration",
|
||||
"kind": 128,
|
||||
"flags": {},
|
||||
"children": [
|
||||
{
|
||||
"id": 12591,
|
||||
"id": 12582,
|
||||
"name": "constructor",
|
||||
"variant": "declaration",
|
||||
"kind": 512,
|
||||
"flags": {},
|
||||
"signatures": [
|
||||
{
|
||||
"id": 12592,
|
||||
"id": 12583,
|
||||
"name": "new Store",
|
||||
"variant": "signature",
|
||||
"kind": 16384,
|
||||
"flags": {},
|
||||
"type": {
|
||||
"type": "reference",
|
||||
"target": 12590,
|
||||
"target": 12581,
|
||||
"name": "Store",
|
||||
"package": "@medusajs/store",
|
||||
"qualifiedName": "default"
|
||||
@@ -284,7 +284,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12607,
|
||||
"id": 12598,
|
||||
"name": "[OptionalProps]",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -302,7 +302,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12593,
|
||||
"id": 12584,
|
||||
"name": "id",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -313,7 +313,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12594,
|
||||
"id": 12585,
|
||||
"name": "name",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -324,7 +324,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12595,
|
||||
"id": 12586,
|
||||
"name": "supported_currencies",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -338,7 +338,7 @@
|
||||
"typeArguments": [
|
||||
{
|
||||
"type": "reference",
|
||||
"target": 12608,
|
||||
"target": 12599,
|
||||
"name": "StoreCurrency",
|
||||
"package": "@medusajs/store",
|
||||
"qualifiedName": "default"
|
||||
@@ -354,7 +354,7 @@
|
||||
"defaultValue": "..."
|
||||
},
|
||||
{
|
||||
"id": 12596,
|
||||
"id": 12587,
|
||||
"name": "default_sales_channel_id",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -375,7 +375,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 12597,
|
||||
"id": 12588,
|
||||
"name": "default_region_id",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -396,7 +396,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 12598,
|
||||
"id": 12589,
|
||||
"name": "default_location_id",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -417,7 +417,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 12599,
|
||||
"id": 12590,
|
||||
"name": "metadata",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -453,7 +453,7 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 12600,
|
||||
"id": 12591,
|
||||
"name": "created_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -469,7 +469,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12601,
|
||||
"id": 12592,
|
||||
"name": "updated_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -485,7 +485,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 12602,
|
||||
"id": 12593,
|
||||
"name": "deleted_at",
|
||||
"variant": "declaration",
|
||||
"kind": 1024,
|
||||
@@ -511,14 +511,14 @@
|
||||
"defaultValue": "null"
|
||||
},
|
||||
{
|
||||
"id": 12603,
|
||||
"id": 12594,
|
||||
"name": "onCreate",
|
||||
"variant": "declaration",
|
||||
"kind": 2048,
|
||||
"flags": {},
|
||||
"signatures": [
|
||||
{
|
||||
"id": 12604,
|
||||
"id": 12595,
|
||||
"name": "onCreate",
|
||||
"variant": "signature",
|
||||
"kind": 4096,
|
||||
@@ -531,14 +531,14 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 12605,
|
||||
"id": 12596,
|
||||
"name": "onInit",
|
||||
"variant": "declaration",
|
||||
"kind": 2048,
|
||||
"flags": {},
|
||||
"signatures": [
|
||||
{
|
||||
"id": 12606,
|
||||
"id": 12597,
|
||||
"name": "onInit",
|
||||
"variant": "signature",
|
||||
"kind": 4096,
|
||||
@@ -555,30 +555,30 @@
|
||||
{
|
||||
"title": "Constructors",
|
||||
"children": [
|
||||
12591
|
||||
12582
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Properties",
|
||||
"children": [
|
||||
12607,
|
||||
12593,
|
||||
12594,
|
||||
12595,
|
||||
12596,
|
||||
12597,
|
||||
12598,
|
||||
12599,
|
||||
12600,
|
||||
12601,
|
||||
12602
|
||||
12584,
|
||||
12585,
|
||||
12586,
|
||||
12587,
|
||||
12588,
|
||||
12589,
|
||||
12590,
|
||||
12591,
|
||||
12592,
|
||||
12593
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Methods",
|
||||
"children": [
|
||||
12603,
|
||||
12605
|
||||
12594,
|
||||
12596
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -588,130 +588,130 @@
|
||||
{
|
||||
"title": "Classes",
|
||||
"children": [
|
||||
12608,
|
||||
12590
|
||||
12599,
|
||||
12581
|
||||
]
|
||||
}
|
||||
],
|
||||
"packageName": "@medusajs/store",
|
||||
"symbolIdMap": {
|
||||
"12589": {
|
||||
"12580": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/index.ts",
|
||||
"qualifiedName": ""
|
||||
},
|
||||
"12590": {
|
||||
"12581": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/store.ts",
|
||||
"qualifiedName": "default"
|
||||
},
|
||||
"12593": {
|
||||
"12584": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/store.ts",
|
||||
"qualifiedName": "default.id"
|
||||
},
|
||||
"12594": {
|
||||
"12585": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/store.ts",
|
||||
"qualifiedName": "default.name"
|
||||
},
|
||||
"12595": {
|
||||
"12586": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/store.ts",
|
||||
"qualifiedName": "default.supported_currencies"
|
||||
},
|
||||
"12596": {
|
||||
"12587": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/store.ts",
|
||||
"qualifiedName": "default.default_sales_channel_id"
|
||||
},
|
||||
"12597": {
|
||||
"12588": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/store.ts",
|
||||
"qualifiedName": "default.default_region_id"
|
||||
},
|
||||
"12598": {
|
||||
"12589": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/store.ts",
|
||||
"qualifiedName": "default.default_location_id"
|
||||
},
|
||||
"12599": {
|
||||
"12590": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/store.ts",
|
||||
"qualifiedName": "default.metadata"
|
||||
},
|
||||
"12600": {
|
||||
"12591": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/store.ts",
|
||||
"qualifiedName": "default.created_at"
|
||||
},
|
||||
"12601": {
|
||||
"12592": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/store.ts",
|
||||
"qualifiedName": "default.updated_at"
|
||||
},
|
||||
"12602": {
|
||||
"12593": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/store.ts",
|
||||
"qualifiedName": "default.deleted_at"
|
||||
},
|
||||
"12603": {
|
||||
"12594": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/store.ts",
|
||||
"qualifiedName": "default.onCreate"
|
||||
},
|
||||
"12604": {
|
||||
"12595": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/store.ts",
|
||||
"qualifiedName": "default.onCreate"
|
||||
},
|
||||
"12605": {
|
||||
"12596": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/store.ts",
|
||||
"qualifiedName": "default.onInit"
|
||||
},
|
||||
"12606": {
|
||||
"12597": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/store.ts",
|
||||
"qualifiedName": "default.onInit"
|
||||
},
|
||||
"12607": {
|
||||
"12598": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/store.ts",
|
||||
"qualifiedName": "default.[OptionalProps]"
|
||||
},
|
||||
"12608": {
|
||||
"12599": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/currency.ts",
|
||||
"qualifiedName": "default"
|
||||
},
|
||||
"12611": {
|
||||
"12602": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/currency.ts",
|
||||
"qualifiedName": "default.id"
|
||||
},
|
||||
"12612": {
|
||||
"12603": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/currency.ts",
|
||||
"qualifiedName": "default.currency_code"
|
||||
},
|
||||
"12613": {
|
||||
"12604": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/currency.ts",
|
||||
"qualifiedName": "default.is_default"
|
||||
},
|
||||
"12614": {
|
||||
"12605": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/currency.ts",
|
||||
"qualifiedName": "default.store_id"
|
||||
},
|
||||
"12615": {
|
||||
"12606": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/currency.ts",
|
||||
"qualifiedName": "default.store"
|
||||
},
|
||||
"12616": {
|
||||
"12607": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/currency.ts",
|
||||
"qualifiedName": "default.created_at"
|
||||
},
|
||||
"12617": {
|
||||
"12608": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/currency.ts",
|
||||
"qualifiedName": "default.updated_at"
|
||||
},
|
||||
"12618": {
|
||||
"12609": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/currency.ts",
|
||||
"qualifiedName": "default.deleted_at"
|
||||
},
|
||||
"12619": {
|
||||
"12610": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/currency.ts",
|
||||
"qualifiedName": "default.onCreate"
|
||||
},
|
||||
"12620": {
|
||||
"12611": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/currency.ts",
|
||||
"qualifiedName": "default.onCreate"
|
||||
},
|
||||
"12621": {
|
||||
"12612": {
|
||||
"sourceFileName": "../../../../packages/modules/store/src/models/currency.ts",
|
||||
"qualifiedName": "default.onInit"
|
||||
},
|
||||
"12622": {
|
||||
"12613": {
|
||||
"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": 12589
|
||||
"1": 12580
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user