@seamapi/types 1.777.0 → 1.778.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 +109 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +298 -0
- package/dist/index.cjs +109 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +153 -0
- package/lib/seam/connect/openapi.js +109 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +145 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +113 -0
- package/src/lib/seam/connect/route-types.ts +174 -0
|
@@ -68935,6 +68935,159 @@ declare const _default: {
|
|
|
68935
68935
|
'x-title': string;
|
|
68936
68936
|
};
|
|
68937
68937
|
};
|
|
68938
|
+
'/user_identities/list_accessible_entrances': {
|
|
68939
|
+
get: {
|
|
68940
|
+
description: string;
|
|
68941
|
+
operationId: string;
|
|
68942
|
+
parameters: {
|
|
68943
|
+
in: string;
|
|
68944
|
+
name: string;
|
|
68945
|
+
required: boolean;
|
|
68946
|
+
schema: {
|
|
68947
|
+
description: string;
|
|
68948
|
+
format: string;
|
|
68949
|
+
type: string;
|
|
68950
|
+
};
|
|
68951
|
+
}[];
|
|
68952
|
+
responses: {
|
|
68953
|
+
200: {
|
|
68954
|
+
content: {
|
|
68955
|
+
'application/json': {
|
|
68956
|
+
schema: {
|
|
68957
|
+
properties: {
|
|
68958
|
+
acs_entrances: {
|
|
68959
|
+
items: {
|
|
68960
|
+
$ref: string;
|
|
68961
|
+
};
|
|
68962
|
+
type: string;
|
|
68963
|
+
};
|
|
68964
|
+
ok: {
|
|
68965
|
+
type: string;
|
|
68966
|
+
};
|
|
68967
|
+
};
|
|
68968
|
+
required: string[];
|
|
68969
|
+
type: string;
|
|
68970
|
+
};
|
|
68971
|
+
};
|
|
68972
|
+
};
|
|
68973
|
+
description: string;
|
|
68974
|
+
};
|
|
68975
|
+
400: {
|
|
68976
|
+
description: string;
|
|
68977
|
+
};
|
|
68978
|
+
401: {
|
|
68979
|
+
description: string;
|
|
68980
|
+
};
|
|
68981
|
+
};
|
|
68982
|
+
security: ({
|
|
68983
|
+
client_session: never[];
|
|
68984
|
+
pat_with_workspace?: never;
|
|
68985
|
+
console_session_with_workspace?: never;
|
|
68986
|
+
api_key?: never;
|
|
68987
|
+
} | {
|
|
68988
|
+
pat_with_workspace: never[];
|
|
68989
|
+
client_session?: never;
|
|
68990
|
+
console_session_with_workspace?: never;
|
|
68991
|
+
api_key?: never;
|
|
68992
|
+
} | {
|
|
68993
|
+
console_session_with_workspace: never[];
|
|
68994
|
+
client_session?: never;
|
|
68995
|
+
pat_with_workspace?: never;
|
|
68996
|
+
api_key?: never;
|
|
68997
|
+
} | {
|
|
68998
|
+
api_key: never[];
|
|
68999
|
+
client_session?: never;
|
|
69000
|
+
pat_with_workspace?: never;
|
|
69001
|
+
console_session_with_workspace?: never;
|
|
69002
|
+
})[];
|
|
69003
|
+
summary: string;
|
|
69004
|
+
tags: string[];
|
|
69005
|
+
'x-fern-sdk-group-name': string[];
|
|
69006
|
+
'x-fern-sdk-method-name': string;
|
|
69007
|
+
'x-fern-sdk-return-value': string;
|
|
69008
|
+
'x-response-key': string;
|
|
69009
|
+
'x-title': string;
|
|
69010
|
+
};
|
|
69011
|
+
post: {
|
|
69012
|
+
description: string;
|
|
69013
|
+
operationId: string;
|
|
69014
|
+
requestBody: {
|
|
69015
|
+
content: {
|
|
69016
|
+
'application/json': {
|
|
69017
|
+
schema: {
|
|
69018
|
+
properties: {
|
|
69019
|
+
user_identity_id: {
|
|
69020
|
+
description: string;
|
|
69021
|
+
format: string;
|
|
69022
|
+
type: string;
|
|
69023
|
+
};
|
|
69024
|
+
};
|
|
69025
|
+
required: string[];
|
|
69026
|
+
type: string;
|
|
69027
|
+
};
|
|
69028
|
+
};
|
|
69029
|
+
};
|
|
69030
|
+
};
|
|
69031
|
+
responses: {
|
|
69032
|
+
200: {
|
|
69033
|
+
content: {
|
|
69034
|
+
'application/json': {
|
|
69035
|
+
schema: {
|
|
69036
|
+
properties: {
|
|
69037
|
+
acs_entrances: {
|
|
69038
|
+
items: {
|
|
69039
|
+
$ref: string;
|
|
69040
|
+
};
|
|
69041
|
+
type: string;
|
|
69042
|
+
};
|
|
69043
|
+
ok: {
|
|
69044
|
+
type: string;
|
|
69045
|
+
};
|
|
69046
|
+
};
|
|
69047
|
+
required: string[];
|
|
69048
|
+
type: string;
|
|
69049
|
+
};
|
|
69050
|
+
};
|
|
69051
|
+
};
|
|
69052
|
+
description: string;
|
|
69053
|
+
};
|
|
69054
|
+
400: {
|
|
69055
|
+
description: string;
|
|
69056
|
+
};
|
|
69057
|
+
401: {
|
|
69058
|
+
description: string;
|
|
69059
|
+
};
|
|
69060
|
+
};
|
|
69061
|
+
security: ({
|
|
69062
|
+
client_session: never[];
|
|
69063
|
+
pat_with_workspace?: never;
|
|
69064
|
+
console_session_with_workspace?: never;
|
|
69065
|
+
api_key?: never;
|
|
69066
|
+
} | {
|
|
69067
|
+
pat_with_workspace: never[];
|
|
69068
|
+
client_session?: never;
|
|
69069
|
+
console_session_with_workspace?: never;
|
|
69070
|
+
api_key?: never;
|
|
69071
|
+
} | {
|
|
69072
|
+
console_session_with_workspace: never[];
|
|
69073
|
+
client_session?: never;
|
|
69074
|
+
pat_with_workspace?: never;
|
|
69075
|
+
api_key?: never;
|
|
69076
|
+
} | {
|
|
69077
|
+
api_key: never[];
|
|
69078
|
+
client_session?: never;
|
|
69079
|
+
pat_with_workspace?: never;
|
|
69080
|
+
console_session_with_workspace?: never;
|
|
69081
|
+
})[];
|
|
69082
|
+
summary: string;
|
|
69083
|
+
tags: string[];
|
|
69084
|
+
'x-fern-sdk-group-name': string[];
|
|
69085
|
+
'x-fern-sdk-method-name': string;
|
|
69086
|
+
'x-fern-sdk-return-value': string;
|
|
69087
|
+
'x-response-key': string;
|
|
69088
|
+
'x-title': string;
|
|
69089
|
+
};
|
|
69090
|
+
};
|
|
68938
69091
|
'/user_identities/list_acs_systems': {
|
|
68939
69092
|
get: {
|
|
68940
69093
|
description: string;
|
|
@@ -72517,6 +72517,115 @@ export default {
|
|
|
72517
72517
|
'x-title': 'List Accessible Devices for a User Identity',
|
|
72518
72518
|
},
|
|
72519
72519
|
},
|
|
72520
|
+
'/user_identities/list_accessible_entrances': {
|
|
72521
|
+
get: {
|
|
72522
|
+
description: 'Returns a list of all [ACS entrances](https://docs.seam.co/latest/api/acs/entrances) accessible to a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity). This includes entrances derived from the access grants assigned to the user identity and entrances accessible through ACS users linked to the user identity.',
|
|
72523
|
+
operationId: 'userIdentitiesListAccessibleEntrancesGet',
|
|
72524
|
+
parameters: [
|
|
72525
|
+
{
|
|
72526
|
+
in: 'query',
|
|
72527
|
+
name: 'user_identity_id',
|
|
72528
|
+
required: true,
|
|
72529
|
+
schema: {
|
|
72530
|
+
description: 'ID of the user identity for which you want to retrieve all accessible entrances.',
|
|
72531
|
+
format: 'uuid',
|
|
72532
|
+
type: 'string',
|
|
72533
|
+
},
|
|
72534
|
+
},
|
|
72535
|
+
],
|
|
72536
|
+
responses: {
|
|
72537
|
+
200: {
|
|
72538
|
+
content: {
|
|
72539
|
+
'application/json': {
|
|
72540
|
+
schema: {
|
|
72541
|
+
properties: {
|
|
72542
|
+
acs_entrances: {
|
|
72543
|
+
items: { $ref: '#/components/schemas/acs_entrance' },
|
|
72544
|
+
type: 'array',
|
|
72545
|
+
},
|
|
72546
|
+
ok: { type: 'boolean' },
|
|
72547
|
+
},
|
|
72548
|
+
required: ['acs_entrances', 'ok'],
|
|
72549
|
+
type: 'object',
|
|
72550
|
+
},
|
|
72551
|
+
},
|
|
72552
|
+
},
|
|
72553
|
+
description: 'OK',
|
|
72554
|
+
},
|
|
72555
|
+
400: { description: 'Bad Request' },
|
|
72556
|
+
401: { description: 'Unauthorized' },
|
|
72557
|
+
},
|
|
72558
|
+
security: [
|
|
72559
|
+
{ client_session: [] },
|
|
72560
|
+
{ pat_with_workspace: [] },
|
|
72561
|
+
{ console_session_with_workspace: [] },
|
|
72562
|
+
{ api_key: [] },
|
|
72563
|
+
],
|
|
72564
|
+
summary: '/user_identities/list_accessible_entrances',
|
|
72565
|
+
tags: ['/user_identities'],
|
|
72566
|
+
'x-fern-sdk-group-name': ['user_identities'],
|
|
72567
|
+
'x-fern-sdk-method-name': 'list_accessible_entrances',
|
|
72568
|
+
'x-fern-sdk-return-value': 'acs_entrances',
|
|
72569
|
+
'x-response-key': 'acs_entrances',
|
|
72570
|
+
'x-title': 'List Accessible Entrances for a User Identity',
|
|
72571
|
+
},
|
|
72572
|
+
post: {
|
|
72573
|
+
description: 'Returns a list of all [ACS entrances](https://docs.seam.co/latest/api/acs/entrances) accessible to a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity). This includes entrances derived from the access grants assigned to the user identity and entrances accessible through ACS users linked to the user identity.',
|
|
72574
|
+
operationId: 'userIdentitiesListAccessibleEntrancesPost',
|
|
72575
|
+
requestBody: {
|
|
72576
|
+
content: {
|
|
72577
|
+
'application/json': {
|
|
72578
|
+
schema: {
|
|
72579
|
+
properties: {
|
|
72580
|
+
user_identity_id: {
|
|
72581
|
+
description: 'ID of the user identity for which you want to retrieve all accessible entrances.',
|
|
72582
|
+
format: 'uuid',
|
|
72583
|
+
type: 'string',
|
|
72584
|
+
},
|
|
72585
|
+
},
|
|
72586
|
+
required: ['user_identity_id'],
|
|
72587
|
+
type: 'object',
|
|
72588
|
+
},
|
|
72589
|
+
},
|
|
72590
|
+
},
|
|
72591
|
+
},
|
|
72592
|
+
responses: {
|
|
72593
|
+
200: {
|
|
72594
|
+
content: {
|
|
72595
|
+
'application/json': {
|
|
72596
|
+
schema: {
|
|
72597
|
+
properties: {
|
|
72598
|
+
acs_entrances: {
|
|
72599
|
+
items: { $ref: '#/components/schemas/acs_entrance' },
|
|
72600
|
+
type: 'array',
|
|
72601
|
+
},
|
|
72602
|
+
ok: { type: 'boolean' },
|
|
72603
|
+
},
|
|
72604
|
+
required: ['acs_entrances', 'ok'],
|
|
72605
|
+
type: 'object',
|
|
72606
|
+
},
|
|
72607
|
+
},
|
|
72608
|
+
},
|
|
72609
|
+
description: 'OK',
|
|
72610
|
+
},
|
|
72611
|
+
400: { description: 'Bad Request' },
|
|
72612
|
+
401: { description: 'Unauthorized' },
|
|
72613
|
+
},
|
|
72614
|
+
security: [
|
|
72615
|
+
{ client_session: [] },
|
|
72616
|
+
{ pat_with_workspace: [] },
|
|
72617
|
+
{ console_session_with_workspace: [] },
|
|
72618
|
+
{ api_key: [] },
|
|
72619
|
+
],
|
|
72620
|
+
summary: '/user_identities/list_accessible_entrances',
|
|
72621
|
+
tags: ['/user_identities'],
|
|
72622
|
+
'x-fern-sdk-group-name': ['user_identities'],
|
|
72623
|
+
'x-fern-sdk-method-name': 'list_accessible_entrances',
|
|
72624
|
+
'x-fern-sdk-return-value': 'acs_entrances',
|
|
72625
|
+
'x-response-key': 'acs_entrances',
|
|
72626
|
+
'x-title': 'List Accessible Entrances for a User Identity',
|
|
72627
|
+
},
|
|
72628
|
+
},
|
|
72520
72629
|
'/user_identities/list_acs_systems': {
|
|
72521
72630
|
get: {
|
|
72522
72631
|
description: 'Returns a list of all [access systems](https://docs.seam.co/latest/capability-guides/access-systems) associated with a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).',
|