diff --git a/.changeset/shiny-crabs-unite.md b/.changeset/shiny-crabs-unite.md new file mode 100644 index 0000000000..2a57e075a1 --- /dev/null +++ b/.changeset/shiny-crabs-unite.md @@ -0,0 +1,5 @@ +--- +"@medusajs/medusa": patch +--- + +Fix development hot reload on Windows diff --git a/.github/workflows/oas-test.yml b/.github/workflows/oas-test.yml index bf71dbe3f0..853ac33bf8 100644 --- a/.github/workflows/oas-test.yml +++ b/.github/workflows/oas-test.yml @@ -31,4 +31,4 @@ jobs: - name: Build OAS run: | - yarn openapi:generate + yarn openapi:generate --dry-run diff --git a/docs/api/admin-spec3.json b/docs/api/admin-spec3.json index ca9cbfce1e..df4b076b46 100644 --- a/docs/api/admin-spec3.json +++ b/docs/api/admin-spec3.json @@ -2372,7 +2372,8 @@ "/discounts/{discount_id}/conditions": { "post": { "operationId": "PostDiscountsDiscountConditions", - "summary": "Creates a DiscountCondition. Only one of `products`, `product_types`, `product_collections`, `product_tags`, and `customer_groups` should be provided.", + "summary": "Create a DiscountCondition", + "description": "Creates a DiscountCondition. Only one of `products`, `product_types`, `product_collections`, `product_tags`, and `customer_groups` should be provided.", "x-authenticated": true, "parameters": [ { @@ -2401,7 +2402,6 @@ } } ], - "description": "Creates a DiscountCondition", "requestBody": { "content": { "application/json": { @@ -2997,7 +2997,8 @@ }, "post": { "operationId": "PostDiscountsDiscountConditionsCondition", - "summary": "Updates a DiscountCondition. Only one of `products`, `product_types`, `product_collections`, `product_tags`, and `customer_groups` should be provided.", + "summary": "Update a DiscountCondition", + "description": "Updates a DiscountCondition. Only one of `products`, `product_types`, `product_collections`, `product_tags`, and `customer_groups` should be provided.", "x-authenticated": true, "parameters": [ { @@ -3035,7 +3036,6 @@ } } ], - "description": "Updates a DiscountCondition", "requestBody": { "content": { "application/json": { @@ -4337,8 +4337,8 @@ }, "post": { "operationId": "PostGiftCardsGiftCard", - "summary": "Create a Gift Card", - "description": "Creates a Gift Card that can redeemed by its unique code. The Gift Card is only valid within 1 region.", + "summary": "Update a Gift Card", + "description": "Update a Gift Card that can redeemed by its unique code. The Gift Card is only valid within 1 region.", "x-authenticated": true, "parameters": [ { @@ -19189,10 +19189,10 @@ } } }, - "sales_channel_tax_line": { - "title": "Sales Channel", - "description": "A Sales Channel", - "x-resourceId": "sales_channel_tax_line", + "shipping_method_tax_line": { + "title": "Shipping Method Tax Line", + "description": "Shipping Method Tax Line", + "x-resourceId": "shipping_method_tax_line", "required": [ "shipping_method_id", "rate", @@ -19319,7 +19319,7 @@ "type": "array", "description": "Available if the relation `tax_lines` is expanded.", "items": { - "$ref": "#/components/schemas/tax_line" + "$ref": "#/components/schemas/shipping_method_tax_line" } }, "price": { diff --git a/docs/api/admin-spec3.yaml b/docs/api/admin-spec3.yaml index 555b40eff7..3f61b9f917 100644 --- a/docs/api/admin-spec3.yaml +++ b/docs/api/admin-spec3.yaml @@ -1618,7 +1618,8 @@ paths: '/discounts/{discount_id}/conditions': post: operationId: PostDiscountsDiscountConditions - summary: >- + summary: Create a DiscountCondition + description: >- Creates a DiscountCondition. Only one of `products`, `product_types`, `product_collections`, `product_tags`, and `customer_groups` should be provided. @@ -1644,7 +1645,6 @@ paths: the result. schema: type: string - description: Creates a DiscountCondition requestBody: content: application/json: @@ -2098,7 +2098,8 @@ paths: $ref: '#/components/schemas/discount_condition' post: operationId: PostDiscountsDiscountConditionsCondition - summary: >- + summary: Update a DiscountCondition + description: >- Updates a DiscountCondition. Only one of `products`, `product_types`, `product_collections`, `product_tags`, and `customer_groups` should be provided. @@ -2130,7 +2131,6 @@ paths: the result. schema: type: string - description: Updates a DiscountCondition requestBody: content: application/json: @@ -3061,9 +3061,9 @@ paths: $ref: '#/components/schemas/gift_card' post: operationId: PostGiftCardsGiftCard - summary: Create a Gift Card + summary: Update a Gift Card description: >- - Creates a Gift Card that can redeemed by its unique code. The Gift Card + Update a Gift Card that can redeemed by its unique code. The Gift Card is only valid within 1 region. x-authenticated: true parameters: @@ -14205,10 +14205,10 @@ components: type: string description: The date with timezone at which the resource was deleted. format: date-time - sales_channel_tax_line: - title: Sales Channel - description: A Sales Channel - x-resourceId: sales_channel_tax_line + shipping_method_tax_line: + title: Shipping Method Tax Line + description: Shipping Method Tax Line + x-resourceId: shipping_method_tax_line required: - shipping_method_id - rate @@ -14318,7 +14318,7 @@ components: type: array description: Available if the relation `tax_lines` is expanded. items: - $ref: '#/components/schemas/tax_line' + $ref: '#/components/schemas/shipping_method_tax_line' price: description: >- The amount to charge for the Shipping Method. The currency of the diff --git a/docs/api/admin/components/schemas/shipping_method.yaml b/docs/api/admin/components/schemas/shipping_method.yaml index d53bafb241..ae06e6c78c 100644 --- a/docs/api/admin/components/schemas/shipping_method.yaml +++ b/docs/api/admin/components/schemas/shipping_method.yaml @@ -59,7 +59,7 @@ properties: type: array description: Available if the relation `tax_lines` is expanded. items: - $ref: ./tax_line.yaml + $ref: ./shipping_method_tax_line.yaml price: description: >- The amount to charge for the Shipping Method. The currency of the price is diff --git a/docs/api/admin/components/schemas/sales_channel_tax_line.yaml b/docs/api/admin/components/schemas/shipping_method_tax_line.yaml similarity index 90% rename from docs/api/admin/components/schemas/sales_channel_tax_line.yaml rename to docs/api/admin/components/schemas/shipping_method_tax_line.yaml index 8aac42859c..cce7e8fddf 100644 --- a/docs/api/admin/components/schemas/sales_channel_tax_line.yaml +++ b/docs/api/admin/components/schemas/shipping_method_tax_line.yaml @@ -1,6 +1,6 @@ -title: Sales Channel -description: A Sales Channel -x-resourceId: sales_channel_tax_line +title: Shipping Method Tax Line +description: Shipping Method Tax Line +x-resourceId: shipping_method_tax_line required: - shipping_method_id - rate diff --git a/docs/api/admin/paths/discounts_{discount_id}_conditions.yaml b/docs/api/admin/paths/discounts_{discount_id}_conditions.yaml index 017f75a49a..ba7aff9742 100644 --- a/docs/api/admin/paths/discounts_{discount_id}_conditions.yaml +++ b/docs/api/admin/paths/discounts_{discount_id}_conditions.yaml @@ -1,6 +1,7 @@ post: operationId: PostDiscountsDiscountConditions - summary: >- + summary: Create a DiscountCondition + description: >- Creates a DiscountCondition. Only one of `products`, `product_types`, `product_collections`, `product_tags`, and `customer_groups` should be provided. @@ -26,7 +27,6 @@ post: result. schema: type: string - description: Creates a DiscountCondition requestBody: content: application/json: diff --git a/docs/api/admin/paths/discounts_{discount_id}_conditions_{condition_id}.yaml b/docs/api/admin/paths/discounts_{discount_id}_conditions_{condition_id}.yaml index 757656fb12..405a7a3658 100644 --- a/docs/api/admin/paths/discounts_{discount_id}_conditions_{condition_id}.yaml +++ b/docs/api/admin/paths/discounts_{discount_id}_conditions_{condition_id}.yaml @@ -92,7 +92,8 @@ get: $ref: ../components/schemas/discount_condition.yaml post: operationId: PostDiscountsDiscountConditionsCondition - summary: >- + summary: Update a DiscountCondition + description: >- Updates a DiscountCondition. Only one of `products`, `product_types`, `product_collections`, `product_tags`, and `customer_groups` should be provided. @@ -124,7 +125,6 @@ post: result. schema: type: string - description: Updates a DiscountCondition requestBody: content: application/json: diff --git a/docs/api/admin/paths/gift-cards_{id}.yaml b/docs/api/admin/paths/gift-cards_{id}.yaml index 14cfd47017..6d0b761c79 100644 --- a/docs/api/admin/paths/gift-cards_{id}.yaml +++ b/docs/api/admin/paths/gift-cards_{id}.yaml @@ -55,9 +55,9 @@ get: $ref: ../components/schemas/gift_card.yaml post: operationId: PostGiftCardsGiftCard - summary: Create a Gift Card + summary: Update a Gift Card description: >- - Creates a Gift Card that can redeemed by its unique code. The Gift Card is + Update a Gift Card that can redeemed by its unique code. The Gift Card is only valid within 1 region. x-authenticated: true parameters: diff --git a/docs/api/store-spec3.json b/docs/api/store-spec3.json index 152396b419..191ec1abbc 100644 --- a/docs/api/store-spec3.json +++ b/docs/api/store-spec3.json @@ -7898,10 +7898,10 @@ } } }, - "sales_channel_tax_line": { - "title": "Sales Channel", - "description": "A Sales Channel", - "x-resourceId": "sales_channel_tax_line", + "shipping_method_tax_line": { + "title": "Shipping Method Tax Line", + "description": "Shipping Method Tax Line", + "x-resourceId": "shipping_method_tax_line", "required": [ "shipping_method_id", "rate", @@ -8028,7 +8028,7 @@ "type": "array", "description": "Available if the relation `tax_lines` is expanded.", "items": { - "$ref": "#/components/schemas/tax_line" + "$ref": "#/components/schemas/shipping_method_tax_line" } }, "price": { diff --git a/docs/api/store-spec3.yaml b/docs/api/store-spec3.yaml index 6a177fb6c9..fcefe766f5 100644 --- a/docs/api/store-spec3.yaml +++ b/docs/api/store-spec3.yaml @@ -6232,10 +6232,10 @@ components: type: string description: The date with timezone at which the resource was deleted. format: date-time - sales_channel_tax_line: - title: Sales Channel - description: A Sales Channel - x-resourceId: sales_channel_tax_line + shipping_method_tax_line: + title: Shipping Method Tax Line + description: Shipping Method Tax Line + x-resourceId: shipping_method_tax_line required: - shipping_method_id - rate @@ -6345,7 +6345,7 @@ components: type: array description: Available if the relation `tax_lines` is expanded. items: - $ref: '#/components/schemas/tax_line' + $ref: '#/components/schemas/shipping_method_tax_line' price: description: >- The amount to charge for the Shipping Method. The currency of the diff --git a/docs/api/store/components/schemas/shipping_method.yaml b/docs/api/store/components/schemas/shipping_method.yaml index d53bafb241..ae06e6c78c 100644 --- a/docs/api/store/components/schemas/shipping_method.yaml +++ b/docs/api/store/components/schemas/shipping_method.yaml @@ -59,7 +59,7 @@ properties: type: array description: Available if the relation `tax_lines` is expanded. items: - $ref: ./tax_line.yaml + $ref: ./shipping_method_tax_line.yaml price: description: >- The amount to charge for the Shipping Method. The currency of the price is diff --git a/docs/api/store/components/schemas/sales_channel_tax_line.yaml b/docs/api/store/components/schemas/shipping_method_tax_line.yaml similarity index 90% rename from docs/api/store/components/schemas/sales_channel_tax_line.yaml rename to docs/api/store/components/schemas/shipping_method_tax_line.yaml index 8aac42859c..cce7e8fddf 100644 --- a/docs/api/store/components/schemas/sales_channel_tax_line.yaml +++ b/docs/api/store/components/schemas/shipping_method_tax_line.yaml @@ -1,6 +1,6 @@ -title: Sales Channel -description: A Sales Channel -x-resourceId: sales_channel_tax_line +title: Shipping Method Tax Line +description: Shipping Method Tax Line +x-resourceId: shipping_method_tax_line required: - shipping_method_id - rate diff --git a/docs/content/advanced/backend/endpoints/add-storefront.md b/docs/content/advanced/backend/endpoints/add-storefront.md index d4cca97b5c..50f4de19dc 100644 --- a/docs/content/advanced/backend/endpoints/add-storefront.md +++ b/docs/content/advanced/backend/endpoints/add-storefront.md @@ -171,7 +171,7 @@ Protected routes are routes that should be accessible by logged-in customers onl To make a route protected, first, import the `authenticate` middleware: ```js -import authenticate from "@medusajs/medusa/dist/api/middlewares/authenticate" +import authenticate from "@medusajs/medusa/dist/api/middlewares/authenticate-customer" ``` Then, add the middleware to your route: diff --git a/docs/content/references/entities/classes/Address.md b/docs/content/references/entities/classes/Address.md index 5cf67a4375..cac6732827 100644 --- a/docs/content/references/entities/classes/Address.md +++ b/docs/content/references/entities/classes/Address.md @@ -28,7 +28,7 @@ SoftDeletableEntity.constructor #### Defined in -[models/address.ts:120](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/address.ts#L120) +[models/address.ts:120](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/address.ts#L120) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/address.ts:123](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/address.ts#L123) +[models/address.ts:123](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/address.ts#L123) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/address.ts:126](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/address.ts#L126) +[models/address.ts:126](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/address.ts#L126) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/address.ts:111](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/address.ts#L111) +[models/address.ts:111](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/address.ts#L111) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[models/address.ts:133](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/address.ts#L133) +[models/address.ts:133](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/address.ts#L133) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[models/address.ts:129](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/address.ts#L129) +[models/address.ts:129](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/address.ts#L129) ___ @@ -92,7 +92,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -102,7 +102,7 @@ ___ #### Defined in -[models/address.ts:108](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/address.ts#L108) +[models/address.ts:108](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/address.ts#L108) ___ @@ -112,7 +112,7 @@ ___ #### Defined in -[models/address.ts:104](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/address.ts#L104) +[models/address.ts:104](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/address.ts#L104) ___ @@ -126,7 +126,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -136,7 +136,7 @@ ___ #### Defined in -[models/address.ts:114](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/address.ts#L114) +[models/address.ts:114](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/address.ts#L114) ___ @@ -150,7 +150,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -160,7 +160,7 @@ ___ #### Defined in -[models/address.ts:117](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/address.ts#L117) +[models/address.ts:117](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/address.ts#L117) ___ @@ -170,7 +170,7 @@ ___ #### Defined in -[models/address.ts:145](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/address.ts#L145) +[models/address.ts:145](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/address.ts#L145) ___ @@ -180,7 +180,7 @@ ___ #### Defined in -[models/address.ts:142](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/address.ts#L142) +[models/address.ts:142](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/address.ts#L142) ___ @@ -190,7 +190,7 @@ ___ #### Defined in -[models/address.ts:139](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/address.ts#L139) +[models/address.ts:139](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/address.ts#L139) ___ @@ -200,7 +200,7 @@ ___ #### Defined in -[models/address.ts:136](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/address.ts#L136) +[models/address.ts:136](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/address.ts#L136) ___ @@ -214,7 +214,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -228,4 +228,4 @@ SoftDeletableEntity.updated\_at #### Defined in -[models/address.ts:147](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/address.ts#L147) +[models/address.ts:147](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/address.ts#L147) diff --git a/docs/content/references/entities/classes/BatchJob.md b/docs/content/references/entities/classes/BatchJob.md index 692b7a9484..6cfdafa70f 100644 --- a/docs/content/references/entities/classes/BatchJob.md +++ b/docs/content/references/entities/classes/BatchJob.md @@ -28,7 +28,7 @@ SoftDeletableEntity.constructor #### Defined in -[models/batch-job.ts:62](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/batch-job.ts#L62) +[models/batch-job.ts:62](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/batch-job.ts#L62) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/batch-job.ts:59](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/batch-job.ts#L59) +[models/batch-job.ts:59](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/batch-job.ts#L59) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/batch-job.ts:56](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/batch-job.ts#L56) +[models/batch-job.ts:56](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/batch-job.ts#L56) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/batch-job.ts:33](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/batch-job.ts#L33) +[models/batch-job.ts:33](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/batch-job.ts#L33) ___ @@ -72,7 +72,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -82,7 +82,7 @@ ___ #### Defined in -[models/batch-job.ts:26](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/batch-job.ts#L26) +[models/batch-job.ts:26](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/batch-job.ts#L26) ___ @@ -92,7 +92,7 @@ ___ #### Defined in -[models/batch-job.ts:30](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/batch-job.ts#L30) +[models/batch-job.ts:30](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/batch-job.ts#L30) ___ @@ -106,7 +106,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -116,7 +116,7 @@ ___ #### Defined in -[models/batch-job.ts:47](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/batch-job.ts#L47) +[models/batch-job.ts:47](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/batch-job.ts#L47) ___ @@ -126,7 +126,7 @@ ___ #### Defined in -[models/batch-job.ts:65](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/batch-job.ts#L65) +[models/batch-job.ts:65](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/batch-job.ts#L65) ___ @@ -140,7 +140,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -150,7 +150,7 @@ ___ #### Defined in -[models/batch-job.ts:50](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/batch-job.ts#L50) +[models/batch-job.ts:50](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/batch-job.ts#L50) ___ @@ -160,7 +160,7 @@ ___ #### Defined in -[models/batch-job.ts:53](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/batch-job.ts#L53) +[models/batch-job.ts:53](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/batch-job.ts#L53) ___ @@ -170,7 +170,7 @@ ___ #### Defined in -[models/batch-job.ts:36](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/batch-job.ts#L36) +[models/batch-job.ts:36](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/batch-job.ts#L36) ___ @@ -180,7 +180,7 @@ ___ #### Defined in -[models/batch-job.ts:67](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/batch-job.ts#L67) +[models/batch-job.ts:67](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/batch-job.ts#L67) ___ @@ -190,7 +190,7 @@ ___ #### Defined in -[models/batch-job.ts:23](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/batch-job.ts#L23) +[models/batch-job.ts:23](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/batch-job.ts#L23) ___ @@ -204,7 +204,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -218,7 +218,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[models/batch-job.ts:94](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/batch-job.ts#L94) +[models/batch-job.ts:94](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/batch-job.ts#L94) ___ @@ -232,7 +232,7 @@ ___ #### Defined in -[models/batch-job.ts:69](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/batch-job.ts#L69) +[models/batch-job.ts:69](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/batch-job.ts#L69) ___ @@ -246,4 +246,4 @@ ___ #### Defined in -[models/batch-job.ts:99](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/batch-job.ts#L99) +[models/batch-job.ts:99](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/batch-job.ts#L99) diff --git a/docs/content/references/entities/classes/Cart.md b/docs/content/references/entities/classes/Cart.md index 004aa05029..99f554d874 100644 --- a/docs/content/references/entities/classes/Cart.md +++ b/docs/content/references/entities/classes/Cart.md @@ -28,7 +28,7 @@ SoftDeletableEntity.constructor #### Defined in -[models/cart.ts:226](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L226) +[models/cart.ts:226](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L226) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/cart.ts:220](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L220) +[models/cart.ts:220](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L220) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/cart.ts:311](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L311) +[models/cart.ts:311](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L311) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/cart.ts:320](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L320) +[models/cart.ts:320](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L320) ___ @@ -72,7 +72,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -82,7 +82,7 @@ ___ #### Defined in -[models/cart.ts:285](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L285) +[models/cart.ts:285](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L285) ___ @@ -92,7 +92,7 @@ ___ #### Defined in -[models/cart.ts:281](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L281) +[models/cart.ts:281](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L281) ___ @@ -106,7 +106,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -116,7 +116,7 @@ ___ #### Defined in -[models/cart.ts:335](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L335) +[models/cart.ts:335](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L335) ___ @@ -126,7 +126,7 @@ ___ #### Defined in -[models/cart.ts:263](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L263) +[models/cart.ts:263](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L263) ___ @@ -136,7 +136,7 @@ ___ #### Defined in -[models/cart.ts:216](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L216) +[models/cart.ts:216](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L216) ___ @@ -146,7 +146,7 @@ ___ #### Defined in -[models/cart.ts:342](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L342) +[models/cart.ts:342](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L342) ___ @@ -156,7 +156,7 @@ ___ #### Defined in -[models/cart.ts:341](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L341) +[models/cart.ts:341](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L341) ___ @@ -166,7 +166,7 @@ ___ #### Defined in -[models/cart.ts:277](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L277) +[models/cart.ts:277](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L277) ___ @@ -180,7 +180,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -190,7 +190,7 @@ ___ #### Defined in -[models/cart.ts:317](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L317) +[models/cart.ts:317](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L317) ___ @@ -200,7 +200,7 @@ ___ #### Defined in -[models/cart.ts:241](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L241) +[models/cart.ts:241](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L241) ___ @@ -210,7 +210,7 @@ ___ #### Defined in -[models/cart.ts:323](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L323) +[models/cart.ts:323](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L323) ___ @@ -220,7 +220,7 @@ ___ #### Defined in -[models/cart.ts:213](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L213) +[models/cart.ts:213](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L213) ___ @@ -230,7 +230,7 @@ ___ #### Defined in -[models/cart.ts:300](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L300) +[models/cart.ts:300](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L300) ___ @@ -240,7 +240,7 @@ ___ #### Defined in -[models/cart.ts:314](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L314) +[models/cart.ts:314](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L314) ___ @@ -250,7 +250,7 @@ ___ #### Defined in -[models/cart.ts:296](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L296) +[models/cart.ts:296](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L296) ___ @@ -260,7 +260,7 @@ ___ #### Defined in -[models/cart.ts:287](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L287) +[models/cart.ts:287](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L287) ___ @@ -270,7 +270,7 @@ ___ #### Defined in -[models/cart.ts:292](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L292) +[models/cart.ts:292](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L292) ___ @@ -280,7 +280,7 @@ ___ #### Defined in -[models/cart.ts:340](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L340) +[models/cart.ts:340](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L340) ___ @@ -290,7 +290,7 @@ ___ #### Defined in -[models/cart.ts:337](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L337) +[models/cart.ts:337](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L337) ___ @@ -300,7 +300,7 @@ ___ #### Defined in -[models/cart.ts:249](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L249) +[models/cart.ts:249](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L249) ___ @@ -310,7 +310,7 @@ ___ #### Defined in -[models/cart.ts:245](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L245) +[models/cart.ts:245](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L245) ___ @@ -320,7 +320,7 @@ ___ #### Defined in -[models/cart.ts:332](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L332) +[models/cart.ts:332](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L332) ___ @@ -330,7 +330,7 @@ ___ #### Defined in -[models/cart.ts:326](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L326) +[models/cart.ts:326](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L326) ___ @@ -340,7 +340,7 @@ ___ #### Defined in -[models/cart.ts:236](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L236) +[models/cart.ts:236](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L236) ___ @@ -350,7 +350,7 @@ ___ #### Defined in -[models/cart.ts:230](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L230) +[models/cart.ts:230](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L230) ___ @@ -360,7 +360,7 @@ ___ #### Defined in -[models/cart.ts:305](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L305) +[models/cart.ts:305](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L305) ___ @@ -370,7 +370,7 @@ ___ #### Defined in -[models/cart.ts:334](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L334) +[models/cart.ts:334](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L334) ___ @@ -380,7 +380,7 @@ ___ #### Defined in -[models/cart.ts:339](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L339) +[models/cart.ts:339](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L339) ___ @@ -390,7 +390,7 @@ ___ #### Defined in -[models/cart.ts:336](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L336) +[models/cart.ts:336](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L336) ___ @@ -400,7 +400,7 @@ ___ #### Defined in -[models/cart.ts:338](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L338) +[models/cart.ts:338](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L338) ___ @@ -410,7 +410,7 @@ ___ #### Defined in -[models/cart.ts:308](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L308) +[models/cart.ts:308](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L308) ___ @@ -424,7 +424,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -438,7 +438,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[models/cart.ts:344](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L344) +[models/cart.ts:344](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L344) ___ @@ -452,4 +452,4 @@ ___ #### Defined in -[models/cart.ts:351](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L351) +[models/cart.ts:351](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L351) diff --git a/docs/content/references/entities/classes/ClaimImage.md b/docs/content/references/entities/classes/ClaimImage.md index 9679d7ae7e..5a4afeaedb 100644 --- a/docs/content/references/entities/classes/ClaimImage.md +++ b/docs/content/references/entities/classes/ClaimImage.md @@ -28,7 +28,7 @@ SoftDeletableEntity.constructor #### Defined in -[models/claim-image.ts:23](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-image.ts#L23) +[models/claim-image.ts:23](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-image.ts#L23) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/claim-image.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-image.ts#L19) +[models/claim-image.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-image.ts#L19) ___ @@ -52,7 +52,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -66,7 +66,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -80,7 +80,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -90,7 +90,7 @@ ___ #### Defined in -[models/claim-image.ts:29](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-image.ts#L29) +[models/claim-image.ts:29](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-image.ts#L29) ___ @@ -104,7 +104,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ___ @@ -114,7 +114,7 @@ ___ #### Defined in -[models/claim-image.ts:26](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-image.ts#L26) +[models/claim-image.ts:26](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-image.ts#L26) ## Methods @@ -128,4 +128,4 @@ ___ #### Defined in -[models/claim-image.ts:31](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-image.ts#L31) +[models/claim-image.ts:31](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-image.ts#L31) diff --git a/docs/content/references/entities/classes/ClaimItem.md b/docs/content/references/entities/classes/ClaimItem.md index e61ebc2ee0..a7bbfc275d 100644 --- a/docs/content/references/entities/classes/ClaimItem.md +++ b/docs/content/references/entities/classes/ClaimItem.md @@ -28,7 +28,7 @@ SoftDeletableEntity.constructor #### Defined in -[models/claim-item.ts:42](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-item.ts#L42) +[models/claim-item.ts:42](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-item.ts#L42) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/claim-item.ts:38](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-item.ts#L38) +[models/claim-item.ts:38](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-item.ts#L38) ___ @@ -52,7 +52,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -66,7 +66,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -80,7 +80,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -90,7 +90,7 @@ ___ #### Defined in -[models/claim-item.ts:34](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-item.ts#L34) +[models/claim-item.ts:34](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-item.ts#L34) ___ @@ -100,7 +100,7 @@ ___ #### Defined in -[models/claim-item.ts:50](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-item.ts#L50) +[models/claim-item.ts:50](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-item.ts#L50) ___ @@ -110,7 +110,7 @@ ___ #### Defined in -[models/claim-item.ts:46](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-item.ts#L46) +[models/claim-item.ts:46](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-item.ts#L46) ___ @@ -120,7 +120,7 @@ ___ #### Defined in -[models/claim-item.ts:84](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-item.ts#L84) +[models/claim-item.ts:84](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-item.ts#L84) ___ @@ -130,7 +130,7 @@ ___ #### Defined in -[models/claim-item.ts:64](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-item.ts#L64) +[models/claim-item.ts:64](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-item.ts#L64) ___ @@ -140,7 +140,7 @@ ___ #### Defined in -[models/claim-item.ts:67](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-item.ts#L67) +[models/claim-item.ts:67](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-item.ts#L67) ___ @@ -150,7 +150,7 @@ ___ #### Defined in -[models/claim-item.ts:61](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-item.ts#L61) +[models/claim-item.ts:61](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-item.ts#L61) ___ @@ -160,7 +160,7 @@ ___ #### Defined in -[models/claim-item.ts:81](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-item.ts#L81) +[models/claim-item.ts:81](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-item.ts#L81) ___ @@ -174,7 +174,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ___ @@ -184,7 +184,7 @@ ___ #### Defined in -[models/claim-item.ts:58](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-item.ts#L58) +[models/claim-item.ts:58](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-item.ts#L58) ___ @@ -194,7 +194,7 @@ ___ #### Defined in -[models/claim-item.ts:54](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-item.ts#L54) +[models/claim-item.ts:54](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-item.ts#L54) ## Methods @@ -208,4 +208,4 @@ ___ #### Defined in -[models/claim-item.ts:86](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-item.ts#L86) +[models/claim-item.ts:86](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-item.ts#L86) diff --git a/docs/content/references/entities/classes/ClaimOrder.md b/docs/content/references/entities/classes/ClaimOrder.md index 963f5eca3f..83d4d4c8e2 100644 --- a/docs/content/references/entities/classes/ClaimOrder.md +++ b/docs/content/references/entities/classes/ClaimOrder.md @@ -28,7 +28,7 @@ SoftDeletableEntity.constructor #### Defined in -[models/claim-order.ts:69](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L69) +[models/claim-order.ts:69](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L69) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/claim-order.ts:107](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L107) +[models/claim-order.ts:107](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L107) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/claim-order.ts:66](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L66) +[models/claim-order.ts:66](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L66) ___ @@ -62,7 +62,7 @@ SoftDeletableEntity.created\_at #### Defined in -[models/claim-order.ts:110](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L110) +[models/claim-order.ts:110](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L110) ___ @@ -76,7 +76,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[models/claim-order.ts:116](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L116) +[models/claim-order.ts:116](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L116) ___ @@ -86,7 +86,7 @@ ___ #### Defined in -[models/claim-order.ts:63](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L63) +[models/claim-order.ts:63](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L63) ___ @@ -96,7 +96,7 @@ ___ #### Defined in -[models/claim-order.ts:101](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L101) +[models/claim-order.ts:101](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L101) ___ @@ -110,7 +110,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -120,7 +120,7 @@ ___ #### Defined in -[models/claim-order.ts:125](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L125) +[models/claim-order.ts:125](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L125) ___ @@ -130,7 +130,7 @@ ___ #### Defined in -[models/claim-order.ts:122](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L122) +[models/claim-order.ts:122](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L122) ___ @@ -140,7 +140,7 @@ ___ #### Defined in -[models/claim-order.ts:119](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L119) +[models/claim-order.ts:119](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L119) ___ @@ -150,7 +150,7 @@ ___ #### Defined in -[models/claim-order.ts:80](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L80) +[models/claim-order.ts:80](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L80) ___ @@ -160,7 +160,7 @@ ___ #### Defined in -[models/claim-order.ts:76](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L76) +[models/claim-order.ts:76](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L76) ___ @@ -170,7 +170,7 @@ ___ #### Defined in -[models/claim-order.ts:56](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L56) +[models/claim-order.ts:56](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L56) ___ @@ -180,7 +180,7 @@ ___ #### Defined in -[models/claim-order.ts:104](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L104) +[models/claim-order.ts:104](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L104) ___ @@ -190,7 +190,7 @@ ___ #### Defined in -[models/claim-order.ts:83](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L83) +[models/claim-order.ts:83](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L83) ___ @@ -200,7 +200,7 @@ ___ #### Defined in -[models/claim-order.ts:91](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L91) +[models/claim-order.ts:91](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L91) ___ @@ -210,7 +210,7 @@ ___ #### Defined in -[models/claim-order.ts:87](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L87) +[models/claim-order.ts:87](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L87) ___ @@ -220,7 +220,7 @@ ___ #### Defined in -[models/claim-order.ts:96](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L96) +[models/claim-order.ts:96](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L96) ___ @@ -230,7 +230,7 @@ ___ #### Defined in -[models/claim-order.ts:72](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L72) +[models/claim-order.ts:72](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L72) ___ @@ -244,7 +244,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[models/claim-order.ts:113](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L113) +[models/claim-order.ts:113](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L113) ## Methods @@ -258,4 +258,4 @@ SoftDeletableEntity.updated\_at #### Defined in -[models/claim-order.ts:127](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L127) +[models/claim-order.ts:127](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L127) diff --git a/docs/content/references/entities/classes/ClaimTag.md b/docs/content/references/entities/classes/ClaimTag.md index 994afede1b..f5544a9713 100644 --- a/docs/content/references/entities/classes/ClaimTag.md +++ b/docs/content/references/entities/classes/ClaimTag.md @@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -46,7 +46,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -60,7 +60,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -70,7 +70,7 @@ ___ #### Defined in -[models/claim-tag.ts:14](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-tag.ts#L14) +[models/claim-tag.ts:14](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-tag.ts#L14) ___ @@ -84,7 +84,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ___ @@ -94,7 +94,7 @@ ___ #### Defined in -[models/claim-tag.ts:11](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-tag.ts#L11) +[models/claim-tag.ts:11](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-tag.ts#L11) ## Methods @@ -108,4 +108,4 @@ ___ #### Defined in -[models/claim-tag.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-tag.ts#L16) +[models/claim-tag.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-tag.ts#L16) diff --git a/docs/content/references/entities/classes/Country.md b/docs/content/references/entities/classes/Country.md index 2635e8e9c2..9ca7b9ce77 100644 --- a/docs/content/references/entities/classes/Country.md +++ b/docs/content/references/entities/classes/Country.md @@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/country.ts:31](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/country.ts#L31) +[models/country.ts:31](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/country.ts#L31) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[models/country.ts:15](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/country.ts#L15) +[models/country.ts:15](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/country.ts#L15) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/country.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/country.ts#L19) +[models/country.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/country.ts#L19) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/country.ts:22](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/country.ts#L22) +[models/country.ts:22](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/country.ts#L22) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/country.ts:28](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/country.ts#L28) +[models/country.ts:28](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/country.ts#L28) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[models/country.ts:25](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/country.ts#L25) +[models/country.ts:25](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/country.ts#L25) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[models/country.ts:39](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/country.ts#L39) +[models/country.ts:39](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/country.ts#L39) ___ @@ -88,4 +88,4 @@ ___ #### Defined in -[models/country.ts:35](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/country.ts#L35) +[models/country.ts:35](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/country.ts#L35) diff --git a/docs/content/references/entities/classes/Currency.md b/docs/content/references/entities/classes/Currency.md index 82b8f939f8..baf5c0b6ef 100644 --- a/docs/content/references/entities/classes/Currency.md +++ b/docs/content/references/entities/classes/Currency.md @@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/currency.ts:6](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/currency.ts#L6) +[models/currency.ts:6](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/currency.ts#L6) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[models/currency.ts:15](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/currency.ts#L15) +[models/currency.ts:15](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/currency.ts#L15) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/currency.ts:9](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/currency.ts#L9) +[models/currency.ts:9](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/currency.ts#L9) ___ @@ -48,4 +48,4 @@ ___ #### Defined in -[models/currency.ts:12](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/currency.ts#L12) +[models/currency.ts:12](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/currency.ts#L12) diff --git a/docs/content/references/entities/classes/CustomShippingOption.md b/docs/content/references/entities/classes/CustomShippingOption.md index 948b228e4f..eb406d6514 100644 --- a/docs/content/references/entities/classes/CustomShippingOption.md +++ b/docs/content/references/entities/classes/CustomShippingOption.md @@ -28,7 +28,7 @@ SoftDeletableEntity.constructor #### Defined in -[models/custom-shipping-option.ts:37](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/custom-shipping-option.ts#L37) +[models/custom-shipping-option.ts:37](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/custom-shipping-option.ts#L37) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/custom-shipping-option.ts:33](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/custom-shipping-option.ts#L33) +[models/custom-shipping-option.ts:33](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/custom-shipping-option.ts#L33) ___ @@ -52,7 +52,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -66,7 +66,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -80,7 +80,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -90,7 +90,7 @@ ___ #### Defined in -[models/custom-shipping-option.ts:40](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/custom-shipping-option.ts#L40) +[models/custom-shipping-option.ts:40](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/custom-shipping-option.ts#L40) ___ @@ -100,7 +100,7 @@ ___ #### Defined in -[models/custom-shipping-option.ts:21](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/custom-shipping-option.ts#L21) +[models/custom-shipping-option.ts:21](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/custom-shipping-option.ts#L21) ___ @@ -110,7 +110,7 @@ ___ #### Defined in -[models/custom-shipping-option.ts:29](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/custom-shipping-option.ts#L29) +[models/custom-shipping-option.ts:29](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/custom-shipping-option.ts#L29) ___ @@ -120,7 +120,7 @@ ___ #### Defined in -[models/custom-shipping-option.ts:25](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/custom-shipping-option.ts#L25) +[models/custom-shipping-option.ts:25](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/custom-shipping-option.ts#L25) ___ @@ -134,7 +134,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -148,4 +148,4 @@ SoftDeletableEntity.updated\_at #### Defined in -[models/custom-shipping-option.ts:42](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/custom-shipping-option.ts#L42) +[models/custom-shipping-option.ts:42](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/custom-shipping-option.ts#L42) diff --git a/docs/content/references/entities/classes/Customer.md b/docs/content/references/entities/classes/Customer.md index 25e1024125..805c994074 100644 --- a/docs/content/references/entities/classes/Customer.md +++ b/docs/content/references/entities/classes/Customer.md @@ -28,7 +28,7 @@ SoftDeletableEntity.constructor #### Defined in -[models/customer.ts:38](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/customer.ts#L38) +[models/customer.ts:38](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/customer.ts#L38) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/customer.ts:34](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/customer.ts#L34) +[models/customer.ts:34](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/customer.ts#L34) ___ @@ -52,7 +52,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -66,7 +66,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[models/customer.ts:24](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/customer.ts#L24) +[models/customer.ts:24](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/customer.ts#L24) ___ @@ -86,7 +86,7 @@ ___ #### Defined in -[models/customer.ts:27](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/customer.ts#L27) +[models/customer.ts:27](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/customer.ts#L27) ___ @@ -96,7 +96,7 @@ ___ #### Defined in -[models/customer.ts:69](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/customer.ts#L69) +[models/customer.ts:69](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/customer.ts#L69) ___ @@ -106,7 +106,7 @@ ___ #### Defined in -[models/customer.ts:50](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/customer.ts#L50) +[models/customer.ts:50](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/customer.ts#L50) ___ @@ -120,7 +120,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -130,7 +130,7 @@ ___ #### Defined in -[models/customer.ts:30](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/customer.ts#L30) +[models/customer.ts:30](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/customer.ts#L30) ___ @@ -140,7 +140,7 @@ ___ #### Defined in -[models/customer.ts:72](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/customer.ts#L72) +[models/customer.ts:72](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/customer.ts#L72) ___ @@ -150,7 +150,7 @@ ___ #### Defined in -[models/customer.ts:53](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/customer.ts#L53) +[models/customer.ts:53](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/customer.ts#L53) ___ @@ -160,7 +160,7 @@ ___ #### Defined in -[models/customer.ts:44](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/customer.ts#L44) +[models/customer.ts:44](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/customer.ts#L44) ___ @@ -170,7 +170,7 @@ ___ #### Defined in -[models/customer.ts:47](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/customer.ts#L47) +[models/customer.ts:47](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/customer.ts#L47) ___ @@ -180,7 +180,7 @@ ___ #### Defined in -[models/customer.ts:41](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/customer.ts#L41) +[models/customer.ts:41](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/customer.ts#L41) ___ @@ -194,7 +194,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -208,4 +208,4 @@ SoftDeletableEntity.updated\_at #### Defined in -[models/customer.ts:74](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/customer.ts#L74) +[models/customer.ts:74](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/customer.ts#L74) diff --git a/docs/content/references/entities/classes/CustomerGroup.md b/docs/content/references/entities/classes/CustomerGroup.md index bf150a7809..51febd60d8 100644 --- a/docs/content/references/entities/classes/CustomerGroup.md +++ b/docs/content/references/entities/classes/CustomerGroup.md @@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[models/customer-group.ts:18](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/customer-group.ts#L18) +[models/customer-group.ts:18](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/customer-group.ts#L18) ___ @@ -56,7 +56,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -70,7 +70,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -80,7 +80,7 @@ ___ #### Defined in -[models/customer-group.ts:26](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/customer-group.ts#L26) +[models/customer-group.ts:26](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/customer-group.ts#L26) ___ @@ -90,7 +90,7 @@ ___ #### Defined in -[models/customer-group.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/customer-group.ts#L13) +[models/customer-group.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/customer-group.ts#L13) ___ @@ -100,7 +100,7 @@ ___ #### Defined in -[models/customer-group.ts:23](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/customer-group.ts#L23) +[models/customer-group.ts:23](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/customer-group.ts#L23) ___ @@ -114,7 +114,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -128,4 +128,4 @@ SoftDeletableEntity.updated\_at #### Defined in -[models/customer-group.ts:28](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/customer-group.ts#L28) +[models/customer-group.ts:28](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/customer-group.ts#L28) diff --git a/docs/content/references/entities/classes/Discount.md b/docs/content/references/entities/classes/Discount.md index 687640d435..3796b568c7 100644 --- a/docs/content/references/entities/classes/Discount.md +++ b/docs/content/references/entities/classes/Discount.md @@ -28,7 +28,7 @@ SoftDeletableEntity.constructor #### Defined in -[models/discount.ts:22](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount.ts#L22) +[models/discount.ts:22](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount.ts#L22) ___ @@ -42,7 +42,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -56,7 +56,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -66,7 +66,7 @@ ___ #### Defined in -[models/discount.ts:52](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount.ts#L52) +[models/discount.ts:52](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount.ts#L52) ___ @@ -80,7 +80,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -90,7 +90,7 @@ ___ #### Defined in -[models/discount.ts:36](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount.ts#L36) +[models/discount.ts:36](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount.ts#L36) ___ @@ -100,7 +100,7 @@ ___ #### Defined in -[models/discount.ts:25](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount.ts#L25) +[models/discount.ts:25](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount.ts#L25) ___ @@ -110,7 +110,7 @@ ___ #### Defined in -[models/discount.ts:78](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount.ts#L78) +[models/discount.ts:78](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount.ts#L78) ___ @@ -120,7 +120,7 @@ ___ #### Defined in -[models/discount.ts:43](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount.ts#L43) +[models/discount.ts:43](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount.ts#L43) ___ @@ -130,7 +130,7 @@ ___ #### Defined in -[models/discount.ts:39](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount.ts#L39) +[models/discount.ts:39](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount.ts#L39) ___ @@ -140,7 +140,7 @@ ___ #### Defined in -[models/discount.ts:69](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount.ts#L69) +[models/discount.ts:69](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount.ts#L69) ___ @@ -150,7 +150,7 @@ ___ #### Defined in -[models/discount.ts:33](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount.ts#L33) +[models/discount.ts:33](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount.ts#L33) ___ @@ -160,7 +160,7 @@ ___ #### Defined in -[models/discount.ts:29](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount.ts#L29) +[models/discount.ts:29](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount.ts#L29) ___ @@ -170,7 +170,7 @@ ___ #### Defined in -[models/discount.ts:49](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount.ts#L49) +[models/discount.ts:49](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount.ts#L49) ___ @@ -184,7 +184,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ___ @@ -194,7 +194,7 @@ ___ #### Defined in -[models/discount.ts:75](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount.ts#L75) +[models/discount.ts:75](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount.ts#L75) ___ @@ -204,7 +204,7 @@ ___ #### Defined in -[models/discount.ts:72](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount.ts#L72) +[models/discount.ts:72](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount.ts#L72) ___ @@ -214,7 +214,7 @@ ___ #### Defined in -[models/discount.ts:55](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount.ts#L55) +[models/discount.ts:55](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount.ts#L55) ## Methods @@ -228,4 +228,4 @@ ___ #### Defined in -[models/discount.ts:80](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount.ts#L80) +[models/discount.ts:80](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount.ts#L80) diff --git a/docs/content/references/entities/classes/DiscountCondition.md b/docs/content/references/entities/classes/DiscountCondition.md index e903d3d41c..71e0a38e38 100644 --- a/docs/content/references/entities/classes/DiscountCondition.md +++ b/docs/content/references/entities/classes/DiscountCondition.md @@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[models/discount-condition.ts:127](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition.ts#L127) +[models/discount-condition.ts:127](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition.ts#L127) ___ @@ -56,7 +56,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -66,7 +66,7 @@ ___ #### Defined in -[models/discount-condition.ts:57](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition.ts#L57) +[models/discount-condition.ts:57](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition.ts#L57) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[models/discount-condition.ts:53](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition.ts#L53) +[models/discount-condition.ts:53](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition.ts#L53) ___ @@ -90,7 +90,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -100,7 +100,7 @@ ___ #### Defined in -[models/discount-condition.ts:130](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition.ts#L130) +[models/discount-condition.ts:130](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition.ts#L130) ___ @@ -110,7 +110,7 @@ ___ #### Defined in -[models/discount-condition.ts:49](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition.ts#L49) +[models/discount-condition.ts:49](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition.ts#L49) ___ @@ -120,7 +120,7 @@ ___ #### Defined in -[models/discount-condition.ts:113](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition.ts#L113) +[models/discount-condition.ts:113](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition.ts#L113) ___ @@ -130,7 +130,7 @@ ___ #### Defined in -[models/discount-condition.ts:99](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition.ts#L99) +[models/discount-condition.ts:99](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition.ts#L99) ___ @@ -140,7 +140,7 @@ ___ #### Defined in -[models/discount-condition.ts:85](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition.ts#L85) +[models/discount-condition.ts:85](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition.ts#L85) ___ @@ -150,7 +150,7 @@ ___ #### Defined in -[models/discount-condition.ts:71](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition.ts#L71) +[models/discount-condition.ts:71](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition.ts#L71) ___ @@ -160,7 +160,7 @@ ___ #### Defined in -[models/discount-condition.ts:43](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition.ts#L43) +[models/discount-condition.ts:43](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition.ts#L43) ___ @@ -174,7 +174,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -188,4 +188,4 @@ SoftDeletableEntity.updated\_at #### Defined in -[models/discount-condition.ts:132](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition.ts#L132) +[models/discount-condition.ts:132](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition.ts#L132) diff --git a/docs/content/references/entities/classes/DiscountConditionCustomerGroup.md b/docs/content/references/entities/classes/DiscountConditionCustomerGroup.md index 3dbea7a394..9a9b5f0c5e 100644 --- a/docs/content/references/entities/classes/DiscountConditionCustomerGroup.md +++ b/docs/content/references/entities/classes/DiscountConditionCustomerGroup.md @@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/discount-condition-customer-group.ts:20](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-customer-group.ts#L20) +[models/discount-condition-customer-group.ts:20](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-customer-group.ts#L20) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[models/discount-condition-customer-group.ts:31](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-customer-group.ts#L31) +[models/discount-condition-customer-group.ts:31](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-customer-group.ts#L31) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/discount-condition-customer-group.ts:24](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-customer-group.ts#L24) +[models/discount-condition-customer-group.ts:24](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-customer-group.ts#L24) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/discount-condition-customer-group.ts:17](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-customer-group.ts#L17) +[models/discount-condition-customer-group.ts:17](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-customer-group.ts#L17) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/discount-condition-customer-group.ts:28](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-customer-group.ts#L28) +[models/discount-condition-customer-group.ts:28](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-customer-group.ts#L28) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[models/discount-condition-customer-group.ts:37](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-customer-group.ts#L37) +[models/discount-condition-customer-group.ts:37](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-customer-group.ts#L37) ___ @@ -78,4 +78,4 @@ ___ #### Defined in -[models/discount-condition-customer-group.ts:34](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-customer-group.ts#L34) +[models/discount-condition-customer-group.ts:34](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-customer-group.ts#L34) diff --git a/docs/content/references/entities/classes/DiscountConditionProduct.md b/docs/content/references/entities/classes/DiscountConditionProduct.md index 8e5d069b89..28f82a8c47 100644 --- a/docs/content/references/entities/classes/DiscountConditionProduct.md +++ b/docs/content/references/entities/classes/DiscountConditionProduct.md @@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/discount-condition-product.ts:20](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product.ts#L20) +[models/discount-condition-product.ts:20](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product.ts#L20) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[models/discount-condition-product.ts:31](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product.ts#L31) +[models/discount-condition-product.ts:31](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product.ts#L31) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/discount-condition-product.ts:28](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product.ts#L28) +[models/discount-condition-product.ts:28](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product.ts#L28) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/discount-condition-product.ts:37](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product.ts#L37) +[models/discount-condition-product.ts:37](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product.ts#L37) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/discount-condition-product.ts:24](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product.ts#L24) +[models/discount-condition-product.ts:24](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product.ts#L24) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[models/discount-condition-product.ts:17](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product.ts#L17) +[models/discount-condition-product.ts:17](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product.ts#L17) ___ @@ -78,4 +78,4 @@ ___ #### Defined in -[models/discount-condition-product.ts:34](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product.ts#L34) +[models/discount-condition-product.ts:34](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product.ts#L34) diff --git a/docs/content/references/entities/classes/DiscountConditionProductCollection.md b/docs/content/references/entities/classes/DiscountConditionProductCollection.md index bbe4ada37b..9e4a529a9c 100644 --- a/docs/content/references/entities/classes/DiscountConditionProductCollection.md +++ b/docs/content/references/entities/classes/DiscountConditionProductCollection.md @@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/discount-condition-product-collection.ts:20](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product-collection.ts#L20) +[models/discount-condition-product-collection.ts:20](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product-collection.ts#L20) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[models/discount-condition-product-collection.ts:31](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product-collection.ts#L31) +[models/discount-condition-product-collection.ts:31](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product-collection.ts#L31) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/discount-condition-product-collection.ts:28](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product-collection.ts#L28) +[models/discount-condition-product-collection.ts:28](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product-collection.ts#L28) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/discount-condition-product-collection.ts:37](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product-collection.ts#L37) +[models/discount-condition-product-collection.ts:37](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product-collection.ts#L37) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/discount-condition-product-collection.ts:24](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product-collection.ts#L24) +[models/discount-condition-product-collection.ts:24](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product-collection.ts#L24) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[models/discount-condition-product-collection.ts:17](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product-collection.ts#L17) +[models/discount-condition-product-collection.ts:17](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product-collection.ts#L17) ___ @@ -78,4 +78,4 @@ ___ #### Defined in -[models/discount-condition-product-collection.ts:34](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product-collection.ts#L34) +[models/discount-condition-product-collection.ts:34](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product-collection.ts#L34) diff --git a/docs/content/references/entities/classes/DiscountConditionProductTag.md b/docs/content/references/entities/classes/DiscountConditionProductTag.md index 1ae5152d31..86126a7343 100644 --- a/docs/content/references/entities/classes/DiscountConditionProductTag.md +++ b/docs/content/references/entities/classes/DiscountConditionProductTag.md @@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/discount-condition-product-tag.ts:20](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product-tag.ts#L20) +[models/discount-condition-product-tag.ts:20](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product-tag.ts#L20) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[models/discount-condition-product-tag.ts:31](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product-tag.ts#L31) +[models/discount-condition-product-tag.ts:31](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product-tag.ts#L31) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/discount-condition-product-tag.ts:28](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product-tag.ts#L28) +[models/discount-condition-product-tag.ts:28](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product-tag.ts#L28) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/discount-condition-product-tag.ts:37](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product-tag.ts#L37) +[models/discount-condition-product-tag.ts:37](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product-tag.ts#L37) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/discount-condition-product-tag.ts:24](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product-tag.ts#L24) +[models/discount-condition-product-tag.ts:24](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product-tag.ts#L24) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[models/discount-condition-product-tag.ts:17](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product-tag.ts#L17) +[models/discount-condition-product-tag.ts:17](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product-tag.ts#L17) ___ @@ -78,4 +78,4 @@ ___ #### Defined in -[models/discount-condition-product-tag.ts:34](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product-tag.ts#L34) +[models/discount-condition-product-tag.ts:34](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product-tag.ts#L34) diff --git a/docs/content/references/entities/classes/DiscountConditionProductType.md b/docs/content/references/entities/classes/DiscountConditionProductType.md index 52306db294..5887e4792a 100644 --- a/docs/content/references/entities/classes/DiscountConditionProductType.md +++ b/docs/content/references/entities/classes/DiscountConditionProductType.md @@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/discount-condition-product-type.ts:20](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product-type.ts#L20) +[models/discount-condition-product-type.ts:20](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product-type.ts#L20) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[models/discount-condition-product-type.ts:31](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product-type.ts#L31) +[models/discount-condition-product-type.ts:31](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product-type.ts#L31) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/discount-condition-product-type.ts:28](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product-type.ts#L28) +[models/discount-condition-product-type.ts:28](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product-type.ts#L28) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/discount-condition-product-type.ts:37](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product-type.ts#L37) +[models/discount-condition-product-type.ts:37](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product-type.ts#L37) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/discount-condition-product-type.ts:24](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product-type.ts#L24) +[models/discount-condition-product-type.ts:24](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product-type.ts#L24) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[models/discount-condition-product-type.ts:17](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product-type.ts#L17) +[models/discount-condition-product-type.ts:17](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product-type.ts#L17) ___ @@ -78,4 +78,4 @@ ___ #### Defined in -[models/discount-condition-product-type.ts:34](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition-product-type.ts#L34) +[models/discount-condition-product-type.ts:34](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition-product-type.ts#L34) diff --git a/docs/content/references/entities/classes/DiscountRule.md b/docs/content/references/entities/classes/DiscountRule.md index 357e059d06..1b677625c5 100644 --- a/docs/content/references/entities/classes/DiscountRule.md +++ b/docs/content/references/entities/classes/DiscountRule.md @@ -28,7 +28,7 @@ SoftDeletableEntity.constructor #### Defined in -[models/discount-rule.ts:38](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-rule.ts#L38) +[models/discount-rule.ts:38](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-rule.ts#L38) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/discount-rule.ts:41](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-rule.ts#L41) +[models/discount-rule.ts:41](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-rule.ts#L41) ___ @@ -52,7 +52,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -66,7 +66,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[models/discount-rule.ts:22](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-rule.ts#L22) +[models/discount-rule.ts:22](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-rule.ts#L22) ___ @@ -90,7 +90,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -100,7 +100,7 @@ ___ #### Defined in -[models/discount-rule.ts:44](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-rule.ts#L44) +[models/discount-rule.ts:44](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-rule.ts#L44) ___ @@ -110,7 +110,7 @@ ___ #### Defined in -[models/discount-rule.ts:28](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-rule.ts#L28) +[models/discount-rule.ts:28](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-rule.ts#L28) ___ @@ -124,7 +124,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ___ @@ -134,7 +134,7 @@ ___ #### Defined in -[models/discount-rule.ts:31](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-rule.ts#L31) +[models/discount-rule.ts:31](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-rule.ts#L31) ## Methods @@ -148,4 +148,4 @@ ___ #### Defined in -[models/discount-rule.ts:46](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-rule.ts#L46) +[models/discount-rule.ts:46](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-rule.ts#L46) diff --git a/docs/content/references/entities/classes/DraftOrder.md b/docs/content/references/entities/classes/DraftOrder.md index 87ad8dd87b..5f7cf00601 100644 --- a/docs/content/references/entities/classes/DraftOrder.md +++ b/docs/content/references/entities/classes/DraftOrder.md @@ -28,7 +28,7 @@ BaseEntity.constructor #### Defined in -[models/draft-order.ts:54](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/draft-order.ts#L54) +[models/draft-order.ts:54](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/draft-order.ts#L54) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/draft-order.ts:43](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/draft-order.ts#L43) +[models/draft-order.ts:43](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/draft-order.ts#L43) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/draft-order.ts:39](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/draft-order.ts#L39) +[models/draft-order.ts:39](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/draft-order.ts#L39) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/draft-order.ts:57](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/draft-order.ts#L57) +[models/draft-order.ts:57](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/draft-order.ts#L57) ___ @@ -72,7 +72,7 @@ BaseEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -82,7 +82,7 @@ ___ #### Defined in -[models/draft-order.ts:35](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/draft-order.ts#L35) +[models/draft-order.ts:35](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/draft-order.ts#L35) ___ @@ -96,7 +96,7 @@ BaseEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -106,7 +106,7 @@ ___ #### Defined in -[models/draft-order.ts:66](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/draft-order.ts#L66) +[models/draft-order.ts:66](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/draft-order.ts#L66) ___ @@ -116,7 +116,7 @@ ___ #### Defined in -[models/draft-order.ts:63](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/draft-order.ts#L63) +[models/draft-order.ts:63](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/draft-order.ts#L63) ___ @@ -126,7 +126,7 @@ ___ #### Defined in -[models/draft-order.ts:60](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/draft-order.ts#L60) +[models/draft-order.ts:60](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/draft-order.ts#L60) ___ @@ -136,7 +136,7 @@ ___ #### Defined in -[models/draft-order.ts:51](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/draft-order.ts#L51) +[models/draft-order.ts:51](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/draft-order.ts#L51) ___ @@ -146,7 +146,7 @@ ___ #### Defined in -[models/draft-order.ts:47](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/draft-order.ts#L47) +[models/draft-order.ts:47](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/draft-order.ts#L47) ___ @@ -156,7 +156,7 @@ ___ #### Defined in -[models/draft-order.ts:30](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/draft-order.ts#L30) +[models/draft-order.ts:30](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/draft-order.ts#L30) ___ @@ -170,7 +170,7 @@ BaseEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -184,4 +184,4 @@ BaseEntity.updated\_at #### Defined in -[models/draft-order.ts:68](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/draft-order.ts#L68) +[models/draft-order.ts:68](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/draft-order.ts#L68) diff --git a/docs/content/references/entities/classes/Fulfillment.md b/docs/content/references/entities/classes/Fulfillment.md index 10fcda77e7..f47a49ef8d 100644 --- a/docs/content/references/entities/classes/Fulfillment.md +++ b/docs/content/references/entities/classes/Fulfillment.md @@ -28,7 +28,7 @@ BaseEntity.constructor #### Defined in -[models/fulfillment.ts:79](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment.ts#L79) +[models/fulfillment.ts:79](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment.ts#L79) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/fulfillment.ts:29](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment.ts#L29) +[models/fulfillment.ts:29](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment.ts#L29) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/fulfillment.ts:25](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment.ts#L25) +[models/fulfillment.ts:25](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment.ts#L25) ___ @@ -62,7 +62,7 @@ BaseEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -72,7 +72,7 @@ ___ #### Defined in -[models/fulfillment.ts:73](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment.ts#L73) +[models/fulfillment.ts:73](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment.ts#L73) ___ @@ -86,7 +86,7 @@ BaseEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -96,7 +96,7 @@ ___ #### Defined in -[models/fulfillment.ts:85](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment.ts#L85) +[models/fulfillment.ts:85](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment.ts#L85) ___ @@ -106,7 +106,7 @@ ___ #### Defined in -[models/fulfillment.ts:62](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment.ts#L62) +[models/fulfillment.ts:62](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment.ts#L62) ___ @@ -116,7 +116,7 @@ ___ #### Defined in -[models/fulfillment.ts:82](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment.ts#L82) +[models/fulfillment.ts:82](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment.ts#L82) ___ @@ -126,7 +126,7 @@ ___ #### Defined in -[models/fulfillment.ts:48](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment.ts#L48) +[models/fulfillment.ts:48](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment.ts#L48) ___ @@ -136,7 +136,7 @@ ___ #### Defined in -[models/fulfillment.ts:45](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment.ts#L45) +[models/fulfillment.ts:45](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment.ts#L45) ___ @@ -146,7 +146,7 @@ ___ #### Defined in -[models/fulfillment.ts:41](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment.ts#L41) +[models/fulfillment.ts:41](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment.ts#L41) ___ @@ -156,7 +156,7 @@ ___ #### Defined in -[models/fulfillment.ts:56](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment.ts#L56) +[models/fulfillment.ts:56](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment.ts#L56) ___ @@ -166,7 +166,7 @@ ___ #### Defined in -[models/fulfillment.ts:52](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment.ts#L52) +[models/fulfillment.ts:52](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment.ts#L52) ___ @@ -176,7 +176,7 @@ ___ #### Defined in -[models/fulfillment.ts:76](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment.ts#L76) +[models/fulfillment.ts:76](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment.ts#L76) ___ @@ -186,7 +186,7 @@ ___ #### Defined in -[models/fulfillment.ts:37](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment.ts#L37) +[models/fulfillment.ts:37](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment.ts#L37) ___ @@ -196,7 +196,7 @@ ___ #### Defined in -[models/fulfillment.ts:33](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment.ts#L33) +[models/fulfillment.ts:33](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment.ts#L33) ___ @@ -206,7 +206,7 @@ ___ #### Defined in -[models/fulfillment.ts:67](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment.ts#L67) +[models/fulfillment.ts:67](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment.ts#L67) ___ @@ -216,7 +216,7 @@ ___ #### Defined in -[models/fulfillment.ts:70](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment.ts#L70) +[models/fulfillment.ts:70](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment.ts#L70) ___ @@ -230,7 +230,7 @@ BaseEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -244,4 +244,4 @@ BaseEntity.updated\_at #### Defined in -[models/fulfillment.ts:87](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment.ts#L87) +[models/fulfillment.ts:87](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment.ts#L87) diff --git a/docs/content/references/entities/classes/FulfillmentItem.md b/docs/content/references/entities/classes/FulfillmentItem.md index 25d9ca8faa..bf5471bae4 100644 --- a/docs/content/references/entities/classes/FulfillmentItem.md +++ b/docs/content/references/entities/classes/FulfillmentItem.md @@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/fulfillment-item.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment-item.ts#L16) +[models/fulfillment-item.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment-item.ts#L16) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[models/fulfillment-item.ts:9](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment-item.ts#L9) +[models/fulfillment-item.ts:9](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment-item.ts#L9) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/fulfillment-item.ts:20](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment-item.ts#L20) +[models/fulfillment-item.ts:20](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment-item.ts#L20) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/fulfillment-item.ts:12](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment-item.ts#L12) +[models/fulfillment-item.ts:12](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment-item.ts#L12) ___ @@ -58,4 +58,4 @@ ___ #### Defined in -[models/fulfillment-item.ts:23](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment-item.ts#L23) +[models/fulfillment-item.ts:23](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment-item.ts#L23) diff --git a/docs/content/references/entities/classes/FulfillmentProvider.md b/docs/content/references/entities/classes/FulfillmentProvider.md index 0cdbe2e50a..70a36c09af 100644 --- a/docs/content/references/entities/classes/FulfillmentProvider.md +++ b/docs/content/references/entities/classes/FulfillmentProvider.md @@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/fulfillment-provider.ts:6](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment-provider.ts#L6) +[models/fulfillment-provider.ts:6](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment-provider.ts#L6) ___ @@ -28,4 +28,4 @@ ___ #### Defined in -[models/fulfillment-provider.ts:9](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/fulfillment-provider.ts#L9) +[models/fulfillment-provider.ts:9](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/fulfillment-provider.ts#L9) diff --git a/docs/content/references/entities/classes/GiftCard.md b/docs/content/references/entities/classes/GiftCard.md index 2a62942c11..f85cea6937 100644 --- a/docs/content/references/entities/classes/GiftCard.md +++ b/docs/content/references/entities/classes/GiftCard.md @@ -28,7 +28,7 @@ SoftDeletableEntity.constructor #### Defined in -[models/gift-card.ts:26](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/gift-card.ts#L26) +[models/gift-card.ts:26](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/gift-card.ts#L26) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/gift-card.ts:20](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/gift-card.ts#L20) +[models/gift-card.ts:20](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/gift-card.ts#L20) ___ @@ -52,7 +52,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -66,7 +66,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[models/gift-card.ts:51](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/gift-card.ts#L51) +[models/gift-card.ts:51](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/gift-card.ts#L51) ___ @@ -90,7 +90,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -100,7 +100,7 @@ ___ #### Defined in -[models/gift-card.ts:45](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/gift-card.ts#L45) +[models/gift-card.ts:45](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/gift-card.ts#L45) ___ @@ -110,7 +110,7 @@ ___ #### Defined in -[models/gift-card.ts:54](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/gift-card.ts#L54) +[models/gift-card.ts:54](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/gift-card.ts#L54) ___ @@ -120,7 +120,7 @@ ___ #### Defined in -[models/gift-card.ts:42](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/gift-card.ts#L42) +[models/gift-card.ts:42](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/gift-card.ts#L42) ___ @@ -130,7 +130,7 @@ ___ #### Defined in -[models/gift-card.ts:38](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/gift-card.ts#L38) +[models/gift-card.ts:38](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/gift-card.ts#L38) ___ @@ -140,7 +140,7 @@ ___ #### Defined in -[models/gift-card.ts:34](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/gift-card.ts#L34) +[models/gift-card.ts:34](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/gift-card.ts#L34) ___ @@ -150,7 +150,7 @@ ___ #### Defined in -[models/gift-card.ts:30](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/gift-card.ts#L30) +[models/gift-card.ts:30](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/gift-card.ts#L30) ___ @@ -164,7 +164,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ___ @@ -174,7 +174,7 @@ ___ #### Defined in -[models/gift-card.ts:23](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/gift-card.ts#L23) +[models/gift-card.ts:23](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/gift-card.ts#L23) ## Methods @@ -188,4 +188,4 @@ ___ #### Defined in -[models/gift-card.ts:56](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/gift-card.ts#L56) +[models/gift-card.ts:56](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/gift-card.ts#L56) diff --git a/docs/content/references/entities/classes/GiftCardTransaction.md b/docs/content/references/entities/classes/GiftCardTransaction.md index 2b582a14df..577022971d 100644 --- a/docs/content/references/entities/classes/GiftCardTransaction.md +++ b/docs/content/references/entities/classes/GiftCardTransaction.md @@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/gift-card-transaction.ts:40](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/gift-card-transaction.ts#L40) +[models/gift-card-transaction.ts:40](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/gift-card-transaction.ts#L40) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[models/gift-card-transaction.ts:43](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/gift-card-transaction.ts#L43) +[models/gift-card-transaction.ts:43](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/gift-card-transaction.ts#L43) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/gift-card-transaction.ts:29](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/gift-card-transaction.ts#L29) +[models/gift-card-transaction.ts:29](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/gift-card-transaction.ts#L29) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/gift-card-transaction.ts:25](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/gift-card-transaction.ts#L25) +[models/gift-card-transaction.ts:25](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/gift-card-transaction.ts#L25) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/gift-card-transaction.ts:22](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/gift-card-transaction.ts#L22) +[models/gift-card-transaction.ts:22](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/gift-card-transaction.ts#L22) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[models/gift-card-transaction.ts:46](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/gift-card-transaction.ts#L46) +[models/gift-card-transaction.ts:46](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/gift-card-transaction.ts#L46) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[models/gift-card-transaction.ts:37](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/gift-card-transaction.ts#L37) +[models/gift-card-transaction.ts:37](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/gift-card-transaction.ts#L37) ___ @@ -88,7 +88,7 @@ ___ #### Defined in -[models/gift-card-transaction.ts:33](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/gift-card-transaction.ts#L33) +[models/gift-card-transaction.ts:33](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/gift-card-transaction.ts#L33) ___ @@ -98,7 +98,7 @@ ___ #### Defined in -[models/gift-card-transaction.ts:49](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/gift-card-transaction.ts#L49) +[models/gift-card-transaction.ts:49](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/gift-card-transaction.ts#L49) ## Methods @@ -112,4 +112,4 @@ ___ #### Defined in -[models/gift-card-transaction.ts:51](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/gift-card-transaction.ts#L51) +[models/gift-card-transaction.ts:51](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/gift-card-transaction.ts#L51) diff --git a/docs/content/references/entities/classes/IdempotencyKey.md b/docs/content/references/entities/classes/IdempotencyKey.md index 1921ff8ed7..5eb34e1efc 100644 --- a/docs/content/references/entities/classes/IdempotencyKey.md +++ b/docs/content/references/entities/classes/IdempotencyKey.md @@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/idempotency-key.ts:23](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/idempotency-key.ts#L23) +[models/idempotency-key.ts:23](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/idempotency-key.ts#L23) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[models/idempotency-key.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/idempotency-key.ts#L16) +[models/idempotency-key.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/idempotency-key.ts#L16) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/idempotency-key.ts:20](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/idempotency-key.ts#L20) +[models/idempotency-key.ts:20](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/idempotency-key.ts#L20) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/idempotency-key.ts:26](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/idempotency-key.ts#L26) +[models/idempotency-key.ts:26](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/idempotency-key.ts#L26) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/idempotency-key.ts:44](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/idempotency-key.ts#L44) +[models/idempotency-key.ts:44](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/idempotency-key.ts#L44) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[models/idempotency-key.ts:29](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/idempotency-key.ts#L29) +[models/idempotency-key.ts:29](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/idempotency-key.ts#L29) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[models/idempotency-key.ts:32](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/idempotency-key.ts#L32) +[models/idempotency-key.ts:32](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/idempotency-key.ts#L32) ___ @@ -88,7 +88,7 @@ ___ #### Defined in -[models/idempotency-key.ts:35](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/idempotency-key.ts#L35) +[models/idempotency-key.ts:35](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/idempotency-key.ts#L35) ___ @@ -98,7 +98,7 @@ ___ #### Defined in -[models/idempotency-key.ts:41](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/idempotency-key.ts#L41) +[models/idempotency-key.ts:41](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/idempotency-key.ts#L41) ___ @@ -108,7 +108,7 @@ ___ #### Defined in -[models/idempotency-key.ts:38](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/idempotency-key.ts#L38) +[models/idempotency-key.ts:38](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/idempotency-key.ts#L38) ## Methods @@ -122,4 +122,4 @@ ___ #### Defined in -[models/idempotency-key.ts:46](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/idempotency-key.ts#L46) +[models/idempotency-key.ts:46](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/idempotency-key.ts#L46) diff --git a/docs/content/references/entities/classes/Image.md b/docs/content/references/entities/classes/Image.md index c1bd08f4b7..60c1e61e39 100644 --- a/docs/content/references/entities/classes/Image.md +++ b/docs/content/references/entities/classes/Image.md @@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -46,7 +46,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -60,7 +60,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -70,7 +70,7 @@ ___ #### Defined in -[models/image.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/image.ts#L13) +[models/image.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/image.ts#L13) ___ @@ -84,7 +84,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ___ @@ -94,7 +94,7 @@ ___ #### Defined in -[models/image.ts:10](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/image.ts#L10) +[models/image.ts:10](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/image.ts#L10) ## Methods @@ -108,4 +108,4 @@ ___ #### Defined in -[models/image.ts:15](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/image.ts#L15) +[models/image.ts:15](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/image.ts#L15) diff --git a/docs/content/references/entities/classes/Invite.md b/docs/content/references/entities/classes/Invite.md index a34615f122..668b509847 100644 --- a/docs/content/references/entities/classes/Invite.md +++ b/docs/content/references/entities/classes/Invite.md @@ -28,7 +28,7 @@ SoftDeletableEntity.constructor #### Defined in -[models/invite.ts:23](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/invite.ts#L23) +[models/invite.ts:23](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/invite.ts#L23) ___ @@ -42,7 +42,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -56,7 +56,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -66,7 +66,7 @@ ___ #### Defined in -[models/invite.ts:29](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/invite.ts#L29) +[models/invite.ts:29](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/invite.ts#L29) ___ @@ -80,7 +80,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -90,7 +90,7 @@ ___ #### Defined in -[models/invite.ts:32](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/invite.ts#L32) +[models/invite.ts:32](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/invite.ts#L32) ___ @@ -100,7 +100,7 @@ ___ #### Defined in -[models/invite.ts:20](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/invite.ts#L20) +[models/invite.ts:20](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/invite.ts#L20) ___ @@ -110,7 +110,7 @@ ___ #### Defined in -[models/invite.ts:26](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/invite.ts#L26) +[models/invite.ts:26](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/invite.ts#L26) ___ @@ -124,7 +124,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ___ @@ -134,7 +134,7 @@ ___ #### Defined in -[models/invite.ts:12](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/invite.ts#L12) +[models/invite.ts:12](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/invite.ts#L12) ## Methods @@ -148,4 +148,4 @@ ___ #### Defined in -[models/invite.ts:34](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/invite.ts#L34) +[models/invite.ts:34](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/invite.ts#L34) diff --git a/docs/content/references/entities/classes/LineItem.md b/docs/content/references/entities/classes/LineItem.md index 23183be6c8..7034dc0c36 100644 --- a/docs/content/references/entities/classes/LineItem.md +++ b/docs/content/references/entities/classes/LineItem.md @@ -28,7 +28,7 @@ BaseEntity.constructor #### Defined in -[models/line-item.ts:67](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L67) +[models/line-item.ts:67](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L67) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/line-item.ts:88](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L88) +[models/line-item.ts:88](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L88) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/line-item.ts:35](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L35) +[models/line-item.ts:35](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L35) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/line-item.ts:31](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L31) +[models/line-item.ts:31](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L31) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[models/line-item.ts:59](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L59) +[models/line-item.ts:59](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L59) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[models/line-item.ts:55](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L55) +[models/line-item.ts:55](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L55) ___ @@ -92,7 +92,7 @@ BaseEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -102,7 +102,7 @@ ___ #### Defined in -[models/line-item.ts:73](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L73) +[models/line-item.ts:73](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L73) ___ @@ -112,7 +112,7 @@ ___ #### Defined in -[models/line-item.ts:125](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L125) +[models/line-item.ts:125](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L125) ___ @@ -122,7 +122,7 @@ ___ #### Defined in -[models/line-item.ts:108](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L108) +[models/line-item.ts:108](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L108) ___ @@ -132,7 +132,7 @@ ___ #### Defined in -[models/line-item.ts:126](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L126) +[models/line-item.ts:126](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L126) ___ @@ -142,7 +142,7 @@ ___ #### Defined in -[models/line-item.ts:91](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L91) +[models/line-item.ts:91](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L91) ___ @@ -156,7 +156,7 @@ BaseEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -166,7 +166,7 @@ ___ #### Defined in -[models/line-item.ts:82](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L82) +[models/line-item.ts:82](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L82) ___ @@ -176,7 +176,7 @@ ___ #### Defined in -[models/line-item.ts:79](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L79) +[models/line-item.ts:79](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L79) ___ @@ -186,7 +186,7 @@ ___ #### Defined in -[models/line-item.ts:117](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L117) +[models/line-item.ts:117](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L117) ___ @@ -196,7 +196,7 @@ ___ #### Defined in -[models/line-item.ts:43](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L43) +[models/line-item.ts:43](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L43) ___ @@ -206,7 +206,7 @@ ___ #### Defined in -[models/line-item.ts:39](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L39) +[models/line-item.ts:39](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L39) ___ @@ -216,7 +216,7 @@ ___ #### Defined in -[models/line-item.ts:124](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L124) +[models/line-item.ts:124](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L124) ___ @@ -226,7 +226,7 @@ ___ #### Defined in -[models/line-item.ts:123](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L123) +[models/line-item.ts:123](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L123) ___ @@ -236,7 +236,7 @@ ___ #### Defined in -[models/line-item.ts:105](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L105) +[models/line-item.ts:105](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L105) ___ @@ -246,7 +246,7 @@ ___ #### Defined in -[models/line-item.ts:119](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L119) +[models/line-item.ts:119](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L119) ___ @@ -256,7 +256,7 @@ ___ #### Defined in -[models/line-item.ts:111](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L111) +[models/line-item.ts:111](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L111) ___ @@ -266,7 +266,7 @@ ___ #### Defined in -[models/line-item.ts:114](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L114) +[models/line-item.ts:114](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L114) ___ @@ -276,7 +276,7 @@ ___ #### Defined in -[models/line-item.ts:85](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L85) +[models/line-item.ts:85](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L85) ___ @@ -286,7 +286,7 @@ ___ #### Defined in -[models/line-item.ts:120](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L120) +[models/line-item.ts:120](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L120) ___ @@ -296,7 +296,7 @@ ___ #### Defined in -[models/line-item.ts:51](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L51) +[models/line-item.ts:51](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L51) ___ @@ -306,7 +306,7 @@ ___ #### Defined in -[models/line-item.ts:47](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L47) +[models/line-item.ts:47](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L47) ___ @@ -316,7 +316,7 @@ ___ #### Defined in -[models/line-item.ts:62](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L62) +[models/line-item.ts:62](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L62) ___ @@ -326,7 +326,7 @@ ___ #### Defined in -[models/line-item.ts:121](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L121) +[models/line-item.ts:121](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L121) ___ @@ -336,7 +336,7 @@ ___ #### Defined in -[models/line-item.ts:76](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L76) +[models/line-item.ts:76](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L76) ___ @@ -346,7 +346,7 @@ ___ #### Defined in -[models/line-item.ts:70](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L70) +[models/line-item.ts:70](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L70) ___ @@ -356,7 +356,7 @@ ___ #### Defined in -[models/line-item.ts:122](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L122) +[models/line-item.ts:122](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L122) ___ @@ -366,7 +366,7 @@ ___ #### Defined in -[models/line-item.ts:94](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L94) +[models/line-item.ts:94](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L94) ___ @@ -380,7 +380,7 @@ BaseEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ___ @@ -390,7 +390,7 @@ ___ #### Defined in -[models/line-item.ts:102](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L102) +[models/line-item.ts:102](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L102) ___ @@ -400,7 +400,7 @@ ___ #### Defined in -[models/line-item.ts:98](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L98) +[models/line-item.ts:98](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L98) ## Methods @@ -414,4 +414,4 @@ ___ #### Defined in -[models/line-item.ts:128](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item.ts#L128) +[models/line-item.ts:128](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item.ts#L128) diff --git a/docs/content/references/entities/classes/LineItemAdjustment.md b/docs/content/references/entities/classes/LineItemAdjustment.md index 56dde1a2f1..77612bb4d9 100644 --- a/docs/content/references/entities/classes/LineItemAdjustment.md +++ b/docs/content/references/entities/classes/LineItemAdjustment.md @@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/line-item-adjustment.ts:45](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item-adjustment.ts#L45) +[models/line-item-adjustment.ts:45](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item-adjustment.ts#L45) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[models/line-item-adjustment.ts:34](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item-adjustment.ts#L34) +[models/line-item-adjustment.ts:34](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item-adjustment.ts#L34) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/line-item-adjustment.ts:38](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item-adjustment.ts#L38) +[models/line-item-adjustment.ts:38](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item-adjustment.ts#L38) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/line-item-adjustment.ts:42](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item-adjustment.ts#L42) +[models/line-item-adjustment.ts:42](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item-adjustment.ts#L42) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/line-item-adjustment.ts:23](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item-adjustment.ts#L23) +[models/line-item-adjustment.ts:23](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item-adjustment.ts#L23) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[models/line-item-adjustment.ts:31](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item-adjustment.ts#L31) +[models/line-item-adjustment.ts:31](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item-adjustment.ts#L31) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[models/line-item-adjustment.ts:27](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item-adjustment.ts#L27) +[models/line-item-adjustment.ts:27](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item-adjustment.ts#L27) ___ @@ -88,7 +88,7 @@ ___ #### Defined in -[models/line-item-adjustment.ts:48](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item-adjustment.ts#L48) +[models/line-item-adjustment.ts:48](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item-adjustment.ts#L48) ## Methods @@ -102,4 +102,4 @@ ___ #### Defined in -[models/line-item-adjustment.ts:50](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item-adjustment.ts#L50) +[models/line-item-adjustment.ts:50](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item-adjustment.ts#L50) diff --git a/docs/content/references/entities/classes/LineItemTaxLine.md b/docs/content/references/entities/classes/LineItemTaxLine.md index e3e66c857f..b0fffaf0e9 100644 --- a/docs/content/references/entities/classes/LineItemTaxLine.md +++ b/docs/content/references/entities/classes/LineItemTaxLine.md @@ -32,7 +32,7 @@ TaxLine.code #### Defined in -[models/tax-line.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-line.ts#L13) +[models/tax-line.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-line.ts#L13) ___ @@ -46,7 +46,7 @@ TaxLine.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -60,7 +60,7 @@ TaxLine.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -70,7 +70,7 @@ ___ #### Defined in -[models/line-item-tax-line.ts:24](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item-tax-line.ts#L24) +[models/line-item-tax-line.ts:24](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item-tax-line.ts#L24) ___ @@ -80,7 +80,7 @@ ___ #### Defined in -[models/line-item-tax-line.ts:20](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item-tax-line.ts#L20) +[models/line-item-tax-line.ts:20](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item-tax-line.ts#L20) ___ @@ -94,7 +94,7 @@ TaxLine.metadata #### Defined in -[models/tax-line.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-line.ts#L16) +[models/tax-line.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-line.ts#L16) ___ @@ -108,7 +108,7 @@ TaxLine.name #### Defined in -[models/tax-line.ts:10](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-line.ts#L10) +[models/tax-line.ts:10](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-line.ts#L10) ___ @@ -122,7 +122,7 @@ TaxLine.rate #### Defined in -[models/tax-line.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-line.ts#L7) +[models/tax-line.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-line.ts#L7) ___ @@ -136,7 +136,7 @@ TaxLine.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -150,4 +150,4 @@ TaxLine.updated\_at #### Defined in -[models/line-item-tax-line.ts:26](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/line-item-tax-line.ts#L26) +[models/line-item-tax-line.ts:26](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/line-item-tax-line.ts#L26) diff --git a/docs/content/references/entities/classes/MoneyAmount.md b/docs/content/references/entities/classes/MoneyAmount.md index 5ee3853c83..47a51d5100 100644 --- a/docs/content/references/entities/classes/MoneyAmount.md +++ b/docs/content/references/entities/classes/MoneyAmount.md @@ -28,7 +28,7 @@ SoftDeletableEntity.constructor #### Defined in -[models/money-amount.ts:27](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/money-amount.ts#L27) +[models/money-amount.ts:27](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/money-amount.ts#L27) ___ @@ -42,7 +42,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[models/money-amount.ts:24](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/money-amount.ts#L24) +[models/money-amount.ts:24](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/money-amount.ts#L24) ___ @@ -62,7 +62,7 @@ ___ #### Defined in -[models/money-amount.ts:20](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/money-amount.ts#L20) +[models/money-amount.ts:20](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/money-amount.ts#L20) ___ @@ -76,7 +76,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -90,7 +90,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -100,7 +100,7 @@ ___ #### Defined in -[models/money-amount.ts:33](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/money-amount.ts#L33) +[models/money-amount.ts:33](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/money-amount.ts#L33) ___ @@ -110,7 +110,7 @@ ___ #### Defined in -[models/money-amount.ts:30](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/money-amount.ts#L30) +[models/money-amount.ts:30](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/money-amount.ts#L30) ___ @@ -120,7 +120,7 @@ ___ #### Defined in -[models/money-amount.ts:43](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/money-amount.ts#L43) +[models/money-amount.ts:43](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/money-amount.ts#L43) ___ @@ -130,7 +130,7 @@ ___ #### Defined in -[models/money-amount.ts:36](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/money-amount.ts#L36) +[models/money-amount.ts:36](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/money-amount.ts#L36) ___ @@ -140,7 +140,7 @@ ___ #### Defined in -[models/money-amount.ts:61](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/money-amount.ts#L61) +[models/money-amount.ts:61](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/money-amount.ts#L61) ___ @@ -150,7 +150,7 @@ ___ #### Defined in -[models/money-amount.ts:57](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/money-amount.ts#L57) +[models/money-amount.ts:57](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/money-amount.ts#L57) ___ @@ -164,7 +164,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ___ @@ -174,7 +174,7 @@ ___ #### Defined in -[models/money-amount.ts:53](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/money-amount.ts#L53) +[models/money-amount.ts:53](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/money-amount.ts#L53) ___ @@ -184,7 +184,7 @@ ___ #### Defined in -[models/money-amount.ts:47](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/money-amount.ts#L47) +[models/money-amount.ts:47](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/money-amount.ts#L47) ## Methods @@ -198,4 +198,4 @@ ___ #### Defined in -[models/money-amount.ts:63](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/money-amount.ts#L63) +[models/money-amount.ts:63](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/money-amount.ts#L63) diff --git a/docs/content/references/entities/classes/Note.md b/docs/content/references/entities/classes/Note.md index 12b01d4452..6273e4f51c 100644 --- a/docs/content/references/entities/classes/Note.md +++ b/docs/content/references/entities/classes/Note.md @@ -28,7 +28,7 @@ SoftDeletableEntity.constructor #### Defined in -[models/note.ts:33](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/note.ts#L33) +[models/note.ts:33](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/note.ts#L33) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/note.ts:29](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/note.ts#L29) +[models/note.ts:29](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/note.ts#L29) ___ @@ -52,7 +52,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -66,7 +66,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -80,7 +80,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -90,7 +90,7 @@ ___ #### Defined in -[models/note.ts:36](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/note.ts#L36) +[models/note.ts:36](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/note.ts#L36) ___ @@ -100,7 +100,7 @@ ___ #### Defined in -[models/note.ts:26](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/note.ts#L26) +[models/note.ts:26](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/note.ts#L26) ___ @@ -110,7 +110,7 @@ ___ #### Defined in -[models/note.ts:22](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/note.ts#L22) +[models/note.ts:22](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/note.ts#L22) ___ @@ -124,7 +124,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ___ @@ -134,7 +134,7 @@ ___ #### Defined in -[models/note.ts:18](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/note.ts#L18) +[models/note.ts:18](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/note.ts#L18) ## Methods @@ -148,4 +148,4 @@ ___ #### Defined in -[models/note.ts:38](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/note.ts#L38) +[models/note.ts:38](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/note.ts#L38) diff --git a/docs/content/references/entities/classes/Notification.md b/docs/content/references/entities/classes/Notification.md index f31b941b22..d3c88d15ae 100644 --- a/docs/content/references/entities/classes/Notification.md +++ b/docs/content/references/entities/classes/Notification.md @@ -32,7 +32,7 @@ BaseEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[models/notification.ts:36](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/notification.ts#L36) +[models/notification.ts:36](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/notification.ts#L36) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[models/notification.ts:32](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/notification.ts#L32) +[models/notification.ts:32](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/notification.ts#L32) ___ @@ -62,7 +62,7 @@ ___ #### Defined in -[models/notification.ts:42](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/notification.ts#L42) +[models/notification.ts:42](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/notification.ts#L42) ___ @@ -72,7 +72,7 @@ ___ #### Defined in -[models/notification.ts:20](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/notification.ts#L20) +[models/notification.ts:20](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/notification.ts#L20) ___ @@ -86,7 +86,7 @@ BaseEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -96,7 +96,7 @@ ___ #### Defined in -[models/notification.ts:45](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/notification.ts#L45) +[models/notification.ts:45](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/notification.ts#L45) ___ @@ -106,7 +106,7 @@ ___ #### Defined in -[models/notification.ts:49](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/notification.ts#L49) +[models/notification.ts:49](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/notification.ts#L49) ___ @@ -116,7 +116,7 @@ ___ #### Defined in -[models/notification.ts:59](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/notification.ts#L59) +[models/notification.ts:59](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/notification.ts#L59) ___ @@ -126,7 +126,7 @@ ___ #### Defined in -[models/notification.ts:55](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/notification.ts#L55) +[models/notification.ts:55](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/notification.ts#L55) ___ @@ -136,7 +136,7 @@ ___ #### Defined in -[models/notification.ts:52](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/notification.ts#L52) +[models/notification.ts:52](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/notification.ts#L52) ___ @@ -146,7 +146,7 @@ ___ #### Defined in -[models/notification.ts:28](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/notification.ts#L28) +[models/notification.ts:28](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/notification.ts#L28) ___ @@ -156,7 +156,7 @@ ___ #### Defined in -[models/notification.ts:24](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/notification.ts#L24) +[models/notification.ts:24](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/notification.ts#L24) ___ @@ -166,7 +166,7 @@ ___ #### Defined in -[models/notification.ts:39](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/notification.ts#L39) +[models/notification.ts:39](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/notification.ts#L39) ___ @@ -180,7 +180,7 @@ BaseEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -194,4 +194,4 @@ BaseEntity.updated\_at #### Defined in -[models/notification.ts:61](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/notification.ts#L61) +[models/notification.ts:61](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/notification.ts#L61) diff --git a/docs/content/references/entities/classes/Oauth.md b/docs/content/references/entities/classes/Oauth.md index 835fcadc49..7d3d09d66c 100644 --- a/docs/content/references/entities/classes/Oauth.md +++ b/docs/content/references/entities/classes/Oauth.md @@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/oauth.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/oauth.ts#L16) +[models/oauth.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/oauth.ts#L16) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[models/oauth.ts:25](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/oauth.ts#L25) +[models/oauth.ts:25](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/oauth.ts#L25) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/oauth.ts:12](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/oauth.ts#L12) +[models/oauth.ts:12](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/oauth.ts#L12) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/oauth.ts:9](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/oauth.ts#L9) +[models/oauth.ts:9](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/oauth.ts#L9) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/oauth.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/oauth.ts#L19) +[models/oauth.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/oauth.ts#L19) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[models/oauth.ts:22](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/oauth.ts#L22) +[models/oauth.ts:22](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/oauth.ts#L22) ## Methods @@ -82,4 +82,4 @@ ___ #### Defined in -[models/oauth.ts:27](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/oauth.ts#L27) +[models/oauth.ts:27](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/oauth.ts#L27) diff --git a/docs/content/references/entities/classes/Order.md b/docs/content/references/entities/classes/Order.md index d9f075da2f..a717f0c201 100644 --- a/docs/content/references/entities/classes/Order.md +++ b/docs/content/references/entities/classes/Order.md @@ -28,7 +28,7 @@ BaseEntity.constructor #### Defined in -[models/order.ts:123](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L123) +[models/order.ts:123](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L123) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/order.ts:119](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L119) +[models/order.ts:119](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L119) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/order.ts:220](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L220) +[models/order.ts:220](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L220) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/order.ts:104](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L104) +[models/order.ts:104](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L104) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[models/order.ts:100](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L100) +[models/order.ts:100](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L100) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[models/order.ts:196](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L196) +[models/order.ts:196](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L196) ___ @@ -92,7 +92,7 @@ BaseEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -102,7 +102,7 @@ ___ #### Defined in -[models/order.ts:146](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L146) +[models/order.ts:146](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L146) ___ @@ -112,7 +112,7 @@ ___ #### Defined in -[models/order.ts:142](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L142) +[models/order.ts:142](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L142) ___ @@ -122,7 +122,7 @@ ___ #### Defined in -[models/order.ts:112](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L112) +[models/order.ts:112](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L112) ___ @@ -132,7 +132,7 @@ ___ #### Defined in -[models/order.ts:108](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L108) +[models/order.ts:108](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L108) ___ @@ -142,7 +142,7 @@ ___ #### Defined in -[models/order.ts:245](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L245) +[models/order.ts:245](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L245) ___ @@ -152,7 +152,7 @@ ___ #### Defined in -[models/order.ts:163](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L163) +[models/order.ts:163](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L163) ___ @@ -162,7 +162,7 @@ ___ #### Defined in -[models/order.ts:96](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L96) +[models/order.ts:96](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L96) ___ @@ -172,7 +172,7 @@ ___ #### Defined in -[models/order.ts:209](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L209) +[models/order.ts:209](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L209) ___ @@ -182,7 +182,7 @@ ___ #### Defined in -[models/order.ts:205](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L205) +[models/order.ts:205](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L205) ___ @@ -192,7 +192,7 @@ ___ #### Defined in -[models/order.ts:115](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L115) +[models/order.ts:115](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L115) ___ @@ -202,7 +202,7 @@ ___ #### Defined in -[models/order.ts:232](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L232) +[models/order.ts:232](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L232) ___ @@ -212,7 +212,7 @@ ___ #### Defined in -[models/order.ts:88](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L88) +[models/order.ts:88](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L88) ___ @@ -222,7 +222,7 @@ ___ #### Defined in -[models/order.ts:190](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L190) +[models/order.ts:190](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L190) ___ @@ -232,7 +232,7 @@ ___ #### Defined in -[models/order.ts:253](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L253) +[models/order.ts:253](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L253) ___ @@ -242,7 +242,7 @@ ___ #### Defined in -[models/order.ts:252](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L252) +[models/order.ts:252](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L252) ___ @@ -252,7 +252,7 @@ ___ #### Defined in -[models/order.ts:217](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L217) +[models/order.ts:217](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L217) ___ @@ -262,7 +262,7 @@ ___ #### Defined in -[models/order.ts:177](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L177) +[models/order.ts:177](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L177) ___ @@ -276,7 +276,7 @@ BaseEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -286,7 +286,7 @@ ___ #### Defined in -[models/order.ts:229](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L229) +[models/order.ts:229](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L229) ___ @@ -296,7 +296,7 @@ ___ #### Defined in -[models/order.ts:214](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L214) +[models/order.ts:214](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L214) ___ @@ -306,7 +306,7 @@ ___ #### Defined in -[models/order.ts:223](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L223) +[models/order.ts:223](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L223) ___ @@ -316,7 +316,7 @@ ___ #### Defined in -[models/order.ts:226](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L226) +[models/order.ts:226](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L226) ___ @@ -326,7 +326,7 @@ ___ #### Defined in -[models/order.ts:78](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L78) +[models/order.ts:78](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L78) ___ @@ -336,7 +336,7 @@ ___ #### Defined in -[models/order.ts:250](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L250) +[models/order.ts:250](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L250) ___ @@ -346,7 +346,7 @@ ___ #### Defined in -[models/order.ts:91](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L91) +[models/order.ts:91](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L91) ___ @@ -356,7 +356,7 @@ ___ #### Defined in -[models/order.ts:185](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L185) +[models/order.ts:185](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L185) ___ @@ -366,7 +366,7 @@ ___ #### Defined in -[models/order.ts:251](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L251) +[models/order.ts:251](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L251) ___ @@ -376,7 +376,7 @@ ___ #### Defined in -[models/order.ts:247](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L247) +[models/order.ts:247](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L247) ___ @@ -386,7 +386,7 @@ ___ #### Defined in -[models/order.ts:199](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L199) +[models/order.ts:199](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L199) ___ @@ -396,7 +396,7 @@ ___ #### Defined in -[models/order.ts:139](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L139) +[models/order.ts:139](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L139) ___ @@ -406,7 +406,7 @@ ___ #### Defined in -[models/order.ts:135](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L135) +[models/order.ts:135](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L135) ___ @@ -416,7 +416,7 @@ ___ #### Defined in -[models/order.ts:193](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L193) +[models/order.ts:193](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L193) ___ @@ -426,7 +426,7 @@ ___ #### Defined in -[models/order.ts:241](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L241) +[models/order.ts:241](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L241) ___ @@ -436,7 +436,7 @@ ___ #### Defined in -[models/order.ts:235](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L235) +[models/order.ts:235](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L235) ___ @@ -446,7 +446,7 @@ ___ #### Defined in -[models/order.ts:131](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L131) +[models/order.ts:131](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L131) ___ @@ -456,7 +456,7 @@ ___ #### Defined in -[models/order.ts:127](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L127) +[models/order.ts:127](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L127) ___ @@ -466,7 +466,7 @@ ___ #### Defined in -[models/order.ts:182](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L182) +[models/order.ts:182](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L182) ___ @@ -476,7 +476,7 @@ ___ #### Defined in -[models/order.ts:244](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L244) +[models/order.ts:244](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L244) ___ @@ -486,7 +486,7 @@ ___ #### Defined in -[models/order.ts:81](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L81) +[models/order.ts:81](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L81) ___ @@ -496,7 +496,7 @@ ___ #### Defined in -[models/order.ts:249](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L249) +[models/order.ts:249](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L249) ___ @@ -506,7 +506,7 @@ ___ #### Defined in -[models/order.ts:202](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L202) +[models/order.ts:202](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L202) ___ @@ -516,7 +516,7 @@ ___ #### Defined in -[models/order.ts:149](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L149) +[models/order.ts:149](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L149) ___ @@ -526,7 +526,7 @@ ___ #### Defined in -[models/order.ts:246](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L246) +[models/order.ts:246](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L246) ___ @@ -536,7 +536,7 @@ ___ #### Defined in -[models/order.ts:248](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L248) +[models/order.ts:248](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L248) ___ @@ -550,7 +550,7 @@ BaseEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -564,4 +564,4 @@ BaseEntity.updated\_at #### Defined in -[models/order.ts:255](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L255) +[models/order.ts:255](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L255) diff --git a/docs/content/references/entities/classes/Payment.md b/docs/content/references/entities/classes/Payment.md index 2bd5a79e5a..19595edd11 100644 --- a/docs/content/references/entities/classes/Payment.md +++ b/docs/content/references/entities/classes/Payment.md @@ -28,7 +28,7 @@ BaseEntity.constructor #### Defined in -[models/payment.ts:51](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment.ts#L51) +[models/payment.ts:51](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment.ts#L51) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/payment.ts:61](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment.ts#L61) +[models/payment.ts:61](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment.ts#L61) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/payment.ts:74](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment.ts#L74) +[models/payment.ts:74](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment.ts#L74) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/payment.ts:71](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment.ts#L71) +[models/payment.ts:71](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment.ts#L71) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[models/payment.ts:37](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment.ts#L37) +[models/payment.ts:37](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment.ts#L37) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[models/payment.ts:33](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment.ts#L33) +[models/payment.ts:33](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment.ts#L33) ___ @@ -92,7 +92,7 @@ BaseEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -102,7 +102,7 @@ ___ #### Defined in -[models/payment.ts:58](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment.ts#L58) +[models/payment.ts:58](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment.ts#L58) ___ @@ -112,7 +112,7 @@ ___ #### Defined in -[models/payment.ts:54](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment.ts#L54) +[models/payment.ts:54](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment.ts#L54) ___ @@ -122,7 +122,7 @@ ___ #### Defined in -[models/payment.ts:68](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment.ts#L68) +[models/payment.ts:68](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment.ts#L68) ___ @@ -136,7 +136,7 @@ BaseEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -146,7 +146,7 @@ ___ #### Defined in -[models/payment.ts:80](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment.ts#L80) +[models/payment.ts:80](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment.ts#L80) ___ @@ -156,7 +156,7 @@ ___ #### Defined in -[models/payment.ts:77](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment.ts#L77) +[models/payment.ts:77](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment.ts#L77) ___ @@ -166,7 +166,7 @@ ___ #### Defined in -[models/payment.ts:48](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment.ts#L48) +[models/payment.ts:48](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment.ts#L48) ___ @@ -176,7 +176,7 @@ ___ #### Defined in -[models/payment.ts:41](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment.ts#L41) +[models/payment.ts:41](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment.ts#L41) ___ @@ -186,7 +186,7 @@ ___ #### Defined in -[models/payment.ts:65](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment.ts#L65) +[models/payment.ts:65](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment.ts#L65) ___ @@ -196,7 +196,7 @@ ___ #### Defined in -[models/payment.ts:29](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment.ts#L29) +[models/payment.ts:29](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment.ts#L29) ___ @@ -206,7 +206,7 @@ ___ #### Defined in -[models/payment.ts:25](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment.ts#L25) +[models/payment.ts:25](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment.ts#L25) ___ @@ -220,7 +220,7 @@ BaseEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -234,4 +234,4 @@ BaseEntity.updated\_at #### Defined in -[models/payment.ts:82](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment.ts#L82) +[models/payment.ts:82](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment.ts#L82) diff --git a/docs/content/references/entities/classes/PaymentProvider.md b/docs/content/references/entities/classes/PaymentProvider.md index 50b71d6443..3906094ceb 100644 --- a/docs/content/references/entities/classes/PaymentProvider.md +++ b/docs/content/references/entities/classes/PaymentProvider.md @@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/payment-provider.ts:6](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment-provider.ts#L6) +[models/payment-provider.ts:6](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment-provider.ts#L6) ___ @@ -28,4 +28,4 @@ ___ #### Defined in -[models/payment-provider.ts:9](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment-provider.ts#L9) +[models/payment-provider.ts:9](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment-provider.ts#L9) diff --git a/docs/content/references/entities/classes/PaymentSession.md b/docs/content/references/entities/classes/PaymentSession.md index 1077d397c1..3959f42712 100644 --- a/docs/content/references/entities/classes/PaymentSession.md +++ b/docs/content/references/entities/classes/PaymentSession.md @@ -28,7 +28,7 @@ BaseEntity.constructor #### Defined in -[models/payment-session.ts:34](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment-session.ts#L34) +[models/payment-session.ts:34](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment-session.ts#L34) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/payment-session.ts:30](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment-session.ts#L30) +[models/payment-session.ts:30](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment-session.ts#L30) ___ @@ -52,7 +52,7 @@ BaseEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -62,7 +62,7 @@ ___ #### Defined in -[models/payment-session.ts:47](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment-session.ts#L47) +[models/payment-session.ts:47](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment-session.ts#L47) ___ @@ -76,7 +76,7 @@ BaseEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -86,7 +86,7 @@ ___ #### Defined in -[models/payment-session.ts:50](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment-session.ts#L50) +[models/payment-session.ts:50](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment-session.ts#L50) ___ @@ -96,7 +96,7 @@ ___ #### Defined in -[models/payment-session.ts:41](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment-session.ts#L41) +[models/payment-session.ts:41](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment-session.ts#L41) ___ @@ -106,7 +106,7 @@ ___ #### Defined in -[models/payment-session.ts:38](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment-session.ts#L38) +[models/payment-session.ts:38](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment-session.ts#L38) ___ @@ -116,7 +116,7 @@ ___ #### Defined in -[models/payment-session.ts:44](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment-session.ts#L44) +[models/payment-session.ts:44](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment-session.ts#L44) ___ @@ -130,7 +130,7 @@ BaseEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -144,4 +144,4 @@ BaseEntity.updated\_at #### Defined in -[models/payment-session.ts:52](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment-session.ts#L52) +[models/payment-session.ts:52](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment-session.ts#L52) diff --git a/docs/content/references/entities/classes/PriceList.md b/docs/content/references/entities/classes/PriceList.md index 990c4bba50..aac2385b5b 100644 --- a/docs/content/references/entities/classes/PriceList.md +++ b/docs/content/references/entities/classes/PriceList.md @@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[models/price-list.ts:54](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/price-list.ts#L54) +[models/price-list.ts:54](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/price-list.ts#L54) ___ @@ -56,7 +56,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -66,7 +66,7 @@ ___ #### Defined in -[models/price-list.ts:23](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/price-list.ts#L23) +[models/price-list.ts:23](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/price-list.ts#L23) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[models/price-list.ts:38](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/price-list.ts#L38) +[models/price-list.ts:38](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/price-list.ts#L38) ___ @@ -90,7 +90,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -100,7 +100,7 @@ ___ #### Defined in -[models/price-list.ts:20](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/price-list.ts#L20) +[models/price-list.ts:20](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/price-list.ts#L20) ___ @@ -110,7 +110,7 @@ ___ #### Defined in -[models/price-list.ts:59](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/price-list.ts#L59) +[models/price-list.ts:59](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/price-list.ts#L59) ___ @@ -120,7 +120,7 @@ ___ #### Defined in -[models/price-list.ts:35](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/price-list.ts#L35) +[models/price-list.ts:35](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/price-list.ts#L35) ___ @@ -130,7 +130,7 @@ ___ #### Defined in -[models/price-list.ts:29](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/price-list.ts#L29) +[models/price-list.ts:29](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/price-list.ts#L29) ___ @@ -140,7 +140,7 @@ ___ #### Defined in -[models/price-list.ts:26](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/price-list.ts#L26) +[models/price-list.ts:26](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/price-list.ts#L26) ___ @@ -154,7 +154,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -168,4 +168,4 @@ SoftDeletableEntity.updated\_at #### Defined in -[models/price-list.ts:61](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/price-list.ts#L61) +[models/price-list.ts:61](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/price-list.ts#L61) diff --git a/docs/content/references/entities/classes/Product.md b/docs/content/references/entities/classes/Product.md index d50626fd6b..f532896f46 100644 --- a/docs/content/references/entities/classes/Product.md +++ b/docs/content/references/entities/classes/Product.md @@ -28,7 +28,7 @@ SoftDeletableEntity.constructor #### Defined in -[models/product.ts:117](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L117) +[models/product.ts:117](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L117) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/product.ts:113](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L113) +[models/product.ts:113](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L113) ___ @@ -52,7 +52,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -66,7 +66,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[models/product.ts:43](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L43) +[models/product.ts:43](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L43) ___ @@ -86,7 +86,7 @@ ___ #### Defined in -[models/product.ts:141](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L141) +[models/product.ts:141](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L141) ___ @@ -96,7 +96,7 @@ ___ #### Defined in -[models/product.ts:144](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L144) +[models/product.ts:144](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L144) ___ @@ -106,7 +106,7 @@ ___ #### Defined in -[models/product.ts:47](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L47) +[models/product.ts:47](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L47) ___ @@ -116,7 +116,7 @@ ___ #### Defined in -[models/product.ts:95](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L95) +[models/product.ts:95](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L95) ___ @@ -126,7 +126,7 @@ ___ #### Defined in -[models/product.ts:101](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L101) +[models/product.ts:101](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L101) ___ @@ -140,7 +140,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -150,7 +150,7 @@ ___ #### Defined in -[models/product.ts:67](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L67) +[models/product.ts:67](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L67) ___ @@ -160,7 +160,7 @@ ___ #### Defined in -[models/product.ts:50](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L50) +[models/product.ts:50](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L50) ___ @@ -170,7 +170,7 @@ ___ #### Defined in -[models/product.ts:92](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L92) +[models/product.ts:92](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L92) ___ @@ -180,7 +180,7 @@ ___ #### Defined in -[models/product.ts:110](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L110) +[models/product.ts:110](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L110) ___ @@ -190,7 +190,7 @@ ___ #### Defined in -[models/product.ts:147](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L147) +[models/product.ts:147](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L147) ___ @@ -200,7 +200,7 @@ ___ #### Defined in -[models/product.ts:107](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L107) +[models/product.ts:107](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L107) ___ @@ -210,7 +210,7 @@ ___ #### Defined in -[models/product.ts:73](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L73) +[models/product.ts:73](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L73) ___ @@ -220,7 +220,7 @@ ___ #### Defined in -[models/product.ts:104](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L104) +[models/product.ts:104](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L104) ___ @@ -230,7 +230,7 @@ ___ #### Defined in -[models/product.ts:86](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L86) +[models/product.ts:86](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L86) ___ @@ -240,7 +240,7 @@ ___ #### Defined in -[models/product.ts:82](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L82) +[models/product.ts:82](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L82) ___ @@ -250,7 +250,7 @@ ___ #### Defined in -[models/product.ts:163](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L163) +[models/product.ts:163](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L163) ___ @@ -260,7 +260,7 @@ ___ #### Defined in -[models/product.ts:53](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L53) +[models/product.ts:53](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L53) ___ @@ -270,7 +270,7 @@ ___ #### Defined in -[models/product.ts:40](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L40) +[models/product.ts:40](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L40) ___ @@ -280,7 +280,7 @@ ___ #### Defined in -[models/product.ts:138](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L138) +[models/product.ts:138](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L138) ___ @@ -290,7 +290,7 @@ ___ #### Defined in -[models/product.ts:70](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L70) +[models/product.ts:70](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L70) ___ @@ -300,7 +300,7 @@ ___ #### Defined in -[models/product.ts:37](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L37) +[models/product.ts:37](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L37) ___ @@ -310,7 +310,7 @@ ___ #### Defined in -[models/product.ts:124](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L124) +[models/product.ts:124](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L124) ___ @@ -320,7 +320,7 @@ ___ #### Defined in -[models/product.ts:120](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L120) +[models/product.ts:120](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L120) ___ @@ -334,7 +334,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ___ @@ -344,7 +344,7 @@ ___ #### Defined in -[models/product.ts:78](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L78) +[models/product.ts:78](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L78) ___ @@ -354,7 +354,7 @@ ___ #### Defined in -[models/product.ts:89](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L89) +[models/product.ts:89](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L89) ___ @@ -364,7 +364,7 @@ ___ #### Defined in -[models/product.ts:98](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L98) +[models/product.ts:98](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L98) ## Methods @@ -378,4 +378,4 @@ ___ #### Defined in -[models/product.ts:165](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L165) +[models/product.ts:165](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L165) diff --git a/docs/content/references/entities/classes/ProductCollection.md b/docs/content/references/entities/classes/ProductCollection.md index eb0c7063c3..bb887da4b9 100644 --- a/docs/content/references/entities/classes/ProductCollection.md +++ b/docs/content/references/entities/classes/ProductCollection.md @@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -46,7 +46,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -56,7 +56,7 @@ ___ #### Defined in -[models/product-collection.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-collection.ts#L16) +[models/product-collection.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-collection.ts#L16) ___ @@ -70,7 +70,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -80,7 +80,7 @@ ___ #### Defined in -[models/product-collection.ts:22](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-collection.ts#L22) +[models/product-collection.ts:22](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-collection.ts#L22) ___ @@ -90,7 +90,7 @@ ___ #### Defined in -[models/product-collection.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-collection.ts#L19) +[models/product-collection.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-collection.ts#L19) ___ @@ -100,7 +100,7 @@ ___ #### Defined in -[models/product-collection.ts:12](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-collection.ts#L12) +[models/product-collection.ts:12](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-collection.ts#L12) ___ @@ -114,7 +114,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -128,4 +128,4 @@ SoftDeletableEntity.updated\_at #### Defined in -[models/product-collection.ts:24](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-collection.ts#L24) +[models/product-collection.ts:24](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-collection.ts#L24) diff --git a/docs/content/references/entities/classes/ProductOption.md b/docs/content/references/entities/classes/ProductOption.md index bb5b5b5ec2..c7036bf716 100644 --- a/docs/content/references/entities/classes/ProductOption.md +++ b/docs/content/references/entities/classes/ProductOption.md @@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -46,7 +46,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -60,7 +60,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -70,7 +70,7 @@ ___ #### Defined in -[models/product-option.ts:32](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-option.ts#L32) +[models/product-option.ts:32](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-option.ts#L32) ___ @@ -80,7 +80,7 @@ ___ #### Defined in -[models/product-option.ts:29](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-option.ts#L29) +[models/product-option.ts:29](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-option.ts#L29) ___ @@ -90,7 +90,7 @@ ___ #### Defined in -[models/product-option.ts:25](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-option.ts#L25) +[models/product-option.ts:25](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-option.ts#L25) ___ @@ -100,7 +100,7 @@ ___ #### Defined in -[models/product-option.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-option.ts#L19) +[models/product-option.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-option.ts#L19) ___ @@ -114,7 +114,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ___ @@ -124,7 +124,7 @@ ___ #### Defined in -[models/product-option.ts:22](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-option.ts#L22) +[models/product-option.ts:22](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-option.ts#L22) ## Methods @@ -138,4 +138,4 @@ ___ #### Defined in -[models/product-option.ts:34](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-option.ts#L34) +[models/product-option.ts:34](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-option.ts#L34) diff --git a/docs/content/references/entities/classes/ProductOptionValue.md b/docs/content/references/entities/classes/ProductOptionValue.md index 9a9e7f9099..438e800e65 100644 --- a/docs/content/references/entities/classes/ProductOptionValue.md +++ b/docs/content/references/entities/classes/ProductOptionValue.md @@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -46,7 +46,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -60,7 +60,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -70,7 +70,7 @@ ___ #### Defined in -[models/product-option-value.ts:40](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-option-value.ts#L40) +[models/product-option-value.ts:40](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-option-value.ts#L40) ___ @@ -80,7 +80,7 @@ ___ #### Defined in -[models/product-option-value.ts:27](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-option-value.ts#L27) +[models/product-option-value.ts:27](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-option-value.ts#L27) ___ @@ -90,7 +90,7 @@ ___ #### Defined in -[models/product-option-value.ts:23](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-option-value.ts#L23) +[models/product-option-value.ts:23](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-option-value.ts#L23) ___ @@ -104,7 +104,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ___ @@ -114,7 +114,7 @@ ___ #### Defined in -[models/product-option-value.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-option-value.ts#L19) +[models/product-option-value.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-option-value.ts#L19) ___ @@ -124,7 +124,7 @@ ___ #### Defined in -[models/product-option-value.ts:37](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-option-value.ts#L37) +[models/product-option-value.ts:37](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-option-value.ts#L37) ___ @@ -134,7 +134,7 @@ ___ #### Defined in -[models/product-option-value.ts:31](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-option-value.ts#L31) +[models/product-option-value.ts:31](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-option-value.ts#L31) ## Methods @@ -148,4 +148,4 @@ ___ #### Defined in -[models/product-option-value.ts:42](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-option-value.ts#L42) +[models/product-option-value.ts:42](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-option-value.ts#L42) diff --git a/docs/content/references/entities/classes/ProductTag.md b/docs/content/references/entities/classes/ProductTag.md index 54525344f0..e5d5666d52 100644 --- a/docs/content/references/entities/classes/ProductTag.md +++ b/docs/content/references/entities/classes/ProductTag.md @@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -46,7 +46,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -60,7 +60,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -70,7 +70,7 @@ ___ #### Defined in -[models/product-tag.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-tag.ts#L13) +[models/product-tag.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-tag.ts#L13) ___ @@ -84,7 +84,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ___ @@ -94,7 +94,7 @@ ___ #### Defined in -[models/product-tag.ts:10](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-tag.ts#L10) +[models/product-tag.ts:10](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-tag.ts#L10) ## Methods @@ -108,4 +108,4 @@ ___ #### Defined in -[models/product-tag.ts:15](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-tag.ts#L15) +[models/product-tag.ts:15](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-tag.ts#L15) diff --git a/docs/content/references/entities/classes/ProductTaxRate.md b/docs/content/references/entities/classes/ProductTaxRate.md index bba84dca25..7ab1c8824b 100644 --- a/docs/content/references/entities/classes/ProductTaxRate.md +++ b/docs/content/references/entities/classes/ProductTaxRate.md @@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/product-tax-rate.ts:32](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-tax-rate.ts#L32) +[models/product-tax-rate.ts:32](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-tax-rate.ts#L32) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[models/product-tax-rate.ts:38](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-tax-rate.ts#L38) +[models/product-tax-rate.ts:38](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-tax-rate.ts#L38) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/product-tax-rate.ts:24](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-tax-rate.ts#L24) +[models/product-tax-rate.ts:24](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-tax-rate.ts#L24) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/product-tax-rate.ts:17](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-tax-rate.ts#L17) +[models/product-tax-rate.ts:17](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-tax-rate.ts#L17) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/product-tax-rate.ts:20](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-tax-rate.ts#L20) +[models/product-tax-rate.ts:20](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-tax-rate.ts#L20) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[models/product-tax-rate.ts:29](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-tax-rate.ts#L29) +[models/product-tax-rate.ts:29](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-tax-rate.ts#L29) ___ @@ -78,4 +78,4 @@ ___ #### Defined in -[models/product-tax-rate.ts:35](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-tax-rate.ts#L35) +[models/product-tax-rate.ts:35](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-tax-rate.ts#L35) diff --git a/docs/content/references/entities/classes/ProductType.md b/docs/content/references/entities/classes/ProductType.md index 4802dadedc..233b5e4e7b 100644 --- a/docs/content/references/entities/classes/ProductType.md +++ b/docs/content/references/entities/classes/ProductType.md @@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -46,7 +46,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -60,7 +60,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -70,7 +70,7 @@ ___ #### Defined in -[models/product-type.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-type.ts#L13) +[models/product-type.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-type.ts#L13) ___ @@ -84,7 +84,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ___ @@ -94,7 +94,7 @@ ___ #### Defined in -[models/product-type.ts:10](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-type.ts#L10) +[models/product-type.ts:10](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-type.ts#L10) ## Methods @@ -108,4 +108,4 @@ ___ #### Defined in -[models/product-type.ts:15](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-type.ts#L15) +[models/product-type.ts:15](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-type.ts#L15) diff --git a/docs/content/references/entities/classes/ProductTypeTaxRate.md b/docs/content/references/entities/classes/ProductTypeTaxRate.md index f5e2851973..a6746b39cf 100644 --- a/docs/content/references/entities/classes/ProductTypeTaxRate.md +++ b/docs/content/references/entities/classes/ProductTypeTaxRate.md @@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/product-type-tax-rate.ts:31](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-type-tax-rate.ts#L31) +[models/product-type-tax-rate.ts:31](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-type-tax-rate.ts#L31) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[models/product-type-tax-rate.ts:37](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-type-tax-rate.ts#L37) +[models/product-type-tax-rate.ts:37](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-type-tax-rate.ts#L37) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/product-type-tax-rate.ts:24](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-type-tax-rate.ts#L24) +[models/product-type-tax-rate.ts:24](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-type-tax-rate.ts#L24) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/product-type-tax-rate.ts:17](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-type-tax-rate.ts#L17) +[models/product-type-tax-rate.ts:17](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-type-tax-rate.ts#L17) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/product-type-tax-rate.ts:20](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-type-tax-rate.ts#L20) +[models/product-type-tax-rate.ts:20](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-type-tax-rate.ts#L20) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[models/product-type-tax-rate.ts:28](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-type-tax-rate.ts#L28) +[models/product-type-tax-rate.ts:28](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-type-tax-rate.ts#L28) ___ @@ -78,4 +78,4 @@ ___ #### Defined in -[models/product-type-tax-rate.ts:34](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-type-tax-rate.ts#L34) +[models/product-type-tax-rate.ts:34](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-type-tax-rate.ts#L34) diff --git a/docs/content/references/entities/classes/ProductVariant.md b/docs/content/references/entities/classes/ProductVariant.md index 9401a0acb4..2d65118e3a 100644 --- a/docs/content/references/entities/classes/ProductVariant.md +++ b/docs/content/references/entities/classes/ProductVariant.md @@ -28,7 +28,7 @@ SoftDeletableEntity.constructor #### Defined in -[models/product-variant.ts:60](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L60) +[models/product-variant.ts:60](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L60) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/product-variant.ts:43](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L43) +[models/product-variant.ts:43](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L43) ___ @@ -52,7 +52,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -66,7 +66,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[models/product-variant.ts:47](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L47) +[models/product-variant.ts:47](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L47) ___ @@ -86,7 +86,7 @@ ___ #### Defined in -[models/product-variant.ts:84](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L84) +[models/product-variant.ts:84](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L84) ___ @@ -96,7 +96,7 @@ ___ #### Defined in -[models/product-variant.ts:66](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L66) +[models/product-variant.ts:66](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L66) ___ @@ -110,7 +110,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -120,7 +120,7 @@ ___ #### Defined in -[models/product-variant.ts:57](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L57) +[models/product-variant.ts:57](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L57) ___ @@ -130,7 +130,7 @@ ___ #### Defined in -[models/product-variant.ts:81](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L81) +[models/product-variant.ts:81](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L81) ___ @@ -140,7 +140,7 @@ ___ #### Defined in -[models/product-variant.ts:63](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L63) +[models/product-variant.ts:63](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L63) ___ @@ -150,7 +150,7 @@ ___ #### Defined in -[models/product-variant.ts:75](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L75) +[models/product-variant.ts:75](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L75) ___ @@ -160,7 +160,7 @@ ___ #### Defined in -[models/product-variant.ts:95](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L95) +[models/product-variant.ts:95](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L95) ___ @@ -170,7 +170,7 @@ ___ #### Defined in -[models/product-variant.ts:72](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L72) +[models/product-variant.ts:72](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L72) ___ @@ -180,7 +180,7 @@ ___ #### Defined in -[models/product-variant.ts:92](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L92) +[models/product-variant.ts:92](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L92) ___ @@ -190,7 +190,7 @@ ___ #### Defined in -[models/product-variant.ts:69](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L69) +[models/product-variant.ts:69](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L69) ___ @@ -200,7 +200,7 @@ ___ #### Defined in -[models/product-variant.ts:35](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L35) +[models/product-variant.ts:35](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L35) ___ @@ -210,7 +210,7 @@ ___ #### Defined in -[models/product-variant.ts:29](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L29) +[models/product-variant.ts:29](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L29) ___ @@ -220,7 +220,7 @@ ___ #### Defined in -[models/product-variant.ts:25](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L25) +[models/product-variant.ts:25](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L25) ___ @@ -230,7 +230,7 @@ ___ #### Defined in -[models/product-variant.ts:39](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L39) +[models/product-variant.ts:39](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L39) ___ @@ -240,7 +240,7 @@ ___ #### Defined in -[models/product-variant.ts:21](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L21) +[models/product-variant.ts:21](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L21) ___ @@ -250,7 +250,7 @@ ___ #### Defined in -[models/product-variant.ts:51](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L51) +[models/product-variant.ts:51](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L51) ___ @@ -264,7 +264,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ___ @@ -274,7 +274,7 @@ ___ #### Defined in -[models/product-variant.ts:54](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L54) +[models/product-variant.ts:54](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L54) ___ @@ -284,7 +284,7 @@ ___ #### Defined in -[models/product-variant.ts:78](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L78) +[models/product-variant.ts:78](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L78) ___ @@ -294,7 +294,7 @@ ___ #### Defined in -[models/product-variant.ts:87](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L87) +[models/product-variant.ts:87](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L87) ## Methods @@ -308,4 +308,4 @@ ___ #### Defined in -[models/product-variant.ts:97](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product-variant.ts#L97) +[models/product-variant.ts:97](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product-variant.ts#L97) diff --git a/docs/content/references/entities/classes/Refund.md b/docs/content/references/entities/classes/Refund.md index 41b51d0edc..b28a58a0ea 100644 --- a/docs/content/references/entities/classes/Refund.md +++ b/docs/content/references/entities/classes/Refund.md @@ -28,7 +28,7 @@ BaseEntity.constructor #### Defined in -[models/refund.ts:34](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/refund.ts#L34) +[models/refund.ts:34](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/refund.ts#L34) ___ @@ -42,7 +42,7 @@ BaseEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -56,7 +56,7 @@ BaseEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -66,7 +66,7 @@ ___ #### Defined in -[models/refund.ts:46](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/refund.ts#L46) +[models/refund.ts:46](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/refund.ts#L46) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[models/refund.ts:43](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/refund.ts#L43) +[models/refund.ts:43](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/refund.ts#L43) ___ @@ -86,7 +86,7 @@ ___ #### Defined in -[models/refund.ts:37](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/refund.ts#L37) +[models/refund.ts:37](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/refund.ts#L37) ___ @@ -96,7 +96,7 @@ ___ #### Defined in -[models/refund.ts:31](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/refund.ts#L31) +[models/refund.ts:31](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/refund.ts#L31) ___ @@ -106,7 +106,7 @@ ___ #### Defined in -[models/refund.ts:27](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/refund.ts#L27) +[models/refund.ts:27](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/refund.ts#L27) ___ @@ -116,7 +116,7 @@ ___ #### Defined in -[models/refund.ts:40](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/refund.ts#L40) +[models/refund.ts:40](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/refund.ts#L40) ___ @@ -130,7 +130,7 @@ BaseEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -144,4 +144,4 @@ BaseEntity.updated\_at #### Defined in -[models/refund.ts:48](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/refund.ts#L48) +[models/refund.ts:48](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/refund.ts#L48) diff --git a/docs/content/references/entities/classes/Region.md b/docs/content/references/entities/classes/Region.md index 5b8c2701f5..f312265e20 100644 --- a/docs/content/references/entities/classes/Region.md +++ b/docs/content/references/entities/classes/Region.md @@ -28,7 +28,7 @@ SoftDeletableEntity.constructor #### Defined in -[models/region.ts:47](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/region.ts#L47) +[models/region.ts:47](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/region.ts#L47) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/region.ts:50](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/region.ts#L50) +[models/region.ts:50](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/region.ts#L50) ___ @@ -52,7 +52,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -62,7 +62,7 @@ ___ #### Defined in -[models/region.ts:32](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/region.ts#L32) +[models/region.ts:32](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/region.ts#L32) ___ @@ -72,7 +72,7 @@ ___ #### Defined in -[models/region.ts:28](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/region.ts#L28) +[models/region.ts:28](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/region.ts#L28) ___ @@ -86,7 +86,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -96,7 +96,7 @@ ___ #### Defined in -[models/region.ts:91](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/region.ts#L91) +[models/region.ts:91](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/region.ts#L91) ___ @@ -106,7 +106,7 @@ ___ #### Defined in -[models/region.ts:44](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/region.ts#L44) +[models/region.ts:44](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/region.ts#L44) ___ @@ -120,7 +120,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -130,7 +130,7 @@ ___ #### Defined in -[models/region.ts:94](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/region.ts#L94) +[models/region.ts:94](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/region.ts#L94) ___ @@ -140,7 +140,7 @@ ___ #### Defined in -[models/region.ts:25](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/region.ts#L25) +[models/region.ts:25](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/region.ts#L25) ___ @@ -150,7 +150,7 @@ ___ #### Defined in -[models/region.ts:74](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/region.ts#L74) +[models/region.ts:74](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/region.ts#L74) ___ @@ -160,7 +160,7 @@ ___ #### Defined in -[models/region.ts:41](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/region.ts#L41) +[models/region.ts:41](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/region.ts#L41) ___ @@ -170,7 +170,7 @@ ___ #### Defined in -[models/region.ts:57](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/region.ts#L57) +[models/region.ts:57](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/region.ts#L57) ___ @@ -180,7 +180,7 @@ ___ #### Defined in -[models/region.ts:53](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/region.ts#L53) +[models/region.ts:53](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/region.ts#L53) ___ @@ -190,7 +190,7 @@ ___ #### Defined in -[models/region.ts:35](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/region.ts#L35) +[models/region.ts:35](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/region.ts#L35) ___ @@ -200,7 +200,7 @@ ___ #### Defined in -[models/region.ts:38](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/region.ts#L38) +[models/region.ts:38](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/region.ts#L38) ___ @@ -214,7 +214,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -228,4 +228,4 @@ SoftDeletableEntity.updated\_at #### Defined in -[models/region.ts:96](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/region.ts#L96) +[models/region.ts:96](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/region.ts#L96) diff --git a/docs/content/references/entities/classes/Return.md b/docs/content/references/entities/classes/Return.md index 55f435aab5..00b7472ad0 100644 --- a/docs/content/references/entities/classes/Return.md +++ b/docs/content/references/entities/classes/Return.md @@ -28,7 +28,7 @@ BaseEntity.constructor #### Defined in -[models/return.ts:57](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return.ts#L57) +[models/return.ts:57](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return.ts#L57) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/return.ts:53](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return.ts#L53) +[models/return.ts:53](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return.ts#L53) ___ @@ -52,7 +52,7 @@ BaseEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -66,7 +66,7 @@ BaseEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[models/return.ts:88](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return.ts#L88) +[models/return.ts:88](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return.ts#L88) ___ @@ -86,7 +86,7 @@ ___ #### Defined in -[models/return.ts:41](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return.ts#L41) +[models/return.ts:41](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return.ts#L41) ___ @@ -96,7 +96,7 @@ ___ #### Defined in -[models/return.ts:85](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return.ts#L85) +[models/return.ts:85](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return.ts#L85) ___ @@ -106,7 +106,7 @@ ___ #### Defined in -[models/return.ts:82](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return.ts#L82) +[models/return.ts:82](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return.ts#L82) ___ @@ -116,7 +116,7 @@ ___ #### Defined in -[models/return.ts:65](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return.ts#L65) +[models/return.ts:65](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return.ts#L65) ___ @@ -126,7 +126,7 @@ ___ #### Defined in -[models/return.ts:61](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return.ts#L61) +[models/return.ts:61](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return.ts#L61) ___ @@ -136,7 +136,7 @@ ___ #### Defined in -[models/return.ts:79](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return.ts#L79) +[models/return.ts:79](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return.ts#L79) ___ @@ -146,7 +146,7 @@ ___ #### Defined in -[models/return.ts:76](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return.ts#L76) +[models/return.ts:76](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return.ts#L76) ___ @@ -156,7 +156,7 @@ ___ #### Defined in -[models/return.ts:73](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return.ts#L73) +[models/return.ts:73](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return.ts#L73) ___ @@ -166,7 +166,7 @@ ___ #### Defined in -[models/return.ts:70](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return.ts#L70) +[models/return.ts:70](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return.ts#L70) ___ @@ -176,7 +176,7 @@ ___ #### Defined in -[models/return.ts:35](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return.ts#L35) +[models/return.ts:35](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return.ts#L35) ___ @@ -186,7 +186,7 @@ ___ #### Defined in -[models/return.ts:49](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return.ts#L49) +[models/return.ts:49](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return.ts#L49) ___ @@ -196,7 +196,7 @@ ___ #### Defined in -[models/return.ts:45](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return.ts#L45) +[models/return.ts:45](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return.ts#L45) ___ @@ -210,7 +210,7 @@ BaseEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -224,4 +224,4 @@ BaseEntity.updated\_at #### Defined in -[models/return.ts:90](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return.ts#L90) +[models/return.ts:90](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return.ts#L90) diff --git a/docs/content/references/entities/classes/ReturnItem.md b/docs/content/references/entities/classes/ReturnItem.md index 17f0fa4081..50e41bcdb4 100644 --- a/docs/content/references/entities/classes/ReturnItem.md +++ b/docs/content/references/entities/classes/ReturnItem.md @@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/return-item.ts:28](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return-item.ts#L28) +[models/return-item.ts:28](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return-item.ts#L28) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[models/return-item.ts:22](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return-item.ts#L22) +[models/return-item.ts:22](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return-item.ts#L22) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/return-item.ts:14](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return-item.ts#L14) +[models/return-item.ts:14](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return-item.ts#L14) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/return-item.ts:47](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return-item.ts#L47) +[models/return-item.ts:47](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return-item.ts#L47) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/return-item.ts:44](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return-item.ts#L44) +[models/return-item.ts:44](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return-item.ts#L44) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[models/return-item.ts:25](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return-item.ts#L25) +[models/return-item.ts:25](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return-item.ts#L25) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[models/return-item.ts:41](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return-item.ts#L41) +[models/return-item.ts:41](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return-item.ts#L41) ___ @@ -88,7 +88,7 @@ ___ #### Defined in -[models/return-item.ts:37](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return-item.ts#L37) +[models/return-item.ts:37](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return-item.ts#L37) ___ @@ -98,7 +98,7 @@ ___ #### Defined in -[models/return-item.ts:34](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return-item.ts#L34) +[models/return-item.ts:34](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return-item.ts#L34) ___ @@ -108,7 +108,7 @@ ___ #### Defined in -[models/return-item.ts:31](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return-item.ts#L31) +[models/return-item.ts:31](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return-item.ts#L31) ___ @@ -118,7 +118,7 @@ ___ #### Defined in -[models/return-item.ts:11](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return-item.ts#L11) +[models/return-item.ts:11](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return-item.ts#L11) ___ @@ -128,4 +128,4 @@ ___ #### Defined in -[models/return-item.ts:18](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return-item.ts#L18) +[models/return-item.ts:18](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return-item.ts#L18) diff --git a/docs/content/references/entities/classes/ReturnReason.md b/docs/content/references/entities/classes/ReturnReason.md index fbc75f1170..a7a455098b 100644 --- a/docs/content/references/entities/classes/ReturnReason.md +++ b/docs/content/references/entities/classes/ReturnReason.md @@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -46,7 +46,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -56,7 +56,7 @@ ___ #### Defined in -[models/return-reason.ts:25](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return-reason.ts#L25) +[models/return-reason.ts:25](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return-reason.ts#L25) ___ @@ -70,7 +70,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -80,7 +80,7 @@ ___ #### Defined in -[models/return-reason.ts:22](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return-reason.ts#L22) +[models/return-reason.ts:22](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return-reason.ts#L22) ___ @@ -90,7 +90,7 @@ ___ #### Defined in -[models/return-reason.ts:42](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return-reason.ts#L42) +[models/return-reason.ts:42](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return-reason.ts#L42) ___ @@ -100,7 +100,7 @@ ___ #### Defined in -[models/return-reason.ts:32](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return-reason.ts#L32) +[models/return-reason.ts:32](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return-reason.ts#L32) ___ @@ -110,7 +110,7 @@ ___ #### Defined in -[models/return-reason.ts:28](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return-reason.ts#L28) +[models/return-reason.ts:28](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return-reason.ts#L28) ___ @@ -120,7 +120,7 @@ ___ #### Defined in -[models/return-reason.ts:39](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return-reason.ts#L39) +[models/return-reason.ts:39](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return-reason.ts#L39) ___ @@ -134,7 +134,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ___ @@ -144,7 +144,7 @@ ___ #### Defined in -[models/return-reason.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return-reason.ts#L19) +[models/return-reason.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return-reason.ts#L19) ## Methods @@ -158,4 +158,4 @@ ___ #### Defined in -[models/return-reason.ts:44](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return-reason.ts#L44) +[models/return-reason.ts:44](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return-reason.ts#L44) diff --git a/docs/content/references/entities/classes/SalesChannel.md b/docs/content/references/entities/classes/SalesChannel.md index 3cebfe54a0..0b72cf25a8 100644 --- a/docs/content/references/entities/classes/SalesChannel.md +++ b/docs/content/references/entities/classes/SalesChannel.md @@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -46,7 +46,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -56,7 +56,7 @@ ___ #### Defined in -[models/sales-channel.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/sales-channel.ts#L13) +[models/sales-channel.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/sales-channel.ts#L13) ___ @@ -70,7 +70,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -80,7 +80,7 @@ ___ #### Defined in -[models/sales-channel.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/sales-channel.ts#L16) +[models/sales-channel.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/sales-channel.ts#L16) ___ @@ -90,7 +90,7 @@ ___ #### Defined in -[models/sales-channel.ts:10](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/sales-channel.ts#L10) +[models/sales-channel.ts:10](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/sales-channel.ts#L10) ___ @@ -104,7 +104,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -118,4 +118,4 @@ SoftDeletableEntity.updated\_at #### Defined in -[models/sales-channel.ts:18](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/sales-channel.ts#L18) +[models/sales-channel.ts:18](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/sales-channel.ts#L18) diff --git a/docs/content/references/entities/classes/ShippingMethod.md b/docs/content/references/entities/classes/ShippingMethod.md index 262521c3ba..6835c72324 100644 --- a/docs/content/references/entities/classes/ShippingMethod.md +++ b/docs/content/references/entities/classes/ShippingMethod.md @@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/shipping-method.ts:59](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-method.ts#L59) +[models/shipping-method.ts:59](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-method.ts#L59) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[models/shipping-method.ts:55](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-method.ts#L55) +[models/shipping-method.ts:55](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-method.ts#L55) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/shipping-method.ts:51](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-method.ts#L51) +[models/shipping-method.ts:51](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-method.ts#L51) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/shipping-method.ts:47](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-method.ts#L47) +[models/shipping-method.ts:47](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-method.ts#L47) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/shipping-method.ts:90](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-method.ts#L90) +[models/shipping-method.ts:90](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-method.ts#L90) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[models/shipping-method.ts:31](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-method.ts#L31) +[models/shipping-method.ts:31](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-method.ts#L31) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[models/shipping-method.ts:43](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-method.ts#L43) +[models/shipping-method.ts:43](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-method.ts#L43) ___ @@ -88,7 +88,7 @@ ___ #### Defined in -[models/shipping-method.ts:39](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-method.ts#L39) +[models/shipping-method.ts:39](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-method.ts#L39) ___ @@ -98,7 +98,7 @@ ___ #### Defined in -[models/shipping-method.ts:87](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-method.ts#L87) +[models/shipping-method.ts:87](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-method.ts#L87) ___ @@ -108,7 +108,7 @@ ___ #### Defined in -[models/shipping-method.ts:71](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-method.ts#L71) +[models/shipping-method.ts:71](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-method.ts#L71) ___ @@ -118,7 +118,7 @@ ___ #### Defined in -[models/shipping-method.ts:75](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-method.ts#L75) +[models/shipping-method.ts:75](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-method.ts#L75) ___ @@ -128,7 +128,7 @@ ___ #### Defined in -[models/shipping-method.ts:79](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-method.ts#L79) +[models/shipping-method.ts:79](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-method.ts#L79) ___ @@ -138,7 +138,7 @@ ___ #### Defined in -[models/shipping-method.ts:35](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-method.ts#L35) +[models/shipping-method.ts:35](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-method.ts#L35) ___ @@ -148,7 +148,7 @@ ___ #### Defined in -[models/shipping-method.ts:67](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-method.ts#L67) +[models/shipping-method.ts:67](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-method.ts#L67) ___ @@ -158,7 +158,7 @@ ___ #### Defined in -[models/shipping-method.ts:63](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-method.ts#L63) +[models/shipping-method.ts:63](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-method.ts#L63) ___ @@ -168,7 +168,7 @@ ___ #### Defined in -[models/shipping-method.ts:84](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-method.ts#L84) +[models/shipping-method.ts:84](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-method.ts#L84) ## Methods @@ -182,4 +182,4 @@ ___ #### Defined in -[models/shipping-method.ts:92](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-method.ts#L92) +[models/shipping-method.ts:92](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-method.ts#L92) diff --git a/docs/content/references/entities/classes/ShippingMethodTaxLine.md b/docs/content/references/entities/classes/ShippingMethodTaxLine.md index 5959d54cda..de0cc66b29 100644 --- a/docs/content/references/entities/classes/ShippingMethodTaxLine.md +++ b/docs/content/references/entities/classes/ShippingMethodTaxLine.md @@ -32,7 +32,7 @@ TaxLine.code #### Defined in -[models/tax-line.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-line.ts#L13) +[models/tax-line.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-line.ts#L13) ___ @@ -46,7 +46,7 @@ TaxLine.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -60,7 +60,7 @@ TaxLine.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -74,7 +74,7 @@ TaxLine.metadata #### Defined in -[models/tax-line.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-line.ts#L16) +[models/tax-line.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-line.ts#L16) ___ @@ -88,7 +88,7 @@ TaxLine.name #### Defined in -[models/tax-line.ts:10](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-line.ts#L10) +[models/tax-line.ts:10](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-line.ts#L10) ___ @@ -102,7 +102,7 @@ TaxLine.rate #### Defined in -[models/tax-line.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-line.ts#L7) +[models/tax-line.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-line.ts#L7) ___ @@ -112,7 +112,7 @@ ___ #### Defined in -[models/shipping-method-tax-line.ts:24](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-method-tax-line.ts#L24) +[models/shipping-method-tax-line.ts:24](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-method-tax-line.ts#L24) ___ @@ -122,7 +122,7 @@ ___ #### Defined in -[models/shipping-method-tax-line.ts:20](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-method-tax-line.ts#L20) +[models/shipping-method-tax-line.ts:20](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-method-tax-line.ts#L20) ___ @@ -136,7 +136,7 @@ TaxLine.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -150,4 +150,4 @@ TaxLine.updated\_at #### Defined in -[models/shipping-method-tax-line.ts:26](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-method-tax-line.ts#L26) +[models/shipping-method-tax-line.ts:26](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-method-tax-line.ts#L26) diff --git a/docs/content/references/entities/classes/ShippingOption.md b/docs/content/references/entities/classes/ShippingOption.md index de4faa8676..eaab7f60d5 100644 --- a/docs/content/references/entities/classes/ShippingOption.md +++ b/docs/content/references/entities/classes/ShippingOption.md @@ -28,7 +28,7 @@ SoftDeletableEntity.constructor #### Defined in -[models/shipping-option.ts:65](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option.ts#L65) +[models/shipping-option.ts:65](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option.ts#L65) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/shipping-option.ts:59](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option.ts#L59) +[models/shipping-option.ts:59](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option.ts#L59) ___ @@ -52,7 +52,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -62,7 +62,7 @@ ___ #### Defined in -[models/shipping-option.ts:73](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option.ts#L73) +[models/shipping-option.ts:73](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option.ts#L73) ___ @@ -76,7 +76,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -90,7 +90,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -100,7 +100,7 @@ ___ #### Defined in -[models/shipping-option.ts:62](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option.ts#L62) +[models/shipping-option.ts:62](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option.ts#L62) ___ @@ -110,7 +110,7 @@ ___ #### Defined in -[models/shipping-option.ts:76](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option.ts#L76) +[models/shipping-option.ts:76](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option.ts#L76) ___ @@ -120,7 +120,7 @@ ___ #### Defined in -[models/shipping-option.ts:29](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option.ts#L29) +[models/shipping-option.ts:29](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option.ts#L29) ___ @@ -130,7 +130,7 @@ ___ #### Defined in -[models/shipping-option.ts:56](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option.ts#L56) +[models/shipping-option.ts:56](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option.ts#L56) ___ @@ -140,7 +140,7 @@ ___ #### Defined in -[models/shipping-option.ts:45](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option.ts#L45) +[models/shipping-option.ts:45](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option.ts#L45) ___ @@ -150,7 +150,7 @@ ___ #### Defined in -[models/shipping-option.ts:41](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option.ts#L41) +[models/shipping-option.ts:41](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option.ts#L41) ___ @@ -160,7 +160,7 @@ ___ #### Defined in -[models/shipping-option.ts:53](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option.ts#L53) +[models/shipping-option.ts:53](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option.ts#L53) ___ @@ -170,7 +170,7 @@ ___ #### Defined in -[models/shipping-option.ts:49](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option.ts#L49) +[models/shipping-option.ts:49](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option.ts#L49) ___ @@ -180,7 +180,7 @@ ___ #### Defined in -[models/shipping-option.ts:37](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option.ts#L37) +[models/shipping-option.ts:37](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option.ts#L37) ___ @@ -190,7 +190,7 @@ ___ #### Defined in -[models/shipping-option.ts:33](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option.ts#L33) +[models/shipping-option.ts:33](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option.ts#L33) ___ @@ -200,7 +200,7 @@ ___ #### Defined in -[models/shipping-option.ts:70](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option.ts#L70) +[models/shipping-option.ts:70](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option.ts#L70) ___ @@ -214,7 +214,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -228,4 +228,4 @@ SoftDeletableEntity.updated\_at #### Defined in -[models/shipping-option.ts:78](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option.ts#L78) +[models/shipping-option.ts:78](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option.ts#L78) diff --git a/docs/content/references/entities/classes/ShippingOptionRequirement.md b/docs/content/references/entities/classes/ShippingOptionRequirement.md index 17a7ac69f2..53dc79036a 100644 --- a/docs/content/references/entities/classes/ShippingOptionRequirement.md +++ b/docs/content/references/entities/classes/ShippingOptionRequirement.md @@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/shipping-option-requirement.ts:38](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option-requirement.ts#L38) +[models/shipping-option-requirement.ts:38](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option-requirement.ts#L38) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[models/shipping-option-requirement.ts:41](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option-requirement.ts#L41) +[models/shipping-option-requirement.ts:41](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option-requirement.ts#L41) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/shipping-option-requirement.ts:24](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option-requirement.ts#L24) +[models/shipping-option-requirement.ts:24](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option-requirement.ts#L24) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/shipping-option-requirement.ts:32](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option-requirement.ts#L32) +[models/shipping-option-requirement.ts:32](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option-requirement.ts#L32) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/shipping-option-requirement.ts:28](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option-requirement.ts#L28) +[models/shipping-option-requirement.ts:28](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option-requirement.ts#L28) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[models/shipping-option-requirement.ts:35](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option-requirement.ts#L35) +[models/shipping-option-requirement.ts:35](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option-requirement.ts#L35) ## Methods @@ -82,4 +82,4 @@ ___ #### Defined in -[models/shipping-option-requirement.ts:43](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option-requirement.ts#L43) +[models/shipping-option-requirement.ts:43](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option-requirement.ts#L43) diff --git a/docs/content/references/entities/classes/ShippingProfile.md b/docs/content/references/entities/classes/ShippingProfile.md index d930f9642e..54af7f63a6 100644 --- a/docs/content/references/entities/classes/ShippingProfile.md +++ b/docs/content/references/entities/classes/ShippingProfile.md @@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -46,7 +46,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -60,7 +60,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -70,7 +70,7 @@ ___ #### Defined in -[models/shipping-profile.ts:30](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-profile.ts#L30) +[models/shipping-profile.ts:30](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-profile.ts#L30) ___ @@ -80,7 +80,7 @@ ___ #### Defined in -[models/shipping-profile.ts:18](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-profile.ts#L18) +[models/shipping-profile.ts:18](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-profile.ts#L18) ___ @@ -90,7 +90,7 @@ ___ #### Defined in -[models/shipping-profile.ts:24](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-profile.ts#L24) +[models/shipping-profile.ts:24](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-profile.ts#L24) ___ @@ -100,7 +100,7 @@ ___ #### Defined in -[models/shipping-profile.ts:27](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-profile.ts#L27) +[models/shipping-profile.ts:27](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-profile.ts#L27) ___ @@ -110,7 +110,7 @@ ___ #### Defined in -[models/shipping-profile.ts:21](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-profile.ts#L21) +[models/shipping-profile.ts:21](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-profile.ts#L21) ___ @@ -124,7 +124,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -138,4 +138,4 @@ SoftDeletableEntity.updated\_at #### Defined in -[models/shipping-profile.ts:32](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-profile.ts#L32) +[models/shipping-profile.ts:32](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-profile.ts#L32) diff --git a/docs/content/references/entities/classes/ShippingTaxRate.md b/docs/content/references/entities/classes/ShippingTaxRate.md index b034a3018b..354813718b 100644 --- a/docs/content/references/entities/classes/ShippingTaxRate.md +++ b/docs/content/references/entities/classes/ShippingTaxRate.md @@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/shipping-tax-rate.ts:31](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-tax-rate.ts#L31) +[models/shipping-tax-rate.ts:31](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-tax-rate.ts#L31) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[models/shipping-tax-rate.ts:37](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-tax-rate.ts#L37) +[models/shipping-tax-rate.ts:37](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-tax-rate.ts#L37) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/shipping-tax-rate.ts:20](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-tax-rate.ts#L20) +[models/shipping-tax-rate.ts:20](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-tax-rate.ts#L20) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/shipping-tax-rate.ts:24](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-tax-rate.ts#L24) +[models/shipping-tax-rate.ts:24](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-tax-rate.ts#L24) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/shipping-tax-rate.ts:17](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-tax-rate.ts#L17) +[models/shipping-tax-rate.ts:17](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-tax-rate.ts#L17) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[models/shipping-tax-rate.ts:28](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-tax-rate.ts#L28) +[models/shipping-tax-rate.ts:28](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-tax-rate.ts#L28) ___ @@ -78,4 +78,4 @@ ___ #### Defined in -[models/shipping-tax-rate.ts:34](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-tax-rate.ts#L34) +[models/shipping-tax-rate.ts:34](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-tax-rate.ts#L34) diff --git a/docs/content/references/entities/classes/StagedJob.md b/docs/content/references/entities/classes/StagedJob.md index b9a1efa34b..fdd6239fef 100644 --- a/docs/content/references/entities/classes/StagedJob.md +++ b/docs/content/references/entities/classes/StagedJob.md @@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/staged-job.ts:15](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/staged-job.ts#L15) +[models/staged-job.ts:15](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/staged-job.ts#L15) ___ @@ -28,7 +28,7 @@ ___ #### Defined in -[models/staged-job.ts:12](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/staged-job.ts#L12) +[models/staged-job.ts:12](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/staged-job.ts#L12) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/staged-job.ts:9](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/staged-job.ts#L9) +[models/staged-job.ts:9](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/staged-job.ts#L9) ## Methods @@ -52,4 +52,4 @@ ___ #### Defined in -[models/staged-job.ts:17](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/staged-job.ts#L17) +[models/staged-job.ts:17](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/staged-job.ts#L17) diff --git a/docs/content/references/entities/classes/Store.md b/docs/content/references/entities/classes/Store.md index e427484f78..273532cf70 100644 --- a/docs/content/references/entities/classes/Store.md +++ b/docs/content/references/entities/classes/Store.md @@ -32,7 +32,7 @@ BaseEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[models/store.ts:46](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/store.ts#L46) +[models/store.ts:46](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/store.ts#L46) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[models/store.ts:32](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/store.ts#L32) +[models/store.ts:32](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/store.ts#L32) ___ @@ -62,7 +62,7 @@ ___ #### Defined in -[models/store.ts:28](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/store.ts#L28) +[models/store.ts:28](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/store.ts#L28) ___ @@ -72,7 +72,7 @@ ___ #### Defined in -[models/store.ts:67](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/store.ts#L67) +[models/store.ts:67](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/store.ts#L67) ___ @@ -82,7 +82,7 @@ ___ #### Defined in -[models/store.ts:61](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/store.ts#L61) +[models/store.ts:61](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/store.ts#L61) ___ @@ -96,7 +96,7 @@ BaseEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -106,7 +106,7 @@ ___ #### Defined in -[models/store.ts:55](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/store.ts#L55) +[models/store.ts:55](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/store.ts#L55) ___ @@ -116,7 +116,7 @@ ___ #### Defined in -[models/store.ts:58](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/store.ts#L58) +[models/store.ts:58](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/store.ts#L58) ___ @@ -126,7 +126,7 @@ ___ #### Defined in -[models/store.ts:25](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/store.ts#L25) +[models/store.ts:25](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/store.ts#L25) ___ @@ -136,7 +136,7 @@ ___ #### Defined in -[models/store.ts:52](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/store.ts#L52) +[models/store.ts:52](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/store.ts#L52) ___ @@ -146,7 +146,7 @@ ___ #### Defined in -[models/store.ts:49](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/store.ts#L49) +[models/store.ts:49](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/store.ts#L49) ___ @@ -160,7 +160,7 @@ BaseEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -174,4 +174,4 @@ BaseEntity.updated\_at #### Defined in -[models/store.ts:69](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/store.ts#L69) +[models/store.ts:69](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/store.ts#L69) diff --git a/docs/content/references/entities/classes/Swap.md b/docs/content/references/entities/classes/Swap.md index 392c3a06ce..19e0763e11 100644 --- a/docs/content/references/entities/classes/Swap.md +++ b/docs/content/references/entities/classes/Swap.md @@ -28,7 +28,7 @@ SoftDeletableEntity.constructor #### Defined in -[models/swap.ts:61](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L61) +[models/swap.ts:61](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L61) ___ @@ -38,7 +38,7 @@ ___ #### Defined in -[models/swap.ts:106](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L106) +[models/swap.ts:106](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L106) ___ @@ -48,7 +48,7 @@ ___ #### Defined in -[models/swap.ts:100](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L100) +[models/swap.ts:100](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L100) ___ @@ -58,7 +58,7 @@ ___ #### Defined in -[models/swap.ts:94](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L94) +[models/swap.ts:94](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L94) ___ @@ -68,7 +68,7 @@ ___ #### Defined in -[models/swap.ts:90](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L90) +[models/swap.ts:90](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L90) ___ @@ -78,7 +78,7 @@ ___ #### Defined in -[models/swap.ts:97](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L97) +[models/swap.ts:97](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L97) ___ @@ -92,7 +92,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -106,7 +106,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -116,7 +116,7 @@ ___ #### Defined in -[models/swap.ts:75](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L75) +[models/swap.ts:75](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L75) ___ @@ -126,7 +126,7 @@ ___ #### Defined in -[models/swap.ts:47](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L47) +[models/swap.ts:47](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L47) ___ @@ -136,7 +136,7 @@ ___ #### Defined in -[models/swap.ts:69](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L69) +[models/swap.ts:69](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L69) ___ @@ -150,7 +150,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -160,7 +160,7 @@ ___ #### Defined in -[models/swap.ts:109](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L109) +[models/swap.ts:109](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L109) ___ @@ -170,7 +170,7 @@ ___ #### Defined in -[models/swap.ts:112](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L112) +[models/swap.ts:112](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L112) ___ @@ -180,7 +180,7 @@ ___ #### Defined in -[models/swap.ts:103](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L103) +[models/swap.ts:103](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L103) ___ @@ -190,7 +190,7 @@ ___ #### Defined in -[models/swap.ts:58](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L58) +[models/swap.ts:58](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L58) ___ @@ -200,7 +200,7 @@ ___ #### Defined in -[models/swap.ts:54](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L54) +[models/swap.ts:54](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L54) ___ @@ -210,7 +210,7 @@ ___ #### Defined in -[models/swap.ts:72](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L72) +[models/swap.ts:72](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L72) ___ @@ -220,7 +220,7 @@ ___ #### Defined in -[models/swap.ts:50](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L50) +[models/swap.ts:50](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L50) ___ @@ -230,7 +230,7 @@ ___ #### Defined in -[models/swap.ts:64](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L64) +[models/swap.ts:64](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L64) ___ @@ -240,7 +240,7 @@ ___ #### Defined in -[models/swap.ts:82](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L82) +[models/swap.ts:82](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L82) ___ @@ -250,7 +250,7 @@ ___ #### Defined in -[models/swap.ts:78](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L78) +[models/swap.ts:78](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L78) ___ @@ -260,7 +260,7 @@ ___ #### Defined in -[models/swap.ts:87](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L87) +[models/swap.ts:87](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L87) ___ @@ -274,7 +274,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -288,4 +288,4 @@ SoftDeletableEntity.updated\_at #### Defined in -[models/swap.ts:114](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L114) +[models/swap.ts:114](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L114) diff --git a/docs/content/references/entities/classes/TaxProvider.md b/docs/content/references/entities/classes/TaxProvider.md index f606e395ff..ee5e62d792 100644 --- a/docs/content/references/entities/classes/TaxProvider.md +++ b/docs/content/references/entities/classes/TaxProvider.md @@ -18,7 +18,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/tax-provider.ts:6](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-provider.ts#L6) +[models/tax-provider.ts:6](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-provider.ts#L6) ___ @@ -28,4 +28,4 @@ ___ #### Defined in -[models/tax-provider.ts:9](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-provider.ts#L9) +[models/tax-provider.ts:9](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-provider.ts#L9) diff --git a/docs/content/references/entities/classes/TaxRate.md b/docs/content/references/entities/classes/TaxRate.md index 0d70624822..e21e95824c 100644 --- a/docs/content/references/entities/classes/TaxRate.md +++ b/docs/content/references/entities/classes/TaxRate.md @@ -28,7 +28,7 @@ BaseEntity.constructor #### Defined in -[models/tax-rate.ts:25](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-rate.ts#L25) +[models/tax-rate.ts:25](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-rate.ts#L25) ___ @@ -42,7 +42,7 @@ BaseEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -56,7 +56,7 @@ BaseEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -66,7 +66,7 @@ ___ #### Defined in -[models/tax-rate.ts:38](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-rate.ts#L38) +[models/tax-rate.ts:38](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-rate.ts#L38) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[models/tax-rate.ts:28](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-rate.ts#L28) +[models/tax-rate.ts:28](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-rate.ts#L28) ___ @@ -86,7 +86,7 @@ ___ #### Defined in -[models/tax-rate.ts:83](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-rate.ts#L83) +[models/tax-rate.ts:83](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-rate.ts#L83) ___ @@ -96,7 +96,7 @@ ___ #### Defined in -[models/tax-rate.ts:84](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-rate.ts#L84) +[models/tax-rate.ts:84](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-rate.ts#L84) ___ @@ -106,7 +106,7 @@ ___ #### Defined in -[models/tax-rate.ts:66](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-rate.ts#L66) +[models/tax-rate.ts:66](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-rate.ts#L66) ___ @@ -116,7 +116,7 @@ ___ #### Defined in -[models/tax-rate.ts:52](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-rate.ts#L52) +[models/tax-rate.ts:52](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-rate.ts#L52) ___ @@ -126,7 +126,7 @@ ___ #### Defined in -[models/tax-rate.ts:22](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-rate.ts#L22) +[models/tax-rate.ts:22](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-rate.ts#L22) ___ @@ -136,7 +136,7 @@ ___ #### Defined in -[models/tax-rate.ts:35](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-rate.ts#L35) +[models/tax-rate.ts:35](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-rate.ts#L35) ___ @@ -146,7 +146,7 @@ ___ #### Defined in -[models/tax-rate.ts:31](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-rate.ts#L31) +[models/tax-rate.ts:31](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-rate.ts#L31) ___ @@ -156,7 +156,7 @@ ___ #### Defined in -[models/tax-rate.ts:85](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-rate.ts#L85) +[models/tax-rate.ts:85](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-rate.ts#L85) ___ @@ -166,7 +166,7 @@ ___ #### Defined in -[models/tax-rate.ts:80](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-rate.ts#L80) +[models/tax-rate.ts:80](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-rate.ts#L80) ___ @@ -180,7 +180,7 @@ BaseEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -194,4 +194,4 @@ BaseEntity.updated\_at #### Defined in -[models/tax-rate.ts:87](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tax-rate.ts#L87) +[models/tax-rate.ts:87](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tax-rate.ts#L87) diff --git a/docs/content/references/entities/classes/TrackingLink.md b/docs/content/references/entities/classes/TrackingLink.md index 5cd3e073c4..d7036d8ef8 100644 --- a/docs/content/references/entities/classes/TrackingLink.md +++ b/docs/content/references/entities/classes/TrackingLink.md @@ -32,7 +32,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -46,7 +46,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -56,7 +56,7 @@ ___ #### Defined in -[models/tracking-link.ts:21](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tracking-link.ts#L21) +[models/tracking-link.ts:21](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tracking-link.ts#L21) ___ @@ -66,7 +66,7 @@ ___ #### Defined in -[models/tracking-link.ts:17](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tracking-link.ts#L17) +[models/tracking-link.ts:17](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tracking-link.ts#L17) ___ @@ -80,7 +80,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -90,7 +90,7 @@ ___ #### Defined in -[models/tracking-link.ts:24](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tracking-link.ts#L24) +[models/tracking-link.ts:24](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tracking-link.ts#L24) ___ @@ -100,7 +100,7 @@ ___ #### Defined in -[models/tracking-link.ts:27](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tracking-link.ts#L27) +[models/tracking-link.ts:27](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tracking-link.ts#L27) ___ @@ -110,7 +110,7 @@ ___ #### Defined in -[models/tracking-link.ts:14](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tracking-link.ts#L14) +[models/tracking-link.ts:14](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tracking-link.ts#L14) ___ @@ -124,7 +124,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ___ @@ -134,7 +134,7 @@ ___ #### Defined in -[models/tracking-link.ts:11](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tracking-link.ts#L11) +[models/tracking-link.ts:11](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tracking-link.ts#L11) ## Methods @@ -148,4 +148,4 @@ ___ #### Defined in -[models/tracking-link.ts:29](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/tracking-link.ts#L29) +[models/tracking-link.ts:29](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/tracking-link.ts#L29) diff --git a/docs/content/references/entities/classes/User.md b/docs/content/references/entities/classes/User.md index 593f70d52d..80d7433cce 100644 --- a/docs/content/references/entities/classes/User.md +++ b/docs/content/references/entities/classes/User.md @@ -28,7 +28,7 @@ SoftDeletableEntity.constructor #### Defined in -[models/user.ts:37](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/user.ts#L37) +[models/user.ts:37](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/user.ts#L37) ___ @@ -42,7 +42,7 @@ SoftDeletableEntity.created\_at #### Defined in -[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L16) +[interfaces/models/base-entity.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L16) ___ @@ -56,7 +56,7 @@ SoftDeletableEntity.deleted\_at #### Defined in -[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) +[interfaces/models/soft-deletable-entity.ts:7](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/soft-deletable-entity.ts#L7) ___ @@ -66,7 +66,7 @@ ___ #### Defined in -[models/user.ts:25](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/user.ts#L25) +[models/user.ts:25](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/user.ts#L25) ___ @@ -76,7 +76,7 @@ ___ #### Defined in -[models/user.ts:28](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/user.ts#L28) +[models/user.ts:28](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/user.ts#L28) ___ @@ -90,7 +90,7 @@ SoftDeletableEntity.id #### Defined in -[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L13) +[interfaces/models/base-entity.ts:13](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L13) ___ @@ -100,7 +100,7 @@ ___ #### Defined in -[models/user.ts:31](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/user.ts#L31) +[models/user.ts:31](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/user.ts#L31) ___ @@ -110,7 +110,7 @@ ___ #### Defined in -[models/user.ts:40](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/user.ts#L40) +[models/user.ts:40](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/user.ts#L40) ___ @@ -120,7 +120,7 @@ ___ #### Defined in -[models/user.ts:34](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/user.ts#L34) +[models/user.ts:34](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/user.ts#L34) ___ @@ -130,7 +130,7 @@ ___ #### Defined in -[models/user.ts:21](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/user.ts#L21) +[models/user.ts:21](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/user.ts#L21) ___ @@ -144,7 +144,7 @@ SoftDeletableEntity.updated\_at #### Defined in -[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/interfaces/models/base-entity.ts#L19) +[interfaces/models/base-entity.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/interfaces/models/base-entity.ts#L19) ## Methods @@ -158,4 +158,4 @@ SoftDeletableEntity.updated\_at #### Defined in -[models/user.ts:42](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/user.ts#L42) +[models/user.ts:42](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/user.ts#L42) diff --git a/docs/content/references/entities/enums/AllocationType.md b/docs/content/references/entities/enums/AllocationType.md index d4eea15115..83b2db96f2 100644 --- a/docs/content/references/entities/enums/AllocationType.md +++ b/docs/content/references/entities/enums/AllocationType.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/discount-rule.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-rule.ts#L16) +[models/discount-rule.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-rule.ts#L16) ___ @@ -22,4 +22,4 @@ ___ #### Defined in -[models/discount-rule.ts:15](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-rule.ts#L15) +[models/discount-rule.ts:15](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-rule.ts#L15) diff --git a/docs/content/references/entities/enums/CartType.md b/docs/content/references/entities/enums/CartType.md index 43a712287b..1e6a8c194b 100644 --- a/docs/content/references/entities/enums/CartType.md +++ b/docs/content/references/entities/enums/CartType.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/cart.ts:208](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L208) +[models/cart.ts:208](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L208) ___ @@ -22,7 +22,7 @@ ___ #### Defined in -[models/cart.ts:204](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L204) +[models/cart.ts:204](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L204) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[models/cart.ts:206](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L206) +[models/cart.ts:206](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L206) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[models/cart.ts:207](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L207) +[models/cart.ts:207](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L207) ___ @@ -52,4 +52,4 @@ ___ #### Defined in -[models/cart.ts:205](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/cart.ts#L205) +[models/cart.ts:205](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/cart.ts#L205) diff --git a/docs/content/references/entities/enums/ClaimFulfillmentStatus.md b/docs/content/references/entities/enums/ClaimFulfillmentStatus.md index 7337d31c00..bfbbec2629 100644 --- a/docs/content/references/entities/enums/ClaimFulfillmentStatus.md +++ b/docs/content/references/entities/enums/ClaimFulfillmentStatus.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/claim-order.ts:45](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L45) +[models/claim-order.ts:45](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L45) ___ @@ -22,7 +22,7 @@ ___ #### Defined in -[models/claim-order.ts:40](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L40) +[models/claim-order.ts:40](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L40) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[models/claim-order.ts:38](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L38) +[models/claim-order.ts:38](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L38) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[models/claim-order.ts:39](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L39) +[models/claim-order.ts:39](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L39) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[models/claim-order.ts:43](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L43) +[models/claim-order.ts:43](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L43) ___ @@ -62,7 +62,7 @@ ___ #### Defined in -[models/claim-order.ts:41](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L41) +[models/claim-order.ts:41](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L41) ___ @@ -72,7 +72,7 @@ ___ #### Defined in -[models/claim-order.ts:46](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L46) +[models/claim-order.ts:46](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L46) ___ @@ -82,7 +82,7 @@ ___ #### Defined in -[models/claim-order.ts:44](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L44) +[models/claim-order.ts:44](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L44) ___ @@ -92,4 +92,4 @@ ___ #### Defined in -[models/claim-order.ts:42](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L42) +[models/claim-order.ts:42](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L42) diff --git a/docs/content/references/entities/enums/ClaimPaymentStatus.md b/docs/content/references/entities/enums/ClaimPaymentStatus.md index 59ec51662a..56fde1aa7e 100644 --- a/docs/content/references/entities/enums/ClaimPaymentStatus.md +++ b/docs/content/references/entities/enums/ClaimPaymentStatus.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/claim-order.ts:32](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L32) +[models/claim-order.ts:32](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L32) ___ @@ -22,7 +22,7 @@ ___ #### Defined in -[models/claim-order.ts:33](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L33) +[models/claim-order.ts:33](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L33) ___ @@ -32,4 +32,4 @@ ___ #### Defined in -[models/claim-order.ts:34](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L34) +[models/claim-order.ts:34](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L34) diff --git a/docs/content/references/entities/enums/ClaimReason.md b/docs/content/references/entities/enums/ClaimReason.md index 04bb0f22e6..789c015640 100644 --- a/docs/content/references/entities/enums/ClaimReason.md +++ b/docs/content/references/entities/enums/ClaimReason.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/claim-item.ts:23](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-item.ts#L23) +[models/claim-item.ts:23](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-item.ts#L23) ___ @@ -22,7 +22,7 @@ ___ #### Defined in -[models/claim-item.ts:26](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-item.ts#L26) +[models/claim-item.ts:26](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-item.ts#L26) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[models/claim-item.ts:25](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-item.ts#L25) +[models/claim-item.ts:25](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-item.ts#L25) ___ @@ -42,4 +42,4 @@ ___ #### Defined in -[models/claim-item.ts:24](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-item.ts#L24) +[models/claim-item.ts:24](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-item.ts#L24) diff --git a/docs/content/references/entities/enums/ClaimType.md b/docs/content/references/entities/enums/ClaimType.md index be9800690e..cfb3c9f172 100644 --- a/docs/content/references/entities/enums/ClaimType.md +++ b/docs/content/references/entities/enums/ClaimType.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/claim-order.ts:27](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L27) +[models/claim-order.ts:27](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L27) ___ @@ -22,4 +22,4 @@ ___ #### Defined in -[models/claim-order.ts:28](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/claim-order.ts#L28) +[models/claim-order.ts:28](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/claim-order.ts#L28) diff --git a/docs/content/references/entities/enums/DiscountConditionOperator.md b/docs/content/references/entities/enums/DiscountConditionOperator.md index 882ca03cb0..ef9b0c0a48 100644 --- a/docs/content/references/entities/enums/DiscountConditionOperator.md +++ b/docs/content/references/entities/enums/DiscountConditionOperator.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/discount-condition.ts:32](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition.ts#L32) +[models/discount-condition.ts:32](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition.ts#L32) ___ @@ -22,4 +22,4 @@ ___ #### Defined in -[models/discount-condition.ts:33](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition.ts#L33) +[models/discount-condition.ts:33](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition.ts#L33) diff --git a/docs/content/references/entities/enums/DiscountConditionType.md b/docs/content/references/entities/enums/DiscountConditionType.md index 7f68073320..b6be9c39dc 100644 --- a/docs/content/references/entities/enums/DiscountConditionType.md +++ b/docs/content/references/entities/enums/DiscountConditionType.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/discount-condition.ts:28](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition.ts#L28) +[models/discount-condition.ts:28](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition.ts#L28) ___ @@ -22,7 +22,7 @@ ___ #### Defined in -[models/discount-condition.ts:24](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition.ts#L24) +[models/discount-condition.ts:24](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition.ts#L24) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[models/discount-condition.ts:26](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition.ts#L26) +[models/discount-condition.ts:26](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition.ts#L26) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[models/discount-condition.ts:27](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition.ts#L27) +[models/discount-condition.ts:27](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition.ts#L27) ___ @@ -52,4 +52,4 @@ ___ #### Defined in -[models/discount-condition.ts:25](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-condition.ts#L25) +[models/discount-condition.ts:25](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-condition.ts#L25) diff --git a/docs/content/references/entities/enums/DiscountRuleType.md b/docs/content/references/entities/enums/DiscountRuleType.md index 24752681fb..85ba3b7129 100644 --- a/docs/content/references/entities/enums/DiscountRuleType.md +++ b/docs/content/references/entities/enums/DiscountRuleType.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/discount-rule.ts:9](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-rule.ts#L9) +[models/discount-rule.ts:9](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-rule.ts#L9) ___ @@ -22,7 +22,7 @@ ___ #### Defined in -[models/discount-rule.ts:11](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-rule.ts#L11) +[models/discount-rule.ts:11](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-rule.ts#L11) ___ @@ -32,4 +32,4 @@ ___ #### Defined in -[models/discount-rule.ts:10](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/discount-rule.ts#L10) +[models/discount-rule.ts:10](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/discount-rule.ts#L10) diff --git a/docs/content/references/entities/enums/DraftOrderStatus.md b/docs/content/references/entities/enums/DraftOrderStatus.md index 925e119b28..b8214ad45a 100644 --- a/docs/content/references/entities/enums/DraftOrderStatus.md +++ b/docs/content/references/entities/enums/DraftOrderStatus.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/draft-order.ts:24](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/draft-order.ts#L24) +[models/draft-order.ts:24](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/draft-order.ts#L24) ___ @@ -22,4 +22,4 @@ ___ #### Defined in -[models/draft-order.ts:23](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/draft-order.ts#L23) +[models/draft-order.ts:23](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/draft-order.ts#L23) diff --git a/docs/content/references/entities/enums/FulfillmentStatus.md b/docs/content/references/entities/enums/FulfillmentStatus.md index 0d14b709c7..431f506274 100644 --- a/docs/content/references/entities/enums/FulfillmentStatus.md +++ b/docs/content/references/entities/enums/FulfillmentStatus.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/order.ts:62](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L62) +[models/order.ts:62](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L62) ___ @@ -22,7 +22,7 @@ ___ #### Defined in -[models/order.ts:57](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L57) +[models/order.ts:57](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L57) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[models/order.ts:55](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L55) +[models/order.ts:55](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L55) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[models/order.ts:56](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L56) +[models/order.ts:56](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L56) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[models/order.ts:60](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L60) +[models/order.ts:60](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L60) ___ @@ -62,7 +62,7 @@ ___ #### Defined in -[models/order.ts:58](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L58) +[models/order.ts:58](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L58) ___ @@ -72,7 +72,7 @@ ___ #### Defined in -[models/order.ts:63](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L63) +[models/order.ts:63](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L63) ___ @@ -82,7 +82,7 @@ ___ #### Defined in -[models/order.ts:61](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L61) +[models/order.ts:61](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L61) ___ @@ -92,4 +92,4 @@ ___ #### Defined in -[models/order.ts:59](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L59) +[models/order.ts:59](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L59) diff --git a/docs/content/references/entities/enums/OrderStatus.md b/docs/content/references/entities/enums/OrderStatus.md index e15779579a..3da568e440 100644 --- a/docs/content/references/entities/enums/OrderStatus.md +++ b/docs/content/references/entities/enums/OrderStatus.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/order.ts:49](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L49) +[models/order.ts:49](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L49) ___ @@ -22,7 +22,7 @@ ___ #### Defined in -[models/order.ts:50](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L50) +[models/order.ts:50](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L50) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[models/order.ts:48](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L48) +[models/order.ts:48](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L48) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[models/order.ts:47](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L47) +[models/order.ts:47](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L47) ___ @@ -52,4 +52,4 @@ ___ #### Defined in -[models/order.ts:51](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L51) +[models/order.ts:51](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L51) diff --git a/docs/content/references/entities/enums/PaymentSessionStatus.md b/docs/content/references/entities/enums/PaymentSessionStatus.md index 54194c3a7a..dbb6fba6aa 100644 --- a/docs/content/references/entities/enums/PaymentSessionStatus.md +++ b/docs/content/references/entities/enums/PaymentSessionStatus.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/payment-session.ts:17](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment-session.ts#L17) +[models/payment-session.ts:17](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment-session.ts#L17) ___ @@ -22,7 +22,7 @@ ___ #### Defined in -[models/payment-session.ts:21](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment-session.ts#L21) +[models/payment-session.ts:21](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment-session.ts#L21) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[models/payment-session.ts:20](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment-session.ts#L20) +[models/payment-session.ts:20](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment-session.ts#L20) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[models/payment-session.ts:18](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment-session.ts#L18) +[models/payment-session.ts:18](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment-session.ts#L18) ___ @@ -52,4 +52,4 @@ ___ #### Defined in -[models/payment-session.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/payment-session.ts#L19) +[models/payment-session.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/payment-session.ts#L19) diff --git a/docs/content/references/entities/enums/PaymentStatus.md b/docs/content/references/entities/enums/PaymentStatus.md index ef121c5620..4ac09d9724 100644 --- a/docs/content/references/entities/enums/PaymentStatus.md +++ b/docs/content/references/entities/enums/PaymentStatus.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/order.ts:68](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L68) +[models/order.ts:68](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L68) ___ @@ -22,7 +22,7 @@ ___ #### Defined in -[models/order.ts:72](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L72) +[models/order.ts:72](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L72) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[models/order.ts:69](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L69) +[models/order.ts:69](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L69) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[models/order.ts:67](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L67) +[models/order.ts:67](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L67) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[models/order.ts:70](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L70) +[models/order.ts:70](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L70) ___ @@ -62,7 +62,7 @@ ___ #### Defined in -[models/order.ts:71](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L71) +[models/order.ts:71](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L71) ___ @@ -72,4 +72,4 @@ ___ #### Defined in -[models/order.ts:73](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/order.ts#L73) +[models/order.ts:73](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/order.ts#L73) diff --git a/docs/content/references/entities/enums/ProductStatus.md b/docs/content/references/entities/enums/ProductStatus.md index f330511dfe..30a970f46c 100644 --- a/docs/content/references/entities/enums/ProductStatus.md +++ b/docs/content/references/entities/enums/ProductStatus.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/product.ts:28](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L28) +[models/product.ts:28](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L28) ___ @@ -22,7 +22,7 @@ ___ #### Defined in -[models/product.ts:29](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L29) +[models/product.ts:29](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L29) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[models/product.ts:30](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L30) +[models/product.ts:30](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L30) ___ @@ -42,4 +42,4 @@ ___ #### Defined in -[models/product.ts:31](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/product.ts#L31) +[models/product.ts:31](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/product.ts#L31) diff --git a/docs/content/references/entities/enums/RefundReason.md b/docs/content/references/entities/enums/RefundReason.md index db91c8bb26..f8ef9dfd33 100644 --- a/docs/content/references/entities/enums/RefundReason.md +++ b/docs/content/references/entities/enums/RefundReason.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/refund.ts:19](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/refund.ts#L19) +[models/refund.ts:19](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/refund.ts#L19) ___ @@ -22,7 +22,7 @@ ___ #### Defined in -[models/refund.ts:16](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/refund.ts#L16) +[models/refund.ts:16](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/refund.ts#L16) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[models/refund.ts:20](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/refund.ts#L20) +[models/refund.ts:20](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/refund.ts#L20) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[models/refund.ts:17](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/refund.ts#L17) +[models/refund.ts:17](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/refund.ts#L17) ___ @@ -52,4 +52,4 @@ ___ #### Defined in -[models/refund.ts:18](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/refund.ts#L18) +[models/refund.ts:18](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/refund.ts#L18) diff --git a/docs/content/references/entities/enums/RequirementType.md b/docs/content/references/entities/enums/RequirementType.md index 2a9f55b526..c33e8f1d39 100644 --- a/docs/content/references/entities/enums/RequirementType.md +++ b/docs/content/references/entities/enums/RequirementType.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/shipping-option-requirement.ts:18](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option-requirement.ts#L18) +[models/shipping-option-requirement.ts:18](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option-requirement.ts#L18) ___ @@ -22,4 +22,4 @@ ___ #### Defined in -[models/shipping-option-requirement.ts:17](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option-requirement.ts#L17) +[models/shipping-option-requirement.ts:17](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option-requirement.ts#L17) diff --git a/docs/content/references/entities/enums/ReturnStatus.md b/docs/content/references/entities/enums/ReturnStatus.md index efc6f87790..a5c4b90427 100644 --- a/docs/content/references/entities/enums/ReturnStatus.md +++ b/docs/content/references/entities/enums/ReturnStatus.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/return.ts:25](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return.ts#L25) +[models/return.ts:25](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return.ts#L25) ___ @@ -22,7 +22,7 @@ ___ #### Defined in -[models/return.ts:23](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return.ts#L23) +[models/return.ts:23](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return.ts#L23) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[models/return.ts:22](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return.ts#L22) +[models/return.ts:22](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return.ts#L22) ___ @@ -42,4 +42,4 @@ ___ #### Defined in -[models/return.ts:24](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/return.ts#L24) +[models/return.ts:24](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/return.ts#L24) diff --git a/docs/content/references/entities/enums/ShippingOptionPriceType.md b/docs/content/references/entities/enums/ShippingOptionPriceType.md index a5a75bd80c..6754921444 100644 --- a/docs/content/references/entities/enums/ShippingOptionPriceType.md +++ b/docs/content/references/entities/enums/ShippingOptionPriceType.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/shipping-option.ts:22](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option.ts#L22) +[models/shipping-option.ts:22](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option.ts#L22) ___ @@ -22,4 +22,4 @@ ___ #### Defined in -[models/shipping-option.ts:21](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-option.ts#L21) +[models/shipping-option.ts:21](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-option.ts#L21) diff --git a/docs/content/references/entities/enums/ShippingProfileType.md b/docs/content/references/entities/enums/ShippingProfileType.md index 1d82ddabde..2592b81ed5 100644 --- a/docs/content/references/entities/enums/ShippingProfileType.md +++ b/docs/content/references/entities/enums/ShippingProfileType.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/shipping-profile.ts:12](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-profile.ts#L12) +[models/shipping-profile.ts:12](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-profile.ts#L12) ___ @@ -22,7 +22,7 @@ ___ #### Defined in -[models/shipping-profile.ts:10](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-profile.ts#L10) +[models/shipping-profile.ts:10](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-profile.ts#L10) ___ @@ -32,4 +32,4 @@ ___ #### Defined in -[models/shipping-profile.ts:11](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/shipping-profile.ts#L11) +[models/shipping-profile.ts:11](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/shipping-profile.ts#L11) diff --git a/docs/content/references/entities/enums/SwapFulfillmentStatus.md b/docs/content/references/entities/enums/SwapFulfillmentStatus.md index e531722528..d6f8bb6e16 100644 --- a/docs/content/references/entities/enums/SwapFulfillmentStatus.md +++ b/docs/content/references/entities/enums/SwapFulfillmentStatus.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/swap.ts:28](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L28) +[models/swap.ts:28](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L28) ___ @@ -22,7 +22,7 @@ ___ #### Defined in -[models/swap.ts:26](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L26) +[models/swap.ts:26](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L26) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[models/swap.ts:25](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L25) +[models/swap.ts:25](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L25) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[models/swap.ts:29](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L29) +[models/swap.ts:29](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L29) ___ @@ -52,4 +52,4 @@ ___ #### Defined in -[models/swap.ts:27](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L27) +[models/swap.ts:27](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L27) diff --git a/docs/content/references/entities/enums/SwapPaymentStatus.md b/docs/content/references/entities/enums/SwapPaymentStatus.md index fe691742e1..d979257352 100644 --- a/docs/content/references/entities/enums/SwapPaymentStatus.md +++ b/docs/content/references/entities/enums/SwapPaymentStatus.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/swap.ts:34](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L34) +[models/swap.ts:34](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L34) ___ @@ -22,7 +22,7 @@ ___ #### Defined in -[models/swap.ts:37](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L37) +[models/swap.ts:37](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L37) ___ @@ -32,7 +32,7 @@ ___ #### Defined in -[models/swap.ts:35](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L35) +[models/swap.ts:35](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L35) ___ @@ -42,7 +42,7 @@ ___ #### Defined in -[models/swap.ts:36](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L36) +[models/swap.ts:36](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L36) ___ @@ -52,7 +52,7 @@ ___ #### Defined in -[models/swap.ts:38](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L38) +[models/swap.ts:38](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L38) ___ @@ -62,7 +62,7 @@ ___ #### Defined in -[models/swap.ts:33](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L33) +[models/swap.ts:33](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L33) ___ @@ -72,7 +72,7 @@ ___ #### Defined in -[models/swap.ts:39](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L39) +[models/swap.ts:39](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L39) ___ @@ -82,7 +82,7 @@ ___ #### Defined in -[models/swap.ts:40](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L40) +[models/swap.ts:40](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L40) ___ @@ -92,4 +92,4 @@ ___ #### Defined in -[models/swap.ts:41](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/swap.ts#L41) +[models/swap.ts:41](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/swap.ts#L41) diff --git a/docs/content/references/entities/enums/UserRoles.md b/docs/content/references/entities/enums/UserRoles.md index 29bfede946..6717d16387 100644 --- a/docs/content/references/entities/enums/UserRoles.md +++ b/docs/content/references/entities/enums/UserRoles.md @@ -12,7 +12,7 @@ displayed_sidebar: entitiesSidebar #### Defined in -[models/user.ts:8](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/user.ts#L8) +[models/user.ts:8](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/user.ts#L8) ___ @@ -22,7 +22,7 @@ ___ #### Defined in -[models/user.ts:10](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/user.ts#L10) +[models/user.ts:10](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/user.ts#L10) ___ @@ -32,4 +32,4 @@ ___ #### Defined in -[models/user.ts:9](https://github.com/medusajs/medusa/blob/f7a63f178/packages/medusa/src/models/user.ts#L9) +[models/user.ts:9](https://github.com/medusajs/medusa/blob/076b41bb8/packages/medusa/src/models/user.ts#L9) diff --git a/docs/content/tutorial/0-set-up-your-development-environment.mdx b/docs/content/tutorial/0-set-up-your-development-environment.mdx index 395acde205..6197bf3af3 100644 --- a/docs/content/tutorial/0-set-up-your-development-environment.mdx +++ b/docs/content/tutorial/0-set-up-your-development-environment.mdx @@ -207,6 +207,23 @@ For other distributions, you can check out [PostgreSQL’s website for more guid You can download PostgreSQL on your macOS using [the installer on their website](https://www.postgresql.org/download/macosx/). + + + +Make sure the Docker Desktop app is running, then run the following command to quickly spin up a PostgreSQL instance: + +```bash +docker run --name postgres -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres -e POSTGRES_DB=medusa-docker -p 5432:5432 -d postgres +``` + +Where: + +- `--name` creates a new container named `postgres`. +- `-e` creates environment variables `POSTGRES_USER`, `POSTGRES_PASSWORD` and `POSTGRES_DB`. These will be used to set up a database named `medusa-docker` with the username and password being `postgres`. +- `-p` maps the container port `5432` to the external host `5432`. This allows you to connect to the database server from outside of the container. +- `-d` enables Docker to run the container in the background. +- The last section of the command, `postgres` grabs the latest postgres image from the Docker hub. + diff --git a/packages/medusa/src/api/routes/admin/discounts/create-condition.ts b/packages/medusa/src/api/routes/admin/discounts/create-condition.ts index f906e47882..a6189525ff 100644 --- a/packages/medusa/src/api/routes/admin/discounts/create-condition.ts +++ b/packages/medusa/src/api/routes/admin/discounts/create-condition.ts @@ -12,13 +12,13 @@ import { validator } from "../../../../utils/validator" /** * @oas [post] /discounts/{discount_id}/conditions * operationId: "PostDiscountsDiscountConditions" - * summary: "Creates a DiscountCondition. Only one of `products`, `product_types`, `product_collections`, `product_tags`, and `customer_groups` should be provided." + * summary: "Create a DiscountCondition" + * description: "Creates a DiscountCondition. Only one of `products`, `product_types`, `product_collections`, `product_tags`, and `customer_groups` should be provided." * x-authenticated: true * parameters: * - (path) discount_id=* {string} The ID of the Product. * - (query) expand {string} (Comma separated) Which fields should be expanded in each product of the result. * - (query) fields {string} (Comma separated) Which fields should be included in each product of the result. - * description: "Creates a DiscountCondition" * requestBody: * content: * application/json: diff --git a/packages/medusa/src/api/routes/admin/discounts/update-condition.ts b/packages/medusa/src/api/routes/admin/discounts/update-condition.ts index 9b8d218e57..b172fdaaa2 100644 --- a/packages/medusa/src/api/routes/admin/discounts/update-condition.ts +++ b/packages/medusa/src/api/routes/admin/discounts/update-condition.ts @@ -12,14 +12,14 @@ import { validator } from "../../../../utils/validator" /** * @oas [post] /discounts/{discount_id}/conditions/{condition_id} * operationId: "PostDiscountsDiscountConditionsCondition" - * summary: "Updates a DiscountCondition. Only one of `products`, `product_types`, `product_collections`, `product_tags`, and `customer_groups` should be provided." + * summary: "Update a DiscountCondition" + * description: "Updates a DiscountCondition. Only one of `products`, `product_types`, `product_collections`, `product_tags`, and `customer_groups` should be provided." * x-authenticated: true * parameters: * - (path) discount_id=* {string} The ID of the Product. * - (path) condition_id=* {string} The ID of the DiscountCondition. * - (query) expand {string} (Comma separated) Which fields should be expanded in each item of the result. * - (query) fields {string} (Comma separated) Which fields should be included in each item of the result. - * description: "Updates a DiscountCondition" * requestBody: * content: * application/json: diff --git a/packages/medusa/src/api/routes/admin/gift-cards/update-gift-card.ts b/packages/medusa/src/api/routes/admin/gift-cards/update-gift-card.ts index f702dca67f..9ba5815d52 100644 --- a/packages/medusa/src/api/routes/admin/gift-cards/update-gift-card.ts +++ b/packages/medusa/src/api/routes/admin/gift-cards/update-gift-card.ts @@ -9,8 +9,8 @@ import { EntityManager } from "typeorm" /** * @oas [post] /gift-cards/{id} * operationId: "PostGiftCardsGiftCard" - * summary: "Create a Gift Card" - * description: "Creates a Gift Card that can redeemed by its unique code. The Gift Card is only valid within 1 region." + * summary: "Update a Gift Card" + * description: "Update a Gift Card that can redeemed by its unique code. The Gift Card is only valid within 1 region." * x-authenticated: true * parameters: * - (path) id=* {string} The ID of the Gift Card. diff --git a/packages/medusa/src/commands/develop.js b/packages/medusa/src/commands/develop.js index 253e175e37..27fdeb43f9 100644 --- a/packages/medusa/src/commands/develop.js +++ b/packages/medusa/src/commands/develop.js @@ -5,7 +5,7 @@ import chokidar from "chokidar" import Logger from "../loaders/logger" -export default async function ({ port, directory }) { +export default async function({ port, directory }) { const args = process.argv args.shift() args.shift() @@ -28,6 +28,11 @@ export default async function ({ port, directory }) { chokidar.watch(`${directory}/src`).on("change", (file) => { const f = file.split("src")[1] Logger.info(`${f} changed: restarting...`) + + if (process.platform === "win32") { + execSync(`taskkill /PID ${child.pid} /F /T`) + } + child.kill("SIGINT") execSync(`${babelPath} src -d dist --extensions \".ts,.js\"`, { diff --git a/packages/medusa/src/models/shipping-method-tax-line.ts b/packages/medusa/src/models/shipping-method-tax-line.ts index d25159c6c6..c0153d0ccd 100644 --- a/packages/medusa/src/models/shipping-method-tax-line.ts +++ b/packages/medusa/src/models/shipping-method-tax-line.ts @@ -30,10 +30,10 @@ export class ShippingMethodTaxLine extends TaxLine { } /** - * @schema sales_channel_tax_line - * title: "Sales Channel" - * description: "A Sales Channel" - * x-resourceId: sales_channel_tax_line + * @schema shipping_method_tax_line + * title: "Shipping Method Tax Line" + * description: "Shipping Method Tax Line" + * x-resourceId: shipping_method_tax_line * required: * - shipping_method_id * - rate diff --git a/packages/medusa/src/models/shipping-method.ts b/packages/medusa/src/models/shipping-method.ts index 9c7ad36d7a..f395d03a81 100644 --- a/packages/medusa/src/models/shipping-method.ts +++ b/packages/medusa/src/models/shipping-method.ts @@ -154,7 +154,7 @@ export class ShippingMethod { * type: array * description: Available if the relation `tax_lines` is expanded. * items: - * $ref: "#/components/schemas/tax_line" + * $ref: "#/components/schemas/shipping_method_tax_line" * price: * description: "The amount to charge for the Shipping Method. The currency of the price is defined by the Region that the Order that the Shipping Method belongs to is a part of." * type: integer diff --git a/scripts/build-openapi.js b/scripts/build-openapi.js index bf1eb9280e..c219624ab2 100755 --- a/scripts/build-openapi.js +++ b/scripts/build-openapi.js @@ -3,7 +3,10 @@ const fs = require("fs") const OAS = require("oas-normalize") const swaggerInline = require("swagger-inline") -const { exec } = require("child_process") +const { exec } = require("child_process"); +const { exit } = require("process"); + +const isDryRun = process.argv.indexOf('--dry-run') !== -1; // Storefront API swaggerInline( @@ -16,7 +19,9 @@ swaggerInline( oas .validate(true) .then(() => { - fs.writeFileSync("./docs/api/store-spec3.json", gen) + if (!isDryRun) { + fs.writeFileSync("./docs/api/store-spec3.json", gen) + } }) .catch((err) => { console.log("Error in store") @@ -32,13 +37,17 @@ swaggerInline( format: "yaml", } ).then((gen) => { - fs.writeFileSync("./docs/api/store-spec3.yaml", gen) - exec("rm -rf docs/api/store/ && yarn run -- redocly split docs/api/store-spec3.yaml --outDir=docs/api/store/", (error, stdout, stderr) => { - if (error) { - throw new Error(`error: ${error.message}`) - } - console.log(`${stderr || stdout}`); - }); + if (!isDryRun) { + fs.writeFileSync("./docs/api/store-spec3.yaml", gen) + exec("rm -rf docs/api/store/ && yarn run -- redocly split docs/api/store-spec3.yaml --outDir=docs/api/store/", (error, stdout, stderr) => { + if (error) { + throw new Error(`error: ${error.message}`) + } + console.log(`${stderr || stdout}`); + }); + } else { + console.log('No errors occurred while generating Store API Reference'); + } }) // Admin API @@ -52,7 +61,9 @@ swaggerInline( oas .validate(true) .then(() => { - fs.writeFileSync("./docs/api/admin-spec3.json", gen) + if (!isDryRun) { + fs.writeFileSync("./docs/api/admin-spec3.json", gen) + } }) .catch((err) => { console.log("Error in admin") @@ -68,12 +79,16 @@ swaggerInline( format: "yaml", } ).then((gen) => { - fs.writeFileSync("./docs/api/admin-spec3.yaml", gen) - exec("rm -rf docs/api/admin/ && yarn run -- redocly split docs/api/admin-spec3.yaml --outDir=docs/api/admin/", (error, stdout, stderr) => { - if (error) { - throw new Error(`error: ${error.message}`) - } - console.log(`${stderr || stdout}`); - return; - }); + if (!isDryRun) { + fs.writeFileSync("./docs/api/admin-spec3.yaml", gen) + exec("rm -rf docs/api/admin/ && yarn run -- redocly split docs/api/admin-spec3.yaml --outDir=docs/api/admin/", (error, stdout, stderr) => { + if (error) { + throw new Error(`error: ${error.message}`) + } + console.log(`${stderr || stdout}`); + return; + }); + } else { + console.log('No errors occurred while generating Admin API Reference'); + } })