@flowio/api-constants 2.13.47 → 2.13.48
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
|
@@ -741,6 +741,7 @@ export declare enum LabelRequestMethod {
|
|
|
741
741
|
BRIDGE_API_SYNC = "bridge_api_sync",
|
|
742
742
|
PARTNER_API_SYNC = "partner_api_sync",
|
|
743
743
|
NOTIFICATION_REQUIRING_CROSSDOCK = "notification_requiring_crossdock",
|
|
744
|
+
FLOW_SIMULATION_SYNC = "flow_simulation_sync",
|
|
744
745
|
AUTOGENERATED = "autogenerated"
|
|
745
746
|
}
|
|
746
747
|
export declare enum LabelTriggerMethod {
|
package/dist/api.js
CHANGED
|
@@ -838,6 +838,7 @@ var LabelRequestMethod;
|
|
|
838
838
|
LabelRequestMethod["BRIDGE_API_SYNC"] = "bridge_api_sync";
|
|
839
839
|
LabelRequestMethod["PARTNER_API_SYNC"] = "partner_api_sync";
|
|
840
840
|
LabelRequestMethod["NOTIFICATION_REQUIRING_CROSSDOCK"] = "notification_requiring_crossdock";
|
|
841
|
+
LabelRequestMethod["FLOW_SIMULATION_SYNC"] = "flow_simulation_sync";
|
|
841
842
|
LabelRequestMethod["AUTOGENERATED"] = "autogenerated";
|
|
842
843
|
})(LabelRequestMethod = exports.LabelRequestMethod || (exports.LabelRequestMethod = {}));
|
|
843
844
|
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.48",
|
|
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": "71ee41ffd96a582387a4d438378c1ae949b08c92"
|
|
30
30
|
}
|
package/src/api.ts
CHANGED
|
@@ -830,6 +830,7 @@ export enum LabelRequestMethod {
|
|
|
830
830
|
BRIDGE_API_SYNC = 'bridge_api_sync',
|
|
831
831
|
PARTNER_API_SYNC = 'partner_api_sync',
|
|
832
832
|
NOTIFICATION_REQUIRING_CROSSDOCK = 'notification_requiring_crossdock',
|
|
833
|
+
FLOW_SIMULATION_SYNC = 'flow_simulation_sync',
|
|
833
834
|
AUTOGENERATED = 'autogenerated',
|
|
834
835
|
}
|
|
835
836
|
|