@gigscom/embeds-js
Version:
prebuilt embeddable UI components on top of the Gigs API for the Web
18 lines (15 loc) • 379 B
text/typescript
export type ConnectSession = {
object: 'connectSession'
id: string
callbackUrl: string | null
intent: ConnectSessionIntent
url: string | null
user: string | null
}
export type ConnectSessionIntent = ConnectSessionCompletePortingIntent
export type ConnectSessionCompletePortingIntent = {
type: 'completePorting'
completePorting: {
subscription: string
}
}