@seamapi/types 1.171.0 → 1.173.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
@@ -3207,7 +3207,7 @@ var openapi_default = {
3207
3207
  type: "boolean"
3208
3208
  },
3209
3209
  code: {
3210
- maxLength: 8,
3210
+ maxLength: 9,
3211
3211
  minLength: 4,
3212
3212
  pattern: "^\\d+$",
3213
3213
  type: "string"
@@ -3290,7 +3290,7 @@ var openapi_default = {
3290
3290
  type: "string"
3291
3291
  },
3292
3292
  code: {
3293
- maxLength: 8,
3293
+ maxLength: 9,
3294
3294
  minLength: 4,
3295
3295
  pattern: "^\\d+$",
3296
3296
  type: "string"
@@ -3373,7 +3373,7 @@ var openapi_default = {
3373
3373
  type: "string"
3374
3374
  },
3375
3375
  code: {
3376
- maxLength: 8,
3376
+ maxLength: 9,
3377
3377
  minLength: 4,
3378
3378
  pattern: "^\\d+$",
3379
3379
  type: "string"
@@ -4103,7 +4103,7 @@ var openapi_default = {
4103
4103
  type: "boolean"
4104
4104
  },
4105
4105
  code: {
4106
- maxLength: 8,
4106
+ maxLength: 9,
4107
4107
  minLength: 4,
4108
4108
  pattern: "^\\d+$",
4109
4109
  type: "string"
@@ -4178,7 +4178,7 @@ var openapi_default = {
4178
4178
  type: "boolean"
4179
4179
  },
4180
4180
  code: {
4181
- maxLength: 8,
4181
+ maxLength: 9,
4182
4182
  minLength: 4,
4183
4183
  pattern: "^\\d+$",
4184
4184
  type: "string"
@@ -4254,7 +4254,7 @@ var openapi_default = {
4254
4254
  type: "boolean"
4255
4255
  },
4256
4256
  code: {
4257
- maxLength: 8,
4257
+ maxLength: 9,
4258
4258
  minLength: 4,
4259
4259
  pattern: "^\\d+$",
4260
4260
  type: "string"
@@ -5082,6 +5082,56 @@ var openapi_default = {
5082
5082
  "x-fern-sdk-return-value": "acs_credentials"
5083
5083
  }
5084
5084
  },
5085
+ "/acs/credentials/list_accessible_entrances": {
5086
+ post: {
5087
+ operationId: "acsCredentialsListAccessibleEntrancesPost",
5088
+ requestBody: {
5089
+ content: {
5090
+ "application/json": {
5091
+ schema: {
5092
+ properties: {
5093
+ acs_credential_id: { format: "uuid", type: "string" }
5094
+ },
5095
+ required: ["acs_credential_id"],
5096
+ type: "object"
5097
+ }
5098
+ }
5099
+ }
5100
+ },
5101
+ responses: {
5102
+ 200: {
5103
+ content: {
5104
+ "application/json": {
5105
+ schema: {
5106
+ properties: {
5107
+ acs_entrances: {
5108
+ items: { $ref: "#/components/schemas/acs_entrance" },
5109
+ type: "array"
5110
+ },
5111
+ ok: { type: "boolean" }
5112
+ },
5113
+ required: ["acs_entrances", "ok"],
5114
+ type: "object"
5115
+ }
5116
+ }
5117
+ },
5118
+ description: "OK"
5119
+ },
5120
+ 400: { description: "Bad Request" },
5121
+ 401: { description: "Unauthorized" }
5122
+ },
5123
+ security: [
5124
+ { api_key: [] },
5125
+ { pat_with_workspace: [] },
5126
+ { console_session: [] }
5127
+ ],
5128
+ summary: "/acs/credentials/list_accessible_entrances",
5129
+ tags: ["/acs"],
5130
+ "x-fern-sdk-group-name": ["acs", "credentials"],
5131
+ "x-fern-sdk-method-name": "list_accessible_entrances",
5132
+ "x-fern-sdk-return-value": "acs_entrances"
5133
+ }
5134
+ },
5085
5135
  "/acs/credentials/unassign": {
5086
5136
  patch: {
5087
5137
  operationId: "acsCredentialsUnassignPatch",
@@ -5573,6 +5623,56 @@ var openapi_default = {
5573
5623
  "x-fern-sdk-return-value": "acs_systems"
5574
5624
  }
5575
5625
  },
5626
+ "/acs/systems/list_compatible_credential_manager_acs_systems": {
5627
+ post: {
5628
+ operationId: "acsSystemsListCompatibleCredentialManagerAcsSystemsPost",
5629
+ requestBody: {
5630
+ content: {
5631
+ "application/json": {
5632
+ schema: {
5633
+ properties: {
5634
+ acs_system_id: { format: "uuid", type: "string" }
5635
+ },
5636
+ required: ["acs_system_id"],
5637
+ type: "object"
5638
+ }
5639
+ }
5640
+ }
5641
+ },
5642
+ responses: {
5643
+ 200: {
5644
+ content: {
5645
+ "application/json": {
5646
+ schema: {
5647
+ properties: {
5648
+ acs_systems: {
5649
+ items: { $ref: "#/components/schemas/acs_system" },
5650
+ type: "array"
5651
+ },
5652
+ ok: { type: "boolean" }
5653
+ },
5654
+ required: ["acs_systems", "ok"],
5655
+ type: "object"
5656
+ }
5657
+ }
5658
+ },
5659
+ description: "OK"
5660
+ },
5661
+ 400: { description: "Bad Request" },
5662
+ 401: { description: "Unauthorized" }
5663
+ },
5664
+ security: [
5665
+ { pat_with_workspace: [] },
5666
+ { console_session: [] },
5667
+ { api_key: [] }
5668
+ ],
5669
+ summary: "/acs/systems/list_compatible_credential_manager_acs_systems",
5670
+ tags: ["/acs"],
5671
+ "x-fern-sdk-group-name": ["acs", "systems"],
5672
+ "x-fern-sdk-method-name": "list_compatible_credential_manager_acs_systems",
5673
+ "x-fern-sdk-return-value": "acs_systems"
5674
+ }
5675
+ },
5576
5676
  "/acs/users/add_to_access_group": {
5577
5677
  post: {
5578
5678
  operationId: "acsUsersAddToAccessGroupPost",