@flowio/api-constants 2.13.20 → 2.13.21
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 +2 -0
- package/dist/api.js +2 -0
- package/package.json +2 -2
- package/src/api.ts +2 -0
package/dist/api.d.ts
CHANGED
|
@@ -444,6 +444,8 @@ export declare enum EventType {
|
|
|
444
444
|
MANIFESTED_LABEL_DELETED = "manifested_label_deleted",
|
|
445
445
|
LOCAL_ITEM_UPSERTED = "local_item_upserted",
|
|
446
446
|
LOCAL_ITEM_DELETED = "local_item_deleted",
|
|
447
|
+
MERCHANT_APPLICATION_UPSERTED = "merchant_application_upserted",
|
|
448
|
+
MERCHANT_APPLICATION_DELETED = "merchant_application_deleted",
|
|
447
449
|
CHECKOUT_OPTIN_RESPONSES_UPSERTED = "checkout_optin_responses_upserted",
|
|
448
450
|
CHECKOUT_OPTIN_RESPONSES_DELETED = "checkout_optin_responses_deleted",
|
|
449
451
|
BROWSE_OPTIN_RESPONSES_UPSERTED = "browse_optin_responses_upserted",
|
package/dist/api.js
CHANGED
|
@@ -503,6 +503,8 @@ var EventType;
|
|
|
503
503
|
EventType["MANIFESTED_LABEL_DELETED"] = "manifested_label_deleted";
|
|
504
504
|
EventType["LOCAL_ITEM_UPSERTED"] = "local_item_upserted";
|
|
505
505
|
EventType["LOCAL_ITEM_DELETED"] = "local_item_deleted";
|
|
506
|
+
EventType["MERCHANT_APPLICATION_UPSERTED"] = "merchant_application_upserted";
|
|
507
|
+
EventType["MERCHANT_APPLICATION_DELETED"] = "merchant_application_deleted";
|
|
506
508
|
EventType["CHECKOUT_OPTIN_RESPONSES_UPSERTED"] = "checkout_optin_responses_upserted";
|
|
507
509
|
EventType["CHECKOUT_OPTIN_RESPONSES_DELETED"] = "checkout_optin_responses_deleted";
|
|
508
510
|
EventType["BROWSE_OPTIN_RESPONSES_UPSERTED"] = "browse_optin_responses_upserted";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-constants",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.21",
|
|
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": "f35925cb8986e0716d9dcdec6be43879dd1d3c0d"
|
|
30
30
|
}
|
package/src/api.ts
CHANGED
|
@@ -496,6 +496,8 @@ export enum EventType {
|
|
|
496
496
|
MANIFESTED_LABEL_DELETED = 'manifested_label_deleted',
|
|
497
497
|
LOCAL_ITEM_UPSERTED = 'local_item_upserted',
|
|
498
498
|
LOCAL_ITEM_DELETED = 'local_item_deleted',
|
|
499
|
+
MERCHANT_APPLICATION_UPSERTED = 'merchant_application_upserted',
|
|
500
|
+
MERCHANT_APPLICATION_DELETED = 'merchant_application_deleted',
|
|
499
501
|
CHECKOUT_OPTIN_RESPONSES_UPSERTED = 'checkout_optin_responses_upserted',
|
|
500
502
|
CHECKOUT_OPTIN_RESPONSES_DELETED = 'checkout_optin_responses_deleted',
|
|
501
503
|
BROWSE_OPTIN_RESPONSES_UPSERTED = 'browse_optin_responses_upserted',
|