@schematichq/schematic-components 2.7.0 → 2.8.0
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/dist/schematic-components.cjs.js +10090 -9894
- package/dist/schematic-components.d.ts +391 -72
- package/dist/schematic-components.esm.js +9974 -9772
- package/package.json +9 -9
|
@@ -501,6 +501,250 @@ declare const BillingCreditRolloverPolicy_2: {
|
|
|
501
501
|
|
|
502
502
|
declare type BillingCreditRolloverPolicy_2 = (typeof BillingCreditRolloverPolicy_2)[keyof typeof BillingCreditRolloverPolicy_2];
|
|
503
503
|
|
|
504
|
+
/**
|
|
505
|
+
*
|
|
506
|
+
* @export
|
|
507
|
+
* @interface BillingCreditView
|
|
508
|
+
*/
|
|
509
|
+
declare interface BillingCreditView {
|
|
510
|
+
/**
|
|
511
|
+
*
|
|
512
|
+
* @type {string}
|
|
513
|
+
* @memberof BillingCreditView
|
|
514
|
+
*/
|
|
515
|
+
accountId: string;
|
|
516
|
+
/**
|
|
517
|
+
*
|
|
518
|
+
* @type {BillingCreditBurnStrategy}
|
|
519
|
+
* @memberof BillingCreditView
|
|
520
|
+
*/
|
|
521
|
+
burnStrategy: BillingCreditBurnStrategy;
|
|
522
|
+
/**
|
|
523
|
+
*
|
|
524
|
+
* @type {boolean}
|
|
525
|
+
* @memberof BillingCreditView
|
|
526
|
+
*/
|
|
527
|
+
costEditable: boolean;
|
|
528
|
+
/**
|
|
529
|
+
*
|
|
530
|
+
* @type {Date}
|
|
531
|
+
* @memberof BillingCreditView
|
|
532
|
+
*/
|
|
533
|
+
createdAt: Date;
|
|
534
|
+
/**
|
|
535
|
+
*
|
|
536
|
+
* @type {BillingCreditExpiryUnit}
|
|
537
|
+
* @memberof BillingCreditView
|
|
538
|
+
*/
|
|
539
|
+
defaultExpiryUnit: BillingCreditExpiryUnit;
|
|
540
|
+
/**
|
|
541
|
+
*
|
|
542
|
+
* @type {number}
|
|
543
|
+
* @memberof BillingCreditView
|
|
544
|
+
*/
|
|
545
|
+
defaultExpiryUnitCount?: number | null;
|
|
546
|
+
/**
|
|
547
|
+
*
|
|
548
|
+
* @type {BillingCreditRolloverPolicy}
|
|
549
|
+
* @memberof BillingCreditView
|
|
550
|
+
*/
|
|
551
|
+
defaultRolloverPolicy: BillingCreditRolloverPolicy;
|
|
552
|
+
/**
|
|
553
|
+
*
|
|
554
|
+
* @type {string}
|
|
555
|
+
* @memberof BillingCreditView
|
|
556
|
+
*/
|
|
557
|
+
description: string;
|
|
558
|
+
/**
|
|
559
|
+
*
|
|
560
|
+
* @type {string}
|
|
561
|
+
* @memberof BillingCreditView
|
|
562
|
+
*/
|
|
563
|
+
environmentId: string;
|
|
564
|
+
/**
|
|
565
|
+
*
|
|
566
|
+
* @type {string}
|
|
567
|
+
* @memberof BillingCreditView
|
|
568
|
+
*/
|
|
569
|
+
icon?: string | null;
|
|
570
|
+
/**
|
|
571
|
+
*
|
|
572
|
+
* @type {string}
|
|
573
|
+
* @memberof BillingCreditView
|
|
574
|
+
*/
|
|
575
|
+
id: string;
|
|
576
|
+
/**
|
|
577
|
+
*
|
|
578
|
+
* @type {string}
|
|
579
|
+
* @memberof BillingCreditView
|
|
580
|
+
*/
|
|
581
|
+
name: string;
|
|
582
|
+
/**
|
|
583
|
+
*
|
|
584
|
+
* @type {string}
|
|
585
|
+
* @memberof BillingCreditView
|
|
586
|
+
*/
|
|
587
|
+
pluralName?: string | null;
|
|
588
|
+
/**
|
|
589
|
+
*
|
|
590
|
+
* @type {BillingPriceView}
|
|
591
|
+
* @memberof BillingCreditView
|
|
592
|
+
*/
|
|
593
|
+
price?: BillingPriceView;
|
|
594
|
+
/**
|
|
595
|
+
*
|
|
596
|
+
* @type {number}
|
|
597
|
+
* @memberof BillingCreditView
|
|
598
|
+
*/
|
|
599
|
+
pricePerUnit?: number | null;
|
|
600
|
+
/**
|
|
601
|
+
*
|
|
602
|
+
* @type {string}
|
|
603
|
+
* @memberof BillingCreditView
|
|
604
|
+
*/
|
|
605
|
+
pricePerUnitDecimal?: string | null;
|
|
606
|
+
/**
|
|
607
|
+
*
|
|
608
|
+
* @type {BillingProductResponseData}
|
|
609
|
+
* @memberof BillingCreditView
|
|
610
|
+
*/
|
|
611
|
+
product?: BillingProductResponseData;
|
|
612
|
+
/**
|
|
613
|
+
*
|
|
614
|
+
* @type {string}
|
|
615
|
+
* @memberof BillingCreditView
|
|
616
|
+
*/
|
|
617
|
+
singularName?: string | null;
|
|
618
|
+
/**
|
|
619
|
+
*
|
|
620
|
+
* @type {Date}
|
|
621
|
+
* @memberof BillingCreditView
|
|
622
|
+
*/
|
|
623
|
+
updatedAt: Date;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
/**
|
|
627
|
+
*
|
|
628
|
+
* @export
|
|
629
|
+
* @interface BillingCreditView
|
|
630
|
+
*/
|
|
631
|
+
declare interface BillingCreditView_2 {
|
|
632
|
+
/**
|
|
633
|
+
*
|
|
634
|
+
* @type {string}
|
|
635
|
+
* @memberof BillingCreditView
|
|
636
|
+
*/
|
|
637
|
+
accountId: string;
|
|
638
|
+
/**
|
|
639
|
+
*
|
|
640
|
+
* @type {BillingCreditBurnStrategy}
|
|
641
|
+
* @memberof BillingCreditView
|
|
642
|
+
*/
|
|
643
|
+
burnStrategy: BillingCreditBurnStrategy_2;
|
|
644
|
+
/**
|
|
645
|
+
*
|
|
646
|
+
* @type {boolean}
|
|
647
|
+
* @memberof BillingCreditView
|
|
648
|
+
*/
|
|
649
|
+
costEditable: boolean;
|
|
650
|
+
/**
|
|
651
|
+
*
|
|
652
|
+
* @type {Date}
|
|
653
|
+
* @memberof BillingCreditView
|
|
654
|
+
*/
|
|
655
|
+
createdAt: Date;
|
|
656
|
+
/**
|
|
657
|
+
*
|
|
658
|
+
* @type {BillingCreditExpiryUnit}
|
|
659
|
+
* @memberof BillingCreditView
|
|
660
|
+
*/
|
|
661
|
+
defaultExpiryUnit: BillingCreditExpiryUnit_2;
|
|
662
|
+
/**
|
|
663
|
+
*
|
|
664
|
+
* @type {number}
|
|
665
|
+
* @memberof BillingCreditView
|
|
666
|
+
*/
|
|
667
|
+
defaultExpiryUnitCount?: number | null;
|
|
668
|
+
/**
|
|
669
|
+
*
|
|
670
|
+
* @type {BillingCreditRolloverPolicy}
|
|
671
|
+
* @memberof BillingCreditView
|
|
672
|
+
*/
|
|
673
|
+
defaultRolloverPolicy: BillingCreditRolloverPolicy_2;
|
|
674
|
+
/**
|
|
675
|
+
*
|
|
676
|
+
* @type {string}
|
|
677
|
+
* @memberof BillingCreditView
|
|
678
|
+
*/
|
|
679
|
+
description: string;
|
|
680
|
+
/**
|
|
681
|
+
*
|
|
682
|
+
* @type {string}
|
|
683
|
+
* @memberof BillingCreditView
|
|
684
|
+
*/
|
|
685
|
+
environmentId: string;
|
|
686
|
+
/**
|
|
687
|
+
*
|
|
688
|
+
* @type {string}
|
|
689
|
+
* @memberof BillingCreditView
|
|
690
|
+
*/
|
|
691
|
+
icon?: string | null;
|
|
692
|
+
/**
|
|
693
|
+
*
|
|
694
|
+
* @type {string}
|
|
695
|
+
* @memberof BillingCreditView
|
|
696
|
+
*/
|
|
697
|
+
id: string;
|
|
698
|
+
/**
|
|
699
|
+
*
|
|
700
|
+
* @type {string}
|
|
701
|
+
* @memberof BillingCreditView
|
|
702
|
+
*/
|
|
703
|
+
name: string;
|
|
704
|
+
/**
|
|
705
|
+
*
|
|
706
|
+
* @type {string}
|
|
707
|
+
* @memberof BillingCreditView
|
|
708
|
+
*/
|
|
709
|
+
pluralName?: string | null;
|
|
710
|
+
/**
|
|
711
|
+
*
|
|
712
|
+
* @type {BillingPriceView}
|
|
713
|
+
* @memberof BillingCreditView
|
|
714
|
+
*/
|
|
715
|
+
price?: BillingPriceView_2;
|
|
716
|
+
/**
|
|
717
|
+
*
|
|
718
|
+
* @type {number}
|
|
719
|
+
* @memberof BillingCreditView
|
|
720
|
+
*/
|
|
721
|
+
pricePerUnit?: number | null;
|
|
722
|
+
/**
|
|
723
|
+
*
|
|
724
|
+
* @type {string}
|
|
725
|
+
* @memberof BillingCreditView
|
|
726
|
+
*/
|
|
727
|
+
pricePerUnitDecimal?: string | null;
|
|
728
|
+
/**
|
|
729
|
+
*
|
|
730
|
+
* @type {BillingProductResponseData}
|
|
731
|
+
* @memberof BillingCreditView
|
|
732
|
+
*/
|
|
733
|
+
product?: BillingProductResponseData_2;
|
|
734
|
+
/**
|
|
735
|
+
*
|
|
736
|
+
* @type {string}
|
|
737
|
+
* @memberof BillingCreditView
|
|
738
|
+
*/
|
|
739
|
+
singularName?: string | null;
|
|
740
|
+
/**
|
|
741
|
+
*
|
|
742
|
+
* @type {Date}
|
|
743
|
+
* @memberof BillingCreditView
|
|
744
|
+
*/
|
|
745
|
+
updatedAt: Date;
|
|
746
|
+
}
|
|
747
|
+
|
|
504
748
|
/**
|
|
505
749
|
*
|
|
506
750
|
* @export
|
|
@@ -625,6 +869,12 @@ declare interface BillingPlanCreditGrantResponseData {
|
|
|
625
869
|
* @memberof BillingPlanCreditGrantResponseData
|
|
626
870
|
*/
|
|
627
871
|
createdAt: Date;
|
|
872
|
+
/**
|
|
873
|
+
*
|
|
874
|
+
* @type {BillingCreditResponseData}
|
|
875
|
+
* @memberof BillingPlanCreditGrantResponseData
|
|
876
|
+
*/
|
|
877
|
+
credit?: BillingCreditResponseData;
|
|
628
878
|
/**
|
|
629
879
|
*
|
|
630
880
|
* @type {number}
|
|
@@ -638,21 +888,24 @@ declare interface BillingPlanCreditGrantResponseData {
|
|
|
638
888
|
*/
|
|
639
889
|
creditId: string;
|
|
640
890
|
/**
|
|
641
|
-
*
|
|
891
|
+
* Use credit.name from the nested credit object instead
|
|
642
892
|
* @type {string}
|
|
643
893
|
* @memberof BillingPlanCreditGrantResponseData
|
|
894
|
+
* @deprecated
|
|
644
895
|
*/
|
|
645
896
|
creditName: string;
|
|
646
897
|
/**
|
|
647
|
-
*
|
|
898
|
+
* Use plural_name from the nested credit object instead
|
|
648
899
|
* @type {string}
|
|
649
900
|
* @memberof BillingPlanCreditGrantResponseData
|
|
901
|
+
* @deprecated
|
|
650
902
|
*/
|
|
651
903
|
creditPluralName?: string | null;
|
|
652
904
|
/**
|
|
653
|
-
*
|
|
905
|
+
* Use singular_name from the nested credit object instead
|
|
654
906
|
* @type {string}
|
|
655
907
|
* @memberof BillingPlanCreditGrantResponseData
|
|
908
|
+
* @deprecated
|
|
656
909
|
*/
|
|
657
910
|
creditSingularName?: string | null;
|
|
658
911
|
/**
|
|
@@ -709,13 +962,13 @@ declare interface BillingPlanCreditGrantResponseData {
|
|
|
709
962
|
* @type {BillingPlanCreditGrantResetCadence}
|
|
710
963
|
* @memberof BillingPlanCreditGrantResponseData
|
|
711
964
|
*/
|
|
712
|
-
resetCadence
|
|
965
|
+
resetCadence?: BillingPlanCreditGrantResetCadence | null;
|
|
713
966
|
/**
|
|
714
967
|
*
|
|
715
968
|
* @type {BillingPlanCreditGrantResetStart}
|
|
716
969
|
* @memberof BillingPlanCreditGrantResponseData
|
|
717
970
|
*/
|
|
718
|
-
resetStart
|
|
971
|
+
resetStart?: BillingPlanCreditGrantResetStart | null;
|
|
719
972
|
/**
|
|
720
973
|
*
|
|
721
974
|
* @type {BillingPlanCreditGrantResetType}
|
|
@@ -3760,6 +4013,12 @@ declare interface ComponentDisplaySettings {
|
|
|
3760
4013
|
* @memberof ComponentDisplaySettings
|
|
3761
4014
|
*/
|
|
3762
4015
|
showFeatureDescription: boolean;
|
|
4016
|
+
/**
|
|
4017
|
+
*
|
|
4018
|
+
* @type {boolean}
|
|
4019
|
+
* @memberof ComponentDisplaySettings
|
|
4020
|
+
*/
|
|
4021
|
+
showHardLimit: boolean;
|
|
3763
4022
|
/**
|
|
3764
4023
|
*
|
|
3765
4024
|
* @type {boolean}
|
|
@@ -3809,6 +4068,12 @@ declare interface ComponentDisplaySettings_2 {
|
|
|
3809
4068
|
* @memberof ComponentDisplaySettings
|
|
3810
4069
|
*/
|
|
3811
4070
|
showFeatureDescription: boolean;
|
|
4071
|
+
/**
|
|
4072
|
+
*
|
|
4073
|
+
* @type {boolean}
|
|
4074
|
+
* @memberof ComponentDisplaySettings
|
|
4075
|
+
*/
|
|
4076
|
+
showHardLimit: boolean;
|
|
3812
4077
|
/**
|
|
3813
4078
|
*
|
|
3814
4079
|
* @type {boolean}
|
|
@@ -4564,6 +4829,49 @@ declare interface CreditTransferView {
|
|
|
4564
4829
|
relatedGrantId: string;
|
|
4565
4830
|
}
|
|
4566
4831
|
|
|
4832
|
+
/**
|
|
4833
|
+
* Schematic API
|
|
4834
|
+
* Schematic API
|
|
4835
|
+
*
|
|
4836
|
+
* The version of the OpenAPI document: 0.1
|
|
4837
|
+
*
|
|
4838
|
+
*
|
|
4839
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4840
|
+
* https://openapi-generator.tech
|
|
4841
|
+
* Do not edit the class manually.
|
|
4842
|
+
*/
|
|
4843
|
+
/**
|
|
4844
|
+
*
|
|
4845
|
+
* @export
|
|
4846
|
+
* @interface CreditUsageAggregation
|
|
4847
|
+
*/
|
|
4848
|
+
declare interface CreditUsageAggregation {
|
|
4849
|
+
/**
|
|
4850
|
+
* Credit usage within the current billing period
|
|
4851
|
+
* @type {number}
|
|
4852
|
+
* @memberof CreditUsageAggregation
|
|
4853
|
+
*/
|
|
4854
|
+
usageThisBillingPeriod?: number | null;
|
|
4855
|
+
/**
|
|
4856
|
+
* Credit usage within the current calendar month
|
|
4857
|
+
* @type {number}
|
|
4858
|
+
* @memberof CreditUsageAggregation
|
|
4859
|
+
*/
|
|
4860
|
+
usageThisCalendarMonth?: number | null;
|
|
4861
|
+
/**
|
|
4862
|
+
* Credit usage within the current calendar week (Monday to Sunday)
|
|
4863
|
+
* @type {number}
|
|
4864
|
+
* @memberof CreditUsageAggregation
|
|
4865
|
+
*/
|
|
4866
|
+
usageThisWeek?: number | null;
|
|
4867
|
+
/**
|
|
4868
|
+
* Credit usage for the current day
|
|
4869
|
+
* @type {number}
|
|
4870
|
+
* @memberof CreditUsageAggregation
|
|
4871
|
+
*/
|
|
4872
|
+
usageToday?: number | null;
|
|
4873
|
+
}
|
|
4874
|
+
|
|
4567
4875
|
declare interface CreditWithCompanyContext {
|
|
4568
4876
|
id: CreditCompanyGrantView["billingCreditId"];
|
|
4569
4877
|
name: CreditCompanyGrantView["creditName"];
|
|
@@ -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 {
|
|
6502
|
+
* Aggregated credit usage by time period (day, week, month, billing period)
|
|
6503
|
+
* @type {CreditUsageAggregation}
|
|
6196
6504
|
* @memberof FeatureUsageResponseData
|
|
6197
6505
|
*/
|
|
6198
|
-
creditUsageAggregation?:
|
|
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
|
|
7656
|
+
resetCadence?: BillingPlanCreditGrantResetCadence | null;
|
|
7351
7657
|
/**
|
|
7352
7658
|
*
|
|
7353
7659
|
* @type {BillingPlanCreditGrantResetStart}
|
|
7354
7660
|
* @memberof PlanCreditGrantView
|
|
7355
7661
|
*/
|
|
7356
|
-
resetStart
|
|
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
|
|
7831
|
+
resetCadence?: BillingPlanCreditGrantResetCadence_2 | null;
|
|
7515
7832
|
/**
|
|
7516
7833
|
*
|
|
7517
7834
|
* @type {BillingPlanCreditGrantResetStart}
|
|
7518
7835
|
* @memberof PlanCreditGrantView
|
|
7519
7836
|
*/
|
|
7520
|
-
resetStart
|
|
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?:
|
|
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,
|
|
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.
|
|
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
|
/**
|