@dodopayments/express 0.2.3 → 0.2.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/index.cjs +22 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +22 -1
- package/dist/index.js.map +1 -1
- package/package.json +7 -3
package/dist/index.cjs
CHANGED
|
@@ -7165,6 +7165,13 @@ var checkoutSessionCustomizationSchema = objectType({
|
|
|
7165
7165
|
}).optional();
|
|
7166
7166
|
var checkoutSessionFeatureFlagsSchema = objectType({
|
|
7167
7167
|
allow_currency_selection: booleanType().optional(),
|
|
7168
|
+
allow_customer_editing_city: booleanType().optional(),
|
|
7169
|
+
allow_customer_editing_country: booleanType().optional(),
|
|
7170
|
+
allow_customer_editing_email: booleanType().optional(),
|
|
7171
|
+
allow_customer_editing_name: booleanType().optional(),
|
|
7172
|
+
allow_customer_editing_state: booleanType().optional(),
|
|
7173
|
+
allow_customer_editing_street: booleanType().optional(),
|
|
7174
|
+
allow_customer_editing_zipcode: booleanType().optional(),
|
|
7168
7175
|
allow_discount_code: booleanType().optional(),
|
|
7169
7176
|
allow_phone_number_collection: booleanType().optional(),
|
|
7170
7177
|
allow_tax_id: booleanType().optional(),
|
|
@@ -7265,7 +7272,11 @@ var buildCheckoutUrl = async ({
|
|
|
7265
7272
|
if (!sessionPayload) {
|
|
7266
7273
|
throw new Error("sessionPayload is required when type is 'session'");
|
|
7267
7274
|
}
|
|
7268
|
-
const
|
|
7275
|
+
const finalPayload = {
|
|
7276
|
+
...sessionPayload,
|
|
7277
|
+
return_url: sessionPayload.return_url ?? returnUrl
|
|
7278
|
+
};
|
|
7279
|
+
const session = await createCheckoutSession(finalPayload, {
|
|
7269
7280
|
bearerToken,
|
|
7270
7281
|
environment
|
|
7271
7282
|
});
|
|
@@ -7917,6 +7928,12 @@ var SubscriptionExpiredPayloadSchema = objectType({
|
|
|
7917
7928
|
timestamp: stringType().transform((d) => new Date(d)),
|
|
7918
7929
|
data: SubscriptionSchema
|
|
7919
7930
|
});
|
|
7931
|
+
var SubscriptionUpdatedPayloadSchema = objectType({
|
|
7932
|
+
business_id: stringType(),
|
|
7933
|
+
type: literalType("subscription.updated"),
|
|
7934
|
+
timestamp: stringType().transform((d) => new Date(d)),
|
|
7935
|
+
data: SubscriptionSchema
|
|
7936
|
+
});
|
|
7920
7937
|
var LicenseKeyCreatedPayloadSchema = objectType({
|
|
7921
7938
|
business_id: stringType(),
|
|
7922
7939
|
type: literalType("license_key.created"),
|
|
@@ -7945,6 +7962,7 @@ var WebhookPayloadSchema = discriminatedUnionType("type", [
|
|
|
7945
7962
|
SubscriptionCancelledPayloadSchema,
|
|
7946
7963
|
SubscriptionFailedPayloadSchema,
|
|
7947
7964
|
SubscriptionExpiredPayloadSchema,
|
|
7965
|
+
SubscriptionUpdatedPayloadSchema,
|
|
7948
7966
|
LicenseKeyCreatedPayloadSchema
|
|
7949
7967
|
]);
|
|
7950
7968
|
|
|
@@ -8019,6 +8037,9 @@ async function handleWebhookPayload(payload, config, context) {
|
|
|
8019
8037
|
if (payload.type === "subscription.expired") {
|
|
8020
8038
|
await callHandler(config.onSubscriptionExpired, payload);
|
|
8021
8039
|
}
|
|
8040
|
+
if (payload.type === "subscription.updated") {
|
|
8041
|
+
await callHandler(config.onSubscriptionUpdated, payload);
|
|
8042
|
+
}
|
|
8022
8043
|
if (payload.type === "license_key.created") {
|
|
8023
8044
|
await callHandler(config.onLicenseKeyCreated, payload);
|
|
8024
8045
|
}
|