@mercurjs/core 2.3.4-canary.2 → 2.3.4-canary.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.medusa/server/src/api/admin/products/validators.d.ts +24 -1
- package/.medusa/server/src/api/admin/products/validators.js +7 -2
- package/.medusa/server/src/api/store/order-groups/query-config.js +14 -3
- package/.medusa/server/src/api/vendor/products/validators.d.ts +24 -1
- package/.medusa/server/src/api/vendor/products/validators.js +7 -2
- package/.medusa/server/src/api/vendor/stores/query-config.js +4 -3
- package/.medusa/server/src/modules/media/models/media-image.d.ts +1 -1
- package/.medusa/server/src/modules/media/service.d.ts +1 -1
- package/.medusa/server/src/modules/offer/models/offer.d.ts +1 -1
- package/.medusa/server/src/modules/offer/service.d.ts +1 -1
- package/.medusa/server/src/modules/payout/models/onboarding.d.ts +5 -5
- package/.medusa/server/src/modules/payout/models/payout-account.d.ts +7 -7
- package/.medusa/server/src/modules/payout/models/payout.d.ts +7 -7
- package/.medusa/server/src/modules/payout/services/payout-module-service.d.ts +19 -19
- package/.medusa/server/src/modules/product-attribute/models/product-attribute-value.d.ts +2 -2
- package/.medusa/server/src/modules/product-attribute/models/product-attribute.d.ts +2 -2
- package/.medusa/server/src/modules/product-attribute/service.d.ts +4 -4
- package/.medusa/server/src/modules/product-edit/models/product-change-action.d.ts +3 -3
- package/.medusa/server/src/modules/product-edit/models/product-change.d.ts +2 -2
- package/.medusa/server/src/modules/product-edit/service.d.ts +5 -5
- package/.medusa/server/src/modules/promotion-cost/models/promotion-cost.d.ts +1 -1
- package/.medusa/server/src/modules/promotion-cost/service.d.ts +2 -2
- package/.medusa/server/src/modules/seller/models/address.d.ts +4 -4
- package/.medusa/server/src/modules/seller/models/member-invite.d.ts +4 -4
- package/.medusa/server/src/modules/seller/models/member.d.ts +4 -4
- package/.medusa/server/src/modules/seller/models/payment-details.d.ts +4 -4
- package/.medusa/server/src/modules/seller/models/professional-details.d.ts +4 -4
- package/.medusa/server/src/modules/seller/models/seller-member.d.ts +9 -9
- package/.medusa/server/src/modules/seller/models/seller.d.ts +4 -4
- package/.medusa/server/src/modules/seller/service.d.ts +33 -33
- package/.medusa/server/src/patches/manifest.js +3 -3
- package/.medusa/server/src/workflows/media/steps/create-images.d.ts +1 -1
- package/.medusa/server/src/workflows/offer/steps/create-offers.d.ts +1 -1
- package/.medusa/server/src/workflows/offer/steps/update-offers.d.ts +1 -1
- package/.medusa/server/src/workflows/payout/steps/update-payout-account.d.ts +5 -5
- package/.medusa/server/src/workflows/payout/steps/update-payout.d.ts +5 -5
- package/.medusa/server/src/workflows/product-attribute/steps/update-product-attribute-values.d.ts +2 -2
- package/.medusa/server/src/workflows/product-attribute/workflows/update-product-attributes-on-product.js +60 -24
- package/.medusa/server/src/workflows/product-edit/steps/add-product-change-action.d.ts +2 -2
- package/.medusa/server/src/workflows/product-edit/steps/cancel-product-change.d.ts +2 -2
- package/.medusa/server/src/workflows/product-edit/steps/confirm-product-changes.d.ts +2 -2
- package/.medusa/server/src/workflows/product-edit/steps/create-product-change-actions.d.ts +2 -2
- package/.medusa/server/src/workflows/product-edit/steps/create-product-changes.d.ts +2 -2
- package/.medusa/server/src/workflows/product-edit/steps/decline-product-change.d.ts +2 -2
- package/.medusa/server/src/workflows/product-edit/steps/update-product-change-actions.d.ts +2 -2
- package/.medusa/server/src/workflows/product-edit/workflows/product-edit-update-attributes.d.ts +3 -0
- package/.medusa/server/src/workflows/product-edit/workflows/product-edit-update-attributes.js +6 -2
- package/.medusa/server/src/workflows/product-edit/workflows/product-edit-update-product.d.ts +3 -0
- package/.medusa/server/src/workflows/product-edit/workflows/product-edit-update-product.js +3 -2
- package/.medusa/server/src/workflows/promotion-cost/steps/upsert-promotion-costs.d.ts +1 -1
- package/.medusa/server/src/workflows/promotion-cost/workflows/upsert-promotion-costs.d.ts +1 -1
- package/.medusa/server/src/workflows/seller/steps/create-seller-member.d.ts +9 -9
- package/.medusa/server/src/workflows/seller/steps/update-member.d.ts +4 -4
- package/.medusa/server/src/workflows/seller/steps/update-seller-member.d.ts +9 -9
- package/.medusa/server/src/workflows/seller/workflows/add-seller-member.d.ts +9 -9
- package/package.json +17 -17
|
@@ -39,7 +39,7 @@ declare const Seller: import("@medusajs/framework/utils").DmlEntity<import("@med
|
|
|
39
39
|
province: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
40
40
|
postal_code: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
41
41
|
phone: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
42
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
42
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
43
43
|
seller: import("@medusajs/framework/utils").BelongsTo<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">, undefined>;
|
|
44
44
|
}>, "SellerAddress">>;
|
|
45
45
|
payment_details: import("@medusajs/framework/utils").HasOne<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
@@ -61,7 +61,7 @@ declare const Seller: import("@medusajs/framework/utils").DmlEntity<import("@med
|
|
|
61
61
|
locale: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
62
62
|
is_active: import("@medusajs/framework/utils").BooleanProperty;
|
|
63
63
|
sellers: import("@medusajs/framework/utils").ManyToMany<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">>;
|
|
64
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
64
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
65
65
|
}>, "Member">>;
|
|
66
66
|
member_invites: import("@medusajs/framework/utils").HasMany<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
67
67
|
id: import("@medusajs/framework/utils").PrimaryKeyModifier<string, import("@medusajs/framework/utils").IdProperty>;
|
|
@@ -71,8 +71,8 @@ declare const Seller: import("@medusajs/framework/utils").DmlEntity<import("@med
|
|
|
71
71
|
expires_at: import("@medusajs/framework/utils").DateTimeProperty;
|
|
72
72
|
role_id: import("@medusajs/framework/utils").TextProperty;
|
|
73
73
|
seller: import("@medusajs/framework/utils").BelongsTo<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">, undefined>;
|
|
74
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
74
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
75
75
|
}>, "MemberInvite">>;
|
|
76
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
76
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
77
77
|
}>, "Seller">;
|
|
78
78
|
export default Seller;
|
|
@@ -46,7 +46,7 @@ declare const SellerModuleService_base: import("@medusajs/framework/utils").Medu
|
|
|
46
46
|
province: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
47
47
|
postal_code: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
48
48
|
phone: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
49
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
49
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
50
50
|
seller: import("@medusajs/framework/utils").BelongsTo<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">, undefined>;
|
|
51
51
|
}>, "SellerAddress">>;
|
|
52
52
|
payment_details: import("@medusajs/framework/utils").HasOne<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
@@ -68,7 +68,7 @@ declare const SellerModuleService_base: import("@medusajs/framework/utils").Medu
|
|
|
68
68
|
locale: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
69
69
|
is_active: import("@medusajs/framework/utils").BooleanProperty;
|
|
70
70
|
sellers: import("@medusajs/framework/utils").ManyToMany<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">>;
|
|
71
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
71
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
72
72
|
}>, "Member">>;
|
|
73
73
|
member_invites: import("@medusajs/framework/utils").HasMany<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
74
74
|
id: import("@medusajs/framework/utils").PrimaryKeyModifier<string, import("@medusajs/framework/utils").IdProperty>;
|
|
@@ -78,9 +78,9 @@ declare const SellerModuleService_base: import("@medusajs/framework/utils").Medu
|
|
|
78
78
|
expires_at: import("@medusajs/framework/utils").DateTimeProperty;
|
|
79
79
|
role_id: import("@medusajs/framework/utils").TextProperty;
|
|
80
80
|
seller: import("@medusajs/framework/utils").BelongsTo<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">, undefined>;
|
|
81
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
81
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
82
82
|
}>, "MemberInvite">>;
|
|
83
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
83
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
84
84
|
}>, "Seller">;
|
|
85
85
|
readonly ProfessionalDetails: import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
86
86
|
id: import("@medusajs/framework/utils").PrimaryKeyModifier<string, import("@medusajs/framework/utils").IdProperty>;
|
|
@@ -121,7 +121,7 @@ declare const SellerModuleService_base: import("@medusajs/framework/utils").Medu
|
|
|
121
121
|
province: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
122
122
|
postal_code: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
123
123
|
phone: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
124
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
124
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
125
125
|
seller: import("@medusajs/framework/utils").BelongsTo<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">, undefined>;
|
|
126
126
|
}>, "SellerAddress">>;
|
|
127
127
|
payment_details: import("@medusajs/framework/utils").HasOne<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
@@ -143,7 +143,7 @@ declare const SellerModuleService_base: import("@medusajs/framework/utils").Medu
|
|
|
143
143
|
locale: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
144
144
|
is_active: import("@medusajs/framework/utils").BooleanProperty;
|
|
145
145
|
sellers: import("@medusajs/framework/utils").ManyToMany<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">>;
|
|
146
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
146
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
147
147
|
}>, "Member">>;
|
|
148
148
|
member_invites: import("@medusajs/framework/utils").HasMany<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
149
149
|
id: import("@medusajs/framework/utils").PrimaryKeyModifier<string, import("@medusajs/framework/utils").IdProperty>;
|
|
@@ -153,9 +153,9 @@ declare const SellerModuleService_base: import("@medusajs/framework/utils").Medu
|
|
|
153
153
|
expires_at: import("@medusajs/framework/utils").DateTimeProperty;
|
|
154
154
|
role_id: import("@medusajs/framework/utils").TextProperty;
|
|
155
155
|
seller: import("@medusajs/framework/utils").BelongsTo<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">, undefined>;
|
|
156
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
156
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
157
157
|
}>, "MemberInvite">>;
|
|
158
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
158
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
159
159
|
}>, "Seller">, undefined>;
|
|
160
160
|
}>, "ProfessionalDetails">;
|
|
161
161
|
readonly SellerAddress: import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
@@ -171,7 +171,7 @@ declare const SellerModuleService_base: import("@medusajs/framework/utils").Medu
|
|
|
171
171
|
province: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
172
172
|
postal_code: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
173
173
|
phone: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
174
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
174
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
175
175
|
seller: import("@medusajs/framework/utils").BelongsTo<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
176
176
|
id: import("@medusajs/framework/utils").PrimaryKeyModifier<string, import("@medusajs/framework/utils").IdProperty>;
|
|
177
177
|
name: import("@medusajs/framework/utils").TextProperty;
|
|
@@ -219,7 +219,7 @@ declare const SellerModuleService_base: import("@medusajs/framework/utils").Medu
|
|
|
219
219
|
locale: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
220
220
|
is_active: import("@medusajs/framework/utils").BooleanProperty;
|
|
221
221
|
sellers: import("@medusajs/framework/utils").ManyToMany<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">>;
|
|
222
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
222
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
223
223
|
}>, "Member">>;
|
|
224
224
|
member_invites: import("@medusajs/framework/utils").HasMany<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
225
225
|
id: import("@medusajs/framework/utils").PrimaryKeyModifier<string, import("@medusajs/framework/utils").IdProperty>;
|
|
@@ -229,9 +229,9 @@ declare const SellerModuleService_base: import("@medusajs/framework/utils").Medu
|
|
|
229
229
|
expires_at: import("@medusajs/framework/utils").DateTimeProperty;
|
|
230
230
|
role_id: import("@medusajs/framework/utils").TextProperty;
|
|
231
231
|
seller: import("@medusajs/framework/utils").BelongsTo<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">, undefined>;
|
|
232
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
232
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
233
233
|
}>, "MemberInvite">>;
|
|
234
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
234
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
235
235
|
}>, "Seller">, undefined>;
|
|
236
236
|
}>, "SellerAddress">;
|
|
237
237
|
readonly PaymentDetails: import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
@@ -283,7 +283,7 @@ declare const SellerModuleService_base: import("@medusajs/framework/utils").Medu
|
|
|
283
283
|
province: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
284
284
|
postal_code: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
285
285
|
phone: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
286
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
286
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
287
287
|
seller: import("@medusajs/framework/utils").BelongsTo<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">, undefined>;
|
|
288
288
|
}>, "SellerAddress">>;
|
|
289
289
|
payment_details: import("@medusajs/framework/utils").HasOne<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "PaymentDetails">>;
|
|
@@ -295,7 +295,7 @@ declare const SellerModuleService_base: import("@medusajs/framework/utils").Medu
|
|
|
295
295
|
locale: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
296
296
|
is_active: import("@medusajs/framework/utils").BooleanProperty;
|
|
297
297
|
sellers: import("@medusajs/framework/utils").ManyToMany<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">>;
|
|
298
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
298
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
299
299
|
}>, "Member">>;
|
|
300
300
|
member_invites: import("@medusajs/framework/utils").HasMany<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
301
301
|
id: import("@medusajs/framework/utils").PrimaryKeyModifier<string, import("@medusajs/framework/utils").IdProperty>;
|
|
@@ -305,9 +305,9 @@ declare const SellerModuleService_base: import("@medusajs/framework/utils").Medu
|
|
|
305
305
|
expires_at: import("@medusajs/framework/utils").DateTimeProperty;
|
|
306
306
|
role_id: import("@medusajs/framework/utils").TextProperty;
|
|
307
307
|
seller: import("@medusajs/framework/utils").BelongsTo<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">, undefined>;
|
|
308
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
308
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
309
309
|
}>, "MemberInvite">>;
|
|
310
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
310
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
311
311
|
}>, "Seller">, undefined>;
|
|
312
312
|
}>, "PaymentDetails">;
|
|
313
313
|
readonly Member: import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
@@ -357,7 +357,7 @@ declare const SellerModuleService_base: import("@medusajs/framework/utils").Medu
|
|
|
357
357
|
province: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
358
358
|
postal_code: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
359
359
|
phone: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
360
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
360
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
361
361
|
seller: import("@medusajs/framework/utils").BelongsTo<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">, undefined>;
|
|
362
362
|
}>, "SellerAddress">>;
|
|
363
363
|
payment_details: import("@medusajs/framework/utils").HasOne<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
@@ -380,11 +380,11 @@ declare const SellerModuleService_base: import("@medusajs/framework/utils").Medu
|
|
|
380
380
|
expires_at: import("@medusajs/framework/utils").DateTimeProperty;
|
|
381
381
|
role_id: import("@medusajs/framework/utils").TextProperty;
|
|
382
382
|
seller: import("@medusajs/framework/utils").BelongsTo<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">, undefined>;
|
|
383
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
383
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
384
384
|
}>, "MemberInvite">>;
|
|
385
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
385
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
386
386
|
}>, "Seller">>;
|
|
387
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
387
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
388
388
|
}>, "Member">;
|
|
389
389
|
readonly SellerMember: import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
390
390
|
id: import("@medusajs/framework/utils").PrimaryKeyModifier<string, import("@medusajs/framework/utils").IdProperty>;
|
|
@@ -428,7 +428,7 @@ declare const SellerModuleService_base: import("@medusajs/framework/utils").Medu
|
|
|
428
428
|
province: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
429
429
|
postal_code: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
430
430
|
phone: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
431
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
431
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
432
432
|
seller: import("@medusajs/framework/utils").BelongsTo<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">, undefined>;
|
|
433
433
|
}>, "SellerAddress">>;
|
|
434
434
|
payment_details: import("@medusajs/framework/utils").HasOne<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
@@ -450,7 +450,7 @@ declare const SellerModuleService_base: import("@medusajs/framework/utils").Medu
|
|
|
450
450
|
locale: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
451
451
|
is_active: import("@medusajs/framework/utils").BooleanProperty;
|
|
452
452
|
sellers: import("@medusajs/framework/utils").ManyToMany<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">>;
|
|
453
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
453
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
454
454
|
}>, "Member">>;
|
|
455
455
|
member_invites: import("@medusajs/framework/utils").HasMany<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
456
456
|
id: import("@medusajs/framework/utils").PrimaryKeyModifier<string, import("@medusajs/framework/utils").IdProperty>;
|
|
@@ -460,9 +460,9 @@ declare const SellerModuleService_base: import("@medusajs/framework/utils").Medu
|
|
|
460
460
|
expires_at: import("@medusajs/framework/utils").DateTimeProperty;
|
|
461
461
|
role_id: import("@medusajs/framework/utils").TextProperty;
|
|
462
462
|
seller: import("@medusajs/framework/utils").BelongsTo<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">, undefined>;
|
|
463
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
463
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
464
464
|
}>, "MemberInvite">>;
|
|
465
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
465
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
466
466
|
}>, "Seller">, undefined>;
|
|
467
467
|
member: import("@medusajs/framework/utils").BelongsTo<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
468
468
|
id: import("@medusajs/framework/utils").PrimaryKeyModifier<string, import("@medusajs/framework/utils").IdProperty>;
|
|
@@ -511,7 +511,7 @@ declare const SellerModuleService_base: import("@medusajs/framework/utils").Medu
|
|
|
511
511
|
province: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
512
512
|
postal_code: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
513
513
|
phone: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
514
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
514
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
515
515
|
seller: import("@medusajs/framework/utils").BelongsTo<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">, undefined>;
|
|
516
516
|
}>, "SellerAddress">>;
|
|
517
517
|
payment_details: import("@medusajs/framework/utils").HasOne<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
@@ -534,15 +534,15 @@ declare const SellerModuleService_base: import("@medusajs/framework/utils").Medu
|
|
|
534
534
|
expires_at: import("@medusajs/framework/utils").DateTimeProperty;
|
|
535
535
|
role_id: import("@medusajs/framework/utils").TextProperty;
|
|
536
536
|
seller: import("@medusajs/framework/utils").BelongsTo<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">, undefined>;
|
|
537
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
537
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
538
538
|
}>, "MemberInvite">>;
|
|
539
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
539
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
540
540
|
}>, "Seller">>;
|
|
541
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
541
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
542
542
|
}>, "Member">, undefined>;
|
|
543
543
|
role_id: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
544
544
|
is_owner: import("@medusajs/framework/utils").BooleanProperty;
|
|
545
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
545
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
546
546
|
}>, "SellerMember">;
|
|
547
547
|
readonly MemberInvite: import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
548
548
|
id: import("@medusajs/framework/utils").PrimaryKeyModifier<string, import("@medusajs/framework/utils").IdProperty>;
|
|
@@ -591,7 +591,7 @@ declare const SellerModuleService_base: import("@medusajs/framework/utils").Medu
|
|
|
591
591
|
province: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
592
592
|
postal_code: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
593
593
|
phone: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
594
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
594
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
595
595
|
seller: import("@medusajs/framework/utils").BelongsTo<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">, undefined>;
|
|
596
596
|
}>, "SellerAddress">>;
|
|
597
597
|
payment_details: import("@medusajs/framework/utils").HasOne<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
@@ -613,12 +613,12 @@ declare const SellerModuleService_base: import("@medusajs/framework/utils").Medu
|
|
|
613
613
|
locale: import("@medusajs/framework/utils").NullableModifier<string, import("@medusajs/framework/utils").TextProperty>;
|
|
614
614
|
is_active: import("@medusajs/framework/utils").BooleanProperty;
|
|
615
615
|
sellers: import("@medusajs/framework/utils").ManyToMany<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "Seller">>;
|
|
616
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
616
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
617
617
|
}>, "Member">>;
|
|
618
618
|
member_invites: import("@medusajs/framework/utils").HasMany<() => import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder</*elided*/ any>, "MemberInvite">>;
|
|
619
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
619
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
620
620
|
}>, "Seller">, undefined>;
|
|
621
|
-
metadata: import("@medusajs/framework/utils").NullableModifier<Record<string, unknown
|
|
621
|
+
metadata: import("@medusajs/framework/utils").NullableModifier<NoInfer<Record<string, unknown>>, import("@medusajs/framework/utils").JSONProperty<NoInfer<Record<string, unknown>>>>;
|
|
622
622
|
}>, "MemberInvite">;
|
|
623
623
|
readonly OrderGroup: import("@medusajs/framework/utils").DmlEntity<import("@medusajs/framework/utils").DMLEntitySchemaBuilder<{
|
|
624
624
|
id: import("@medusajs/framework/utils").PrimaryKeyModifier<string, import("@medusajs/framework/utils").IdProperty>;
|
|
@@ -5,8 +5,8 @@ exports.PATCHES = [
|
|
|
5
5
|
{
|
|
6
6
|
file: "@medusajs+core-flows@2.18.0.patch",
|
|
7
7
|
package: "@medusajs/core-flows",
|
|
8
|
-
// Both targeted files are byte-identical
|
|
9
|
-
compatible: { from: "2.17.0", to: "2.
|
|
8
|
+
// Both targeted files are byte-identical from 2.17.2 through 2.20.1.
|
|
9
|
+
compatible: { from: "2.17.0", to: "2.21.0" },
|
|
10
10
|
reason: "refreshCartShippingMethodsWorkflow deletes any shipping method whose " +
|
|
11
11
|
"profile is not required by a cart item, deriving that set from each " +
|
|
12
12
|
"item's master product. In Mercur the profile belongs to the offer — the " +
|
|
@@ -16,4 +16,4 @@ exports.PATCHES = [
|
|
|
16
16
|
"See mercurjs/mercur#1442.",
|
|
17
17
|
},
|
|
18
18
|
];
|
|
19
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFuaWZlc3QuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvcGF0Y2hlcy9tYW5pZmVzdC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFjYSxRQUFBLE9BQU8sR0FBaUI7SUFDbkM7UUFDRSxJQUFJLEVBQUUsbUNBQW1DO1FBQ3pDLE9BQU8sRUFBRSxzQkFBc0I7UUFDL0IscUVBQXFFO1FBQ3JFLFVBQVUsRUFBRSxFQUFFLElBQUksRUFBRSxRQUFRLEVBQUUsRUFBRSxFQUFFLFFBQVEsRUFBRTtRQUM1QyxNQUFNLEVBQ0osdUVBQXVFO1lBQ3ZFLHNFQUFzRTtZQUN0RSwwRUFBMEU7WUFDMUUscUVBQXFFO1lBQ3JFLDBFQUEwRTtZQUMxRSwwRUFBMEU7WUFDMUUsMkJBQTJCO0tBQzlCO0NBQ0YsQ0FBQSJ9
|
|
@@ -13,7 +13,7 @@ export declare const createImagesStep: import("@medusajs/framework/workflows-sdk
|
|
|
13
13
|
is_thumbnail: boolean;
|
|
14
14
|
is_banner: boolean;
|
|
15
15
|
rank: number;
|
|
16
|
-
metadata: Record<string, unknown
|
|
16
|
+
metadata: NoInfer<Record<string, unknown>> | null;
|
|
17
17
|
created_at: Date;
|
|
18
18
|
updated_at: Date;
|
|
19
19
|
deleted_at: Date | null;
|
|
@@ -13,7 +13,7 @@ export declare const createOffersStep: import("@medusajs/framework/workflows-sdk
|
|
|
13
13
|
allow_backorder: boolean;
|
|
14
14
|
created_by: string;
|
|
15
15
|
variant_count: number | null;
|
|
16
|
-
metadata: Record<string, unknown
|
|
16
|
+
metadata: NoInfer<Record<string, unknown>> | null;
|
|
17
17
|
created_at: Date;
|
|
18
18
|
updated_at: Date;
|
|
19
19
|
deleted_at: Date | null;
|
|
@@ -19,7 +19,7 @@ export declare const updateOffersStep: import("@medusajs/framework/workflows-sdk
|
|
|
19
19
|
allow_backorder: boolean;
|
|
20
20
|
created_by: string;
|
|
21
21
|
variant_count: number | null;
|
|
22
|
-
metadata: Record<string, unknown
|
|
22
|
+
metadata: NoInfer<Record<string, unknown>> | null;
|
|
23
23
|
created_at: Date;
|
|
24
24
|
updated_at: Date;
|
|
25
25
|
deleted_at: Date | null;
|
|
@@ -3,12 +3,12 @@ export declare const updatePayoutAccountStepId = "update-payout-account-step";
|
|
|
3
3
|
export declare const updatePayoutAccountStep: import("@medusajs/framework/workflows-sdk").StepFunction<UpdatePayoutAccountDTO, {
|
|
4
4
|
id: string;
|
|
5
5
|
status: import("@mercurjs/types").PayoutAccountStatus;
|
|
6
|
-
data: Record<string, unknown
|
|
7
|
-
context: Record<string, unknown
|
|
6
|
+
data: NoInfer<Record<string, unknown>>;
|
|
7
|
+
context: NoInfer<Record<string, unknown>> | null;
|
|
8
8
|
onboarding: {
|
|
9
9
|
id: string;
|
|
10
|
-
data: Record<string, unknown
|
|
11
|
-
context: Record<string, unknown
|
|
10
|
+
data: NoInfer<Record<string, unknown>> | null;
|
|
11
|
+
context: NoInfer<Record<string, unknown>> | null;
|
|
12
12
|
account: /*elided*/ any;
|
|
13
13
|
created_at: Date;
|
|
14
14
|
updated_at: Date;
|
|
@@ -20,7 +20,7 @@ export declare const updatePayoutAccountStep: import("@medusajs/framework/workfl
|
|
|
20
20
|
display_id: number;
|
|
21
21
|
currency_code: string;
|
|
22
22
|
amount: number;
|
|
23
|
-
data: Record<string, unknown
|
|
23
|
+
data: NoInfer<Record<string, unknown>> | null;
|
|
24
24
|
account: /*elided*/ any;
|
|
25
25
|
status: import("@mercurjs/types").PayoutStatus;
|
|
26
26
|
raw_amount: Record<string, unknown>;
|
|
@@ -5,16 +5,16 @@ export declare const updatePayoutStep: import("@medusajs/framework/workflows-sdk
|
|
|
5
5
|
display_id: number;
|
|
6
6
|
currency_code: string;
|
|
7
7
|
amount: number;
|
|
8
|
-
data: Record<string, unknown
|
|
8
|
+
data: NoInfer<Record<string, unknown>> | null;
|
|
9
9
|
account: {
|
|
10
10
|
id: string;
|
|
11
11
|
status: import("@mercurjs/types").PayoutAccountStatus;
|
|
12
|
-
data: Record<string, unknown
|
|
13
|
-
context: Record<string, unknown
|
|
12
|
+
data: NoInfer<Record<string, unknown>>;
|
|
13
|
+
context: NoInfer<Record<string, unknown>> | null;
|
|
14
14
|
onboarding: {
|
|
15
15
|
id: string;
|
|
16
|
-
data: Record<string, unknown
|
|
17
|
-
context: Record<string, unknown
|
|
16
|
+
data: NoInfer<Record<string, unknown>> | null;
|
|
17
|
+
context: NoInfer<Record<string, unknown>> | null;
|
|
18
18
|
account: /*elided*/ any;
|
|
19
19
|
created_at: Date;
|
|
20
20
|
updated_at: Date;
|
package/.medusa/server/src/workflows/product-attribute/steps/update-product-attribute-values.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ export declare const updateProductAttributeValuesStep: import("@medusajs/framewo
|
|
|
12
12
|
name: string;
|
|
13
13
|
rank: number;
|
|
14
14
|
is_active: boolean;
|
|
15
|
-
metadata: Record<string, unknown
|
|
15
|
+
metadata: NoInfer<Record<string, unknown>> | null;
|
|
16
16
|
product_option_value_id: string | null;
|
|
17
17
|
attribute: {
|
|
18
18
|
id: string;
|
|
@@ -28,7 +28,7 @@ export declare const updateProductAttributeValuesStep: import("@medusajs/framewo
|
|
|
28
28
|
created_by: string | null;
|
|
29
29
|
product_id: string | null;
|
|
30
30
|
product_option_id: string | null;
|
|
31
|
-
metadata: Record<string, unknown
|
|
31
|
+
metadata: NoInfer<Record<string, unknown>> | null;
|
|
32
32
|
values: /*elided*/ any[];
|
|
33
33
|
created_at: Date;
|
|
34
34
|
updated_at: Date;
|