@epilot/automation-client 1.9.1 → 1.9.2

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/openapi.d.ts CHANGED
@@ -385,6 +385,7 @@ declare namespace Components {
385
385
  * e3d3ebac-baab-4395-abf4-50b5bf1f8b74
386
386
  */
387
387
  EntityId;
388
+ entity_snapshot?: EntityItemSnapshot;
388
389
  org_id: /**
389
390
  * example:
390
391
  * e3d3ebac-baab-4395-abf4-50b5bf1f8b74
@@ -622,6 +623,20 @@ declare namespace Components {
622
623
  * e3d3ebac-baab-4395-abf4-50b5bf1f8b74
623
624
  */
624
625
  export type EntityId = string;
626
+ export interface EntityItemSnapshot {
627
+ [name: string]: any;
628
+ _id: /**
629
+ * example:
630
+ * e3d3ebac-baab-4395-abf4-50b5bf1f8b74
631
+ */
632
+ EntityId;
633
+ _title: string;
634
+ _org: string;
635
+ _schema: string;
636
+ _tags?: string[];
637
+ _created_at: string; // date-time
638
+ _updated_at: string; // date-time
639
+ }
625
640
  export interface EntityManualTrigger {
626
641
  type: "entity_manual";
627
642
  configuration: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/automation-client",
3
- "version": "1.9.1",
3
+ "version": "1.9.2",
4
4
  "description": "API Client for epilot automation API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/openapi.d.ts CHANGED
@@ -385,6 +385,7 @@ declare namespace Components {
385
385
  * e3d3ebac-baab-4395-abf4-50b5bf1f8b74
386
386
  */
387
387
  EntityId;
388
+ entity_snapshot?: EntityItemSnapshot;
388
389
  org_id: /**
389
390
  * example:
390
391
  * e3d3ebac-baab-4395-abf4-50b5bf1f8b74
@@ -622,6 +623,20 @@ declare namespace Components {
622
623
  * e3d3ebac-baab-4395-abf4-50b5bf1f8b74
623
624
  */
624
625
  export type EntityId = string;
626
+ export interface EntityItemSnapshot {
627
+ [name: string]: any;
628
+ _id: /**
629
+ * example:
630
+ * e3d3ebac-baab-4395-abf4-50b5bf1f8b74
631
+ */
632
+ EntityId;
633
+ _title: string;
634
+ _org: string;
635
+ _schema: string;
636
+ _tags?: string[];
637
+ _created_at: string; // date-time
638
+ _updated_at: string; // date-time
639
+ }
625
640
  export interface EntityManualTrigger {
626
641
  type: "entity_manual";
627
642
  configuration: {