Skip to content

Commit

Permalink
chore(customer-portal-client): update client with new spec
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Duras committed Dec 9, 2024
1 parent 352587b commit 56e93f3
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion clients/customer-portal-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@epilot/customer-portal-client",
"version": "0.18.2",
"version": "0.18.3",
"description": "API Client for epilot portal API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions clients/customer-portal-client/src/openapi.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3259,6 +3259,10 @@ declare namespace Components {
};
}
export interface PublicDataRetrievalHookDetails {
/**
* Identifier of the hook.
*/
id?: string;
name?: {
[name: string]: string;
/**
Expand All @@ -3281,6 +3285,10 @@ declare namespace Components {
};
}
export interface PublicExtensionDetails {
/**
* Identifier of the extension.
*/
id?: string;
name?: {
[name: string]: string;
/**
Expand Down
8 changes: 8 additions & 0 deletions clients/customer-portal-client/src/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -8193,6 +8193,10 @@
"PublicExtensionDetails": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Identifier of the extension."
},
"name": {
"type": "object",
"properties": {
Expand All @@ -8214,6 +8218,10 @@
"PublicDataRetrievalHookDetails": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Identifier of the hook."
},
"name": {
"type": "object",
"properties": {
Expand Down

0 comments on commit 56e93f3

Please sign in to comment.