Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update via seamapi/seam-connect@424aac3a7cc11febc4b0a84c89b1fa1214008b48 #296

Closed
Closed
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
81 changes: 81 additions & 0 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3229,6 +3229,87 @@ export default {
'x-fern-sdk-method-name': 'list',
},
},
'/acs/credential_provisioning_automations/launch': {
post: {
operationId: 'acsCredentialProvisioningAutomationsLaunchPost',
requestBody: {
content: {
'application/json': {
schema: {
properties: {
acs_credential_pool_id: { format: 'uuid', type: 'string' },
create_credential_manager_user: { type: 'boolean' },
credential_manager_acs_system_id: {
format: 'uuid',
type: 'string',
},
credential_manager_acs_user_id: {
format: 'uuid',
type: 'string',
},
user_identity_id: { format: 'uuid', type: 'string' },
},
required: [
'user_identity_id',
'credential_manager_acs_system_id',
],
type: 'object',
},
},
},
},
responses: {
200: {
content: {
'application/json': {
schema: {
properties: {
acs_credential_provisioning_automation: {
properties: {
acs_credential_provisioning_automation_id: {
format: 'uuid',
type: 'string',
},
created_at: { format: 'date-time', type: 'string' },
credential_manager_acs_system_id: {
format: 'uuid',
type: 'string',
},
user_identity_id: { format: 'uuid', type: 'string' },
workspace_id: { format: 'uuid', type: 'string' },
},
required: [
'acs_credential_provisioning_automation_id',
'credential_manager_acs_system_id',
'user_identity_id',
'created_at',
'workspace_id',
],
type: 'object',
},
ok: { type: 'boolean' },
},
required: ['acs_credential_provisioning_automation', 'ok'],
type: 'object',
},
},
},
description: 'OK',
},
400: { description: 'Bad Request' },
401: { description: 'Unauthorized' },
},
security: [
{ access_token: [], seam_workspace: [] },
{ seam_client_session_token: [] },
{ client_session_token: [] },
],
summary: '/acs/credential_provisioning_automations/launch',
tags: [],
'x-fern-sdk-group-name': ['acs', 'credential_provisioning_automations'],
'x-fern-sdk-method-name': 'launch',
},
},
'/acs/credentials/assign': {
patch: {
operationId: 'acsCredentialsAssignPatch',
Expand Down
23 changes: 23 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -776,6 +776,29 @@ export interface Routes {
}>
}
}
'/acs/credential_provisioning_automations/launch': {
route: '/acs/credential_provisioning_automations/launch'
method: 'POST'
queryParams: {}
jsonBody: {}
commonParams: {
user_identity_id: string
credential_manager_acs_system_id: string
acs_credential_pool_id?: string | undefined
create_credential_manager_user?: boolean | undefined
credential_manager_acs_user_id?: string | undefined
}
formData: {}
jsonResponse: {
acs_credential_provisioning_automation: {
acs_credential_provisioning_automation_id: string
credential_manager_acs_system_id: string
user_identity_id: string
created_at: string
workspace_id: string
}
}
}
'/acs/credentials/assign': {
route: '/acs/credentials/assign'
method: 'PATCH' | 'POST'
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { z } from 'zod'

export const acs_credential_provisioning_automation = z.object({
acs_credential_provisioning_automation_id: z.string().uuid(),
credential_manager_acs_system_id: z.string().uuid(),
user_identity_id: z.string().uuid(),
created_at: z.string().datetime(),
workspace_id: z.string().uuid(),
})

export type AcsCredentialProvisioningAutomation = z.output<
typeof acs_credential_provisioning_automation
>
1 change: 1 addition & 0 deletions src/lib/seam/connect/unstable/models/acs/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export * from './access_group.js'
export * from './credential.js'
export * from './credential_pool.js'
export * from './credential_provisioning_automation.js'
export * from './entrance.js'
export * from './system.js'
export * from './user.js'
1 change: 1 addition & 0 deletions src/lib/seam/connect/unstable/schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export {
acs_credential_external_type,
acs_credential_pool,
acs_credential_pool_external_type,
acs_credential_provisioning_automation,
acs_entrance,
acs_system,
acs_system_external_type,
Expand Down