@deliverart/sdk-js-core 2.14.0 → 2.14.2
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 +9 -2
- package/dist/index.js +9 -2
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -13687,7 +13687,8 @@ var emailTemplateKeys = [
|
|
|
13687
13687
|
"order_preparation_done",
|
|
13688
13688
|
"subscription_expiring",
|
|
13689
13689
|
"subscription_low_credits",
|
|
13690
|
-
"subscription_pending_renewal"
|
|
13690
|
+
"subscription_pending_renewal",
|
|
13691
|
+
"subscription_payment_pending_verification"
|
|
13691
13692
|
];
|
|
13692
13693
|
var emailTemplateKeySchema = external_exports.enum(emailTemplateKeys);
|
|
13693
13694
|
var apiTokenTypes = ["full_access", "point_of_sale"];
|
|
@@ -13788,7 +13789,13 @@ var subscriptionStatuses = [
|
|
|
13788
13789
|
var subscriptionStatusSchema = external_exports.enum(subscriptionStatuses);
|
|
13789
13790
|
var subscriptionTypes = ["infinite", "time_based", "consumption"];
|
|
13790
13791
|
var subscriptionTypeSchema = external_exports.enum(subscriptionTypes);
|
|
13791
|
-
var renewalStatuses = [
|
|
13792
|
+
var renewalStatuses = [
|
|
13793
|
+
"pending",
|
|
13794
|
+
"pending_verification",
|
|
13795
|
+
"completed",
|
|
13796
|
+
"cancelled",
|
|
13797
|
+
"failed"
|
|
13798
|
+
];
|
|
13792
13799
|
var renewalStatusSchema = external_exports.enum(renewalStatuses);
|
|
13793
13800
|
var creditTransactionTypes = [
|
|
13794
13801
|
"consumption",
|
package/dist/index.js
CHANGED
|
@@ -13651,7 +13651,8 @@ var emailTemplateKeys = [
|
|
|
13651
13651
|
"order_preparation_done",
|
|
13652
13652
|
"subscription_expiring",
|
|
13653
13653
|
"subscription_low_credits",
|
|
13654
|
-
"subscription_pending_renewal"
|
|
13654
|
+
"subscription_pending_renewal",
|
|
13655
|
+
"subscription_payment_pending_verification"
|
|
13655
13656
|
];
|
|
13656
13657
|
var emailTemplateKeySchema = external_exports.enum(emailTemplateKeys);
|
|
13657
13658
|
var apiTokenTypes = ["full_access", "point_of_sale"];
|
|
@@ -13752,7 +13753,13 @@ var subscriptionStatuses = [
|
|
|
13752
13753
|
var subscriptionStatusSchema = external_exports.enum(subscriptionStatuses);
|
|
13753
13754
|
var subscriptionTypes = ["infinite", "time_based", "consumption"];
|
|
13754
13755
|
var subscriptionTypeSchema = external_exports.enum(subscriptionTypes);
|
|
13755
|
-
var renewalStatuses = [
|
|
13756
|
+
var renewalStatuses = [
|
|
13757
|
+
"pending",
|
|
13758
|
+
"pending_verification",
|
|
13759
|
+
"completed",
|
|
13760
|
+
"cancelled",
|
|
13761
|
+
"failed"
|
|
13762
|
+
];
|
|
13756
13763
|
var renewalStatusSchema = external_exports.enum(renewalStatuses);
|
|
13757
13764
|
var creditTransactionTypes = [
|
|
13758
13765
|
"consumption",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deliverart/sdk-js-core",
|
|
3
3
|
"description": "Core SDK for DeliverArt, providing essential functionalities and utilities.",
|
|
4
|
-
"version": "2.14.
|
|
4
|
+
"version": "2.14.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/qs": "^6.14.0",
|
|
28
|
-
"@deliverart/sdk-js-global-types": "2.14.
|
|
28
|
+
"@deliverart/sdk-js-global-types": "2.14.2"
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"build": "tsup src/index.ts --dts --format esm,cjs",
|