@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
@@ -59,9 +59,9 @@ export declare const subscriptionContract: {
|
|
59
59
|
price: z.ZodNumber;
|
60
60
|
currency: z.ZodNullable<z.ZodString>;
|
61
61
|
}, "strip", z.ZodTypeAny, {
|
62
|
-
id: string;
|
63
|
-
name: string | null;
|
64
62
|
currency: string | null;
|
63
|
+
name: string | null;
|
64
|
+
id: string;
|
65
65
|
createdAt: Date;
|
66
66
|
updatedAt: Date;
|
67
67
|
deletedAt: Date | null;
|
@@ -69,9 +69,9 @@ export declare const subscriptionContract: {
|
|
69
69
|
perUnit: number;
|
70
70
|
price: number;
|
71
71
|
}, {
|
72
|
-
id: string;
|
73
|
-
name: string | null;
|
74
72
|
currency: string | null;
|
73
|
+
name: string | null;
|
74
|
+
id: string;
|
75
75
|
createdAt: Date;
|
76
76
|
updatedAt: Date;
|
77
77
|
deletedAt: Date | null;
|
@@ -107,9 +107,9 @@ export declare const subscriptionContract: {
|
|
107
107
|
price: z.ZodNumber;
|
108
108
|
currency: z.ZodNullable<z.ZodString>;
|
109
109
|
}, "strip", z.ZodTypeAny, {
|
110
|
-
id: string;
|
111
|
-
name: string | null;
|
112
110
|
currency: string | null;
|
111
|
+
name: string | null;
|
112
|
+
id: string;
|
113
113
|
createdAt: Date;
|
114
114
|
updatedAt: Date;
|
115
115
|
deletedAt: Date | null;
|
@@ -117,9 +117,9 @@ export declare const subscriptionContract: {
|
|
117
117
|
perUnit: number;
|
118
118
|
price: number;
|
119
119
|
}, {
|
120
|
-
id: string;
|
121
|
-
name: string | null;
|
122
120
|
currency: string | null;
|
121
|
+
name: string | null;
|
122
|
+
id: string;
|
123
123
|
createdAt: Date;
|
124
124
|
updatedAt: Date;
|
125
125
|
deletedAt: Date | null;
|
@@ -128,9 +128,9 @@ export declare const subscriptionContract: {
|
|
128
128
|
price: number;
|
129
129
|
}>;
|
130
130
|
}, "strip", z.ZodTypeAny, {
|
131
|
+
name: string;
|
131
132
|
type: string;
|
132
133
|
id: string;
|
133
|
-
name: string;
|
134
134
|
createdAt: Date;
|
135
135
|
updatedAt: Date;
|
136
136
|
deletedAt: Date | null;
|
@@ -139,9 +139,9 @@ export declare const subscriptionContract: {
|
|
139
139
|
omnichannel: string;
|
140
140
|
usageType: string | null;
|
141
141
|
productPrice: {
|
142
|
-
id: string;
|
143
|
-
name: string | null;
|
144
142
|
currency: string | null;
|
143
|
+
name: string | null;
|
144
|
+
id: string;
|
145
145
|
createdAt: Date;
|
146
146
|
updatedAt: Date;
|
147
147
|
deletedAt: Date | null;
|
@@ -150,9 +150,9 @@ export declare const subscriptionContract: {
|
|
150
150
|
price: number;
|
151
151
|
};
|
152
152
|
}, {
|
153
|
+
name: string;
|
153
154
|
type: string;
|
154
155
|
id: string;
|
155
|
-
name: string;
|
156
156
|
createdAt: Date;
|
157
157
|
updatedAt: Date;
|
158
158
|
deletedAt: Date | null;
|
@@ -161,9 +161,9 @@ export declare const subscriptionContract: {
|
|
161
161
|
omnichannel: string;
|
162
162
|
usageType: string | null;
|
163
163
|
productPrice: {
|
164
|
-
id: string;
|
165
|
-
name: string | null;
|
166
164
|
currency: string | null;
|
165
|
+
name: string | null;
|
166
|
+
id: string;
|
167
167
|
createdAt: Date;
|
168
168
|
updatedAt: Date;
|
169
169
|
deletedAt: Date | null;
|
@@ -175,9 +175,9 @@ export declare const subscriptionContract: {
|
|
175
175
|
}, "strip", z.ZodTypeAny, {
|
176
176
|
id: string;
|
177
177
|
product: {
|
178
|
+
name: string;
|
178
179
|
type: string;
|
179
180
|
id: string;
|
180
|
-
name: string;
|
181
181
|
createdAt: Date;
|
182
182
|
updatedAt: Date;
|
183
183
|
deletedAt: Date | null;
|
@@ -186,9 +186,9 @@ export declare const subscriptionContract: {
|
|
186
186
|
omnichannel: string;
|
187
187
|
usageType: string | null;
|
188
188
|
productPrice: {
|
189
|
-
id: string;
|
190
|
-
name: string | null;
|
191
189
|
currency: string | null;
|
190
|
+
name: string | null;
|
191
|
+
id: string;
|
192
192
|
createdAt: Date;
|
193
193
|
updatedAt: Date;
|
194
194
|
deletedAt: Date | null;
|
@@ -204,9 +204,9 @@ export declare const subscriptionContract: {
|
|
204
204
|
}, {
|
205
205
|
id: string;
|
206
206
|
product: {
|
207
|
+
name: string;
|
207
208
|
type: string;
|
208
209
|
id: string;
|
209
|
-
name: string;
|
210
210
|
createdAt: Date;
|
211
211
|
updatedAt: Date;
|
212
212
|
deletedAt: Date | null;
|
@@ -215,9 +215,9 @@ export declare const subscriptionContract: {
|
|
215
215
|
omnichannel: string;
|
216
216
|
usageType: string | null;
|
217
217
|
productPrice: {
|
218
|
-
id: string;
|
219
|
-
name: string | null;
|
220
218
|
currency: string | null;
|
219
|
+
name: string | null;
|
220
|
+
id: string;
|
221
221
|
createdAt: Date;
|
222
222
|
updatedAt: Date;
|
223
223
|
deletedAt: Date | null;
|
@@ -232,9 +232,9 @@ export declare const subscriptionContract: {
|
|
232
232
|
includedQuantity: number;
|
233
233
|
}>, "many">;
|
234
234
|
}, "strip", z.ZodTypeAny, {
|
235
|
+
name: string;
|
235
236
|
type: string;
|
236
237
|
id: string;
|
237
|
-
name: string;
|
238
238
|
createdAt: Date;
|
239
239
|
updatedAt: Date;
|
240
240
|
deletedAt: Date | null;
|
@@ -243,9 +243,9 @@ export declare const subscriptionContract: {
|
|
243
243
|
omnichannel: string;
|
244
244
|
usageType: string | null;
|
245
245
|
productPrice: {
|
246
|
-
id: string;
|
247
|
-
name: string | null;
|
248
246
|
currency: string | null;
|
247
|
+
name: string | null;
|
248
|
+
id: string;
|
249
249
|
createdAt: Date;
|
250
250
|
updatedAt: Date;
|
251
251
|
deletedAt: Date | null;
|
@@ -256,9 +256,9 @@ export declare const subscriptionContract: {
|
|
256
256
|
relatedProducts: {
|
257
257
|
id: string;
|
258
258
|
product: {
|
259
|
+
name: string;
|
259
260
|
type: string;
|
260
261
|
id: string;
|
261
|
-
name: string;
|
262
262
|
createdAt: Date;
|
263
263
|
updatedAt: Date;
|
264
264
|
deletedAt: Date | null;
|
@@ -267,9 +267,9 @@ export declare const subscriptionContract: {
|
|
267
267
|
omnichannel: string;
|
268
268
|
usageType: string | null;
|
269
269
|
productPrice: {
|
270
|
-
id: string;
|
271
|
-
name: string | null;
|
272
270
|
currency: string | null;
|
271
|
+
name: string | null;
|
272
|
+
id: string;
|
273
273
|
createdAt: Date;
|
274
274
|
updatedAt: Date;
|
275
275
|
deletedAt: Date | null;
|
@@ -284,9 +284,9 @@ export declare const subscriptionContract: {
|
|
284
284
|
includedQuantity: number;
|
285
285
|
}[];
|
286
286
|
}, {
|
287
|
+
name: string;
|
287
288
|
type: string;
|
288
289
|
id: string;
|
289
|
-
name: string;
|
290
290
|
createdAt: Date;
|
291
291
|
updatedAt: Date;
|
292
292
|
deletedAt: Date | null;
|
@@ -295,9 +295,9 @@ export declare const subscriptionContract: {
|
|
295
295
|
omnichannel: string;
|
296
296
|
usageType: string | null;
|
297
297
|
productPrice: {
|
298
|
-
id: string;
|
299
|
-
name: string | null;
|
300
298
|
currency: string | null;
|
299
|
+
name: string | null;
|
300
|
+
id: string;
|
301
301
|
createdAt: Date;
|
302
302
|
updatedAt: Date;
|
303
303
|
deletedAt: Date | null;
|
@@ -308,9 +308,9 @@ export declare const subscriptionContract: {
|
|
308
308
|
relatedProducts: {
|
309
309
|
id: string;
|
310
310
|
product: {
|
311
|
+
name: string;
|
311
312
|
type: string;
|
312
313
|
id: string;
|
313
|
-
name: string;
|
314
314
|
createdAt: Date;
|
315
315
|
updatedAt: Date;
|
316
316
|
deletedAt: Date | null;
|
@@ -319,9 +319,9 @@ export declare const subscriptionContract: {
|
|
319
319
|
omnichannel: string;
|
320
320
|
usageType: string | null;
|
321
321
|
productPrice: {
|
322
|
-
id: string;
|
323
|
-
name: string | null;
|
324
322
|
currency: string | null;
|
323
|
+
name: string | null;
|
324
|
+
id: string;
|
325
325
|
createdAt: Date;
|
326
326
|
updatedAt: Date;
|
327
327
|
deletedAt: Date | null;
|
@@ -339,9 +339,9 @@ export declare const subscriptionContract: {
|
|
339
339
|
}, "strip", z.ZodTypeAny, {
|
340
340
|
id: string;
|
341
341
|
product: {
|
342
|
+
name: string;
|
342
343
|
type: string;
|
343
344
|
id: string;
|
344
|
-
name: string;
|
345
345
|
createdAt: Date;
|
346
346
|
updatedAt: Date;
|
347
347
|
deletedAt: Date | null;
|
@@ -350,9 +350,9 @@ export declare const subscriptionContract: {
|
|
350
350
|
omnichannel: string;
|
351
351
|
usageType: string | null;
|
352
352
|
productPrice: {
|
353
|
-
id: string;
|
354
|
-
name: string | null;
|
355
353
|
currency: string | null;
|
354
|
+
name: string | null;
|
355
|
+
id: string;
|
356
356
|
createdAt: Date;
|
357
357
|
updatedAt: Date;
|
358
358
|
deletedAt: Date | null;
|
@@ -363,9 +363,9 @@ export declare const subscriptionContract: {
|
|
363
363
|
relatedProducts: {
|
364
364
|
id: string;
|
365
365
|
product: {
|
366
|
+
name: string;
|
366
367
|
type: string;
|
367
368
|
id: string;
|
368
|
-
name: string;
|
369
369
|
createdAt: Date;
|
370
370
|
updatedAt: Date;
|
371
371
|
deletedAt: Date | null;
|
@@ -374,9 +374,9 @@ export declare const subscriptionContract: {
|
|
374
374
|
omnichannel: string;
|
375
375
|
usageType: string | null;
|
376
376
|
productPrice: {
|
377
|
-
id: string;
|
378
|
-
name: string | null;
|
379
377
|
currency: string | null;
|
378
|
+
name: string | null;
|
379
|
+
id: string;
|
380
380
|
createdAt: Date;
|
381
381
|
updatedAt: Date;
|
382
382
|
deletedAt: Date | null;
|
@@ -400,9 +400,9 @@ export declare const subscriptionContract: {
|
|
400
400
|
}, {
|
401
401
|
id: string;
|
402
402
|
product: {
|
403
|
+
name: string;
|
403
404
|
type: string;
|
404
405
|
id: string;
|
405
|
-
name: string;
|
406
406
|
createdAt: Date;
|
407
407
|
updatedAt: Date;
|
408
408
|
deletedAt: Date | null;
|
@@ -411,9 +411,9 @@ export declare const subscriptionContract: {
|
|
411
411
|
omnichannel: string;
|
412
412
|
usageType: string | null;
|
413
413
|
productPrice: {
|
414
|
-
id: string;
|
415
|
-
name: string | null;
|
416
414
|
currency: string | null;
|
415
|
+
name: string | null;
|
416
|
+
id: string;
|
417
417
|
createdAt: Date;
|
418
418
|
updatedAt: Date;
|
419
419
|
deletedAt: Date | null;
|
@@ -424,9 +424,9 @@ export declare const subscriptionContract: {
|
|
424
424
|
relatedProducts: {
|
425
425
|
id: string;
|
426
426
|
product: {
|
427
|
+
name: string;
|
427
428
|
type: string;
|
428
429
|
id: string;
|
429
|
-
name: string;
|
430
430
|
createdAt: Date;
|
431
431
|
updatedAt: Date;
|
432
432
|
deletedAt: Date | null;
|
@@ -435,9 +435,9 @@ export declare const subscriptionContract: {
|
|
435
435
|
omnichannel: string;
|
436
436
|
usageType: string | null;
|
437
437
|
productPrice: {
|
438
|
-
id: string;
|
439
|
-
name: string | null;
|
440
438
|
currency: string | null;
|
439
|
+
name: string | null;
|
440
|
+
id: string;
|
441
441
|
createdAt: Date;
|
442
442
|
updatedAt: Date;
|
443
443
|
deletedAt: Date | null;
|
@@ -470,9 +470,9 @@ export declare const subscriptionContract: {
|
|
470
470
|
price: z.ZodNumber;
|
471
471
|
currency: z.ZodNullable<z.ZodString>;
|
472
472
|
}, "strip", z.ZodTypeAny, {
|
473
|
-
id: string;
|
474
|
-
name: string | null;
|
475
473
|
currency: string | null;
|
474
|
+
name: string | null;
|
475
|
+
id: string;
|
476
476
|
createdAt: Date;
|
477
477
|
updatedAt: Date;
|
478
478
|
deletedAt: Date | null;
|
@@ -480,9 +480,9 @@ export declare const subscriptionContract: {
|
|
480
480
|
perUnit: number;
|
481
481
|
price: number;
|
482
482
|
}, {
|
483
|
-
id: string;
|
484
|
-
name: string | null;
|
485
483
|
currency: string | null;
|
484
|
+
name: string | null;
|
485
|
+
id: string;
|
486
486
|
createdAt: Date;
|
487
487
|
updatedAt: Date;
|
488
488
|
deletedAt: Date | null;
|
@@ -512,9 +512,9 @@ export declare const subscriptionContract: {
|
|
512
512
|
price: z.ZodNumber;
|
513
513
|
currency: z.ZodNullable<z.ZodString>;
|
514
514
|
}, "strip", z.ZodTypeAny, {
|
515
|
-
id: string;
|
516
|
-
name: string | null;
|
517
515
|
currency: string | null;
|
516
|
+
name: string | null;
|
517
|
+
id: string;
|
518
518
|
createdAt: Date;
|
519
519
|
updatedAt: Date;
|
520
520
|
deletedAt: Date | null;
|
@@ -522,9 +522,9 @@ export declare const subscriptionContract: {
|
|
522
522
|
perUnit: number;
|
523
523
|
price: number;
|
524
524
|
}, {
|
525
|
-
id: string;
|
526
|
-
name: string | null;
|
527
525
|
currency: string | null;
|
526
|
+
name: string | null;
|
527
|
+
id: string;
|
528
528
|
createdAt: Date;
|
529
529
|
updatedAt: Date;
|
530
530
|
deletedAt: Date | null;
|
@@ -560,9 +560,9 @@ export declare const subscriptionContract: {
|
|
560
560
|
price: z.ZodNumber;
|
561
561
|
currency: z.ZodNullable<z.ZodString>;
|
562
562
|
}, "strip", z.ZodTypeAny, {
|
563
|
-
id: string;
|
564
|
-
name: string | null;
|
565
563
|
currency: string | null;
|
564
|
+
name: string | null;
|
565
|
+
id: string;
|
566
566
|
createdAt: Date;
|
567
567
|
updatedAt: Date;
|
568
568
|
deletedAt: Date | null;
|
@@ -570,9 +570,9 @@ export declare const subscriptionContract: {
|
|
570
570
|
perUnit: number;
|
571
571
|
price: number;
|
572
572
|
}, {
|
573
|
-
id: string;
|
574
|
-
name: string | null;
|
575
573
|
currency: string | null;
|
574
|
+
name: string | null;
|
575
|
+
id: string;
|
576
576
|
createdAt: Date;
|
577
577
|
updatedAt: Date;
|
578
578
|
deletedAt: Date | null;
|
@@ -581,9 +581,9 @@ export declare const subscriptionContract: {
|
|
581
581
|
price: number;
|
582
582
|
}>;
|
583
583
|
}, "strip", z.ZodTypeAny, {
|
584
|
+
name: string;
|
584
585
|
type: string;
|
585
586
|
id: string;
|
586
|
-
name: string;
|
587
587
|
createdAt: Date;
|
588
588
|
updatedAt: Date;
|
589
589
|
deletedAt: Date | null;
|
@@ -592,9 +592,9 @@ export declare const subscriptionContract: {
|
|
592
592
|
omnichannel: string;
|
593
593
|
usageType: string | null;
|
594
594
|
productPrice: {
|
595
|
-
id: string;
|
596
|
-
name: string | null;
|
597
595
|
currency: string | null;
|
596
|
+
name: string | null;
|
597
|
+
id: string;
|
598
598
|
createdAt: Date;
|
599
599
|
updatedAt: Date;
|
600
600
|
deletedAt: Date | null;
|
@@ -603,9 +603,9 @@ export declare const subscriptionContract: {
|
|
603
603
|
price: number;
|
604
604
|
};
|
605
605
|
}, {
|
606
|
+
name: string;
|
606
607
|
type: string;
|
607
608
|
id: string;
|
608
|
-
name: string;
|
609
609
|
createdAt: Date;
|
610
610
|
updatedAt: Date;
|
611
611
|
deletedAt: Date | null;
|
@@ -614,9 +614,9 @@ export declare const subscriptionContract: {
|
|
614
614
|
omnichannel: string;
|
615
615
|
usageType: string | null;
|
616
616
|
productPrice: {
|
617
|
-
id: string;
|
618
|
-
name: string | null;
|
619
617
|
currency: string | null;
|
618
|
+
name: string | null;
|
619
|
+
id: string;
|
620
620
|
createdAt: Date;
|
621
621
|
updatedAt: Date;
|
622
622
|
deletedAt: Date | null;
|
@@ -628,9 +628,9 @@ export declare const subscriptionContract: {
|
|
628
628
|
}, "strip", z.ZodTypeAny, {
|
629
629
|
id: string;
|
630
630
|
product: {
|
631
|
+
name: string;
|
631
632
|
type: string;
|
632
633
|
id: string;
|
633
|
-
name: string;
|
634
634
|
createdAt: Date;
|
635
635
|
updatedAt: Date;
|
636
636
|
deletedAt: Date | null;
|
@@ -639,9 +639,9 @@ export declare const subscriptionContract: {
|
|
639
639
|
omnichannel: string;
|
640
640
|
usageType: string | null;
|
641
641
|
productPrice: {
|
642
|
-
id: string;
|
643
|
-
name: string | null;
|
644
642
|
currency: string | null;
|
643
|
+
name: string | null;
|
644
|
+
id: string;
|
645
645
|
createdAt: Date;
|
646
646
|
updatedAt: Date;
|
647
647
|
deletedAt: Date | null;
|
@@ -657,9 +657,9 @@ export declare const subscriptionContract: {
|
|
657
657
|
}, {
|
658
658
|
id: string;
|
659
659
|
product: {
|
660
|
+
name: string;
|
660
661
|
type: string;
|
661
662
|
id: string;
|
662
|
-
name: string;
|
663
663
|
createdAt: Date;
|
664
664
|
updatedAt: Date;
|
665
665
|
deletedAt: Date | null;
|
@@ -668,9 +668,9 @@ export declare const subscriptionContract: {
|
|
668
668
|
omnichannel: string;
|
669
669
|
usageType: string | null;
|
670
670
|
productPrice: {
|
671
|
-
id: string;
|
672
|
-
name: string | null;
|
673
671
|
currency: string | null;
|
672
|
+
name: string | null;
|
673
|
+
id: string;
|
674
674
|
createdAt: Date;
|
675
675
|
updatedAt: Date;
|
676
676
|
deletedAt: Date | null;
|
@@ -685,9 +685,9 @@ export declare const subscriptionContract: {
|
|
685
685
|
includedQuantity: number;
|
686
686
|
}>, "many">;
|
687
687
|
}, "strip", z.ZodTypeAny, {
|
688
|
+
name: string;
|
688
689
|
type: string;
|
689
690
|
id: string;
|
690
|
-
name: string;
|
691
691
|
createdAt: Date;
|
692
692
|
updatedAt: Date;
|
693
693
|
deletedAt: Date | null;
|
@@ -696,9 +696,9 @@ export declare const subscriptionContract: {
|
|
696
696
|
omnichannel: string;
|
697
697
|
usageType: string | null;
|
698
698
|
productPrice: {
|
699
|
-
id: string;
|
700
|
-
name: string | null;
|
701
699
|
currency: string | null;
|
700
|
+
name: string | null;
|
701
|
+
id: string;
|
702
702
|
createdAt: Date;
|
703
703
|
updatedAt: Date;
|
704
704
|
deletedAt: Date | null;
|
@@ -709,9 +709,9 @@ export declare const subscriptionContract: {
|
|
709
709
|
relatedProducts: {
|
710
710
|
id: string;
|
711
711
|
product: {
|
712
|
+
name: string;
|
712
713
|
type: string;
|
713
714
|
id: string;
|
714
|
-
name: string;
|
715
715
|
createdAt: Date;
|
716
716
|
updatedAt: Date;
|
717
717
|
deletedAt: Date | null;
|
@@ -720,9 +720,9 @@ export declare const subscriptionContract: {
|
|
720
720
|
omnichannel: string;
|
721
721
|
usageType: string | null;
|
722
722
|
productPrice: {
|
723
|
-
id: string;
|
724
|
-
name: string | null;
|
725
723
|
currency: string | null;
|
724
|
+
name: string | null;
|
725
|
+
id: string;
|
726
726
|
createdAt: Date;
|
727
727
|
updatedAt: Date;
|
728
728
|
deletedAt: Date | null;
|
@@ -737,9 +737,9 @@ export declare const subscriptionContract: {
|
|
737
737
|
includedQuantity: number;
|
738
738
|
}[];
|
739
739
|
}, {
|
740
|
+
name: string;
|
740
741
|
type: string;
|
741
742
|
id: string;
|
742
|
-
name: string;
|
743
743
|
createdAt: Date;
|
744
744
|
updatedAt: Date;
|
745
745
|
deletedAt: Date | null;
|
@@ -748,9 +748,9 @@ export declare const subscriptionContract: {
|
|
748
748
|
omnichannel: string;
|
749
749
|
usageType: string | null;
|
750
750
|
productPrice: {
|
751
|
-
id: string;
|
752
|
-
name: string | null;
|
753
751
|
currency: string | null;
|
752
|
+
name: string | null;
|
753
|
+
id: string;
|
754
754
|
createdAt: Date;
|
755
755
|
updatedAt: Date;
|
756
756
|
deletedAt: Date | null;
|
@@ -761,9 +761,9 @@ export declare const subscriptionContract: {
|
|
761
761
|
relatedProducts: {
|
762
762
|
id: string;
|
763
763
|
product: {
|
764
|
+
name: string;
|
764
765
|
type: string;
|
765
766
|
id: string;
|
766
|
-
name: string;
|
767
767
|
createdAt: Date;
|
768
768
|
updatedAt: Date;
|
769
769
|
deletedAt: Date | null;
|
@@ -772,9 +772,9 @@ export declare const subscriptionContract: {
|
|
772
772
|
omnichannel: string;
|
773
773
|
usageType: string | null;
|
774
774
|
productPrice: {
|
775
|
-
id: string;
|
776
|
-
name: string | null;
|
777
775
|
currency: string | null;
|
776
|
+
name: string | null;
|
777
|
+
id: string;
|
778
778
|
createdAt: Date;
|
779
779
|
updatedAt: Date;
|
780
780
|
deletedAt: Date | null;
|
@@ -790,14 +790,14 @@ export declare const subscriptionContract: {
|
|
790
790
|
}[];
|
791
791
|
}>;
|
792
792
|
}, "strip", z.ZodTypeAny, {
|
793
|
+
name: string | null;
|
793
794
|
type: string;
|
794
795
|
interval: string;
|
795
796
|
id: string;
|
796
|
-
name: string | null;
|
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 subscriptionContract: {
|
|
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;
|
@@ -819,9 +819,9 @@ export declare const subscriptionContract: {
|
|
819
819
|
relatedProducts: {
|
820
820
|
id: string;
|
821
821
|
product: {
|
822
|
+
name: string;
|
822
823
|
type: string;
|
823
824
|
id: string;
|
824
|
-
name: string;
|
825
825
|
createdAt: Date;
|
826
826
|
updatedAt: Date;
|
827
827
|
deletedAt: Date | null;
|
@@ -830,9 +830,9 @@ export declare const subscriptionContract: {
|
|
830
830
|
omnichannel: string;
|
831
831
|
usageType: string | null;
|
832
832
|
productPrice: {
|
833
|
-
id: string;
|
834
|
-
name: string | null;
|
835
833
|
currency: string | null;
|
834
|
+
name: string | null;
|
835
|
+
id: string;
|
836
836
|
createdAt: Date;
|
837
837
|
updatedAt: Date;
|
838
838
|
deletedAt: Date | null;
|
@@ -853,9 +853,9 @@ export declare const subscriptionContract: {
|
|
853
853
|
deletedAt: Date | null;
|
854
854
|
provider: string;
|
855
855
|
productPrice: {
|
856
|
-
id: string;
|
857
|
-
name: string | null;
|
858
856
|
currency: string | null;
|
857
|
+
name: string | null;
|
858
|
+
id: string;
|
859
859
|
createdAt: Date;
|
860
860
|
updatedAt: Date;
|
861
861
|
deletedAt: Date | null;
|
@@ -871,9 +871,9 @@ export declare const subscriptionContract: {
|
|
871
871
|
subscriptionProducts: {
|
872
872
|
id: string;
|
873
873
|
product: {
|
874
|
+
name: string;
|
874
875
|
type: string;
|
875
876
|
id: string;
|
876
|
-
name: string;
|
877
877
|
createdAt: Date;
|
878
878
|
updatedAt: Date;
|
879
879
|
deletedAt: Date | null;
|
@@ -882,9 +882,9 @@ export declare const subscriptionContract: {
|
|
882
882
|
omnichannel: string;
|
883
883
|
usageType: string | null;
|
884
884
|
productPrice: {
|
885
|
-
id: string;
|
886
|
-
name: string | null;
|
887
885
|
currency: string | null;
|
886
|
+
name: string | null;
|
887
|
+
id: string;
|
888
888
|
createdAt: Date;
|
889
889
|
updatedAt: Date;
|
890
890
|
deletedAt: Date | null;
|
@@ -895,9 +895,9 @@ export declare const subscriptionContract: {
|
|
895
895
|
relatedProducts: {
|
896
896
|
id: string;
|
897
897
|
product: {
|
898
|
+
name: string;
|
898
899
|
type: string;
|
899
900
|
id: string;
|
900
|
-
name: string;
|
901
901
|
createdAt: Date;
|
902
902
|
updatedAt: Date;
|
903
903
|
deletedAt: Date | null;
|
@@ -906,9 +906,9 @@ export declare const subscriptionContract: {
|
|
906
906
|
omnichannel: string;
|
907
907
|
usageType: string | null;
|
908
908
|
productPrice: {
|
909
|
-
id: string;
|
910
|
-
name: string | null;
|
911
909
|
currency: string | null;
|
910
|
+
name: string | null;
|
911
|
+
id: string;
|
912
912
|
createdAt: Date;
|
913
913
|
updatedAt: Date;
|
914
914
|
deletedAt: Date | null;
|
@@ -931,14 +931,14 @@ export declare const subscriptionContract: {
|
|
931
931
|
usage: number | null;
|
932
932
|
}[];
|
933
933
|
}, {
|
934
|
+
name: string | null;
|
934
935
|
type: string;
|
935
936
|
interval: string;
|
936
937
|
id: string;
|
937
|
-
name: string | null;
|
938
938
|
product: {
|
939
|
+
name: string;
|
939
940
|
type: string;
|
940
941
|
id: string;
|
941
|
-
name: string;
|
942
942
|
createdAt: Date;
|
943
943
|
updatedAt: Date;
|
944
944
|
deletedAt: Date | null;
|
@@ -947,9 +947,9 @@ export declare const subscriptionContract: {
|
|
947
947
|
omnichannel: string;
|
948
948
|
usageType: string | null;
|
949
949
|
productPrice: {
|
950
|
-
id: string;
|
951
|
-
name: string | null;
|
952
950
|
currency: string | null;
|
951
|
+
name: string | null;
|
952
|
+
id: string;
|
953
953
|
createdAt: Date;
|
954
954
|
updatedAt: Date;
|
955
955
|
deletedAt: Date | null;
|
@@ -960,9 +960,9 @@ export declare const subscriptionContract: {
|
|
960
960
|
relatedProducts: {
|
961
961
|
id: string;
|
962
962
|
product: {
|
963
|
+
name: string;
|
963
964
|
type: string;
|
964
965
|
id: string;
|
965
|
-
name: string;
|
966
966
|
createdAt: Date;
|
967
967
|
updatedAt: Date;
|
968
968
|
deletedAt: Date | null;
|
@@ -971,9 +971,9 @@ export declare const subscriptionContract: {
|
|
971
971
|
omnichannel: string;
|
972
972
|
usageType: string | null;
|
973
973
|
productPrice: {
|
974
|
-
id: string;
|
975
|
-
name: string | null;
|
976
974
|
currency: string | null;
|
975
|
+
name: string | null;
|
976
|
+
id: string;
|
977
977
|
createdAt: Date;
|
978
978
|
updatedAt: Date;
|
979
979
|
deletedAt: Date | null;
|
@@ -994,9 +994,9 @@ export declare const subscriptionContract: {
|
|
994
994
|
deletedAt: Date | null;
|
995
995
|
provider: string;
|
996
996
|
productPrice: {
|
997
|
-
id: string;
|
998
|
-
name: string | null;
|
999
997
|
currency: string | null;
|
998
|
+
name: string | null;
|
999
|
+
id: string;
|
1000
1000
|
createdAt: Date;
|
1001
1001
|
updatedAt: Date;
|
1002
1002
|
deletedAt: Date | null;
|
@@ -1012,9 +1012,9 @@ export declare const subscriptionContract: {
|
|
1012
1012
|
subscriptionProducts: {
|
1013
1013
|
id: string;
|
1014
1014
|
product: {
|
1015
|
+
name: string;
|
1015
1016
|
type: string;
|
1016
1017
|
id: string;
|
1017
|
-
name: string;
|
1018
1018
|
createdAt: Date;
|
1019
1019
|
updatedAt: Date;
|
1020
1020
|
deletedAt: Date | null;
|
@@ -1023,9 +1023,9 @@ export declare const subscriptionContract: {
|
|
1023
1023
|
omnichannel: string;
|
1024
1024
|
usageType: string | null;
|
1025
1025
|
productPrice: {
|
1026
|
-
id: string;
|
1027
|
-
name: string | null;
|
1028
1026
|
currency: string | null;
|
1027
|
+
name: string | null;
|
1028
|
+
id: string;
|
1029
1029
|
createdAt: Date;
|
1030
1030
|
updatedAt: Date;
|
1031
1031
|
deletedAt: Date | null;
|
@@ -1036,9 +1036,9 @@ export declare const subscriptionContract: {
|
|
1036
1036
|
relatedProducts: {
|
1037
1037
|
id: string;
|
1038
1038
|
product: {
|
1039
|
+
name: string;
|
1039
1040
|
type: string;
|
1040
1041
|
id: string;
|
1041
|
-
name: string;
|
1042
1042
|
createdAt: Date;
|
1043
1043
|
updatedAt: Date;
|
1044
1044
|
deletedAt: Date | null;
|
@@ -1047,9 +1047,9 @@ export declare const subscriptionContract: {
|
|
1047
1047
|
omnichannel: string;
|
1048
1048
|
usageType: string | null;
|
1049
1049
|
productPrice: {
|
1050
|
-
id: string;
|
1051
|
-
name: string | null;
|
1052
1050
|
currency: string | null;
|
1051
|
+
name: string | null;
|
1052
|
+
id: string;
|
1053
1053
|
createdAt: Date;
|
1054
1054
|
updatedAt: Date;
|
1055
1055
|
deletedAt: Date | null;
|
@@ -1075,14 +1075,14 @@ export declare const subscriptionContract: {
|
|
1075
1075
|
}, "strip", z.ZodTypeAny, {
|
1076
1076
|
requestId: string;
|
1077
1077
|
subscription: {
|
1078
|
+
name: string | null;
|
1078
1079
|
type: string;
|
1079
1080
|
interval: string;
|
1080
1081
|
id: string;
|
1081
|
-
name: string | null;
|
1082
1082
|
product: {
|
1083
|
+
name: string;
|
1083
1084
|
type: string;
|
1084
1085
|
id: string;
|
1085
|
-
name: string;
|
1086
1086
|
createdAt: Date;
|
1087
1087
|
updatedAt: Date;
|
1088
1088
|
deletedAt: Date | null;
|
@@ -1091,9 +1091,9 @@ export declare const subscriptionContract: {
|
|
1091
1091
|
omnichannel: string;
|
1092
1092
|
usageType: string | null;
|
1093
1093
|
productPrice: {
|
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;
|
@@ -1104,9 +1104,9 @@ export declare const subscriptionContract: {
|
|
1104
1104
|
relatedProducts: {
|
1105
1105
|
id: string;
|
1106
1106
|
product: {
|
1107
|
+
name: string;
|
1107
1108
|
type: string;
|
1108
1109
|
id: string;
|
1109
|
-
name: string;
|
1110
1110
|
createdAt: Date;
|
1111
1111
|
updatedAt: Date;
|
1112
1112
|
deletedAt: Date | null;
|
@@ -1115,9 +1115,9 @@ export declare const subscriptionContract: {
|
|
1115
1115
|
omnichannel: string;
|
1116
1116
|
usageType: string | null;
|
1117
1117
|
productPrice: {
|
1118
|
-
id: string;
|
1119
|
-
name: string | null;
|
1120
1118
|
currency: string | null;
|
1119
|
+
name: string | null;
|
1120
|
+
id: string;
|
1121
1121
|
createdAt: Date;
|
1122
1122
|
updatedAt: Date;
|
1123
1123
|
deletedAt: Date | null;
|
@@ -1138,9 +1138,9 @@ export declare const subscriptionContract: {
|
|
1138
1138
|
deletedAt: Date | null;
|
1139
1139
|
provider: string;
|
1140
1140
|
productPrice: {
|
1141
|
-
id: string;
|
1142
|
-
name: string | null;
|
1143
1141
|
currency: string | null;
|
1142
|
+
name: string | null;
|
1143
|
+
id: string;
|
1144
1144
|
createdAt: Date;
|
1145
1145
|
updatedAt: Date;
|
1146
1146
|
deletedAt: Date | null;
|
@@ -1156,9 +1156,9 @@ export declare const subscriptionContract: {
|
|
1156
1156
|
subscriptionProducts: {
|
1157
1157
|
id: string;
|
1158
1158
|
product: {
|
1159
|
+
name: string;
|
1159
1160
|
type: string;
|
1160
1161
|
id: string;
|
1161
|
-
name: string;
|
1162
1162
|
createdAt: Date;
|
1163
1163
|
updatedAt: Date;
|
1164
1164
|
deletedAt: Date | null;
|
@@ -1167,9 +1167,9 @@ export declare const subscriptionContract: {
|
|
1167
1167
|
omnichannel: string;
|
1168
1168
|
usageType: string | null;
|
1169
1169
|
productPrice: {
|
1170
|
-
id: string;
|
1171
|
-
name: string | null;
|
1172
1170
|
currency: string | null;
|
1171
|
+
name: string | null;
|
1172
|
+
id: string;
|
1173
1173
|
createdAt: Date;
|
1174
1174
|
updatedAt: Date;
|
1175
1175
|
deletedAt: Date | null;
|
@@ -1180,9 +1180,9 @@ export declare const subscriptionContract: {
|
|
1180
1180
|
relatedProducts: {
|
1181
1181
|
id: string;
|
1182
1182
|
product: {
|
1183
|
+
name: string;
|
1183
1184
|
type: string;
|
1184
1185
|
id: string;
|
1185
|
-
name: string;
|
1186
1186
|
createdAt: Date;
|
1187
1187
|
updatedAt: Date;
|
1188
1188
|
deletedAt: Date | null;
|
@@ -1191,9 +1191,9 @@ export declare const subscriptionContract: {
|
|
1191
1191
|
omnichannel: string;
|
1192
1192
|
usageType: string | null;
|
1193
1193
|
productPrice: {
|
1194
|
-
id: string;
|
1195
|
-
name: string | null;
|
1196
1194
|
currency: string | null;
|
1195
|
+
name: string | null;
|
1196
|
+
id: string;
|
1197
1197
|
createdAt: Date;
|
1198
1198
|
updatedAt: Date;
|
1199
1199
|
deletedAt: Date | null;
|
@@ -1219,14 +1219,14 @@ export declare const subscriptionContract: {
|
|
1219
1219
|
}, {
|
1220
1220
|
requestId: string;
|
1221
1221
|
subscription: {
|
1222
|
+
name: string | null;
|
1222
1223
|
type: string;
|
1223
1224
|
interval: string;
|
1224
1225
|
id: string;
|
1225
|
-
name: string | null;
|
1226
1226
|
product: {
|
1227
|
+
name: string;
|
1227
1228
|
type: string;
|
1228
1229
|
id: string;
|
1229
|
-
name: string;
|
1230
1230
|
createdAt: Date;
|
1231
1231
|
updatedAt: Date;
|
1232
1232
|
deletedAt: Date | null;
|
@@ -1235,9 +1235,9 @@ export declare const subscriptionContract: {
|
|
1235
1235
|
omnichannel: string;
|
1236
1236
|
usageType: string | null;
|
1237
1237
|
productPrice: {
|
1238
|
-
id: string;
|
1239
|
-
name: string | null;
|
1240
1238
|
currency: string | null;
|
1239
|
+
name: string | null;
|
1240
|
+
id: string;
|
1241
1241
|
createdAt: Date;
|
1242
1242
|
updatedAt: Date;
|
1243
1243
|
deletedAt: Date | null;
|
@@ -1248,9 +1248,9 @@ export declare const subscriptionContract: {
|
|
1248
1248
|
relatedProducts: {
|
1249
1249
|
id: string;
|
1250
1250
|
product: {
|
1251
|
+
name: string;
|
1251
1252
|
type: string;
|
1252
1253
|
id: string;
|
1253
|
-
name: string;
|
1254
1254
|
createdAt: Date;
|
1255
1255
|
updatedAt: Date;
|
1256
1256
|
deletedAt: Date | null;
|
@@ -1259,9 +1259,9 @@ export declare const subscriptionContract: {
|
|
1259
1259
|
omnichannel: string;
|
1260
1260
|
usageType: string | null;
|
1261
1261
|
productPrice: {
|
1262
|
-
id: string;
|
1263
|
-
name: string | null;
|
1264
1262
|
currency: string | null;
|
1263
|
+
name: string | null;
|
1264
|
+
id: string;
|
1265
1265
|
createdAt: Date;
|
1266
1266
|
updatedAt: Date;
|
1267
1267
|
deletedAt: Date | null;
|
@@ -1282,9 +1282,9 @@ export declare const subscriptionContract: {
|
|
1282
1282
|
deletedAt: Date | null;
|
1283
1283
|
provider: string;
|
1284
1284
|
productPrice: {
|
1285
|
-
id: string;
|
1286
|
-
name: string | null;
|
1287
1285
|
currency: string | null;
|
1286
|
+
name: string | null;
|
1287
|
+
id: string;
|
1288
1288
|
createdAt: Date;
|
1289
1289
|
updatedAt: Date;
|
1290
1290
|
deletedAt: Date | null;
|
@@ -1300,9 +1300,9 @@ export declare const subscriptionContract: {
|
|
1300
1300
|
subscriptionProducts: {
|
1301
1301
|
id: string;
|
1302
1302
|
product: {
|
1303
|
+
name: string;
|
1303
1304
|
type: string;
|
1304
1305
|
id: string;
|
1305
|
-
name: string;
|
1306
1306
|
createdAt: Date;
|
1307
1307
|
updatedAt: Date;
|
1308
1308
|
deletedAt: Date | null;
|
@@ -1311,9 +1311,9 @@ export declare const subscriptionContract: {
|
|
1311
1311
|
omnichannel: string;
|
1312
1312
|
usageType: string | null;
|
1313
1313
|
productPrice: {
|
1314
|
-
id: string;
|
1315
|
-
name: string | null;
|
1316
1314
|
currency: string | null;
|
1315
|
+
name: string | null;
|
1316
|
+
id: string;
|
1317
1317
|
createdAt: Date;
|
1318
1318
|
updatedAt: Date;
|
1319
1319
|
deletedAt: Date | null;
|
@@ -1324,9 +1324,9 @@ export declare const subscriptionContract: {
|
|
1324
1324
|
relatedProducts: {
|
1325
1325
|
id: string;
|
1326
1326
|
product: {
|
1327
|
+
name: string;
|
1327
1328
|
type: string;
|
1328
1329
|
id: string;
|
1329
|
-
name: string;
|
1330
1330
|
createdAt: Date;
|
1331
1331
|
updatedAt: Date;
|
1332
1332
|
deletedAt: Date | null;
|
@@ -1335,9 +1335,9 @@ export declare const subscriptionContract: {
|
|
1335
1335
|
omnichannel: string;
|
1336
1336
|
usageType: string | null;
|
1337
1337
|
productPrice: {
|
1338
|
-
id: string;
|
1339
|
-
name: string | null;
|
1340
1338
|
currency: string | null;
|
1339
|
+
name: string | null;
|
1340
|
+
id: string;
|
1341
1341
|
createdAt: Date;
|
1342
1342
|
updatedAt: Date;
|
1343
1343
|
deletedAt: Date | null;
|
@@ -1495,9 +1495,9 @@ export declare const subscriptionContract: {
|
|
1495
1495
|
price: z.ZodNumber;
|
1496
1496
|
currency: z.ZodNullable<z.ZodString>;
|
1497
1497
|
}, "strip", z.ZodTypeAny, {
|
1498
|
-
id: string;
|
1499
|
-
name: string | null;
|
1500
1498
|
currency: string | null;
|
1499
|
+
name: string | null;
|
1500
|
+
id: string;
|
1501
1501
|
createdAt: Date;
|
1502
1502
|
updatedAt: Date;
|
1503
1503
|
deletedAt: Date | null;
|
@@ -1505,9 +1505,9 @@ export declare const subscriptionContract: {
|
|
1505
1505
|
perUnit: number;
|
1506
1506
|
price: number;
|
1507
1507
|
}, {
|
1508
|
-
id: string;
|
1509
|
-
name: string | null;
|
1510
1508
|
currency: string | null;
|
1509
|
+
name: string | null;
|
1510
|
+
id: string;
|
1511
1511
|
createdAt: Date;
|
1512
1512
|
updatedAt: Date;
|
1513
1513
|
deletedAt: Date | null;
|
@@ -1543,9 +1543,9 @@ export declare const subscriptionContract: {
|
|
1543
1543
|
price: z.ZodNumber;
|
1544
1544
|
currency: z.ZodNullable<z.ZodString>;
|
1545
1545
|
}, "strip", z.ZodTypeAny, {
|
1546
|
-
id: string;
|
1547
|
-
name: string | null;
|
1548
1546
|
currency: string | null;
|
1547
|
+
name: string | null;
|
1548
|
+
id: string;
|
1549
1549
|
createdAt: Date;
|
1550
1550
|
updatedAt: Date;
|
1551
1551
|
deletedAt: Date | null;
|
@@ -1553,9 +1553,9 @@ export declare const subscriptionContract: {
|
|
1553
1553
|
perUnit: number;
|
1554
1554
|
price: number;
|
1555
1555
|
}, {
|
1556
|
-
id: string;
|
1557
|
-
name: string | null;
|
1558
1556
|
currency: string | null;
|
1557
|
+
name: string | null;
|
1558
|
+
id: string;
|
1559
1559
|
createdAt: Date;
|
1560
1560
|
updatedAt: Date;
|
1561
1561
|
deletedAt: Date | null;
|
@@ -1564,9 +1564,9 @@ export declare const subscriptionContract: {
|
|
1564
1564
|
price: number;
|
1565
1565
|
}>;
|
1566
1566
|
}, "strip", z.ZodTypeAny, {
|
1567
|
+
name: string;
|
1567
1568
|
type: string;
|
1568
1569
|
id: string;
|
1569
|
-
name: string;
|
1570
1570
|
createdAt: Date;
|
1571
1571
|
updatedAt: Date;
|
1572
1572
|
deletedAt: Date | null;
|
@@ -1575,9 +1575,9 @@ export declare const subscriptionContract: {
|
|
1575
1575
|
omnichannel: string;
|
1576
1576
|
usageType: string | null;
|
1577
1577
|
productPrice: {
|
1578
|
-
id: string;
|
1579
|
-
name: string | null;
|
1580
1578
|
currency: string | null;
|
1579
|
+
name: string | null;
|
1580
|
+
id: string;
|
1581
1581
|
createdAt: Date;
|
1582
1582
|
updatedAt: Date;
|
1583
1583
|
deletedAt: Date | null;
|
@@ -1586,9 +1586,9 @@ export declare const subscriptionContract: {
|
|
1586
1586
|
price: number;
|
1587
1587
|
};
|
1588
1588
|
}, {
|
1589
|
+
name: string;
|
1589
1590
|
type: string;
|
1590
1591
|
id: string;
|
1591
|
-
name: string;
|
1592
1592
|
createdAt: Date;
|
1593
1593
|
updatedAt: Date;
|
1594
1594
|
deletedAt: Date | null;
|
@@ -1597,9 +1597,9 @@ export declare const subscriptionContract: {
|
|
1597
1597
|
omnichannel: string;
|
1598
1598
|
usageType: string | null;
|
1599
1599
|
productPrice: {
|
1600
|
-
id: string;
|
1601
|
-
name: string | null;
|
1602
1600
|
currency: string | null;
|
1601
|
+
name: string | null;
|
1602
|
+
id: string;
|
1603
1603
|
createdAt: Date;
|
1604
1604
|
updatedAt: Date;
|
1605
1605
|
deletedAt: Date | null;
|
@@ -1611,9 +1611,9 @@ export declare const subscriptionContract: {
|
|
1611
1611
|
}, "strip", z.ZodTypeAny, {
|
1612
1612
|
id: string;
|
1613
1613
|
product: {
|
1614
|
+
name: string;
|
1614
1615
|
type: string;
|
1615
1616
|
id: string;
|
1616
|
-
name: string;
|
1617
1617
|
createdAt: Date;
|
1618
1618
|
updatedAt: Date;
|
1619
1619
|
deletedAt: Date | null;
|
@@ -1622,9 +1622,9 @@ export declare const subscriptionContract: {
|
|
1622
1622
|
omnichannel: string;
|
1623
1623
|
usageType: string | null;
|
1624
1624
|
productPrice: {
|
1625
|
-
id: string;
|
1626
|
-
name: string | null;
|
1627
1625
|
currency: string | null;
|
1626
|
+
name: string | null;
|
1627
|
+
id: string;
|
1628
1628
|
createdAt: Date;
|
1629
1629
|
updatedAt: Date;
|
1630
1630
|
deletedAt: Date | null;
|
@@ -1640,9 +1640,9 @@ export declare const subscriptionContract: {
|
|
1640
1640
|
}, {
|
1641
1641
|
id: string;
|
1642
1642
|
product: {
|
1643
|
+
name: string;
|
1643
1644
|
type: string;
|
1644
1645
|
id: string;
|
1645
|
-
name: string;
|
1646
1646
|
createdAt: Date;
|
1647
1647
|
updatedAt: Date;
|
1648
1648
|
deletedAt: Date | null;
|
@@ -1651,9 +1651,9 @@ export declare const subscriptionContract: {
|
|
1651
1651
|
omnichannel: string;
|
1652
1652
|
usageType: string | null;
|
1653
1653
|
productPrice: {
|
1654
|
-
id: string;
|
1655
|
-
name: string | null;
|
1656
1654
|
currency: string | null;
|
1655
|
+
name: string | null;
|
1656
|
+
id: string;
|
1657
1657
|
createdAt: Date;
|
1658
1658
|
updatedAt: Date;
|
1659
1659
|
deletedAt: Date | null;
|
@@ -1668,9 +1668,9 @@ export declare const subscriptionContract: {
|
|
1668
1668
|
includedQuantity: number;
|
1669
1669
|
}>, "many">;
|
1670
1670
|
}, "strip", z.ZodTypeAny, {
|
1671
|
+
name: string;
|
1671
1672
|
type: string;
|
1672
1673
|
id: string;
|
1673
|
-
name: string;
|
1674
1674
|
createdAt: Date;
|
1675
1675
|
updatedAt: Date;
|
1676
1676
|
deletedAt: Date | null;
|
@@ -1679,9 +1679,9 @@ export declare const subscriptionContract: {
|
|
1679
1679
|
omnichannel: string;
|
1680
1680
|
usageType: string | null;
|
1681
1681
|
productPrice: {
|
1682
|
-
id: string;
|
1683
|
-
name: string | null;
|
1684
1682
|
currency: string | null;
|
1683
|
+
name: string | null;
|
1684
|
+
id: string;
|
1685
1685
|
createdAt: Date;
|
1686
1686
|
updatedAt: Date;
|
1687
1687
|
deletedAt: Date | null;
|
@@ -1692,9 +1692,9 @@ export declare const subscriptionContract: {
|
|
1692
1692
|
relatedProducts: {
|
1693
1693
|
id: string;
|
1694
1694
|
product: {
|
1695
|
+
name: string;
|
1695
1696
|
type: string;
|
1696
1697
|
id: string;
|
1697
|
-
name: string;
|
1698
1698
|
createdAt: Date;
|
1699
1699
|
updatedAt: Date;
|
1700
1700
|
deletedAt: Date | null;
|
@@ -1703,9 +1703,9 @@ export declare const subscriptionContract: {
|
|
1703
1703
|
omnichannel: string;
|
1704
1704
|
usageType: string | null;
|
1705
1705
|
productPrice: {
|
1706
|
-
id: string;
|
1707
|
-
name: string | null;
|
1708
1706
|
currency: string | null;
|
1707
|
+
name: string | null;
|
1708
|
+
id: string;
|
1709
1709
|
createdAt: Date;
|
1710
1710
|
updatedAt: Date;
|
1711
1711
|
deletedAt: Date | null;
|
@@ -1720,9 +1720,9 @@ export declare const subscriptionContract: {
|
|
1720
1720
|
includedQuantity: number;
|
1721
1721
|
}[];
|
1722
1722
|
}, {
|
1723
|
+
name: string;
|
1723
1724
|
type: string;
|
1724
1725
|
id: string;
|
1725
|
-
name: string;
|
1726
1726
|
createdAt: Date;
|
1727
1727
|
updatedAt: Date;
|
1728
1728
|
deletedAt: Date | null;
|
@@ -1731,9 +1731,9 @@ export declare const subscriptionContract: {
|
|
1731
1731
|
omnichannel: string;
|
1732
1732
|
usageType: string | null;
|
1733
1733
|
productPrice: {
|
1734
|
-
id: string;
|
1735
|
-
name: string | null;
|
1736
1734
|
currency: string | null;
|
1735
|
+
name: string | null;
|
1736
|
+
id: string;
|
1737
1737
|
createdAt: Date;
|
1738
1738
|
updatedAt: Date;
|
1739
1739
|
deletedAt: Date | null;
|
@@ -1744,9 +1744,9 @@ export declare const subscriptionContract: {
|
|
1744
1744
|
relatedProducts: {
|
1745
1745
|
id: string;
|
1746
1746
|
product: {
|
1747
|
+
name: string;
|
1747
1748
|
type: string;
|
1748
1749
|
id: string;
|
1749
|
-
name: string;
|
1750
1750
|
createdAt: Date;
|
1751
1751
|
updatedAt: Date;
|
1752
1752
|
deletedAt: Date | null;
|
@@ -1755,9 +1755,9 @@ export declare const subscriptionContract: {
|
|
1755
1755
|
omnichannel: string;
|
1756
1756
|
usageType: string | null;
|
1757
1757
|
productPrice: {
|
1758
|
-
id: string;
|
1759
|
-
name: string | null;
|
1760
1758
|
currency: string | null;
|
1759
|
+
name: string | null;
|
1760
|
+
id: string;
|
1761
1761
|
createdAt: Date;
|
1762
1762
|
updatedAt: Date;
|
1763
1763
|
deletedAt: Date | null;
|
@@ -1774,9 +1774,9 @@ export declare const subscriptionContract: {
|
|
1774
1774
|
}>, "many">;
|
1775
1775
|
}, "strip", z.ZodTypeAny, {
|
1776
1776
|
data: {
|
1777
|
+
name: string;
|
1777
1778
|
type: string;
|
1778
1779
|
id: string;
|
1779
|
-
name: string;
|
1780
1780
|
createdAt: Date;
|
1781
1781
|
updatedAt: Date;
|
1782
1782
|
deletedAt: Date | null;
|
@@ -1785,9 +1785,9 @@ export declare const subscriptionContract: {
|
|
1785
1785
|
omnichannel: string;
|
1786
1786
|
usageType: string | null;
|
1787
1787
|
productPrice: {
|
1788
|
-
id: string;
|
1789
|
-
name: string | null;
|
1790
1788
|
currency: string | null;
|
1789
|
+
name: string | null;
|
1790
|
+
id: string;
|
1791
1791
|
createdAt: Date;
|
1792
1792
|
updatedAt: Date;
|
1793
1793
|
deletedAt: Date | null;
|
@@ -1798,9 +1798,9 @@ export declare const subscriptionContract: {
|
|
1798
1798
|
relatedProducts: {
|
1799
1799
|
id: string;
|
1800
1800
|
product: {
|
1801
|
+
name: string;
|
1801
1802
|
type: string;
|
1802
1803
|
id: string;
|
1803
|
-
name: string;
|
1804
1804
|
createdAt: Date;
|
1805
1805
|
updatedAt: Date;
|
1806
1806
|
deletedAt: Date | null;
|
@@ -1809,9 +1809,9 @@ export declare const subscriptionContract: {
|
|
1809
1809
|
omnichannel: string;
|
1810
1810
|
usageType: string | null;
|
1811
1811
|
productPrice: {
|
1812
|
-
id: string;
|
1813
|
-
name: string | null;
|
1814
1812
|
currency: string | null;
|
1813
|
+
name: string | null;
|
1814
|
+
id: string;
|
1815
1815
|
createdAt: Date;
|
1816
1816
|
updatedAt: Date;
|
1817
1817
|
deletedAt: Date | null;
|
@@ -1829,9 +1829,9 @@ export declare const subscriptionContract: {
|
|
1829
1829
|
requestId: string;
|
1830
1830
|
}, {
|
1831
1831
|
data: {
|
1832
|
+
name: string;
|
1832
1833
|
type: string;
|
1833
1834
|
id: string;
|
1834
|
-
name: string;
|
1835
1835
|
createdAt: Date;
|
1836
1836
|
updatedAt: Date;
|
1837
1837
|
deletedAt: Date | null;
|
@@ -1840,9 +1840,9 @@ export declare const subscriptionContract: {
|
|
1840
1840
|
omnichannel: string;
|
1841
1841
|
usageType: string | null;
|
1842
1842
|
productPrice: {
|
1843
|
-
id: string;
|
1844
|
-
name: string | null;
|
1845
1843
|
currency: string | null;
|
1844
|
+
name: string | null;
|
1845
|
+
id: string;
|
1846
1846
|
createdAt: Date;
|
1847
1847
|
updatedAt: Date;
|
1848
1848
|
deletedAt: Date | null;
|
@@ -1853,9 +1853,9 @@ export declare const subscriptionContract: {
|
|
1853
1853
|
relatedProducts: {
|
1854
1854
|
id: string;
|
1855
1855
|
product: {
|
1856
|
+
name: string;
|
1856
1857
|
type: string;
|
1857
1858
|
id: string;
|
1858
|
-
name: string;
|
1859
1859
|
createdAt: Date;
|
1860
1860
|
updatedAt: Date;
|
1861
1861
|
deletedAt: Date | null;
|
@@ -1864,9 +1864,9 @@ export declare const subscriptionContract: {
|
|
1864
1864
|
omnichannel: string;
|
1865
1865
|
usageType: string | null;
|
1866
1866
|
productPrice: {
|
1867
|
-
id: string;
|
1868
|
-
name: string | null;
|
1869
1867
|
currency: string | null;
|
1868
|
+
name: string | null;
|
1869
|
+
id: string;
|
1870
1870
|
createdAt: Date;
|
1871
1871
|
updatedAt: Date;
|
1872
1872
|
deletedAt: Date | null;
|