@epilot/entity-client 4.34.0 → 4.34.1

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/client.d.ts CHANGED
File without changes
package/dist/client.js CHANGED
File without changes
File without changes
File without changes
package/dist/index.d.ts CHANGED
File without changes
package/dist/index.js CHANGED
File without changes
File without changes
package/dist/openapi.d.ts CHANGED
@@ -377,7 +377,7 @@ declare namespace Components {
377
377
  /**
378
378
  * Default fields visible on addresses
379
379
  */
380
- default_address_fields?: ("postal_code" | "city" | "street" | "street_number" | "plot_area" | "plot_of_land" | "suburb" | "country" | "additional_info" | "coordinates" | "start_date" | "end_date")[];
380
+ default_address_fields?: ("postal_code" | "city" | "street" | "street_number" | "plot_area" | "plot_of_land" | "suburb" | "country" | "additional_info" | "coordinates" | "start_date" | "end_date" | "salutation" | "title" | "first_name" | "last_name" | "company_name")[];
381
381
  }
382
382
  /**
383
383
  * Reference to an address attribute of another entity
@@ -908,6 +908,7 @@ declare namespace Components {
908
908
  _tags?: string[] | null;
909
909
  _created_at: string | null; // date-time
910
910
  _updated_at: string | null; // date-time
911
+ _deleted_at?: string | null; // date-time
911
912
  _acl?: /* Access control list (ACL) for an entity. Defines sharing access to external orgs or users. */ EntityAcl;
912
913
  _purpose?: string[] | null;
913
914
  /**
@@ -1839,6 +1840,7 @@ declare namespace Components {
1839
1840
  _tags?: string[] | null;
1840
1841
  _created_at?: string | null; // date-time
1841
1842
  _updated_at?: string | null; // date-time
1843
+ _deleted_at?: string | null; // date-time
1842
1844
  _acl?: /* Access control list (ACL) for an entity. Defines sharing access to external orgs or users. */ EntityAcl;
1843
1845
  _purpose?: string[] | null;
1844
1846
  /**
@@ -2269,6 +2271,7 @@ declare namespace Components {
2269
2271
  _tags?: string[] | null;
2270
2272
  _created_at: string | null; // date-time
2271
2273
  _updated_at: string | null; // date-time
2274
+ _deleted_at?: string | null; // date-time
2272
2275
  _acl?: /* Access control list (ACL) for an entity. Defines sharing access to external orgs or users. */ EntityAcl;
2273
2276
  _purpose?: string[] | null;
2274
2277
  /**
@@ -2449,6 +2452,7 @@ declare namespace Components {
2449
2452
  _tags?: string[] | null;
2450
2453
  _created_at?: string | null; // date-time
2451
2454
  _updated_at?: string | null; // date-time
2455
+ _deleted_at?: string | null; // date-time
2452
2456
  _acl?: /* Access control list (ACL) for an entity. Defines sharing access to external orgs or users. */ EntityAcl;
2453
2457
  _purpose?: string[] | null;
2454
2458
  /**
@@ -4069,6 +4073,7 @@ declare namespace Components {
4069
4073
  _tags?: string[] | null;
4070
4074
  _created_at: string | null; // date-time
4071
4075
  _updated_at: string | null; // date-time
4076
+ _deleted_at?: string | null; // date-time
4072
4077
  _acl?: /* Access control list (ACL) for an entity. Defines sharing access to external orgs or users. */ EntityAcl;
4073
4078
  _purpose?: string[] | null;
4074
4079
  /**
@@ -5940,6 +5945,7 @@ declare namespace Components {
5940
5945
  _tags?: string[] | null;
5941
5946
  _created_at: string | null; // date-time
5942
5947
  _updated_at: string | null; // date-time
5948
+ _deleted_at?: string | null; // date-time
5943
5949
  _acl?: /* Access control list (ACL) for an entity. Defines sharing access to external orgs or users. */ EntityAcl;
5944
5950
  _purpose?: string[] | null;
5945
5951
  /**
@@ -6032,6 +6038,7 @@ declare namespace Components {
6032
6038
  _tags?: string[] | null;
6033
6039
  _created_at: string | null; // date-time
6034
6040
  _updated_at: string | null; // date-time
6041
+ _deleted_at?: string | null; // date-time
6035
6042
  _acl?: /* Access control list (ACL) for an entity. Defines sharing access to external orgs or users. */ EntityAcl;
6036
6043
  _purpose?: string[] | null;
6037
6044
  /**
package/dist/openapi.json CHANGED
@@ -5184,7 +5184,12 @@
5184
5184
  "additional_info",
5185
5185
  "coordinates",
5186
5186
  "start_date",
5187
- "end_date"
5187
+ "end_date",
5188
+ "salutation",
5189
+ "title",
5190
+ "first_name",
5191
+ "last_name",
5192
+ "company_name"
5188
5193
  ]
5189
5194
  }
5190
5195
  }
@@ -6014,6 +6019,12 @@
6014
6019
  "nullable": true,
6015
6020
  "readOnly": true
6016
6021
  },
6022
+ "_deleted_at": {
6023
+ "type": "string",
6024
+ "format": "date-time",
6025
+ "nullable": true,
6026
+ "readOnly": true
6027
+ },
6017
6028
  "_acl": {
6018
6029
  "readOnly": true,
6019
6030
  "$ref": "#/components/schemas/EntityAcl"
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/entity-client",
3
- "version": "4.34.0",
3
+ "version": "4.34.1",
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",