celitech-sdk 1.3.56 → 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 +685 -685
- package/dist/index.js +249 -249
- package/dist/index.mjs +249 -249
- 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.
|
633
|
+
iccid: string;
|
634
|
+
}>>;
|
635
|
+
source: z.ZodString;
|
636
|
+
purchaseType: z.ZodString;
|
637
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
|
-
package?: {
|
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
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
|
-
package?: {
|
669
|
-
id?: string | undefined;
|
670
|
-
dataLimitInBytes?: number | undefined;
|
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
681
|
referenceId?: string | null | undefined;
|
682
|
-
}>>, "many"
|
683
|
-
afterCursor: z.ZodNullable<z.
|
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
|
-
package?: {
|
694
|
-
id?: string | undefined;
|
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
707
|
referenceId?: string | null | undefined;
|
707
|
-
}[]
|
708
|
-
afterCursor?: 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
|
-
package?: {
|
719
|
-
id?: string | undefined;
|
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
732
|
referenceId?: string | null | undefined;
|
732
|
-
}[]
|
733
|
-
afterCursor?: string | null | undefined;
|
733
|
+
}[];
|
734
734
|
}>>;
|
735
735
|
/**
|
736
736
|
*
|
@@ -809,74 +809,74 @@ type CreatePurchaseRequest = z.infer<typeof createPurchaseRequest>;
|
|
809
809
|
* The shape of the model inside the application code - what the users use
|
810
810
|
*/
|
811
811
|
declare const createPurchaseOkResponse: z.ZodLazy<z.ZodObject<{
|
812
|
-
purchase: z.
|
813
|
-
id: z.
|
814
|
-
packageId: z.
|
815
|
-
startDate: z.
|
816
|
-
endDate: z.
|
817
|
-
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;
|
818
818
|
startTime: z.ZodOptional<z.ZodNumber>;
|
819
819
|
endTime: z.ZodOptional<z.ZodNumber>;
|
820
820
|
}, "strip", z.ZodTypeAny, {
|
821
|
-
id
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
createdDate
|
821
|
+
id: string;
|
822
|
+
startDate: string;
|
823
|
+
endDate: string;
|
824
|
+
packageId: string;
|
825
|
+
createdDate: string;
|
826
826
|
startTime?: number | undefined;
|
827
827
|
endTime?: number | undefined;
|
828
828
|
}, {
|
829
|
-
id
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
createdDate
|
829
|
+
id: string;
|
830
|
+
startDate: string;
|
831
|
+
endDate: string;
|
832
|
+
packageId: string;
|
833
|
+
createdDate: string;
|
834
834
|
startTime?: number | undefined;
|
835
835
|
endTime?: number | undefined;
|
836
|
-
}
|
837
|
-
profile: z.
|
838
|
-
iccid: z.
|
839
|
-
activationCode: z.
|
840
|
-
manualActivationCode: z.
|
836
|
+
}>>;
|
837
|
+
profile: z.ZodLazy<z.ZodObject<{
|
838
|
+
iccid: z.ZodString;
|
839
|
+
activationCode: z.ZodString;
|
840
|
+
manualActivationCode: z.ZodString;
|
841
841
|
}, "strip", z.ZodTypeAny, {
|
842
|
-
iccid
|
843
|
-
activationCode
|
844
|
-
manualActivationCode
|
842
|
+
iccid: string;
|
843
|
+
activationCode: string;
|
844
|
+
manualActivationCode: string;
|
845
845
|
}, {
|
846
|
-
iccid
|
847
|
-
activationCode
|
848
|
-
manualActivationCode
|
849
|
-
}
|
846
|
+
iccid: string;
|
847
|
+
activationCode: string;
|
848
|
+
manualActivationCode: string;
|
849
|
+
}>>;
|
850
850
|
}, "strip", z.ZodTypeAny, {
|
851
|
-
purchase
|
852
|
-
id
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
createdDate
|
851
|
+
purchase: {
|
852
|
+
id: string;
|
853
|
+
startDate: string;
|
854
|
+
endDate: string;
|
855
|
+
packageId: string;
|
856
|
+
createdDate: string;
|
857
857
|
startTime?: number | undefined;
|
858
858
|
endTime?: number | undefined;
|
859
|
-
}
|
860
|
-
profile
|
861
|
-
iccid
|
862
|
-
activationCode
|
863
|
-
manualActivationCode
|
864
|
-
}
|
859
|
+
};
|
860
|
+
profile: {
|
861
|
+
iccid: string;
|
862
|
+
activationCode: string;
|
863
|
+
manualActivationCode: string;
|
864
|
+
};
|
865
865
|
}, {
|
866
|
-
purchase
|
867
|
-
id
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
createdDate
|
866
|
+
purchase: {
|
867
|
+
id: string;
|
868
|
+
startDate: string;
|
869
|
+
endDate: string;
|
870
|
+
packageId: string;
|
871
|
+
createdDate: string;
|
872
872
|
startTime?: number | undefined;
|
873
873
|
endTime?: number | undefined;
|
874
|
-
}
|
875
|
-
profile
|
876
|
-
iccid
|
877
|
-
activationCode
|
878
|
-
manualActivationCode
|
879
|
-
}
|
874
|
+
};
|
875
|
+
profile: {
|
876
|
+
iccid: string;
|
877
|
+
activationCode: string;
|
878
|
+
manualActivationCode: string;
|
879
|
+
};
|
880
880
|
}>>;
|
881
881
|
/**
|
882
882
|
*
|
@@ -939,64 +939,64 @@ type TopUpEsimRequest = z.infer<typeof topUpEsimRequest>;
|
|
939
939
|
* The shape of the model inside the application code - what the users use
|
940
940
|
*/
|
941
941
|
declare const topUpEsimOkResponse: z.ZodLazy<z.ZodObject<{
|
942
|
-
purchase: z.
|
943
|
-
id: z.
|
944
|
-
packageId: z.
|
945
|
-
startDate: z.
|
946
|
-
endDate: z.
|
947
|
-
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;
|
948
948
|
startTime: z.ZodOptional<z.ZodNumber>;
|
949
949
|
endTime: z.ZodOptional<z.ZodNumber>;
|
950
950
|
}, "strip", z.ZodTypeAny, {
|
951
|
-
id
|
952
|
-
|
953
|
-
|
954
|
-
|
955
|
-
createdDate
|
951
|
+
id: string;
|
952
|
+
startDate: string;
|
953
|
+
endDate: string;
|
954
|
+
packageId: string;
|
955
|
+
createdDate: string;
|
956
956
|
startTime?: number | undefined;
|
957
957
|
endTime?: number | undefined;
|
958
958
|
}, {
|
959
|
-
id
|
960
|
-
|
961
|
-
|
962
|
-
|
963
|
-
createdDate
|
959
|
+
id: string;
|
960
|
+
startDate: string;
|
961
|
+
endDate: string;
|
962
|
+
packageId: string;
|
963
|
+
createdDate: string;
|
964
964
|
startTime?: number | undefined;
|
965
965
|
endTime?: number | undefined;
|
966
|
-
}
|
967
|
-
profile: z.
|
968
|
-
iccid: z.
|
966
|
+
}>>;
|
967
|
+
profile: z.ZodLazy<z.ZodObject<{
|
968
|
+
iccid: z.ZodString;
|
969
969
|
}, "strip", z.ZodTypeAny, {
|
970
|
-
iccid
|
970
|
+
iccid: string;
|
971
971
|
}, {
|
972
|
-
iccid
|
973
|
-
}
|
972
|
+
iccid: string;
|
973
|
+
}>>;
|
974
974
|
}, "strip", z.ZodTypeAny, {
|
975
|
-
purchase
|
976
|
-
id
|
977
|
-
|
978
|
-
|
979
|
-
|
980
|
-
createdDate
|
975
|
+
purchase: {
|
976
|
+
id: string;
|
977
|
+
startDate: string;
|
978
|
+
endDate: string;
|
979
|
+
packageId: string;
|
980
|
+
createdDate: string;
|
981
981
|
startTime?: number | undefined;
|
982
982
|
endTime?: number | undefined;
|
983
|
-
}
|
984
|
-
profile
|
985
|
-
iccid
|
986
|
-
}
|
983
|
+
};
|
984
|
+
profile: {
|
985
|
+
iccid: string;
|
986
|
+
};
|
987
987
|
}, {
|
988
|
-
purchase
|
989
|
-
id
|
990
|
-
|
991
|
-
|
992
|
-
|
993
|
-
createdDate
|
988
|
+
purchase: {
|
989
|
+
id: string;
|
990
|
+
startDate: string;
|
991
|
+
endDate: string;
|
992
|
+
packageId: string;
|
993
|
+
createdDate: string;
|
994
994
|
startTime?: number | undefined;
|
995
995
|
endTime?: number | undefined;
|
996
|
-
}
|
997
|
-
profile
|
998
|
-
iccid
|
999
|
-
}
|
996
|
+
};
|
997
|
+
profile: {
|
998
|
+
iccid: string;
|
999
|
+
};
|
1000
1000
|
}>>;
|
1001
1001
|
/**
|
1002
1002
|
*
|
@@ -1043,21 +1043,21 @@ type EditPurchaseRequest = z.infer<typeof editPurchaseRequest>;
|
|
1043
1043
|
* The shape of the model inside the application code - what the users use
|
1044
1044
|
*/
|
1045
1045
|
declare const editPurchaseOkResponse: z.ZodLazy<z.ZodObject<{
|
1046
|
-
purchaseId: z.
|
1047
|
-
newStartDate: z.
|
1048
|
-
newEndDate: z.
|
1046
|
+
purchaseId: z.ZodString;
|
1047
|
+
newStartDate: z.ZodString;
|
1048
|
+
newEndDate: z.ZodString;
|
1049
1049
|
newStartTime: z.ZodOptional<z.ZodNumber>;
|
1050
1050
|
newEndTime: z.ZodOptional<z.ZodNumber>;
|
1051
1051
|
}, "strip", z.ZodTypeAny, {
|
1052
|
-
purchaseId
|
1053
|
-
newStartDate
|
1054
|
-
newEndDate
|
1052
|
+
purchaseId: string;
|
1053
|
+
newStartDate: string;
|
1054
|
+
newEndDate: string;
|
1055
1055
|
newStartTime?: number | undefined;
|
1056
1056
|
newEndTime?: number | undefined;
|
1057
1057
|
}, {
|
1058
|
-
purchaseId
|
1059
|
-
newStartDate
|
1060
|
-
newEndDate
|
1058
|
+
purchaseId: string;
|
1059
|
+
newStartDate: string;
|
1060
|
+
newEndDate: string;
|
1061
1061
|
newStartTime?: number | undefined;
|
1062
1062
|
newEndTime?: number | undefined;
|
1063
1063
|
}>>;
|
@@ -1076,14 +1076,14 @@ type EditPurchaseOkResponse = z.infer<typeof editPurchaseOkResponse>;
|
|
1076
1076
|
* The shape of the model inside the application code - what the users use
|
1077
1077
|
*/
|
1078
1078
|
declare const getPurchaseConsumptionOkResponse: z.ZodLazy<z.ZodObject<{
|
1079
|
-
dataUsageRemainingInBytes: z.
|
1080
|
-
status: z.
|
1079
|
+
dataUsageRemainingInBytes: z.ZodNumber;
|
1080
|
+
status: z.ZodString;
|
1081
1081
|
}, "strip", z.ZodTypeAny, {
|
1082
|
-
|
1083
|
-
|
1082
|
+
status: string;
|
1083
|
+
dataUsageRemainingInBytes: number;
|
1084
1084
|
}, {
|
1085
|
-
|
1086
|
-
|
1085
|
+
status: string;
|
1086
|
+
dataUsageRemainingInBytes: number;
|
1087
1087
|
}>>;
|
1088
1088
|
/**
|
1089
1089
|
*
|
@@ -1146,17 +1146,17 @@ declare class PurchasesService extends BaseService {
|
|
1146
1146
|
* The shape of the model inside the application code - what the users use
|
1147
1147
|
*/
|
1148
1148
|
declare const createPurchaseV2OkResponsePurchase: z.ZodLazy<z.ZodObject<{
|
1149
|
-
id: z.
|
1150
|
-
packageId: z.
|
1151
|
-
createdDate: z.
|
1149
|
+
id: z.ZodString;
|
1150
|
+
packageId: z.ZodString;
|
1151
|
+
createdDate: z.ZodString;
|
1152
1152
|
}, "strip", z.ZodTypeAny, {
|
1153
|
-
id
|
1154
|
-
packageId
|
1155
|
-
createdDate
|
1153
|
+
id: string;
|
1154
|
+
packageId: string;
|
1155
|
+
createdDate: string;
|
1156
1156
|
}, {
|
1157
|
-
id
|
1158
|
-
packageId
|
1159
|
-
createdDate
|
1157
|
+
id: string;
|
1158
|
+
packageId: string;
|
1159
|
+
createdDate: string;
|
1160
1160
|
}>>;
|
1161
1161
|
/**
|
1162
1162
|
*
|
@@ -1171,17 +1171,17 @@ type CreatePurchaseV2OkResponsePurchase = z.infer<typeof createPurchaseV2OkRespo
|
|
1171
1171
|
* The shape of the model inside the application code - what the users use
|
1172
1172
|
*/
|
1173
1173
|
declare const createPurchaseV2OkResponseProfile: z.ZodLazy<z.ZodObject<{
|
1174
|
-
iccid: z.
|
1175
|
-
activationCode: z.
|
1176
|
-
manualActivationCode: z.
|
1174
|
+
iccid: z.ZodString;
|
1175
|
+
activationCode: z.ZodString;
|
1176
|
+
manualActivationCode: z.ZodString;
|
1177
1177
|
}, "strip", z.ZodTypeAny, {
|
1178
|
-
iccid
|
1179
|
-
activationCode
|
1180
|
-
manualActivationCode
|
1178
|
+
iccid: string;
|
1179
|
+
activationCode: string;
|
1180
|
+
manualActivationCode: string;
|
1181
1181
|
}, {
|
1182
|
-
iccid
|
1183
|
-
activationCode
|
1184
|
-
manualActivationCode
|
1182
|
+
iccid: string;
|
1183
|
+
activationCode: string;
|
1184
|
+
manualActivationCode: string;
|
1185
1185
|
}>>;
|
1186
1186
|
/**
|
1187
1187
|
*
|
@@ -1196,88 +1196,88 @@ type CreatePurchaseV2OkResponseProfile = z.infer<typeof createPurchaseV2OkRespon
|
|
1196
1196
|
* The shape of the model inside the application code - what the users use
|
1197
1197
|
*/
|
1198
1198
|
declare const purchases: z.ZodLazy<z.ZodObject<{
|
1199
|
-
id: z.
|
1200
|
-
startDate: z.
|
1201
|
-
endDate: z.
|
1202
|
-
createdDate: z.
|
1199
|
+
id: z.ZodString;
|
1200
|
+
startDate: z.ZodString;
|
1201
|
+
endDate: z.ZodString;
|
1202
|
+
createdDate: z.ZodString;
|
1203
1203
|
startTime: z.ZodOptional<z.ZodNumber>;
|
1204
1204
|
endTime: z.ZodOptional<z.ZodNumber>;
|
1205
1205
|
createdAt: z.ZodOptional<z.ZodNumber>;
|
1206
|
-
package: z.
|
1207
|
-
id: z.
|
1208
|
-
dataLimitInBytes: z.
|
1209
|
-
destination: z.
|
1210
|
-
destinationIso2: z.
|
1211
|
-
destinationName: z.
|
1212
|
-
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;
|
1213
1213
|
}, "strip", z.ZodTypeAny, {
|
1214
|
-
|
1215
|
-
|
1216
|
-
|
1217
|
-
|
1218
|
-
|
1219
|
-
|
1214
|
+
destination: string;
|
1215
|
+
destinationIso2: string;
|
1216
|
+
id: string;
|
1217
|
+
dataLimitInBytes: number;
|
1218
|
+
priceInCents: number;
|
1219
|
+
destinationName: string;
|
1220
1220
|
}, {
|
1221
|
-
|
1222
|
-
|
1223
|
-
|
1224
|
-
|
1225
|
-
|
1226
|
-
|
1227
|
-
}
|
1228
|
-
esim: z.
|
1229
|
-
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;
|
1230
1230
|
}, "strip", z.ZodTypeAny, {
|
1231
|
-
iccid
|
1231
|
+
iccid: string;
|
1232
1232
|
}, {
|
1233
|
-
iccid
|
1234
|
-
}
|
1235
|
-
source: z.
|
1236
|
-
purchaseType: z.
|
1233
|
+
iccid: string;
|
1234
|
+
}>>;
|
1235
|
+
source: z.ZodString;
|
1236
|
+
purchaseType: z.ZodString;
|
1237
1237
|
referenceId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1238
1238
|
}, "strip", z.ZodTypeAny, {
|
1239
|
-
id
|
1240
|
-
startDate
|
1241
|
-
endDate
|
1242
|
-
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;
|
1243
1256
|
startTime?: number | undefined;
|
1244
1257
|
endTime?: number | undefined;
|
1245
1258
|
createdAt?: number | undefined;
|
1246
|
-
package?: {
|
1247
|
-
id?: string | undefined;
|
1248
|
-
dataLimitInBytes?: number | undefined;
|
1249
|
-
destination?: string | undefined;
|
1250
|
-
destinationIso2?: string | undefined;
|
1251
|
-
destinationName?: string | undefined;
|
1252
|
-
priceInCents?: number | undefined;
|
1253
|
-
} | undefined;
|
1254
|
-
esim?: {
|
1255
|
-
iccid?: string | undefined;
|
1256
|
-
} | undefined;
|
1257
|
-
source?: string | undefined;
|
1258
|
-
purchaseType?: string | undefined;
|
1259
1259
|
referenceId?: string | null | undefined;
|
1260
1260
|
}, {
|
1261
|
-
id
|
1262
|
-
startDate
|
1263
|
-
endDate
|
1264
|
-
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;
|
1265
1278
|
startTime?: number | undefined;
|
1266
1279
|
endTime?: number | undefined;
|
1267
1280
|
createdAt?: number | undefined;
|
1268
|
-
package?: {
|
1269
|
-
id?: string | undefined;
|
1270
|
-
dataLimitInBytes?: number | undefined;
|
1271
|
-
destination?: string | undefined;
|
1272
|
-
destinationIso2?: string | undefined;
|
1273
|
-
destinationName?: string | undefined;
|
1274
|
-
priceInCents?: number | undefined;
|
1275
|
-
} | undefined;
|
1276
|
-
esim?: {
|
1277
|
-
iccid?: string | undefined;
|
1278
|
-
} | undefined;
|
1279
|
-
source?: string | undefined;
|
1280
|
-
purchaseType?: string | undefined;
|
1281
1281
|
referenceId?: string | null | undefined;
|
1282
1282
|
}>>;
|
1283
1283
|
/**
|
@@ -1302,26 +1302,26 @@ type Purchases = z.infer<typeof purchases>;
|
|
1302
1302
|
* The shape of the model inside the application code - what the users use
|
1303
1303
|
*/
|
1304
1304
|
declare const package_: z.ZodLazy<z.ZodObject<{
|
1305
|
-
id: z.
|
1306
|
-
dataLimitInBytes: z.
|
1307
|
-
destination: z.
|
1308
|
-
destinationIso2: z.
|
1309
|
-
destinationName: z.
|
1310
|
-
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;
|
1311
1311
|
}, "strip", z.ZodTypeAny, {
|
1312
|
-
|
1313
|
-
|
1314
|
-
|
1315
|
-
|
1316
|
-
|
1317
|
-
|
1312
|
+
destination: string;
|
1313
|
+
destinationIso2: string;
|
1314
|
+
id: string;
|
1315
|
+
dataLimitInBytes: number;
|
1316
|
+
priceInCents: number;
|
1317
|
+
destinationName: string;
|
1318
1318
|
}, {
|
1319
|
-
|
1320
|
-
|
1321
|
-
|
1322
|
-
|
1323
|
-
|
1324
|
-
|
1319
|
+
destination: string;
|
1320
|
+
destinationIso2: string;
|
1321
|
+
id: string;
|
1322
|
+
dataLimitInBytes: number;
|
1323
|
+
priceInCents: number;
|
1324
|
+
destinationName: string;
|
1325
1325
|
}>>;
|
1326
1326
|
/**
|
1327
1327
|
*
|
@@ -1339,11 +1339,11 @@ type Package_ = z.infer<typeof package_>;
|
|
1339
1339
|
* The shape of the model inside the application code - what the users use
|
1340
1340
|
*/
|
1341
1341
|
declare const purchasesEsim: z.ZodLazy<z.ZodObject<{
|
1342
|
-
iccid: z.
|
1342
|
+
iccid: z.ZodString;
|
1343
1343
|
}, "strip", z.ZodTypeAny, {
|
1344
|
-
iccid
|
1344
|
+
iccid: string;
|
1345
1345
|
}, {
|
1346
|
-
iccid
|
1346
|
+
iccid: string;
|
1347
1347
|
}>>;
|
1348
1348
|
/**
|
1349
1349
|
*
|
@@ -1356,27 +1356,27 @@ type PurchasesEsim = z.infer<typeof purchasesEsim>;
|
|
1356
1356
|
* The shape of the model inside the application code - what the users use
|
1357
1357
|
*/
|
1358
1358
|
declare const createPurchaseOkResponsePurchase: z.ZodLazy<z.ZodObject<{
|
1359
|
-
id: z.
|
1360
|
-
packageId: z.
|
1361
|
-
startDate: z.
|
1362
|
-
endDate: z.
|
1363
|
-
createdDate: z.
|
1359
|
+
id: z.ZodString;
|
1360
|
+
packageId: z.ZodString;
|
1361
|
+
startDate: z.ZodString;
|
1362
|
+
endDate: z.ZodString;
|
1363
|
+
createdDate: z.ZodString;
|
1364
1364
|
startTime: z.ZodOptional<z.ZodNumber>;
|
1365
1365
|
endTime: z.ZodOptional<z.ZodNumber>;
|
1366
1366
|
}, "strip", z.ZodTypeAny, {
|
1367
|
-
id
|
1368
|
-
|
1369
|
-
|
1370
|
-
|
1371
|
-
createdDate
|
1367
|
+
id: string;
|
1368
|
+
startDate: string;
|
1369
|
+
endDate: string;
|
1370
|
+
packageId: string;
|
1371
|
+
createdDate: string;
|
1372
1372
|
startTime?: number | undefined;
|
1373
1373
|
endTime?: number | undefined;
|
1374
1374
|
}, {
|
1375
|
-
id
|
1376
|
-
|
1377
|
-
|
1378
|
-
|
1379
|
-
createdDate
|
1375
|
+
id: string;
|
1376
|
+
startDate: string;
|
1377
|
+
endDate: string;
|
1378
|
+
packageId: string;
|
1379
|
+
createdDate: string;
|
1380
1380
|
startTime?: number | undefined;
|
1381
1381
|
endTime?: number | undefined;
|
1382
1382
|
}>>;
|
@@ -1397,17 +1397,17 @@ type CreatePurchaseOkResponsePurchase = z.infer<typeof createPurchaseOkResponseP
|
|
1397
1397
|
* The shape of the model inside the application code - what the users use
|
1398
1398
|
*/
|
1399
1399
|
declare const createPurchaseOkResponseProfile: z.ZodLazy<z.ZodObject<{
|
1400
|
-
iccid: z.
|
1401
|
-
activationCode: z.
|
1402
|
-
manualActivationCode: z.
|
1400
|
+
iccid: z.ZodString;
|
1401
|
+
activationCode: z.ZodString;
|
1402
|
+
manualActivationCode: z.ZodString;
|
1403
1403
|
}, "strip", z.ZodTypeAny, {
|
1404
|
-
iccid
|
1405
|
-
activationCode
|
1406
|
-
manualActivationCode
|
1404
|
+
iccid: string;
|
1405
|
+
activationCode: string;
|
1406
|
+
manualActivationCode: string;
|
1407
1407
|
}, {
|
1408
|
-
iccid
|
1409
|
-
activationCode
|
1410
|
-
manualActivationCode
|
1408
|
+
iccid: string;
|
1409
|
+
activationCode: string;
|
1410
|
+
manualActivationCode: string;
|
1411
1411
|
}>>;
|
1412
1412
|
/**
|
1413
1413
|
*
|
@@ -1422,27 +1422,27 @@ type CreatePurchaseOkResponseProfile = z.infer<typeof createPurchaseOkResponsePr
|
|
1422
1422
|
* The shape of the model inside the application code - what the users use
|
1423
1423
|
*/
|
1424
1424
|
declare const topUpEsimOkResponsePurchase: z.ZodLazy<z.ZodObject<{
|
1425
|
-
id: z.
|
1426
|
-
packageId: z.
|
1427
|
-
startDate: z.
|
1428
|
-
endDate: z.
|
1429
|
-
createdDate: z.
|
1425
|
+
id: z.ZodString;
|
1426
|
+
packageId: z.ZodString;
|
1427
|
+
startDate: z.ZodString;
|
1428
|
+
endDate: z.ZodString;
|
1429
|
+
createdDate: z.ZodString;
|
1430
1430
|
startTime: z.ZodOptional<z.ZodNumber>;
|
1431
1431
|
endTime: z.ZodOptional<z.ZodNumber>;
|
1432
1432
|
}, "strip", z.ZodTypeAny, {
|
1433
|
-
id
|
1434
|
-
|
1435
|
-
|
1436
|
-
|
1437
|
-
createdDate
|
1433
|
+
id: string;
|
1434
|
+
startDate: string;
|
1435
|
+
endDate: string;
|
1436
|
+
packageId: string;
|
1437
|
+
createdDate: string;
|
1438
1438
|
startTime?: number | undefined;
|
1439
1439
|
endTime?: number | undefined;
|
1440
1440
|
}, {
|
1441
|
-
id
|
1442
|
-
|
1443
|
-
|
1444
|
-
|
1445
|
-
createdDate
|
1441
|
+
id: string;
|
1442
|
+
startDate: string;
|
1443
|
+
endDate: string;
|
1444
|
+
packageId: string;
|
1445
|
+
createdDate: string;
|
1446
1446
|
startTime?: number | undefined;
|
1447
1447
|
endTime?: number | undefined;
|
1448
1448
|
}>>;
|
@@ -1463,11 +1463,11 @@ type TopUpEsimOkResponsePurchase = z.infer<typeof topUpEsimOkResponsePurchase>;
|
|
1463
1463
|
* The shape of the model inside the application code - what the users use
|
1464
1464
|
*/
|
1465
1465
|
declare const topUpEsimOkResponseProfile: z.ZodLazy<z.ZodObject<{
|
1466
|
-
iccid: z.
|
1466
|
+
iccid: z.ZodString;
|
1467
1467
|
}, "strip", z.ZodTypeAny, {
|
1468
|
-
iccid
|
1468
|
+
iccid: string;
|
1469
1469
|
}, {
|
1470
|
-
iccid
|
1470
|
+
iccid: string;
|
1471
1471
|
}>>;
|
1472
1472
|
/**
|
1473
1473
|
*
|
@@ -1564,41 +1564,41 @@ declare class _15 extends ThrowableError {
|
|
1564
1564
|
* The shape of the model inside the application code - what the users use
|
1565
1565
|
*/
|
1566
1566
|
declare const getEsimOkResponse: z.ZodLazy<z.ZodObject<{
|
1567
|
-
esim: z.
|
1568
|
-
iccid: z.
|
1569
|
-
smdpAddress: z.
|
1570
|
-
manualActivationCode: z.
|
1571
|
-
status: z.
|
1572
|
-
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;
|
1573
1573
|
}, "strip", z.ZodTypeAny, {
|
1574
|
-
|
1575
|
-
|
1576
|
-
manualActivationCode
|
1577
|
-
|
1578
|
-
isTopUpAllowed
|
1574
|
+
status: string;
|
1575
|
+
iccid: string;
|
1576
|
+
manualActivationCode: string;
|
1577
|
+
smdpAddress: string;
|
1578
|
+
isTopUpAllowed: boolean;
|
1579
1579
|
}, {
|
1580
|
-
|
1581
|
-
|
1582
|
-
manualActivationCode
|
1583
|
-
|
1584
|
-
isTopUpAllowed
|
1585
|
-
}
|
1580
|
+
status: string;
|
1581
|
+
iccid: string;
|
1582
|
+
manualActivationCode: string;
|
1583
|
+
smdpAddress: string;
|
1584
|
+
isTopUpAllowed: boolean;
|
1585
|
+
}>>;
|
1586
1586
|
}, "strip", z.ZodTypeAny, {
|
1587
|
-
esim
|
1588
|
-
|
1589
|
-
|
1590
|
-
manualActivationCode
|
1591
|
-
|
1592
|
-
isTopUpAllowed
|
1593
|
-
}
|
1587
|
+
esim: {
|
1588
|
+
status: string;
|
1589
|
+
iccid: string;
|
1590
|
+
manualActivationCode: string;
|
1591
|
+
smdpAddress: string;
|
1592
|
+
isTopUpAllowed: boolean;
|
1593
|
+
};
|
1594
1594
|
}, {
|
1595
|
-
esim
|
1596
|
-
|
1597
|
-
|
1598
|
-
manualActivationCode
|
1599
|
-
|
1600
|
-
isTopUpAllowed
|
1601
|
-
}
|
1595
|
+
esim: {
|
1596
|
+
status: string;
|
1597
|
+
iccid: string;
|
1598
|
+
manualActivationCode: string;
|
1599
|
+
smdpAddress: string;
|
1600
|
+
isTopUpAllowed: boolean;
|
1601
|
+
};
|
1602
1602
|
}>>;
|
1603
1603
|
/**
|
1604
1604
|
*
|
@@ -1615,36 +1615,36 @@ interface GetEsimParams {
|
|
1615
1615
|
* The shape of the model inside the application code - what the users use
|
1616
1616
|
*/
|
1617
1617
|
declare const getEsimDeviceOkResponse: z.ZodLazy<z.ZodObject<{
|
1618
|
-
device: z.
|
1619
|
-
oem: z.
|
1620
|
-
hardwareName: z.
|
1621
|
-
hardwareModel: z.
|
1622
|
-
eid: z.
|
1618
|
+
device: z.ZodLazy<z.ZodObject<{
|
1619
|
+
oem: z.ZodString;
|
1620
|
+
hardwareName: z.ZodString;
|
1621
|
+
hardwareModel: z.ZodString;
|
1622
|
+
eid: z.ZodString;
|
1623
1623
|
}, "strip", z.ZodTypeAny, {
|
1624
|
-
oem
|
1625
|
-
hardwareName
|
1626
|
-
hardwareModel
|
1627
|
-
eid
|
1624
|
+
oem: string;
|
1625
|
+
hardwareName: string;
|
1626
|
+
hardwareModel: string;
|
1627
|
+
eid: string;
|
1628
1628
|
}, {
|
1629
|
-
oem
|
1630
|
-
hardwareName
|
1631
|
-
hardwareModel
|
1632
|
-
eid
|
1633
|
-
}
|
1629
|
+
oem: string;
|
1630
|
+
hardwareName: string;
|
1631
|
+
hardwareModel: string;
|
1632
|
+
eid: string;
|
1633
|
+
}>>;
|
1634
1634
|
}, "strip", z.ZodTypeAny, {
|
1635
|
-
device
|
1636
|
-
oem
|
1637
|
-
hardwareName
|
1638
|
-
hardwareModel
|
1639
|
-
eid
|
1640
|
-
}
|
1635
|
+
device: {
|
1636
|
+
oem: string;
|
1637
|
+
hardwareName: string;
|
1638
|
+
hardwareModel: string;
|
1639
|
+
eid: string;
|
1640
|
+
};
|
1641
1641
|
}, {
|
1642
|
-
device
|
1643
|
-
oem
|
1644
|
-
hardwareName
|
1645
|
-
hardwareModel
|
1646
|
-
eid
|
1647
|
-
}
|
1642
|
+
device: {
|
1643
|
+
oem: string;
|
1644
|
+
hardwareName: string;
|
1645
|
+
hardwareModel: string;
|
1646
|
+
eid: string;
|
1647
|
+
};
|
1648
1648
|
}>>;
|
1649
1649
|
/**
|
1650
1650
|
*
|
@@ -1657,54 +1657,54 @@ type GetEsimDeviceOkResponse = z.infer<typeof getEsimDeviceOkResponse>;
|
|
1657
1657
|
* The shape of the model inside the application code - what the users use
|
1658
1658
|
*/
|
1659
1659
|
declare const getEsimHistoryOkResponse: z.ZodLazy<z.ZodObject<{
|
1660
|
-
esim: z.
|
1661
|
-
iccid: z.
|
1662
|
-
history: z.
|
1663
|
-
status: z.
|
1664
|
-
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;
|
1665
1665
|
date: z.ZodOptional<z.ZodNumber>;
|
1666
1666
|
}, "strip", z.ZodTypeAny, {
|
1667
|
-
status
|
1668
|
-
statusDate
|
1667
|
+
status: string;
|
1668
|
+
statusDate: string;
|
1669
1669
|
date?: number | undefined;
|
1670
1670
|
}, {
|
1671
|
-
status
|
1672
|
-
statusDate
|
1671
|
+
status: string;
|
1672
|
+
statusDate: string;
|
1673
1673
|
date?: number | undefined;
|
1674
|
-
}>>, "many"
|
1674
|
+
}>>, "many">;
|
1675
1675
|
}, "strip", z.ZodTypeAny, {
|
1676
|
-
iccid
|
1677
|
-
history
|
1678
|
-
status
|
1679
|
-
statusDate
|
1676
|
+
iccid: string;
|
1677
|
+
history: {
|
1678
|
+
status: string;
|
1679
|
+
statusDate: string;
|
1680
1680
|
date?: number | undefined;
|
1681
|
-
}[]
|
1681
|
+
}[];
|
1682
1682
|
}, {
|
1683
|
-
iccid
|
1684
|
-
history
|
1685
|
-
status
|
1686
|
-
statusDate
|
1683
|
+
iccid: string;
|
1684
|
+
history: {
|
1685
|
+
status: string;
|
1686
|
+
statusDate: string;
|
1687
1687
|
date?: number | undefined;
|
1688
|
-
}[]
|
1689
|
-
}
|
1688
|
+
}[];
|
1689
|
+
}>>;
|
1690
1690
|
}, "strip", z.ZodTypeAny, {
|
1691
|
-
esim
|
1692
|
-
iccid
|
1693
|
-
history
|
1694
|
-
status
|
1695
|
-
statusDate
|
1691
|
+
esim: {
|
1692
|
+
iccid: string;
|
1693
|
+
history: {
|
1694
|
+
status: string;
|
1695
|
+
statusDate: string;
|
1696
1696
|
date?: number | undefined;
|
1697
|
-
}[]
|
1698
|
-
}
|
1697
|
+
}[];
|
1698
|
+
};
|
1699
1699
|
}, {
|
1700
|
-
esim
|
1701
|
-
iccid
|
1702
|
-
history
|
1703
|
-
status
|
1704
|
-
statusDate
|
1700
|
+
esim: {
|
1701
|
+
iccid: string;
|
1702
|
+
history: {
|
1703
|
+
status: string;
|
1704
|
+
statusDate: string;
|
1705
1705
|
date?: number | undefined;
|
1706
|
-
}[]
|
1707
|
-
}
|
1706
|
+
}[];
|
1707
|
+
};
|
1708
1708
|
}>>;
|
1709
1709
|
/**
|
1710
1710
|
*
|
@@ -1717,31 +1717,31 @@ type GetEsimHistoryOkResponse = z.infer<typeof getEsimHistoryOkResponse>;
|
|
1717
1717
|
* The shape of the model inside the application code - what the users use
|
1718
1718
|
*/
|
1719
1719
|
declare const getEsimMacOkResponse: z.ZodLazy<z.ZodObject<{
|
1720
|
-
esim: z.
|
1721
|
-
iccid: z.
|
1722
|
-
smdpAddress: z.
|
1723
|
-
manualActivationCode: z.
|
1720
|
+
esim: z.ZodLazy<z.ZodObject<{
|
1721
|
+
iccid: z.ZodString;
|
1722
|
+
smdpAddress: z.ZodString;
|
1723
|
+
manualActivationCode: z.ZodString;
|
1724
1724
|
}, "strip", z.ZodTypeAny, {
|
1725
|
-
iccid
|
1726
|
-
|
1727
|
-
|
1725
|
+
iccid: string;
|
1726
|
+
manualActivationCode: string;
|
1727
|
+
smdpAddress: string;
|
1728
1728
|
}, {
|
1729
|
-
iccid
|
1730
|
-
|
1731
|
-
|
1732
|
-
}
|
1729
|
+
iccid: string;
|
1730
|
+
manualActivationCode: string;
|
1731
|
+
smdpAddress: string;
|
1732
|
+
}>>;
|
1733
1733
|
}, "strip", z.ZodTypeAny, {
|
1734
|
-
esim
|
1735
|
-
iccid
|
1736
|
-
|
1737
|
-
|
1738
|
-
}
|
1734
|
+
esim: {
|
1735
|
+
iccid: string;
|
1736
|
+
manualActivationCode: string;
|
1737
|
+
smdpAddress: string;
|
1738
|
+
};
|
1739
1739
|
}, {
|
1740
|
-
esim
|
1741
|
-
iccid
|
1742
|
-
|
1743
|
-
|
1744
|
-
}
|
1740
|
+
esim: {
|
1741
|
+
iccid: string;
|
1742
|
+
manualActivationCode: string;
|
1743
|
+
smdpAddress: string;
|
1744
|
+
};
|
1745
1745
|
}>>;
|
1746
1746
|
/**
|
1747
1747
|
*
|
@@ -1785,23 +1785,23 @@ declare class ESimService extends BaseService {
|
|
1785
1785
|
* The shape of the model inside the application code - what the users use
|
1786
1786
|
*/
|
1787
1787
|
declare const getEsimOkResponseEsim: z.ZodLazy<z.ZodObject<{
|
1788
|
-
iccid: z.
|
1789
|
-
smdpAddress: z.
|
1790
|
-
manualActivationCode: z.
|
1791
|
-
status: z.
|
1792
|
-
isTopUpAllowed: z.
|
1788
|
+
iccid: z.ZodString;
|
1789
|
+
smdpAddress: z.ZodString;
|
1790
|
+
manualActivationCode: z.ZodString;
|
1791
|
+
status: z.ZodString;
|
1792
|
+
isTopUpAllowed: z.ZodBoolean;
|
1793
1793
|
}, "strip", z.ZodTypeAny, {
|
1794
|
-
|
1795
|
-
|
1796
|
-
manualActivationCode
|
1797
|
-
|
1798
|
-
isTopUpAllowed
|
1794
|
+
status: string;
|
1795
|
+
iccid: string;
|
1796
|
+
manualActivationCode: string;
|
1797
|
+
smdpAddress: string;
|
1798
|
+
isTopUpAllowed: boolean;
|
1799
1799
|
}, {
|
1800
|
-
|
1801
|
-
|
1802
|
-
manualActivationCode
|
1803
|
-
|
1804
|
-
isTopUpAllowed
|
1800
|
+
status: string;
|
1801
|
+
iccid: string;
|
1802
|
+
manualActivationCode: string;
|
1803
|
+
smdpAddress: string;
|
1804
|
+
isTopUpAllowed: boolean;
|
1805
1805
|
}>>;
|
1806
1806
|
/**
|
1807
1807
|
*
|
@@ -1818,20 +1818,20 @@ type GetEsimOkResponseEsim = z.infer<typeof getEsimOkResponseEsim>;
|
|
1818
1818
|
* The shape of the model inside the application code - what the users use
|
1819
1819
|
*/
|
1820
1820
|
declare const device: z.ZodLazy<z.ZodObject<{
|
1821
|
-
oem: z.
|
1822
|
-
hardwareName: z.
|
1823
|
-
hardwareModel: z.
|
1824
|
-
eid: z.
|
1821
|
+
oem: z.ZodString;
|
1822
|
+
hardwareName: z.ZodString;
|
1823
|
+
hardwareModel: z.ZodString;
|
1824
|
+
eid: z.ZodString;
|
1825
1825
|
}, "strip", z.ZodTypeAny, {
|
1826
|
-
oem
|
1827
|
-
hardwareName
|
1828
|
-
hardwareModel
|
1829
|
-
eid
|
1826
|
+
oem: string;
|
1827
|
+
hardwareName: string;
|
1828
|
+
hardwareModel: string;
|
1829
|
+
eid: string;
|
1830
1830
|
}, {
|
1831
|
-
oem
|
1832
|
-
hardwareName
|
1833
|
-
hardwareModel
|
1834
|
-
eid
|
1831
|
+
oem: string;
|
1832
|
+
hardwareName: string;
|
1833
|
+
hardwareModel: string;
|
1834
|
+
eid: string;
|
1835
1835
|
}>>;
|
1836
1836
|
/**
|
1837
1837
|
*
|
@@ -1847,34 +1847,34 @@ type Device = z.infer<typeof device>;
|
|
1847
1847
|
* The shape of the model inside the application code - what the users use
|
1848
1848
|
*/
|
1849
1849
|
declare const getEsimHistoryOkResponseEsim: z.ZodLazy<z.ZodObject<{
|
1850
|
-
iccid: z.
|
1851
|
-
history: z.
|
1852
|
-
status: z.
|
1853
|
-
statusDate: z.
|
1850
|
+
iccid: z.ZodString;
|
1851
|
+
history: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
1852
|
+
status: z.ZodString;
|
1853
|
+
statusDate: z.ZodString;
|
1854
1854
|
date: z.ZodOptional<z.ZodNumber>;
|
1855
1855
|
}, "strip", z.ZodTypeAny, {
|
1856
|
-
status
|
1857
|
-
statusDate
|
1856
|
+
status: string;
|
1857
|
+
statusDate: string;
|
1858
1858
|
date?: number | undefined;
|
1859
1859
|
}, {
|
1860
|
-
status
|
1861
|
-
statusDate
|
1860
|
+
status: string;
|
1861
|
+
statusDate: string;
|
1862
1862
|
date?: number | undefined;
|
1863
|
-
}>>, "many"
|
1863
|
+
}>>, "many">;
|
1864
1864
|
}, "strip", z.ZodTypeAny, {
|
1865
|
-
iccid
|
1866
|
-
history
|
1867
|
-
status
|
1868
|
-
statusDate
|
1865
|
+
iccid: string;
|
1866
|
+
history: {
|
1867
|
+
status: string;
|
1868
|
+
statusDate: string;
|
1869
1869
|
date?: number | undefined;
|
1870
|
-
}[]
|
1870
|
+
}[];
|
1871
1871
|
}, {
|
1872
|
-
iccid
|
1873
|
-
history
|
1874
|
-
status
|
1875
|
-
statusDate
|
1872
|
+
iccid: string;
|
1873
|
+
history: {
|
1874
|
+
status: string;
|
1875
|
+
statusDate: string;
|
1876
1876
|
date?: number | undefined;
|
1877
|
-
}[]
|
1877
|
+
}[];
|
1878
1878
|
}>>;
|
1879
1879
|
/**
|
1880
1880
|
*
|
@@ -1888,16 +1888,16 @@ type GetEsimHistoryOkResponseEsim = z.infer<typeof getEsimHistoryOkResponseEsim>
|
|
1888
1888
|
* The shape of the model inside the application code - what the users use
|
1889
1889
|
*/
|
1890
1890
|
declare const history: z.ZodLazy<z.ZodObject<{
|
1891
|
-
status: z.
|
1892
|
-
statusDate: z.
|
1891
|
+
status: z.ZodString;
|
1892
|
+
statusDate: z.ZodString;
|
1893
1893
|
date: z.ZodOptional<z.ZodNumber>;
|
1894
1894
|
}, "strip", z.ZodTypeAny, {
|
1895
|
-
status
|
1896
|
-
statusDate
|
1895
|
+
status: string;
|
1896
|
+
statusDate: string;
|
1897
1897
|
date?: number | undefined;
|
1898
1898
|
}, {
|
1899
|
-
status
|
1900
|
-
statusDate
|
1899
|
+
status: string;
|
1900
|
+
statusDate: string;
|
1901
1901
|
date?: number | undefined;
|
1902
1902
|
}>>;
|
1903
1903
|
/**
|
@@ -1913,17 +1913,17 @@ type History = z.infer<typeof history>;
|
|
1913
1913
|
* The shape of the model inside the application code - what the users use
|
1914
1914
|
*/
|
1915
1915
|
declare const getEsimMacOkResponseEsim: z.ZodLazy<z.ZodObject<{
|
1916
|
-
iccid: z.
|
1917
|
-
smdpAddress: z.
|
1918
|
-
manualActivationCode: z.
|
1916
|
+
iccid: z.ZodString;
|
1917
|
+
smdpAddress: z.ZodString;
|
1918
|
+
manualActivationCode: z.ZodString;
|
1919
1919
|
}, "strip", z.ZodTypeAny, {
|
1920
|
-
iccid
|
1921
|
-
|
1922
|
-
|
1920
|
+
iccid: string;
|
1921
|
+
manualActivationCode: string;
|
1922
|
+
smdpAddress: string;
|
1923
1923
|
}, {
|
1924
|
-
iccid
|
1925
|
-
|
1926
|
-
|
1924
|
+
iccid: string;
|
1925
|
+
manualActivationCode: string;
|
1926
|
+
smdpAddress: string;
|
1927
1927
|
}>>;
|
1928
1928
|
/**
|
1929
1929
|
*
|
@@ -1994,11 +1994,11 @@ declare class _23 extends ThrowableError {
|
|
1994
1994
|
* The shape of the model inside the application code - what the users use
|
1995
1995
|
*/
|
1996
1996
|
declare const tokenOkResponse: z.ZodLazy<z.ZodObject<{
|
1997
|
-
token: z.
|
1997
|
+
token: z.ZodString;
|
1998
1998
|
}, "strip", z.ZodTypeAny, {
|
1999
|
-
token
|
1999
|
+
token: string;
|
2000
2000
|
}, {
|
2001
|
-
token
|
2001
|
+
token: string;
|
2002
2002
|
}>>;
|
2003
2003
|
/**
|
2004
2004
|
*
|