@kl1/contracts 1.1.58-uat → 1.1.60-uat
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.js +13 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -2
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +138 -138
- package/dist/src/chat/schema.d.ts +51 -81
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +46 -46
- package/dist/src/contract.d.ts +572 -236
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/facebook-feed/index.d.ts +66 -66
- package/dist/src/facebook-feed/schema.d.ts +3 -3
- package/dist/src/instagram/index.d.ts +33 -33
- package/dist/src/line/index.d.ts +38 -38
- package/dist/src/line/validation.d.ts +5 -5
- package/dist/src/messenger/index.d.ts +33 -33
- package/dist/src/subscription/index.d.ts +336 -0
- package/dist/src/subscription/index.d.ts.map +1 -1
- package/dist/src/subscription/schema.d.ts +133 -0
- package/dist/src/subscription/schema.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +33 -33
- package/dist/src/webchat/index.d.ts +33 -33
- package/package.json +1 -1
@@ -212,11 +212,121 @@ export declare const subscriptionContract: {
|
|
212
212
|
perUnit: number;
|
213
213
|
price: number;
|
214
214
|
}>;
|
215
|
+
product: z.ZodObject<{
|
216
|
+
id: z.ZodString;
|
217
|
+
createdAt: z.ZodDate;
|
218
|
+
updatedAt: z.ZodDate;
|
219
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
220
|
+
provider: z.ZodString;
|
221
|
+
productId: z.ZodString;
|
222
|
+
name: z.ZodString;
|
223
|
+
type: z.ZodString;
|
224
|
+
omnichannel: z.ZodString;
|
225
|
+
usageType: z.ZodNullable<z.ZodString>;
|
226
|
+
productPrice: z.ZodObject<{
|
227
|
+
id: z.ZodString;
|
228
|
+
createdAt: z.ZodDate;
|
229
|
+
updatedAt: z.ZodDate;
|
230
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
231
|
+
priceId: z.ZodString;
|
232
|
+
name: z.ZodNullable<z.ZodString>;
|
233
|
+
perUnit: z.ZodNumber;
|
234
|
+
price: z.ZodNumber;
|
235
|
+
currency: z.ZodNullable<z.ZodString>;
|
236
|
+
}, "strip", z.ZodTypeAny, {
|
237
|
+
id: string;
|
238
|
+
name: string | null;
|
239
|
+
currency: string | null;
|
240
|
+
createdAt: Date;
|
241
|
+
updatedAt: Date;
|
242
|
+
deletedAt: Date | null;
|
243
|
+
priceId: string;
|
244
|
+
perUnit: number;
|
245
|
+
price: number;
|
246
|
+
}, {
|
247
|
+
id: string;
|
248
|
+
name: string | null;
|
249
|
+
currency: string | null;
|
250
|
+
createdAt: Date;
|
251
|
+
updatedAt: Date;
|
252
|
+
deletedAt: Date | null;
|
253
|
+
priceId: string;
|
254
|
+
perUnit: number;
|
255
|
+
price: number;
|
256
|
+
}>;
|
257
|
+
}, "strip", z.ZodTypeAny, {
|
258
|
+
type: string;
|
259
|
+
id: string;
|
260
|
+
name: string;
|
261
|
+
createdAt: Date;
|
262
|
+
updatedAt: Date;
|
263
|
+
deletedAt: Date | null;
|
264
|
+
provider: string;
|
265
|
+
productId: string;
|
266
|
+
omnichannel: string;
|
267
|
+
usageType: string | null;
|
268
|
+
productPrice: {
|
269
|
+
id: string;
|
270
|
+
name: string | null;
|
271
|
+
currency: string | null;
|
272
|
+
createdAt: Date;
|
273
|
+
updatedAt: Date;
|
274
|
+
deletedAt: Date | null;
|
275
|
+
priceId: string;
|
276
|
+
perUnit: number;
|
277
|
+
price: number;
|
278
|
+
};
|
279
|
+
}, {
|
280
|
+
type: string;
|
281
|
+
id: string;
|
282
|
+
name: string;
|
283
|
+
createdAt: Date;
|
284
|
+
updatedAt: Date;
|
285
|
+
deletedAt: Date | null;
|
286
|
+
provider: string;
|
287
|
+
productId: string;
|
288
|
+
omnichannel: string;
|
289
|
+
usageType: string | null;
|
290
|
+
productPrice: {
|
291
|
+
id: string;
|
292
|
+
name: string | null;
|
293
|
+
currency: string | null;
|
294
|
+
createdAt: Date;
|
295
|
+
updatedAt: Date;
|
296
|
+
deletedAt: Date | null;
|
297
|
+
priceId: string;
|
298
|
+
perUnit: number;
|
299
|
+
price: number;
|
300
|
+
};
|
301
|
+
}>;
|
215
302
|
}, "strip", z.ZodTypeAny, {
|
216
303
|
type: string;
|
217
304
|
interval: string;
|
218
305
|
id: string;
|
219
306
|
name: string | null;
|
307
|
+
product: {
|
308
|
+
type: string;
|
309
|
+
id: string;
|
310
|
+
name: string;
|
311
|
+
createdAt: Date;
|
312
|
+
updatedAt: Date;
|
313
|
+
deletedAt: Date | null;
|
314
|
+
provider: string;
|
315
|
+
productId: string;
|
316
|
+
omnichannel: string;
|
317
|
+
usageType: string | null;
|
318
|
+
productPrice: {
|
319
|
+
id: string;
|
320
|
+
name: string | null;
|
321
|
+
currency: string | null;
|
322
|
+
createdAt: Date;
|
323
|
+
updatedAt: Date;
|
324
|
+
deletedAt: Date | null;
|
325
|
+
priceId: string;
|
326
|
+
perUnit: number;
|
327
|
+
price: number;
|
328
|
+
};
|
329
|
+
};
|
220
330
|
status: string;
|
221
331
|
createdAt: Date;
|
222
332
|
updatedAt: Date;
|
@@ -275,6 +385,29 @@ export declare const subscriptionContract: {
|
|
275
385
|
interval: string;
|
276
386
|
id: string;
|
277
387
|
name: string | null;
|
388
|
+
product: {
|
389
|
+
type: string;
|
390
|
+
id: string;
|
391
|
+
name: string;
|
392
|
+
createdAt: Date;
|
393
|
+
updatedAt: Date;
|
394
|
+
deletedAt: Date | null;
|
395
|
+
provider: string;
|
396
|
+
productId: string;
|
397
|
+
omnichannel: string;
|
398
|
+
usageType: string | null;
|
399
|
+
productPrice: {
|
400
|
+
id: string;
|
401
|
+
name: string | null;
|
402
|
+
currency: string | null;
|
403
|
+
createdAt: Date;
|
404
|
+
updatedAt: Date;
|
405
|
+
deletedAt: Date | null;
|
406
|
+
priceId: string;
|
407
|
+
perUnit: number;
|
408
|
+
price: number;
|
409
|
+
};
|
410
|
+
};
|
278
411
|
status: string;
|
279
412
|
createdAt: Date;
|
280
413
|
updatedAt: Date;
|
@@ -336,6 +469,29 @@ export declare const subscriptionContract: {
|
|
336
469
|
interval: string;
|
337
470
|
id: string;
|
338
471
|
name: string | null;
|
472
|
+
product: {
|
473
|
+
type: string;
|
474
|
+
id: string;
|
475
|
+
name: string;
|
476
|
+
createdAt: Date;
|
477
|
+
updatedAt: Date;
|
478
|
+
deletedAt: Date | null;
|
479
|
+
provider: string;
|
480
|
+
productId: string;
|
481
|
+
omnichannel: string;
|
482
|
+
usageType: string | null;
|
483
|
+
productPrice: {
|
484
|
+
id: string;
|
485
|
+
name: string | null;
|
486
|
+
currency: string | null;
|
487
|
+
createdAt: Date;
|
488
|
+
updatedAt: Date;
|
489
|
+
deletedAt: Date | null;
|
490
|
+
priceId: string;
|
491
|
+
perUnit: number;
|
492
|
+
price: number;
|
493
|
+
};
|
494
|
+
};
|
339
495
|
status: string;
|
340
496
|
createdAt: Date;
|
341
497
|
updatedAt: Date;
|
@@ -397,6 +553,29 @@ export declare const subscriptionContract: {
|
|
397
553
|
interval: string;
|
398
554
|
id: string;
|
399
555
|
name: string | null;
|
556
|
+
product: {
|
557
|
+
type: string;
|
558
|
+
id: string;
|
559
|
+
name: string;
|
560
|
+
createdAt: Date;
|
561
|
+
updatedAt: Date;
|
562
|
+
deletedAt: Date | null;
|
563
|
+
provider: string;
|
564
|
+
productId: string;
|
565
|
+
omnichannel: string;
|
566
|
+
usageType: string | null;
|
567
|
+
productPrice: {
|
568
|
+
id: string;
|
569
|
+
name: string | null;
|
570
|
+
currency: string | null;
|
571
|
+
createdAt: Date;
|
572
|
+
updatedAt: Date;
|
573
|
+
deletedAt: Date | null;
|
574
|
+
priceId: string;
|
575
|
+
perUnit: number;
|
576
|
+
price: number;
|
577
|
+
};
|
578
|
+
};
|
400
579
|
status: string;
|
401
580
|
createdAt: Date;
|
402
581
|
updatedAt: Date;
|
@@ -522,5 +701,162 @@ export declare const subscriptionContract: {
|
|
522
701
|
};
|
523
702
|
path: "subscriptions/";
|
524
703
|
};
|
704
|
+
getAvailablePlan: {
|
705
|
+
method: "GET";
|
706
|
+
query: null;
|
707
|
+
responses: {
|
708
|
+
200: z.ZodObject<{
|
709
|
+
requestId: z.ZodString;
|
710
|
+
data: z.ZodArray<z.ZodObject<{
|
711
|
+
id: z.ZodString;
|
712
|
+
createdAt: z.ZodDate;
|
713
|
+
updatedAt: z.ZodDate;
|
714
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
715
|
+
provider: z.ZodString;
|
716
|
+
productId: z.ZodString;
|
717
|
+
name: z.ZodString;
|
718
|
+
type: z.ZodString;
|
719
|
+
omnichannel: z.ZodString;
|
720
|
+
usageType: z.ZodNullable<z.ZodString>;
|
721
|
+
productPrice: z.ZodObject<{
|
722
|
+
id: z.ZodString;
|
723
|
+
createdAt: z.ZodDate;
|
724
|
+
updatedAt: z.ZodDate;
|
725
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
726
|
+
priceId: z.ZodString;
|
727
|
+
name: z.ZodNullable<z.ZodString>;
|
728
|
+
perUnit: z.ZodNumber;
|
729
|
+
price: z.ZodNumber;
|
730
|
+
currency: z.ZodNullable<z.ZodString>;
|
731
|
+
}, "strip", z.ZodTypeAny, {
|
732
|
+
id: string;
|
733
|
+
name: string | null;
|
734
|
+
currency: string | null;
|
735
|
+
createdAt: Date;
|
736
|
+
updatedAt: Date;
|
737
|
+
deletedAt: Date | null;
|
738
|
+
priceId: string;
|
739
|
+
perUnit: number;
|
740
|
+
price: number;
|
741
|
+
}, {
|
742
|
+
id: string;
|
743
|
+
name: string | null;
|
744
|
+
currency: string | null;
|
745
|
+
createdAt: Date;
|
746
|
+
updatedAt: Date;
|
747
|
+
deletedAt: Date | null;
|
748
|
+
priceId: string;
|
749
|
+
perUnit: number;
|
750
|
+
price: number;
|
751
|
+
}>;
|
752
|
+
}, "strip", z.ZodTypeAny, {
|
753
|
+
type: string;
|
754
|
+
id: string;
|
755
|
+
name: string;
|
756
|
+
createdAt: Date;
|
757
|
+
updatedAt: Date;
|
758
|
+
deletedAt: Date | null;
|
759
|
+
provider: string;
|
760
|
+
productId: string;
|
761
|
+
omnichannel: string;
|
762
|
+
usageType: string | null;
|
763
|
+
productPrice: {
|
764
|
+
id: string;
|
765
|
+
name: string | null;
|
766
|
+
currency: string | null;
|
767
|
+
createdAt: Date;
|
768
|
+
updatedAt: Date;
|
769
|
+
deletedAt: Date | null;
|
770
|
+
priceId: string;
|
771
|
+
perUnit: number;
|
772
|
+
price: number;
|
773
|
+
};
|
774
|
+
}, {
|
775
|
+
type: string;
|
776
|
+
id: string;
|
777
|
+
name: string;
|
778
|
+
createdAt: Date;
|
779
|
+
updatedAt: Date;
|
780
|
+
deletedAt: Date | null;
|
781
|
+
provider: string;
|
782
|
+
productId: string;
|
783
|
+
omnichannel: string;
|
784
|
+
usageType: string | null;
|
785
|
+
productPrice: {
|
786
|
+
id: string;
|
787
|
+
name: string | null;
|
788
|
+
currency: string | null;
|
789
|
+
createdAt: Date;
|
790
|
+
updatedAt: Date;
|
791
|
+
deletedAt: Date | null;
|
792
|
+
priceId: string;
|
793
|
+
perUnit: number;
|
794
|
+
price: number;
|
795
|
+
};
|
796
|
+
}>, "many">;
|
797
|
+
}, "strip", z.ZodTypeAny, {
|
798
|
+
data: {
|
799
|
+
type: string;
|
800
|
+
id: string;
|
801
|
+
name: string;
|
802
|
+
createdAt: Date;
|
803
|
+
updatedAt: Date;
|
804
|
+
deletedAt: Date | null;
|
805
|
+
provider: string;
|
806
|
+
productId: string;
|
807
|
+
omnichannel: string;
|
808
|
+
usageType: string | null;
|
809
|
+
productPrice: {
|
810
|
+
id: string;
|
811
|
+
name: string | null;
|
812
|
+
currency: string | null;
|
813
|
+
createdAt: Date;
|
814
|
+
updatedAt: Date;
|
815
|
+
deletedAt: Date | null;
|
816
|
+
priceId: string;
|
817
|
+
perUnit: number;
|
818
|
+
price: number;
|
819
|
+
};
|
820
|
+
}[];
|
821
|
+
requestId: string;
|
822
|
+
}, {
|
823
|
+
data: {
|
824
|
+
type: string;
|
825
|
+
id: string;
|
826
|
+
name: string;
|
827
|
+
createdAt: Date;
|
828
|
+
updatedAt: Date;
|
829
|
+
deletedAt: Date | null;
|
830
|
+
provider: string;
|
831
|
+
productId: string;
|
832
|
+
omnichannel: string;
|
833
|
+
usageType: string | null;
|
834
|
+
productPrice: {
|
835
|
+
id: string;
|
836
|
+
name: string | null;
|
837
|
+
currency: string | null;
|
838
|
+
createdAt: Date;
|
839
|
+
updatedAt: Date;
|
840
|
+
deletedAt: Date | null;
|
841
|
+
priceId: string;
|
842
|
+
perUnit: number;
|
843
|
+
price: number;
|
844
|
+
};
|
845
|
+
}[];
|
846
|
+
requestId: string;
|
847
|
+
}>;
|
848
|
+
500: z.ZodObject<{
|
849
|
+
message: z.ZodString;
|
850
|
+
error: z.ZodAny;
|
851
|
+
}, "strip", z.ZodTypeAny, {
|
852
|
+
message: string;
|
853
|
+
error?: any;
|
854
|
+
}, {
|
855
|
+
message: string;
|
856
|
+
error?: any;
|
857
|
+
}>;
|
858
|
+
};
|
859
|
+
path: "subscriptions/available-plan";
|
860
|
+
};
|
525
861
|
};
|
526
862
|
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/subscription/index.ts"],"names":[],"mappings":"AAKA,OAAO,EAAO,CAAC,EAAE,MAAM,KAAK,CAAC;AAE7B,OAAO,EAAE,wBAAwB,EAAE,MAAM,cAAc,CAAC;AAExD,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE9E,eAAO,MAAM,oBAAoB
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/subscription/index.ts"],"names":[],"mappings":"AAKA,OAAO,EAAO,CAAC,EAAE,MAAM,KAAK,CAAC;AAE7B,OAAO,EAAE,wBAAwB,EAAE,MAAM,cAAc,CAAC;AAExD,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE9E,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4ChC,CAAC"}
|
@@ -479,11 +479,121 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
479
479
|
perUnit: number;
|
480
480
|
price: number;
|
481
481
|
}>;
|
482
|
+
product: z.ZodObject<{
|
483
|
+
id: z.ZodString;
|
484
|
+
createdAt: z.ZodDate;
|
485
|
+
updatedAt: z.ZodDate;
|
486
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
487
|
+
provider: z.ZodString;
|
488
|
+
productId: z.ZodString;
|
489
|
+
name: z.ZodString;
|
490
|
+
type: z.ZodString;
|
491
|
+
omnichannel: z.ZodString;
|
492
|
+
usageType: z.ZodNullable<z.ZodString>;
|
493
|
+
productPrice: z.ZodObject<{
|
494
|
+
id: z.ZodString;
|
495
|
+
createdAt: z.ZodDate;
|
496
|
+
updatedAt: z.ZodDate;
|
497
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
498
|
+
priceId: z.ZodString;
|
499
|
+
name: z.ZodNullable<z.ZodString>;
|
500
|
+
perUnit: z.ZodNumber;
|
501
|
+
price: z.ZodNumber;
|
502
|
+
currency: z.ZodNullable<z.ZodString>;
|
503
|
+
}, "strip", z.ZodTypeAny, {
|
504
|
+
id: string;
|
505
|
+
name: string | null;
|
506
|
+
currency: string | null;
|
507
|
+
createdAt: Date;
|
508
|
+
updatedAt: Date;
|
509
|
+
deletedAt: Date | null;
|
510
|
+
priceId: string;
|
511
|
+
perUnit: number;
|
512
|
+
price: number;
|
513
|
+
}, {
|
514
|
+
id: string;
|
515
|
+
name: string | null;
|
516
|
+
currency: string | null;
|
517
|
+
createdAt: Date;
|
518
|
+
updatedAt: Date;
|
519
|
+
deletedAt: Date | null;
|
520
|
+
priceId: string;
|
521
|
+
perUnit: number;
|
522
|
+
price: number;
|
523
|
+
}>;
|
524
|
+
}, "strip", z.ZodTypeAny, {
|
525
|
+
type: string;
|
526
|
+
id: string;
|
527
|
+
name: string;
|
528
|
+
createdAt: Date;
|
529
|
+
updatedAt: Date;
|
530
|
+
deletedAt: Date | null;
|
531
|
+
provider: string;
|
532
|
+
productId: string;
|
533
|
+
omnichannel: string;
|
534
|
+
usageType: string | null;
|
535
|
+
productPrice: {
|
536
|
+
id: string;
|
537
|
+
name: string | null;
|
538
|
+
currency: string | null;
|
539
|
+
createdAt: Date;
|
540
|
+
updatedAt: Date;
|
541
|
+
deletedAt: Date | null;
|
542
|
+
priceId: string;
|
543
|
+
perUnit: number;
|
544
|
+
price: number;
|
545
|
+
};
|
546
|
+
}, {
|
547
|
+
type: string;
|
548
|
+
id: string;
|
549
|
+
name: string;
|
550
|
+
createdAt: Date;
|
551
|
+
updatedAt: Date;
|
552
|
+
deletedAt: Date | null;
|
553
|
+
provider: string;
|
554
|
+
productId: string;
|
555
|
+
omnichannel: string;
|
556
|
+
usageType: string | null;
|
557
|
+
productPrice: {
|
558
|
+
id: string;
|
559
|
+
name: string | null;
|
560
|
+
currency: string | null;
|
561
|
+
createdAt: Date;
|
562
|
+
updatedAt: Date;
|
563
|
+
deletedAt: Date | null;
|
564
|
+
priceId: string;
|
565
|
+
perUnit: number;
|
566
|
+
price: number;
|
567
|
+
};
|
568
|
+
}>;
|
482
569
|
}, "strip", z.ZodTypeAny, {
|
483
570
|
type: string;
|
484
571
|
interval: string;
|
485
572
|
id: string;
|
486
573
|
name: string | null;
|
574
|
+
product: {
|
575
|
+
type: string;
|
576
|
+
id: string;
|
577
|
+
name: string;
|
578
|
+
createdAt: Date;
|
579
|
+
updatedAt: Date;
|
580
|
+
deletedAt: Date | null;
|
581
|
+
provider: string;
|
582
|
+
productId: string;
|
583
|
+
omnichannel: string;
|
584
|
+
usageType: string | null;
|
585
|
+
productPrice: {
|
586
|
+
id: string;
|
587
|
+
name: string | null;
|
588
|
+
currency: string | null;
|
589
|
+
createdAt: Date;
|
590
|
+
updatedAt: Date;
|
591
|
+
deletedAt: Date | null;
|
592
|
+
priceId: string;
|
593
|
+
perUnit: number;
|
594
|
+
price: number;
|
595
|
+
};
|
596
|
+
};
|
487
597
|
status: string;
|
488
598
|
createdAt: Date;
|
489
599
|
updatedAt: Date;
|
@@ -542,6 +652,29 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
542
652
|
interval: string;
|
543
653
|
id: string;
|
544
654
|
name: string | null;
|
655
|
+
product: {
|
656
|
+
type: string;
|
657
|
+
id: string;
|
658
|
+
name: string;
|
659
|
+
createdAt: Date;
|
660
|
+
updatedAt: Date;
|
661
|
+
deletedAt: Date | null;
|
662
|
+
provider: string;
|
663
|
+
productId: string;
|
664
|
+
omnichannel: string;
|
665
|
+
usageType: string | null;
|
666
|
+
productPrice: {
|
667
|
+
id: string;
|
668
|
+
name: string | null;
|
669
|
+
currency: string | null;
|
670
|
+
createdAt: Date;
|
671
|
+
updatedAt: Date;
|
672
|
+
deletedAt: Date | null;
|
673
|
+
priceId: string;
|
674
|
+
perUnit: number;
|
675
|
+
price: number;
|
676
|
+
};
|
677
|
+
};
|
545
678
|
status: string;
|
546
679
|
createdAt: Date;
|
547
680
|
updatedAt: Date;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/subscription/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM7B,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQxB,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKnC,CAAC;AAEH,eAAO,MAAM,kBAAkB
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/subscription/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM7B,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQxB,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKnC,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAc7B,CAAC"}
|