Skip to content

Commit d1847ff

Browse files
committed
fix: add a couple missing fields in model objects
1 parent 5906448 commit d1847ff

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

src/endpoint/drivers.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,8 @@ export interface EdgeDriverSummary {
169169
*/
170170
name: string
171171

172+
description?: string
173+
172174
/**
173175
* A user-scoped package key used to look up the respective driver record.
174176
*

src/endpoint/schema.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export interface SchemaApp extends SchemaAppRequest {
2020
certificationStatus?: string
2121
}
2222

23+
export type PartnerSTConnection = 'connected' | 'disconnected'
2324
export interface SchemaAppRequest {
2425

2526
/**
@@ -190,6 +191,11 @@ export interface InstalledSchemaApp {
190191
* generated oAuth link for the user to login to partner server. This will only be returned when the user is not logged in.
191192
*/
192193
oAuthLink?: string
194+
195+
/**
196+
* connection status between partner and ST platform
197+
*/
198+
partnerSTConnection?: PartnerSTConnection
193199
}
194200

195201
interface InstalledSchemaAppList {

0 commit comments

Comments
 (0)