@seamapi/types 1.234.0 → 1.235.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 +211 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +343 -3
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +45 -2
- package/lib/seam/connect/models/acs/acs-access-group.js +7 -1
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +236 -0
- package/lib/seam/connect/openapi.js +202 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +61 -0
- package/lib/seam/connect/schemas.d.ts +1 -1
- package/lib/seam/connect/schemas.js +1 -1
- package/lib/seam/connect/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +11 -1
- package/src/lib/seam/connect/openapi.ts +202 -0
- package/src/lib/seam/connect/route-types.ts +77 -0
- package/src/lib/seam/connect/schemas.ts +1 -0
|
@@ -207,6 +207,10 @@ declare const _default: {
|
|
|
207
207
|
external_type_display_name: {
|
|
208
208
|
type: string;
|
|
209
209
|
};
|
|
210
|
+
is_managed: {
|
|
211
|
+
enum: boolean[];
|
|
212
|
+
type: string;
|
|
213
|
+
};
|
|
210
214
|
name: {
|
|
211
215
|
type: string;
|
|
212
216
|
};
|
|
@@ -5815,6 +5819,238 @@ declare const _default: {
|
|
|
5815
5819
|
'x-fern-sdk-method-name': string;
|
|
5816
5820
|
};
|
|
5817
5821
|
};
|
|
5822
|
+
'/acs/access_groups/unmanaged/get': {
|
|
5823
|
+
post: {
|
|
5824
|
+
operationId: string;
|
|
5825
|
+
requestBody: {
|
|
5826
|
+
content: {
|
|
5827
|
+
'application/json': {
|
|
5828
|
+
schema: {
|
|
5829
|
+
properties: {
|
|
5830
|
+
acs_access_group_id: {
|
|
5831
|
+
format: string;
|
|
5832
|
+
type: string;
|
|
5833
|
+
};
|
|
5834
|
+
};
|
|
5835
|
+
required: string[];
|
|
5836
|
+
type: string;
|
|
5837
|
+
};
|
|
5838
|
+
};
|
|
5839
|
+
};
|
|
5840
|
+
};
|
|
5841
|
+
responses: {
|
|
5842
|
+
200: {
|
|
5843
|
+
content: {
|
|
5844
|
+
'application/json': {
|
|
5845
|
+
schema: {
|
|
5846
|
+
properties: {
|
|
5847
|
+
acs_access_group: {
|
|
5848
|
+
properties: {
|
|
5849
|
+
access_group_type: {
|
|
5850
|
+
deprecated: boolean;
|
|
5851
|
+
enum: string[];
|
|
5852
|
+
type: string;
|
|
5853
|
+
'x-deprecated': string;
|
|
5854
|
+
};
|
|
5855
|
+
access_group_type_display_name: {
|
|
5856
|
+
deprecated: boolean;
|
|
5857
|
+
type: string;
|
|
5858
|
+
'x-deprecated': string;
|
|
5859
|
+
};
|
|
5860
|
+
acs_access_group_id: {
|
|
5861
|
+
format: string;
|
|
5862
|
+
type: string;
|
|
5863
|
+
};
|
|
5864
|
+
acs_system_id: {
|
|
5865
|
+
format: string;
|
|
5866
|
+
type: string;
|
|
5867
|
+
};
|
|
5868
|
+
created_at: {
|
|
5869
|
+
format: string;
|
|
5870
|
+
type: string;
|
|
5871
|
+
};
|
|
5872
|
+
display_name: {
|
|
5873
|
+
type: string;
|
|
5874
|
+
};
|
|
5875
|
+
external_type: {
|
|
5876
|
+
enum: string[];
|
|
5877
|
+
type: string;
|
|
5878
|
+
};
|
|
5879
|
+
external_type_display_name: {
|
|
5880
|
+
type: string;
|
|
5881
|
+
};
|
|
5882
|
+
is_managed: {
|
|
5883
|
+
enum: boolean[];
|
|
5884
|
+
type: string;
|
|
5885
|
+
};
|
|
5886
|
+
name: {
|
|
5887
|
+
type: string;
|
|
5888
|
+
};
|
|
5889
|
+
workspace_id: {
|
|
5890
|
+
format: string;
|
|
5891
|
+
type: string;
|
|
5892
|
+
};
|
|
5893
|
+
};
|
|
5894
|
+
required: string[];
|
|
5895
|
+
type: string;
|
|
5896
|
+
};
|
|
5897
|
+
ok: {
|
|
5898
|
+
type: string;
|
|
5899
|
+
};
|
|
5900
|
+
};
|
|
5901
|
+
required: string[];
|
|
5902
|
+
type: string;
|
|
5903
|
+
};
|
|
5904
|
+
};
|
|
5905
|
+
};
|
|
5906
|
+
description: string;
|
|
5907
|
+
};
|
|
5908
|
+
400: {
|
|
5909
|
+
description: string;
|
|
5910
|
+
};
|
|
5911
|
+
401: {
|
|
5912
|
+
description: string;
|
|
5913
|
+
};
|
|
5914
|
+
};
|
|
5915
|
+
security: ({
|
|
5916
|
+
pat_with_workspace: never[];
|
|
5917
|
+
console_session?: never;
|
|
5918
|
+
api_key?: never;
|
|
5919
|
+
} | {
|
|
5920
|
+
console_session: never[];
|
|
5921
|
+
pat_with_workspace?: never;
|
|
5922
|
+
api_key?: never;
|
|
5923
|
+
} | {
|
|
5924
|
+
api_key: never[];
|
|
5925
|
+
pat_with_workspace?: never;
|
|
5926
|
+
console_session?: never;
|
|
5927
|
+
})[];
|
|
5928
|
+
summary: string;
|
|
5929
|
+
tags: string[];
|
|
5930
|
+
'x-fern-sdk-group-name': string[];
|
|
5931
|
+
'x-fern-sdk-method-name': string;
|
|
5932
|
+
'x-fern-sdk-return-value': string;
|
|
5933
|
+
};
|
|
5934
|
+
};
|
|
5935
|
+
'/acs/access_groups/unmanaged/list': {
|
|
5936
|
+
post: {
|
|
5937
|
+
operationId: string;
|
|
5938
|
+
requestBody: {
|
|
5939
|
+
content: {
|
|
5940
|
+
'application/json': {
|
|
5941
|
+
schema: {
|
|
5942
|
+
properties: {
|
|
5943
|
+
acs_system_id: {
|
|
5944
|
+
format: string;
|
|
5945
|
+
type: string;
|
|
5946
|
+
};
|
|
5947
|
+
acs_user_id: {
|
|
5948
|
+
format: string;
|
|
5949
|
+
type: string;
|
|
5950
|
+
};
|
|
5951
|
+
};
|
|
5952
|
+
type: string;
|
|
5953
|
+
};
|
|
5954
|
+
};
|
|
5955
|
+
};
|
|
5956
|
+
};
|
|
5957
|
+
responses: {
|
|
5958
|
+
200: {
|
|
5959
|
+
content: {
|
|
5960
|
+
'application/json': {
|
|
5961
|
+
schema: {
|
|
5962
|
+
properties: {
|
|
5963
|
+
acs_access_groups: {
|
|
5964
|
+
items: {
|
|
5965
|
+
properties: {
|
|
5966
|
+
access_group_type: {
|
|
5967
|
+
deprecated: boolean;
|
|
5968
|
+
enum: string[];
|
|
5969
|
+
type: string;
|
|
5970
|
+
'x-deprecated': string;
|
|
5971
|
+
};
|
|
5972
|
+
access_group_type_display_name: {
|
|
5973
|
+
deprecated: boolean;
|
|
5974
|
+
type: string;
|
|
5975
|
+
'x-deprecated': string;
|
|
5976
|
+
};
|
|
5977
|
+
acs_access_group_id: {
|
|
5978
|
+
format: string;
|
|
5979
|
+
type: string;
|
|
5980
|
+
};
|
|
5981
|
+
acs_system_id: {
|
|
5982
|
+
format: string;
|
|
5983
|
+
type: string;
|
|
5984
|
+
};
|
|
5985
|
+
created_at: {
|
|
5986
|
+
format: string;
|
|
5987
|
+
type: string;
|
|
5988
|
+
};
|
|
5989
|
+
display_name: {
|
|
5990
|
+
type: string;
|
|
5991
|
+
};
|
|
5992
|
+
external_type: {
|
|
5993
|
+
enum: string[];
|
|
5994
|
+
type: string;
|
|
5995
|
+
};
|
|
5996
|
+
external_type_display_name: {
|
|
5997
|
+
type: string;
|
|
5998
|
+
};
|
|
5999
|
+
is_managed: {
|
|
6000
|
+
enum: boolean[];
|
|
6001
|
+
type: string;
|
|
6002
|
+
};
|
|
6003
|
+
name: {
|
|
6004
|
+
type: string;
|
|
6005
|
+
};
|
|
6006
|
+
workspace_id: {
|
|
6007
|
+
format: string;
|
|
6008
|
+
type: string;
|
|
6009
|
+
};
|
|
6010
|
+
};
|
|
6011
|
+
required: string[];
|
|
6012
|
+
type: string;
|
|
6013
|
+
};
|
|
6014
|
+
type: string;
|
|
6015
|
+
};
|
|
6016
|
+
ok: {
|
|
6017
|
+
type: string;
|
|
6018
|
+
};
|
|
6019
|
+
};
|
|
6020
|
+
required: string[];
|
|
6021
|
+
type: string;
|
|
6022
|
+
};
|
|
6023
|
+
};
|
|
6024
|
+
};
|
|
6025
|
+
description: string;
|
|
6026
|
+
};
|
|
6027
|
+
400: {
|
|
6028
|
+
description: string;
|
|
6029
|
+
};
|
|
6030
|
+
401: {
|
|
6031
|
+
description: string;
|
|
6032
|
+
};
|
|
6033
|
+
};
|
|
6034
|
+
security: ({
|
|
6035
|
+
pat_with_workspace: never[];
|
|
6036
|
+
console_session?: never;
|
|
6037
|
+
api_key?: never;
|
|
6038
|
+
} | {
|
|
6039
|
+
console_session: never[];
|
|
6040
|
+
pat_with_workspace?: never;
|
|
6041
|
+
api_key?: never;
|
|
6042
|
+
} | {
|
|
6043
|
+
api_key: never[];
|
|
6044
|
+
pat_with_workspace?: never;
|
|
6045
|
+
console_session?: never;
|
|
6046
|
+
})[];
|
|
6047
|
+
summary: string;
|
|
6048
|
+
tags: string[];
|
|
6049
|
+
'x-fern-sdk-group-name': string[];
|
|
6050
|
+
'x-fern-sdk-method-name': string;
|
|
6051
|
+
'x-fern-sdk-return-value': string;
|
|
6052
|
+
};
|
|
6053
|
+
};
|
|
5818
6054
|
'/acs/credential_pools/list': {
|
|
5819
6055
|
post: {
|
|
5820
6056
|
operationId: string;
|
|
@@ -200,6 +200,7 @@ export default {
|
|
|
200
200
|
type: 'string',
|
|
201
201
|
},
|
|
202
202
|
external_type_display_name: { type: 'string' },
|
|
203
|
+
is_managed: { enum: [true], type: 'boolean' },
|
|
203
204
|
name: { type: 'string' },
|
|
204
205
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
205
206
|
},
|
|
@@ -214,6 +215,7 @@ export default {
|
|
|
214
215
|
'external_type',
|
|
215
216
|
'external_type_display_name',
|
|
216
217
|
'created_at',
|
|
218
|
+
'is_managed',
|
|
217
219
|
],
|
|
218
220
|
type: 'object',
|
|
219
221
|
},
|
|
@@ -5377,6 +5379,206 @@ export default {
|
|
|
5377
5379
|
'x-fern-sdk-method-name': 'remove_user',
|
|
5378
5380
|
},
|
|
5379
5381
|
},
|
|
5382
|
+
'/acs/access_groups/unmanaged/get': {
|
|
5383
|
+
post: {
|
|
5384
|
+
operationId: 'acsAccessGroupsUnmanagedGetPost',
|
|
5385
|
+
requestBody: {
|
|
5386
|
+
content: {
|
|
5387
|
+
'application/json': {
|
|
5388
|
+
schema: {
|
|
5389
|
+
properties: {
|
|
5390
|
+
acs_access_group_id: { format: 'uuid', type: 'string' },
|
|
5391
|
+
},
|
|
5392
|
+
required: ['acs_access_group_id'],
|
|
5393
|
+
type: 'object',
|
|
5394
|
+
},
|
|
5395
|
+
},
|
|
5396
|
+
},
|
|
5397
|
+
},
|
|
5398
|
+
responses: {
|
|
5399
|
+
200: {
|
|
5400
|
+
content: {
|
|
5401
|
+
'application/json': {
|
|
5402
|
+
schema: {
|
|
5403
|
+
properties: {
|
|
5404
|
+
acs_access_group: {
|
|
5405
|
+
properties: {
|
|
5406
|
+
access_group_type: {
|
|
5407
|
+
deprecated: true,
|
|
5408
|
+
enum: [
|
|
5409
|
+
'pti_unit',
|
|
5410
|
+
'pti_access_level',
|
|
5411
|
+
'salto_access_group',
|
|
5412
|
+
'brivo_group',
|
|
5413
|
+
],
|
|
5414
|
+
type: 'string',
|
|
5415
|
+
'x-deprecated': 'use external_type',
|
|
5416
|
+
},
|
|
5417
|
+
access_group_type_display_name: {
|
|
5418
|
+
deprecated: true,
|
|
5419
|
+
type: 'string',
|
|
5420
|
+
'x-deprecated': 'use external_type_display_name',
|
|
5421
|
+
},
|
|
5422
|
+
acs_access_group_id: { format: 'uuid', type: 'string' },
|
|
5423
|
+
acs_system_id: { format: 'uuid', type: 'string' },
|
|
5424
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
5425
|
+
display_name: { type: 'string' },
|
|
5426
|
+
external_type: {
|
|
5427
|
+
enum: [
|
|
5428
|
+
'pti_unit',
|
|
5429
|
+
'pti_access_level',
|
|
5430
|
+
'salto_access_group',
|
|
5431
|
+
'brivo_group',
|
|
5432
|
+
],
|
|
5433
|
+
type: 'string',
|
|
5434
|
+
},
|
|
5435
|
+
external_type_display_name: { type: 'string' },
|
|
5436
|
+
is_managed: { enum: [false], type: 'boolean' },
|
|
5437
|
+
name: { type: 'string' },
|
|
5438
|
+
workspace_id: { format: 'uuid', type: 'string' },
|
|
5439
|
+
},
|
|
5440
|
+
required: [
|
|
5441
|
+
'acs_access_group_id',
|
|
5442
|
+
'acs_system_id',
|
|
5443
|
+
'workspace_id',
|
|
5444
|
+
'name',
|
|
5445
|
+
'access_group_type',
|
|
5446
|
+
'access_group_type_display_name',
|
|
5447
|
+
'display_name',
|
|
5448
|
+
'external_type',
|
|
5449
|
+
'external_type_display_name',
|
|
5450
|
+
'created_at',
|
|
5451
|
+
'is_managed',
|
|
5452
|
+
],
|
|
5453
|
+
type: 'object',
|
|
5454
|
+
},
|
|
5455
|
+
ok: { type: 'boolean' },
|
|
5456
|
+
},
|
|
5457
|
+
required: ['acs_access_group', 'ok'],
|
|
5458
|
+
type: 'object',
|
|
5459
|
+
},
|
|
5460
|
+
},
|
|
5461
|
+
},
|
|
5462
|
+
description: 'OK',
|
|
5463
|
+
},
|
|
5464
|
+
400: { description: 'Bad Request' },
|
|
5465
|
+
401: { description: 'Unauthorized' },
|
|
5466
|
+
},
|
|
5467
|
+
security: [
|
|
5468
|
+
{ pat_with_workspace: [] },
|
|
5469
|
+
{ console_session: [] },
|
|
5470
|
+
{ api_key: [] },
|
|
5471
|
+
],
|
|
5472
|
+
summary: '/acs/access_groups/unmanaged/get',
|
|
5473
|
+
tags: ['/acs'],
|
|
5474
|
+
'x-fern-sdk-group-name': ['acs', 'access_groups', 'unmanaged'],
|
|
5475
|
+
'x-fern-sdk-method-name': 'get',
|
|
5476
|
+
'x-fern-sdk-return-value': 'acs_users',
|
|
5477
|
+
},
|
|
5478
|
+
},
|
|
5479
|
+
'/acs/access_groups/unmanaged/list': {
|
|
5480
|
+
post: {
|
|
5481
|
+
operationId: 'acsAccessGroupsUnmanagedListPost',
|
|
5482
|
+
requestBody: {
|
|
5483
|
+
content: {
|
|
5484
|
+
'application/json': {
|
|
5485
|
+
schema: {
|
|
5486
|
+
properties: {
|
|
5487
|
+
acs_system_id: { format: 'uuid', type: 'string' },
|
|
5488
|
+
acs_user_id: { format: 'uuid', type: 'string' },
|
|
5489
|
+
},
|
|
5490
|
+
type: 'object',
|
|
5491
|
+
},
|
|
5492
|
+
},
|
|
5493
|
+
},
|
|
5494
|
+
},
|
|
5495
|
+
responses: {
|
|
5496
|
+
200: {
|
|
5497
|
+
content: {
|
|
5498
|
+
'application/json': {
|
|
5499
|
+
schema: {
|
|
5500
|
+
properties: {
|
|
5501
|
+
acs_access_groups: {
|
|
5502
|
+
items: {
|
|
5503
|
+
properties: {
|
|
5504
|
+
access_group_type: {
|
|
5505
|
+
deprecated: true,
|
|
5506
|
+
enum: [
|
|
5507
|
+
'pti_unit',
|
|
5508
|
+
'pti_access_level',
|
|
5509
|
+
'salto_access_group',
|
|
5510
|
+
'brivo_group',
|
|
5511
|
+
],
|
|
5512
|
+
type: 'string',
|
|
5513
|
+
'x-deprecated': 'use external_type',
|
|
5514
|
+
},
|
|
5515
|
+
access_group_type_display_name: {
|
|
5516
|
+
deprecated: true,
|
|
5517
|
+
type: 'string',
|
|
5518
|
+
'x-deprecated': 'use external_type_display_name',
|
|
5519
|
+
},
|
|
5520
|
+
acs_access_group_id: {
|
|
5521
|
+
format: 'uuid',
|
|
5522
|
+
type: 'string',
|
|
5523
|
+
},
|
|
5524
|
+
acs_system_id: { format: 'uuid', type: 'string' },
|
|
5525
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
5526
|
+
display_name: { type: 'string' },
|
|
5527
|
+
external_type: {
|
|
5528
|
+
enum: [
|
|
5529
|
+
'pti_unit',
|
|
5530
|
+
'pti_access_level',
|
|
5531
|
+
'salto_access_group',
|
|
5532
|
+
'brivo_group',
|
|
5533
|
+
],
|
|
5534
|
+
type: 'string',
|
|
5535
|
+
},
|
|
5536
|
+
external_type_display_name: { type: 'string' },
|
|
5537
|
+
is_managed: { enum: [false], type: 'boolean' },
|
|
5538
|
+
name: { type: 'string' },
|
|
5539
|
+
workspace_id: { format: 'uuid', type: 'string' },
|
|
5540
|
+
},
|
|
5541
|
+
required: [
|
|
5542
|
+
'acs_access_group_id',
|
|
5543
|
+
'acs_system_id',
|
|
5544
|
+
'workspace_id',
|
|
5545
|
+
'name',
|
|
5546
|
+
'access_group_type',
|
|
5547
|
+
'access_group_type_display_name',
|
|
5548
|
+
'display_name',
|
|
5549
|
+
'external_type',
|
|
5550
|
+
'external_type_display_name',
|
|
5551
|
+
'created_at',
|
|
5552
|
+
'is_managed',
|
|
5553
|
+
],
|
|
5554
|
+
type: 'object',
|
|
5555
|
+
},
|
|
5556
|
+
type: 'array',
|
|
5557
|
+
},
|
|
5558
|
+
ok: { type: 'boolean' },
|
|
5559
|
+
},
|
|
5560
|
+
required: ['acs_access_groups', 'ok'],
|
|
5561
|
+
type: 'object',
|
|
5562
|
+
},
|
|
5563
|
+
},
|
|
5564
|
+
},
|
|
5565
|
+
description: 'OK',
|
|
5566
|
+
},
|
|
5567
|
+
400: { description: 'Bad Request' },
|
|
5568
|
+
401: { description: 'Unauthorized' },
|
|
5569
|
+
},
|
|
5570
|
+
security: [
|
|
5571
|
+
{ pat_with_workspace: [] },
|
|
5572
|
+
{ console_session: [] },
|
|
5573
|
+
{ api_key: [] },
|
|
5574
|
+
],
|
|
5575
|
+
summary: '/acs/access_groups/unmanaged/list',
|
|
5576
|
+
tags: ['/acs'],
|
|
5577
|
+
'x-fern-sdk-group-name': ['acs', 'access_groups', 'unmanaged'],
|
|
5578
|
+
'x-fern-sdk-method-name': 'list',
|
|
5579
|
+
'x-fern-sdk-return-value': 'acs_users',
|
|
5580
|
+
},
|
|
5581
|
+
},
|
|
5380
5582
|
'/acs/credential_pools/list': {
|
|
5381
5583
|
post: {
|
|
5382
5584
|
operationId: 'acsCredentialPoolsListPost',
|