@flowio/api-constants 2.13.36 → 2.13.37
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
|
@@ -519,6 +519,7 @@ export declare enum EventType {
|
|
|
519
519
|
VIRTUAL_CARD_REFUND_UPSERTED = "virtual_card_refund_upserted",
|
|
520
520
|
VIRTUAL_CARD_REFUND_DELETED = "virtual_card_refund_deleted",
|
|
521
521
|
PAYMENT_REQUEST_UPSERTED = "payment_request_upserted",
|
|
522
|
+
PAYMENT_REQUEST_DELETED = "payment_request_deleted",
|
|
522
523
|
PRICE_BOOK_UPSERTED = "price_book_upserted",
|
|
523
524
|
PRICE_BOOK_DELETED = "price_book_deleted",
|
|
524
525
|
PRICE_BOOK_ITEM_UPSERTED = "price_book_item_upserted",
|
package/dist/api.js
CHANGED
|
@@ -581,6 +581,7 @@ var EventType;
|
|
|
581
581
|
EventType["VIRTUAL_CARD_REFUND_UPSERTED"] = "virtual_card_refund_upserted";
|
|
582
582
|
EventType["VIRTUAL_CARD_REFUND_DELETED"] = "virtual_card_refund_deleted";
|
|
583
583
|
EventType["PAYMENT_REQUEST_UPSERTED"] = "payment_request_upserted";
|
|
584
|
+
EventType["PAYMENT_REQUEST_DELETED"] = "payment_request_deleted";
|
|
584
585
|
EventType["PRICE_BOOK_UPSERTED"] = "price_book_upserted";
|
|
585
586
|
EventType["PRICE_BOOK_DELETED"] = "price_book_deleted";
|
|
586
587
|
EventType["PRICE_BOOK_ITEM_UPSERTED"] = "price_book_item_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.37",
|
|
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": "bc548be3553cff4232e1a8c5d37e7a2baeab2c73"
|
|
30
30
|
}
|
package/src/api.ts
CHANGED
|
@@ -573,6 +573,7 @@ export enum EventType {
|
|
|
573
573
|
VIRTUAL_CARD_REFUND_UPSERTED = 'virtual_card_refund_upserted',
|
|
574
574
|
VIRTUAL_CARD_REFUND_DELETED = 'virtual_card_refund_deleted',
|
|
575
575
|
PAYMENT_REQUEST_UPSERTED = 'payment_request_upserted',
|
|
576
|
+
PAYMENT_REQUEST_DELETED = 'payment_request_deleted',
|
|
576
577
|
PRICE_BOOK_UPSERTED = 'price_book_upserted',
|
|
577
578
|
PRICE_BOOK_DELETED = 'price_book_deleted',
|
|
578
579
|
PRICE_BOOK_ITEM_UPSERTED = 'price_book_item_upserted',
|