Skip to content

Commit

Permalink
update client (#87)
Browse files Browse the repository at this point in the history
Co-authored-by: sophos-rickc <sophos-rickc@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and sophos-rickc authored Sep 19, 2023
1 parent 6f11092 commit 86ce058
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 2 deletions.
11 changes: 11 additions & 0 deletions spec/authApi.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,17 @@
}
}
},
"tenant": {
"type": "object",
"properties": {
"region": {
"type": "string"
},
"id": {
"type": "string"
}
}
},
"notification_channels": {
"type": "array",
"items": {
Expand Down
1 change: 0 additions & 1 deletion src/generated/api/.openapi-generator/FILES
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.gitignore
.npmignore
.openapi-generator-ignore
api.ts
base.ts
common.ts
Expand Down
1 change: 0 additions & 1 deletion src/generated/authApi/.openapi-generator/FILES
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.gitignore
.npmignore
.openapi-generator-ignore
api.ts
base.ts
common.ts
Expand Down
25 changes: 25 additions & 0 deletions src/generated/authApi/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -763,6 +763,12 @@ export interface Organization {
* @memberof Organization
*/
plan_quotas?: OrganizationPlanQuotas;
/**
*
* @type {OrganizationTenant}
* @memberof Organization
*/
tenant?: OrganizationTenant;
/**
*
* @type {Array<NotificationChannel>}
Expand Down Expand Up @@ -832,6 +838,25 @@ export interface OrganizationPlanQuotas {
*/
agent_count?: number;
}
/**
*
* @export
* @interface OrganizationTenant
*/
export interface OrganizationTenant {
/**
*
* @type {string}
* @memberof OrganizationTenant
*/
region?: string;
/**
*
* @type {string}
* @memberof OrganizationTenant
*/
id?: string;
}
/**
*
* @export
Expand Down

0 comments on commit 86ce058

Please sign in to comment.