Skip to content

Commit

Permalink
update entity-client
Browse files Browse the repository at this point in the history
  • Loading branch information
jpinho committed Nov 15, 2024
1 parent ae67866 commit 7589834
Show file tree
Hide file tree
Showing 11 changed files with 37 additions and 19 deletions.
4 changes: 2 additions & 2 deletions clients/automation-client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions clients/document-client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions clients/email-template-client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions clients/entity-client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion clients/entity-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@epilot/entity-client",
"version": "4.34.0",
"version": "4.34.1",
"description": "JavaScript client library for the epilot Core Entity API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
9 changes: 8 additions & 1 deletion clients/entity-client/src/openapi.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ declare namespace Components {
/**
* Default fields visible on addresses
*/
default_address_fields?: ("postal_code" | "city" | "street" | "street_number" | "plot_area" | "plot_of_land" | "suburb" | "country" | "additional_info" | "coordinates" | "start_date" | "end_date")[];
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")[];
}
/**
* Reference to an address attribute of another entity
Expand Down Expand Up @@ -908,6 +908,7 @@ declare namespace Components {
_tags?: string[] | null;
_created_at: string | null; // date-time
_updated_at: string | null; // date-time
_deleted_at?: string | null; // date-time
_acl?: /* Access control list (ACL) for an entity. Defines sharing access to external orgs or users. */ EntityAcl;
_purpose?: string[] | null;
/**
Expand Down Expand Up @@ -1839,6 +1840,7 @@ declare namespace Components {
_tags?: string[] | null;
_created_at?: string | null; // date-time
_updated_at?: string | null; // date-time
_deleted_at?: string | null; // date-time
_acl?: /* Access control list (ACL) for an entity. Defines sharing access to external orgs or users. */ EntityAcl;
_purpose?: string[] | null;
/**
Expand Down Expand Up @@ -2269,6 +2271,7 @@ declare namespace Components {
_tags?: string[] | null;
_created_at: string | null; // date-time
_updated_at: string | null; // date-time
_deleted_at?: string | null; // date-time
_acl?: /* Access control list (ACL) for an entity. Defines sharing access to external orgs or users. */ EntityAcl;
_purpose?: string[] | null;
/**
Expand Down Expand Up @@ -2449,6 +2452,7 @@ declare namespace Components {
_tags?: string[] | null;
_created_at?: string | null; // date-time
_updated_at?: string | null; // date-time
_deleted_at?: string | null; // date-time
_acl?: /* Access control list (ACL) for an entity. Defines sharing access to external orgs or users. */ EntityAcl;
_purpose?: string[] | null;
/**
Expand Down Expand Up @@ -4069,6 +4073,7 @@ declare namespace Components {
_tags?: string[] | null;
_created_at: string | null; // date-time
_updated_at: string | null; // date-time
_deleted_at?: string | null; // date-time
_acl?: /* Access control list (ACL) for an entity. Defines sharing access to external orgs or users. */ EntityAcl;
_purpose?: string[] | null;
/**
Expand Down Expand Up @@ -5940,6 +5945,7 @@ declare namespace Components {
_tags?: string[] | null;
_created_at: string | null; // date-time
_updated_at: string | null; // date-time
_deleted_at?: string | null; // date-time
_acl?: /* Access control list (ACL) for an entity. Defines sharing access to external orgs or users. */ EntityAcl;
_purpose?: string[] | null;
/**
Expand Down Expand Up @@ -6032,6 +6038,7 @@ declare namespace Components {
_tags?: string[] | null;
_created_at: string | null; // date-time
_updated_at: string | null; // date-time
_deleted_at?: string | null; // date-time
_acl?: /* Access control list (ACL) for an entity. Defines sharing access to external orgs or users. */ EntityAcl;
_purpose?: string[] | null;
/**
Expand Down
13 changes: 12 additions & 1 deletion clients/entity-client/src/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -5184,7 +5184,12 @@
"additional_info",
"coordinates",
"start_date",
"end_date"
"end_date",
"salutation",
"title",
"first_name",
"last_name",
"company_name"
]
}
}
Expand Down Expand Up @@ -6014,6 +6019,12 @@
"nullable": true,
"readOnly": true
},
"_deleted_at": {
"type": "string",
"format": "date-time",
"nullable": true,
"readOnly": true
},
"_acl": {
"readOnly": true,
"$ref": "#/components/schemas/EntityAcl"
Expand Down
4 changes: 2 additions & 2 deletions clients/message-client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions clients/notes-api/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions clients/workflow-client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions clients/workflow-definition-client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7589834

Please sign in to comment.