@kl1/contracts 1.1.57-uat → 1.1.59-uat
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/dist/src/contract.d.ts +254 -0
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/subscription/index.d.ts +254 -0
- package/dist/src/subscription/index.d.ts.map +1 -1
- package/dist/src/subscription/schema.d.ts +186 -0
- package/dist/src/subscription/schema.d.ts.map +1 -1
- package/package.json +1 -1
@@ -181,16 +181,168 @@ export declare const subscriptionContract: {
|
|
181
181
|
subscriptionItemId: string;
|
182
182
|
usage: number | null;
|
183
183
|
}>, "many">;
|
184
|
+
productPrice: z.ZodObject<{
|
185
|
+
id: z.ZodString;
|
186
|
+
createdAt: z.ZodDate;
|
187
|
+
updatedAt: z.ZodDate;
|
188
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
189
|
+
priceId: z.ZodString;
|
190
|
+
name: z.ZodNullable<z.ZodString>;
|
191
|
+
perUnit: z.ZodNumber;
|
192
|
+
price: z.ZodNumber;
|
193
|
+
currency: z.ZodNullable<z.ZodString>;
|
194
|
+
}, "strip", z.ZodTypeAny, {
|
195
|
+
id: string;
|
196
|
+
name: string | null;
|
197
|
+
currency: string | null;
|
198
|
+
createdAt: Date;
|
199
|
+
updatedAt: Date;
|
200
|
+
deletedAt: Date | null;
|
201
|
+
priceId: string;
|
202
|
+
perUnit: number;
|
203
|
+
price: number;
|
204
|
+
}, {
|
205
|
+
id: string;
|
206
|
+
name: string | null;
|
207
|
+
currency: string | null;
|
208
|
+
createdAt: Date;
|
209
|
+
updatedAt: Date;
|
210
|
+
deletedAt: Date | null;
|
211
|
+
priceId: string;
|
212
|
+
perUnit: number;
|
213
|
+
price: number;
|
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
|
+
}>;
|
184
302
|
}, "strip", z.ZodTypeAny, {
|
185
303
|
type: string;
|
186
304
|
interval: string;
|
187
305
|
id: string;
|
188
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
|
+
};
|
189
330
|
status: string;
|
190
331
|
createdAt: Date;
|
191
332
|
updatedAt: Date;
|
192
333
|
deletedAt: Date | null;
|
193
334
|
provider: string;
|
335
|
+
productPrice: {
|
336
|
+
id: string;
|
337
|
+
name: string | null;
|
338
|
+
currency: string | null;
|
339
|
+
createdAt: Date;
|
340
|
+
updatedAt: Date;
|
341
|
+
deletedAt: Date | null;
|
342
|
+
priceId: string;
|
343
|
+
perUnit: number;
|
344
|
+
price: number;
|
345
|
+
};
|
194
346
|
subscriptionId: string;
|
195
347
|
quantity: number;
|
196
348
|
amount: number;
|
@@ -233,11 +385,45 @@ export declare const subscriptionContract: {
|
|
233
385
|
interval: string;
|
234
386
|
id: string;
|
235
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
|
+
};
|
236
411
|
status: string;
|
237
412
|
createdAt: Date;
|
238
413
|
updatedAt: Date;
|
239
414
|
deletedAt: Date | null;
|
240
415
|
provider: string;
|
416
|
+
productPrice: {
|
417
|
+
id: string;
|
418
|
+
name: string | null;
|
419
|
+
currency: string | null;
|
420
|
+
createdAt: Date;
|
421
|
+
updatedAt: Date;
|
422
|
+
deletedAt: Date | null;
|
423
|
+
priceId: string;
|
424
|
+
perUnit: number;
|
425
|
+
price: number;
|
426
|
+
};
|
241
427
|
subscriptionId: string;
|
242
428
|
quantity: number;
|
243
429
|
amount: number;
|
@@ -283,11 +469,45 @@ export declare const subscriptionContract: {
|
|
283
469
|
interval: string;
|
284
470
|
id: string;
|
285
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
|
+
};
|
286
495
|
status: string;
|
287
496
|
createdAt: Date;
|
288
497
|
updatedAt: Date;
|
289
498
|
deletedAt: Date | null;
|
290
499
|
provider: string;
|
500
|
+
productPrice: {
|
501
|
+
id: string;
|
502
|
+
name: string | null;
|
503
|
+
currency: string | null;
|
504
|
+
createdAt: Date;
|
505
|
+
updatedAt: Date;
|
506
|
+
deletedAt: Date | null;
|
507
|
+
priceId: string;
|
508
|
+
perUnit: number;
|
509
|
+
price: number;
|
510
|
+
};
|
291
511
|
subscriptionId: string;
|
292
512
|
quantity: number;
|
293
513
|
amount: number;
|
@@ -333,11 +553,45 @@ export declare const subscriptionContract: {
|
|
333
553
|
interval: string;
|
334
554
|
id: string;
|
335
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
|
+
};
|
336
579
|
status: string;
|
337
580
|
createdAt: Date;
|
338
581
|
updatedAt: Date;
|
339
582
|
deletedAt: Date | null;
|
340
583
|
provider: string;
|
584
|
+
productPrice: {
|
585
|
+
id: string;
|
586
|
+
name: string | null;
|
587
|
+
currency: string | null;
|
588
|
+
createdAt: Date;
|
589
|
+
updatedAt: Date;
|
590
|
+
deletedAt: Date | null;
|
591
|
+
priceId: string;
|
592
|
+
perUnit: number;
|
593
|
+
price: number;
|
594
|
+
};
|
341
595
|
subscriptionId: string;
|
342
596
|
quantity: number;
|
343
597
|
amount: number;
|
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgChC,CAAC"}
|
@@ -448,16 +448,168 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
448
448
|
subscriptionItemId: string;
|
449
449
|
usage: number | null;
|
450
450
|
}>, "many">;
|
451
|
+
productPrice: z.ZodObject<{
|
452
|
+
id: z.ZodString;
|
453
|
+
createdAt: z.ZodDate;
|
454
|
+
updatedAt: z.ZodDate;
|
455
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
456
|
+
priceId: z.ZodString;
|
457
|
+
name: z.ZodNullable<z.ZodString>;
|
458
|
+
perUnit: z.ZodNumber;
|
459
|
+
price: z.ZodNumber;
|
460
|
+
currency: z.ZodNullable<z.ZodString>;
|
461
|
+
}, "strip", z.ZodTypeAny, {
|
462
|
+
id: string;
|
463
|
+
name: string | null;
|
464
|
+
currency: string | null;
|
465
|
+
createdAt: Date;
|
466
|
+
updatedAt: Date;
|
467
|
+
deletedAt: Date | null;
|
468
|
+
priceId: string;
|
469
|
+
perUnit: number;
|
470
|
+
price: number;
|
471
|
+
}, {
|
472
|
+
id: string;
|
473
|
+
name: string | null;
|
474
|
+
currency: string | null;
|
475
|
+
createdAt: Date;
|
476
|
+
updatedAt: Date;
|
477
|
+
deletedAt: Date | null;
|
478
|
+
priceId: string;
|
479
|
+
perUnit: number;
|
480
|
+
price: number;
|
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
|
+
}>;
|
451
569
|
}, "strip", z.ZodTypeAny, {
|
452
570
|
type: string;
|
453
571
|
interval: string;
|
454
572
|
id: string;
|
455
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
|
+
};
|
456
597
|
status: string;
|
457
598
|
createdAt: Date;
|
458
599
|
updatedAt: Date;
|
459
600
|
deletedAt: Date | null;
|
460
601
|
provider: string;
|
602
|
+
productPrice: {
|
603
|
+
id: string;
|
604
|
+
name: string | null;
|
605
|
+
currency: string | null;
|
606
|
+
createdAt: Date;
|
607
|
+
updatedAt: Date;
|
608
|
+
deletedAt: Date | null;
|
609
|
+
priceId: string;
|
610
|
+
perUnit: number;
|
611
|
+
price: number;
|
612
|
+
};
|
461
613
|
subscriptionId: string;
|
462
614
|
quantity: number;
|
463
615
|
amount: number;
|
@@ -500,11 +652,45 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
500
652
|
interval: string;
|
501
653
|
id: string;
|
502
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
|
+
};
|
503
678
|
status: string;
|
504
679
|
createdAt: Date;
|
505
680
|
updatedAt: Date;
|
506
681
|
deletedAt: Date | null;
|
507
682
|
provider: string;
|
683
|
+
productPrice: {
|
684
|
+
id: string;
|
685
|
+
name: string | null;
|
686
|
+
currency: string | null;
|
687
|
+
createdAt: Date;
|
688
|
+
updatedAt: Date;
|
689
|
+
deletedAt: Date | null;
|
690
|
+
priceId: string;
|
691
|
+
perUnit: number;
|
692
|
+
price: number;
|
693
|
+
};
|
508
694
|
subscriptionId: string;
|
509
695
|
quantity: number;
|
510
696
|
amount: number;
|
@@ -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"}
|