@flowio/api-internal-constants 4.18.45 → 4.18.46
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 +2 -0
- 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
|
@@ -1318,6 +1318,7 @@ export declare enum OnboardingAuditThemeKey {
|
|
|
1318
1318
|
INTEGRATION_PARTNER = "integration_partner",
|
|
1319
1319
|
DTCE = "dtce",
|
|
1320
1320
|
RESTRICTIONS = "restrictions",
|
|
1321
|
+
ORGANIZATION_STATUS = "organization_status",
|
|
1321
1322
|
MISCELLANEOUS = "miscellaneous"
|
|
1322
1323
|
}
|
|
1323
1324
|
export declare enum OnboardingAutomationProcessState {
|
|
@@ -1340,6 +1341,7 @@ export declare enum OnboardingStateSource {
|
|
|
1340
1341
|
API_INTERNAL = "api_internal",
|
|
1341
1342
|
API_INTERNAL_BLOCK = "api_internal_block",
|
|
1342
1343
|
API_INTERNAL_UNBLOCK = "api_internal_unblock",
|
|
1344
|
+
API_INTERNAL_DELETE_TRANSACTION = "api_internal_delete_transaction",
|
|
1343
1345
|
ONBOARDING_APPLICATION = "onboarding_application",
|
|
1344
1346
|
ORGANIZATION_STATE_CHANGE = "organization_state_change",
|
|
1345
1347
|
RESTRICTION_ORGANIZATION_STATUS = "restriction_organization_status"
|
package/dist/api-internal.js
CHANGED
|
@@ -1508,6 +1508,7 @@ var OnboardingAuditThemeKey;
|
|
|
1508
1508
|
OnboardingAuditThemeKey["INTEGRATION_PARTNER"] = "integration_partner";
|
|
1509
1509
|
OnboardingAuditThemeKey["DTCE"] = "dtce";
|
|
1510
1510
|
OnboardingAuditThemeKey["RESTRICTIONS"] = "restrictions";
|
|
1511
|
+
OnboardingAuditThemeKey["ORGANIZATION_STATUS"] = "organization_status";
|
|
1511
1512
|
OnboardingAuditThemeKey["MISCELLANEOUS"] = "miscellaneous";
|
|
1512
1513
|
})(OnboardingAuditThemeKey = exports.OnboardingAuditThemeKey || (exports.OnboardingAuditThemeKey = {}));
|
|
1513
1514
|
var OnboardingAutomationProcessState;
|
|
@@ -1533,6 +1534,7 @@ var OnboardingStateSource;
|
|
|
1533
1534
|
OnboardingStateSource["API_INTERNAL"] = "api_internal";
|
|
1534
1535
|
OnboardingStateSource["API_INTERNAL_BLOCK"] = "api_internal_block";
|
|
1535
1536
|
OnboardingStateSource["API_INTERNAL_UNBLOCK"] = "api_internal_unblock";
|
|
1537
|
+
OnboardingStateSource["API_INTERNAL_DELETE_TRANSACTION"] = "api_internal_delete_transaction";
|
|
1536
1538
|
OnboardingStateSource["ONBOARDING_APPLICATION"] = "onboarding_application";
|
|
1537
1539
|
OnboardingStateSource["ORGANIZATION_STATE_CHANGE"] = "organization_state_change";
|
|
1538
1540
|
OnboardingStateSource["RESTRICTION_ORGANIZATION_STATUS"] = "restriction_organization_status";
|
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.46",
|
|
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": "304f46c2533d37256ff6dc855066e33408d43adc"
|
|
28
28
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -1499,6 +1499,7 @@ export enum OnboardingAuditThemeKey {
|
|
|
1499
1499
|
INTEGRATION_PARTNER = 'integration_partner',
|
|
1500
1500
|
DTCE = 'dtce',
|
|
1501
1501
|
RESTRICTIONS = 'restrictions',
|
|
1502
|
+
ORGANIZATION_STATUS = 'organization_status',
|
|
1502
1503
|
MISCELLANEOUS = 'miscellaneous',
|
|
1503
1504
|
}
|
|
1504
1505
|
|
|
@@ -1524,6 +1525,7 @@ export enum OnboardingStateSource {
|
|
|
1524
1525
|
API_INTERNAL = 'api_internal',
|
|
1525
1526
|
API_INTERNAL_BLOCK = 'api_internal_block',
|
|
1526
1527
|
API_INTERNAL_UNBLOCK = 'api_internal_unblock',
|
|
1528
|
+
API_INTERNAL_DELETE_TRANSACTION = 'api_internal_delete_transaction',
|
|
1527
1529
|
ONBOARDING_APPLICATION = 'onboarding_application',
|
|
1528
1530
|
ORGANIZATION_STATE_CHANGE = 'organization_state_change',
|
|
1529
1531
|
RESTRICTION_ORGANIZATION_STATUS = 'restriction_organization_status',
|