@schematichq/schematic-components 2.7.0 → 2.8.1

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.
@@ -57,12 +57,6 @@ declare type BillingCreditBundleType = (typeof BillingCreditBundleType)[keyof ty
57
57
  * @interface BillingCreditBundleView
58
58
  */
59
59
  declare interface BillingCreditBundleView {
60
- /**
61
- *
62
- * @type {string}
63
- * @memberof BillingCreditBundleView
64
- */
65
- billingInvoiceId?: string | null;
66
60
  /**
67
61
  *
68
62
  * @type {BillingCreditBundleType}
@@ -501,6 +495,250 @@ declare const BillingCreditRolloverPolicy_2: {
501
495
 
502
496
  declare type BillingCreditRolloverPolicy_2 = (typeof BillingCreditRolloverPolicy_2)[keyof typeof BillingCreditRolloverPolicy_2];
503
497
 
498
+ /**
499
+ *
500
+ * @export
501
+ * @interface BillingCreditView
502
+ */
503
+ declare interface BillingCreditView {
504
+ /**
505
+ *
506
+ * @type {string}
507
+ * @memberof BillingCreditView
508
+ */
509
+ accountId: string;
510
+ /**
511
+ *
512
+ * @type {BillingCreditBurnStrategy}
513
+ * @memberof BillingCreditView
514
+ */
515
+ burnStrategy: BillingCreditBurnStrategy;
516
+ /**
517
+ *
518
+ * @type {boolean}
519
+ * @memberof BillingCreditView
520
+ */
521
+ costEditable: boolean;
522
+ /**
523
+ *
524
+ * @type {Date}
525
+ * @memberof BillingCreditView
526
+ */
527
+ createdAt: Date;
528
+ /**
529
+ *
530
+ * @type {BillingCreditExpiryUnit}
531
+ * @memberof BillingCreditView
532
+ */
533
+ defaultExpiryUnit: BillingCreditExpiryUnit;
534
+ /**
535
+ *
536
+ * @type {number}
537
+ * @memberof BillingCreditView
538
+ */
539
+ defaultExpiryUnitCount?: number | null;
540
+ /**
541
+ *
542
+ * @type {BillingCreditRolloverPolicy}
543
+ * @memberof BillingCreditView
544
+ */
545
+ defaultRolloverPolicy: BillingCreditRolloverPolicy;
546
+ /**
547
+ *
548
+ * @type {string}
549
+ * @memberof BillingCreditView
550
+ */
551
+ description: string;
552
+ /**
553
+ *
554
+ * @type {string}
555
+ * @memberof BillingCreditView
556
+ */
557
+ environmentId: string;
558
+ /**
559
+ *
560
+ * @type {string}
561
+ * @memberof BillingCreditView
562
+ */
563
+ icon?: string | null;
564
+ /**
565
+ *
566
+ * @type {string}
567
+ * @memberof BillingCreditView
568
+ */
569
+ id: string;
570
+ /**
571
+ *
572
+ * @type {string}
573
+ * @memberof BillingCreditView
574
+ */
575
+ name: string;
576
+ /**
577
+ *
578
+ * @type {string}
579
+ * @memberof BillingCreditView
580
+ */
581
+ pluralName?: string | null;
582
+ /**
583
+ *
584
+ * @type {BillingPriceView}
585
+ * @memberof BillingCreditView
586
+ */
587
+ price?: BillingPriceView;
588
+ /**
589
+ *
590
+ * @type {number}
591
+ * @memberof BillingCreditView
592
+ */
593
+ pricePerUnit?: number | null;
594
+ /**
595
+ *
596
+ * @type {string}
597
+ * @memberof BillingCreditView
598
+ */
599
+ pricePerUnitDecimal?: string | null;
600
+ /**
601
+ *
602
+ * @type {BillingProductResponseData}
603
+ * @memberof BillingCreditView
604
+ */
605
+ product?: BillingProductResponseData;
606
+ /**
607
+ *
608
+ * @type {string}
609
+ * @memberof BillingCreditView
610
+ */
611
+ singularName?: string | null;
612
+ /**
613
+ *
614
+ * @type {Date}
615
+ * @memberof BillingCreditView
616
+ */
617
+ updatedAt: Date;
618
+ }
619
+
620
+ /**
621
+ *
622
+ * @export
623
+ * @interface BillingCreditView
624
+ */
625
+ declare interface BillingCreditView_2 {
626
+ /**
627
+ *
628
+ * @type {string}
629
+ * @memberof BillingCreditView
630
+ */
631
+ accountId: string;
632
+ /**
633
+ *
634
+ * @type {BillingCreditBurnStrategy}
635
+ * @memberof BillingCreditView
636
+ */
637
+ burnStrategy: BillingCreditBurnStrategy_2;
638
+ /**
639
+ *
640
+ * @type {boolean}
641
+ * @memberof BillingCreditView
642
+ */
643
+ costEditable: boolean;
644
+ /**
645
+ *
646
+ * @type {Date}
647
+ * @memberof BillingCreditView
648
+ */
649
+ createdAt: Date;
650
+ /**
651
+ *
652
+ * @type {BillingCreditExpiryUnit}
653
+ * @memberof BillingCreditView
654
+ */
655
+ defaultExpiryUnit: BillingCreditExpiryUnit_2;
656
+ /**
657
+ *
658
+ * @type {number}
659
+ * @memberof BillingCreditView
660
+ */
661
+ defaultExpiryUnitCount?: number | null;
662
+ /**
663
+ *
664
+ * @type {BillingCreditRolloverPolicy}
665
+ * @memberof BillingCreditView
666
+ */
667
+ defaultRolloverPolicy: BillingCreditRolloverPolicy_2;
668
+ /**
669
+ *
670
+ * @type {string}
671
+ * @memberof BillingCreditView
672
+ */
673
+ description: string;
674
+ /**
675
+ *
676
+ * @type {string}
677
+ * @memberof BillingCreditView
678
+ */
679
+ environmentId: string;
680
+ /**
681
+ *
682
+ * @type {string}
683
+ * @memberof BillingCreditView
684
+ */
685
+ icon?: string | null;
686
+ /**
687
+ *
688
+ * @type {string}
689
+ * @memberof BillingCreditView
690
+ */
691
+ id: string;
692
+ /**
693
+ *
694
+ * @type {string}
695
+ * @memberof BillingCreditView
696
+ */
697
+ name: string;
698
+ /**
699
+ *
700
+ * @type {string}
701
+ * @memberof BillingCreditView
702
+ */
703
+ pluralName?: string | null;
704
+ /**
705
+ *
706
+ * @type {BillingPriceView}
707
+ * @memberof BillingCreditView
708
+ */
709
+ price?: BillingPriceView_2;
710
+ /**
711
+ *
712
+ * @type {number}
713
+ * @memberof BillingCreditView
714
+ */
715
+ pricePerUnit?: number | null;
716
+ /**
717
+ *
718
+ * @type {string}
719
+ * @memberof BillingCreditView
720
+ */
721
+ pricePerUnitDecimal?: string | null;
722
+ /**
723
+ *
724
+ * @type {BillingProductResponseData}
725
+ * @memberof BillingCreditView
726
+ */
727
+ product?: BillingProductResponseData_2;
728
+ /**
729
+ *
730
+ * @type {string}
731
+ * @memberof BillingCreditView
732
+ */
733
+ singularName?: string | null;
734
+ /**
735
+ *
736
+ * @type {Date}
737
+ * @memberof BillingCreditView
738
+ */
739
+ updatedAt: Date;
740
+ }
741
+
504
742
  /**
505
743
  *
506
744
  * @export
@@ -625,6 +863,12 @@ declare interface BillingPlanCreditGrantResponseData {
625
863
  * @memberof BillingPlanCreditGrantResponseData
626
864
  */
627
865
  createdAt: Date;
866
+ /**
867
+ *
868
+ * @type {BillingCreditResponseData}
869
+ * @memberof BillingPlanCreditGrantResponseData
870
+ */
871
+ credit?: BillingCreditResponseData;
628
872
  /**
629
873
  *
630
874
  * @type {number}
@@ -638,21 +882,24 @@ declare interface BillingPlanCreditGrantResponseData {
638
882
  */
639
883
  creditId: string;
640
884
  /**
641
- *
885
+ * Use credit.name from the nested credit object instead
642
886
  * @type {string}
643
887
  * @memberof BillingPlanCreditGrantResponseData
888
+ * @deprecated
644
889
  */
645
890
  creditName: string;
646
891
  /**
647
- *
892
+ * Use plural_name from the nested credit object instead
648
893
  * @type {string}
649
894
  * @memberof BillingPlanCreditGrantResponseData
895
+ * @deprecated
650
896
  */
651
897
  creditPluralName?: string | null;
652
898
  /**
653
- *
899
+ * Use singular_name from the nested credit object instead
654
900
  * @type {string}
655
901
  * @memberof BillingPlanCreditGrantResponseData
902
+ * @deprecated
656
903
  */
657
904
  creditSingularName?: string | null;
658
905
  /**
@@ -709,13 +956,13 @@ declare interface BillingPlanCreditGrantResponseData {
709
956
  * @type {BillingPlanCreditGrantResetCadence}
710
957
  * @memberof BillingPlanCreditGrantResponseData
711
958
  */
712
- resetCadence: BillingPlanCreditGrantResetCadence;
959
+ resetCadence?: BillingPlanCreditGrantResetCadence | null;
713
960
  /**
714
961
  *
715
962
  * @type {BillingPlanCreditGrantResetStart}
716
963
  * @memberof BillingPlanCreditGrantResponseData
717
964
  */
718
- resetStart: BillingPlanCreditGrantResetStart;
965
+ resetStart?: BillingPlanCreditGrantResetStart | null;
719
966
  /**
720
967
  *
721
968
  * @type {BillingPlanCreditGrantResetType}
@@ -3760,6 +4007,12 @@ declare interface ComponentDisplaySettings {
3760
4007
  * @memberof ComponentDisplaySettings
3761
4008
  */
3762
4009
  showFeatureDescription: boolean;
4010
+ /**
4011
+ *
4012
+ * @type {boolean}
4013
+ * @memberof ComponentDisplaySettings
4014
+ */
4015
+ showHardLimit: boolean;
3763
4016
  /**
3764
4017
  *
3765
4018
  * @type {boolean}
@@ -3809,6 +4062,12 @@ declare interface ComponentDisplaySettings_2 {
3809
4062
  * @memberof ComponentDisplaySettings
3810
4063
  */
3811
4064
  showFeatureDescription: boolean;
4065
+ /**
4066
+ *
4067
+ * @type {boolean}
4068
+ * @memberof ComponentDisplaySettings
4069
+ */
4070
+ showHardLimit: boolean;
3812
4071
  /**
3813
4072
  *
3814
4073
  * @type {boolean}
@@ -4564,6 +4823,49 @@ declare interface CreditTransferView {
4564
4823
  relatedGrantId: string;
4565
4824
  }
4566
4825
 
4826
+ /**
4827
+ * Schematic API
4828
+ * Schematic API
4829
+ *
4830
+ * The version of the OpenAPI document: 0.1
4831
+ *
4832
+ *
4833
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4834
+ * https://openapi-generator.tech
4835
+ * Do not edit the class manually.
4836
+ */
4837
+ /**
4838
+ *
4839
+ * @export
4840
+ * @interface CreditUsageAggregation
4841
+ */
4842
+ declare interface CreditUsageAggregation {
4843
+ /**
4844
+ * Credit usage within the current billing period
4845
+ * @type {number}
4846
+ * @memberof CreditUsageAggregation
4847
+ */
4848
+ usageThisBillingPeriod?: number | null;
4849
+ /**
4850
+ * Credit usage within the current calendar month
4851
+ * @type {number}
4852
+ * @memberof CreditUsageAggregation
4853
+ */
4854
+ usageThisCalendarMonth?: number | null;
4855
+ /**
4856
+ * Credit usage within the current calendar week (Monday to Sunday)
4857
+ * @type {number}
4858
+ * @memberof CreditUsageAggregation
4859
+ */
4860
+ usageThisWeek?: number | null;
4861
+ /**
4862
+ * Credit usage for the current day
4863
+ * @type {number}
4864
+ * @memberof CreditUsageAggregation
4865
+ */
4866
+ usageToday?: number | null;
4867
+ }
4868
+
4567
4869
  declare interface CreditWithCompanyContext {
4568
4870
  id: CreditCompanyGrantView["billingCreditId"];
4569
4871
  name: CreditCompanyGrantView["creditName"];
@@ -4951,6 +5253,12 @@ declare interface DesignProps_9 {
4951
5253
 
4952
5254
  export declare const Dialog: ForwardRefExoticComponent<DialogProps & RefAttributes<HTMLDialogElement | null>>;
4953
5255
 
5256
+ export declare const DialogClose: ({ onClose, ...rest }: DialogCloseProps) => JSX.Element;
5257
+
5258
+ declare interface DialogCloseProps extends BoxProps {
5259
+ onClose?: () => void;
5260
+ }
5261
+
4954
5262
  export declare const DialogContent: ForwardRefExoticComponent<DialogContentProps & RefAttributes<HTMLDivElement | null>>;
4955
5263
 
4956
5264
  declare interface DialogContentProps {
@@ -5840,7 +6148,7 @@ declare interface FeatureEntitlement {
5840
6148
  */
5841
6149
  usage?: number | null;
5842
6150
  /**
5843
- *
6151
+ * The type of the entitlement value
5844
6152
  * @type {EntitlementValueType}
5845
6153
  * @memberof FeatureEntitlement
5846
6154
  */
@@ -6134,7 +6442,7 @@ declare interface FeatureUsageResponseData {
6134
6442
  */
6135
6443
  allocation?: number | null;
6136
6444
  /**
6137
- *
6445
+ * The type of allocation that is being used.
6138
6446
  * @type {EntitlementValueType}
6139
6447
  * @memberof FeatureUsageResponseData
6140
6448
  */
@@ -6166,7 +6474,7 @@ declare interface FeatureUsageResponseData {
6166
6474
  */
6167
6475
  creditGrantDetails?: Array<CreditGrantDetail>;
6168
6476
  /**
6169
- *
6477
+ * Reason for the credit grant
6170
6478
  * @type {BillingCreditGrantReason}
6171
6479
  * @memberof FeatureUsageResponseData
6172
6480
  */
@@ -6191,11 +6499,11 @@ declare interface FeatureUsageResponseData {
6191
6499
  */
6192
6500
  creditTypeIcon?: string | null;
6193
6501
  /**
6194
- *
6195
- * @type {FeatureUsageResponseDataCreditUsageAggregation}
6502
+ * Aggregated credit usage by time period (day, week, month, billing period)
6503
+ * @type {CreditUsageAggregation}
6196
6504
  * @memberof FeatureUsageResponseData
6197
6505
  */
6198
- creditUsageAggregation?: FeatureUsageResponseDataCreditUsageAggregation;
6506
+ creditUsageAggregation?: CreditUsageAggregation;
6199
6507
  /**
6200
6508
  *
6201
6509
  * @type {number}
@@ -6330,49 +6638,6 @@ declare interface FeatureUsageResponseData {
6330
6638
  yearlyUsageBasedPrice?: BillingPriceView;
6331
6639
  }
6332
6640
 
6333
- /**
6334
- * Schematic API
6335
- * Schematic API
6336
- *
6337
- * The version of the OpenAPI document: 0.1
6338
- *
6339
- *
6340
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6341
- * https://openapi-generator.tech
6342
- * Do not edit the class manually.
6343
- */
6344
- /**
6345
- *
6346
- * @export
6347
- * @interface FeatureUsageResponseDataCreditUsageAggregation
6348
- */
6349
- declare interface FeatureUsageResponseDataCreditUsageAggregation {
6350
- /**
6351
- * Credit usage within the current billing period
6352
- * @type {number}
6353
- * @memberof FeatureUsageResponseDataCreditUsageAggregation
6354
- */
6355
- usageThisBillingPeriod?: number | null;
6356
- /**
6357
- * Credit usage within the current calendar month
6358
- * @type {number}
6359
- * @memberof FeatureUsageResponseDataCreditUsageAggregation
6360
- */
6361
- usageThisCalendarMonth?: number | null;
6362
- /**
6363
- * Credit usage within the current calendar week (Monday to Sunday)
6364
- * @type {number}
6365
- * @memberof FeatureUsageResponseDataCreditUsageAggregation
6366
- */
6367
- usageThisWeek?: number | null;
6368
- /**
6369
- * Credit usage for the current day
6370
- * @type {number}
6371
- * @memberof FeatureUsageResponseDataCreditUsageAggregation
6372
- */
6373
- usageToday?: number | null;
6374
- }
6375
-
6376
6641
  declare type FetchAPI = WindowOrWorkerGlobalScope["fetch"];
6377
6642
 
6378
6643
  /**
@@ -6605,6 +6870,17 @@ $viewport?: {
6605
6870
 
6606
6871
  export declare type FontStyle = keyof ThemeSettings["typography"];
6607
6872
 
6873
+ declare interface FormatInvoiceOptions {
6874
+ hideUpcoming?: boolean;
6875
+ }
6876
+
6877
+ export declare function formatInvoices(invoices?: InvoiceResponseData[], options?: FormatInvoiceOptions): {
6878
+ amount: string;
6879
+ amountDue: number;
6880
+ date: string;
6881
+ url: string | undefined;
6882
+ }[];
6883
+
6608
6884
  export declare const FussyChild: IStyledComponentBase<"web", FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
6609
6885
  $viewport?: {
6610
6886
  "sm"?: TransientCSSProperties;
@@ -6903,6 +7179,12 @@ declare interface InvoiceResponseData {
6903
7179
  * @memberof InvoiceResponseData
6904
7180
  */
6905
7181
  providerType: BillingProviderType;
7182
+ /**
7183
+ *
7184
+ * @type {InvoiceStatus}
7185
+ * @memberof InvoiceResponseData
7186
+ */
7187
+ status?: InvoiceStatus | null;
6906
7188
  /**
6907
7189
  *
6908
7190
  * @type {string}
@@ -6937,6 +7219,20 @@ export declare type InvoicesProps = DesignProps_3 & {
6937
7219
  data?: InvoiceResponseData[];
6938
7220
  };
6939
7221
 
7222
+ /**
7223
+ *
7224
+ * @export
7225
+ */
7226
+ declare const InvoiceStatus: {
7227
+ readonly Draft: "draft";
7228
+ readonly Open: "open";
7229
+ readonly Paid: "paid";
7230
+ readonly Uncollectible: "uncollectible";
7231
+ readonly Void: "void";
7232
+ };
7233
+
7234
+ declare type InvoiceStatus = (typeof InvoiceStatus)[keyof typeof InvoiceStatus];
7235
+
6940
7236
  export declare const LeadingLineHeightMap: Record<LeadingNameType, number>;
6941
7237
 
6942
7238
  export declare enum LeadingName {
@@ -7264,6 +7560,12 @@ declare interface PlanCreditGrantView {
7264
7560
  * @memberof PlanCreditGrantView
7265
7561
  */
7266
7562
  createdAt: Date;
7563
+ /**
7564
+ *
7565
+ * @type {BillingCreditView}
7566
+ * @memberof PlanCreditGrantView
7567
+ */
7568
+ credit?: BillingCreditView;
7267
7569
  /**
7268
7570
  *
7269
7571
  * @type {number}
@@ -7271,15 +7573,17 @@ declare interface PlanCreditGrantView {
7271
7573
  */
7272
7574
  creditAmount: number;
7273
7575
  /**
7274
- *
7576
+ * Deprecated field, will be removed in the future. Use Credit.Description instead.
7275
7577
  * @type {string}
7276
7578
  * @memberof PlanCreditGrantView
7579
+ * @deprecated
7277
7580
  */
7278
7581
  creditDescription: string;
7279
7582
  /**
7280
- *
7583
+ * Deprecated field, will be removed in the future. Use Credit.Icon instead.
7281
7584
  * @type {string}
7282
7585
  * @memberof PlanCreditGrantView
7586
+ * @deprecated
7283
7587
  */
7284
7588
  creditIcon?: string | null;
7285
7589
  /**
@@ -7289,9 +7593,10 @@ declare interface PlanCreditGrantView {
7289
7593
  */
7290
7594
  creditId: string;
7291
7595
  /**
7292
- *
7596
+ * Deprecated field, will be removed in the future. Use Credit.Name instead.
7293
7597
  * @type {string}
7294
7598
  * @memberof PlanCreditGrantView
7599
+ * @deprecated
7295
7600
  */
7296
7601
  creditName: string;
7297
7602
  /**
@@ -7337,9 +7642,10 @@ declare interface PlanCreditGrantView {
7337
7642
  */
7338
7643
  planVersionId?: string | null;
7339
7644
  /**
7340
- *
7645
+ * Deprecated field, will be removed in the future. Use Credit.PluralName instead.
7341
7646
  * @type {string}
7342
7647
  * @memberof PlanCreditGrantView
7648
+ * @deprecated
7343
7649
  */
7344
7650
  pluralName?: string | null;
7345
7651
  /**
@@ -7347,13 +7653,13 @@ declare interface PlanCreditGrantView {
7347
7653
  * @type {BillingPlanCreditGrantResetCadence}
7348
7654
  * @memberof PlanCreditGrantView
7349
7655
  */
7350
- resetCadence: BillingPlanCreditGrantResetCadence;
7656
+ resetCadence?: BillingPlanCreditGrantResetCadence | null;
7351
7657
  /**
7352
7658
  *
7353
7659
  * @type {BillingPlanCreditGrantResetStart}
7354
7660
  * @memberof PlanCreditGrantView
7355
7661
  */
7356
- resetStart: BillingPlanCreditGrantResetStart;
7662
+ resetStart?: BillingPlanCreditGrantResetStart | null;
7357
7663
  /**
7358
7664
  *
7359
7665
  * @type {BillingPlanCreditGrantResetType}
@@ -7361,9 +7667,10 @@ declare interface PlanCreditGrantView {
7361
7667
  */
7362
7668
  resetType: BillingPlanCreditGrantResetType;
7363
7669
  /**
7364
- *
7670
+ * Deprecated field, will be removed in the future. Use Credit.SingularName instead.
7365
7671
  * @type {string}
7366
7672
  * @memberof PlanCreditGrantView
7673
+ * @deprecated
7367
7674
  */
7368
7675
  singularName?: string | null;
7369
7676
  /**
@@ -7428,6 +7735,12 @@ declare interface PlanCreditGrantView_2 {
7428
7735
  * @memberof PlanCreditGrantView
7429
7736
  */
7430
7737
  createdAt: Date;
7738
+ /**
7739
+ *
7740
+ * @type {BillingCreditView}
7741
+ * @memberof PlanCreditGrantView
7742
+ */
7743
+ credit?: BillingCreditView_2;
7431
7744
  /**
7432
7745
  *
7433
7746
  * @type {number}
@@ -7435,15 +7748,17 @@ declare interface PlanCreditGrantView_2 {
7435
7748
  */
7436
7749
  creditAmount: number;
7437
7750
  /**
7438
- *
7751
+ * Deprecated field, will be removed in the future. Use Credit.Description instead.
7439
7752
  * @type {string}
7440
7753
  * @memberof PlanCreditGrantView
7754
+ * @deprecated
7441
7755
  */
7442
7756
  creditDescription: string;
7443
7757
  /**
7444
- *
7758
+ * Deprecated field, will be removed in the future. Use Credit.Icon instead.
7445
7759
  * @type {string}
7446
7760
  * @memberof PlanCreditGrantView
7761
+ * @deprecated
7447
7762
  */
7448
7763
  creditIcon?: string | null;
7449
7764
  /**
@@ -7453,9 +7768,10 @@ declare interface PlanCreditGrantView_2 {
7453
7768
  */
7454
7769
  creditId: string;
7455
7770
  /**
7456
- *
7771
+ * Deprecated field, will be removed in the future. Use Credit.Name instead.
7457
7772
  * @type {string}
7458
7773
  * @memberof PlanCreditGrantView
7774
+ * @deprecated
7459
7775
  */
7460
7776
  creditName: string;
7461
7777
  /**
@@ -7501,9 +7817,10 @@ declare interface PlanCreditGrantView_2 {
7501
7817
  */
7502
7818
  planVersionId?: string | null;
7503
7819
  /**
7504
- *
7820
+ * Deprecated field, will be removed in the future. Use Credit.PluralName instead.
7505
7821
  * @type {string}
7506
7822
  * @memberof PlanCreditGrantView
7823
+ * @deprecated
7507
7824
  */
7508
7825
  pluralName?: string | null;
7509
7826
  /**
@@ -7511,13 +7828,13 @@ declare interface PlanCreditGrantView_2 {
7511
7828
  * @type {BillingPlanCreditGrantResetCadence}
7512
7829
  * @memberof PlanCreditGrantView
7513
7830
  */
7514
- resetCadence: BillingPlanCreditGrantResetCadence_2;
7831
+ resetCadence?: BillingPlanCreditGrantResetCadence_2 | null;
7515
7832
  /**
7516
7833
  *
7517
7834
  * @type {BillingPlanCreditGrantResetStart}
7518
7835
  * @memberof PlanCreditGrantView
7519
7836
  */
7520
- resetStart: BillingPlanCreditGrantResetStart_2;
7837
+ resetStart?: BillingPlanCreditGrantResetStart_2 | null;
7521
7838
  /**
7522
7839
  *
7523
7840
  * @type {BillingPlanCreditGrantResetType}
@@ -7525,9 +7842,10 @@ declare interface PlanCreditGrantView_2 {
7525
7842
  */
7526
7843
  resetType: BillingPlanCreditGrantResetType_2;
7527
7844
  /**
7528
- *
7845
+ * Deprecated field, will be removed in the future. Use Credit.SingularName instead.
7529
7846
  * @type {string}
7530
7847
  * @memberof PlanCreditGrantView
7848
+ * @deprecated
7531
7849
  */
7532
7850
  singularName?: string | null;
7533
7851
  /**
@@ -8955,11 +9273,13 @@ export declare type PricingTableProps = DesignProps_7;
8955
9273
 
8956
9274
  export declare const ProgressBar: ForwardRefExoticComponent<ProgressBarProps & RefAttributes<HTMLDivElement>>;
8957
9275
 
9276
+ export declare type ProgressBarColor = "gray" | "blue" | "yellow" | "orange" | "red";
9277
+
8958
9278
  export declare interface ProgressBarProps extends React.ComponentPropsWithoutRef<typeof Flex> {
8959
9279
  progress: number;
8960
9280
  value: number;
8961
9281
  total?: number;
8962
- color?: "gray" | "blue" | "yellow" | "orange" | "red";
9282
+ color?: ProgressBarColor;
8963
9283
  bgColor?: string;
8964
9284
  }
8965
9285
 
@@ -9930,14 +10250,13 @@ export declare interface ThemeSettings {
9930
10250
  };
9931
10251
  }
9932
10252
 
9933
- export declare const Tooltip: ({ trigger, content, portal, position, fullWidth, ...rest }: TooltipProps) => JSX.Element;
10253
+ export declare const Tooltip: ({ children, trigger, content, portal, position, ...rest }: TooltipProps) => JSX.Element;
9934
10254
 
9935
10255
  export declare interface TooltipProps extends BoxProps {
9936
- trigger: React.ReactNode;
10256
+ trigger: React.ReactElement;
9937
10257
  content: React.ReactNode;
9938
10258
  portal?: HTMLElement | null;
9939
10259
  position?: Position;
9940
- fullWidth?: boolean;
9941
10260
  }
9942
10261
 
9943
10262
  /**