@agenus-io/webhook-centralizer 1.0.21 → 1.0.22
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.
|
@@ -199,7 +199,7 @@ export declare namespace IGetPlatformSettingsDTO {
|
|
|
199
199
|
export declare namespace IKpiDTO {
|
|
200
200
|
type Params = {
|
|
201
201
|
id: string;
|
|
202
|
-
status:
|
|
202
|
+
status: [];
|
|
203
203
|
event: webhookCentralizerEvent[];
|
|
204
204
|
workSpaceId: string;
|
|
205
205
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export type ICentralizedCurrency = "BRL" | "EUR" | "USD" | "MXN" | "ZAR" | "AUD" | "CAD" | "NZD" | "COP";
|
|
2
2
|
export type ICentralizedSaleType = "RECURRENT" | "UNIQUE";
|
|
3
3
|
export type ICentralizedOrderStatus = "PENDING" | "PAID" | "CANCELED" | "EXPIRED" | "REFUNDED" | "CHARGEBACK" | "SUBSCRIPTION_INITIATED" | "SUBSCRIPTION_RENEWED" | "SUBSCRIPTION_CANCELED";
|
|
4
|
-
export type ICentralizedSaleStatus = "PENDING" | "PAID" | "CANCELED" | "
|
|
4
|
+
export type ICentralizedSaleStatus = "PENDING" | "PAID" | "CANCELED" | "REFUNDED" | "CHARGEBACK" | "FULFILLED" | "UPDATED";
|
|
5
5
|
export type ICentralizeSubscriptionEvent = "PAID" | "PENDING" | "SUBSCRIPTION_INITIATED" | "SUBSCRIPTION_RENEWED" | "SUBSCRIPTION_PENDING" | "SUBSCRIPTION_RENEWAL_CANCELLED" | "SUBSCRIPTION_RENEWAL_RESUMED" | "SUBSCRIPTION_EXPIRED";
|
|
6
6
|
export type ICentralizedPaymentMethod = "PIX" | "CREDIT_CARD" | "BOLETO" | "CASH_ON_DELIVERY" | "CASH_PAYMENT" | "PAY_PAL" | "DIRECT_BANK_TRANSFER" | "DIRECT_DEBIT" | "FREE" | "GOOGLE_PAY" | "HOT_CARD" | "HYBRID" | "MANUAL_TRANSFER" | "PIC_PAY" | "SAMSUNG_PAY" | "FINANCED_BILLET" | "FINANCED_INSTALLMENT" | "WALLET" | "APPLE_PAY" | "OTHER";
|
|
7
7
|
export type ICentralizedCommissionRole = "OWNER" | "AFFILIATE" | "COPRODUCER" | "MARKETPLACE" | "OTHER";
|
|
@@ -32,6 +32,7 @@ export type ICentralizedSale = {
|
|
|
32
32
|
} | null;
|
|
33
33
|
urlUpsell?: string;
|
|
34
34
|
trackingCode?: string;
|
|
35
|
+
trackingUrl?: string;
|
|
35
36
|
tenant?: {
|
|
36
37
|
id: string;
|
|
37
38
|
name: string;
|
package/package.json
CHANGED