Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export type FetchSpecificationsQuery = {
specifications: {
name: string
identifier: string
clientSteps?: string
externalIdentifier: string
features: string[]
uidStrategy:
Expand Down Expand Up @@ -78,6 +79,7 @@ export const FetchSpecifications = {
],
},
},
{kind: 'Field', name: {kind: 'Name', value: 'clientSteps'}},
{kind: 'Field', name: {kind: 'Name', value: '__typename'}},
],
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ query fetchSpecifications($organizationId: ID!) {
validationSchema {
jsonSchema
}
clientSteps
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export const ExtensionSpecificationsQuery = gql`
validationSchema {
jsonSchema
}
clientSteps
}
}
`
Expand Down Expand Up @@ -49,6 +50,7 @@ export interface RemoteSpecification {
validationSchema?: {
jsonSchema: string
} | null
clientSteps?: string
}

export interface FlattenedRemoteSpecification extends RemoteSpecification {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,7 @@ export class AppManagementClient implements DeveloperPlatformClient {
},
experience: experience(spec.identifier),
validationSchema: spec.validationSchema,
clientSteps: spec.clientSteps,
}),
)
}
Expand Down
13 changes: 11 additions & 2 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading