@lssm/example.marketplace 0.0.0-canary-20251206160926 → 0.0.0-canary-20251207012602
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/dist/contracts/index.d.ts +453 -453
- package/dist/entities/index.d.ts +296 -296
- package/dist/entities/order.d.ts +78 -78
- package/dist/entities/payout.d.ts +65 -65
- package/dist/entities/product.d.ts +70 -70
- package/dist/entities/review.d.ts +56 -56
- package/dist/entities/store.d.ts +41 -41
- package/dist/events.d.ts +191 -191
- package/dist/index.d.ts +2 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/events.d.ts
CHANGED
|
@@ -1,709 +1,709 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema436 from "@lssm/lib.schema";
|
|
2
2
|
import * as _lssm_lib_contracts0 from "@lssm/lib.contracts";
|
|
3
3
|
|
|
4
4
|
//#region src/events.d.ts
|
|
5
|
-
declare const StoreCreatedEvent: _lssm_lib_contracts0.EventSpec<
|
|
5
|
+
declare const StoreCreatedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
6
6
|
storeId: {
|
|
7
|
-
type:
|
|
7
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
8
8
|
isOptional: false;
|
|
9
9
|
};
|
|
10
10
|
name: {
|
|
11
|
-
type:
|
|
11
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
12
12
|
isOptional: false;
|
|
13
13
|
};
|
|
14
14
|
slug: {
|
|
15
|
-
type:
|
|
15
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
16
16
|
isOptional: false;
|
|
17
17
|
};
|
|
18
18
|
ownerId: {
|
|
19
|
-
type:
|
|
19
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
20
20
|
isOptional: false;
|
|
21
21
|
};
|
|
22
22
|
timestamp: {
|
|
23
|
-
type:
|
|
23
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
24
24
|
isOptional: false;
|
|
25
25
|
};
|
|
26
26
|
}>>;
|
|
27
|
-
declare const StoreStatusChangedEvent: _lssm_lib_contracts0.EventSpec<
|
|
27
|
+
declare const StoreStatusChangedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
28
28
|
storeId: {
|
|
29
|
-
type:
|
|
29
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
30
30
|
isOptional: false;
|
|
31
31
|
};
|
|
32
32
|
previousStatus: {
|
|
33
|
-
type:
|
|
33
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
34
34
|
isOptional: false;
|
|
35
35
|
};
|
|
36
36
|
newStatus: {
|
|
37
|
-
type:
|
|
37
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
38
38
|
isOptional: false;
|
|
39
39
|
};
|
|
40
40
|
reason: {
|
|
41
|
-
type:
|
|
41
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
42
42
|
isOptional: true;
|
|
43
43
|
};
|
|
44
44
|
timestamp: {
|
|
45
|
-
type:
|
|
45
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
46
46
|
isOptional: false;
|
|
47
47
|
};
|
|
48
48
|
}>>;
|
|
49
|
-
declare const ProductCreatedEvent: _lssm_lib_contracts0.EventSpec<
|
|
49
|
+
declare const ProductCreatedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
50
50
|
productId: {
|
|
51
|
-
type:
|
|
51
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
52
52
|
isOptional: false;
|
|
53
53
|
};
|
|
54
54
|
storeId: {
|
|
55
|
-
type:
|
|
55
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
56
56
|
isOptional: false;
|
|
57
57
|
};
|
|
58
58
|
name: {
|
|
59
|
-
type:
|
|
59
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
60
60
|
isOptional: false;
|
|
61
61
|
};
|
|
62
62
|
price: {
|
|
63
|
-
type:
|
|
63
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
64
64
|
isOptional: false;
|
|
65
65
|
};
|
|
66
66
|
currency: {
|
|
67
|
-
type:
|
|
67
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
68
68
|
isOptional: false;
|
|
69
69
|
};
|
|
70
70
|
timestamp: {
|
|
71
|
-
type:
|
|
71
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
72
72
|
isOptional: false;
|
|
73
73
|
};
|
|
74
74
|
}>>;
|
|
75
|
-
declare const ProductPublishedEvent: _lssm_lib_contracts0.EventSpec<
|
|
75
|
+
declare const ProductPublishedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
76
76
|
productId: {
|
|
77
|
-
type:
|
|
77
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
78
78
|
isOptional: false;
|
|
79
79
|
};
|
|
80
80
|
storeId: {
|
|
81
|
-
type:
|
|
81
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
82
82
|
isOptional: false;
|
|
83
83
|
};
|
|
84
84
|
timestamp: {
|
|
85
|
-
type:
|
|
85
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
86
86
|
isOptional: false;
|
|
87
87
|
};
|
|
88
88
|
}>>;
|
|
89
|
-
declare const InventoryUpdatedEvent: _lssm_lib_contracts0.EventSpec<
|
|
89
|
+
declare const InventoryUpdatedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
90
90
|
productId: {
|
|
91
|
-
type:
|
|
91
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
92
92
|
isOptional: false;
|
|
93
93
|
};
|
|
94
94
|
variantId: {
|
|
95
|
-
type:
|
|
95
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
96
96
|
isOptional: true;
|
|
97
97
|
};
|
|
98
98
|
previousQuantity: {
|
|
99
|
-
type:
|
|
99
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
100
100
|
isOptional: false;
|
|
101
101
|
};
|
|
102
102
|
newQuantity: {
|
|
103
|
-
type:
|
|
103
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
104
104
|
isOptional: false;
|
|
105
105
|
};
|
|
106
106
|
reason: {
|
|
107
|
-
type:
|
|
107
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
108
108
|
isOptional: false;
|
|
109
109
|
};
|
|
110
110
|
timestamp: {
|
|
111
|
-
type:
|
|
111
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
112
112
|
isOptional: false;
|
|
113
113
|
};
|
|
114
114
|
}>>;
|
|
115
|
-
declare const OrderCreatedEvent: _lssm_lib_contracts0.EventSpec<
|
|
115
|
+
declare const OrderCreatedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
116
116
|
orderId: {
|
|
117
|
-
type:
|
|
117
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
118
118
|
isOptional: false;
|
|
119
119
|
};
|
|
120
120
|
orderNumber: {
|
|
121
|
-
type:
|
|
121
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
122
122
|
isOptional: false;
|
|
123
123
|
};
|
|
124
124
|
buyerId: {
|
|
125
|
-
type:
|
|
125
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
126
126
|
isOptional: false;
|
|
127
127
|
};
|
|
128
128
|
storeId: {
|
|
129
|
-
type:
|
|
129
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
130
130
|
isOptional: false;
|
|
131
131
|
};
|
|
132
132
|
total: {
|
|
133
|
-
type:
|
|
133
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
134
134
|
isOptional: false;
|
|
135
135
|
};
|
|
136
136
|
currency: {
|
|
137
|
-
type:
|
|
137
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
138
138
|
isOptional: false;
|
|
139
139
|
};
|
|
140
140
|
itemCount: {
|
|
141
|
-
type:
|
|
141
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
142
142
|
isOptional: false;
|
|
143
143
|
};
|
|
144
144
|
timestamp: {
|
|
145
|
-
type:
|
|
145
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
146
146
|
isOptional: false;
|
|
147
147
|
};
|
|
148
148
|
}>>;
|
|
149
|
-
declare const OrderPaidEvent: _lssm_lib_contracts0.EventSpec<
|
|
149
|
+
declare const OrderPaidEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
150
150
|
orderId: {
|
|
151
|
-
type:
|
|
151
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
152
152
|
isOptional: false;
|
|
153
153
|
};
|
|
154
154
|
orderNumber: {
|
|
155
|
-
type:
|
|
155
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
156
156
|
isOptional: false;
|
|
157
157
|
};
|
|
158
158
|
total: {
|
|
159
|
-
type:
|
|
159
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
160
160
|
isOptional: false;
|
|
161
161
|
};
|
|
162
162
|
paymentMethod: {
|
|
163
|
-
type:
|
|
163
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
164
164
|
isOptional: false;
|
|
165
165
|
};
|
|
166
166
|
timestamp: {
|
|
167
|
-
type:
|
|
167
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
168
168
|
isOptional: false;
|
|
169
169
|
};
|
|
170
170
|
}>>;
|
|
171
|
-
declare const OrderStatusUpdatedEvent: _lssm_lib_contracts0.EventSpec<
|
|
171
|
+
declare const OrderStatusUpdatedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
172
172
|
orderId: {
|
|
173
|
-
type:
|
|
173
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
174
174
|
isOptional: false;
|
|
175
175
|
};
|
|
176
176
|
orderNumber: {
|
|
177
|
-
type:
|
|
177
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
178
178
|
isOptional: false;
|
|
179
179
|
};
|
|
180
180
|
previousStatus: {
|
|
181
|
-
type:
|
|
181
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
182
182
|
isOptional: false;
|
|
183
183
|
};
|
|
184
184
|
newStatus: {
|
|
185
|
-
type:
|
|
185
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
186
186
|
isOptional: false;
|
|
187
187
|
};
|
|
188
188
|
updatedBy: {
|
|
189
|
-
type:
|
|
189
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
190
190
|
isOptional: false;
|
|
191
191
|
};
|
|
192
192
|
timestamp: {
|
|
193
|
-
type:
|
|
193
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
194
194
|
isOptional: false;
|
|
195
195
|
};
|
|
196
196
|
}>>;
|
|
197
|
-
declare const OrderShippedEvent: _lssm_lib_contracts0.EventSpec<
|
|
197
|
+
declare const OrderShippedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
198
198
|
orderId: {
|
|
199
|
-
type:
|
|
199
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
200
200
|
isOptional: false;
|
|
201
201
|
};
|
|
202
202
|
orderNumber: {
|
|
203
|
-
type:
|
|
203
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
204
204
|
isOptional: false;
|
|
205
205
|
};
|
|
206
206
|
trackingNumber: {
|
|
207
|
-
type:
|
|
207
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
208
208
|
isOptional: true;
|
|
209
209
|
};
|
|
210
210
|
trackingUrl: {
|
|
211
|
-
type:
|
|
211
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
212
212
|
isOptional: true;
|
|
213
213
|
};
|
|
214
214
|
carrier: {
|
|
215
|
-
type:
|
|
215
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
216
216
|
isOptional: true;
|
|
217
217
|
};
|
|
218
218
|
timestamp: {
|
|
219
|
-
type:
|
|
219
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
220
220
|
isOptional: false;
|
|
221
221
|
};
|
|
222
222
|
}>>;
|
|
223
|
-
declare const OrderCompletedEvent: _lssm_lib_contracts0.EventSpec<
|
|
223
|
+
declare const OrderCompletedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
224
224
|
orderId: {
|
|
225
|
-
type:
|
|
225
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
226
226
|
isOptional: false;
|
|
227
227
|
};
|
|
228
228
|
orderNumber: {
|
|
229
|
-
type:
|
|
229
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
230
230
|
isOptional: false;
|
|
231
231
|
};
|
|
232
232
|
buyerId: {
|
|
233
|
-
type:
|
|
233
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
234
234
|
isOptional: false;
|
|
235
235
|
};
|
|
236
236
|
storeId: {
|
|
237
|
-
type:
|
|
237
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
238
238
|
isOptional: false;
|
|
239
239
|
};
|
|
240
240
|
total: {
|
|
241
|
-
type:
|
|
241
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
242
242
|
isOptional: false;
|
|
243
243
|
};
|
|
244
244
|
sellerPayout: {
|
|
245
|
-
type:
|
|
245
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
246
246
|
isOptional: false;
|
|
247
247
|
};
|
|
248
248
|
timestamp: {
|
|
249
|
-
type:
|
|
249
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
250
250
|
isOptional: false;
|
|
251
251
|
};
|
|
252
252
|
}>>;
|
|
253
|
-
declare const PayoutCreatedEvent: _lssm_lib_contracts0.EventSpec<
|
|
253
|
+
declare const PayoutCreatedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
254
254
|
payoutId: {
|
|
255
|
-
type:
|
|
255
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
256
256
|
isOptional: false;
|
|
257
257
|
};
|
|
258
258
|
payoutNumber: {
|
|
259
|
-
type:
|
|
259
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
260
260
|
isOptional: false;
|
|
261
261
|
};
|
|
262
262
|
storeId: {
|
|
263
|
-
type:
|
|
263
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
264
264
|
isOptional: false;
|
|
265
265
|
};
|
|
266
266
|
netAmount: {
|
|
267
|
-
type:
|
|
267
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
268
268
|
isOptional: false;
|
|
269
269
|
};
|
|
270
270
|
currency: {
|
|
271
|
-
type:
|
|
271
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
272
272
|
isOptional: false;
|
|
273
273
|
};
|
|
274
274
|
orderCount: {
|
|
275
|
-
type:
|
|
275
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
276
276
|
isOptional: false;
|
|
277
277
|
};
|
|
278
278
|
timestamp: {
|
|
279
|
-
type:
|
|
279
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
280
280
|
isOptional: false;
|
|
281
281
|
};
|
|
282
282
|
}>>;
|
|
283
|
-
declare const PayoutPaidEvent: _lssm_lib_contracts0.EventSpec<
|
|
283
|
+
declare const PayoutPaidEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
284
284
|
payoutId: {
|
|
285
|
-
type:
|
|
285
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
286
286
|
isOptional: false;
|
|
287
287
|
};
|
|
288
288
|
payoutNumber: {
|
|
289
|
-
type:
|
|
289
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
290
290
|
isOptional: false;
|
|
291
291
|
};
|
|
292
292
|
storeId: {
|
|
293
|
-
type:
|
|
293
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
294
294
|
isOptional: false;
|
|
295
295
|
};
|
|
296
296
|
netAmount: {
|
|
297
|
-
type:
|
|
297
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
298
298
|
isOptional: false;
|
|
299
299
|
};
|
|
300
300
|
paymentReference: {
|
|
301
|
-
type:
|
|
301
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
302
302
|
isOptional: true;
|
|
303
303
|
};
|
|
304
304
|
timestamp: {
|
|
305
|
-
type:
|
|
305
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
306
306
|
isOptional: false;
|
|
307
307
|
};
|
|
308
308
|
}>>;
|
|
309
|
-
declare const ReviewCreatedEvent: _lssm_lib_contracts0.EventSpec<
|
|
309
|
+
declare const ReviewCreatedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
310
310
|
reviewId: {
|
|
311
|
-
type:
|
|
311
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
312
312
|
isOptional: false;
|
|
313
313
|
};
|
|
314
314
|
productId: {
|
|
315
|
-
type:
|
|
315
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
316
316
|
isOptional: true;
|
|
317
317
|
};
|
|
318
318
|
storeId: {
|
|
319
|
-
type:
|
|
319
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
320
320
|
isOptional: true;
|
|
321
321
|
};
|
|
322
322
|
authorId: {
|
|
323
|
-
type:
|
|
323
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
324
324
|
isOptional: false;
|
|
325
325
|
};
|
|
326
326
|
rating: {
|
|
327
|
-
type:
|
|
327
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
328
328
|
isOptional: false;
|
|
329
329
|
};
|
|
330
330
|
isVerifiedPurchase: {
|
|
331
|
-
type:
|
|
331
|
+
type: _lssm_lib_schema436.FieldType<boolean, boolean>;
|
|
332
332
|
isOptional: false;
|
|
333
333
|
};
|
|
334
334
|
timestamp: {
|
|
335
|
-
type:
|
|
335
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
336
336
|
isOptional: false;
|
|
337
337
|
};
|
|
338
338
|
}>>;
|
|
339
|
-
declare const ReviewRespondedEvent: _lssm_lib_contracts0.EventSpec<
|
|
339
|
+
declare const ReviewRespondedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
340
340
|
reviewId: {
|
|
341
|
-
type:
|
|
341
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
342
342
|
isOptional: false;
|
|
343
343
|
};
|
|
344
344
|
responseId: {
|
|
345
|
-
type:
|
|
345
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
346
346
|
isOptional: false;
|
|
347
347
|
};
|
|
348
348
|
authorId: {
|
|
349
|
-
type:
|
|
349
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
350
350
|
isOptional: false;
|
|
351
351
|
};
|
|
352
352
|
timestamp: {
|
|
353
|
-
type:
|
|
353
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
354
354
|
isOptional: false;
|
|
355
355
|
};
|
|
356
356
|
}>>;
|
|
357
357
|
declare const MarketplaceEvents: {
|
|
358
|
-
StoreCreatedEvent: _lssm_lib_contracts0.EventSpec<
|
|
358
|
+
StoreCreatedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
359
359
|
storeId: {
|
|
360
|
-
type:
|
|
360
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
361
361
|
isOptional: false;
|
|
362
362
|
};
|
|
363
363
|
name: {
|
|
364
|
-
type:
|
|
364
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
365
365
|
isOptional: false;
|
|
366
366
|
};
|
|
367
367
|
slug: {
|
|
368
|
-
type:
|
|
368
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
369
369
|
isOptional: false;
|
|
370
370
|
};
|
|
371
371
|
ownerId: {
|
|
372
|
-
type:
|
|
372
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
373
373
|
isOptional: false;
|
|
374
374
|
};
|
|
375
375
|
timestamp: {
|
|
376
|
-
type:
|
|
376
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
377
377
|
isOptional: false;
|
|
378
378
|
};
|
|
379
379
|
}>>;
|
|
380
|
-
StoreStatusChangedEvent: _lssm_lib_contracts0.EventSpec<
|
|
380
|
+
StoreStatusChangedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
381
381
|
storeId: {
|
|
382
|
-
type:
|
|
382
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
383
383
|
isOptional: false;
|
|
384
384
|
};
|
|
385
385
|
previousStatus: {
|
|
386
|
-
type:
|
|
386
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
387
387
|
isOptional: false;
|
|
388
388
|
};
|
|
389
389
|
newStatus: {
|
|
390
|
-
type:
|
|
390
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
391
391
|
isOptional: false;
|
|
392
392
|
};
|
|
393
393
|
reason: {
|
|
394
|
-
type:
|
|
394
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
395
395
|
isOptional: true;
|
|
396
396
|
};
|
|
397
397
|
timestamp: {
|
|
398
|
-
type:
|
|
398
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
399
399
|
isOptional: false;
|
|
400
400
|
};
|
|
401
401
|
}>>;
|
|
402
|
-
ProductCreatedEvent: _lssm_lib_contracts0.EventSpec<
|
|
402
|
+
ProductCreatedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
403
403
|
productId: {
|
|
404
|
-
type:
|
|
404
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
405
405
|
isOptional: false;
|
|
406
406
|
};
|
|
407
407
|
storeId: {
|
|
408
|
-
type:
|
|
408
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
409
409
|
isOptional: false;
|
|
410
410
|
};
|
|
411
411
|
name: {
|
|
412
|
-
type:
|
|
412
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
413
413
|
isOptional: false;
|
|
414
414
|
};
|
|
415
415
|
price: {
|
|
416
|
-
type:
|
|
416
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
417
417
|
isOptional: false;
|
|
418
418
|
};
|
|
419
419
|
currency: {
|
|
420
|
-
type:
|
|
420
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
421
421
|
isOptional: false;
|
|
422
422
|
};
|
|
423
423
|
timestamp: {
|
|
424
|
-
type:
|
|
424
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
425
425
|
isOptional: false;
|
|
426
426
|
};
|
|
427
427
|
}>>;
|
|
428
|
-
ProductPublishedEvent: _lssm_lib_contracts0.EventSpec<
|
|
428
|
+
ProductPublishedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
429
429
|
productId: {
|
|
430
|
-
type:
|
|
430
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
431
431
|
isOptional: false;
|
|
432
432
|
};
|
|
433
433
|
storeId: {
|
|
434
|
-
type:
|
|
434
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
435
435
|
isOptional: false;
|
|
436
436
|
};
|
|
437
437
|
timestamp: {
|
|
438
|
-
type:
|
|
438
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
439
439
|
isOptional: false;
|
|
440
440
|
};
|
|
441
441
|
}>>;
|
|
442
|
-
InventoryUpdatedEvent: _lssm_lib_contracts0.EventSpec<
|
|
442
|
+
InventoryUpdatedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
443
443
|
productId: {
|
|
444
|
-
type:
|
|
444
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
445
445
|
isOptional: false;
|
|
446
446
|
};
|
|
447
447
|
variantId: {
|
|
448
|
-
type:
|
|
448
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
449
449
|
isOptional: true;
|
|
450
450
|
};
|
|
451
451
|
previousQuantity: {
|
|
452
|
-
type:
|
|
452
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
453
453
|
isOptional: false;
|
|
454
454
|
};
|
|
455
455
|
newQuantity: {
|
|
456
|
-
type:
|
|
456
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
457
457
|
isOptional: false;
|
|
458
458
|
};
|
|
459
459
|
reason: {
|
|
460
|
-
type:
|
|
460
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
461
461
|
isOptional: false;
|
|
462
462
|
};
|
|
463
463
|
timestamp: {
|
|
464
|
-
type:
|
|
464
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
465
465
|
isOptional: false;
|
|
466
466
|
};
|
|
467
467
|
}>>;
|
|
468
|
-
OrderCreatedEvent: _lssm_lib_contracts0.EventSpec<
|
|
468
|
+
OrderCreatedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
469
469
|
orderId: {
|
|
470
|
-
type:
|
|
470
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
471
471
|
isOptional: false;
|
|
472
472
|
};
|
|
473
473
|
orderNumber: {
|
|
474
|
-
type:
|
|
474
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
475
475
|
isOptional: false;
|
|
476
476
|
};
|
|
477
477
|
buyerId: {
|
|
478
|
-
type:
|
|
478
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
479
479
|
isOptional: false;
|
|
480
480
|
};
|
|
481
481
|
storeId: {
|
|
482
|
-
type:
|
|
482
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
483
483
|
isOptional: false;
|
|
484
484
|
};
|
|
485
485
|
total: {
|
|
486
|
-
type:
|
|
486
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
487
487
|
isOptional: false;
|
|
488
488
|
};
|
|
489
489
|
currency: {
|
|
490
|
-
type:
|
|
490
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
491
491
|
isOptional: false;
|
|
492
492
|
};
|
|
493
493
|
itemCount: {
|
|
494
|
-
type:
|
|
494
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
495
495
|
isOptional: false;
|
|
496
496
|
};
|
|
497
497
|
timestamp: {
|
|
498
|
-
type:
|
|
498
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
499
499
|
isOptional: false;
|
|
500
500
|
};
|
|
501
501
|
}>>;
|
|
502
|
-
OrderPaidEvent: _lssm_lib_contracts0.EventSpec<
|
|
502
|
+
OrderPaidEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
503
503
|
orderId: {
|
|
504
|
-
type:
|
|
504
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
505
505
|
isOptional: false;
|
|
506
506
|
};
|
|
507
507
|
orderNumber: {
|
|
508
|
-
type:
|
|
508
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
509
509
|
isOptional: false;
|
|
510
510
|
};
|
|
511
511
|
total: {
|
|
512
|
-
type:
|
|
512
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
513
513
|
isOptional: false;
|
|
514
514
|
};
|
|
515
515
|
paymentMethod: {
|
|
516
|
-
type:
|
|
516
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
517
517
|
isOptional: false;
|
|
518
518
|
};
|
|
519
519
|
timestamp: {
|
|
520
|
-
type:
|
|
520
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
521
521
|
isOptional: false;
|
|
522
522
|
};
|
|
523
523
|
}>>;
|
|
524
|
-
OrderStatusUpdatedEvent: _lssm_lib_contracts0.EventSpec<
|
|
524
|
+
OrderStatusUpdatedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
525
525
|
orderId: {
|
|
526
|
-
type:
|
|
526
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
527
527
|
isOptional: false;
|
|
528
528
|
};
|
|
529
529
|
orderNumber: {
|
|
530
|
-
type:
|
|
530
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
531
531
|
isOptional: false;
|
|
532
532
|
};
|
|
533
533
|
previousStatus: {
|
|
534
|
-
type:
|
|
534
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
535
535
|
isOptional: false;
|
|
536
536
|
};
|
|
537
537
|
newStatus: {
|
|
538
|
-
type:
|
|
538
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
539
539
|
isOptional: false;
|
|
540
540
|
};
|
|
541
541
|
updatedBy: {
|
|
542
|
-
type:
|
|
542
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
543
543
|
isOptional: false;
|
|
544
544
|
};
|
|
545
545
|
timestamp: {
|
|
546
|
-
type:
|
|
546
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
547
547
|
isOptional: false;
|
|
548
548
|
};
|
|
549
549
|
}>>;
|
|
550
|
-
OrderShippedEvent: _lssm_lib_contracts0.EventSpec<
|
|
550
|
+
OrderShippedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
551
551
|
orderId: {
|
|
552
|
-
type:
|
|
552
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
553
553
|
isOptional: false;
|
|
554
554
|
};
|
|
555
555
|
orderNumber: {
|
|
556
|
-
type:
|
|
556
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
557
557
|
isOptional: false;
|
|
558
558
|
};
|
|
559
559
|
trackingNumber: {
|
|
560
|
-
type:
|
|
560
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
561
561
|
isOptional: true;
|
|
562
562
|
};
|
|
563
563
|
trackingUrl: {
|
|
564
|
-
type:
|
|
564
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
565
565
|
isOptional: true;
|
|
566
566
|
};
|
|
567
567
|
carrier: {
|
|
568
|
-
type:
|
|
568
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
569
569
|
isOptional: true;
|
|
570
570
|
};
|
|
571
571
|
timestamp: {
|
|
572
|
-
type:
|
|
572
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
573
573
|
isOptional: false;
|
|
574
574
|
};
|
|
575
575
|
}>>;
|
|
576
|
-
OrderCompletedEvent: _lssm_lib_contracts0.EventSpec<
|
|
576
|
+
OrderCompletedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
577
577
|
orderId: {
|
|
578
|
-
type:
|
|
578
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
579
579
|
isOptional: false;
|
|
580
580
|
};
|
|
581
581
|
orderNumber: {
|
|
582
|
-
type:
|
|
582
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
583
583
|
isOptional: false;
|
|
584
584
|
};
|
|
585
585
|
buyerId: {
|
|
586
|
-
type:
|
|
586
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
587
587
|
isOptional: false;
|
|
588
588
|
};
|
|
589
589
|
storeId: {
|
|
590
|
-
type:
|
|
590
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
591
591
|
isOptional: false;
|
|
592
592
|
};
|
|
593
593
|
total: {
|
|
594
|
-
type:
|
|
594
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
595
595
|
isOptional: false;
|
|
596
596
|
};
|
|
597
597
|
sellerPayout: {
|
|
598
|
-
type:
|
|
598
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
599
599
|
isOptional: false;
|
|
600
600
|
};
|
|
601
601
|
timestamp: {
|
|
602
|
-
type:
|
|
602
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
603
603
|
isOptional: false;
|
|
604
604
|
};
|
|
605
605
|
}>>;
|
|
606
|
-
PayoutCreatedEvent: _lssm_lib_contracts0.EventSpec<
|
|
606
|
+
PayoutCreatedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
607
607
|
payoutId: {
|
|
608
|
-
type:
|
|
608
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
609
609
|
isOptional: false;
|
|
610
610
|
};
|
|
611
611
|
payoutNumber: {
|
|
612
|
-
type:
|
|
612
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
613
613
|
isOptional: false;
|
|
614
614
|
};
|
|
615
615
|
storeId: {
|
|
616
|
-
type:
|
|
616
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
617
617
|
isOptional: false;
|
|
618
618
|
};
|
|
619
619
|
netAmount: {
|
|
620
|
-
type:
|
|
620
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
621
621
|
isOptional: false;
|
|
622
622
|
};
|
|
623
623
|
currency: {
|
|
624
|
-
type:
|
|
624
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
625
625
|
isOptional: false;
|
|
626
626
|
};
|
|
627
627
|
orderCount: {
|
|
628
|
-
type:
|
|
628
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
629
629
|
isOptional: false;
|
|
630
630
|
};
|
|
631
631
|
timestamp: {
|
|
632
|
-
type:
|
|
632
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
633
633
|
isOptional: false;
|
|
634
634
|
};
|
|
635
635
|
}>>;
|
|
636
|
-
PayoutPaidEvent: _lssm_lib_contracts0.EventSpec<
|
|
636
|
+
PayoutPaidEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
637
637
|
payoutId: {
|
|
638
|
-
type:
|
|
638
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
639
639
|
isOptional: false;
|
|
640
640
|
};
|
|
641
641
|
payoutNumber: {
|
|
642
|
-
type:
|
|
642
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
643
643
|
isOptional: false;
|
|
644
644
|
};
|
|
645
645
|
storeId: {
|
|
646
|
-
type:
|
|
646
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
647
647
|
isOptional: false;
|
|
648
648
|
};
|
|
649
649
|
netAmount: {
|
|
650
|
-
type:
|
|
650
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
651
651
|
isOptional: false;
|
|
652
652
|
};
|
|
653
653
|
paymentReference: {
|
|
654
|
-
type:
|
|
654
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
655
655
|
isOptional: true;
|
|
656
656
|
};
|
|
657
657
|
timestamp: {
|
|
658
|
-
type:
|
|
658
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
659
659
|
isOptional: false;
|
|
660
660
|
};
|
|
661
661
|
}>>;
|
|
662
|
-
ReviewCreatedEvent: _lssm_lib_contracts0.EventSpec<
|
|
662
|
+
ReviewCreatedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
663
663
|
reviewId: {
|
|
664
|
-
type:
|
|
664
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
665
665
|
isOptional: false;
|
|
666
666
|
};
|
|
667
667
|
productId: {
|
|
668
|
-
type:
|
|
668
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
669
669
|
isOptional: true;
|
|
670
670
|
};
|
|
671
671
|
storeId: {
|
|
672
|
-
type:
|
|
672
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
673
673
|
isOptional: true;
|
|
674
674
|
};
|
|
675
675
|
authorId: {
|
|
676
|
-
type:
|
|
676
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
677
677
|
isOptional: false;
|
|
678
678
|
};
|
|
679
679
|
rating: {
|
|
680
|
-
type:
|
|
680
|
+
type: _lssm_lib_schema436.FieldType<number, number>;
|
|
681
681
|
isOptional: false;
|
|
682
682
|
};
|
|
683
683
|
isVerifiedPurchase: {
|
|
684
|
-
type:
|
|
684
|
+
type: _lssm_lib_schema436.FieldType<boolean, boolean>;
|
|
685
685
|
isOptional: false;
|
|
686
686
|
};
|
|
687
687
|
timestamp: {
|
|
688
|
-
type:
|
|
688
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
689
689
|
isOptional: false;
|
|
690
690
|
};
|
|
691
691
|
}>>;
|
|
692
|
-
ReviewRespondedEvent: _lssm_lib_contracts0.EventSpec<
|
|
692
|
+
ReviewRespondedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema436.SchemaModel<{
|
|
693
693
|
reviewId: {
|
|
694
|
-
type:
|
|
694
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
695
695
|
isOptional: false;
|
|
696
696
|
};
|
|
697
697
|
responseId: {
|
|
698
|
-
type:
|
|
698
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
699
699
|
isOptional: false;
|
|
700
700
|
};
|
|
701
701
|
authorId: {
|
|
702
|
-
type:
|
|
702
|
+
type: _lssm_lib_schema436.FieldType<string, string>;
|
|
703
703
|
isOptional: false;
|
|
704
704
|
};
|
|
705
705
|
timestamp: {
|
|
706
|
-
type:
|
|
706
|
+
type: _lssm_lib_schema436.FieldType<Date, string>;
|
|
707
707
|
isOptional: false;
|
|
708
708
|
};
|
|
709
709
|
}>>;
|