Skip to content

Commit

Permalink
feat: Solana launch
Browse files Browse the repository at this point in the history
  • Loading branch information
RezaRahemtola committed Nov 14, 2024
1 parent d88c12a commit 919659d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
/.quasar
/node_modules
/quasar.config.*.temporary.compiled*
/src/apis
6 changes: 5 additions & 1 deletion src/apis/agents/schemas.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -54,7 +58,7 @@ export const GetAgentResponseSchema = {
}
},
type: 'object',
required: ['id', 'last_update'],
required: ['id', 'subscription_id', 'last_update'],
title: 'GetAgentResponse'
} as const;

Expand Down
1 change: 1 addition & 0 deletions src/apis/agents/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export type DeleteAgentBody = {

export type GetAgentResponse = {
id: string;
subscription_id: string;
vm_hash?: string;
last_update: number;
};
Expand Down
1 change: 0 additions & 1 deletion src/components/AccountButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
<span>{{ connector.name }}</span>
</q-btn>
<q-btn
v-if="false"
key="solana"
class="row tw-mx-auto"
no-caps
Expand Down

0 comments on commit 919659d

Please sign in to comment.