@paynow-gg/typescript-sdk 1.0.59 → 1.0.60

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.
@@ -2690,6 +2690,7 @@ export interface components {
2690
2690
  discord_description_template?: null | string;
2691
2691
  discord_title?: null | string;
2692
2692
  discord_color?: null | string;
2693
+ discord_format?: components["schemas"]["WebhookDiscordFormatDto"];
2693
2694
  };
2694
2695
  /** @description Cryptocurrency payment method details */
2695
2696
  CryptoDetailsDto: {
@@ -6388,6 +6389,7 @@ export interface components {
6388
6389
  discord_description_template?: null | string;
6389
6390
  discord_title?: null | string;
6390
6391
  discord_color?: null | string;
6392
+ discord_format?: components["schemas"]["WebhookDiscordFormatDto"];
6391
6393
  };
6392
6394
  /** @enum {string} */
6393
6395
  UpsellDiscountType: "unknown" | "none" | "fixed" | "percentage";
@@ -6602,6 +6604,8 @@ export interface components {
6602
6604
  validation: string;
6603
6605
  };
6604
6606
  /** @enum {string} */
6607
+ WebhookDiscordFormatDto: "Invalid" | "Embed" | "Text";
6608
+ /** @enum {string} */
6605
6609
  WebhookEventType: "OnIgnore" | "OnOrderCompleted" | "OnRefund" | "OnChargeback" | "OnDeliveryItemAdded" | "OnDeliveryItemActivated" | "OnDeliveryItemUsed" | "OnDeliveryItemRevoked" | "OnSubscriptionActivated" | "OnSubscriptionRenewed" | "OnSubscriptionCanceled" | "OnDiscordOrderActionsQueued" | "OnConnectedUserRegistered" | "OnConnectedUserBecamePayable" | "OnConnectedUserPayoutCreated" | "OnConnectedUserPayoutCompleted" | "OnConnectedUserTransactionInserted" | "OnConnectedUserBecameUnpayable" | "OnTrialActivated" | "OnTrialCompleted" | "OnTrialCanceled" | "OnPurchaseFollowUpAttemptEmailSent" | "OnPurchaseFollowUpAttemptSucceeded" | "OnAbandonedCheckoutRecoveryAttemptEmailSent" | "OnAbandonedCheckoutRecoveryAttemptSucceeded" | "OnChargebackClosed";
6606
6610
  WebhookHistoryDto: {
6607
6611
  /** Format: int32 */
@@ -6619,6 +6623,7 @@ export interface components {
6619
6623
  discord_description_template?: null | string;
6620
6624
  discord_title?: null | string;
6621
6625
  discord_color?: null | string;
6626
+ discord_format?: components["schemas"]["WebhookDiscordFormatDto"];
6622
6627
  };
6623
6628
  /** @enum {string} */
6624
6629
  WebhookType: "json_v1" | "discord_v1";