@seamapi/types 1.171.0 → 1.172.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 +56 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +108 -0
- package/lib/seam/connect/openapi.d.ts +69 -0
- package/lib/seam/connect/openapi.js +56 -6
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +39 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +57 -6
- package/src/lib/seam/connect/route-types.ts +61 -0
package/dist/connect.cjs
CHANGED
|
@@ -3207,7 +3207,7 @@ var openapi_default = {
|
|
|
3207
3207
|
type: "boolean"
|
|
3208
3208
|
},
|
|
3209
3209
|
code: {
|
|
3210
|
-
maxLength:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
4257
|
+
maxLength: 9,
|
|
4258
4258
|
minLength: 4,
|
|
4259
4259
|
pattern: "^\\d+$",
|
|
4260
4260
|
type: "string"
|
|
@@ -5573,6 +5573,56 @@ var openapi_default = {
|
|
|
5573
5573
|
"x-fern-sdk-return-value": "acs_systems"
|
|
5574
5574
|
}
|
|
5575
5575
|
},
|
|
5576
|
+
"/acs/systems/list_compatible_credential_manager_acs_systems": {
|
|
5577
|
+
post: {
|
|
5578
|
+
operationId: "acsSystemsListCompatibleCredentialManagerAcsSystemsPost",
|
|
5579
|
+
requestBody: {
|
|
5580
|
+
content: {
|
|
5581
|
+
"application/json": {
|
|
5582
|
+
schema: {
|
|
5583
|
+
properties: {
|
|
5584
|
+
acs_system_id: { format: "uuid", type: "string" }
|
|
5585
|
+
},
|
|
5586
|
+
required: ["acs_system_id"],
|
|
5587
|
+
type: "object"
|
|
5588
|
+
}
|
|
5589
|
+
}
|
|
5590
|
+
}
|
|
5591
|
+
},
|
|
5592
|
+
responses: {
|
|
5593
|
+
200: {
|
|
5594
|
+
content: {
|
|
5595
|
+
"application/json": {
|
|
5596
|
+
schema: {
|
|
5597
|
+
properties: {
|
|
5598
|
+
acs_systems: {
|
|
5599
|
+
items: { $ref: "#/components/schemas/acs_system" },
|
|
5600
|
+
type: "array"
|
|
5601
|
+
},
|
|
5602
|
+
ok: { type: "boolean" }
|
|
5603
|
+
},
|
|
5604
|
+
required: ["acs_systems", "ok"],
|
|
5605
|
+
type: "object"
|
|
5606
|
+
}
|
|
5607
|
+
}
|
|
5608
|
+
},
|
|
5609
|
+
description: "OK"
|
|
5610
|
+
},
|
|
5611
|
+
400: { description: "Bad Request" },
|
|
5612
|
+
401: { description: "Unauthorized" }
|
|
5613
|
+
},
|
|
5614
|
+
security: [
|
|
5615
|
+
{ pat_with_workspace: [] },
|
|
5616
|
+
{ console_session: [] },
|
|
5617
|
+
{ api_key: [] }
|
|
5618
|
+
],
|
|
5619
|
+
summary: "/acs/systems/list_compatible_credential_manager_acs_systems",
|
|
5620
|
+
tags: ["/acs"],
|
|
5621
|
+
"x-fern-sdk-group-name": ["acs", "systems"],
|
|
5622
|
+
"x-fern-sdk-method-name": "list_compatible_credential_manager_acs_systems",
|
|
5623
|
+
"x-fern-sdk-return-value": "acs_systems"
|
|
5624
|
+
}
|
|
5625
|
+
},
|
|
5576
5626
|
"/acs/users/add_to_access_group": {
|
|
5577
5627
|
post: {
|
|
5578
5628
|
operationId: "acsUsersAddToAccessGroupPost",
|