@plyaz/types 1.19.2 → 1.19.4
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/api/endpoints/index.d.ts +1 -0
- package/dist/api/endpoints/payments/index.d.ts +1 -0
- package/dist/api/endpoints/payments/types.d.ts +22 -0
- package/dist/api/endpoints/types.d.ts +2 -1
- package/dist/core/featureFlag/types.d.ts +21 -1
- package/dist/examples/schemas.d.ts +1 -1
- package/dist/index.cjs +10 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/dist/payments/events/enums.d.ts +10 -0
- package/dist/payments/index.cjs +10 -0
- package/dist/payments/index.cjs.map +1 -1
- package/dist/payments/index.js +10 -0
- package/dist/payments/index.js.map +1 -1
- package/package.json +1 -2
package/dist/index.js
CHANGED
|
@@ -6483,6 +6483,10 @@ var PAYMENT_EVENT_TYPE = /* @__PURE__ */ ((PAYMENT_EVENT_TYPE2) => {
|
|
|
6483
6483
|
PAYMENT_EVENT_TYPE2["RefundCompleted"] = "refund.completed";
|
|
6484
6484
|
PAYMENT_EVENT_TYPE2["RefundFailed"] = "refund.failed";
|
|
6485
6485
|
PAYMENT_EVENT_TYPE2["RefundCancelled"] = "refund.cancelled";
|
|
6486
|
+
PAYMENT_EVENT_TYPE2["WithdrawalRequested"] = "withdrawal.requested";
|
|
6487
|
+
PAYMENT_EVENT_TYPE2["WithdrawalProcessed"] = "withdrawal.processed";
|
|
6488
|
+
PAYMENT_EVENT_TYPE2["WithdrawalFailed"] = "withdrawal.failed";
|
|
6489
|
+
PAYMENT_EVENT_TYPE2["WithdrawalCancelled"] = "withdrawal.cancelled";
|
|
6486
6490
|
PAYMENT_EVENT_TYPE2["ProviderWebhookReceived"] = "provider.webhook.received";
|
|
6487
6491
|
PAYMENT_EVENT_TYPE2["ProviderWebhookProcessed"] = "provider.webhook.processed";
|
|
6488
6492
|
PAYMENT_EVENT_TYPE2["ProviderWebhookFailed"] = "provider.webhook.failed";
|
|
@@ -6524,6 +6528,12 @@ var PAYMENT_EVENT_TYPE = /* @__PURE__ */ ((PAYMENT_EVENT_TYPE2) => {
|
|
|
6524
6528
|
PAYMENT_EVENT_TYPE2["SubscriptionFailed"] = "subscription.failed";
|
|
6525
6529
|
PAYMENT_EVENT_TYPE2["SubscriptionTrialStarted"] = "subscription.trial_started";
|
|
6526
6530
|
PAYMENT_EVENT_TYPE2["SubscriptionTrialEnded"] = "subscription.trial_ended";
|
|
6531
|
+
PAYMENT_EVENT_TYPE2["ProductCreated"] = "product.created";
|
|
6532
|
+
PAYMENT_EVENT_TYPE2["ProductUpdated"] = "product.updated";
|
|
6533
|
+
PAYMENT_EVENT_TYPE2["ProductDeleted"] = "product.deleted";
|
|
6534
|
+
PAYMENT_EVENT_TYPE2["PriceCreated"] = "price.created";
|
|
6535
|
+
PAYMENT_EVENT_TYPE2["PriceUpdated"] = "price.updated";
|
|
6536
|
+
PAYMENT_EVENT_TYPE2["PriceDeleted"] = "price.deleted";
|
|
6527
6537
|
PAYMENT_EVENT_TYPE2["PaymentLimitsUpdated"] = "payment_limits.updated";
|
|
6528
6538
|
PAYMENT_EVENT_TYPE2["PaymentLimitsExceeded"] = "payment_limits.exceeded";
|
|
6529
6539
|
PAYMENT_EVENT_TYPE2["ProviderConfigUpdated"] = "provider.config_updated";
|