@lssm/example.marketplace 0.0.0-canary-20251220002821 → 0.0.0-canary-20251220015515

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.
Files changed (35) hide show
  1. package/dist/entities/index.d.ts +296 -296
  2. package/dist/entities/index.d.ts.map +1 -1
  3. package/dist/entities/order.d.ts +78 -78
  4. package/dist/entities/payout.d.ts +65 -65
  5. package/dist/entities/product.d.ts +70 -70
  6. package/dist/entities/review.d.ts +56 -56
  7. package/dist/entities/store.d.ts +41 -41
  8. package/dist/libs/contracts/dist/ownership.js +1 -0
  9. package/dist/libs/contracts/dist/ownership.js.map +1 -1
  10. package/dist/order/order.contracts.d.ts +90 -90
  11. package/dist/order/order.enum.d.ts +2 -2
  12. package/dist/order/order.event.d.ts +39 -39
  13. package/dist/order/order.event.d.ts.map +1 -1
  14. package/dist/order/order.schema.d.ts +39 -39
  15. package/dist/order/order.schema.d.ts.map +1 -1
  16. package/dist/payout/payout.contracts.d.ts +24 -24
  17. package/dist/payout/payout.enum.d.ts +2 -2
  18. package/dist/payout/payout.schema.d.ts +37 -37
  19. package/dist/payout/payout.schema.d.ts.map +1 -1
  20. package/dist/product/product.contracts.d.ts +67 -67
  21. package/dist/product/product.contracts.d.ts.map +1 -1
  22. package/dist/product/product.enum.d.ts +2 -2
  23. package/dist/product/product.event.d.ts +20 -20
  24. package/dist/product/product.event.d.ts.map +1 -1
  25. package/dist/product/product.schema.d.ts +52 -52
  26. package/dist/product/product.schema.d.ts.map +1 -1
  27. package/dist/review/review.contracts.d.ts +59 -59
  28. package/dist/review/review.contracts.d.ts.map +1 -1
  29. package/dist/review/review.enum.d.ts +2 -2
  30. package/dist/review/review.schema.d.ts +45 -45
  31. package/dist/store/store.contracts.d.ts +33 -33
  32. package/dist/store/store.enum.d.ts +2 -2
  33. package/dist/store/store.event.d.ts +14 -14
  34. package/dist/store/store.event.d.ts.map +1 -1
  35. package/package.json +12 -12
@@ -1,59 +1,59 @@
1
- import * as _lssm_lib_schema696 from "@lssm/lib.schema";
1
+ import * as _lssm_lib_schema758 from "@lssm/lib.schema";
2
2
 
3
3
  //#region src/entities/store.d.ts
4
4
  /**
5
5
  * Store status enum.
6
6
  */
7
- declare const StoreStatusEnum: _lssm_lib_schema696.EntityEnumDef;
7
+ declare const StoreStatusEnum: _lssm_lib_schema758.EntityEnumDef;
8
8
  /**
9
9
  * Store type enum.
10
10
  */
11
- declare const StoreTypeEnum: _lssm_lib_schema696.EntityEnumDef;
11
+ declare const StoreTypeEnum: _lssm_lib_schema758.EntityEnumDef;
12
12
  /**
13
13
  * Store entity - a seller's storefront on the marketplace.
14
14
  */
15
- declare const StoreEntity: _lssm_lib_schema696.EntitySpec<{
16
- id: _lssm_lib_schema696.EntityScalarField;
17
- name: _lssm_lib_schema696.EntityScalarField;
18
- slug: _lssm_lib_schema696.EntityScalarField;
19
- description: _lssm_lib_schema696.EntityScalarField;
20
- status: _lssm_lib_schema696.EntityEnumField;
21
- type: _lssm_lib_schema696.EntityEnumField;
22
- ownerId: _lssm_lib_schema696.EntityScalarField;
23
- organizationId: _lssm_lib_schema696.EntityScalarField;
24
- logoFileId: _lssm_lib_schema696.EntityScalarField;
25
- bannerFileId: _lssm_lib_schema696.EntityScalarField;
26
- email: _lssm_lib_schema696.EntityScalarField;
27
- phone: _lssm_lib_schema696.EntityScalarField;
28
- website: _lssm_lib_schema696.EntityScalarField;
29
- country: _lssm_lib_schema696.EntityScalarField;
30
- currency: _lssm_lib_schema696.EntityScalarField;
31
- timezone: _lssm_lib_schema696.EntityScalarField;
32
- commissionRate: _lssm_lib_schema696.EntityScalarField;
33
- isVerified: _lssm_lib_schema696.EntityScalarField;
34
- verifiedAt: _lssm_lib_schema696.EntityScalarField;
35
- settings: _lssm_lib_schema696.EntityScalarField;
36
- metadata: _lssm_lib_schema696.EntityScalarField;
37
- totalProducts: _lssm_lib_schema696.EntityScalarField;
38
- totalOrders: _lssm_lib_schema696.EntityScalarField;
39
- totalRevenue: _lssm_lib_schema696.EntityScalarField;
40
- averageRating: _lssm_lib_schema696.EntityScalarField;
41
- createdAt: _lssm_lib_schema696.EntityScalarField;
42
- updatedAt: _lssm_lib_schema696.EntityScalarField;
43
- products: _lssm_lib_schema696.EntityRelationField;
44
- orders: _lssm_lib_schema696.EntityRelationField;
45
- payouts: _lssm_lib_schema696.EntityRelationField;
15
+ declare const StoreEntity: _lssm_lib_schema758.EntitySpec<{
16
+ id: _lssm_lib_schema758.EntityScalarField;
17
+ name: _lssm_lib_schema758.EntityScalarField;
18
+ slug: _lssm_lib_schema758.EntityScalarField;
19
+ description: _lssm_lib_schema758.EntityScalarField;
20
+ status: _lssm_lib_schema758.EntityEnumField;
21
+ type: _lssm_lib_schema758.EntityEnumField;
22
+ ownerId: _lssm_lib_schema758.EntityScalarField;
23
+ organizationId: _lssm_lib_schema758.EntityScalarField;
24
+ logoFileId: _lssm_lib_schema758.EntityScalarField;
25
+ bannerFileId: _lssm_lib_schema758.EntityScalarField;
26
+ email: _lssm_lib_schema758.EntityScalarField;
27
+ phone: _lssm_lib_schema758.EntityScalarField;
28
+ website: _lssm_lib_schema758.EntityScalarField;
29
+ country: _lssm_lib_schema758.EntityScalarField;
30
+ currency: _lssm_lib_schema758.EntityScalarField;
31
+ timezone: _lssm_lib_schema758.EntityScalarField;
32
+ commissionRate: _lssm_lib_schema758.EntityScalarField;
33
+ isVerified: _lssm_lib_schema758.EntityScalarField;
34
+ verifiedAt: _lssm_lib_schema758.EntityScalarField;
35
+ settings: _lssm_lib_schema758.EntityScalarField;
36
+ metadata: _lssm_lib_schema758.EntityScalarField;
37
+ totalProducts: _lssm_lib_schema758.EntityScalarField;
38
+ totalOrders: _lssm_lib_schema758.EntityScalarField;
39
+ totalRevenue: _lssm_lib_schema758.EntityScalarField;
40
+ averageRating: _lssm_lib_schema758.EntityScalarField;
41
+ createdAt: _lssm_lib_schema758.EntityScalarField;
42
+ updatedAt: _lssm_lib_schema758.EntityScalarField;
43
+ products: _lssm_lib_schema758.EntityRelationField;
44
+ orders: _lssm_lib_schema758.EntityRelationField;
45
+ payouts: _lssm_lib_schema758.EntityRelationField;
46
46
  }>;
47
47
  /**
48
48
  * Store category entity - categorization for stores.
49
49
  */
50
- declare const StoreCategoryEntity: _lssm_lib_schema696.EntitySpec<{
51
- id: _lssm_lib_schema696.EntityScalarField;
52
- storeId: _lssm_lib_schema696.EntityScalarField;
53
- categoryId: _lssm_lib_schema696.EntityScalarField;
54
- isPrimary: _lssm_lib_schema696.EntityScalarField;
55
- createdAt: _lssm_lib_schema696.EntityScalarField;
56
- store: _lssm_lib_schema696.EntityRelationField;
50
+ declare const StoreCategoryEntity: _lssm_lib_schema758.EntitySpec<{
51
+ id: _lssm_lib_schema758.EntityScalarField;
52
+ storeId: _lssm_lib_schema758.EntityScalarField;
53
+ categoryId: _lssm_lib_schema758.EntityScalarField;
54
+ isPrimary: _lssm_lib_schema758.EntityScalarField;
55
+ createdAt: _lssm_lib_schema758.EntityScalarField;
56
+ store: _lssm_lib_schema758.EntityRelationField;
57
57
  }>;
58
58
  //#endregion
59
59
  export { StoreCategoryEntity, StoreEntity, StoreStatusEnum, StoreTypeEnum };
@@ -13,6 +13,7 @@ const OwnersEnum = {
13
13
  ProductArtisanos: "product.artisanos",
14
14
  PlatformSigil: "platform.sigil",
15
15
  PlatformMarketplace: "platform.marketplace",
16
+ PlatformMessaging: "platform.messaging",
16
17
  PlatformContent: "platform.content",
17
18
  PlatformFeatureFlags: "platform.featureflags",
18
19
  PlatformFinance: "platform.finance"
@@ -1 +1 @@
1
- {"version":3,"file":"ownership.js","names":[],"sources":["../../../../../../libs/contracts/dist/ownership.js"],"sourcesContent":["//#region src/ownership.ts\nconst StabilityEnum = {\n\tIdea: \"idea\",\n\tInCreation: \"in_creation\",\n\tExperimental: \"experimental\",\n\tBeta: \"beta\",\n\tStable: \"stable\",\n\tDeprecated: \"deprecated\"\n};\nconst OwnersEnum = {\n\tProductColiving: \"product.coliving\",\n\tProductStrit: \"product.strit\",\n\tProductArtisanos: \"product.artisanos\",\n\tPlatformSigil: \"platform.sigil\",\n\tPlatformMarketplace: \"platform.marketplace\",\n\tPlatformContent: \"platform.content\",\n\tPlatformFeatureFlags: \"platform.featureflags\",\n\tPlatformFinance: \"platform.finance\"\n};\nconst Owners = OwnersEnum;\nconst TagsEnum = {\n\tSpots: \"spots\",\n\tCollectivity: \"collectivity\",\n\tMarketplace: \"marketplace\",\n\tSellers: \"sellers\",\n\tAuth: \"auth\",\n\tLogin: \"login\",\n\tSignup: \"signup\",\n\tGuide: \"guide\",\n\tDocs: \"docs\",\n\tI18n: \"i18n\",\n\tIncident: \"incident\",\n\tAutomation: \"automation\",\n\tHygiene: \"hygiene\"\n};\nconst Tags = TagsEnum;\n\n//#endregion\nexport { Owners, OwnersEnum, StabilityEnum, Tags, TagsEnum };"],"mappings":";AACA,MAAM,gBAAgB;CACrB,MAAM;CACN,YAAY;CACZ,cAAc;CACd,MAAM;CACN,QAAQ;CACR,YAAY;CACZ;AACD,MAAM,aAAa;CAClB,iBAAiB;CACjB,cAAc;CACd,kBAAkB;CAClB,eAAe;CACf,qBAAqB;CACrB,iBAAiB;CACjB,sBAAsB;CACtB,iBAAiB;CACjB"}
1
+ {"version":3,"file":"ownership.js","names":[],"sources":["../../../../../../libs/contracts/dist/ownership.js"],"sourcesContent":["//#region src/ownership.ts\nconst StabilityEnum = {\n\tIdea: \"idea\",\n\tInCreation: \"in_creation\",\n\tExperimental: \"experimental\",\n\tBeta: \"beta\",\n\tStable: \"stable\",\n\tDeprecated: \"deprecated\"\n};\nconst OwnersEnum = {\n\tProductColiving: \"product.coliving\",\n\tProductStrit: \"product.strit\",\n\tProductArtisanos: \"product.artisanos\",\n\tPlatformSigil: \"platform.sigil\",\n\tPlatformMarketplace: \"platform.marketplace\",\n\tPlatformMessaging: \"platform.messaging\",\n\tPlatformContent: \"platform.content\",\n\tPlatformFeatureFlags: \"platform.featureflags\",\n\tPlatformFinance: \"platform.finance\"\n};\nconst Owners = OwnersEnum;\nconst TagsEnum = {\n\tSpots: \"spots\",\n\tCollectivity: \"collectivity\",\n\tMarketplace: \"marketplace\",\n\tSellers: \"sellers\",\n\tAuth: \"auth\",\n\tLogin: \"login\",\n\tSignup: \"signup\",\n\tGuide: \"guide\",\n\tDocs: \"docs\",\n\tI18n: \"i18n\",\n\tIncident: \"incident\",\n\tAutomation: \"automation\",\n\tHygiene: \"hygiene\"\n};\nconst Tags = TagsEnum;\n\n//#endregion\nexport { Owners, OwnersEnum, StabilityEnum, Tags, TagsEnum };"],"mappings":";AACA,MAAM,gBAAgB;CACrB,MAAM;CACN,YAAY;CACZ,cAAc;CACd,MAAM;CACN,QAAQ;CACR,YAAY;CACZ;AACD,MAAM,aAAa;CAClB,iBAAiB;CACjB,cAAc;CACd,kBAAkB;CAClB,eAAe;CACf,qBAAqB;CACrB,mBAAmB;CACnB,iBAAiB;CACjB,sBAAsB;CACtB,iBAAiB;CACjB"}
@@ -1,97 +1,97 @@
1
- import * as _lssm_lib_schema780 from "@lssm/lib.schema";
2
- import * as _lssm_lib_contracts3 from "@lssm/lib.contracts";
1
+ import * as _lssm_lib_schema830 from "@lssm/lib.schema";
2
+ import * as _lssm_lib_contracts7 from "@lssm/lib.contracts";
3
3
 
4
4
  //#region src/order/order.contracts.d.ts
5
5
  /**
6
6
  * Create a new order.
7
7
  */
8
- declare const CreateOrderContract: _lssm_lib_contracts3.ContractSpec<_lssm_lib_schema780.SchemaModel<{
8
+ declare const CreateOrderContract: _lssm_lib_contracts7.ContractSpec<_lssm_lib_schema830.SchemaModel<{
9
9
  storeId: {
10
- type: _lssm_lib_schema780.FieldType<string, string>;
10
+ type: _lssm_lib_schema830.FieldType<string, string>;
11
11
  isOptional: false;
12
12
  };
13
13
  items: {
14
- type: _lssm_lib_schema780.FieldType<unknown, unknown>;
14
+ type: _lssm_lib_schema830.FieldType<unknown, unknown>;
15
15
  isOptional: false;
16
16
  description: string;
17
17
  };
18
18
  shippingAddress: {
19
- type: _lssm_lib_schema780.FieldType<unknown, unknown>;
19
+ type: _lssm_lib_schema830.FieldType<unknown, unknown>;
20
20
  isOptional: true;
21
21
  };
22
22
  billingAddress: {
23
- type: _lssm_lib_schema780.FieldType<unknown, unknown>;
23
+ type: _lssm_lib_schema830.FieldType<unknown, unknown>;
24
24
  isOptional: true;
25
25
  };
26
26
  buyerNote: {
27
- type: _lssm_lib_schema780.FieldType<string, string>;
27
+ type: _lssm_lib_schema830.FieldType<string, string>;
28
28
  isOptional: true;
29
29
  };
30
- }>, _lssm_lib_schema780.SchemaModel<{
30
+ }>, _lssm_lib_schema830.SchemaModel<{
31
31
  id: {
32
- type: _lssm_lib_schema780.FieldType<string, string>;
32
+ type: _lssm_lib_schema830.FieldType<string, string>;
33
33
  isOptional: false;
34
34
  };
35
35
  orderNumber: {
36
- type: _lssm_lib_schema780.FieldType<string, string>;
36
+ type: _lssm_lib_schema830.FieldType<string, string>;
37
37
  isOptional: false;
38
38
  };
39
39
  buyerId: {
40
- type: _lssm_lib_schema780.FieldType<string, string>;
40
+ type: _lssm_lib_schema830.FieldType<string, string>;
41
41
  isOptional: false;
42
42
  };
43
43
  storeId: {
44
- type: _lssm_lib_schema780.FieldType<string, string>;
44
+ type: _lssm_lib_schema830.FieldType<string, string>;
45
45
  isOptional: false;
46
46
  };
47
47
  status: {
48
- type: _lssm_lib_schema780.EnumType<[string, string, string, string, string, string, string, string, string, string]>;
48
+ type: _lssm_lib_schema830.EnumType<[string, string, string, string, string, string, string, string, string, string]>;
49
49
  isOptional: false;
50
50
  };
51
51
  subtotal: {
52
- type: _lssm_lib_schema780.FieldType<number, number>;
52
+ type: _lssm_lib_schema830.FieldType<number, number>;
53
53
  isOptional: false;
54
54
  };
55
55
  shippingTotal: {
56
- type: _lssm_lib_schema780.FieldType<number, number>;
56
+ type: _lssm_lib_schema830.FieldType<number, number>;
57
57
  isOptional: false;
58
58
  };
59
59
  taxTotal: {
60
- type: _lssm_lib_schema780.FieldType<number, number>;
60
+ type: _lssm_lib_schema830.FieldType<number, number>;
61
61
  isOptional: false;
62
62
  };
63
63
  total: {
64
- type: _lssm_lib_schema780.FieldType<number, number>;
64
+ type: _lssm_lib_schema830.FieldType<number, number>;
65
65
  isOptional: false;
66
66
  };
67
67
  currency: {
68
- type: _lssm_lib_schema780.FieldType<string, string>;
68
+ type: _lssm_lib_schema830.FieldType<string, string>;
69
69
  isOptional: false;
70
70
  };
71
71
  items: {
72
- type: _lssm_lib_schema780.SchemaModel<{
72
+ type: _lssm_lib_schema830.SchemaModel<{
73
73
  id: {
74
- type: _lssm_lib_schema780.FieldType<string, string>;
74
+ type: _lssm_lib_schema830.FieldType<string, string>;
75
75
  isOptional: false;
76
76
  };
77
77
  productId: {
78
- type: _lssm_lib_schema780.FieldType<string, string>;
78
+ type: _lssm_lib_schema830.FieldType<string, string>;
79
79
  isOptional: false;
80
80
  };
81
81
  productName: {
82
- type: _lssm_lib_schema780.FieldType<string, string>;
82
+ type: _lssm_lib_schema830.FieldType<string, string>;
83
83
  isOptional: false;
84
84
  };
85
85
  unitPrice: {
86
- type: _lssm_lib_schema780.FieldType<number, number>;
86
+ type: _lssm_lib_schema830.FieldType<number, number>;
87
87
  isOptional: false;
88
88
  };
89
89
  quantity: {
90
- type: _lssm_lib_schema780.FieldType<number, number>;
90
+ type: _lssm_lib_schema830.FieldType<number, number>;
91
91
  isOptional: false;
92
92
  };
93
93
  subtotal: {
94
- type: _lssm_lib_schema780.FieldType<number, number>;
94
+ type: _lssm_lib_schema830.FieldType<number, number>;
95
95
  isOptional: false;
96
96
  };
97
97
  }>;
@@ -99,78 +99,78 @@ declare const CreateOrderContract: _lssm_lib_contracts3.ContractSpec<_lssm_lib_s
99
99
  isOptional: true;
100
100
  };
101
101
  createdAt: {
102
- type: _lssm_lib_schema780.FieldType<Date, string>;
102
+ type: _lssm_lib_schema830.FieldType<Date, string>;
103
103
  isOptional: false;
104
104
  };
105
105
  }>, {
106
106
  name: string;
107
107
  version: number;
108
108
  when: string;
109
- payload: _lssm_lib_schema780.SchemaModel<{
109
+ payload: _lssm_lib_schema830.SchemaModel<{
110
110
  id: {
111
- type: _lssm_lib_schema780.FieldType<string, string>;
111
+ type: _lssm_lib_schema830.FieldType<string, string>;
112
112
  isOptional: false;
113
113
  };
114
114
  orderNumber: {
115
- type: _lssm_lib_schema780.FieldType<string, string>;
115
+ type: _lssm_lib_schema830.FieldType<string, string>;
116
116
  isOptional: false;
117
117
  };
118
118
  buyerId: {
119
- type: _lssm_lib_schema780.FieldType<string, string>;
119
+ type: _lssm_lib_schema830.FieldType<string, string>;
120
120
  isOptional: false;
121
121
  };
122
122
  storeId: {
123
- type: _lssm_lib_schema780.FieldType<string, string>;
123
+ type: _lssm_lib_schema830.FieldType<string, string>;
124
124
  isOptional: false;
125
125
  };
126
126
  status: {
127
- type: _lssm_lib_schema780.EnumType<[string, string, string, string, string, string, string, string, string, string]>;
127
+ type: _lssm_lib_schema830.EnumType<[string, string, string, string, string, string, string, string, string, string]>;
128
128
  isOptional: false;
129
129
  };
130
130
  subtotal: {
131
- type: _lssm_lib_schema780.FieldType<number, number>;
131
+ type: _lssm_lib_schema830.FieldType<number, number>;
132
132
  isOptional: false;
133
133
  };
134
134
  shippingTotal: {
135
- type: _lssm_lib_schema780.FieldType<number, number>;
135
+ type: _lssm_lib_schema830.FieldType<number, number>;
136
136
  isOptional: false;
137
137
  };
138
138
  taxTotal: {
139
- type: _lssm_lib_schema780.FieldType<number, number>;
139
+ type: _lssm_lib_schema830.FieldType<number, number>;
140
140
  isOptional: false;
141
141
  };
142
142
  total: {
143
- type: _lssm_lib_schema780.FieldType<number, number>;
143
+ type: _lssm_lib_schema830.FieldType<number, number>;
144
144
  isOptional: false;
145
145
  };
146
146
  currency: {
147
- type: _lssm_lib_schema780.FieldType<string, string>;
147
+ type: _lssm_lib_schema830.FieldType<string, string>;
148
148
  isOptional: false;
149
149
  };
150
150
  items: {
151
- type: _lssm_lib_schema780.SchemaModel<{
151
+ type: _lssm_lib_schema830.SchemaModel<{
152
152
  id: {
153
- type: _lssm_lib_schema780.FieldType<string, string>;
153
+ type: _lssm_lib_schema830.FieldType<string, string>;
154
154
  isOptional: false;
155
155
  };
156
156
  productId: {
157
- type: _lssm_lib_schema780.FieldType<string, string>;
157
+ type: _lssm_lib_schema830.FieldType<string, string>;
158
158
  isOptional: false;
159
159
  };
160
160
  productName: {
161
- type: _lssm_lib_schema780.FieldType<string, string>;
161
+ type: _lssm_lib_schema830.FieldType<string, string>;
162
162
  isOptional: false;
163
163
  };
164
164
  unitPrice: {
165
- type: _lssm_lib_schema780.FieldType<number, number>;
165
+ type: _lssm_lib_schema830.FieldType<number, number>;
166
166
  isOptional: false;
167
167
  };
168
168
  quantity: {
169
- type: _lssm_lib_schema780.FieldType<number, number>;
169
+ type: _lssm_lib_schema830.FieldType<number, number>;
170
170
  isOptional: false;
171
171
  };
172
172
  subtotal: {
173
- type: _lssm_lib_schema780.FieldType<number, number>;
173
+ type: _lssm_lib_schema830.FieldType<number, number>;
174
174
  isOptional: false;
175
175
  };
176
176
  }>;
@@ -178,7 +178,7 @@ declare const CreateOrderContract: _lssm_lib_contracts3.ContractSpec<_lssm_lib_s
178
178
  isOptional: true;
179
179
  };
180
180
  createdAt: {
181
- type: _lssm_lib_schema780.FieldType<Date, string>;
181
+ type: _lssm_lib_schema830.FieldType<Date, string>;
182
182
  isOptional: false;
183
183
  };
184
184
  }>;
@@ -186,92 +186,92 @@ declare const CreateOrderContract: _lssm_lib_contracts3.ContractSpec<_lssm_lib_s
186
186
  /**
187
187
  * Update order status.
188
188
  */
189
- declare const UpdateOrderStatusContract: _lssm_lib_contracts3.ContractSpec<_lssm_lib_schema780.SchemaModel<{
189
+ declare const UpdateOrderStatusContract: _lssm_lib_contracts7.ContractSpec<_lssm_lib_schema830.SchemaModel<{
190
190
  orderId: {
191
- type: _lssm_lib_schema780.FieldType<string, string>;
191
+ type: _lssm_lib_schema830.FieldType<string, string>;
192
192
  isOptional: false;
193
193
  };
194
194
  status: {
195
- type: _lssm_lib_schema780.EnumType<[string, string, string, string, string, string, string, string, string, string]>;
195
+ type: _lssm_lib_schema830.EnumType<[string, string, string, string, string, string, string, string, string, string]>;
196
196
  isOptional: false;
197
197
  };
198
198
  trackingNumber: {
199
- type: _lssm_lib_schema780.FieldType<string, string>;
199
+ type: _lssm_lib_schema830.FieldType<string, string>;
200
200
  isOptional: true;
201
201
  };
202
202
  trackingUrl: {
203
- type: _lssm_lib_schema780.FieldType<string, string>;
203
+ type: _lssm_lib_schema830.FieldType<string, string>;
204
204
  isOptional: true;
205
205
  };
206
206
  note: {
207
- type: _lssm_lib_schema780.FieldType<string, string>;
207
+ type: _lssm_lib_schema830.FieldType<string, string>;
208
208
  isOptional: true;
209
209
  };
210
- }>, _lssm_lib_schema780.SchemaModel<{
210
+ }>, _lssm_lib_schema830.SchemaModel<{
211
211
  id: {
212
- type: _lssm_lib_schema780.FieldType<string, string>;
212
+ type: _lssm_lib_schema830.FieldType<string, string>;
213
213
  isOptional: false;
214
214
  };
215
215
  orderNumber: {
216
- type: _lssm_lib_schema780.FieldType<string, string>;
216
+ type: _lssm_lib_schema830.FieldType<string, string>;
217
217
  isOptional: false;
218
218
  };
219
219
  buyerId: {
220
- type: _lssm_lib_schema780.FieldType<string, string>;
220
+ type: _lssm_lib_schema830.FieldType<string, string>;
221
221
  isOptional: false;
222
222
  };
223
223
  storeId: {
224
- type: _lssm_lib_schema780.FieldType<string, string>;
224
+ type: _lssm_lib_schema830.FieldType<string, string>;
225
225
  isOptional: false;
226
226
  };
227
227
  status: {
228
- type: _lssm_lib_schema780.EnumType<[string, string, string, string, string, string, string, string, string, string]>;
228
+ type: _lssm_lib_schema830.EnumType<[string, string, string, string, string, string, string, string, string, string]>;
229
229
  isOptional: false;
230
230
  };
231
231
  subtotal: {
232
- type: _lssm_lib_schema780.FieldType<number, number>;
232
+ type: _lssm_lib_schema830.FieldType<number, number>;
233
233
  isOptional: false;
234
234
  };
235
235
  shippingTotal: {
236
- type: _lssm_lib_schema780.FieldType<number, number>;
236
+ type: _lssm_lib_schema830.FieldType<number, number>;
237
237
  isOptional: false;
238
238
  };
239
239
  taxTotal: {
240
- type: _lssm_lib_schema780.FieldType<number, number>;
240
+ type: _lssm_lib_schema830.FieldType<number, number>;
241
241
  isOptional: false;
242
242
  };
243
243
  total: {
244
- type: _lssm_lib_schema780.FieldType<number, number>;
244
+ type: _lssm_lib_schema830.FieldType<number, number>;
245
245
  isOptional: false;
246
246
  };
247
247
  currency: {
248
- type: _lssm_lib_schema780.FieldType<string, string>;
248
+ type: _lssm_lib_schema830.FieldType<string, string>;
249
249
  isOptional: false;
250
250
  };
251
251
  items: {
252
- type: _lssm_lib_schema780.SchemaModel<{
252
+ type: _lssm_lib_schema830.SchemaModel<{
253
253
  id: {
254
- type: _lssm_lib_schema780.FieldType<string, string>;
254
+ type: _lssm_lib_schema830.FieldType<string, string>;
255
255
  isOptional: false;
256
256
  };
257
257
  productId: {
258
- type: _lssm_lib_schema780.FieldType<string, string>;
258
+ type: _lssm_lib_schema830.FieldType<string, string>;
259
259
  isOptional: false;
260
260
  };
261
261
  productName: {
262
- type: _lssm_lib_schema780.FieldType<string, string>;
262
+ type: _lssm_lib_schema830.FieldType<string, string>;
263
263
  isOptional: false;
264
264
  };
265
265
  unitPrice: {
266
- type: _lssm_lib_schema780.FieldType<number, number>;
266
+ type: _lssm_lib_schema830.FieldType<number, number>;
267
267
  isOptional: false;
268
268
  };
269
269
  quantity: {
270
- type: _lssm_lib_schema780.FieldType<number, number>;
270
+ type: _lssm_lib_schema830.FieldType<number, number>;
271
271
  isOptional: false;
272
272
  };
273
273
  subtotal: {
274
- type: _lssm_lib_schema780.FieldType<number, number>;
274
+ type: _lssm_lib_schema830.FieldType<number, number>;
275
275
  isOptional: false;
276
276
  };
277
277
  }>;
@@ -279,78 +279,78 @@ declare const UpdateOrderStatusContract: _lssm_lib_contracts3.ContractSpec<_lssm
279
279
  isOptional: true;
280
280
  };
281
281
  createdAt: {
282
- type: _lssm_lib_schema780.FieldType<Date, string>;
282
+ type: _lssm_lib_schema830.FieldType<Date, string>;
283
283
  isOptional: false;
284
284
  };
285
285
  }>, {
286
286
  name: string;
287
287
  version: number;
288
288
  when: string;
289
- payload: _lssm_lib_schema780.SchemaModel<{
289
+ payload: _lssm_lib_schema830.SchemaModel<{
290
290
  id: {
291
- type: _lssm_lib_schema780.FieldType<string, string>;
291
+ type: _lssm_lib_schema830.FieldType<string, string>;
292
292
  isOptional: false;
293
293
  };
294
294
  orderNumber: {
295
- type: _lssm_lib_schema780.FieldType<string, string>;
295
+ type: _lssm_lib_schema830.FieldType<string, string>;
296
296
  isOptional: false;
297
297
  };
298
298
  buyerId: {
299
- type: _lssm_lib_schema780.FieldType<string, string>;
299
+ type: _lssm_lib_schema830.FieldType<string, string>;
300
300
  isOptional: false;
301
301
  };
302
302
  storeId: {
303
- type: _lssm_lib_schema780.FieldType<string, string>;
303
+ type: _lssm_lib_schema830.FieldType<string, string>;
304
304
  isOptional: false;
305
305
  };
306
306
  status: {
307
- type: _lssm_lib_schema780.EnumType<[string, string, string, string, string, string, string, string, string, string]>;
307
+ type: _lssm_lib_schema830.EnumType<[string, string, string, string, string, string, string, string, string, string]>;
308
308
  isOptional: false;
309
309
  };
310
310
  subtotal: {
311
- type: _lssm_lib_schema780.FieldType<number, number>;
311
+ type: _lssm_lib_schema830.FieldType<number, number>;
312
312
  isOptional: false;
313
313
  };
314
314
  shippingTotal: {
315
- type: _lssm_lib_schema780.FieldType<number, number>;
315
+ type: _lssm_lib_schema830.FieldType<number, number>;
316
316
  isOptional: false;
317
317
  };
318
318
  taxTotal: {
319
- type: _lssm_lib_schema780.FieldType<number, number>;
319
+ type: _lssm_lib_schema830.FieldType<number, number>;
320
320
  isOptional: false;
321
321
  };
322
322
  total: {
323
- type: _lssm_lib_schema780.FieldType<number, number>;
323
+ type: _lssm_lib_schema830.FieldType<number, number>;
324
324
  isOptional: false;
325
325
  };
326
326
  currency: {
327
- type: _lssm_lib_schema780.FieldType<string, string>;
327
+ type: _lssm_lib_schema830.FieldType<string, string>;
328
328
  isOptional: false;
329
329
  };
330
330
  items: {
331
- type: _lssm_lib_schema780.SchemaModel<{
331
+ type: _lssm_lib_schema830.SchemaModel<{
332
332
  id: {
333
- type: _lssm_lib_schema780.FieldType<string, string>;
333
+ type: _lssm_lib_schema830.FieldType<string, string>;
334
334
  isOptional: false;
335
335
  };
336
336
  productId: {
337
- type: _lssm_lib_schema780.FieldType<string, string>;
337
+ type: _lssm_lib_schema830.FieldType<string, string>;
338
338
  isOptional: false;
339
339
  };
340
340
  productName: {
341
- type: _lssm_lib_schema780.FieldType<string, string>;
341
+ type: _lssm_lib_schema830.FieldType<string, string>;
342
342
  isOptional: false;
343
343
  };
344
344
  unitPrice: {
345
- type: _lssm_lib_schema780.FieldType<number, number>;
345
+ type: _lssm_lib_schema830.FieldType<number, number>;
346
346
  isOptional: false;
347
347
  };
348
348
  quantity: {
349
- type: _lssm_lib_schema780.FieldType<number, number>;
349
+ type: _lssm_lib_schema830.FieldType<number, number>;
350
350
  isOptional: false;
351
351
  };
352
352
  subtotal: {
353
- type: _lssm_lib_schema780.FieldType<number, number>;
353
+ type: _lssm_lib_schema830.FieldType<number, number>;
354
354
  isOptional: false;
355
355
  };
356
356
  }>;
@@ -358,7 +358,7 @@ declare const UpdateOrderStatusContract: _lssm_lib_contracts3.ContractSpec<_lssm
358
358
  isOptional: true;
359
359
  };
360
360
  createdAt: {
361
- type: _lssm_lib_schema780.FieldType<Date, string>;
361
+ type: _lssm_lib_schema830.FieldType<Date, string>;
362
362
  isOptional: false;
363
363
  };
364
364
  }>;
@@ -1,10 +1,10 @@
1
- import * as _lssm_lib_schema868 from "@lssm/lib.schema";
1
+ import * as _lssm_lib_schema930 from "@lssm/lib.schema";
2
2
 
3
3
  //#region src/order/order.enum.d.ts
4
4
  /**
5
5
  * Order status enum.
6
6
  */
7
- declare const OrderStatusEnum: _lssm_lib_schema868.EnumType<[string, string, string, string, string, string, string, string, string, string]>;
7
+ declare const OrderStatusEnum: _lssm_lib_schema930.EnumType<[string, string, string, string, string, string, string, string, string, string]>;
8
8
  //#endregion
9
9
  export { OrderStatusEnum };
10
10
  //# sourceMappingURL=order.enum.d.ts.map