@flowio/api-internal-constants 4.18.14 → 4.18.15
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-internal.d.ts +3 -1
- package/dist/api-internal.js +2 -0
- package/package.json +2 -2
- package/src/api-internal.ts +2 -0
package/dist/api-internal.d.ts
CHANGED
|
@@ -1219,7 +1219,9 @@ export declare enum OnboardingAuditThemeKey {
|
|
|
1219
1219
|
LOGISTICS = "logistics",
|
|
1220
1220
|
PAYMENTS = "payments",
|
|
1221
1221
|
SHOPIFY_MARKETS = "shopify_markets",
|
|
1222
|
-
INTEGRATION_PARTNER = "integration_partner"
|
|
1222
|
+
INTEGRATION_PARTNER = "integration_partner",
|
|
1223
|
+
DTCE = "dtce",
|
|
1224
|
+
MISCELLANEOUS = "miscellaneous"
|
|
1223
1225
|
}
|
|
1224
1226
|
export declare enum OrderAction {
|
|
1225
1227
|
CONSUMER_SUBMIT = "consumer_submit",
|
package/dist/api-internal.js
CHANGED
|
@@ -1402,6 +1402,8 @@ var OnboardingAuditThemeKey;
|
|
|
1402
1402
|
OnboardingAuditThemeKey["PAYMENTS"] = "payments";
|
|
1403
1403
|
OnboardingAuditThemeKey["SHOPIFY_MARKETS"] = "shopify_markets";
|
|
1404
1404
|
OnboardingAuditThemeKey["INTEGRATION_PARTNER"] = "integration_partner";
|
|
1405
|
+
OnboardingAuditThemeKey["DTCE"] = "dtce";
|
|
1406
|
+
OnboardingAuditThemeKey["MISCELLANEOUS"] = "miscellaneous";
|
|
1405
1407
|
})(OnboardingAuditThemeKey = exports.OnboardingAuditThemeKey || (exports.OnboardingAuditThemeKey = {}));
|
|
1406
1408
|
var OrderAction;
|
|
1407
1409
|
(function (OrderAction) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-internal-constants",
|
|
3
|
-
"version": "4.18.
|
|
3
|
+
"version": "4.18.15",
|
|
4
4
|
"description": "Definitions for enumerations found in internal Flow API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"generate": "apibuilder update",
|
|
25
25
|
"postgenerate": "npm run format"
|
|
26
26
|
},
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "3b1786ed7a3f6ea82a5b7d21dcb9ef26797762d9"
|
|
28
28
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -1394,6 +1394,8 @@ export enum OnboardingAuditThemeKey {
|
|
|
1394
1394
|
PAYMENTS = 'payments',
|
|
1395
1395
|
SHOPIFY_MARKETS = 'shopify_markets',
|
|
1396
1396
|
INTEGRATION_PARTNER = 'integration_partner',
|
|
1397
|
+
DTCE = 'dtce',
|
|
1398
|
+
MISCELLANEOUS = 'miscellaneous',
|
|
1397
1399
|
}
|
|
1398
1400
|
|
|
1399
1401
|
export enum OrderAction {
|