celitech-sdk 1.3.55 → 1.3.57
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/README.md +3 -3
- package/dist/index.d.ts +695 -693
- package/dist/index.js +256 -252
- package/dist/index.mjs +256 -252
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -247,36 +247,36 @@ declare class BaseService {
|
|
247
247
|
* The shape of the model inside the application code - what the users use
|
248
248
|
*/
|
249
249
|
declare const listDestinationsOkResponse: z.ZodLazy<z.ZodObject<{
|
250
|
-
destinations: z.
|
251
|
-
name: z.
|
252
|
-
destination: z.
|
253
|
-
destinationIso2: z.
|
254
|
-
supportedCountries: z.
|
250
|
+
destinations: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
251
|
+
name: z.ZodString;
|
252
|
+
destination: z.ZodString;
|
253
|
+
destinationIso2: z.ZodString;
|
254
|
+
supportedCountries: z.ZodArray<z.ZodString, "many">;
|
255
255
|
}, "strip", z.ZodTypeAny, {
|
256
|
-
name
|
257
|
-
destination
|
258
|
-
destinationIso2
|
259
|
-
supportedCountries
|
256
|
+
name: string;
|
257
|
+
destination: string;
|
258
|
+
destinationIso2: string;
|
259
|
+
supportedCountries: string[];
|
260
260
|
}, {
|
261
|
-
name
|
262
|
-
destination
|
263
|
-
destinationIso2
|
264
|
-
supportedCountries
|
265
|
-
}>>, "many"
|
261
|
+
name: string;
|
262
|
+
destination: string;
|
263
|
+
destinationIso2: string;
|
264
|
+
supportedCountries: string[];
|
265
|
+
}>>, "many">;
|
266
266
|
}, "strip", z.ZodTypeAny, {
|
267
|
-
destinations
|
268
|
-
name
|
269
|
-
destination
|
270
|
-
destinationIso2
|
271
|
-
supportedCountries
|
272
|
-
}[]
|
267
|
+
destinations: {
|
268
|
+
name: string;
|
269
|
+
destination: string;
|
270
|
+
destinationIso2: string;
|
271
|
+
supportedCountries: string[];
|
272
|
+
}[];
|
273
273
|
}, {
|
274
|
-
destinations
|
275
|
-
name
|
276
|
-
destination
|
277
|
-
destinationIso2
|
278
|
-
supportedCountries
|
279
|
-
}[]
|
274
|
+
destinations: {
|
275
|
+
name: string;
|
276
|
+
destination: string;
|
277
|
+
destinationIso2: string;
|
278
|
+
supportedCountries: string[];
|
279
|
+
}[];
|
280
280
|
}>>;
|
281
281
|
/**
|
282
282
|
*
|
@@ -298,20 +298,20 @@ declare class DestinationsService extends BaseService {
|
|
298
298
|
* The shape of the model inside the application code - what the users use
|
299
299
|
*/
|
300
300
|
declare const destinations: z.ZodLazy<z.ZodObject<{
|
301
|
-
name: z.
|
302
|
-
destination: z.
|
303
|
-
destinationIso2: z.
|
304
|
-
supportedCountries: z.
|
301
|
+
name: z.ZodString;
|
302
|
+
destination: z.ZodString;
|
303
|
+
destinationIso2: z.ZodString;
|
304
|
+
supportedCountries: z.ZodArray<z.ZodString, "many">;
|
305
305
|
}, "strip", z.ZodTypeAny, {
|
306
|
-
name
|
307
|
-
destination
|
308
|
-
destinationIso2
|
309
|
-
supportedCountries
|
306
|
+
name: string;
|
307
|
+
destination: string;
|
308
|
+
destinationIso2: string;
|
309
|
+
supportedCountries: string[];
|
310
310
|
}, {
|
311
|
-
name
|
312
|
-
destination
|
313
|
-
destinationIso2
|
314
|
-
supportedCountries
|
311
|
+
name: string;
|
312
|
+
destination: string;
|
313
|
+
destinationIso2: string;
|
314
|
+
supportedCountries: string[];
|
315
315
|
}>>;
|
316
316
|
/**
|
317
317
|
*
|
@@ -341,54 +341,54 @@ declare class _1 extends ThrowableError {
|
|
341
341
|
* The shape of the model inside the application code - what the users use
|
342
342
|
*/
|
343
343
|
declare const listPackagesOkResponse: z.ZodLazy<z.ZodObject<{
|
344
|
-
packages: z.
|
345
|
-
id: z.
|
346
|
-
destination: z.
|
347
|
-
destinationIso2: z.
|
348
|
-
dataLimitInBytes: z.
|
349
|
-
minDays: z.
|
350
|
-
maxDays: z.
|
351
|
-
priceInCents: z.
|
344
|
+
packages: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
345
|
+
id: z.ZodString;
|
346
|
+
destination: z.ZodString;
|
347
|
+
destinationIso2: z.ZodString;
|
348
|
+
dataLimitInBytes: z.ZodNumber;
|
349
|
+
minDays: z.ZodNumber;
|
350
|
+
maxDays: z.ZodNumber;
|
351
|
+
priceInCents: z.ZodNumber;
|
352
352
|
}, "strip", z.ZodTypeAny, {
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
dataLimitInBytes
|
357
|
-
minDays
|
358
|
-
maxDays
|
359
|
-
priceInCents
|
353
|
+
destination: string;
|
354
|
+
destinationIso2: string;
|
355
|
+
id: string;
|
356
|
+
dataLimitInBytes: number;
|
357
|
+
minDays: number;
|
358
|
+
maxDays: number;
|
359
|
+
priceInCents: number;
|
360
360
|
}, {
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
dataLimitInBytes
|
365
|
-
minDays
|
366
|
-
maxDays
|
367
|
-
priceInCents
|
368
|
-
}>>, "many"
|
369
|
-
afterCursor: z.ZodNullable<z.
|
361
|
+
destination: string;
|
362
|
+
destinationIso2: string;
|
363
|
+
id: string;
|
364
|
+
dataLimitInBytes: number;
|
365
|
+
minDays: number;
|
366
|
+
maxDays: number;
|
367
|
+
priceInCents: number;
|
368
|
+
}>>, "many">;
|
369
|
+
afterCursor: z.ZodNullable<z.ZodString>;
|
370
370
|
}, "strip", z.ZodTypeAny, {
|
371
|
-
packages
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
dataLimitInBytes
|
376
|
-
minDays
|
377
|
-
maxDays
|
378
|
-
priceInCents
|
379
|
-
}[]
|
380
|
-
afterCursor
|
371
|
+
packages: {
|
372
|
+
destination: string;
|
373
|
+
destinationIso2: string;
|
374
|
+
id: string;
|
375
|
+
dataLimitInBytes: number;
|
376
|
+
minDays: number;
|
377
|
+
maxDays: number;
|
378
|
+
priceInCents: number;
|
379
|
+
}[];
|
380
|
+
afterCursor: string | null;
|
381
381
|
}, {
|
382
|
-
packages
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
dataLimitInBytes
|
387
|
-
minDays
|
388
|
-
maxDays
|
389
|
-
priceInCents
|
390
|
-
}[]
|
391
|
-
afterCursor
|
382
|
+
packages: {
|
383
|
+
destination: string;
|
384
|
+
destinationIso2: string;
|
385
|
+
id: string;
|
386
|
+
dataLimitInBytes: number;
|
387
|
+
minDays: number;
|
388
|
+
maxDays: number;
|
389
|
+
priceInCents: number;
|
390
|
+
}[];
|
391
|
+
afterCursor: string | null;
|
392
392
|
}>>;
|
393
393
|
/**
|
394
394
|
*
|
@@ -430,29 +430,29 @@ declare class PackagesService extends BaseService {
|
|
430
430
|
* The shape of the model inside the application code - what the users use
|
431
431
|
*/
|
432
432
|
declare const packages: z.ZodLazy<z.ZodObject<{
|
433
|
-
id: z.
|
434
|
-
destination: z.
|
435
|
-
destinationIso2: z.
|
436
|
-
dataLimitInBytes: z.
|
437
|
-
minDays: z.
|
438
|
-
maxDays: z.
|
439
|
-
priceInCents: z.
|
433
|
+
id: z.ZodString;
|
434
|
+
destination: z.ZodString;
|
435
|
+
destinationIso2: z.ZodString;
|
436
|
+
dataLimitInBytes: z.ZodNumber;
|
437
|
+
minDays: z.ZodNumber;
|
438
|
+
maxDays: z.ZodNumber;
|
439
|
+
priceInCents: z.ZodNumber;
|
440
440
|
}, "strip", z.ZodTypeAny, {
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
dataLimitInBytes
|
445
|
-
minDays
|
446
|
-
maxDays
|
447
|
-
priceInCents
|
441
|
+
destination: string;
|
442
|
+
destinationIso2: string;
|
443
|
+
id: string;
|
444
|
+
dataLimitInBytes: number;
|
445
|
+
minDays: number;
|
446
|
+
maxDays: number;
|
447
|
+
priceInCents: number;
|
448
448
|
}, {
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
dataLimitInBytes
|
453
|
-
minDays
|
454
|
-
maxDays
|
455
|
-
priceInCents
|
449
|
+
destination: string;
|
450
|
+
destinationIso2: string;
|
451
|
+
id: string;
|
452
|
+
dataLimitInBytes: number;
|
453
|
+
minDays: number;
|
454
|
+
maxDays: number;
|
455
|
+
priceInCents: number;
|
456
456
|
}>>;
|
457
457
|
/**
|
458
458
|
*
|
@@ -534,54 +534,54 @@ type CreatePurchaseV2Request = z.infer<typeof createPurchaseV2Request>;
|
|
534
534
|
* The shape of the model inside the application code - what the users use
|
535
535
|
*/
|
536
536
|
declare const createPurchaseV2OkResponse: z.ZodLazy<z.ZodObject<{
|
537
|
-
purchase: z.
|
538
|
-
id: z.
|
539
|
-
packageId: z.
|
540
|
-
createdDate: z.
|
537
|
+
purchase: z.ZodLazy<z.ZodObject<{
|
538
|
+
id: z.ZodString;
|
539
|
+
packageId: z.ZodString;
|
540
|
+
createdDate: z.ZodString;
|
541
541
|
}, "strip", z.ZodTypeAny, {
|
542
|
-
id
|
543
|
-
packageId
|
544
|
-
createdDate
|
542
|
+
id: string;
|
543
|
+
packageId: string;
|
544
|
+
createdDate: string;
|
545
545
|
}, {
|
546
|
-
id
|
547
|
-
packageId
|
548
|
-
createdDate
|
549
|
-
}
|
550
|
-
profile: z.
|
551
|
-
iccid: z.
|
552
|
-
activationCode: z.
|
553
|
-
manualActivationCode: z.
|
546
|
+
id: string;
|
547
|
+
packageId: string;
|
548
|
+
createdDate: string;
|
549
|
+
}>>;
|
550
|
+
profile: z.ZodLazy<z.ZodObject<{
|
551
|
+
iccid: z.ZodString;
|
552
|
+
activationCode: z.ZodString;
|
553
|
+
manualActivationCode: z.ZodString;
|
554
554
|
}, "strip", z.ZodTypeAny, {
|
555
|
-
iccid
|
556
|
-
activationCode
|
557
|
-
manualActivationCode
|
555
|
+
iccid: string;
|
556
|
+
activationCode: string;
|
557
|
+
manualActivationCode: string;
|
558
558
|
}, {
|
559
|
-
iccid
|
560
|
-
activationCode
|
561
|
-
manualActivationCode
|
562
|
-
}
|
559
|
+
iccid: string;
|
560
|
+
activationCode: string;
|
561
|
+
manualActivationCode: string;
|
562
|
+
}>>;
|
563
563
|
}, "strip", z.ZodTypeAny, {
|
564
|
-
purchase
|
565
|
-
id
|
566
|
-
packageId
|
567
|
-
createdDate
|
568
|
-
}
|
569
|
-
profile
|
570
|
-
iccid
|
571
|
-
activationCode
|
572
|
-
manualActivationCode
|
573
|
-
}
|
564
|
+
purchase: {
|
565
|
+
id: string;
|
566
|
+
packageId: string;
|
567
|
+
createdDate: string;
|
568
|
+
};
|
569
|
+
profile: {
|
570
|
+
iccid: string;
|
571
|
+
activationCode: string;
|
572
|
+
manualActivationCode: string;
|
573
|
+
};
|
574
574
|
}, {
|
575
|
-
purchase
|
576
|
-
id
|
577
|
-
packageId
|
578
|
-
createdDate
|
579
|
-
}
|
580
|
-
profile
|
581
|
-
iccid
|
582
|
-
activationCode
|
583
|
-
manualActivationCode
|
584
|
-
}
|
575
|
+
purchase: {
|
576
|
+
id: string;
|
577
|
+
packageId: string;
|
578
|
+
createdDate: string;
|
579
|
+
};
|
580
|
+
profile: {
|
581
|
+
iccid: string;
|
582
|
+
activationCode: string;
|
583
|
+
manualActivationCode: string;
|
584
|
+
};
|
585
585
|
}>>;
|
586
586
|
/**
|
587
587
|
*
|
@@ -595,142 +595,142 @@ type CreatePurchaseV2OkResponse = z.infer<typeof createPurchaseV2OkResponse>;
|
|
595
595
|
* The shape of the model inside the application code - what the users use
|
596
596
|
*/
|
597
597
|
declare const listPurchasesOkResponse: z.ZodLazy<z.ZodObject<{
|
598
|
-
purchases: z.
|
599
|
-
id: z.
|
600
|
-
startDate: z.
|
601
|
-
endDate: z.
|
602
|
-
createdDate: z.
|
598
|
+
purchases: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
599
|
+
id: z.ZodString;
|
600
|
+
startDate: z.ZodString;
|
601
|
+
endDate: z.ZodString;
|
602
|
+
createdDate: z.ZodString;
|
603
603
|
startTime: z.ZodOptional<z.ZodNumber>;
|
604
604
|
endTime: z.ZodOptional<z.ZodNumber>;
|
605
605
|
createdAt: z.ZodOptional<z.ZodNumber>;
|
606
|
-
package: z.
|
607
|
-
id: z.
|
608
|
-
dataLimitInBytes: z.
|
609
|
-
destination: z.
|
610
|
-
destinationIso2: z.
|
611
|
-
destinationName: z.
|
612
|
-
priceInCents: z.
|
606
|
+
package: z.ZodLazy<z.ZodObject<{
|
607
|
+
id: z.ZodString;
|
608
|
+
dataLimitInBytes: z.ZodNumber;
|
609
|
+
destination: z.ZodString;
|
610
|
+
destinationIso2: z.ZodString;
|
611
|
+
destinationName: z.ZodString;
|
612
|
+
priceInCents: z.ZodNumber;
|
613
613
|
}, "strip", z.ZodTypeAny, {
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
614
|
+
destination: string;
|
615
|
+
destinationIso2: string;
|
616
|
+
id: string;
|
617
|
+
dataLimitInBytes: number;
|
618
|
+
priceInCents: number;
|
619
|
+
destinationName: string;
|
620
620
|
}, {
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
}
|
628
|
-
esim: z.
|
629
|
-
iccid: z.
|
621
|
+
destination: string;
|
622
|
+
destinationIso2: string;
|
623
|
+
id: string;
|
624
|
+
dataLimitInBytes: number;
|
625
|
+
priceInCents: number;
|
626
|
+
destinationName: string;
|
627
|
+
}>>;
|
628
|
+
esim: z.ZodLazy<z.ZodObject<{
|
629
|
+
iccid: z.ZodString;
|
630
630
|
}, "strip", z.ZodTypeAny, {
|
631
|
-
iccid
|
631
|
+
iccid: string;
|
632
632
|
}, {
|
633
|
-
iccid
|
634
|
-
}
|
635
|
-
source: z.
|
636
|
-
purchaseType: z.
|
637
|
-
referenceId: z.ZodOptional<z.ZodString
|
633
|
+
iccid: string;
|
634
|
+
}>>;
|
635
|
+
source: z.ZodString;
|
636
|
+
purchaseType: z.ZodString;
|
637
|
+
referenceId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
638
638
|
}, "strip", z.ZodTypeAny, {
|
639
|
-
id
|
640
|
-
startDate
|
641
|
-
endDate
|
642
|
-
createdDate
|
639
|
+
id: string;
|
640
|
+
startDate: string;
|
641
|
+
endDate: string;
|
642
|
+
createdDate: string;
|
643
|
+
package: {
|
644
|
+
destination: string;
|
645
|
+
destinationIso2: string;
|
646
|
+
id: string;
|
647
|
+
dataLimitInBytes: number;
|
648
|
+
priceInCents: number;
|
649
|
+
destinationName: string;
|
650
|
+
};
|
651
|
+
esim: {
|
652
|
+
iccid: string;
|
653
|
+
};
|
654
|
+
source: string;
|
655
|
+
purchaseType: string;
|
643
656
|
startTime?: number | undefined;
|
644
657
|
endTime?: number | undefined;
|
645
658
|
createdAt?: number | undefined;
|
646
|
-
|
647
|
-
id?: string | undefined;
|
648
|
-
dataLimitInBytes?: number | undefined;
|
649
|
-
destination?: string | undefined;
|
650
|
-
destinationIso2?: string | undefined;
|
651
|
-
destinationName?: string | undefined;
|
652
|
-
priceInCents?: number | undefined;
|
653
|
-
} | undefined;
|
654
|
-
esim?: {
|
655
|
-
iccid?: string | undefined;
|
656
|
-
} | undefined;
|
657
|
-
source?: string | undefined;
|
658
|
-
purchaseType?: string | undefined;
|
659
|
-
referenceId?: string | undefined;
|
659
|
+
referenceId?: string | null | undefined;
|
660
660
|
}, {
|
661
|
-
id
|
662
|
-
startDate
|
663
|
-
endDate
|
664
|
-
createdDate
|
661
|
+
id: string;
|
662
|
+
startDate: string;
|
663
|
+
endDate: string;
|
664
|
+
createdDate: string;
|
665
|
+
package: {
|
666
|
+
destination: string;
|
667
|
+
destinationIso2: string;
|
668
|
+
id: string;
|
669
|
+
dataLimitInBytes: number;
|
670
|
+
priceInCents: number;
|
671
|
+
destinationName: string;
|
672
|
+
};
|
673
|
+
esim: {
|
674
|
+
iccid: string;
|
675
|
+
};
|
676
|
+
source: string;
|
677
|
+
purchaseType: string;
|
665
678
|
startTime?: number | undefined;
|
666
679
|
endTime?: number | undefined;
|
667
680
|
createdAt?: number | undefined;
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
destination?: string | undefined;
|
672
|
-
destinationIso2?: string | undefined;
|
673
|
-
destinationName?: string | undefined;
|
674
|
-
priceInCents?: number | undefined;
|
675
|
-
} | undefined;
|
676
|
-
esim?: {
|
677
|
-
iccid?: string | undefined;
|
678
|
-
} | undefined;
|
679
|
-
source?: string | undefined;
|
680
|
-
purchaseType?: string | undefined;
|
681
|
-
referenceId?: string | undefined;
|
682
|
-
}>>, "many">>;
|
683
|
-
afterCursor: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
681
|
+
referenceId?: string | null | undefined;
|
682
|
+
}>>, "many">;
|
683
|
+
afterCursor: z.ZodNullable<z.ZodString>;
|
684
684
|
}, "strip", z.ZodTypeAny, {
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
685
|
+
afterCursor: string | null;
|
686
|
+
purchases: {
|
687
|
+
id: string;
|
688
|
+
startDate: string;
|
689
|
+
endDate: string;
|
690
|
+
createdDate: string;
|
691
|
+
package: {
|
692
|
+
destination: string;
|
693
|
+
destinationIso2: string;
|
694
|
+
id: string;
|
695
|
+
dataLimitInBytes: number;
|
696
|
+
priceInCents: number;
|
697
|
+
destinationName: string;
|
698
|
+
};
|
699
|
+
esim: {
|
700
|
+
iccid: string;
|
701
|
+
};
|
702
|
+
source: string;
|
703
|
+
purchaseType: string;
|
690
704
|
startTime?: number | undefined;
|
691
705
|
endTime?: number | undefined;
|
692
706
|
createdAt?: number | undefined;
|
693
|
-
|
694
|
-
|
695
|
-
dataLimitInBytes?: number | undefined;
|
696
|
-
destination?: string | undefined;
|
697
|
-
destinationIso2?: string | undefined;
|
698
|
-
destinationName?: string | undefined;
|
699
|
-
priceInCents?: number | undefined;
|
700
|
-
} | undefined;
|
701
|
-
esim?: {
|
702
|
-
iccid?: string | undefined;
|
703
|
-
} | undefined;
|
704
|
-
source?: string | undefined;
|
705
|
-
purchaseType?: string | undefined;
|
706
|
-
referenceId?: string | undefined;
|
707
|
-
}[] | undefined;
|
708
|
-
afterCursor?: string | null | undefined;
|
707
|
+
referenceId?: string | null | undefined;
|
708
|
+
}[];
|
709
709
|
}, {
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
710
|
+
afterCursor: string | null;
|
711
|
+
purchases: {
|
712
|
+
id: string;
|
713
|
+
startDate: string;
|
714
|
+
endDate: string;
|
715
|
+
createdDate: string;
|
716
|
+
package: {
|
717
|
+
destination: string;
|
718
|
+
destinationIso2: string;
|
719
|
+
id: string;
|
720
|
+
dataLimitInBytes: number;
|
721
|
+
priceInCents: number;
|
722
|
+
destinationName: string;
|
723
|
+
};
|
724
|
+
esim: {
|
725
|
+
iccid: string;
|
726
|
+
};
|
727
|
+
source: string;
|
728
|
+
purchaseType: string;
|
715
729
|
startTime?: number | undefined;
|
716
730
|
endTime?: number | undefined;
|
717
731
|
createdAt?: number | undefined;
|
718
|
-
|
719
|
-
|
720
|
-
dataLimitInBytes?: number | undefined;
|
721
|
-
destination?: string | undefined;
|
722
|
-
destinationIso2?: string | undefined;
|
723
|
-
destinationName?: string | undefined;
|
724
|
-
priceInCents?: number | undefined;
|
725
|
-
} | undefined;
|
726
|
-
esim?: {
|
727
|
-
iccid?: string | undefined;
|
728
|
-
} | undefined;
|
729
|
-
source?: string | undefined;
|
730
|
-
purchaseType?: string | undefined;
|
731
|
-
referenceId?: string | undefined;
|
732
|
-
}[] | undefined;
|
733
|
-
afterCursor?: string | null | undefined;
|
732
|
+
referenceId?: string | null | undefined;
|
733
|
+
}[];
|
734
734
|
}>>;
|
735
735
|
/**
|
736
736
|
*
|
@@ -744,6 +744,7 @@ interface ListPurchasesParams {
|
|
744
744
|
iccid?: string;
|
745
745
|
afterDate?: string;
|
746
746
|
beforeDate?: string;
|
747
|
+
email?: string;
|
747
748
|
referenceId?: string;
|
748
749
|
afterCursor?: string;
|
749
750
|
limit?: number;
|
@@ -808,74 +809,74 @@ type CreatePurchaseRequest = z.infer<typeof createPurchaseRequest>;
|
|
808
809
|
* The shape of the model inside the application code - what the users use
|
809
810
|
*/
|
810
811
|
declare const createPurchaseOkResponse: z.ZodLazy<z.ZodObject<{
|
811
|
-
purchase: z.
|
812
|
-
id: z.
|
813
|
-
packageId: z.
|
814
|
-
startDate: z.
|
815
|
-
endDate: z.
|
816
|
-
createdDate: z.
|
812
|
+
purchase: z.ZodLazy<z.ZodObject<{
|
813
|
+
id: z.ZodString;
|
814
|
+
packageId: z.ZodString;
|
815
|
+
startDate: z.ZodString;
|
816
|
+
endDate: z.ZodString;
|
817
|
+
createdDate: z.ZodString;
|
817
818
|
startTime: z.ZodOptional<z.ZodNumber>;
|
818
819
|
endTime: z.ZodOptional<z.ZodNumber>;
|
819
820
|
}, "strip", z.ZodTypeAny, {
|
820
|
-
id
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
createdDate
|
821
|
+
id: string;
|
822
|
+
startDate: string;
|
823
|
+
endDate: string;
|
824
|
+
packageId: string;
|
825
|
+
createdDate: string;
|
825
826
|
startTime?: number | undefined;
|
826
827
|
endTime?: number | undefined;
|
827
828
|
}, {
|
828
|
-
id
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
createdDate
|
829
|
+
id: string;
|
830
|
+
startDate: string;
|
831
|
+
endDate: string;
|
832
|
+
packageId: string;
|
833
|
+
createdDate: string;
|
833
834
|
startTime?: number | undefined;
|
834
835
|
endTime?: number | undefined;
|
835
|
-
}
|
836
|
-
profile: z.
|
837
|
-
iccid: z.
|
838
|
-
activationCode: z.
|
839
|
-
manualActivationCode: z.
|
836
|
+
}>>;
|
837
|
+
profile: z.ZodLazy<z.ZodObject<{
|
838
|
+
iccid: z.ZodString;
|
839
|
+
activationCode: z.ZodString;
|
840
|
+
manualActivationCode: z.ZodString;
|
840
841
|
}, "strip", z.ZodTypeAny, {
|
841
|
-
iccid
|
842
|
-
activationCode
|
843
|
-
manualActivationCode
|
842
|
+
iccid: string;
|
843
|
+
activationCode: string;
|
844
|
+
manualActivationCode: string;
|
844
845
|
}, {
|
845
|
-
iccid
|
846
|
-
activationCode
|
847
|
-
manualActivationCode
|
848
|
-
}
|
846
|
+
iccid: string;
|
847
|
+
activationCode: string;
|
848
|
+
manualActivationCode: string;
|
849
|
+
}>>;
|
849
850
|
}, "strip", z.ZodTypeAny, {
|
850
|
-
purchase
|
851
|
-
id
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
createdDate
|
851
|
+
purchase: {
|
852
|
+
id: string;
|
853
|
+
startDate: string;
|
854
|
+
endDate: string;
|
855
|
+
packageId: string;
|
856
|
+
createdDate: string;
|
856
857
|
startTime?: number | undefined;
|
857
858
|
endTime?: number | undefined;
|
858
|
-
}
|
859
|
-
profile
|
860
|
-
iccid
|
861
|
-
activationCode
|
862
|
-
manualActivationCode
|
863
|
-
}
|
859
|
+
};
|
860
|
+
profile: {
|
861
|
+
iccid: string;
|
862
|
+
activationCode: string;
|
863
|
+
manualActivationCode: string;
|
864
|
+
};
|
864
865
|
}, {
|
865
|
-
purchase
|
866
|
-
id
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
createdDate
|
866
|
+
purchase: {
|
867
|
+
id: string;
|
868
|
+
startDate: string;
|
869
|
+
endDate: string;
|
870
|
+
packageId: string;
|
871
|
+
createdDate: string;
|
871
872
|
startTime?: number | undefined;
|
872
873
|
endTime?: number | undefined;
|
873
|
-
}
|
874
|
-
profile
|
875
|
-
iccid
|
876
|
-
activationCode
|
877
|
-
manualActivationCode
|
878
|
-
}
|
874
|
+
};
|
875
|
+
profile: {
|
876
|
+
iccid: string;
|
877
|
+
activationCode: string;
|
878
|
+
manualActivationCode: string;
|
879
|
+
};
|
879
880
|
}>>;
|
880
881
|
/**
|
881
882
|
*
|
@@ -938,64 +939,64 @@ type TopUpEsimRequest = z.infer<typeof topUpEsimRequest>;
|
|
938
939
|
* The shape of the model inside the application code - what the users use
|
939
940
|
*/
|
940
941
|
declare const topUpEsimOkResponse: z.ZodLazy<z.ZodObject<{
|
941
|
-
purchase: z.
|
942
|
-
id: z.
|
943
|
-
packageId: z.
|
944
|
-
startDate: z.
|
945
|
-
endDate: z.
|
946
|
-
createdDate: z.
|
942
|
+
purchase: z.ZodLazy<z.ZodObject<{
|
943
|
+
id: z.ZodString;
|
944
|
+
packageId: z.ZodString;
|
945
|
+
startDate: z.ZodString;
|
946
|
+
endDate: z.ZodString;
|
947
|
+
createdDate: z.ZodString;
|
947
948
|
startTime: z.ZodOptional<z.ZodNumber>;
|
948
949
|
endTime: z.ZodOptional<z.ZodNumber>;
|
949
950
|
}, "strip", z.ZodTypeAny, {
|
950
|
-
id
|
951
|
-
|
952
|
-
|
953
|
-
|
954
|
-
createdDate
|
951
|
+
id: string;
|
952
|
+
startDate: string;
|
953
|
+
endDate: string;
|
954
|
+
packageId: string;
|
955
|
+
createdDate: string;
|
955
956
|
startTime?: number | undefined;
|
956
957
|
endTime?: number | undefined;
|
957
958
|
}, {
|
958
|
-
id
|
959
|
-
|
960
|
-
|
961
|
-
|
962
|
-
createdDate
|
959
|
+
id: string;
|
960
|
+
startDate: string;
|
961
|
+
endDate: string;
|
962
|
+
packageId: string;
|
963
|
+
createdDate: string;
|
963
964
|
startTime?: number | undefined;
|
964
965
|
endTime?: number | undefined;
|
965
|
-
}
|
966
|
-
profile: z.
|
967
|
-
iccid: z.
|
966
|
+
}>>;
|
967
|
+
profile: z.ZodLazy<z.ZodObject<{
|
968
|
+
iccid: z.ZodString;
|
968
969
|
}, "strip", z.ZodTypeAny, {
|
969
|
-
iccid
|
970
|
+
iccid: string;
|
970
971
|
}, {
|
971
|
-
iccid
|
972
|
-
}
|
972
|
+
iccid: string;
|
973
|
+
}>>;
|
973
974
|
}, "strip", z.ZodTypeAny, {
|
974
|
-
purchase
|
975
|
-
id
|
976
|
-
|
977
|
-
|
978
|
-
|
979
|
-
createdDate
|
975
|
+
purchase: {
|
976
|
+
id: string;
|
977
|
+
startDate: string;
|
978
|
+
endDate: string;
|
979
|
+
packageId: string;
|
980
|
+
createdDate: string;
|
980
981
|
startTime?: number | undefined;
|
981
982
|
endTime?: number | undefined;
|
982
|
-
}
|
983
|
-
profile
|
984
|
-
iccid
|
985
|
-
}
|
983
|
+
};
|
984
|
+
profile: {
|
985
|
+
iccid: string;
|
986
|
+
};
|
986
987
|
}, {
|
987
|
-
purchase
|
988
|
-
id
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
createdDate
|
988
|
+
purchase: {
|
989
|
+
id: string;
|
990
|
+
startDate: string;
|
991
|
+
endDate: string;
|
992
|
+
packageId: string;
|
993
|
+
createdDate: string;
|
993
994
|
startTime?: number | undefined;
|
994
995
|
endTime?: number | undefined;
|
995
|
-
}
|
996
|
-
profile
|
997
|
-
iccid
|
998
|
-
}
|
996
|
+
};
|
997
|
+
profile: {
|
998
|
+
iccid: string;
|
999
|
+
};
|
999
1000
|
}>>;
|
1000
1001
|
/**
|
1001
1002
|
*
|
@@ -1042,21 +1043,21 @@ type EditPurchaseRequest = z.infer<typeof editPurchaseRequest>;
|
|
1042
1043
|
* The shape of the model inside the application code - what the users use
|
1043
1044
|
*/
|
1044
1045
|
declare const editPurchaseOkResponse: z.ZodLazy<z.ZodObject<{
|
1045
|
-
purchaseId: z.
|
1046
|
-
newStartDate: z.
|
1047
|
-
newEndDate: z.
|
1046
|
+
purchaseId: z.ZodString;
|
1047
|
+
newStartDate: z.ZodString;
|
1048
|
+
newEndDate: z.ZodString;
|
1048
1049
|
newStartTime: z.ZodOptional<z.ZodNumber>;
|
1049
1050
|
newEndTime: z.ZodOptional<z.ZodNumber>;
|
1050
1051
|
}, "strip", z.ZodTypeAny, {
|
1051
|
-
purchaseId
|
1052
|
-
newStartDate
|
1053
|
-
newEndDate
|
1052
|
+
purchaseId: string;
|
1053
|
+
newStartDate: string;
|
1054
|
+
newEndDate: string;
|
1054
1055
|
newStartTime?: number | undefined;
|
1055
1056
|
newEndTime?: number | undefined;
|
1056
1057
|
}, {
|
1057
|
-
purchaseId
|
1058
|
-
newStartDate
|
1059
|
-
newEndDate
|
1058
|
+
purchaseId: string;
|
1059
|
+
newStartDate: string;
|
1060
|
+
newEndDate: string;
|
1060
1061
|
newStartTime?: number | undefined;
|
1061
1062
|
newEndTime?: number | undefined;
|
1062
1063
|
}>>;
|
@@ -1075,14 +1076,14 @@ type EditPurchaseOkResponse = z.infer<typeof editPurchaseOkResponse>;
|
|
1075
1076
|
* The shape of the model inside the application code - what the users use
|
1076
1077
|
*/
|
1077
1078
|
declare const getPurchaseConsumptionOkResponse: z.ZodLazy<z.ZodObject<{
|
1078
|
-
dataUsageRemainingInBytes: z.
|
1079
|
-
status: z.
|
1079
|
+
dataUsageRemainingInBytes: z.ZodNumber;
|
1080
|
+
status: z.ZodString;
|
1080
1081
|
}, "strip", z.ZodTypeAny, {
|
1081
|
-
|
1082
|
-
|
1082
|
+
status: string;
|
1083
|
+
dataUsageRemainingInBytes: number;
|
1083
1084
|
}, {
|
1084
|
-
|
1085
|
-
|
1085
|
+
status: string;
|
1086
|
+
dataUsageRemainingInBytes: number;
|
1086
1087
|
}>>;
|
1087
1088
|
/**
|
1088
1089
|
*
|
@@ -1104,6 +1105,7 @@ declare class PurchasesService extends BaseService {
|
|
1104
1105
|
* @param {string} [params.iccid] - ID of the eSIM
|
1105
1106
|
* @param {string} [params.afterDate] - Start date of the interval for filtering purchases in the format 'yyyy-MM-dd'
|
1106
1107
|
* @param {string} [params.beforeDate] - End date of the interval for filtering purchases in the format 'yyyy-MM-dd'
|
1108
|
+
* @param {string} [params.email] - Email associated to the purchase.
|
1107
1109
|
* @param {string} [params.referenceId] - The referenceId that was provided by the partner during the purchase or topup flow.
|
1108
1110
|
* @param {string} [params.afterCursor] - To get the next batch of results, use this parameter. It tells the API where to start fetching data after the last item you received. It helps you avoid repeats and efficiently browse through large sets of data.
|
1109
1111
|
* @param {number} [params.limit] - Maximum number of purchases to be returned in the response. The value must be greater than 0 and less than or equal to 100. If not provided, the default value is 20
|
@@ -1144,17 +1146,17 @@ declare class PurchasesService extends BaseService {
|
|
1144
1146
|
* The shape of the model inside the application code - what the users use
|
1145
1147
|
*/
|
1146
1148
|
declare const createPurchaseV2OkResponsePurchase: z.ZodLazy<z.ZodObject<{
|
1147
|
-
id: z.
|
1148
|
-
packageId: z.
|
1149
|
-
createdDate: z.
|
1149
|
+
id: z.ZodString;
|
1150
|
+
packageId: z.ZodString;
|
1151
|
+
createdDate: z.ZodString;
|
1150
1152
|
}, "strip", z.ZodTypeAny, {
|
1151
|
-
id
|
1152
|
-
packageId
|
1153
|
-
createdDate
|
1153
|
+
id: string;
|
1154
|
+
packageId: string;
|
1155
|
+
createdDate: string;
|
1154
1156
|
}, {
|
1155
|
-
id
|
1156
|
-
packageId
|
1157
|
-
createdDate
|
1157
|
+
id: string;
|
1158
|
+
packageId: string;
|
1159
|
+
createdDate: string;
|
1158
1160
|
}>>;
|
1159
1161
|
/**
|
1160
1162
|
*
|
@@ -1169,17 +1171,17 @@ type CreatePurchaseV2OkResponsePurchase = z.infer<typeof createPurchaseV2OkRespo
|
|
1169
1171
|
* The shape of the model inside the application code - what the users use
|
1170
1172
|
*/
|
1171
1173
|
declare const createPurchaseV2OkResponseProfile: z.ZodLazy<z.ZodObject<{
|
1172
|
-
iccid: z.
|
1173
|
-
activationCode: z.
|
1174
|
-
manualActivationCode: z.
|
1174
|
+
iccid: z.ZodString;
|
1175
|
+
activationCode: z.ZodString;
|
1176
|
+
manualActivationCode: z.ZodString;
|
1175
1177
|
}, "strip", z.ZodTypeAny, {
|
1176
|
-
iccid
|
1177
|
-
activationCode
|
1178
|
-
manualActivationCode
|
1178
|
+
iccid: string;
|
1179
|
+
activationCode: string;
|
1180
|
+
manualActivationCode: string;
|
1179
1181
|
}, {
|
1180
|
-
iccid
|
1181
|
-
activationCode
|
1182
|
-
manualActivationCode
|
1182
|
+
iccid: string;
|
1183
|
+
activationCode: string;
|
1184
|
+
manualActivationCode: string;
|
1183
1185
|
}>>;
|
1184
1186
|
/**
|
1185
1187
|
*
|
@@ -1194,89 +1196,89 @@ type CreatePurchaseV2OkResponseProfile = z.infer<typeof createPurchaseV2OkRespon
|
|
1194
1196
|
* The shape of the model inside the application code - what the users use
|
1195
1197
|
*/
|
1196
1198
|
declare const purchases: z.ZodLazy<z.ZodObject<{
|
1197
|
-
id: z.
|
1198
|
-
startDate: z.
|
1199
|
-
endDate: z.
|
1200
|
-
createdDate: z.
|
1199
|
+
id: z.ZodString;
|
1200
|
+
startDate: z.ZodString;
|
1201
|
+
endDate: z.ZodString;
|
1202
|
+
createdDate: z.ZodString;
|
1201
1203
|
startTime: z.ZodOptional<z.ZodNumber>;
|
1202
1204
|
endTime: z.ZodOptional<z.ZodNumber>;
|
1203
1205
|
createdAt: z.ZodOptional<z.ZodNumber>;
|
1204
|
-
package: z.
|
1205
|
-
id: z.
|
1206
|
-
dataLimitInBytes: z.
|
1207
|
-
destination: z.
|
1208
|
-
destinationIso2: z.
|
1209
|
-
destinationName: z.
|
1210
|
-
priceInCents: z.
|
1206
|
+
package: z.ZodLazy<z.ZodObject<{
|
1207
|
+
id: z.ZodString;
|
1208
|
+
dataLimitInBytes: z.ZodNumber;
|
1209
|
+
destination: z.ZodString;
|
1210
|
+
destinationIso2: z.ZodString;
|
1211
|
+
destinationName: z.ZodString;
|
1212
|
+
priceInCents: z.ZodNumber;
|
1211
1213
|
}, "strip", z.ZodTypeAny, {
|
1212
|
-
|
1213
|
-
|
1214
|
-
|
1215
|
-
|
1216
|
-
|
1217
|
-
|
1214
|
+
destination: string;
|
1215
|
+
destinationIso2: string;
|
1216
|
+
id: string;
|
1217
|
+
dataLimitInBytes: number;
|
1218
|
+
priceInCents: number;
|
1219
|
+
destinationName: string;
|
1218
1220
|
}, {
|
1219
|
-
|
1220
|
-
|
1221
|
-
|
1222
|
-
|
1223
|
-
|
1224
|
-
|
1225
|
-
}
|
1226
|
-
esim: z.
|
1227
|
-
iccid: z.
|
1221
|
+
destination: string;
|
1222
|
+
destinationIso2: string;
|
1223
|
+
id: string;
|
1224
|
+
dataLimitInBytes: number;
|
1225
|
+
priceInCents: number;
|
1226
|
+
destinationName: string;
|
1227
|
+
}>>;
|
1228
|
+
esim: z.ZodLazy<z.ZodObject<{
|
1229
|
+
iccid: z.ZodString;
|
1228
1230
|
}, "strip", z.ZodTypeAny, {
|
1229
|
-
iccid
|
1231
|
+
iccid: string;
|
1230
1232
|
}, {
|
1231
|
-
iccid
|
1232
|
-
}
|
1233
|
-
source: z.
|
1234
|
-
purchaseType: z.
|
1235
|
-
referenceId: z.ZodOptional<z.ZodString
|
1233
|
+
iccid: string;
|
1234
|
+
}>>;
|
1235
|
+
source: z.ZodString;
|
1236
|
+
purchaseType: z.ZodString;
|
1237
|
+
referenceId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1236
1238
|
}, "strip", z.ZodTypeAny, {
|
1237
|
-
id
|
1238
|
-
startDate
|
1239
|
-
endDate
|
1240
|
-
createdDate
|
1239
|
+
id: string;
|
1240
|
+
startDate: string;
|
1241
|
+
endDate: string;
|
1242
|
+
createdDate: string;
|
1243
|
+
package: {
|
1244
|
+
destination: string;
|
1245
|
+
destinationIso2: string;
|
1246
|
+
id: string;
|
1247
|
+
dataLimitInBytes: number;
|
1248
|
+
priceInCents: number;
|
1249
|
+
destinationName: string;
|
1250
|
+
};
|
1251
|
+
esim: {
|
1252
|
+
iccid: string;
|
1253
|
+
};
|
1254
|
+
source: string;
|
1255
|
+
purchaseType: string;
|
1241
1256
|
startTime?: number | undefined;
|
1242
1257
|
endTime?: number | undefined;
|
1243
1258
|
createdAt?: number | undefined;
|
1244
|
-
|
1245
|
-
id?: string | undefined;
|
1246
|
-
dataLimitInBytes?: number | undefined;
|
1247
|
-
destination?: string | undefined;
|
1248
|
-
destinationIso2?: string | undefined;
|
1249
|
-
destinationName?: string | undefined;
|
1250
|
-
priceInCents?: number | undefined;
|
1251
|
-
} | undefined;
|
1252
|
-
esim?: {
|
1253
|
-
iccid?: string | undefined;
|
1254
|
-
} | undefined;
|
1255
|
-
source?: string | undefined;
|
1256
|
-
purchaseType?: string | undefined;
|
1257
|
-
referenceId?: string | undefined;
|
1259
|
+
referenceId?: string | null | undefined;
|
1258
1260
|
}, {
|
1259
|
-
id
|
1260
|
-
startDate
|
1261
|
-
endDate
|
1262
|
-
createdDate
|
1261
|
+
id: string;
|
1262
|
+
startDate: string;
|
1263
|
+
endDate: string;
|
1264
|
+
createdDate: string;
|
1265
|
+
package: {
|
1266
|
+
destination: string;
|
1267
|
+
destinationIso2: string;
|
1268
|
+
id: string;
|
1269
|
+
dataLimitInBytes: number;
|
1270
|
+
priceInCents: number;
|
1271
|
+
destinationName: string;
|
1272
|
+
};
|
1273
|
+
esim: {
|
1274
|
+
iccid: string;
|
1275
|
+
};
|
1276
|
+
source: string;
|
1277
|
+
purchaseType: string;
|
1263
1278
|
startTime?: number | undefined;
|
1264
1279
|
endTime?: number | undefined;
|
1265
1280
|
createdAt?: number | undefined;
|
1266
|
-
|
1267
|
-
id?: string | undefined;
|
1268
|
-
dataLimitInBytes?: number | undefined;
|
1269
|
-
destination?: string | undefined;
|
1270
|
-
destinationIso2?: string | undefined;
|
1271
|
-
destinationName?: string | undefined;
|
1272
|
-
priceInCents?: number | undefined;
|
1273
|
-
} | undefined;
|
1274
|
-
esim?: {
|
1275
|
-
iccid?: string | undefined;
|
1276
|
-
} | undefined;
|
1277
|
-
source?: string | undefined;
|
1278
|
-
purchaseType?: string | undefined;
|
1279
|
-
referenceId?: string | undefined;
|
1281
|
+
referenceId?: string | null | undefined;
|
1280
1282
|
}>>;
|
1281
1283
|
/**
|
1282
1284
|
*
|
@@ -1300,26 +1302,26 @@ type Purchases = z.infer<typeof purchases>;
|
|
1300
1302
|
* The shape of the model inside the application code - what the users use
|
1301
1303
|
*/
|
1302
1304
|
declare const package_: z.ZodLazy<z.ZodObject<{
|
1303
|
-
id: z.
|
1304
|
-
dataLimitInBytes: z.
|
1305
|
-
destination: z.
|
1306
|
-
destinationIso2: z.
|
1307
|
-
destinationName: z.
|
1308
|
-
priceInCents: z.
|
1305
|
+
id: z.ZodString;
|
1306
|
+
dataLimitInBytes: z.ZodNumber;
|
1307
|
+
destination: z.ZodString;
|
1308
|
+
destinationIso2: z.ZodString;
|
1309
|
+
destinationName: z.ZodString;
|
1310
|
+
priceInCents: z.ZodNumber;
|
1309
1311
|
}, "strip", z.ZodTypeAny, {
|
1310
|
-
|
1311
|
-
|
1312
|
-
|
1313
|
-
|
1314
|
-
|
1315
|
-
|
1312
|
+
destination: string;
|
1313
|
+
destinationIso2: string;
|
1314
|
+
id: string;
|
1315
|
+
dataLimitInBytes: number;
|
1316
|
+
priceInCents: number;
|
1317
|
+
destinationName: string;
|
1316
1318
|
}, {
|
1317
|
-
|
1318
|
-
|
1319
|
-
|
1320
|
-
|
1321
|
-
|
1322
|
-
|
1319
|
+
destination: string;
|
1320
|
+
destinationIso2: string;
|
1321
|
+
id: string;
|
1322
|
+
dataLimitInBytes: number;
|
1323
|
+
priceInCents: number;
|
1324
|
+
destinationName: string;
|
1323
1325
|
}>>;
|
1324
1326
|
/**
|
1325
1327
|
*
|
@@ -1337,11 +1339,11 @@ type Package_ = z.infer<typeof package_>;
|
|
1337
1339
|
* The shape of the model inside the application code - what the users use
|
1338
1340
|
*/
|
1339
1341
|
declare const purchasesEsim: z.ZodLazy<z.ZodObject<{
|
1340
|
-
iccid: z.
|
1342
|
+
iccid: z.ZodString;
|
1341
1343
|
}, "strip", z.ZodTypeAny, {
|
1342
|
-
iccid
|
1344
|
+
iccid: string;
|
1343
1345
|
}, {
|
1344
|
-
iccid
|
1346
|
+
iccid: string;
|
1345
1347
|
}>>;
|
1346
1348
|
/**
|
1347
1349
|
*
|
@@ -1354,27 +1356,27 @@ type PurchasesEsim = z.infer<typeof purchasesEsim>;
|
|
1354
1356
|
* The shape of the model inside the application code - what the users use
|
1355
1357
|
*/
|
1356
1358
|
declare const createPurchaseOkResponsePurchase: z.ZodLazy<z.ZodObject<{
|
1357
|
-
id: z.
|
1358
|
-
packageId: z.
|
1359
|
-
startDate: z.
|
1360
|
-
endDate: z.
|
1361
|
-
createdDate: z.
|
1359
|
+
id: z.ZodString;
|
1360
|
+
packageId: z.ZodString;
|
1361
|
+
startDate: z.ZodString;
|
1362
|
+
endDate: z.ZodString;
|
1363
|
+
createdDate: z.ZodString;
|
1362
1364
|
startTime: z.ZodOptional<z.ZodNumber>;
|
1363
1365
|
endTime: z.ZodOptional<z.ZodNumber>;
|
1364
1366
|
}, "strip", z.ZodTypeAny, {
|
1365
|
-
id
|
1366
|
-
|
1367
|
-
|
1368
|
-
|
1369
|
-
createdDate
|
1367
|
+
id: string;
|
1368
|
+
startDate: string;
|
1369
|
+
endDate: string;
|
1370
|
+
packageId: string;
|
1371
|
+
createdDate: string;
|
1370
1372
|
startTime?: number | undefined;
|
1371
1373
|
endTime?: number | undefined;
|
1372
1374
|
}, {
|
1373
|
-
id
|
1374
|
-
|
1375
|
-
|
1376
|
-
|
1377
|
-
createdDate
|
1375
|
+
id: string;
|
1376
|
+
startDate: string;
|
1377
|
+
endDate: string;
|
1378
|
+
packageId: string;
|
1379
|
+
createdDate: string;
|
1378
1380
|
startTime?: number | undefined;
|
1379
1381
|
endTime?: number | undefined;
|
1380
1382
|
}>>;
|
@@ -1395,17 +1397,17 @@ type CreatePurchaseOkResponsePurchase = z.infer<typeof createPurchaseOkResponseP
|
|
1395
1397
|
* The shape of the model inside the application code - what the users use
|
1396
1398
|
*/
|
1397
1399
|
declare const createPurchaseOkResponseProfile: z.ZodLazy<z.ZodObject<{
|
1398
|
-
iccid: z.
|
1399
|
-
activationCode: z.
|
1400
|
-
manualActivationCode: z.
|
1400
|
+
iccid: z.ZodString;
|
1401
|
+
activationCode: z.ZodString;
|
1402
|
+
manualActivationCode: z.ZodString;
|
1401
1403
|
}, "strip", z.ZodTypeAny, {
|
1402
|
-
iccid
|
1403
|
-
activationCode
|
1404
|
-
manualActivationCode
|
1404
|
+
iccid: string;
|
1405
|
+
activationCode: string;
|
1406
|
+
manualActivationCode: string;
|
1405
1407
|
}, {
|
1406
|
-
iccid
|
1407
|
-
activationCode
|
1408
|
-
manualActivationCode
|
1408
|
+
iccid: string;
|
1409
|
+
activationCode: string;
|
1410
|
+
manualActivationCode: string;
|
1409
1411
|
}>>;
|
1410
1412
|
/**
|
1411
1413
|
*
|
@@ -1420,27 +1422,27 @@ type CreatePurchaseOkResponseProfile = z.infer<typeof createPurchaseOkResponsePr
|
|
1420
1422
|
* The shape of the model inside the application code - what the users use
|
1421
1423
|
*/
|
1422
1424
|
declare const topUpEsimOkResponsePurchase: z.ZodLazy<z.ZodObject<{
|
1423
|
-
id: z.
|
1424
|
-
packageId: z.
|
1425
|
-
startDate: z.
|
1426
|
-
endDate: z.
|
1427
|
-
createdDate: z.
|
1425
|
+
id: z.ZodString;
|
1426
|
+
packageId: z.ZodString;
|
1427
|
+
startDate: z.ZodString;
|
1428
|
+
endDate: z.ZodString;
|
1429
|
+
createdDate: z.ZodString;
|
1428
1430
|
startTime: z.ZodOptional<z.ZodNumber>;
|
1429
1431
|
endTime: z.ZodOptional<z.ZodNumber>;
|
1430
1432
|
}, "strip", z.ZodTypeAny, {
|
1431
|
-
id
|
1432
|
-
|
1433
|
-
|
1434
|
-
|
1435
|
-
createdDate
|
1433
|
+
id: string;
|
1434
|
+
startDate: string;
|
1435
|
+
endDate: string;
|
1436
|
+
packageId: string;
|
1437
|
+
createdDate: string;
|
1436
1438
|
startTime?: number | undefined;
|
1437
1439
|
endTime?: number | undefined;
|
1438
1440
|
}, {
|
1439
|
-
id
|
1440
|
-
|
1441
|
-
|
1442
|
-
|
1443
|
-
createdDate
|
1441
|
+
id: string;
|
1442
|
+
startDate: string;
|
1443
|
+
endDate: string;
|
1444
|
+
packageId: string;
|
1445
|
+
createdDate: string;
|
1444
1446
|
startTime?: number | undefined;
|
1445
1447
|
endTime?: number | undefined;
|
1446
1448
|
}>>;
|
@@ -1461,11 +1463,11 @@ type TopUpEsimOkResponsePurchase = z.infer<typeof topUpEsimOkResponsePurchase>;
|
|
1461
1463
|
* The shape of the model inside the application code - what the users use
|
1462
1464
|
*/
|
1463
1465
|
declare const topUpEsimOkResponseProfile: z.ZodLazy<z.ZodObject<{
|
1464
|
-
iccid: z.
|
1466
|
+
iccid: z.ZodString;
|
1465
1467
|
}, "strip", z.ZodTypeAny, {
|
1466
|
-
iccid
|
1468
|
+
iccid: string;
|
1467
1469
|
}, {
|
1468
|
-
iccid
|
1470
|
+
iccid: string;
|
1469
1471
|
}>>;
|
1470
1472
|
/**
|
1471
1473
|
*
|
@@ -1562,41 +1564,41 @@ declare class _15 extends ThrowableError {
|
|
1562
1564
|
* The shape of the model inside the application code - what the users use
|
1563
1565
|
*/
|
1564
1566
|
declare const getEsimOkResponse: z.ZodLazy<z.ZodObject<{
|
1565
|
-
esim: z.
|
1566
|
-
iccid: z.
|
1567
|
-
smdpAddress: z.
|
1568
|
-
manualActivationCode: z.
|
1569
|
-
status: z.
|
1570
|
-
isTopUpAllowed: z.
|
1567
|
+
esim: z.ZodLazy<z.ZodObject<{
|
1568
|
+
iccid: z.ZodString;
|
1569
|
+
smdpAddress: z.ZodString;
|
1570
|
+
manualActivationCode: z.ZodString;
|
1571
|
+
status: z.ZodString;
|
1572
|
+
isTopUpAllowed: z.ZodBoolean;
|
1571
1573
|
}, "strip", z.ZodTypeAny, {
|
1572
|
-
|
1573
|
-
|
1574
|
-
manualActivationCode
|
1575
|
-
|
1576
|
-
isTopUpAllowed
|
1574
|
+
status: string;
|
1575
|
+
iccid: string;
|
1576
|
+
manualActivationCode: string;
|
1577
|
+
smdpAddress: string;
|
1578
|
+
isTopUpAllowed: boolean;
|
1577
1579
|
}, {
|
1578
|
-
|
1579
|
-
|
1580
|
-
manualActivationCode
|
1581
|
-
|
1582
|
-
isTopUpAllowed
|
1583
|
-
}
|
1580
|
+
status: string;
|
1581
|
+
iccid: string;
|
1582
|
+
manualActivationCode: string;
|
1583
|
+
smdpAddress: string;
|
1584
|
+
isTopUpAllowed: boolean;
|
1585
|
+
}>>;
|
1584
1586
|
}, "strip", z.ZodTypeAny, {
|
1585
|
-
esim
|
1586
|
-
|
1587
|
-
|
1588
|
-
manualActivationCode
|
1589
|
-
|
1590
|
-
isTopUpAllowed
|
1591
|
-
}
|
1587
|
+
esim: {
|
1588
|
+
status: string;
|
1589
|
+
iccid: string;
|
1590
|
+
manualActivationCode: string;
|
1591
|
+
smdpAddress: string;
|
1592
|
+
isTopUpAllowed: boolean;
|
1593
|
+
};
|
1592
1594
|
}, {
|
1593
|
-
esim
|
1594
|
-
|
1595
|
-
|
1596
|
-
manualActivationCode
|
1597
|
-
|
1598
|
-
isTopUpAllowed
|
1599
|
-
}
|
1595
|
+
esim: {
|
1596
|
+
status: string;
|
1597
|
+
iccid: string;
|
1598
|
+
manualActivationCode: string;
|
1599
|
+
smdpAddress: string;
|
1600
|
+
isTopUpAllowed: boolean;
|
1601
|
+
};
|
1600
1602
|
}>>;
|
1601
1603
|
/**
|
1602
1604
|
*
|
@@ -1613,36 +1615,36 @@ interface GetEsimParams {
|
|
1613
1615
|
* The shape of the model inside the application code - what the users use
|
1614
1616
|
*/
|
1615
1617
|
declare const getEsimDeviceOkResponse: z.ZodLazy<z.ZodObject<{
|
1616
|
-
device: z.
|
1617
|
-
oem: z.
|
1618
|
-
hardwareName: z.
|
1619
|
-
hardwareModel: z.
|
1620
|
-
eid: z.
|
1618
|
+
device: z.ZodLazy<z.ZodObject<{
|
1619
|
+
oem: z.ZodString;
|
1620
|
+
hardwareName: z.ZodString;
|
1621
|
+
hardwareModel: z.ZodString;
|
1622
|
+
eid: z.ZodString;
|
1621
1623
|
}, "strip", z.ZodTypeAny, {
|
1622
|
-
oem
|
1623
|
-
hardwareName
|
1624
|
-
hardwareModel
|
1625
|
-
eid
|
1624
|
+
oem: string;
|
1625
|
+
hardwareName: string;
|
1626
|
+
hardwareModel: string;
|
1627
|
+
eid: string;
|
1626
1628
|
}, {
|
1627
|
-
oem
|
1628
|
-
hardwareName
|
1629
|
-
hardwareModel
|
1630
|
-
eid
|
1631
|
-
}
|
1629
|
+
oem: string;
|
1630
|
+
hardwareName: string;
|
1631
|
+
hardwareModel: string;
|
1632
|
+
eid: string;
|
1633
|
+
}>>;
|
1632
1634
|
}, "strip", z.ZodTypeAny, {
|
1633
|
-
device
|
1634
|
-
oem
|
1635
|
-
hardwareName
|
1636
|
-
hardwareModel
|
1637
|
-
eid
|
1638
|
-
}
|
1635
|
+
device: {
|
1636
|
+
oem: string;
|
1637
|
+
hardwareName: string;
|
1638
|
+
hardwareModel: string;
|
1639
|
+
eid: string;
|
1640
|
+
};
|
1639
1641
|
}, {
|
1640
|
-
device
|
1641
|
-
oem
|
1642
|
-
hardwareName
|
1643
|
-
hardwareModel
|
1644
|
-
eid
|
1645
|
-
}
|
1642
|
+
device: {
|
1643
|
+
oem: string;
|
1644
|
+
hardwareName: string;
|
1645
|
+
hardwareModel: string;
|
1646
|
+
eid: string;
|
1647
|
+
};
|
1646
1648
|
}>>;
|
1647
1649
|
/**
|
1648
1650
|
*
|
@@ -1655,54 +1657,54 @@ type GetEsimDeviceOkResponse = z.infer<typeof getEsimDeviceOkResponse>;
|
|
1655
1657
|
* The shape of the model inside the application code - what the users use
|
1656
1658
|
*/
|
1657
1659
|
declare const getEsimHistoryOkResponse: z.ZodLazy<z.ZodObject<{
|
1658
|
-
esim: z.
|
1659
|
-
iccid: z.
|
1660
|
-
history: z.
|
1661
|
-
status: z.
|
1662
|
-
statusDate: z.
|
1660
|
+
esim: z.ZodLazy<z.ZodObject<{
|
1661
|
+
iccid: z.ZodString;
|
1662
|
+
history: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
1663
|
+
status: z.ZodString;
|
1664
|
+
statusDate: z.ZodString;
|
1663
1665
|
date: z.ZodOptional<z.ZodNumber>;
|
1664
1666
|
}, "strip", z.ZodTypeAny, {
|
1665
|
-
status
|
1666
|
-
statusDate
|
1667
|
+
status: string;
|
1668
|
+
statusDate: string;
|
1667
1669
|
date?: number | undefined;
|
1668
1670
|
}, {
|
1669
|
-
status
|
1670
|
-
statusDate
|
1671
|
+
status: string;
|
1672
|
+
statusDate: string;
|
1671
1673
|
date?: number | undefined;
|
1672
|
-
}>>, "many"
|
1674
|
+
}>>, "many">;
|
1673
1675
|
}, "strip", z.ZodTypeAny, {
|
1674
|
-
iccid
|
1675
|
-
history
|
1676
|
-
status
|
1677
|
-
statusDate
|
1676
|
+
iccid: string;
|
1677
|
+
history: {
|
1678
|
+
status: string;
|
1679
|
+
statusDate: string;
|
1678
1680
|
date?: number | undefined;
|
1679
|
-
}[]
|
1681
|
+
}[];
|
1680
1682
|
}, {
|
1681
|
-
iccid
|
1682
|
-
history
|
1683
|
-
status
|
1684
|
-
statusDate
|
1683
|
+
iccid: string;
|
1684
|
+
history: {
|
1685
|
+
status: string;
|
1686
|
+
statusDate: string;
|
1685
1687
|
date?: number | undefined;
|
1686
|
-
}[]
|
1687
|
-
}
|
1688
|
+
}[];
|
1689
|
+
}>>;
|
1688
1690
|
}, "strip", z.ZodTypeAny, {
|
1689
|
-
esim
|
1690
|
-
iccid
|
1691
|
-
history
|
1692
|
-
status
|
1693
|
-
statusDate
|
1691
|
+
esim: {
|
1692
|
+
iccid: string;
|
1693
|
+
history: {
|
1694
|
+
status: string;
|
1695
|
+
statusDate: string;
|
1694
1696
|
date?: number | undefined;
|
1695
|
-
}[]
|
1696
|
-
}
|
1697
|
+
}[];
|
1698
|
+
};
|
1697
1699
|
}, {
|
1698
|
-
esim
|
1699
|
-
iccid
|
1700
|
-
history
|
1701
|
-
status
|
1702
|
-
statusDate
|
1700
|
+
esim: {
|
1701
|
+
iccid: string;
|
1702
|
+
history: {
|
1703
|
+
status: string;
|
1704
|
+
statusDate: string;
|
1703
1705
|
date?: number | undefined;
|
1704
|
-
}[]
|
1705
|
-
}
|
1706
|
+
}[];
|
1707
|
+
};
|
1706
1708
|
}>>;
|
1707
1709
|
/**
|
1708
1710
|
*
|
@@ -1715,31 +1717,31 @@ type GetEsimHistoryOkResponse = z.infer<typeof getEsimHistoryOkResponse>;
|
|
1715
1717
|
* The shape of the model inside the application code - what the users use
|
1716
1718
|
*/
|
1717
1719
|
declare const getEsimMacOkResponse: z.ZodLazy<z.ZodObject<{
|
1718
|
-
esim: z.
|
1719
|
-
iccid: z.
|
1720
|
-
smdpAddress: z.
|
1721
|
-
manualActivationCode: z.
|
1720
|
+
esim: z.ZodLazy<z.ZodObject<{
|
1721
|
+
iccid: z.ZodString;
|
1722
|
+
smdpAddress: z.ZodString;
|
1723
|
+
manualActivationCode: z.ZodString;
|
1722
1724
|
}, "strip", z.ZodTypeAny, {
|
1723
|
-
iccid
|
1724
|
-
|
1725
|
-
|
1725
|
+
iccid: string;
|
1726
|
+
manualActivationCode: string;
|
1727
|
+
smdpAddress: string;
|
1726
1728
|
}, {
|
1727
|
-
iccid
|
1728
|
-
|
1729
|
-
|
1730
|
-
}
|
1729
|
+
iccid: string;
|
1730
|
+
manualActivationCode: string;
|
1731
|
+
smdpAddress: string;
|
1732
|
+
}>>;
|
1731
1733
|
}, "strip", z.ZodTypeAny, {
|
1732
|
-
esim
|
1733
|
-
iccid
|
1734
|
-
|
1735
|
-
|
1736
|
-
}
|
1734
|
+
esim: {
|
1735
|
+
iccid: string;
|
1736
|
+
manualActivationCode: string;
|
1737
|
+
smdpAddress: string;
|
1738
|
+
};
|
1737
1739
|
}, {
|
1738
|
-
esim
|
1739
|
-
iccid
|
1740
|
-
|
1741
|
-
|
1742
|
-
}
|
1740
|
+
esim: {
|
1741
|
+
iccid: string;
|
1742
|
+
manualActivationCode: string;
|
1743
|
+
smdpAddress: string;
|
1744
|
+
};
|
1743
1745
|
}>>;
|
1744
1746
|
/**
|
1745
1747
|
*
|
@@ -1783,23 +1785,23 @@ declare class ESimService extends BaseService {
|
|
1783
1785
|
* The shape of the model inside the application code - what the users use
|
1784
1786
|
*/
|
1785
1787
|
declare const getEsimOkResponseEsim: z.ZodLazy<z.ZodObject<{
|
1786
|
-
iccid: z.
|
1787
|
-
smdpAddress: z.
|
1788
|
-
manualActivationCode: z.
|
1789
|
-
status: z.
|
1790
|
-
isTopUpAllowed: z.
|
1788
|
+
iccid: z.ZodString;
|
1789
|
+
smdpAddress: z.ZodString;
|
1790
|
+
manualActivationCode: z.ZodString;
|
1791
|
+
status: z.ZodString;
|
1792
|
+
isTopUpAllowed: z.ZodBoolean;
|
1791
1793
|
}, "strip", z.ZodTypeAny, {
|
1792
|
-
|
1793
|
-
|
1794
|
-
manualActivationCode
|
1795
|
-
|
1796
|
-
isTopUpAllowed
|
1794
|
+
status: string;
|
1795
|
+
iccid: string;
|
1796
|
+
manualActivationCode: string;
|
1797
|
+
smdpAddress: string;
|
1798
|
+
isTopUpAllowed: boolean;
|
1797
1799
|
}, {
|
1798
|
-
|
1799
|
-
|
1800
|
-
manualActivationCode
|
1801
|
-
|
1802
|
-
isTopUpAllowed
|
1800
|
+
status: string;
|
1801
|
+
iccid: string;
|
1802
|
+
manualActivationCode: string;
|
1803
|
+
smdpAddress: string;
|
1804
|
+
isTopUpAllowed: boolean;
|
1803
1805
|
}>>;
|
1804
1806
|
/**
|
1805
1807
|
*
|
@@ -1816,20 +1818,20 @@ type GetEsimOkResponseEsim = z.infer<typeof getEsimOkResponseEsim>;
|
|
1816
1818
|
* The shape of the model inside the application code - what the users use
|
1817
1819
|
*/
|
1818
1820
|
declare const device: z.ZodLazy<z.ZodObject<{
|
1819
|
-
oem: z.
|
1820
|
-
hardwareName: z.
|
1821
|
-
hardwareModel: z.
|
1822
|
-
eid: z.
|
1821
|
+
oem: z.ZodString;
|
1822
|
+
hardwareName: z.ZodString;
|
1823
|
+
hardwareModel: z.ZodString;
|
1824
|
+
eid: z.ZodString;
|
1823
1825
|
}, "strip", z.ZodTypeAny, {
|
1824
|
-
oem
|
1825
|
-
hardwareName
|
1826
|
-
hardwareModel
|
1827
|
-
eid
|
1826
|
+
oem: string;
|
1827
|
+
hardwareName: string;
|
1828
|
+
hardwareModel: string;
|
1829
|
+
eid: string;
|
1828
1830
|
}, {
|
1829
|
-
oem
|
1830
|
-
hardwareName
|
1831
|
-
hardwareModel
|
1832
|
-
eid
|
1831
|
+
oem: string;
|
1832
|
+
hardwareName: string;
|
1833
|
+
hardwareModel: string;
|
1834
|
+
eid: string;
|
1833
1835
|
}>>;
|
1834
1836
|
/**
|
1835
1837
|
*
|
@@ -1845,34 +1847,34 @@ type Device = z.infer<typeof device>;
|
|
1845
1847
|
* The shape of the model inside the application code - what the users use
|
1846
1848
|
*/
|
1847
1849
|
declare const getEsimHistoryOkResponseEsim: z.ZodLazy<z.ZodObject<{
|
1848
|
-
iccid: z.
|
1849
|
-
history: z.
|
1850
|
-
status: z.
|
1851
|
-
statusDate: z.
|
1850
|
+
iccid: z.ZodString;
|
1851
|
+
history: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
1852
|
+
status: z.ZodString;
|
1853
|
+
statusDate: z.ZodString;
|
1852
1854
|
date: z.ZodOptional<z.ZodNumber>;
|
1853
1855
|
}, "strip", z.ZodTypeAny, {
|
1854
|
-
status
|
1855
|
-
statusDate
|
1856
|
+
status: string;
|
1857
|
+
statusDate: string;
|
1856
1858
|
date?: number | undefined;
|
1857
1859
|
}, {
|
1858
|
-
status
|
1859
|
-
statusDate
|
1860
|
+
status: string;
|
1861
|
+
statusDate: string;
|
1860
1862
|
date?: number | undefined;
|
1861
|
-
}>>, "many"
|
1863
|
+
}>>, "many">;
|
1862
1864
|
}, "strip", z.ZodTypeAny, {
|
1863
|
-
iccid
|
1864
|
-
history
|
1865
|
-
status
|
1866
|
-
statusDate
|
1865
|
+
iccid: string;
|
1866
|
+
history: {
|
1867
|
+
status: string;
|
1868
|
+
statusDate: string;
|
1867
1869
|
date?: number | undefined;
|
1868
|
-
}[]
|
1870
|
+
}[];
|
1869
1871
|
}, {
|
1870
|
-
iccid
|
1871
|
-
history
|
1872
|
-
status
|
1873
|
-
statusDate
|
1872
|
+
iccid: string;
|
1873
|
+
history: {
|
1874
|
+
status: string;
|
1875
|
+
statusDate: string;
|
1874
1876
|
date?: number | undefined;
|
1875
|
-
}[]
|
1877
|
+
}[];
|
1876
1878
|
}>>;
|
1877
1879
|
/**
|
1878
1880
|
*
|
@@ -1886,16 +1888,16 @@ type GetEsimHistoryOkResponseEsim = z.infer<typeof getEsimHistoryOkResponseEsim>
|
|
1886
1888
|
* The shape of the model inside the application code - what the users use
|
1887
1889
|
*/
|
1888
1890
|
declare const history: z.ZodLazy<z.ZodObject<{
|
1889
|
-
status: z.
|
1890
|
-
statusDate: z.
|
1891
|
+
status: z.ZodString;
|
1892
|
+
statusDate: z.ZodString;
|
1891
1893
|
date: z.ZodOptional<z.ZodNumber>;
|
1892
1894
|
}, "strip", z.ZodTypeAny, {
|
1893
|
-
status
|
1894
|
-
statusDate
|
1895
|
+
status: string;
|
1896
|
+
statusDate: string;
|
1895
1897
|
date?: number | undefined;
|
1896
1898
|
}, {
|
1897
|
-
status
|
1898
|
-
statusDate
|
1899
|
+
status: string;
|
1900
|
+
statusDate: string;
|
1899
1901
|
date?: number | undefined;
|
1900
1902
|
}>>;
|
1901
1903
|
/**
|
@@ -1911,17 +1913,17 @@ type History = z.infer<typeof history>;
|
|
1911
1913
|
* The shape of the model inside the application code - what the users use
|
1912
1914
|
*/
|
1913
1915
|
declare const getEsimMacOkResponseEsim: z.ZodLazy<z.ZodObject<{
|
1914
|
-
iccid: z.
|
1915
|
-
smdpAddress: z.
|
1916
|
-
manualActivationCode: z.
|
1916
|
+
iccid: z.ZodString;
|
1917
|
+
smdpAddress: z.ZodString;
|
1918
|
+
manualActivationCode: z.ZodString;
|
1917
1919
|
}, "strip", z.ZodTypeAny, {
|
1918
|
-
iccid
|
1919
|
-
|
1920
|
-
|
1920
|
+
iccid: string;
|
1921
|
+
manualActivationCode: string;
|
1922
|
+
smdpAddress: string;
|
1921
1923
|
}, {
|
1922
|
-
iccid
|
1923
|
-
|
1924
|
-
|
1924
|
+
iccid: string;
|
1925
|
+
manualActivationCode: string;
|
1926
|
+
smdpAddress: string;
|
1925
1927
|
}>>;
|
1926
1928
|
/**
|
1927
1929
|
*
|
@@ -1992,11 +1994,11 @@ declare class _23 extends ThrowableError {
|
|
1992
1994
|
* The shape of the model inside the application code - what the users use
|
1993
1995
|
*/
|
1994
1996
|
declare const tokenOkResponse: z.ZodLazy<z.ZodObject<{
|
1995
|
-
token: z.
|
1997
|
+
token: z.ZodString;
|
1996
1998
|
}, "strip", z.ZodTypeAny, {
|
1997
|
-
token
|
1999
|
+
token: string;
|
1998
2000
|
}, {
|
1999
|
-
token
|
2001
|
+
token: string;
|
2000
2002
|
}>>;
|
2001
2003
|
/**
|
2002
2004
|
*
|