@paynow-gg/typescript-sdk 1.0.45 → 1.0.46

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.
@@ -2389,6 +2389,7 @@ export interface components {
2389
2389
  automatic_recommendations_enabled: boolean;
2390
2390
  recommendation_overrides_enabled: boolean;
2391
2391
  recommendation_overrides: components["schemas"]["StoreUpsellRecommendationDto"][];
2392
+ checkout_style: components["schemas"]["StoreUpsellCheckoutStyleDto"];
2392
2393
  };
2393
2394
  CreateTrialEligibilityOverrideDto: {
2394
2395
  product_id: components["schemas"]["FlakeId"];
@@ -4334,8 +4335,6 @@ export interface components {
4334
4335
  ProductUpsellRecommendationDto: {
4335
4336
  recommended_product_id: components["schemas"]["FlakeId"];
4336
4337
  type: components["schemas"]["UpsellTypeDto"];
4337
- /** Format: int32 */
4338
- priority: number;
4339
4338
  discount_type: components["schemas"]["UpsellDiscountTypeDto"];
4340
4339
  /** Format: int64 */
4341
4340
  discount_amount: number;
@@ -5017,11 +5016,11 @@ export interface components {
5017
5016
  /** @description Reason provided for cancellation. */
5018
5017
  cancel_reason?: null | string;
5019
5018
  };
5019
+ /** @enum {string} */
5020
+ StoreUpsellCheckoutStyleDto: "unknown" | "inline" | "inline_and_prepayment_dialog" | "dedicated_step";
5020
5021
  StoreUpsellRecommendationDto: {
5021
5022
  recommended_product_id: components["schemas"]["FlakeId"];
5022
5023
  type: components["schemas"]["UpsellTypeDto"];
5023
- /** Format: int32 */
5024
- priority: number;
5025
5024
  discount_type: components["schemas"]["UpsellDiscountTypeDto"];
5026
5025
  /** Format: int64 */
5027
5026
  discount_amount: number;
@@ -5036,6 +5035,7 @@ export interface components {
5036
5035
  automatic_recommendations_enabled: boolean;
5037
5036
  recommendation_overrides_enabled: boolean;
5038
5037
  recommendation_overrides: components["schemas"]["StoreUpsellRecommendationDto"][];
5038
+ checkout_style: components["schemas"]["StoreUpsellCheckoutStyleDto"];
5039
5039
  /** Format: date-time */
5040
5040
  updated_at: string;
5041
5041
  updated_by: components["schemas"]["ActorDto"];
@@ -5373,6 +5373,7 @@ export interface components {
5373
5373
  automatic_recommendations_enabled?: boolean;
5374
5374
  recommendation_overrides_enabled?: boolean;
5375
5375
  recommendation_overrides?: components["schemas"]["StoreUpsellRecommendationDto"][];
5376
+ checkout_style?: components["schemas"]["StoreUpsellCheckoutStyleDto"];
5376
5377
  };
5377
5378
  UpdateTrialEligibilityOverrideDto: {
5378
5379
  product_id?: components["schemas"]["FlakeId"];
@@ -5569,8 +5570,6 @@ export interface components {
5569
5570
  UpsertProductUpsellRecommendationDto: {
5570
5571
  recommended_product_id: components["schemas"]["FlakeId"];
5571
5572
  type: components["schemas"]["UpsellTypeDto"];
5572
- /** Format: int32 */
5573
- priority: number;
5574
5573
  discount_type: components["schemas"]["UpsellDiscountTypeDto"];
5575
5574
  /** Format: int64 */
5576
5575
  discount_amount: number;