@kl1/contracts 1.1.55 → 1.1.56
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/api-contracts/src/automation-queue/index.d.ts +112 -0
- package/dist/api-contracts/src/automation-queue/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/index.d.ts +179 -0
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/schema.d.ts +12 -0
- package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +14 -0
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +377 -0
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +66 -0
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +107 -10
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +1114 -40
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-intelligence/index.d.ts +115 -0
- package/dist/api-contracts/src/cx-intelligence/index.d.ts.map +1 -0
- package/dist/api-contracts/src/cx-log/index.d.ts +13 -0
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +11 -0
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +139 -5
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +9 -0
- package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/validation.d.ts +7 -0
- package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/hold-label/index.d.ts +417 -18
- package/dist/api-contracts/src/hold-label/index.d.ts.map +1 -1
- package/dist/api-contracts/src/hold-label/schema.d.ts +144 -2
- package/dist/api-contracts/src/hold-label/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/hold-label/validation.d.ts +10 -0
- package/dist/api-contracts/src/hold-label/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +110 -5
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +98 -5
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +11 -0
- package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +110 -5
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/validation.d.ts +7 -0
- package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +25 -5
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/subscription/index.d.ts +184 -184
- package/dist/api-contracts/src/subscription/schema.d.ts +216 -216
- package/dist/api-contracts/src/telegram/index.d.ts +80 -5
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +80 -5
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +1099 -5
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +94 -5
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +22 -0
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/index.js +61 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +61 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -10,9 +10,9 @@ export declare const ProductPriceSchema: z.ZodObject<{
|
|
10
10
|
price: z.ZodNumber;
|
11
11
|
currency: z.ZodNullable<z.ZodString>;
|
12
12
|
}, "strip", z.ZodTypeAny, {
|
13
|
-
id: string;
|
14
|
-
name: string | null;
|
15
13
|
currency: string | null;
|
14
|
+
name: string | null;
|
15
|
+
id: string;
|
16
16
|
createdAt: Date;
|
17
17
|
updatedAt: Date;
|
18
18
|
deletedAt: Date | null;
|
@@ -20,9 +20,9 @@ export declare const ProductPriceSchema: z.ZodObject<{
|
|
20
20
|
perUnit: number;
|
21
21
|
price: number;
|
22
22
|
}, {
|
23
|
-
id: string;
|
24
|
-
name: string | null;
|
25
23
|
currency: string | null;
|
24
|
+
name: string | null;
|
25
|
+
id: string;
|
26
26
|
createdAt: Date;
|
27
27
|
updatedAt: Date;
|
28
28
|
deletedAt: Date | null;
|
@@ -52,9 +52,9 @@ export declare const ProductWithoutRelatedSchema: z.ZodObject<{
|
|
52
52
|
price: z.ZodNumber;
|
53
53
|
currency: z.ZodNullable<z.ZodString>;
|
54
54
|
}, "strip", z.ZodTypeAny, {
|
55
|
-
id: string;
|
56
|
-
name: string | null;
|
57
55
|
currency: string | null;
|
56
|
+
name: string | null;
|
57
|
+
id: string;
|
58
58
|
createdAt: Date;
|
59
59
|
updatedAt: Date;
|
60
60
|
deletedAt: Date | null;
|
@@ -62,9 +62,9 @@ export declare const ProductWithoutRelatedSchema: z.ZodObject<{
|
|
62
62
|
perUnit: number;
|
63
63
|
price: number;
|
64
64
|
}, {
|
65
|
-
id: string;
|
66
|
-
name: string | null;
|
67
65
|
currency: string | null;
|
66
|
+
name: string | null;
|
67
|
+
id: string;
|
68
68
|
createdAt: Date;
|
69
69
|
updatedAt: Date;
|
70
70
|
deletedAt: Date | null;
|
@@ -73,9 +73,9 @@ export declare const ProductWithoutRelatedSchema: z.ZodObject<{
|
|
73
73
|
price: number;
|
74
74
|
}>;
|
75
75
|
}, "strip", z.ZodTypeAny, {
|
76
|
+
name: string;
|
76
77
|
type: string;
|
77
78
|
id: string;
|
78
|
-
name: string;
|
79
79
|
createdAt: Date;
|
80
80
|
updatedAt: Date;
|
81
81
|
deletedAt: Date | null;
|
@@ -84,9 +84,9 @@ export declare const ProductWithoutRelatedSchema: z.ZodObject<{
|
|
84
84
|
omnichannel: string;
|
85
85
|
usageType: string | null;
|
86
86
|
productPrice: {
|
87
|
-
id: string;
|
88
|
-
name: string | null;
|
89
87
|
currency: string | null;
|
88
|
+
name: string | null;
|
89
|
+
id: string;
|
90
90
|
createdAt: Date;
|
91
91
|
updatedAt: Date;
|
92
92
|
deletedAt: Date | null;
|
@@ -95,9 +95,9 @@ export declare const ProductWithoutRelatedSchema: z.ZodObject<{
|
|
95
95
|
price: number;
|
96
96
|
};
|
97
97
|
}, {
|
98
|
+
name: string;
|
98
99
|
type: string;
|
99
100
|
id: string;
|
100
|
-
name: string;
|
101
101
|
createdAt: Date;
|
102
102
|
updatedAt: Date;
|
103
103
|
deletedAt: Date | null;
|
@@ -106,9 +106,9 @@ export declare const ProductWithoutRelatedSchema: z.ZodObject<{
|
|
106
106
|
omnichannel: string;
|
107
107
|
usageType: string | null;
|
108
108
|
productPrice: {
|
109
|
-
id: string;
|
110
|
-
name: string | null;
|
111
109
|
currency: string | null;
|
110
|
+
name: string | null;
|
111
|
+
id: string;
|
112
112
|
createdAt: Date;
|
113
113
|
updatedAt: Date;
|
114
114
|
deletedAt: Date | null;
|
@@ -145,9 +145,9 @@ export declare const RelatedProductSchema: z.ZodObject<{
|
|
145
145
|
price: z.ZodNumber;
|
146
146
|
currency: z.ZodNullable<z.ZodString>;
|
147
147
|
}, "strip", z.ZodTypeAny, {
|
148
|
-
id: string;
|
149
|
-
name: string | null;
|
150
148
|
currency: string | null;
|
149
|
+
name: string | null;
|
150
|
+
id: string;
|
151
151
|
createdAt: Date;
|
152
152
|
updatedAt: Date;
|
153
153
|
deletedAt: Date | null;
|
@@ -155,9 +155,9 @@ export declare const RelatedProductSchema: z.ZodObject<{
|
|
155
155
|
perUnit: number;
|
156
156
|
price: number;
|
157
157
|
}, {
|
158
|
-
id: string;
|
159
|
-
name: string | null;
|
160
158
|
currency: string | null;
|
159
|
+
name: string | null;
|
160
|
+
id: string;
|
161
161
|
createdAt: Date;
|
162
162
|
updatedAt: Date;
|
163
163
|
deletedAt: Date | null;
|
@@ -166,9 +166,9 @@ export declare const RelatedProductSchema: z.ZodObject<{
|
|
166
166
|
price: number;
|
167
167
|
}>;
|
168
168
|
}, "strip", z.ZodTypeAny, {
|
169
|
+
name: string;
|
169
170
|
type: string;
|
170
171
|
id: string;
|
171
|
-
name: string;
|
172
172
|
createdAt: Date;
|
173
173
|
updatedAt: Date;
|
174
174
|
deletedAt: Date | null;
|
@@ -177,9 +177,9 @@ export declare const RelatedProductSchema: z.ZodObject<{
|
|
177
177
|
omnichannel: string;
|
178
178
|
usageType: string | null;
|
179
179
|
productPrice: {
|
180
|
-
id: string;
|
181
|
-
name: string | null;
|
182
180
|
currency: string | null;
|
181
|
+
name: string | null;
|
182
|
+
id: string;
|
183
183
|
createdAt: Date;
|
184
184
|
updatedAt: Date;
|
185
185
|
deletedAt: Date | null;
|
@@ -188,9 +188,9 @@ export declare const RelatedProductSchema: z.ZodObject<{
|
|
188
188
|
price: number;
|
189
189
|
};
|
190
190
|
}, {
|
191
|
+
name: string;
|
191
192
|
type: string;
|
192
193
|
id: string;
|
193
|
-
name: string;
|
194
194
|
createdAt: Date;
|
195
195
|
updatedAt: Date;
|
196
196
|
deletedAt: Date | null;
|
@@ -199,9 +199,9 @@ export declare const RelatedProductSchema: z.ZodObject<{
|
|
199
199
|
omnichannel: string;
|
200
200
|
usageType: string | null;
|
201
201
|
productPrice: {
|
202
|
-
id: string;
|
203
|
-
name: string | null;
|
204
202
|
currency: string | null;
|
203
|
+
name: string | null;
|
204
|
+
id: string;
|
205
205
|
createdAt: Date;
|
206
206
|
updatedAt: Date;
|
207
207
|
deletedAt: Date | null;
|
@@ -213,9 +213,9 @@ export declare const RelatedProductSchema: z.ZodObject<{
|
|
213
213
|
}, "strip", z.ZodTypeAny, {
|
214
214
|
id: string;
|
215
215
|
product: {
|
216
|
+
name: string;
|
216
217
|
type: string;
|
217
218
|
id: string;
|
218
|
-
name: string;
|
219
219
|
createdAt: Date;
|
220
220
|
updatedAt: Date;
|
221
221
|
deletedAt: Date | null;
|
@@ -224,9 +224,9 @@ export declare const RelatedProductSchema: z.ZodObject<{
|
|
224
224
|
omnichannel: string;
|
225
225
|
usageType: string | null;
|
226
226
|
productPrice: {
|
227
|
-
id: string;
|
228
|
-
name: string | null;
|
229
227
|
currency: string | null;
|
228
|
+
name: string | null;
|
229
|
+
id: string;
|
230
230
|
createdAt: Date;
|
231
231
|
updatedAt: Date;
|
232
232
|
deletedAt: Date | null;
|
@@ -242,9 +242,9 @@ export declare const RelatedProductSchema: z.ZodObject<{
|
|
242
242
|
}, {
|
243
243
|
id: string;
|
244
244
|
product: {
|
245
|
+
name: string;
|
245
246
|
type: string;
|
246
247
|
id: string;
|
247
|
-
name: string;
|
248
248
|
createdAt: Date;
|
249
249
|
updatedAt: Date;
|
250
250
|
deletedAt: Date | null;
|
@@ -253,9 +253,9 @@ export declare const RelatedProductSchema: z.ZodObject<{
|
|
253
253
|
omnichannel: string;
|
254
254
|
usageType: string | null;
|
255
255
|
productPrice: {
|
256
|
-
id: string;
|
257
|
-
name: string | null;
|
258
256
|
currency: string | null;
|
257
|
+
name: string | null;
|
258
|
+
id: string;
|
259
259
|
createdAt: Date;
|
260
260
|
updatedAt: Date;
|
261
261
|
deletedAt: Date | null;
|
@@ -291,9 +291,9 @@ export declare const ProductSchema: z.ZodObject<{
|
|
291
291
|
price: z.ZodNumber;
|
292
292
|
currency: z.ZodNullable<z.ZodString>;
|
293
293
|
}, "strip", z.ZodTypeAny, {
|
294
|
-
id: string;
|
295
|
-
name: string | null;
|
296
294
|
currency: string | null;
|
295
|
+
name: string | null;
|
296
|
+
id: string;
|
297
297
|
createdAt: Date;
|
298
298
|
updatedAt: Date;
|
299
299
|
deletedAt: Date | null;
|
@@ -301,9 +301,9 @@ export declare const ProductSchema: z.ZodObject<{
|
|
301
301
|
perUnit: number;
|
302
302
|
price: number;
|
303
303
|
}, {
|
304
|
-
id: string;
|
305
|
-
name: string | null;
|
306
304
|
currency: string | null;
|
305
|
+
name: string | null;
|
306
|
+
id: string;
|
307
307
|
createdAt: Date;
|
308
308
|
updatedAt: Date;
|
309
309
|
deletedAt: Date | null;
|
@@ -339,9 +339,9 @@ export declare const ProductSchema: z.ZodObject<{
|
|
339
339
|
price: z.ZodNumber;
|
340
340
|
currency: z.ZodNullable<z.ZodString>;
|
341
341
|
}, "strip", z.ZodTypeAny, {
|
342
|
-
id: string;
|
343
|
-
name: string | null;
|
344
342
|
currency: string | null;
|
343
|
+
name: string | null;
|
344
|
+
id: string;
|
345
345
|
createdAt: Date;
|
346
346
|
updatedAt: Date;
|
347
347
|
deletedAt: Date | null;
|
@@ -349,9 +349,9 @@ export declare const ProductSchema: z.ZodObject<{
|
|
349
349
|
perUnit: number;
|
350
350
|
price: number;
|
351
351
|
}, {
|
352
|
-
id: string;
|
353
|
-
name: string | null;
|
354
352
|
currency: string | null;
|
353
|
+
name: string | null;
|
354
|
+
id: string;
|
355
355
|
createdAt: Date;
|
356
356
|
updatedAt: Date;
|
357
357
|
deletedAt: Date | null;
|
@@ -360,9 +360,9 @@ export declare const ProductSchema: z.ZodObject<{
|
|
360
360
|
price: number;
|
361
361
|
}>;
|
362
362
|
}, "strip", z.ZodTypeAny, {
|
363
|
+
name: string;
|
363
364
|
type: string;
|
364
365
|
id: string;
|
365
|
-
name: string;
|
366
366
|
createdAt: Date;
|
367
367
|
updatedAt: Date;
|
368
368
|
deletedAt: Date | null;
|
@@ -371,9 +371,9 @@ export declare const ProductSchema: z.ZodObject<{
|
|
371
371
|
omnichannel: string;
|
372
372
|
usageType: string | null;
|
373
373
|
productPrice: {
|
374
|
-
id: string;
|
375
|
-
name: string | null;
|
376
374
|
currency: string | null;
|
375
|
+
name: string | null;
|
376
|
+
id: string;
|
377
377
|
createdAt: Date;
|
378
378
|
updatedAt: Date;
|
379
379
|
deletedAt: Date | null;
|
@@ -382,9 +382,9 @@ export declare const ProductSchema: z.ZodObject<{
|
|
382
382
|
price: number;
|
383
383
|
};
|
384
384
|
}, {
|
385
|
+
name: string;
|
385
386
|
type: string;
|
386
387
|
id: string;
|
387
|
-
name: string;
|
388
388
|
createdAt: Date;
|
389
389
|
updatedAt: Date;
|
390
390
|
deletedAt: Date | null;
|
@@ -393,9 +393,9 @@ export declare const ProductSchema: z.ZodObject<{
|
|
393
393
|
omnichannel: string;
|
394
394
|
usageType: string | null;
|
395
395
|
productPrice: {
|
396
|
-
id: string;
|
397
|
-
name: string | null;
|
398
396
|
currency: string | null;
|
397
|
+
name: string | null;
|
398
|
+
id: string;
|
399
399
|
createdAt: Date;
|
400
400
|
updatedAt: Date;
|
401
401
|
deletedAt: Date | null;
|
@@ -407,9 +407,9 @@ export declare const ProductSchema: z.ZodObject<{
|
|
407
407
|
}, "strip", z.ZodTypeAny, {
|
408
408
|
id: string;
|
409
409
|
product: {
|
410
|
+
name: string;
|
410
411
|
type: string;
|
411
412
|
id: string;
|
412
|
-
name: string;
|
413
413
|
createdAt: Date;
|
414
414
|
updatedAt: Date;
|
415
415
|
deletedAt: Date | null;
|
@@ -418,9 +418,9 @@ export declare const ProductSchema: z.ZodObject<{
|
|
418
418
|
omnichannel: string;
|
419
419
|
usageType: string | null;
|
420
420
|
productPrice: {
|
421
|
-
id: string;
|
422
|
-
name: string | null;
|
423
421
|
currency: string | null;
|
422
|
+
name: string | null;
|
423
|
+
id: string;
|
424
424
|
createdAt: Date;
|
425
425
|
updatedAt: Date;
|
426
426
|
deletedAt: Date | null;
|
@@ -436,9 +436,9 @@ export declare const ProductSchema: z.ZodObject<{
|
|
436
436
|
}, {
|
437
437
|
id: string;
|
438
438
|
product: {
|
439
|
+
name: string;
|
439
440
|
type: string;
|
440
441
|
id: string;
|
441
|
-
name: string;
|
442
442
|
createdAt: Date;
|
443
443
|
updatedAt: Date;
|
444
444
|
deletedAt: Date | null;
|
@@ -447,9 +447,9 @@ export declare const ProductSchema: z.ZodObject<{
|
|
447
447
|
omnichannel: string;
|
448
448
|
usageType: string | null;
|
449
449
|
productPrice: {
|
450
|
-
id: string;
|
451
|
-
name: string | null;
|
452
450
|
currency: string | null;
|
451
|
+
name: string | null;
|
452
|
+
id: string;
|
453
453
|
createdAt: Date;
|
454
454
|
updatedAt: Date;
|
455
455
|
deletedAt: Date | null;
|
@@ -464,9 +464,9 @@ export declare const ProductSchema: z.ZodObject<{
|
|
464
464
|
includedQuantity: number;
|
465
465
|
}>, "many">;
|
466
466
|
}, "strip", z.ZodTypeAny, {
|
467
|
+
name: string;
|
467
468
|
type: string;
|
468
469
|
id: string;
|
469
|
-
name: string;
|
470
470
|
createdAt: Date;
|
471
471
|
updatedAt: Date;
|
472
472
|
deletedAt: Date | null;
|
@@ -475,9 +475,9 @@ export declare const ProductSchema: z.ZodObject<{
|
|
475
475
|
omnichannel: string;
|
476
476
|
usageType: string | null;
|
477
477
|
productPrice: {
|
478
|
-
id: string;
|
479
|
-
name: string | null;
|
480
478
|
currency: string | null;
|
479
|
+
name: string | null;
|
480
|
+
id: string;
|
481
481
|
createdAt: Date;
|
482
482
|
updatedAt: Date;
|
483
483
|
deletedAt: Date | null;
|
@@ -488,9 +488,9 @@ export declare const ProductSchema: z.ZodObject<{
|
|
488
488
|
relatedProducts: {
|
489
489
|
id: string;
|
490
490
|
product: {
|
491
|
+
name: string;
|
491
492
|
type: string;
|
492
493
|
id: string;
|
493
|
-
name: string;
|
494
494
|
createdAt: Date;
|
495
495
|
updatedAt: Date;
|
496
496
|
deletedAt: Date | null;
|
@@ -499,9 +499,9 @@ export declare const ProductSchema: z.ZodObject<{
|
|
499
499
|
omnichannel: string;
|
500
500
|
usageType: string | null;
|
501
501
|
productPrice: {
|
502
|
-
id: string;
|
503
|
-
name: string | null;
|
504
502
|
currency: string | null;
|
503
|
+
name: string | null;
|
504
|
+
id: string;
|
505
505
|
createdAt: Date;
|
506
506
|
updatedAt: Date;
|
507
507
|
deletedAt: Date | null;
|
@@ -516,9 +516,9 @@ export declare const ProductSchema: z.ZodObject<{
|
|
516
516
|
includedQuantity: number;
|
517
517
|
}[];
|
518
518
|
}, {
|
519
|
+
name: string;
|
519
520
|
type: string;
|
520
521
|
id: string;
|
521
|
-
name: string;
|
522
522
|
createdAt: Date;
|
523
523
|
updatedAt: Date;
|
524
524
|
deletedAt: Date | null;
|
@@ -527,9 +527,9 @@ export declare const ProductSchema: z.ZodObject<{
|
|
527
527
|
omnichannel: string;
|
528
528
|
usageType: string | null;
|
529
529
|
productPrice: {
|
530
|
-
id: string;
|
531
|
-
name: string | null;
|
532
530
|
currency: string | null;
|
531
|
+
name: string | null;
|
532
|
+
id: string;
|
533
533
|
createdAt: Date;
|
534
534
|
updatedAt: Date;
|
535
535
|
deletedAt: Date | null;
|
@@ -540,9 +540,9 @@ export declare const ProductSchema: z.ZodObject<{
|
|
540
540
|
relatedProducts: {
|
541
541
|
id: string;
|
542
542
|
product: {
|
543
|
+
name: string;
|
543
544
|
type: string;
|
544
545
|
id: string;
|
545
|
-
name: string;
|
546
546
|
createdAt: Date;
|
547
547
|
updatedAt: Date;
|
548
548
|
deletedAt: Date | null;
|
@@ -551,9 +551,9 @@ export declare const ProductSchema: z.ZodObject<{
|
|
551
551
|
omnichannel: string;
|
552
552
|
usageType: string | null;
|
553
553
|
productPrice: {
|
554
|
-
id: string;
|
555
|
-
name: string | null;
|
556
554
|
currency: string | null;
|
555
|
+
name: string | null;
|
556
|
+
id: string;
|
557
557
|
createdAt: Date;
|
558
558
|
updatedAt: Date;
|
559
559
|
deletedAt: Date | null;
|
@@ -598,9 +598,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
598
598
|
price: z.ZodNumber;
|
599
599
|
currency: z.ZodNullable<z.ZodString>;
|
600
600
|
}, "strip", z.ZodTypeAny, {
|
601
|
-
id: string;
|
602
|
-
name: string | null;
|
603
601
|
currency: string | null;
|
602
|
+
name: string | null;
|
603
|
+
id: string;
|
604
604
|
createdAt: Date;
|
605
605
|
updatedAt: Date;
|
606
606
|
deletedAt: Date | null;
|
@@ -608,9 +608,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
608
608
|
perUnit: number;
|
609
609
|
price: number;
|
610
610
|
}, {
|
611
|
-
id: string;
|
612
|
-
name: string | null;
|
613
611
|
currency: string | null;
|
612
|
+
name: string | null;
|
613
|
+
id: string;
|
614
614
|
createdAt: Date;
|
615
615
|
updatedAt: Date;
|
616
616
|
deletedAt: Date | null;
|
@@ -646,9 +646,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
646
646
|
price: z.ZodNumber;
|
647
647
|
currency: z.ZodNullable<z.ZodString>;
|
648
648
|
}, "strip", z.ZodTypeAny, {
|
649
|
-
id: string;
|
650
|
-
name: string | null;
|
651
649
|
currency: string | null;
|
650
|
+
name: string | null;
|
651
|
+
id: string;
|
652
652
|
createdAt: Date;
|
653
653
|
updatedAt: Date;
|
654
654
|
deletedAt: Date | null;
|
@@ -656,9 +656,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
656
656
|
perUnit: number;
|
657
657
|
price: number;
|
658
658
|
}, {
|
659
|
-
id: string;
|
660
|
-
name: string | null;
|
661
659
|
currency: string | null;
|
660
|
+
name: string | null;
|
661
|
+
id: string;
|
662
662
|
createdAt: Date;
|
663
663
|
updatedAt: Date;
|
664
664
|
deletedAt: Date | null;
|
@@ -667,9 +667,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
667
667
|
price: number;
|
668
668
|
}>;
|
669
669
|
}, "strip", z.ZodTypeAny, {
|
670
|
+
name: string;
|
670
671
|
type: string;
|
671
672
|
id: string;
|
672
|
-
name: string;
|
673
673
|
createdAt: Date;
|
674
674
|
updatedAt: Date;
|
675
675
|
deletedAt: Date | null;
|
@@ -678,9 +678,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
678
678
|
omnichannel: string;
|
679
679
|
usageType: string | null;
|
680
680
|
productPrice: {
|
681
|
-
id: string;
|
682
|
-
name: string | null;
|
683
681
|
currency: string | null;
|
682
|
+
name: string | null;
|
683
|
+
id: string;
|
684
684
|
createdAt: Date;
|
685
685
|
updatedAt: Date;
|
686
686
|
deletedAt: Date | null;
|
@@ -689,9 +689,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
689
689
|
price: number;
|
690
690
|
};
|
691
691
|
}, {
|
692
|
+
name: string;
|
692
693
|
type: string;
|
693
694
|
id: string;
|
694
|
-
name: string;
|
695
695
|
createdAt: Date;
|
696
696
|
updatedAt: Date;
|
697
697
|
deletedAt: Date | null;
|
@@ -700,9 +700,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
700
700
|
omnichannel: string;
|
701
701
|
usageType: string | null;
|
702
702
|
productPrice: {
|
703
|
-
id: string;
|
704
|
-
name: string | null;
|
705
703
|
currency: string | null;
|
704
|
+
name: string | null;
|
705
|
+
id: string;
|
706
706
|
createdAt: Date;
|
707
707
|
updatedAt: Date;
|
708
708
|
deletedAt: Date | null;
|
@@ -714,9 +714,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
714
714
|
}, "strip", z.ZodTypeAny, {
|
715
715
|
id: string;
|
716
716
|
product: {
|
717
|
+
name: string;
|
717
718
|
type: string;
|
718
719
|
id: string;
|
719
|
-
name: string;
|
720
720
|
createdAt: Date;
|
721
721
|
updatedAt: Date;
|
722
722
|
deletedAt: Date | null;
|
@@ -725,9 +725,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
725
725
|
omnichannel: string;
|
726
726
|
usageType: string | null;
|
727
727
|
productPrice: {
|
728
|
-
id: string;
|
729
|
-
name: string | null;
|
730
728
|
currency: string | null;
|
729
|
+
name: string | null;
|
730
|
+
id: string;
|
731
731
|
createdAt: Date;
|
732
732
|
updatedAt: Date;
|
733
733
|
deletedAt: Date | null;
|
@@ -743,9 +743,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
743
743
|
}, {
|
744
744
|
id: string;
|
745
745
|
product: {
|
746
|
+
name: string;
|
746
747
|
type: string;
|
747
748
|
id: string;
|
748
|
-
name: string;
|
749
749
|
createdAt: Date;
|
750
750
|
updatedAt: Date;
|
751
751
|
deletedAt: Date | null;
|
@@ -754,9 +754,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
754
754
|
omnichannel: string;
|
755
755
|
usageType: string | null;
|
756
756
|
productPrice: {
|
757
|
-
id: string;
|
758
|
-
name: string | null;
|
759
757
|
currency: string | null;
|
758
|
+
name: string | null;
|
759
|
+
id: string;
|
760
760
|
createdAt: Date;
|
761
761
|
updatedAt: Date;
|
762
762
|
deletedAt: Date | null;
|
@@ -771,9 +771,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
771
771
|
includedQuantity: number;
|
772
772
|
}>, "many">;
|
773
773
|
}, "strip", z.ZodTypeAny, {
|
774
|
+
name: string;
|
774
775
|
type: string;
|
775
776
|
id: string;
|
776
|
-
name: string;
|
777
777
|
createdAt: Date;
|
778
778
|
updatedAt: Date;
|
779
779
|
deletedAt: Date | null;
|
@@ -782,9 +782,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
782
782
|
omnichannel: string;
|
783
783
|
usageType: string | null;
|
784
784
|
productPrice: {
|
785
|
-
id: string;
|
786
|
-
name: string | null;
|
787
785
|
currency: string | null;
|
786
|
+
name: string | null;
|
787
|
+
id: string;
|
788
788
|
createdAt: Date;
|
789
789
|
updatedAt: Date;
|
790
790
|
deletedAt: Date | null;
|
@@ -795,9 +795,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
795
795
|
relatedProducts: {
|
796
796
|
id: string;
|
797
797
|
product: {
|
798
|
+
name: string;
|
798
799
|
type: string;
|
799
800
|
id: string;
|
800
|
-
name: string;
|
801
801
|
createdAt: Date;
|
802
802
|
updatedAt: Date;
|
803
803
|
deletedAt: Date | null;
|
@@ -806,9 +806,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
806
806
|
omnichannel: string;
|
807
807
|
usageType: string | null;
|
808
808
|
productPrice: {
|
809
|
-
id: string;
|
810
|
-
name: string | null;
|
811
809
|
currency: string | null;
|
810
|
+
name: string | null;
|
811
|
+
id: string;
|
812
812
|
createdAt: Date;
|
813
813
|
updatedAt: Date;
|
814
814
|
deletedAt: Date | null;
|
@@ -823,9 +823,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
823
823
|
includedQuantity: number;
|
824
824
|
}[];
|
825
825
|
}, {
|
826
|
+
name: string;
|
826
827
|
type: string;
|
827
828
|
id: string;
|
828
|
-
name: string;
|
829
829
|
createdAt: Date;
|
830
830
|
updatedAt: Date;
|
831
831
|
deletedAt: Date | null;
|
@@ -834,9 +834,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
834
834
|
omnichannel: string;
|
835
835
|
usageType: string | null;
|
836
836
|
productPrice: {
|
837
|
-
id: string;
|
838
|
-
name: string | null;
|
839
837
|
currency: string | null;
|
838
|
+
name: string | null;
|
839
|
+
id: string;
|
840
840
|
createdAt: Date;
|
841
841
|
updatedAt: Date;
|
842
842
|
deletedAt: Date | null;
|
@@ -847,9 +847,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
847
847
|
relatedProducts: {
|
848
848
|
id: string;
|
849
849
|
product: {
|
850
|
+
name: string;
|
850
851
|
type: string;
|
851
852
|
id: string;
|
852
|
-
name: string;
|
853
853
|
createdAt: Date;
|
854
854
|
updatedAt: Date;
|
855
855
|
deletedAt: Date | null;
|
@@ -858,9 +858,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
858
858
|
omnichannel: string;
|
859
859
|
usageType: string | null;
|
860
860
|
productPrice: {
|
861
|
-
id: string;
|
862
|
-
name: string | null;
|
863
861
|
currency: string | null;
|
862
|
+
name: string | null;
|
863
|
+
id: string;
|
864
864
|
createdAt: Date;
|
865
865
|
updatedAt: Date;
|
866
866
|
deletedAt: Date | null;
|
@@ -878,9 +878,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
878
878
|
}, "strip", z.ZodTypeAny, {
|
879
879
|
id: string;
|
880
880
|
product: {
|
881
|
+
name: string;
|
881
882
|
type: string;
|
882
883
|
id: string;
|
883
|
-
name: string;
|
884
884
|
createdAt: Date;
|
885
885
|
updatedAt: Date;
|
886
886
|
deletedAt: Date | null;
|
@@ -889,9 +889,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
889
889
|
omnichannel: string;
|
890
890
|
usageType: string | null;
|
891
891
|
productPrice: {
|
892
|
-
id: string;
|
893
|
-
name: string | null;
|
894
892
|
currency: string | null;
|
893
|
+
name: string | null;
|
894
|
+
id: string;
|
895
895
|
createdAt: Date;
|
896
896
|
updatedAt: Date;
|
897
897
|
deletedAt: Date | null;
|
@@ -902,9 +902,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
902
902
|
relatedProducts: {
|
903
903
|
id: string;
|
904
904
|
product: {
|
905
|
+
name: string;
|
905
906
|
type: string;
|
906
907
|
id: string;
|
907
|
-
name: string;
|
908
908
|
createdAt: Date;
|
909
909
|
updatedAt: Date;
|
910
910
|
deletedAt: Date | null;
|
@@ -913,9 +913,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
913
913
|
omnichannel: string;
|
914
914
|
usageType: string | null;
|
915
915
|
productPrice: {
|
916
|
-
id: string;
|
917
|
-
name: string | null;
|
918
916
|
currency: string | null;
|
917
|
+
name: string | null;
|
918
|
+
id: string;
|
919
919
|
createdAt: Date;
|
920
920
|
updatedAt: Date;
|
921
921
|
deletedAt: Date | null;
|
@@ -939,9 +939,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
939
939
|
}, {
|
940
940
|
id: string;
|
941
941
|
product: {
|
942
|
+
name: string;
|
942
943
|
type: string;
|
943
944
|
id: string;
|
944
|
-
name: string;
|
945
945
|
createdAt: Date;
|
946
946
|
updatedAt: Date;
|
947
947
|
deletedAt: Date | null;
|
@@ -950,9 +950,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
950
950
|
omnichannel: string;
|
951
951
|
usageType: string | null;
|
952
952
|
productPrice: {
|
953
|
-
id: string;
|
954
|
-
name: string | null;
|
955
953
|
currency: string | null;
|
954
|
+
name: string | null;
|
955
|
+
id: string;
|
956
956
|
createdAt: Date;
|
957
957
|
updatedAt: Date;
|
958
958
|
deletedAt: Date | null;
|
@@ -963,9 +963,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
963
963
|
relatedProducts: {
|
964
964
|
id: string;
|
965
965
|
product: {
|
966
|
+
name: string;
|
966
967
|
type: string;
|
967
968
|
id: string;
|
968
|
-
name: string;
|
969
969
|
createdAt: Date;
|
970
970
|
updatedAt: Date;
|
971
971
|
deletedAt: Date | null;
|
@@ -974,9 +974,9 @@ export declare const SubscriptionProuctSchema: z.ZodObject<{
|
|
974
974
|
omnichannel: string;
|
975
975
|
usageType: string | null;
|
976
976
|
productPrice: {
|
977
|
-
id: string;
|
978
|
-
name: string | null;
|
979
977
|
currency: string | null;
|
978
|
+
name: string | null;
|
979
|
+
id: string;
|
980
980
|
createdAt: Date;
|
981
981
|
updatedAt: Date;
|
982
982
|
deletedAt: Date | null;
|
@@ -1043,9 +1043,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1043
1043
|
price: z.ZodNumber;
|
1044
1044
|
currency: z.ZodNullable<z.ZodString>;
|
1045
1045
|
}, "strip", z.ZodTypeAny, {
|
1046
|
-
id: string;
|
1047
|
-
name: string | null;
|
1048
1046
|
currency: string | null;
|
1047
|
+
name: string | null;
|
1048
|
+
id: string;
|
1049
1049
|
createdAt: Date;
|
1050
1050
|
updatedAt: Date;
|
1051
1051
|
deletedAt: Date | null;
|
@@ -1053,9 +1053,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1053
1053
|
perUnit: number;
|
1054
1054
|
price: number;
|
1055
1055
|
}, {
|
1056
|
-
id: string;
|
1057
|
-
name: string | null;
|
1058
1056
|
currency: string | null;
|
1057
|
+
name: string | null;
|
1058
|
+
id: string;
|
1059
1059
|
createdAt: Date;
|
1060
1060
|
updatedAt: Date;
|
1061
1061
|
deletedAt: Date | null;
|
@@ -1091,9 +1091,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1091
1091
|
price: z.ZodNumber;
|
1092
1092
|
currency: z.ZodNullable<z.ZodString>;
|
1093
1093
|
}, "strip", z.ZodTypeAny, {
|
1094
|
-
id: string;
|
1095
|
-
name: string | null;
|
1096
1094
|
currency: string | null;
|
1095
|
+
name: string | null;
|
1096
|
+
id: string;
|
1097
1097
|
createdAt: Date;
|
1098
1098
|
updatedAt: Date;
|
1099
1099
|
deletedAt: Date | null;
|
@@ -1101,9 +1101,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1101
1101
|
perUnit: number;
|
1102
1102
|
price: number;
|
1103
1103
|
}, {
|
1104
|
-
id: string;
|
1105
|
-
name: string | null;
|
1106
1104
|
currency: string | null;
|
1105
|
+
name: string | null;
|
1106
|
+
id: string;
|
1107
1107
|
createdAt: Date;
|
1108
1108
|
updatedAt: Date;
|
1109
1109
|
deletedAt: Date | null;
|
@@ -1112,9 +1112,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1112
1112
|
price: number;
|
1113
1113
|
}>;
|
1114
1114
|
}, "strip", z.ZodTypeAny, {
|
1115
|
+
name: string;
|
1115
1116
|
type: string;
|
1116
1117
|
id: string;
|
1117
|
-
name: string;
|
1118
1118
|
createdAt: Date;
|
1119
1119
|
updatedAt: Date;
|
1120
1120
|
deletedAt: Date | null;
|
@@ -1123,9 +1123,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1123
1123
|
omnichannel: string;
|
1124
1124
|
usageType: string | null;
|
1125
1125
|
productPrice: {
|
1126
|
-
id: string;
|
1127
|
-
name: string | null;
|
1128
1126
|
currency: string | null;
|
1127
|
+
name: string | null;
|
1128
|
+
id: string;
|
1129
1129
|
createdAt: Date;
|
1130
1130
|
updatedAt: Date;
|
1131
1131
|
deletedAt: Date | null;
|
@@ -1134,9 +1134,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1134
1134
|
price: number;
|
1135
1135
|
};
|
1136
1136
|
}, {
|
1137
|
+
name: string;
|
1137
1138
|
type: string;
|
1138
1139
|
id: string;
|
1139
|
-
name: string;
|
1140
1140
|
createdAt: Date;
|
1141
1141
|
updatedAt: Date;
|
1142
1142
|
deletedAt: Date | null;
|
@@ -1145,9 +1145,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1145
1145
|
omnichannel: string;
|
1146
1146
|
usageType: string | null;
|
1147
1147
|
productPrice: {
|
1148
|
-
id: string;
|
1149
|
-
name: string | null;
|
1150
1148
|
currency: string | null;
|
1149
|
+
name: string | null;
|
1150
|
+
id: string;
|
1151
1151
|
createdAt: Date;
|
1152
1152
|
updatedAt: Date;
|
1153
1153
|
deletedAt: Date | null;
|
@@ -1159,9 +1159,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1159
1159
|
}, "strip", z.ZodTypeAny, {
|
1160
1160
|
id: string;
|
1161
1161
|
product: {
|
1162
|
+
name: string;
|
1162
1163
|
type: string;
|
1163
1164
|
id: string;
|
1164
|
-
name: string;
|
1165
1165
|
createdAt: Date;
|
1166
1166
|
updatedAt: Date;
|
1167
1167
|
deletedAt: Date | null;
|
@@ -1170,9 +1170,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1170
1170
|
omnichannel: string;
|
1171
1171
|
usageType: string | null;
|
1172
1172
|
productPrice: {
|
1173
|
-
id: string;
|
1174
|
-
name: string | null;
|
1175
1173
|
currency: string | null;
|
1174
|
+
name: string | null;
|
1175
|
+
id: string;
|
1176
1176
|
createdAt: Date;
|
1177
1177
|
updatedAt: Date;
|
1178
1178
|
deletedAt: Date | null;
|
@@ -1188,9 +1188,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1188
1188
|
}, {
|
1189
1189
|
id: string;
|
1190
1190
|
product: {
|
1191
|
+
name: string;
|
1191
1192
|
type: string;
|
1192
1193
|
id: string;
|
1193
|
-
name: string;
|
1194
1194
|
createdAt: Date;
|
1195
1195
|
updatedAt: Date;
|
1196
1196
|
deletedAt: Date | null;
|
@@ -1199,9 +1199,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1199
1199
|
omnichannel: string;
|
1200
1200
|
usageType: string | null;
|
1201
1201
|
productPrice: {
|
1202
|
-
id: string;
|
1203
|
-
name: string | null;
|
1204
1202
|
currency: string | null;
|
1203
|
+
name: string | null;
|
1204
|
+
id: string;
|
1205
1205
|
createdAt: Date;
|
1206
1206
|
updatedAt: Date;
|
1207
1207
|
deletedAt: Date | null;
|
@@ -1216,9 +1216,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1216
1216
|
includedQuantity: number;
|
1217
1217
|
}>, "many">;
|
1218
1218
|
}, "strip", z.ZodTypeAny, {
|
1219
|
+
name: string;
|
1219
1220
|
type: string;
|
1220
1221
|
id: string;
|
1221
|
-
name: string;
|
1222
1222
|
createdAt: Date;
|
1223
1223
|
updatedAt: Date;
|
1224
1224
|
deletedAt: Date | null;
|
@@ -1227,9 +1227,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1227
1227
|
omnichannel: string;
|
1228
1228
|
usageType: string | null;
|
1229
1229
|
productPrice: {
|
1230
|
-
id: string;
|
1231
|
-
name: string | null;
|
1232
1230
|
currency: string | null;
|
1231
|
+
name: string | null;
|
1232
|
+
id: string;
|
1233
1233
|
createdAt: Date;
|
1234
1234
|
updatedAt: Date;
|
1235
1235
|
deletedAt: Date | null;
|
@@ -1240,9 +1240,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1240
1240
|
relatedProducts: {
|
1241
1241
|
id: string;
|
1242
1242
|
product: {
|
1243
|
+
name: string;
|
1243
1244
|
type: string;
|
1244
1245
|
id: string;
|
1245
|
-
name: string;
|
1246
1246
|
createdAt: Date;
|
1247
1247
|
updatedAt: Date;
|
1248
1248
|
deletedAt: Date | null;
|
@@ -1251,9 +1251,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1251
1251
|
omnichannel: string;
|
1252
1252
|
usageType: string | null;
|
1253
1253
|
productPrice: {
|
1254
|
-
id: string;
|
1255
|
-
name: string | null;
|
1256
1254
|
currency: string | null;
|
1255
|
+
name: string | null;
|
1256
|
+
id: string;
|
1257
1257
|
createdAt: Date;
|
1258
1258
|
updatedAt: Date;
|
1259
1259
|
deletedAt: Date | null;
|
@@ -1268,9 +1268,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1268
1268
|
includedQuantity: number;
|
1269
1269
|
}[];
|
1270
1270
|
}, {
|
1271
|
+
name: string;
|
1271
1272
|
type: string;
|
1272
1273
|
id: string;
|
1273
|
-
name: string;
|
1274
1274
|
createdAt: Date;
|
1275
1275
|
updatedAt: Date;
|
1276
1276
|
deletedAt: Date | null;
|
@@ -1279,9 +1279,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1279
1279
|
omnichannel: string;
|
1280
1280
|
usageType: string | null;
|
1281
1281
|
productPrice: {
|
1282
|
-
id: string;
|
1283
|
-
name: string | null;
|
1284
1282
|
currency: string | null;
|
1283
|
+
name: string | null;
|
1284
|
+
id: string;
|
1285
1285
|
createdAt: Date;
|
1286
1286
|
updatedAt: Date;
|
1287
1287
|
deletedAt: Date | null;
|
@@ -1292,9 +1292,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1292
1292
|
relatedProducts: {
|
1293
1293
|
id: string;
|
1294
1294
|
product: {
|
1295
|
+
name: string;
|
1295
1296
|
type: string;
|
1296
1297
|
id: string;
|
1297
|
-
name: string;
|
1298
1298
|
createdAt: Date;
|
1299
1299
|
updatedAt: Date;
|
1300
1300
|
deletedAt: Date | null;
|
@@ -1303,9 +1303,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1303
1303
|
omnichannel: string;
|
1304
1304
|
usageType: string | null;
|
1305
1305
|
productPrice: {
|
1306
|
-
id: string;
|
1307
|
-
name: string | null;
|
1308
1306
|
currency: string | null;
|
1307
|
+
name: string | null;
|
1308
|
+
id: string;
|
1309
1309
|
createdAt: Date;
|
1310
1310
|
updatedAt: Date;
|
1311
1311
|
deletedAt: Date | null;
|
@@ -1323,9 +1323,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1323
1323
|
}, "strip", z.ZodTypeAny, {
|
1324
1324
|
id: string;
|
1325
1325
|
product: {
|
1326
|
+
name: string;
|
1326
1327
|
type: string;
|
1327
1328
|
id: string;
|
1328
|
-
name: string;
|
1329
1329
|
createdAt: Date;
|
1330
1330
|
updatedAt: Date;
|
1331
1331
|
deletedAt: Date | null;
|
@@ -1334,9 +1334,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1334
1334
|
omnichannel: string;
|
1335
1335
|
usageType: string | null;
|
1336
1336
|
productPrice: {
|
1337
|
-
id: string;
|
1338
|
-
name: string | null;
|
1339
1337
|
currency: string | null;
|
1338
|
+
name: string | null;
|
1339
|
+
id: string;
|
1340
1340
|
createdAt: Date;
|
1341
1341
|
updatedAt: Date;
|
1342
1342
|
deletedAt: Date | null;
|
@@ -1347,9 +1347,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1347
1347
|
relatedProducts: {
|
1348
1348
|
id: string;
|
1349
1349
|
product: {
|
1350
|
+
name: string;
|
1350
1351
|
type: string;
|
1351
1352
|
id: string;
|
1352
|
-
name: string;
|
1353
1353
|
createdAt: Date;
|
1354
1354
|
updatedAt: Date;
|
1355
1355
|
deletedAt: Date | null;
|
@@ -1358,9 +1358,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1358
1358
|
omnichannel: string;
|
1359
1359
|
usageType: string | null;
|
1360
1360
|
productPrice: {
|
1361
|
-
id: string;
|
1362
|
-
name: string | null;
|
1363
1361
|
currency: string | null;
|
1362
|
+
name: string | null;
|
1363
|
+
id: string;
|
1364
1364
|
createdAt: Date;
|
1365
1365
|
updatedAt: Date;
|
1366
1366
|
deletedAt: Date | null;
|
@@ -1384,9 +1384,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1384
1384
|
}, {
|
1385
1385
|
id: string;
|
1386
1386
|
product: {
|
1387
|
+
name: string;
|
1387
1388
|
type: string;
|
1388
1389
|
id: string;
|
1389
|
-
name: string;
|
1390
1390
|
createdAt: Date;
|
1391
1391
|
updatedAt: Date;
|
1392
1392
|
deletedAt: Date | null;
|
@@ -1395,9 +1395,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1395
1395
|
omnichannel: string;
|
1396
1396
|
usageType: string | null;
|
1397
1397
|
productPrice: {
|
1398
|
-
id: string;
|
1399
|
-
name: string | null;
|
1400
1398
|
currency: string | null;
|
1399
|
+
name: string | null;
|
1400
|
+
id: string;
|
1401
1401
|
createdAt: Date;
|
1402
1402
|
updatedAt: Date;
|
1403
1403
|
deletedAt: Date | null;
|
@@ -1408,9 +1408,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1408
1408
|
relatedProducts: {
|
1409
1409
|
id: string;
|
1410
1410
|
product: {
|
1411
|
+
name: string;
|
1411
1412
|
type: string;
|
1412
1413
|
id: string;
|
1413
|
-
name: string;
|
1414
1414
|
createdAt: Date;
|
1415
1415
|
updatedAt: Date;
|
1416
1416
|
deletedAt: Date | null;
|
@@ -1419,9 +1419,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1419
1419
|
omnichannel: string;
|
1420
1420
|
usageType: string | null;
|
1421
1421
|
productPrice: {
|
1422
|
-
id: string;
|
1423
|
-
name: string | null;
|
1424
1422
|
currency: string | null;
|
1423
|
+
name: string | null;
|
1424
|
+
id: string;
|
1425
1425
|
createdAt: Date;
|
1426
1426
|
updatedAt: Date;
|
1427
1427
|
deletedAt: Date | null;
|
@@ -1454,9 +1454,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1454
1454
|
price: z.ZodNumber;
|
1455
1455
|
currency: z.ZodNullable<z.ZodString>;
|
1456
1456
|
}, "strip", z.ZodTypeAny, {
|
1457
|
-
id: string;
|
1458
|
-
name: string | null;
|
1459
1457
|
currency: string | null;
|
1458
|
+
name: string | null;
|
1459
|
+
id: string;
|
1460
1460
|
createdAt: Date;
|
1461
1461
|
updatedAt: Date;
|
1462
1462
|
deletedAt: Date | null;
|
@@ -1464,9 +1464,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1464
1464
|
perUnit: number;
|
1465
1465
|
price: number;
|
1466
1466
|
}, {
|
1467
|
-
id: string;
|
1468
|
-
name: string | null;
|
1469
1467
|
currency: string | null;
|
1468
|
+
name: string | null;
|
1469
|
+
id: string;
|
1470
1470
|
createdAt: Date;
|
1471
1471
|
updatedAt: Date;
|
1472
1472
|
deletedAt: Date | null;
|
@@ -1496,9 +1496,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1496
1496
|
price: z.ZodNumber;
|
1497
1497
|
currency: z.ZodNullable<z.ZodString>;
|
1498
1498
|
}, "strip", z.ZodTypeAny, {
|
1499
|
-
id: string;
|
1500
|
-
name: string | null;
|
1501
1499
|
currency: string | null;
|
1500
|
+
name: string | null;
|
1501
|
+
id: string;
|
1502
1502
|
createdAt: Date;
|
1503
1503
|
updatedAt: Date;
|
1504
1504
|
deletedAt: Date | null;
|
@@ -1506,9 +1506,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1506
1506
|
perUnit: number;
|
1507
1507
|
price: number;
|
1508
1508
|
}, {
|
1509
|
-
id: string;
|
1510
|
-
name: string | null;
|
1511
1509
|
currency: string | null;
|
1510
|
+
name: string | null;
|
1511
|
+
id: string;
|
1512
1512
|
createdAt: Date;
|
1513
1513
|
updatedAt: Date;
|
1514
1514
|
deletedAt: Date | null;
|
@@ -1544,9 +1544,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1544
1544
|
price: z.ZodNumber;
|
1545
1545
|
currency: z.ZodNullable<z.ZodString>;
|
1546
1546
|
}, "strip", z.ZodTypeAny, {
|
1547
|
-
id: string;
|
1548
|
-
name: string | null;
|
1549
1547
|
currency: string | null;
|
1548
|
+
name: string | null;
|
1549
|
+
id: string;
|
1550
1550
|
createdAt: Date;
|
1551
1551
|
updatedAt: Date;
|
1552
1552
|
deletedAt: Date | null;
|
@@ -1554,9 +1554,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1554
1554
|
perUnit: number;
|
1555
1555
|
price: number;
|
1556
1556
|
}, {
|
1557
|
-
id: string;
|
1558
|
-
name: string | null;
|
1559
1557
|
currency: string | null;
|
1558
|
+
name: string | null;
|
1559
|
+
id: string;
|
1560
1560
|
createdAt: Date;
|
1561
1561
|
updatedAt: Date;
|
1562
1562
|
deletedAt: Date | null;
|
@@ -1565,9 +1565,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1565
1565
|
price: number;
|
1566
1566
|
}>;
|
1567
1567
|
}, "strip", z.ZodTypeAny, {
|
1568
|
+
name: string;
|
1568
1569
|
type: string;
|
1569
1570
|
id: string;
|
1570
|
-
name: string;
|
1571
1571
|
createdAt: Date;
|
1572
1572
|
updatedAt: Date;
|
1573
1573
|
deletedAt: Date | null;
|
@@ -1576,9 +1576,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1576
1576
|
omnichannel: string;
|
1577
1577
|
usageType: string | null;
|
1578
1578
|
productPrice: {
|
1579
|
-
id: string;
|
1580
|
-
name: string | null;
|
1581
1579
|
currency: string | null;
|
1580
|
+
name: string | null;
|
1581
|
+
id: string;
|
1582
1582
|
createdAt: Date;
|
1583
1583
|
updatedAt: Date;
|
1584
1584
|
deletedAt: Date | null;
|
@@ -1587,9 +1587,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1587
1587
|
price: number;
|
1588
1588
|
};
|
1589
1589
|
}, {
|
1590
|
+
name: string;
|
1590
1591
|
type: string;
|
1591
1592
|
id: string;
|
1592
|
-
name: string;
|
1593
1593
|
createdAt: Date;
|
1594
1594
|
updatedAt: Date;
|
1595
1595
|
deletedAt: Date | null;
|
@@ -1598,9 +1598,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1598
1598
|
omnichannel: string;
|
1599
1599
|
usageType: string | null;
|
1600
1600
|
productPrice: {
|
1601
|
-
id: string;
|
1602
|
-
name: string | null;
|
1603
1601
|
currency: string | null;
|
1602
|
+
name: string | null;
|
1603
|
+
id: string;
|
1604
1604
|
createdAt: Date;
|
1605
1605
|
updatedAt: Date;
|
1606
1606
|
deletedAt: Date | null;
|
@@ -1612,9 +1612,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1612
1612
|
}, "strip", z.ZodTypeAny, {
|
1613
1613
|
id: string;
|
1614
1614
|
product: {
|
1615
|
+
name: string;
|
1615
1616
|
type: string;
|
1616
1617
|
id: string;
|
1617
|
-
name: string;
|
1618
1618
|
createdAt: Date;
|
1619
1619
|
updatedAt: Date;
|
1620
1620
|
deletedAt: Date | null;
|
@@ -1623,9 +1623,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1623
1623
|
omnichannel: string;
|
1624
1624
|
usageType: string | null;
|
1625
1625
|
productPrice: {
|
1626
|
-
id: string;
|
1627
|
-
name: string | null;
|
1628
1626
|
currency: string | null;
|
1627
|
+
name: string | null;
|
1628
|
+
id: string;
|
1629
1629
|
createdAt: Date;
|
1630
1630
|
updatedAt: Date;
|
1631
1631
|
deletedAt: Date | null;
|
@@ -1641,9 +1641,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1641
1641
|
}, {
|
1642
1642
|
id: string;
|
1643
1643
|
product: {
|
1644
|
+
name: string;
|
1644
1645
|
type: string;
|
1645
1646
|
id: string;
|
1646
|
-
name: string;
|
1647
1647
|
createdAt: Date;
|
1648
1648
|
updatedAt: Date;
|
1649
1649
|
deletedAt: Date | null;
|
@@ -1652,9 +1652,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1652
1652
|
omnichannel: string;
|
1653
1653
|
usageType: string | null;
|
1654
1654
|
productPrice: {
|
1655
|
-
id: string;
|
1656
|
-
name: string | null;
|
1657
1655
|
currency: string | null;
|
1656
|
+
name: string | null;
|
1657
|
+
id: string;
|
1658
1658
|
createdAt: Date;
|
1659
1659
|
updatedAt: Date;
|
1660
1660
|
deletedAt: Date | null;
|
@@ -1669,9 +1669,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1669
1669
|
includedQuantity: number;
|
1670
1670
|
}>, "many">;
|
1671
1671
|
}, "strip", z.ZodTypeAny, {
|
1672
|
+
name: string;
|
1672
1673
|
type: string;
|
1673
1674
|
id: string;
|
1674
|
-
name: string;
|
1675
1675
|
createdAt: Date;
|
1676
1676
|
updatedAt: Date;
|
1677
1677
|
deletedAt: Date | null;
|
@@ -1680,9 +1680,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1680
1680
|
omnichannel: string;
|
1681
1681
|
usageType: string | null;
|
1682
1682
|
productPrice: {
|
1683
|
-
id: string;
|
1684
|
-
name: string | null;
|
1685
1683
|
currency: string | null;
|
1684
|
+
name: string | null;
|
1685
|
+
id: string;
|
1686
1686
|
createdAt: Date;
|
1687
1687
|
updatedAt: Date;
|
1688
1688
|
deletedAt: Date | null;
|
@@ -1693,9 +1693,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1693
1693
|
relatedProducts: {
|
1694
1694
|
id: string;
|
1695
1695
|
product: {
|
1696
|
+
name: string;
|
1696
1697
|
type: string;
|
1697
1698
|
id: string;
|
1698
|
-
name: string;
|
1699
1699
|
createdAt: Date;
|
1700
1700
|
updatedAt: Date;
|
1701
1701
|
deletedAt: Date | null;
|
@@ -1704,9 +1704,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1704
1704
|
omnichannel: string;
|
1705
1705
|
usageType: string | null;
|
1706
1706
|
productPrice: {
|
1707
|
-
id: string;
|
1708
|
-
name: string | null;
|
1709
1707
|
currency: string | null;
|
1708
|
+
name: string | null;
|
1709
|
+
id: string;
|
1710
1710
|
createdAt: Date;
|
1711
1711
|
updatedAt: Date;
|
1712
1712
|
deletedAt: Date | null;
|
@@ -1721,9 +1721,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1721
1721
|
includedQuantity: number;
|
1722
1722
|
}[];
|
1723
1723
|
}, {
|
1724
|
+
name: string;
|
1724
1725
|
type: string;
|
1725
1726
|
id: string;
|
1726
|
-
name: string;
|
1727
1727
|
createdAt: Date;
|
1728
1728
|
updatedAt: Date;
|
1729
1729
|
deletedAt: Date | null;
|
@@ -1732,9 +1732,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1732
1732
|
omnichannel: string;
|
1733
1733
|
usageType: string | null;
|
1734
1734
|
productPrice: {
|
1735
|
-
id: string;
|
1736
|
-
name: string | null;
|
1737
1735
|
currency: string | null;
|
1736
|
+
name: string | null;
|
1737
|
+
id: string;
|
1738
1738
|
createdAt: Date;
|
1739
1739
|
updatedAt: Date;
|
1740
1740
|
deletedAt: Date | null;
|
@@ -1745,9 +1745,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1745
1745
|
relatedProducts: {
|
1746
1746
|
id: string;
|
1747
1747
|
product: {
|
1748
|
+
name: string;
|
1748
1749
|
type: string;
|
1749
1750
|
id: string;
|
1750
|
-
name: string;
|
1751
1751
|
createdAt: Date;
|
1752
1752
|
updatedAt: Date;
|
1753
1753
|
deletedAt: Date | null;
|
@@ -1756,9 +1756,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1756
1756
|
omnichannel: string;
|
1757
1757
|
usageType: string | null;
|
1758
1758
|
productPrice: {
|
1759
|
-
id: string;
|
1760
|
-
name: string | null;
|
1761
1759
|
currency: string | null;
|
1760
|
+
name: string | null;
|
1761
|
+
id: string;
|
1762
1762
|
createdAt: Date;
|
1763
1763
|
updatedAt: Date;
|
1764
1764
|
deletedAt: Date | null;
|
@@ -1774,14 +1774,14 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1774
1774
|
}[];
|
1775
1775
|
}>;
|
1776
1776
|
}, "strip", z.ZodTypeAny, {
|
1777
|
+
name: string | null;
|
1777
1778
|
type: string;
|
1778
1779
|
interval: string;
|
1779
1780
|
id: string;
|
1780
|
-
name: string | null;
|
1781
1781
|
product: {
|
1782
|
+
name: string;
|
1782
1783
|
type: string;
|
1783
1784
|
id: string;
|
1784
|
-
name: string;
|
1785
1785
|
createdAt: Date;
|
1786
1786
|
updatedAt: Date;
|
1787
1787
|
deletedAt: Date | null;
|
@@ -1790,9 +1790,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1790
1790
|
omnichannel: string;
|
1791
1791
|
usageType: string | null;
|
1792
1792
|
productPrice: {
|
1793
|
-
id: string;
|
1794
|
-
name: string | null;
|
1795
1793
|
currency: string | null;
|
1794
|
+
name: string | null;
|
1795
|
+
id: string;
|
1796
1796
|
createdAt: Date;
|
1797
1797
|
updatedAt: Date;
|
1798
1798
|
deletedAt: Date | null;
|
@@ -1803,9 +1803,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1803
1803
|
relatedProducts: {
|
1804
1804
|
id: string;
|
1805
1805
|
product: {
|
1806
|
+
name: string;
|
1806
1807
|
type: string;
|
1807
1808
|
id: string;
|
1808
|
-
name: string;
|
1809
1809
|
createdAt: Date;
|
1810
1810
|
updatedAt: Date;
|
1811
1811
|
deletedAt: Date | null;
|
@@ -1814,9 +1814,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1814
1814
|
omnichannel: string;
|
1815
1815
|
usageType: string | null;
|
1816
1816
|
productPrice: {
|
1817
|
-
id: string;
|
1818
|
-
name: string | null;
|
1819
1817
|
currency: string | null;
|
1818
|
+
name: string | null;
|
1819
|
+
id: string;
|
1820
1820
|
createdAt: Date;
|
1821
1821
|
updatedAt: Date;
|
1822
1822
|
deletedAt: Date | null;
|
@@ -1837,9 +1837,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1837
1837
|
deletedAt: Date | null;
|
1838
1838
|
provider: string;
|
1839
1839
|
productPrice: {
|
1840
|
-
id: string;
|
1841
|
-
name: string | null;
|
1842
1840
|
currency: string | null;
|
1841
|
+
name: string | null;
|
1842
|
+
id: string;
|
1843
1843
|
createdAt: Date;
|
1844
1844
|
updatedAt: Date;
|
1845
1845
|
deletedAt: Date | null;
|
@@ -1855,9 +1855,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1855
1855
|
subscriptionProducts: {
|
1856
1856
|
id: string;
|
1857
1857
|
product: {
|
1858
|
+
name: string;
|
1858
1859
|
type: string;
|
1859
1860
|
id: string;
|
1860
|
-
name: string;
|
1861
1861
|
createdAt: Date;
|
1862
1862
|
updatedAt: Date;
|
1863
1863
|
deletedAt: Date | null;
|
@@ -1866,9 +1866,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1866
1866
|
omnichannel: string;
|
1867
1867
|
usageType: string | null;
|
1868
1868
|
productPrice: {
|
1869
|
-
id: string;
|
1870
|
-
name: string | null;
|
1871
1869
|
currency: string | null;
|
1870
|
+
name: string | null;
|
1871
|
+
id: string;
|
1872
1872
|
createdAt: Date;
|
1873
1873
|
updatedAt: Date;
|
1874
1874
|
deletedAt: Date | null;
|
@@ -1879,9 +1879,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1879
1879
|
relatedProducts: {
|
1880
1880
|
id: string;
|
1881
1881
|
product: {
|
1882
|
+
name: string;
|
1882
1883
|
type: string;
|
1883
1884
|
id: string;
|
1884
|
-
name: string;
|
1885
1885
|
createdAt: Date;
|
1886
1886
|
updatedAt: Date;
|
1887
1887
|
deletedAt: Date | null;
|
@@ -1890,9 +1890,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1890
1890
|
omnichannel: string;
|
1891
1891
|
usageType: string | null;
|
1892
1892
|
productPrice: {
|
1893
|
-
id: string;
|
1894
|
-
name: string | null;
|
1895
1893
|
currency: string | null;
|
1894
|
+
name: string | null;
|
1895
|
+
id: string;
|
1896
1896
|
createdAt: Date;
|
1897
1897
|
updatedAt: Date;
|
1898
1898
|
deletedAt: Date | null;
|
@@ -1915,14 +1915,14 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1915
1915
|
usage: number | null;
|
1916
1916
|
}[];
|
1917
1917
|
}, {
|
1918
|
+
name: string | null;
|
1918
1919
|
type: string;
|
1919
1920
|
interval: string;
|
1920
1921
|
id: string;
|
1921
|
-
name: string | null;
|
1922
1922
|
product: {
|
1923
|
+
name: string;
|
1923
1924
|
type: string;
|
1924
1925
|
id: string;
|
1925
|
-
name: string;
|
1926
1926
|
createdAt: Date;
|
1927
1927
|
updatedAt: Date;
|
1928
1928
|
deletedAt: Date | null;
|
@@ -1931,9 +1931,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1931
1931
|
omnichannel: string;
|
1932
1932
|
usageType: string | null;
|
1933
1933
|
productPrice: {
|
1934
|
-
id: string;
|
1935
|
-
name: string | null;
|
1936
1934
|
currency: string | null;
|
1935
|
+
name: string | null;
|
1936
|
+
id: string;
|
1937
1937
|
createdAt: Date;
|
1938
1938
|
updatedAt: Date;
|
1939
1939
|
deletedAt: Date | null;
|
@@ -1944,9 +1944,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1944
1944
|
relatedProducts: {
|
1945
1945
|
id: string;
|
1946
1946
|
product: {
|
1947
|
+
name: string;
|
1947
1948
|
type: string;
|
1948
1949
|
id: string;
|
1949
|
-
name: string;
|
1950
1950
|
createdAt: Date;
|
1951
1951
|
updatedAt: Date;
|
1952
1952
|
deletedAt: Date | null;
|
@@ -1955,9 +1955,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1955
1955
|
omnichannel: string;
|
1956
1956
|
usageType: string | null;
|
1957
1957
|
productPrice: {
|
1958
|
-
id: string;
|
1959
|
-
name: string | null;
|
1960
1958
|
currency: string | null;
|
1959
|
+
name: string | null;
|
1960
|
+
id: string;
|
1961
1961
|
createdAt: Date;
|
1962
1962
|
updatedAt: Date;
|
1963
1963
|
deletedAt: Date | null;
|
@@ -1978,9 +1978,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1978
1978
|
deletedAt: Date | null;
|
1979
1979
|
provider: string;
|
1980
1980
|
productPrice: {
|
1981
|
-
id: string;
|
1982
|
-
name: string | null;
|
1983
1981
|
currency: string | null;
|
1982
|
+
name: string | null;
|
1983
|
+
id: string;
|
1984
1984
|
createdAt: Date;
|
1985
1985
|
updatedAt: Date;
|
1986
1986
|
deletedAt: Date | null;
|
@@ -1996,9 +1996,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
1996
1996
|
subscriptionProducts: {
|
1997
1997
|
id: string;
|
1998
1998
|
product: {
|
1999
|
+
name: string;
|
1999
2000
|
type: string;
|
2000
2001
|
id: string;
|
2001
|
-
name: string;
|
2002
2002
|
createdAt: Date;
|
2003
2003
|
updatedAt: Date;
|
2004
2004
|
deletedAt: Date | null;
|
@@ -2007,9 +2007,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
2007
2007
|
omnichannel: string;
|
2008
2008
|
usageType: string | null;
|
2009
2009
|
productPrice: {
|
2010
|
-
id: string;
|
2011
|
-
name: string | null;
|
2012
2010
|
currency: string | null;
|
2011
|
+
name: string | null;
|
2012
|
+
id: string;
|
2013
2013
|
createdAt: Date;
|
2014
2014
|
updatedAt: Date;
|
2015
2015
|
deletedAt: Date | null;
|
@@ -2020,9 +2020,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
2020
2020
|
relatedProducts: {
|
2021
2021
|
id: string;
|
2022
2022
|
product: {
|
2023
|
+
name: string;
|
2023
2024
|
type: string;
|
2024
2025
|
id: string;
|
2025
|
-
name: string;
|
2026
2026
|
createdAt: Date;
|
2027
2027
|
updatedAt: Date;
|
2028
2028
|
deletedAt: Date | null;
|
@@ -2031,9 +2031,9 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
2031
2031
|
omnichannel: string;
|
2032
2032
|
usageType: string | null;
|
2033
2033
|
productPrice: {
|
2034
|
-
id: string;
|
2035
|
-
name: string | null;
|
2036
2034
|
currency: string | null;
|
2035
|
+
name: string | null;
|
2036
|
+
id: string;
|
2037
2037
|
createdAt: Date;
|
2038
2038
|
updatedAt: Date;
|
2039
2039
|
deletedAt: Date | null;
|