@epilot/entity-client 4.27.1 → 4.27.4

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
@@ -723,6 +723,7 @@ declare namespace Components {
723
723
  _created_at: string | null; // date-time
724
724
  _updated_at: string | null; // date-time
725
725
  _acl?: /* Access control list (ACL) for an entity. Defines sharing access to external orgs or users. */ EntityAcl;
726
+ _purpose?: string[] | null;
726
727
  }
727
728
  /**
728
729
  * Reference to blueprint
@@ -1606,6 +1607,7 @@ declare namespace Components {
1606
1607
  _created_at?: string | null; // date-time
1607
1608
  _updated_at?: string | null; // date-time
1608
1609
  _acl?: /* Access control list (ACL) for an entity. Defines sharing access to external orgs or users. */ EntityAcl;
1610
+ _purpose?: string[] | null;
1609
1611
  }
1610
1612
  /**
1611
1613
  * Access control list (ACL) for an entity. Defines sharing access to external orgs or users.
@@ -2013,6 +2015,7 @@ declare namespace Components {
2013
2015
  _created_at: string | null; // date-time
2014
2016
  _updated_at: string | null; // date-time
2015
2017
  _acl?: /* Access control list (ACL) for an entity. Defines sharing access to external orgs or users. */ EntityAcl;
2018
+ _purpose?: string[] | null;
2016
2019
  }
2017
2020
  export interface EntityListParams {
2018
2021
  filter: /**
@@ -2176,6 +2179,7 @@ declare namespace Components {
2176
2179
  _created_at?: string | null; // date-time
2177
2180
  _updated_at?: string | null; // date-time
2178
2181
  _acl?: /* Access control list (ACL) for an entity. Defines sharing access to external orgs or users. */ EntityAcl;
2182
+ _purpose?: string[] | null;
2179
2183
  };
2180
2184
  diff?: {
2181
2185
  added?: /**
@@ -2503,6 +2507,7 @@ declare namespace Components {
2503
2507
  * ]
2504
2508
  */
2505
2509
  attributes: Attribute[];
2510
+ _purpose?: string[];
2506
2511
  explicit_search_mappings?: /**
2507
2512
  * Advanced: explicit Elasticsearch index mapping definitions for entity data
2508
2513
  *
@@ -2846,6 +2851,7 @@ declare namespace Components {
2846
2851
  * ]
2847
2852
  */
2848
2853
  attributes: Attribute[];
2854
+ _purpose?: string[];
2849
2855
  explicit_search_mappings?: /**
2850
2856
  * Advanced: explicit Elasticsearch index mapping definitions for entity data
2851
2857
  *
@@ -5228,6 +5234,7 @@ declare namespace Components {
5228
5234
  _created_at: string | null; // date-time
5229
5235
  _updated_at: string | null; // date-time
5230
5236
  _acl?: /* Access control list (ACL) for an entity. Defines sharing access to external orgs or users. */ EntityAcl;
5237
+ _purpose?: string[] | null;
5231
5238
  };
5232
5239
  }[];
5233
5240
  drawer_size?: "small" | "medium" | "large";
@@ -5312,6 +5319,7 @@ declare namespace Components {
5312
5319
  _created_at: string | null; // date-time
5313
5320
  _updated_at: string | null; // date-time
5314
5321
  _acl?: /* Access control list (ACL) for an entity. Defines sharing access to external orgs or users. */ EntityAcl;
5322
+ _purpose?: string[] | null;
5315
5323
  $relation?: RelationItem;
5316
5324
  }
5317
5325
  export interface RelationItem {
package/dist/openapi.json CHANGED
@@ -3319,6 +3319,12 @@
3319
3319
  }
3320
3320
  ]
3321
3321
  },
3322
+ "_purpose": {
3323
+ "type": "array",
3324
+ "items": {
3325
+ "type": "string"
3326
+ }
3327
+ },
3322
3328
  "explicit_search_mappings": {
3323
3329
  "$ref": "#/components/schemas/SearchMappings"
3324
3330
  }
@@ -5149,6 +5155,13 @@
5149
5155
  "_acl": {
5150
5156
  "readOnly": true,
5151
5157
  "$ref": "#/components/schemas/EntityAcl"
5158
+ },
5159
+ "_purpose": {
5160
+ "type": "array",
5161
+ "items": {
5162
+ "type": "string"
5163
+ },
5164
+ "nullable": true
5152
5165
  }
5153
5166
  },
5154
5167
  "example": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/entity-client",
3
- "version": "4.27.1",
3
+ "version": "4.27.4",
4
4
  "description": "JavaScript client library for the epilot Core Entity API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",