@flowio/api-constants 2.13.29 → 2.13.31
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.d.ts +3 -0
- package/dist/api.js +3 -0
- package/package.json +2 -2
- package/src/api.ts +3 -0
package/dist/api.d.ts
CHANGED
|
@@ -487,6 +487,8 @@ export declare enum EventType {
|
|
|
487
487
|
ORGANIZATION_DEFAULT_CONFIGURATIONS_DELETED = "organization_default_configurations_deleted",
|
|
488
488
|
ECOMMERCE_PLATFORM_UPSERTED = "ecommerce_platform_upserted",
|
|
489
489
|
ECOMMERCE_PLATFORM_DELETED = "ecommerce_platform_deleted",
|
|
490
|
+
ORGANIZATION_ONBOARDING_STATE_UPSERTED = "organization_onboarding_state_upserted",
|
|
491
|
+
ORGANIZATION_ONBOARDING_STATE_DELETED = "organization_onboarding_state_deleted",
|
|
490
492
|
AUTHORIZATION_DELETED_V_2 = "authorization_deleted_v2",
|
|
491
493
|
AUTHORIZATION_STATUS_CHANGED = "authorization_status_changed",
|
|
492
494
|
CARD_AUTHORIZATION_UPSERTED_V_2 = "card_authorization_upserted_v2",
|
|
@@ -719,6 +721,7 @@ export declare enum LabelRequestMethod {
|
|
|
719
721
|
DIRECT_API_ASYNC = "direct_api_async",
|
|
720
722
|
BRIDGE_API_SYNC = "bridge_api_sync",
|
|
721
723
|
PARTNER_API_SYNC = "partner_api_sync",
|
|
724
|
+
NOTIFICATION_REQUIRING_CROSSDOCK = "notification_requiring_crossdock",
|
|
722
725
|
AUTOGENERATED = "autogenerated"
|
|
723
726
|
}
|
|
724
727
|
export declare enum LabelTriggerMethod {
|
package/dist/api.js
CHANGED
|
@@ -550,6 +550,8 @@ var EventType;
|
|
|
550
550
|
EventType["ORGANIZATION_DEFAULT_CONFIGURATIONS_DELETED"] = "organization_default_configurations_deleted";
|
|
551
551
|
EventType["ECOMMERCE_PLATFORM_UPSERTED"] = "ecommerce_platform_upserted";
|
|
552
552
|
EventType["ECOMMERCE_PLATFORM_DELETED"] = "ecommerce_platform_deleted";
|
|
553
|
+
EventType["ORGANIZATION_ONBOARDING_STATE_UPSERTED"] = "organization_onboarding_state_upserted";
|
|
554
|
+
EventType["ORGANIZATION_ONBOARDING_STATE_DELETED"] = "organization_onboarding_state_deleted";
|
|
553
555
|
EventType["AUTHORIZATION_DELETED_V_2"] = "authorization_deleted_v2";
|
|
554
556
|
EventType["AUTHORIZATION_STATUS_CHANGED"] = "authorization_status_changed";
|
|
555
557
|
EventType["CARD_AUTHORIZATION_UPSERTED_V_2"] = "card_authorization_upserted_v2";
|
|
@@ -815,6 +817,7 @@ var LabelRequestMethod;
|
|
|
815
817
|
LabelRequestMethod["DIRECT_API_ASYNC"] = "direct_api_async";
|
|
816
818
|
LabelRequestMethod["BRIDGE_API_SYNC"] = "bridge_api_sync";
|
|
817
819
|
LabelRequestMethod["PARTNER_API_SYNC"] = "partner_api_sync";
|
|
820
|
+
LabelRequestMethod["NOTIFICATION_REQUIRING_CROSSDOCK"] = "notification_requiring_crossdock";
|
|
818
821
|
LabelRequestMethod["AUTOGENERATED"] = "autogenerated";
|
|
819
822
|
})(LabelRequestMethod = exports.LabelRequestMethod || (exports.LabelRequestMethod = {}));
|
|
820
823
|
var LabelTriggerMethod;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-constants",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.31",
|
|
4
4
|
"description": "Definitions for enumerations found in the Flow API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"postgenerate": "npm run format",
|
|
27
27
|
"prepublish": "npm run clean && npm run build"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "ed619947b1c3685c45671265137cea5b7882e8a6"
|
|
30
30
|
}
|
package/src/api.ts
CHANGED
|
@@ -542,6 +542,8 @@ export enum EventType {
|
|
|
542
542
|
ORGANIZATION_DEFAULT_CONFIGURATIONS_DELETED = 'organization_default_configurations_deleted',
|
|
543
543
|
ECOMMERCE_PLATFORM_UPSERTED = 'ecommerce_platform_upserted',
|
|
544
544
|
ECOMMERCE_PLATFORM_DELETED = 'ecommerce_platform_deleted',
|
|
545
|
+
ORGANIZATION_ONBOARDING_STATE_UPSERTED = 'organization_onboarding_state_upserted',
|
|
546
|
+
ORGANIZATION_ONBOARDING_STATE_DELETED = 'organization_onboarding_state_deleted',
|
|
545
547
|
AUTHORIZATION_DELETED_V_2 = 'authorization_deleted_v2',
|
|
546
548
|
AUTHORIZATION_STATUS_CHANGED = 'authorization_status_changed',
|
|
547
549
|
CARD_AUTHORIZATION_UPSERTED_V_2 = 'card_authorization_upserted_v2',
|
|
@@ -807,6 +809,7 @@ export enum LabelRequestMethod {
|
|
|
807
809
|
DIRECT_API_ASYNC = 'direct_api_async',
|
|
808
810
|
BRIDGE_API_SYNC = 'bridge_api_sync',
|
|
809
811
|
PARTNER_API_SYNC = 'partner_api_sync',
|
|
812
|
+
NOTIFICATION_REQUIRING_CROSSDOCK = 'notification_requiring_crossdock',
|
|
810
813
|
AUTOGENERATED = 'autogenerated',
|
|
811
814
|
}
|
|
812
815
|
|