@flowio/api-constants 2.13.68 → 2.13.69

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 CHANGED
@@ -345,6 +345,8 @@ export declare enum Environment {
345
345
  export declare enum EventType {
346
346
  TEST_UPSERTED = "test_upserted",
347
347
  GENERATE_LOAD = "generate_load",
348
+ ALDO_ITEM_UPSERTED = "aldo_item_upserted",
349
+ ALDO_ITEM_DELETED = "aldo_item_deleted",
348
350
  TRANSACTION_UPSERTED = "transaction_upserted",
349
351
  ORGANIZATION_TRANSACTION_UPSERTED = "organization_transaction_upserted",
350
352
  ORGANIZATION_TRANSACTION_DELETED = "organization_transaction_deleted",
package/dist/api.js CHANGED
@@ -407,6 +407,8 @@ var EventType;
407
407
  (function (EventType) {
408
408
  EventType["TEST_UPSERTED"] = "test_upserted";
409
409
  EventType["GENERATE_LOAD"] = "generate_load";
410
+ EventType["ALDO_ITEM_UPSERTED"] = "aldo_item_upserted";
411
+ EventType["ALDO_ITEM_DELETED"] = "aldo_item_deleted";
410
412
  EventType["TRANSACTION_UPSERTED"] = "transaction_upserted";
411
413
  EventType["ORGANIZATION_TRANSACTION_UPSERTED"] = "organization_transaction_upserted";
412
414
  EventType["ORGANIZATION_TRANSACTION_DELETED"] = "organization_transaction_deleted";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-constants",
3
- "version": "2.13.68",
3
+ "version": "2.13.69",
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": "5a525b0a21aca779c3ca5bb3f4a759c144095fd5"
29
+ "gitHead": "13edc138093b0ffde7bb465d676930ec320158dc"
30
30
  }
package/src/api.ts CHANGED
@@ -399,6 +399,8 @@ export enum Environment {
399
399
  export enum EventType {
400
400
  TEST_UPSERTED = 'test_upserted',
401
401
  GENERATE_LOAD = 'generate_load',
402
+ ALDO_ITEM_UPSERTED = 'aldo_item_upserted',
403
+ ALDO_ITEM_DELETED = 'aldo_item_deleted',
402
404
  TRANSACTION_UPSERTED = 'transaction_upserted',
403
405
  ORGANIZATION_TRANSACTION_UPSERTED = 'organization_transaction_upserted',
404
406
  ORGANIZATION_TRANSACTION_DELETED = 'organization_transaction_deleted',