Skip to content

Commit 260a6de

Browse files
committed
feat: Solana launch
1 parent b9b5ab4 commit 260a6de

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
/.quasar
33
/node_modules
44
/quasar.config.*.temporary.compiled*
5+
/src/apis

src/apis/agents/schemas.gen.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ export const GetAgentResponseSchema = {
4444
type: 'string',
4545
title: 'Id'
4646
},
47+
subscription_id: {
48+
type: 'string',
49+
title: 'Subscription Id'
50+
},
4751
vm_hash: {
4852
type: 'string',
4953
title: 'Vm Hash'
@@ -54,7 +58,7 @@ export const GetAgentResponseSchema = {
5458
}
5559
},
5660
type: 'object',
57-
required: ['id', 'last_update'],
61+
required: ['id', 'subscription_id', 'last_update'],
5862
title: 'GetAgentResponse'
5963
} as const;
6064

src/apis/agents/types.gen.ts

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export type DeleteAgentBody = {
1313

1414
export type GetAgentResponse = {
1515
id: string;
16+
subscription_id: string;
1617
vm_hash?: string;
1718
last_update: number;
1819
};

src/components/AccountButton.vue

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
<span>{{ connector.name }}</span>
3131
</q-btn>
3232
<q-btn
33-
v-if="false"
3433
key="solana"
3534
class="row tw-mx-auto"
3635
no-caps

0 commit comments

Comments
 (0)