@stigg/typescript 0.1.0-beta.3 → 0.1.0-beta.4

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.
Files changed (60) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +1 -1
  3. package/resources/v1/addons/addons.d.mts +172 -1
  4. package/resources/v1/addons/addons.d.mts.map +1 -1
  5. package/resources/v1/addons/addons.d.ts +172 -1
  6. package/resources/v1/addons/addons.d.ts.map +1 -1
  7. package/resources/v1/addons/addons.js +6 -0
  8. package/resources/v1/addons/addons.js.map +1 -1
  9. package/resources/v1/addons/addons.mjs +6 -0
  10. package/resources/v1/addons/addons.mjs.map +1 -1
  11. package/resources/v1/addons/index.d.mts +1 -1
  12. package/resources/v1/addons/index.d.mts.map +1 -1
  13. package/resources/v1/addons/index.d.ts +1 -1
  14. package/resources/v1/addons/index.d.ts.map +1 -1
  15. package/resources/v1/addons/index.js.map +1 -1
  16. package/resources/v1/addons/index.mjs.map +1 -1
  17. package/resources/v1/index.d.mts +2 -2
  18. package/resources/v1/index.d.mts.map +1 -1
  19. package/resources/v1/index.d.ts +2 -2
  20. package/resources/v1/index.d.ts.map +1 -1
  21. package/resources/v1/index.js.map +1 -1
  22. package/resources/v1/index.mjs.map +1 -1
  23. package/resources/v1/plans/index.d.mts +1 -1
  24. package/resources/v1/plans/index.d.mts.map +1 -1
  25. package/resources/v1/plans/index.d.ts +1 -1
  26. package/resources/v1/plans/index.d.ts.map +1 -1
  27. package/resources/v1/plans/index.js.map +1 -1
  28. package/resources/v1/plans/index.mjs.map +1 -1
  29. package/resources/v1/plans/plans.d.mts +343 -1
  30. package/resources/v1/plans/plans.d.mts.map +1 -1
  31. package/resources/v1/plans/plans.d.ts +343 -1
  32. package/resources/v1/plans/plans.d.ts.map +1 -1
  33. package/resources/v1/plans/plans.js +12 -0
  34. package/resources/v1/plans/plans.js.map +1 -1
  35. package/resources/v1/plans/plans.mjs +12 -0
  36. package/resources/v1/plans/plans.mjs.map +1 -1
  37. package/resources/v1/subscriptions/subscriptions.d.mts +6 -3
  38. package/resources/v1/subscriptions/subscriptions.d.mts.map +1 -1
  39. package/resources/v1/subscriptions/subscriptions.d.ts +6 -3
  40. package/resources/v1/subscriptions/subscriptions.d.ts.map +1 -1
  41. package/resources/v1/subscriptions/subscriptions.js.map +1 -1
  42. package/resources/v1/subscriptions/subscriptions.mjs.map +1 -1
  43. package/resources/v1/v1.d.mts +4 -4
  44. package/resources/v1/v1.d.mts.map +1 -1
  45. package/resources/v1/v1.d.ts +4 -4
  46. package/resources/v1/v1.d.ts.map +1 -1
  47. package/resources/v1/v1.js.map +1 -1
  48. package/resources/v1/v1.mjs.map +1 -1
  49. package/src/resources/v1/addons/addons.ts +566 -0
  50. package/src/resources/v1/addons/index.ts +3 -0
  51. package/src/resources/v1/index.ts +9 -0
  52. package/src/resources/v1/plans/index.ts +6 -0
  53. package/src/resources/v1/plans/plans.ts +1132 -0
  54. package/src/resources/v1/subscriptions/subscriptions.ts +6 -3
  55. package/src/resources/v1/v1.ts +18 -0
  56. package/src/version.ts +1 -1
  57. package/version.d.mts +1 -1
  58. package/version.d.ts +1 -1
  59. package/version.js +1 -1
  60. package/version.mjs +1 -1
@@ -72,6 +72,21 @@ export class Addons extends APIResource {
72
72
  return this._client.post(path`/api/v1/addons/${id}/draft`, options);
73
73
  }
74
74
 
75
+ /**
76
+ * Retrieves the list of charges configured on an addon.
77
+ */
78
+ listCharges(
79
+ id: string,
80
+ query: AddonListChargesParams | null | undefined = {},
81
+ options?: RequestOptions,
82
+ ): PagePromise<AddonListChargesResponsesMyCursorIDPage, AddonListChargesResponse> {
83
+ return this._client.getAPIList(
84
+ path`/api/v1/addons/${id}/charges`,
85
+ MyCursorIDPage<AddonListChargesResponse>,
86
+ { query, ...options },
87
+ );
88
+ }
89
+
75
90
  /**
76
91
  * Publishes a draft addon, making it available for use in subscriptions.
77
92
  */
@@ -89,6 +104,8 @@ export class Addons extends APIResource {
89
104
 
90
105
  export type AddonListResponsesMyCursorIDPage = MyCursorIDPage<AddonListResponse>;
91
106
 
107
+ export type AddonListChargesResponsesMyCursorIDPage = MyCursorIDPage<AddonListChargesResponse>;
108
+
92
109
  /**
93
110
  * Response object
94
111
  */
@@ -289,6 +306,550 @@ export namespace AddonListResponse {
289
306
  }
290
307
  }
291
308
 
309
+ /**
310
+ * A single pricing row on a plan or addon. Each charge encodes one (billingPeriod,
311
+ * billingModel, billingCadence, billingCountryCode) combination. Plans and addons
312
+ * own many of these — one per currency / billing period / feature.
313
+ */
314
+ export interface AddonListChargesResponse {
315
+ /**
316
+ * Unique identifier of the charge
317
+ */
318
+ id: string;
319
+
320
+ /**
321
+ * The billing cadence (RECURRING or ONE_OFF)
322
+ */
323
+ billingCadence: 'RECURRING' | 'ONE_OFF';
324
+
325
+ /**
326
+ * The billing model (FLAT_FEE, PER_UNIT, USAGE_BASED, CREDIT_BASED, MINIMUM_SPEND)
327
+ */
328
+ billingModel: 'FLAT_FEE' | 'MINIMUM_SPEND' | 'PER_UNIT' | 'USAGE_BASED' | 'CREDIT_BASED';
329
+
330
+ /**
331
+ * The billing period (MONTHLY or ANNUALLY)
332
+ */
333
+ billingPeriod: 'MONTHLY' | 'ANNUALLY';
334
+
335
+ /**
336
+ * Timestamp when the charge was created
337
+ */
338
+ createdAt: string;
339
+
340
+ /**
341
+ * ISO country code for localized pricing, if any
342
+ */
343
+ billingCountryCode?: string | null;
344
+
345
+ /**
346
+ * Identifier in the external billing integration (e.g. Stripe price id), if any
347
+ */
348
+ billingId?: string | null;
349
+
350
+ /**
351
+ * Block size for usage-based pricing
352
+ */
353
+ blockSize?: number | null;
354
+
355
+ /**
356
+ * When credits are granted (for credit-based pricing)
357
+ */
358
+ creditGrantCadence?: 'BEGINNING_OF_BILLING_PERIOD' | 'MONTHLY' | null;
359
+
360
+ /**
361
+ * Credit rate configuration for credit-based pricing
362
+ */
363
+ creditRate?: AddonListChargesResponse.CreditRate | null;
364
+
365
+ /**
366
+ * Identifier in the linked CRM, if any
367
+ */
368
+ crmId?: string | null;
369
+
370
+ /**
371
+ * Deep link to the charge in the linked CRM, if any
372
+ */
373
+ crmLinkUrl?: string | null;
374
+
375
+ /**
376
+ * The feature this charge meters, if metered
377
+ */
378
+ featureId?: string | null;
379
+
380
+ /**
381
+ * Maximum unit quantity that can be purchased
382
+ */
383
+ maxUnitQuantity?: number | null;
384
+
385
+ /**
386
+ * Minimum unit quantity that can be purchased
387
+ */
388
+ minUnitQuantity?: number | null;
389
+
390
+ /**
391
+ * The flat price amount and currency, when applicable
392
+ */
393
+ price?: AddonListChargesResponse.Price | null;
394
+
395
+ /**
396
+ * Tiered pricing rows when the charge is tiered
397
+ */
398
+ tiers?: Array<AddonListChargesResponse.Tier> | null;
399
+
400
+ /**
401
+ * Tiered pricing mode (VOLUME or GRADUATED) when the charge is tiered
402
+ */
403
+ tiersMode?: 'VOLUME' | 'GRADUATED' | null;
404
+
405
+ /**
406
+ * Custom currency identifier for top-up pricing, if any
407
+ */
408
+ topUpCustomCurrencyId?: string | null;
409
+
410
+ /**
411
+ * True if this charge is referenced by at least one subscription
412
+ */
413
+ usedInSubscriptions?: boolean | null;
414
+ }
415
+
416
+ export namespace AddonListChargesResponse {
417
+ /**
418
+ * Credit rate configuration for credit-based pricing
419
+ */
420
+ export interface CreditRate {
421
+ /**
422
+ * Credit rate amount
423
+ */
424
+ amount: number;
425
+
426
+ /**
427
+ * Custom currency identifier
428
+ */
429
+ currencyId: string;
430
+
431
+ /**
432
+ * Optional cost formula expression
433
+ */
434
+ costFormula?: string | null;
435
+ }
436
+
437
+ /**
438
+ * The flat price amount and currency, when applicable
439
+ */
440
+ export interface Price {
441
+ /**
442
+ * The price amount
443
+ */
444
+ amount: number;
445
+
446
+ /**
447
+ * ISO 4217 currency code
448
+ */
449
+ currency:
450
+ | 'usd'
451
+ | 'aed'
452
+ | 'all'
453
+ | 'amd'
454
+ | 'ang'
455
+ | 'aud'
456
+ | 'awg'
457
+ | 'azn'
458
+ | 'bam'
459
+ | 'bbd'
460
+ | 'bdt'
461
+ | 'bgn'
462
+ | 'bif'
463
+ | 'bmd'
464
+ | 'bnd'
465
+ | 'bsd'
466
+ | 'bwp'
467
+ | 'byn'
468
+ | 'bzd'
469
+ | 'brl'
470
+ | 'cad'
471
+ | 'cdf'
472
+ | 'chf'
473
+ | 'cny'
474
+ | 'czk'
475
+ | 'dkk'
476
+ | 'dop'
477
+ | 'dzd'
478
+ | 'egp'
479
+ | 'etb'
480
+ | 'eur'
481
+ | 'fjd'
482
+ | 'gbp'
483
+ | 'gel'
484
+ | 'gip'
485
+ | 'gmd'
486
+ | 'gyd'
487
+ | 'hkd'
488
+ | 'hrk'
489
+ | 'htg'
490
+ | 'idr'
491
+ | 'ils'
492
+ | 'inr'
493
+ | 'isk'
494
+ | 'jmd'
495
+ | 'jpy'
496
+ | 'kes'
497
+ | 'kgs'
498
+ | 'khr'
499
+ | 'kmf'
500
+ | 'krw'
501
+ | 'kyd'
502
+ | 'kzt'
503
+ | 'lbp'
504
+ | 'lkr'
505
+ | 'lrd'
506
+ | 'lsl'
507
+ | 'mad'
508
+ | 'mdl'
509
+ | 'mga'
510
+ | 'mkd'
511
+ | 'mmk'
512
+ | 'mnt'
513
+ | 'mop'
514
+ | 'mro'
515
+ | 'mvr'
516
+ | 'mwk'
517
+ | 'mxn'
518
+ | 'myr'
519
+ | 'mzn'
520
+ | 'nad'
521
+ | 'ngn'
522
+ | 'nok'
523
+ | 'npr'
524
+ | 'nzd'
525
+ | 'pgk'
526
+ | 'php'
527
+ | 'pkr'
528
+ | 'pln'
529
+ | 'qar'
530
+ | 'ron'
531
+ | 'rsd'
532
+ | 'rub'
533
+ | 'rwf'
534
+ | 'sar'
535
+ | 'sbd'
536
+ | 'scr'
537
+ | 'sek'
538
+ | 'sgd'
539
+ | 'sle'
540
+ | 'sll'
541
+ | 'sos'
542
+ | 'szl'
543
+ | 'thb'
544
+ | 'tjs'
545
+ | 'top'
546
+ | 'try'
547
+ | 'ttd'
548
+ | 'tzs'
549
+ | 'uah'
550
+ | 'uzs'
551
+ | 'vnd'
552
+ | 'vuv'
553
+ | 'wst'
554
+ | 'xaf'
555
+ | 'xcd'
556
+ | 'yer'
557
+ | 'zar'
558
+ | 'zmw'
559
+ | 'clp'
560
+ | 'djf'
561
+ | 'gnf'
562
+ | 'ugx'
563
+ | 'pyg'
564
+ | 'xof'
565
+ | 'xpf';
566
+ }
567
+
568
+ /**
569
+ * A single tier within a tiered charge
570
+ */
571
+ export interface Tier {
572
+ /**
573
+ * Flat price for this tier
574
+ */
575
+ flatPrice?: Tier.FlatPrice | null;
576
+
577
+ /**
578
+ * Per-unit price in this tier
579
+ */
580
+ unitPrice?: Tier.UnitPrice | null;
581
+
582
+ /**
583
+ * Upper bound of this tier (null for unlimited)
584
+ */
585
+ upTo?: number | null;
586
+ }
587
+
588
+ export namespace Tier {
589
+ /**
590
+ * Flat price for this tier
591
+ */
592
+ export interface FlatPrice {
593
+ /**
594
+ * The price amount
595
+ */
596
+ amount: number;
597
+
598
+ /**
599
+ * ISO 4217 currency code
600
+ */
601
+ currency:
602
+ | 'usd'
603
+ | 'aed'
604
+ | 'all'
605
+ | 'amd'
606
+ | 'ang'
607
+ | 'aud'
608
+ | 'awg'
609
+ | 'azn'
610
+ | 'bam'
611
+ | 'bbd'
612
+ | 'bdt'
613
+ | 'bgn'
614
+ | 'bif'
615
+ | 'bmd'
616
+ | 'bnd'
617
+ | 'bsd'
618
+ | 'bwp'
619
+ | 'byn'
620
+ | 'bzd'
621
+ | 'brl'
622
+ | 'cad'
623
+ | 'cdf'
624
+ | 'chf'
625
+ | 'cny'
626
+ | 'czk'
627
+ | 'dkk'
628
+ | 'dop'
629
+ | 'dzd'
630
+ | 'egp'
631
+ | 'etb'
632
+ | 'eur'
633
+ | 'fjd'
634
+ | 'gbp'
635
+ | 'gel'
636
+ | 'gip'
637
+ | 'gmd'
638
+ | 'gyd'
639
+ | 'hkd'
640
+ | 'hrk'
641
+ | 'htg'
642
+ | 'idr'
643
+ | 'ils'
644
+ | 'inr'
645
+ | 'isk'
646
+ | 'jmd'
647
+ | 'jpy'
648
+ | 'kes'
649
+ | 'kgs'
650
+ | 'khr'
651
+ | 'kmf'
652
+ | 'krw'
653
+ | 'kyd'
654
+ | 'kzt'
655
+ | 'lbp'
656
+ | 'lkr'
657
+ | 'lrd'
658
+ | 'lsl'
659
+ | 'mad'
660
+ | 'mdl'
661
+ | 'mga'
662
+ | 'mkd'
663
+ | 'mmk'
664
+ | 'mnt'
665
+ | 'mop'
666
+ | 'mro'
667
+ | 'mvr'
668
+ | 'mwk'
669
+ | 'mxn'
670
+ | 'myr'
671
+ | 'mzn'
672
+ | 'nad'
673
+ | 'ngn'
674
+ | 'nok'
675
+ | 'npr'
676
+ | 'nzd'
677
+ | 'pgk'
678
+ | 'php'
679
+ | 'pkr'
680
+ | 'pln'
681
+ | 'qar'
682
+ | 'ron'
683
+ | 'rsd'
684
+ | 'rub'
685
+ | 'rwf'
686
+ | 'sar'
687
+ | 'sbd'
688
+ | 'scr'
689
+ | 'sek'
690
+ | 'sgd'
691
+ | 'sle'
692
+ | 'sll'
693
+ | 'sos'
694
+ | 'szl'
695
+ | 'thb'
696
+ | 'tjs'
697
+ | 'top'
698
+ | 'try'
699
+ | 'ttd'
700
+ | 'tzs'
701
+ | 'uah'
702
+ | 'uzs'
703
+ | 'vnd'
704
+ | 'vuv'
705
+ | 'wst'
706
+ | 'xaf'
707
+ | 'xcd'
708
+ | 'yer'
709
+ | 'zar'
710
+ | 'zmw'
711
+ | 'clp'
712
+ | 'djf'
713
+ | 'gnf'
714
+ | 'ugx'
715
+ | 'pyg'
716
+ | 'xof'
717
+ | 'xpf';
718
+ }
719
+
720
+ /**
721
+ * Per-unit price in this tier
722
+ */
723
+ export interface UnitPrice {
724
+ /**
725
+ * The price amount
726
+ */
727
+ amount: number;
728
+
729
+ /**
730
+ * ISO 4217 currency code
731
+ */
732
+ currency:
733
+ | 'usd'
734
+ | 'aed'
735
+ | 'all'
736
+ | 'amd'
737
+ | 'ang'
738
+ | 'aud'
739
+ | 'awg'
740
+ | 'azn'
741
+ | 'bam'
742
+ | 'bbd'
743
+ | 'bdt'
744
+ | 'bgn'
745
+ | 'bif'
746
+ | 'bmd'
747
+ | 'bnd'
748
+ | 'bsd'
749
+ | 'bwp'
750
+ | 'byn'
751
+ | 'bzd'
752
+ | 'brl'
753
+ | 'cad'
754
+ | 'cdf'
755
+ | 'chf'
756
+ | 'cny'
757
+ | 'czk'
758
+ | 'dkk'
759
+ | 'dop'
760
+ | 'dzd'
761
+ | 'egp'
762
+ | 'etb'
763
+ | 'eur'
764
+ | 'fjd'
765
+ | 'gbp'
766
+ | 'gel'
767
+ | 'gip'
768
+ | 'gmd'
769
+ | 'gyd'
770
+ | 'hkd'
771
+ | 'hrk'
772
+ | 'htg'
773
+ | 'idr'
774
+ | 'ils'
775
+ | 'inr'
776
+ | 'isk'
777
+ | 'jmd'
778
+ | 'jpy'
779
+ | 'kes'
780
+ | 'kgs'
781
+ | 'khr'
782
+ | 'kmf'
783
+ | 'krw'
784
+ | 'kyd'
785
+ | 'kzt'
786
+ | 'lbp'
787
+ | 'lkr'
788
+ | 'lrd'
789
+ | 'lsl'
790
+ | 'mad'
791
+ | 'mdl'
792
+ | 'mga'
793
+ | 'mkd'
794
+ | 'mmk'
795
+ | 'mnt'
796
+ | 'mop'
797
+ | 'mro'
798
+ | 'mvr'
799
+ | 'mwk'
800
+ | 'mxn'
801
+ | 'myr'
802
+ | 'mzn'
803
+ | 'nad'
804
+ | 'ngn'
805
+ | 'nok'
806
+ | 'npr'
807
+ | 'nzd'
808
+ | 'pgk'
809
+ | 'php'
810
+ | 'pkr'
811
+ | 'pln'
812
+ | 'qar'
813
+ | 'ron'
814
+ | 'rsd'
815
+ | 'rub'
816
+ | 'rwf'
817
+ | 'sar'
818
+ | 'sbd'
819
+ | 'scr'
820
+ | 'sek'
821
+ | 'sgd'
822
+ | 'sle'
823
+ | 'sll'
824
+ | 'sos'
825
+ | 'szl'
826
+ | 'thb'
827
+ | 'tjs'
828
+ | 'top'
829
+ | 'try'
830
+ | 'ttd'
831
+ | 'tzs'
832
+ | 'uah'
833
+ | 'uzs'
834
+ | 'vnd'
835
+ | 'vuv'
836
+ | 'wst'
837
+ | 'xaf'
838
+ | 'xcd'
839
+ | 'yer'
840
+ | 'zar'
841
+ | 'zmw'
842
+ | 'clp'
843
+ | 'djf'
844
+ | 'gnf'
845
+ | 'ugx'
846
+ | 'pyg'
847
+ | 'xof'
848
+ | 'xpf';
849
+ }
850
+ }
851
+ }
852
+
292
853
  /**
293
854
  * Response containing task ID for publish operation
294
855
  */
@@ -1822,6 +2383,8 @@ export namespace AddonListParams {
1822
2383
  }
1823
2384
  }
1824
2385
 
2386
+ export interface AddonListChargesParams extends MyCursorIDPageParams {}
2387
+
1825
2388
  export interface AddonPublishParams {
1826
2389
  /**
1827
2390
  * The migration type of the package
@@ -1835,12 +2398,15 @@ export declare namespace Addons {
1835
2398
  export {
1836
2399
  type Addon as Addon,
1837
2400
  type AddonListResponse as AddonListResponse,
2401
+ type AddonListChargesResponse as AddonListChargesResponse,
1838
2402
  type AddonPublishResponse as AddonPublishResponse,
1839
2403
  type AddonRemoveDraftResponse as AddonRemoveDraftResponse,
1840
2404
  type AddonListResponsesMyCursorIDPage as AddonListResponsesMyCursorIDPage,
2405
+ type AddonListChargesResponsesMyCursorIDPage as AddonListChargesResponsesMyCursorIDPage,
1841
2406
  type AddonCreateParams as AddonCreateParams,
1842
2407
  type AddonUpdateParams as AddonUpdateParams,
1843
2408
  type AddonListParams as AddonListParams,
2409
+ type AddonListChargesParams as AddonListChargesParams,
1844
2410
  type AddonPublishParams as AddonPublishParams,
1845
2411
  };
1846
2412
 
@@ -4,13 +4,16 @@ export {
4
4
  Addons,
5
5
  type Addon,
6
6
  type AddonListResponse,
7
+ type AddonListChargesResponse,
7
8
  type AddonPublishResponse,
8
9
  type AddonRemoveDraftResponse,
9
10
  type AddonCreateParams,
10
11
  type AddonUpdateParams,
11
12
  type AddonListParams,
13
+ type AddonListChargesParams,
12
14
  type AddonPublishParams,
13
15
  type AddonListResponsesMyCursorIDPage,
16
+ type AddonListChargesResponsesMyCursorIDPage,
14
17
  } from './addons';
15
18
  export {
16
19
  Entitlements,
@@ -4,13 +4,16 @@ export {
4
4
  Addons,
5
5
  type Addon,
6
6
  type AddonListResponse,
7
+ type AddonListChargesResponse,
7
8
  type AddonPublishResponse,
8
9
  type AddonRemoveDraftResponse,
9
10
  type AddonCreateParams,
10
11
  type AddonUpdateParams,
11
12
  type AddonListParams,
13
+ type AddonListChargesParams,
12
14
  type AddonPublishParams,
13
15
  type AddonListResponsesMyCursorIDPage,
16
+ type AddonListChargesResponsesMyCursorIDPage,
14
17
  } from './addons/index';
15
18
  export {
16
19
  Coupons,
@@ -64,13 +67,19 @@ export {
64
67
  Plans,
65
68
  type Plan,
66
69
  type PlanListResponse,
70
+ type PlanListChargesResponse,
71
+ type PlanListOverageChargesResponse,
67
72
  type PlanPublishResponse,
68
73
  type PlanRemoveDraftResponse,
69
74
  type PlanCreateParams,
70
75
  type PlanUpdateParams,
71
76
  type PlanListParams,
77
+ type PlanListChargesParams,
78
+ type PlanListOverageChargesParams,
72
79
  type PlanPublishParams,
73
80
  type PlanListResponsesMyCursorIDPage,
81
+ type PlanListChargesResponsesMyCursorIDPage,
82
+ type PlanListOverageChargesResponsesMyCursorIDPage,
74
83
  } from './plans/index';
75
84
  export {
76
85
  Products,
@@ -13,11 +13,17 @@ export {
13
13
  Plans,
14
14
  type Plan,
15
15
  type PlanListResponse,
16
+ type PlanListChargesResponse,
17
+ type PlanListOverageChargesResponse,
16
18
  type PlanPublishResponse,
17
19
  type PlanRemoveDraftResponse,
18
20
  type PlanCreateParams,
19
21
  type PlanUpdateParams,
20
22
  type PlanListParams,
23
+ type PlanListChargesParams,
24
+ type PlanListOverageChargesParams,
21
25
  type PlanPublishParams,
22
26
  type PlanListResponsesMyCursorIDPage,
27
+ type PlanListChargesResponsesMyCursorIDPage,
28
+ type PlanListOverageChargesResponsesMyCursorIDPage,
23
29
  } from './plans';