diff --git a/.eslintignore b/.eslintignore index a75ec86..6943364 100644 --- a/.eslintignore +++ b/.eslintignore @@ -2,3 +2,4 @@ /.quasar /node_modules /quasar.config.*.temporary.compiled* +/src/apis diff --git a/src/apis/agents/schemas.gen.ts b/src/apis/agents/schemas.gen.ts index 4275e34..92c1405 100644 --- a/src/apis/agents/schemas.gen.ts +++ b/src/apis/agents/schemas.gen.ts @@ -44,6 +44,10 @@ export const GetAgentResponseSchema = { type: 'string', title: 'Id' }, + subscription_id: { + type: 'string', + title: 'Subscription Id' + }, vm_hash: { type: 'string', title: 'Vm Hash' @@ -54,7 +58,7 @@ export const GetAgentResponseSchema = { } }, type: 'object', - required: ['id', 'last_update'], + required: ['id', 'subscription_id', 'last_update'], title: 'GetAgentResponse' } as const; diff --git a/src/apis/agents/types.gen.ts b/src/apis/agents/types.gen.ts index 087878f..610c8e0 100644 --- a/src/apis/agents/types.gen.ts +++ b/src/apis/agents/types.gen.ts @@ -13,6 +13,7 @@ export type DeleteAgentBody = { export type GetAgentResponse = { id: string; + subscription_id: string; vm_hash?: string; last_update: number; }; diff --git a/src/components/AccountButton.vue b/src/components/AccountButton.vue index 6ef54ba..44cb8e9 100644 --- a/src/components/AccountButton.vue +++ b/src/components/AccountButton.vue @@ -30,7 +30,6 @@ {{ connector.name }}