@schematichq/schematic-components 2.11.0 → 2.13.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.
@@ -1120,6 +1120,12 @@ declare interface BillingPriceResponseData {
1120
1120
  * @memberof BillingPriceResponseData
1121
1121
  */
1122
1122
  interval: BillingProductPriceInterval;
1123
+ /**
1124
+ *
1125
+ * @type {number}
1126
+ * @memberof BillingPriceResponseData
1127
+ */
1128
+ intervalCount: number;
1123
1129
  /**
1124
1130
  *
1125
1131
  * @type {string}
@@ -1182,6 +1188,12 @@ declare interface BillingPriceResponseData_2 {
1182
1188
  * @memberof BillingPriceResponseData
1183
1189
  */
1184
1190
  interval: BillingProductPriceInterval_2;
1191
+ /**
1192
+ *
1193
+ * @type {number}
1194
+ * @memberof BillingPriceResponseData
1195
+ */
1196
+ intervalCount: number;
1185
1197
  /**
1186
1198
  *
1187
1199
  * @type {string}
@@ -1294,6 +1306,12 @@ declare interface BillingPriceView {
1294
1306
  * @memberof BillingPriceView
1295
1307
  */
1296
1308
  interval: BillingProductPriceInterval;
1309
+ /**
1310
+ *
1311
+ * @type {number}
1312
+ * @memberof BillingPriceView
1313
+ */
1314
+ intervalCount: number;
1297
1315
  /**
1298
1316
  *
1299
1317
  * @type {boolean}
@@ -1440,6 +1458,12 @@ declare interface BillingPriceView_2 {
1440
1458
  * @memberof BillingPriceView
1441
1459
  */
1442
1460
  interval: BillingProductPriceInterval_2;
1461
+ /**
1462
+ *
1463
+ * @type {number}
1464
+ * @memberof BillingPriceView
1465
+ */
1466
+ intervalCount: number;
1443
1467
  /**
1444
1468
  *
1445
1469
  * @type {boolean}
@@ -1802,6 +1826,12 @@ declare interface BillingProductForSubscriptionResponseData {
1802
1826
  * @memberof BillingProductForSubscriptionResponseData
1803
1827
  */
1804
1828
  interval: string;
1829
+ /**
1830
+ *
1831
+ * @type {number}
1832
+ * @memberof BillingProductForSubscriptionResponseData
1833
+ */
1834
+ intervalCount?: number | null;
1805
1835
  /**
1806
1836
  *
1807
1837
  * @type {string}
@@ -1950,6 +1980,12 @@ declare interface BillingProductPriceResponseData {
1950
1980
  * @memberof BillingProductPriceResponseData
1951
1981
  */
1952
1982
  interval: BillingProductPriceInterval;
1983
+ /**
1984
+ *
1985
+ * @type {number}
1986
+ * @memberof BillingProductPriceResponseData
1987
+ */
1988
+ intervalCount: number;
1953
1989
  /**
1954
1990
  *
1955
1991
  * @type {boolean}
@@ -2308,6 +2344,30 @@ declare const BillingProviderType_2: {
2308
2344
 
2309
2345
  declare type BillingProviderType_2 = (typeof BillingProviderType_2)[keyof typeof BillingProviderType_2];
2310
2346
 
2347
+ /**
2348
+ *
2349
+ * @export
2350
+ */
2351
+ declare const BillingStrategy: {
2352
+ readonly SchematicManaged: "schematic_managed";
2353
+ readonly ProviderManaged: "provider_managed";
2354
+ readonly NoBilling: "no_billing";
2355
+ };
2356
+
2357
+ declare type BillingStrategy = (typeof BillingStrategy)[keyof typeof BillingStrategy];
2358
+
2359
+ /**
2360
+ *
2361
+ * @export
2362
+ */
2363
+ declare const BillingStrategy_2: {
2364
+ readonly SchematicManaged: "schematic_managed";
2365
+ readonly ProviderManaged: "provider_managed";
2366
+ readonly NoBilling: "no_billing";
2367
+ };
2368
+
2369
+ declare type BillingStrategy_2 = (typeof BillingStrategy_2)[keyof typeof BillingStrategy_2];
2370
+
2311
2371
  /**
2312
2372
  * Schematic API
2313
2373
  * Schematic API
@@ -2727,6 +2787,19 @@ export declare type ButtonVariant = "filled" | "outline" | "ghost" | "text";
2727
2787
  * @example
2728
2788
  * initializeWithPlan('plan_xyz')
2729
2789
  * // Equivalent to: { planId: 'plan_xyz', skipped: { planStage: true } }
2790
+ *
2791
+ * ## Trial Behavior
2792
+ *
2793
+ * When the pre-selected plan is trialable and the company is eligible for a
2794
+ * trial, checkout starts in trial mode by default. Pass
2795
+ * `startTrialIfAvailable: false` to skip the trial and charge immediately.
2796
+ *
2797
+ * @example
2798
+ * // Opt out of the automatic trial for a trialable plan
2799
+ * initializeWithPlan({
2800
+ * planId: 'plan_xyz',
2801
+ * startTrialIfAvailable: false,
2802
+ * })
2730
2803
  */
2731
2804
  export declare interface BypassConfig {
2732
2805
  /**
@@ -2755,6 +2828,15 @@ export declare interface BypassConfig {
2755
2828
  * Optional - defaults to company's current period or "month".
2756
2829
  */
2757
2830
  period?: "month" | "year";
2831
+ /**
2832
+ * When the pre-selected plan is trialable and the company is eligible for a
2833
+ * trial, automatically start the checkout in trial mode. Default: true.
2834
+ *
2835
+ * Set to false to charge the customer immediately even when a trial is
2836
+ * available. Has no effect when the plan is not trialable or the company
2837
+ * is not eligible for a trial.
2838
+ */
2839
+ startTrialIfAvailable?: boolean;
2758
2840
  }
2759
2841
 
2760
2842
  export declare const Card: ForwardRefExoticComponent<CardProps & RefAttributes<HTMLDivElement | null>>;
@@ -2840,6 +2922,7 @@ declare interface ChangeSubscriptionRequestBody {
2840
2922
  */
2841
2923
  declare const ChargeType: {
2842
2924
  readonly Free: "free";
2925
+ readonly None: "none";
2843
2926
  readonly OneTime: "one_time";
2844
2927
  readonly Recurring: "recurring";
2845
2928
  };
@@ -2852,6 +2935,7 @@ declare type ChargeType = (typeof ChargeType)[keyof typeof ChargeType];
2852
2935
  */
2853
2936
  declare const ChargeType_2: {
2854
2937
  readonly Free: "free";
2938
+ readonly None: "none";
2855
2939
  readonly OneTime: "one_time";
2856
2940
  readonly Recurring: "recurring";
2857
2941
  };
@@ -3126,6 +3210,7 @@ export declare type CheckoutState = {
3126
3210
  addOnIds?: string[];
3127
3211
  hideSkippedStages?: boolean;
3128
3212
  selectedCurrency?: string;
3213
+ startTrialIfAvailable?: boolean;
3129
3214
  };
3130
3215
 
3131
3216
  /**
@@ -3803,6 +3888,12 @@ declare interface CompanyPlanDetailResponseData {
3803
3888
  * @deprecated
3804
3889
  */
3805
3890
  audienceType?: string | null;
3891
+ /**
3892
+ *
3893
+ * @type {Array<PlanPriceCadence>}
3894
+ * @memberof CompanyPlanDetailResponseData
3895
+ */
3896
+ availablePeriods: Array<PlanPriceCadence>;
3806
3897
  /**
3807
3898
  *
3808
3899
  * @type {BillingLinkedResourceResponseData}
@@ -3815,6 +3906,12 @@ declare interface CompanyPlanDetailResponseData {
3815
3906
  * @memberof CompanyPlanDetailResponseData
3816
3907
  */
3817
3908
  billingProduct?: BillingProductDetailResponseData;
3909
+ /**
3910
+ *
3911
+ * @type {BillingStrategy}
3912
+ * @memberof CompanyPlanDetailResponseData
3913
+ */
3914
+ billingStrategy: BillingStrategy;
3818
3915
  /**
3819
3916
  *
3820
3917
  * @type {ChargeType}
@@ -3955,9 +4052,10 @@ declare interface CompanyPlanDetailResponseData {
3955
4052
  */
3956
4053
  isDefault: boolean;
3957
4054
  /**
3958
- *
4055
+ * Deprecated: Use BillingStrategy instead
3959
4056
  * @type {boolean}
3960
4057
  * @memberof CompanyPlanDetailResponseData
4058
+ * @deprecated
3961
4059
  */
3962
4060
  isFree: boolean;
3963
4061
  /**
@@ -3990,6 +4088,12 @@ declare interface CompanyPlanDetailResponseData {
3990
4088
  * @memberof CompanyPlanDetailResponseData
3991
4089
  */
3992
4090
  planType: PlanType;
4091
+ /**
4092
+ *
4093
+ * @type {BillingPriceResponseData}
4094
+ * @memberof CompanyPlanDetailResponseData
4095
+ */
4096
+ quarterlyPrice?: BillingPriceResponseData;
3993
4097
  /**
3994
4098
  *
3995
4099
  * @type {number}
@@ -5488,6 +5592,12 @@ declare interface CustomPlanBillingResponseData {
5488
5592
  * @memberof CustomPlanBillingResponseData
5489
5593
  */
5490
5594
  daysUntilDue: number;
5595
+ /**
5596
+ *
5597
+ * @type {string}
5598
+ * @memberof CustomPlanBillingResponseData
5599
+ */
5600
+ externalInvoiceId?: string | null;
5491
5601
  /**
5492
5602
  *
5493
5603
  * @type {string}
@@ -5916,7 +6026,7 @@ export declare interface DialogProps extends React.DialogHTMLAttributes<HTMLDial
5916
6026
 
5917
6027
  export declare type DialogSize = "sm" | "md" | "lg" | "auto";
5918
6028
 
5919
- declare const Element_2: IStyledComponentBase<"web", FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
6029
+ declare const Element_2: IStyledComponentBase<"web", FastOmit<FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5920
6030
  $viewport?: {
5921
6031
  "sm"?: TransientCSSProperties;
5922
6032
  "md"?: TransientCSSProperties;
@@ -5934,10 +6044,10 @@ $viewport?: {
5934
6044
  "2xl"?: TransientCSSProperties;
5935
6045
  [key: string]: TransientCSSProperties | undefined;
5936
6046
  };
5937
- }, never>> & {
6047
+ }, never>>, "as" | "forwardedAs"> & {
5938
6048
  as?: WebTarget | undefined;
5939
6049
  forwardedAs?: WebTarget | undefined;
5940
- }, never> & Partial<Pick<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
6050
+ }, never> & Partial<Pick<FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5941
6051
  $viewport?: {
5942
6052
  "sm"?: TransientCSSProperties;
5943
6053
  "md"?: TransientCSSProperties;
@@ -5955,7 +6065,7 @@ $viewport?: {
5955
6065
  "2xl"?: TransientCSSProperties;
5956
6066
  [key: string]: TransientCSSProperties | undefined;
5957
6067
  };
5958
- }, never>> & {
6068
+ }, never>>, "as" | "forwardedAs"> & {
5959
6069
  as?: WebTarget | undefined;
5960
6070
  forwardedAs?: WebTarget | undefined;
5961
6071
  }, never>>> & string;
@@ -6063,6 +6173,12 @@ declare interface EntitlementCurrencyPricesResponseData {
6063
6173
  * @memberof EntitlementCurrencyPricesResponseData
6064
6174
  */
6065
6175
  monthlyPrice?: BillingPriceView;
6176
+ /**
6177
+ *
6178
+ * @type {BillingPriceView}
6179
+ * @memberof EntitlementCurrencyPricesResponseData
6180
+ */
6181
+ quarterlyPrice?: BillingPriceView;
6066
6182
  /**
6067
6183
  *
6068
6184
  * @type {BillingPriceView}
@@ -6089,6 +6205,12 @@ declare interface EntitlementCurrencyPricesResponseData_2 {
6089
6205
  * @memberof EntitlementCurrencyPricesResponseData
6090
6206
  */
6091
6207
  monthlyPrice?: BillingPriceView_2;
6208
+ /**
6209
+ *
6210
+ * @type {BillingPriceView}
6211
+ * @memberof EntitlementCurrencyPricesResponseData
6212
+ */
6213
+ quarterlyPrice?: BillingPriceView_2;
6092
6214
  /**
6093
6215
  *
6094
6216
  * @type {BillingPriceView}
@@ -7336,6 +7458,12 @@ declare interface FeatureUsageResponseData {
7336
7458
  * @memberof FeatureUsageResponseData
7337
7459
  */
7338
7460
  priceBehavior?: EntitlementPriceBehavior | null;
7461
+ /**
7462
+ *
7463
+ * @type {BillingPriceView}
7464
+ * @memberof FeatureUsageResponseData
7465
+ */
7466
+ quarterlyUsageBasedPrice?: BillingPriceView;
7339
7467
  /**
7340
7468
  * The soft limit for the feature usage. Available only for overage price behavior
7341
7469
  * @type {number}
@@ -7575,7 +7703,7 @@ declare const FlagType_2: {
7575
7703
 
7576
7704
  declare type FlagType_2 = (typeof FlagType_2)[keyof typeof FlagType_2];
7577
7705
 
7578
- export declare const Flex: IStyledComponentBase<"web", FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
7706
+ export declare const Flex: IStyledComponentBase<"web", FastOmit<FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
7579
7707
  $viewport?: {
7580
7708
  "sm"?: TransientCSSProperties;
7581
7709
  "md"?: TransientCSSProperties;
@@ -7593,10 +7721,10 @@ $viewport?: {
7593
7721
  "2xl"?: TransientCSSProperties;
7594
7722
  [key: string]: TransientCSSProperties | undefined;
7595
7723
  };
7596
- }, never>> & {
7724
+ }, never>>, "as" | "forwardedAs"> & {
7597
7725
  as?: WebTarget | undefined;
7598
7726
  forwardedAs?: WebTarget | undefined;
7599
- }, never> & Partial<Pick<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
7727
+ }, never> & Partial<Pick<FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
7600
7728
  $viewport?: {
7601
7729
  "sm"?: TransientCSSProperties;
7602
7730
  "md"?: TransientCSSProperties;
@@ -7614,7 +7742,7 @@ $viewport?: {
7614
7742
  "2xl"?: TransientCSSProperties;
7615
7743
  [key: string]: TransientCSSProperties | undefined;
7616
7744
  };
7617
- }, never>> & {
7745
+ }, never>>, "as" | "forwardedAs"> & {
7618
7746
  as?: WebTarget | undefined;
7619
7747
  forwardedAs?: WebTarget | undefined;
7620
7748
  }, never>>> & string;
@@ -7632,7 +7760,7 @@ export declare function formatInvoices(invoices?: InvoiceResponseData[], options
7632
7760
  url: string | undefined;
7633
7761
  }[];
7634
7762
 
7635
- export declare const FussyChild: IStyledComponentBase<"web", FastOmit<FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
7763
+ export declare const FussyChild: IStyledComponentBase<"web", FastOmit<FastOmit<FastOmit<FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
7636
7764
  $viewport?: {
7637
7765
  "sm"?: TransientCSSProperties;
7638
7766
  "md"?: TransientCSSProperties;
@@ -7650,10 +7778,10 @@ $viewport?: {
7650
7778
  "2xl"?: TransientCSSProperties;
7651
7779
  [key: string]: TransientCSSProperties | undefined;
7652
7780
  };
7653
- }, never>> & {
7781
+ }, never>>, "as" | "forwardedAs"> & {
7654
7782
  as?: WebTarget | undefined;
7655
7783
  forwardedAs?: WebTarget | undefined;
7656
- }, never> & Partial<Pick<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
7784
+ }, never> & Partial<Pick<FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
7657
7785
  $viewport?: {
7658
7786
  "sm"?: TransientCSSProperties;
7659
7787
  "md"?: TransientCSSProperties;
@@ -7671,13 +7799,13 @@ $viewport?: {
7671
7799
  "2xl"?: TransientCSSProperties;
7672
7800
  [key: string]: TransientCSSProperties | undefined;
7673
7801
  };
7674
- }, never>> & {
7802
+ }, never>>, "as" | "forwardedAs"> & {
7675
7803
  as?: WebTarget | undefined;
7676
7804
  forwardedAs?: WebTarget | undefined;
7677
- }, never>> & {
7805
+ }, never>>, "as" | "forwardedAs"> & {
7678
7806
  as?: WebTarget | undefined;
7679
7807
  forwardedAs?: WebTarget | undefined;
7680
- }, never> & Partial<Pick<FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
7808
+ }, never> & Partial<Pick<FastOmit<FastOmit<FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
7681
7809
  $viewport?: {
7682
7810
  "sm"?: TransientCSSProperties;
7683
7811
  "md"?: TransientCSSProperties;
@@ -7695,10 +7823,10 @@ $viewport?: {
7695
7823
  "2xl"?: TransientCSSProperties;
7696
7824
  [key: string]: TransientCSSProperties | undefined;
7697
7825
  };
7698
- }, never>> & {
7826
+ }, never>>, "as" | "forwardedAs"> & {
7699
7827
  as?: WebTarget | undefined;
7700
7828
  forwardedAs?: WebTarget | undefined;
7701
- }, never> & Partial<Pick<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
7829
+ }, never> & Partial<Pick<FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
7702
7830
  $viewport?: {
7703
7831
  "sm"?: TransientCSSProperties;
7704
7832
  "md"?: TransientCSSProperties;
@@ -7716,10 +7844,10 @@ $viewport?: {
7716
7844
  "2xl"?: TransientCSSProperties;
7717
7845
  [key: string]: TransientCSSProperties | undefined;
7718
7846
  };
7719
- }, never>> & {
7847
+ }, never>>, "as" | "forwardedAs"> & {
7720
7848
  as?: WebTarget | undefined;
7721
7849
  forwardedAs?: WebTarget | undefined;
7722
- }, never>> & {
7850
+ }, never>>, "as" | "forwardedAs"> & {
7723
7851
  as?: WebTarget | undefined;
7724
7852
  forwardedAs?: WebTarget | undefined;
7725
7853
  }, never>>> & string;
@@ -8202,7 +8330,7 @@ declare interface Middleware {
8202
8330
  onError?(context: ErrorContext): Promise<Response | void>;
8203
8331
  }
8204
8332
 
8205
- export declare const Notice: IStyledComponentBase<"web", FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
8333
+ export declare const Notice: IStyledComponentBase<"web", FastOmit<FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
8206
8334
  $viewport?: {
8207
8335
  "sm"?: TransientCSSProperties;
8208
8336
  "md"?: TransientCSSProperties;
@@ -8220,10 +8348,10 @@ $viewport?: {
8220
8348
  "2xl"?: TransientCSSProperties;
8221
8349
  [key: string]: TransientCSSProperties | undefined;
8222
8350
  };
8223
- }, never>> & {
8351
+ }, never>>, "as" | "forwardedAs"> & {
8224
8352
  as?: WebTarget | undefined;
8225
8353
  forwardedAs?: WebTarget | undefined;
8226
- }, never> & Partial<Pick<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
8354
+ }, never> & Partial<Pick<FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
8227
8355
  $viewport?: {
8228
8356
  "sm"?: TransientCSSProperties;
8229
8357
  "md"?: TransientCSSProperties;
@@ -8241,12 +8369,12 @@ $viewport?: {
8241
8369
  "2xl"?: TransientCSSProperties;
8242
8370
  [key: string]: TransientCSSProperties | undefined;
8243
8371
  };
8244
- }, never>> & {
8372
+ }, never>>, "as" | "forwardedAs"> & {
8245
8373
  as?: WebTarget | undefined;
8246
8374
  forwardedAs?: WebTarget | undefined;
8247
8375
  }, never>>> & string;
8248
8376
 
8249
- export declare const Overlay: IStyledComponentBase<"web", FastOmit<FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
8377
+ export declare const Overlay: IStyledComponentBase<"web", FastOmit<FastOmit<FastOmit<FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
8250
8378
  $viewport?: {
8251
8379
  "sm"?: TransientCSSProperties;
8252
8380
  "md"?: TransientCSSProperties;
@@ -8264,10 +8392,10 @@ $viewport?: {
8264
8392
  "2xl"?: TransientCSSProperties;
8265
8393
  [key: string]: TransientCSSProperties | undefined;
8266
8394
  };
8267
- }, never>> & {
8395
+ }, never>>, "as" | "forwardedAs"> & {
8268
8396
  as?: WebTarget | undefined;
8269
8397
  forwardedAs?: WebTarget | undefined;
8270
- }, never> & Partial<Pick<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
8398
+ }, never> & Partial<Pick<FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
8271
8399
  $viewport?: {
8272
8400
  "sm"?: TransientCSSProperties;
8273
8401
  "md"?: TransientCSSProperties;
@@ -8285,13 +8413,13 @@ $viewport?: {
8285
8413
  "2xl"?: TransientCSSProperties;
8286
8414
  [key: string]: TransientCSSProperties | undefined;
8287
8415
  };
8288
- }, never>> & {
8416
+ }, never>>, "as" | "forwardedAs"> & {
8289
8417
  as?: WebTarget | undefined;
8290
8418
  forwardedAs?: WebTarget | undefined;
8291
- }, never>> & {
8419
+ }, never>>, "as" | "forwardedAs"> & {
8292
8420
  as?: WebTarget | undefined;
8293
8421
  forwardedAs?: WebTarget | undefined;
8294
- }, never> & Partial<Pick<FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
8422
+ }, never> & Partial<Pick<FastOmit<FastOmit<FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
8295
8423
  $viewport?: {
8296
8424
  "sm"?: TransientCSSProperties;
8297
8425
  "md"?: TransientCSSProperties;
@@ -8309,10 +8437,10 @@ $viewport?: {
8309
8437
  "2xl"?: TransientCSSProperties;
8310
8438
  [key: string]: TransientCSSProperties | undefined;
8311
8439
  };
8312
- }, never>> & {
8440
+ }, never>>, "as" | "forwardedAs"> & {
8313
8441
  as?: WebTarget | undefined;
8314
8442
  forwardedAs?: WebTarget | undefined;
8315
- }, never> & Partial<Pick<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
8443
+ }, never> & Partial<Pick<FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
8316
8444
  $viewport?: {
8317
8445
  "sm"?: TransientCSSProperties;
8318
8446
  "md"?: TransientCSSProperties;
@@ -8330,10 +8458,10 @@ $viewport?: {
8330
8458
  "2xl"?: TransientCSSProperties;
8331
8459
  [key: string]: TransientCSSProperties | undefined;
8332
8460
  };
8333
- }, never>> & {
8461
+ }, never>>, "as" | "forwardedAs"> & {
8334
8462
  as?: WebTarget | undefined;
8335
8463
  forwardedAs?: WebTarget | undefined;
8336
- }, never>> & {
8464
+ }, never>>, "as" | "forwardedAs"> & {
8337
8465
  as?: WebTarget | undefined;
8338
8466
  forwardedAs?: WebTarget | undefined;
8339
8467
  }, never>>> & string;
@@ -8881,6 +9009,12 @@ declare interface PlanCurrencyPricesResponseData {
8881
9009
  * @memberof PlanCurrencyPricesResponseData
8882
9010
  */
8883
9011
  oneTimePrice?: BillingPriceResponseData;
9012
+ /**
9013
+ *
9014
+ * @type {BillingPriceResponseData}
9015
+ * @memberof PlanCurrencyPricesResponseData
9016
+ */
9017
+ quarterlyPrice?: BillingPriceResponseData;
8884
9018
  /**
8885
9019
  *
8886
9020
  * @type {BillingPriceResponseData}
@@ -8913,6 +9047,12 @@ declare interface PlanCurrencyPricesResponseData_2 {
8913
9047
  * @memberof PlanCurrencyPricesResponseData
8914
9048
  */
8915
9049
  oneTimePrice?: BillingPriceResponseData_2;
9050
+ /**
9051
+ *
9052
+ * @type {BillingPriceResponseData}
9053
+ * @memberof PlanCurrencyPricesResponseData
9054
+ */
9055
+ quarterlyPrice?: BillingPriceResponseData_2;
8916
9056
  /**
8917
9057
  *
8918
9058
  * @type {BillingPriceResponseData}
@@ -8952,6 +9092,12 @@ declare interface PlanDetailResponseData {
8952
9092
  * @memberof PlanDetailResponseData
8953
9093
  */
8954
9094
  billingProduct?: BillingProductDetailResponseData;
9095
+ /**
9096
+ *
9097
+ * @type {BillingStrategy}
9098
+ * @memberof PlanDetailResponseData
9099
+ */
9100
+ billingStrategy: BillingStrategy;
8955
9101
  /**
8956
9102
  *
8957
9103
  * @type {ChargeType}
@@ -9044,9 +9190,10 @@ declare interface PlanDetailResponseData {
9044
9190
  */
9045
9191
  isDefault: boolean;
9046
9192
  /**
9047
- *
9193
+ * Deprecated: Use BillingStrategy instead
9048
9194
  * @type {boolean}
9049
9195
  * @memberof PlanDetailResponseData
9196
+ * @deprecated
9050
9197
  */
9051
9198
  isFree: boolean;
9052
9199
  /**
@@ -9079,6 +9226,12 @@ declare interface PlanDetailResponseData {
9079
9226
  * @memberof PlanDetailResponseData
9080
9227
  */
9081
9228
  planType: PlanType;
9229
+ /**
9230
+ *
9231
+ * @type {BillingPriceResponseData}
9232
+ * @memberof PlanDetailResponseData
9233
+ */
9234
+ quarterlyPrice?: BillingPriceResponseData;
9082
9235
  /**
9083
9236
  *
9084
9237
  * @type {number}
@@ -9171,6 +9324,12 @@ declare interface PlanEntitlementResponseData {
9171
9324
  * @memberof PlanEntitlementResponseData
9172
9325
  */
9173
9326
  meteredMonthlyPrice?: BillingPriceView;
9327
+ /**
9328
+ *
9329
+ * @type {BillingPriceView}
9330
+ * @memberof PlanEntitlementResponseData
9331
+ */
9332
+ meteredQuarterlyPrice?: BillingPriceView;
9174
9333
  /**
9175
9334
  *
9176
9335
  * @type {BillingPriceView}
@@ -9237,6 +9396,12 @@ declare interface PlanEntitlementResponseData {
9237
9396
  * @memberof PlanEntitlementResponseData
9238
9397
  */
9239
9398
  usageBasedProduct?: BillingProductResponseData;
9399
+ /**
9400
+ * The committed unit quantity for this entitlement. For custom plans this is the quantity the company is contractually committed to; for standard plans it is the quantity pre-filled when subscribing. Only applies to pay-in-advance entitlements. Note: this is not yet enforced/auto-provisioned as a true default — it is currently stored for downstream billing use.
9401
+ * @type {number}
9402
+ * @memberof PlanEntitlementResponseData
9403
+ */
9404
+ usageQuantity?: number | null;
9240
9405
  /**
9241
9406
  *
9242
9407
  * @type {boolean}
@@ -9341,6 +9506,12 @@ declare interface PlanEntitlementResponseData_2 {
9341
9506
  * @memberof PlanEntitlementResponseData
9342
9507
  */
9343
9508
  meteredMonthlyPrice?: BillingPriceView_2;
9509
+ /**
9510
+ *
9511
+ * @type {BillingPriceView}
9512
+ * @memberof PlanEntitlementResponseData
9513
+ */
9514
+ meteredQuarterlyPrice?: BillingPriceView_2;
9344
9515
  /**
9345
9516
  *
9346
9517
  * @type {BillingPriceView}
@@ -9407,6 +9578,12 @@ declare interface PlanEntitlementResponseData_2 {
9407
9578
  * @memberof PlanEntitlementResponseData
9408
9579
  */
9409
9580
  usageBasedProduct?: BillingProductResponseData_2;
9581
+ /**
9582
+ * The committed unit quantity for this entitlement. For custom plans this is the quantity the company is contractually committed to; for standard plans it is the quantity pre-filled when subscribing. Only applies to pay-in-advance entitlements. Note: this is not yet enforced/auto-provisioned as a true default — it is currently stored for downstream billing use.
9583
+ * @type {number}
9584
+ * @memberof PlanEntitlementResponseData
9585
+ */
9586
+ usageQuantity?: number | null;
9410
9587
  /**
9411
9588
  *
9412
9589
  * @type {boolean}
@@ -9519,6 +9696,30 @@ portal?: HTMLElement | null;
9519
9696
 
9520
9697
  export declare type PlanManagerProps = DesignProps_6;
9521
9698
 
9699
+ /**
9700
+ *
9701
+ * @export
9702
+ */
9703
+ declare const PlanPriceCadence: {
9704
+ readonly Monthly: "monthly";
9705
+ readonly Quarterly: "quarterly";
9706
+ readonly Yearly: "yearly";
9707
+ };
9708
+
9709
+ declare type PlanPriceCadence = (typeof PlanPriceCadence)[keyof typeof PlanPriceCadence];
9710
+
9711
+ /**
9712
+ *
9713
+ * @export
9714
+ */
9715
+ declare const PlanPriceCadence_2: {
9716
+ readonly Monthly: "monthly";
9717
+ readonly Quarterly: "quarterly";
9718
+ readonly Yearly: "yearly";
9719
+ };
9720
+
9721
+ declare type PlanPriceCadence_2 = (typeof PlanPriceCadence_2)[keyof typeof PlanPriceCadence_2];
9722
+
9522
9723
  declare interface PlanProps {
9523
9724
  portal?: HTMLElement | null;
9524
9725
  isLoading: boolean;
@@ -9885,6 +10086,12 @@ declare interface PlanViewPublicResponseData {
9885
10086
  * @deprecated
9886
10087
  */
9887
10088
  audienceType?: string | null;
10089
+ /**
10090
+ *
10091
+ * @type {Array<PlanPriceCadence>}
10092
+ * @memberof PlanViewPublicResponseData
10093
+ */
10094
+ availablePeriods: Array<PlanPriceCadence_2>;
9888
10095
  /**
9889
10096
  *
9890
10097
  * @type {BillingLinkedResourceResponseData}
@@ -9897,6 +10104,12 @@ declare interface PlanViewPublicResponseData {
9897
10104
  * @memberof PlanViewPublicResponseData
9898
10105
  */
9899
10106
  billingProduct?: BillingProductDetailResponseData_2;
10107
+ /**
10108
+ *
10109
+ * @type {BillingStrategy}
10110
+ * @memberof PlanViewPublicResponseData
10111
+ */
10112
+ billingStrategy: BillingStrategy_2;
9900
10113
  /**
9901
10114
  *
9902
10115
  * @type {ChargeType}
@@ -10019,9 +10232,10 @@ declare interface PlanViewPublicResponseData {
10019
10232
  */
10020
10233
  isDefault: boolean;
10021
10234
  /**
10022
- *
10235
+ * Deprecated: Use BillingStrategy instead
10023
10236
  * @type {boolean}
10024
10237
  * @memberof PlanViewPublicResponseData
10238
+ * @deprecated
10025
10239
  */
10026
10240
  isFree: boolean;
10027
10241
  /**
@@ -10054,6 +10268,12 @@ declare interface PlanViewPublicResponseData {
10054
10268
  * @memberof PlanViewPublicResponseData
10055
10269
  */
10056
10270
  planType: PlanType_2;
10271
+ /**
10272
+ *
10273
+ * @type {BillingPriceResponseData}
10274
+ * @memberof PlanViewPublicResponseData
10275
+ */
10276
+ quarterlyPrice?: BillingPriceResponseData_2;
10057
10277
  /**
10058
10278
  *
10059
10279
  * @type {number}
@@ -11595,7 +11815,7 @@ declare type TransientCSSProperties = {
11595
11815
  [Property in keyof React.CSSProperties as `$${string & Property}`]: React.CSSProperties[Property];
11596
11816
  };
11597
11817
 
11598
- export declare const TransitionBox: IStyledComponentBase<"web", FastOmit<FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
11818
+ export declare const TransitionBox: IStyledComponentBase<"web", FastOmit<FastOmit<FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
11599
11819
  $viewport?: {
11600
11820
  "sm"?: TransientCSSProperties;
11601
11821
  "md"?: TransientCSSProperties;
@@ -11613,10 +11833,10 @@ $viewport?: {
11613
11833
  "2xl"?: TransientCSSProperties;
11614
11834
  [key: string]: TransientCSSProperties | undefined;
11615
11835
  };
11616
- }, never>> & {
11836
+ }, never>>, "as" | "forwardedAs"> & {
11617
11837
  as?: WebTarget | undefined;
11618
11838
  forwardedAs?: WebTarget | undefined;
11619
- }, "$isExpanded"> & TransitionBoxProps, never> & Partial<Pick<FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
11839
+ }, "$isExpanded"> & TransitionBoxProps, never> & Partial<Pick<FastOmit<FastOmit<FastOmit<FastOmit<ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
11620
11840
  $viewport?: {
11621
11841
  "sm"?: TransientCSSProperties;
11622
11842
  "md"?: TransientCSSProperties;
@@ -11634,7 +11854,7 @@ $viewport?: {
11634
11854
  "2xl"?: TransientCSSProperties;
11635
11855
  [key: string]: TransientCSSProperties | undefined;
11636
11856
  };
11637
- }, never>> & {
11857
+ }, never>>, "as" | "forwardedAs"> & {
11638
11858
  as?: WebTarget | undefined;
11639
11859
  forwardedAs?: WebTarget | undefined;
11640
11860
  }, "$isExpanded"> & TransitionBoxProps, never>>> & string;
@@ -11872,6 +12092,18 @@ declare interface UsageBasedEntitlementResponseData {
11872
12092
  * @memberof UsageBasedEntitlementResponseData
11873
12093
  */
11874
12094
  priceBehavior?: EntitlementPriceBehavior | null;
12095
+ /**
12096
+ *
12097
+ * @type {BillingPriceView}
12098
+ * @memberof UsageBasedEntitlementResponseData
12099
+ */
12100
+ quarterlyUsageBasedPrice?: BillingPriceView;
12101
+ /**
12102
+ * The committed unit quantity for this entitlement. For custom plans this is the quantity the company is contractually committed to; for standard plans it is the quantity pre-filled when subscribing. Only applies to pay-in-advance entitlements. Note: this is not yet enforced/auto-provisioned as a true default — it is currently stored for downstream billing use.
12103
+ * @type {number}
12104
+ * @memberof UsageBasedEntitlementResponseData
12105
+ */
12106
+ usageQuantity?: number | null;
11875
12107
  /**
11876
12108
  *
11877
12109
  * @type {boolean}