@seamapi/types 1.49.0 → 1.50.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/connect.cjs CHANGED
@@ -3247,6 +3247,87 @@ var openapi_default = {
3247
3247
  "x-fern-sdk-method-name": "list"
3248
3248
  }
3249
3249
  },
3250
+ "/acs/credential_provisioning_automations/launch": {
3251
+ post: {
3252
+ operationId: "acsCredentialProvisioningAutomationsLaunchPost",
3253
+ requestBody: {
3254
+ content: {
3255
+ "application/json": {
3256
+ schema: {
3257
+ properties: {
3258
+ acs_credential_pool_id: { format: "uuid", type: "string" },
3259
+ create_credential_manager_user: { type: "boolean" },
3260
+ credential_manager_acs_system_id: {
3261
+ format: "uuid",
3262
+ type: "string"
3263
+ },
3264
+ credential_manager_acs_user_id: {
3265
+ format: "uuid",
3266
+ type: "string"
3267
+ },
3268
+ user_identity_id: { format: "uuid", type: "string" }
3269
+ },
3270
+ required: [
3271
+ "user_identity_id",
3272
+ "credential_manager_acs_system_id"
3273
+ ],
3274
+ type: "object"
3275
+ }
3276
+ }
3277
+ }
3278
+ },
3279
+ responses: {
3280
+ 200: {
3281
+ content: {
3282
+ "application/json": {
3283
+ schema: {
3284
+ properties: {
3285
+ acs_credential_provisioning_automation: {
3286
+ properties: {
3287
+ acs_credential_provisioning_automation_id: {
3288
+ format: "uuid",
3289
+ type: "string"
3290
+ },
3291
+ created_at: { format: "date-time", type: "string" },
3292
+ credential_manager_acs_system_id: {
3293
+ format: "uuid",
3294
+ type: "string"
3295
+ },
3296
+ user_identity_id: { format: "uuid", type: "string" },
3297
+ workspace_id: { format: "uuid", type: "string" }
3298
+ },
3299
+ required: [
3300
+ "acs_credential_provisioning_automation_id",
3301
+ "credential_manager_acs_system_id",
3302
+ "user_identity_id",
3303
+ "created_at",
3304
+ "workspace_id"
3305
+ ],
3306
+ type: "object"
3307
+ },
3308
+ ok: { type: "boolean" }
3309
+ },
3310
+ required: ["acs_credential_provisioning_automation", "ok"],
3311
+ type: "object"
3312
+ }
3313
+ }
3314
+ },
3315
+ description: "OK"
3316
+ },
3317
+ 400: { description: "Bad Request" },
3318
+ 401: { description: "Unauthorized" }
3319
+ },
3320
+ security: [
3321
+ { access_token: [], seam_workspace: [] },
3322
+ { seam_client_session_token: [] },
3323
+ { client_session_token: [] }
3324
+ ],
3325
+ summary: "/acs/credential_provisioning_automations/launch",
3326
+ tags: [],
3327
+ "x-fern-sdk-group-name": ["acs", "credential_provisioning_automations"],
3328
+ "x-fern-sdk-method-name": "launch"
3329
+ }
3330
+ },
3250
3331
  "/acs/credentials/assign": {
3251
3332
  patch: {
3252
3333
  operationId: "acsCredentialsAssignPatch",