@flowio/api-constants 2.13.29 → 2.13.30
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 +1 -0
- package/dist/api.js +1 -0
- package/package.json +2 -2
- package/src/api.ts +1 -0
package/dist/api.d.ts
CHANGED
|
@@ -719,6 +719,7 @@ export declare enum LabelRequestMethod {
|
|
|
719
719
|
DIRECT_API_ASYNC = "direct_api_async",
|
|
720
720
|
BRIDGE_API_SYNC = "bridge_api_sync",
|
|
721
721
|
PARTNER_API_SYNC = "partner_api_sync",
|
|
722
|
+
NOTIFICATION_REQUIRING_CROSSDOCK = "notification_requiring_crossdock",
|
|
722
723
|
AUTOGENERATED = "autogenerated"
|
|
723
724
|
}
|
|
724
725
|
export declare enum LabelTriggerMethod {
|
package/dist/api.js
CHANGED
|
@@ -815,6 +815,7 @@ var LabelRequestMethod;
|
|
|
815
815
|
LabelRequestMethod["DIRECT_API_ASYNC"] = "direct_api_async";
|
|
816
816
|
LabelRequestMethod["BRIDGE_API_SYNC"] = "bridge_api_sync";
|
|
817
817
|
LabelRequestMethod["PARTNER_API_SYNC"] = "partner_api_sync";
|
|
818
|
+
LabelRequestMethod["NOTIFICATION_REQUIRING_CROSSDOCK"] = "notification_requiring_crossdock";
|
|
818
819
|
LabelRequestMethod["AUTOGENERATED"] = "autogenerated";
|
|
819
820
|
})(LabelRequestMethod = exports.LabelRequestMethod || (exports.LabelRequestMethod = {}));
|
|
820
821
|
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.30",
|
|
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": "67f9d68551d126269af1c8bec9245dffdcb2eeb2"
|
|
30
30
|
}
|
package/src/api.ts
CHANGED
|
@@ -807,6 +807,7 @@ export enum LabelRequestMethod {
|
|
|
807
807
|
DIRECT_API_ASYNC = 'direct_api_async',
|
|
808
808
|
BRIDGE_API_SYNC = 'bridge_api_sync',
|
|
809
809
|
PARTNER_API_SYNC = 'partner_api_sync',
|
|
810
|
+
NOTIFICATION_REQUIRING_CROSSDOCK = 'notification_requiring_crossdock',
|
|
810
811
|
AUTOGENERATED = 'autogenerated',
|
|
811
812
|
}
|
|
812
813
|
|