@seamapi/types 1.584.0 → 1.585.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 +2789 -396
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2916 -336
- package/dist/index.cjs +2789 -396
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +99 -0
- package/lib/seam/connect/models/access-grants/access-grant.js +13 -0
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +59 -0
- package/lib/seam/connect/models/access-grants/access-method.js +12 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/user-identities/user-identity.d.ts +109 -0
- package/lib/seam/connect/models/user-identities/user-identity.js +10 -0
- package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +2583 -336
- package/lib/seam/connect/openapi.js +3484 -1123
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +333 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +3 -0
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +16 -0
- package/src/lib/seam/connect/models/access-grants/access-method.ts +15 -0
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +13 -0
- package/src/lib/seam/connect/openapi.ts +3354 -729
- package/src/lib/seam/connect/route-types.ts +339 -0
package/dist/connect.d.cts
CHANGED
|
@@ -69781,6 +69781,882 @@ declare const _default: {
|
|
|
69781
69781
|
'x-title': string;
|
|
69782
69782
|
};
|
|
69783
69783
|
};
|
|
69784
|
+
'/access_grants/unmanaged/get': {
|
|
69785
|
+
get: {
|
|
69786
|
+
description: string;
|
|
69787
|
+
operationId: string;
|
|
69788
|
+
parameters: {
|
|
69789
|
+
in: string;
|
|
69790
|
+
name: string;
|
|
69791
|
+
required: boolean;
|
|
69792
|
+
schema: {
|
|
69793
|
+
description: string;
|
|
69794
|
+
format: string;
|
|
69795
|
+
type: string;
|
|
69796
|
+
};
|
|
69797
|
+
}[];
|
|
69798
|
+
responses: {
|
|
69799
|
+
200: {
|
|
69800
|
+
content: {
|
|
69801
|
+
'application/json': {
|
|
69802
|
+
schema: {
|
|
69803
|
+
properties: {
|
|
69804
|
+
access_grant: {
|
|
69805
|
+
description: string;
|
|
69806
|
+
properties: {
|
|
69807
|
+
access_grant_id: {
|
|
69808
|
+
description: string;
|
|
69809
|
+
format: string;
|
|
69810
|
+
type: string;
|
|
69811
|
+
};
|
|
69812
|
+
access_method_ids: {
|
|
69813
|
+
description: string;
|
|
69814
|
+
items: {
|
|
69815
|
+
format: string;
|
|
69816
|
+
type: string;
|
|
69817
|
+
};
|
|
69818
|
+
type: string;
|
|
69819
|
+
};
|
|
69820
|
+
created_at: {
|
|
69821
|
+
description: string;
|
|
69822
|
+
format: string;
|
|
69823
|
+
type: string;
|
|
69824
|
+
};
|
|
69825
|
+
display_name: {
|
|
69826
|
+
description: string;
|
|
69827
|
+
type: string;
|
|
69828
|
+
};
|
|
69829
|
+
ends_at: {
|
|
69830
|
+
description: string;
|
|
69831
|
+
format: string;
|
|
69832
|
+
nullable: boolean;
|
|
69833
|
+
type: string;
|
|
69834
|
+
};
|
|
69835
|
+
location_ids: {
|
|
69836
|
+
deprecated: boolean;
|
|
69837
|
+
items: {
|
|
69838
|
+
format: string;
|
|
69839
|
+
type: string;
|
|
69840
|
+
};
|
|
69841
|
+
type: string;
|
|
69842
|
+
'x-deprecated': string;
|
|
69843
|
+
};
|
|
69844
|
+
name: {
|
|
69845
|
+
description: string;
|
|
69846
|
+
nullable: boolean;
|
|
69847
|
+
type: string;
|
|
69848
|
+
};
|
|
69849
|
+
requested_access_methods: {
|
|
69850
|
+
description: string;
|
|
69851
|
+
items: {
|
|
69852
|
+
properties: {
|
|
69853
|
+
code: {
|
|
69854
|
+
description: string;
|
|
69855
|
+
maxLength: number;
|
|
69856
|
+
minLength: number;
|
|
69857
|
+
pattern: string;
|
|
69858
|
+
type: string;
|
|
69859
|
+
};
|
|
69860
|
+
created_access_method_ids: {
|
|
69861
|
+
description: string;
|
|
69862
|
+
items: {
|
|
69863
|
+
format: string;
|
|
69864
|
+
type: string;
|
|
69865
|
+
};
|
|
69866
|
+
type: string;
|
|
69867
|
+
};
|
|
69868
|
+
created_at: {
|
|
69869
|
+
description: string;
|
|
69870
|
+
format: string;
|
|
69871
|
+
type: string;
|
|
69872
|
+
};
|
|
69873
|
+
display_name: {
|
|
69874
|
+
description: string;
|
|
69875
|
+
type: string;
|
|
69876
|
+
};
|
|
69877
|
+
mode: {
|
|
69878
|
+
description: string;
|
|
69879
|
+
enum: string[];
|
|
69880
|
+
type: string;
|
|
69881
|
+
};
|
|
69882
|
+
};
|
|
69883
|
+
required: string[];
|
|
69884
|
+
type: string;
|
|
69885
|
+
};
|
|
69886
|
+
type: string;
|
|
69887
|
+
};
|
|
69888
|
+
space_ids: {
|
|
69889
|
+
description: string;
|
|
69890
|
+
items: {
|
|
69891
|
+
format: string;
|
|
69892
|
+
type: string;
|
|
69893
|
+
};
|
|
69894
|
+
type: string;
|
|
69895
|
+
};
|
|
69896
|
+
starts_at: {
|
|
69897
|
+
description: string;
|
|
69898
|
+
format: string;
|
|
69899
|
+
type: string;
|
|
69900
|
+
};
|
|
69901
|
+
user_identity_id: {
|
|
69902
|
+
description: string;
|
|
69903
|
+
format: string;
|
|
69904
|
+
type: string;
|
|
69905
|
+
};
|
|
69906
|
+
warnings: {
|
|
69907
|
+
description: string;
|
|
69908
|
+
items: {
|
|
69909
|
+
description: string;
|
|
69910
|
+
discriminator: {
|
|
69911
|
+
propertyName: string;
|
|
69912
|
+
};
|
|
69913
|
+
oneOf: {
|
|
69914
|
+
description: string;
|
|
69915
|
+
properties: {
|
|
69916
|
+
created_at: {
|
|
69917
|
+
description: string;
|
|
69918
|
+
format: string;
|
|
69919
|
+
type: string;
|
|
69920
|
+
};
|
|
69921
|
+
message: {
|
|
69922
|
+
description: string;
|
|
69923
|
+
type: string;
|
|
69924
|
+
};
|
|
69925
|
+
warning_code: {
|
|
69926
|
+
description: string;
|
|
69927
|
+
enum: string[];
|
|
69928
|
+
type: string;
|
|
69929
|
+
};
|
|
69930
|
+
};
|
|
69931
|
+
required: string[];
|
|
69932
|
+
type: string;
|
|
69933
|
+
}[];
|
|
69934
|
+
};
|
|
69935
|
+
type: string;
|
|
69936
|
+
};
|
|
69937
|
+
workspace_id: {
|
|
69938
|
+
description: string;
|
|
69939
|
+
format: string;
|
|
69940
|
+
type: string;
|
|
69941
|
+
};
|
|
69942
|
+
};
|
|
69943
|
+
required: string[];
|
|
69944
|
+
type: string;
|
|
69945
|
+
'x-draft': string;
|
|
69946
|
+
'x-route-path': string;
|
|
69947
|
+
};
|
|
69948
|
+
ok: {
|
|
69949
|
+
type: string;
|
|
69950
|
+
};
|
|
69951
|
+
};
|
|
69952
|
+
required: string[];
|
|
69953
|
+
type: string;
|
|
69954
|
+
};
|
|
69955
|
+
};
|
|
69956
|
+
};
|
|
69957
|
+
description: string;
|
|
69958
|
+
};
|
|
69959
|
+
400: {
|
|
69960
|
+
description: string;
|
|
69961
|
+
};
|
|
69962
|
+
401: {
|
|
69963
|
+
description: string;
|
|
69964
|
+
};
|
|
69965
|
+
};
|
|
69966
|
+
security: ({
|
|
69967
|
+
pat_with_workspace: never[];
|
|
69968
|
+
console_session_with_workspace?: never;
|
|
69969
|
+
api_key?: never;
|
|
69970
|
+
client_session_with_customer?: never;
|
|
69971
|
+
} | {
|
|
69972
|
+
console_session_with_workspace: never[];
|
|
69973
|
+
pat_with_workspace?: never;
|
|
69974
|
+
api_key?: never;
|
|
69975
|
+
client_session_with_customer?: never;
|
|
69976
|
+
} | {
|
|
69977
|
+
api_key: never[];
|
|
69978
|
+
pat_with_workspace?: never;
|
|
69979
|
+
console_session_with_workspace?: never;
|
|
69980
|
+
client_session_with_customer?: never;
|
|
69981
|
+
} | {
|
|
69982
|
+
client_session_with_customer: never[];
|
|
69983
|
+
pat_with_workspace?: never;
|
|
69984
|
+
console_session_with_workspace?: never;
|
|
69985
|
+
api_key?: never;
|
|
69986
|
+
})[];
|
|
69987
|
+
summary: string;
|
|
69988
|
+
tags: never[];
|
|
69989
|
+
'x-draft': string;
|
|
69990
|
+
'x-fern-sdk-group-name': string[];
|
|
69991
|
+
'x-fern-sdk-method-name': string;
|
|
69992
|
+
'x-fern-sdk-return-value': string;
|
|
69993
|
+
'x-response-key': string;
|
|
69994
|
+
'x-title': string;
|
|
69995
|
+
};
|
|
69996
|
+
post: {
|
|
69997
|
+
description: string;
|
|
69998
|
+
operationId: string;
|
|
69999
|
+
requestBody: {
|
|
70000
|
+
content: {
|
|
70001
|
+
'application/json': {
|
|
70002
|
+
schema: {
|
|
70003
|
+
properties: {
|
|
70004
|
+
access_grant_id: {
|
|
70005
|
+
description: string;
|
|
70006
|
+
format: string;
|
|
70007
|
+
type: string;
|
|
70008
|
+
};
|
|
70009
|
+
};
|
|
70010
|
+
required: string[];
|
|
70011
|
+
type: string;
|
|
70012
|
+
};
|
|
70013
|
+
};
|
|
70014
|
+
};
|
|
70015
|
+
};
|
|
70016
|
+
responses: {
|
|
70017
|
+
200: {
|
|
70018
|
+
content: {
|
|
70019
|
+
'application/json': {
|
|
70020
|
+
schema: {
|
|
70021
|
+
properties: {
|
|
70022
|
+
access_grant: {
|
|
70023
|
+
description: string;
|
|
70024
|
+
properties: {
|
|
70025
|
+
access_grant_id: {
|
|
70026
|
+
description: string;
|
|
70027
|
+
format: string;
|
|
70028
|
+
type: string;
|
|
70029
|
+
};
|
|
70030
|
+
access_method_ids: {
|
|
70031
|
+
description: string;
|
|
70032
|
+
items: {
|
|
70033
|
+
format: string;
|
|
70034
|
+
type: string;
|
|
70035
|
+
};
|
|
70036
|
+
type: string;
|
|
70037
|
+
};
|
|
70038
|
+
created_at: {
|
|
70039
|
+
description: string;
|
|
70040
|
+
format: string;
|
|
70041
|
+
type: string;
|
|
70042
|
+
};
|
|
70043
|
+
display_name: {
|
|
70044
|
+
description: string;
|
|
70045
|
+
type: string;
|
|
70046
|
+
};
|
|
70047
|
+
ends_at: {
|
|
70048
|
+
description: string;
|
|
70049
|
+
format: string;
|
|
70050
|
+
nullable: boolean;
|
|
70051
|
+
type: string;
|
|
70052
|
+
};
|
|
70053
|
+
location_ids: {
|
|
70054
|
+
deprecated: boolean;
|
|
70055
|
+
items: {
|
|
70056
|
+
format: string;
|
|
70057
|
+
type: string;
|
|
70058
|
+
};
|
|
70059
|
+
type: string;
|
|
70060
|
+
'x-deprecated': string;
|
|
70061
|
+
};
|
|
70062
|
+
name: {
|
|
70063
|
+
description: string;
|
|
70064
|
+
nullable: boolean;
|
|
70065
|
+
type: string;
|
|
70066
|
+
};
|
|
70067
|
+
requested_access_methods: {
|
|
70068
|
+
description: string;
|
|
70069
|
+
items: {
|
|
70070
|
+
properties: {
|
|
70071
|
+
code: {
|
|
70072
|
+
description: string;
|
|
70073
|
+
maxLength: number;
|
|
70074
|
+
minLength: number;
|
|
70075
|
+
pattern: string;
|
|
70076
|
+
type: string;
|
|
70077
|
+
};
|
|
70078
|
+
created_access_method_ids: {
|
|
70079
|
+
description: string;
|
|
70080
|
+
items: {
|
|
70081
|
+
format: string;
|
|
70082
|
+
type: string;
|
|
70083
|
+
};
|
|
70084
|
+
type: string;
|
|
70085
|
+
};
|
|
70086
|
+
created_at: {
|
|
70087
|
+
description: string;
|
|
70088
|
+
format: string;
|
|
70089
|
+
type: string;
|
|
70090
|
+
};
|
|
70091
|
+
display_name: {
|
|
70092
|
+
description: string;
|
|
70093
|
+
type: string;
|
|
70094
|
+
};
|
|
70095
|
+
mode: {
|
|
70096
|
+
description: string;
|
|
70097
|
+
enum: string[];
|
|
70098
|
+
type: string;
|
|
70099
|
+
};
|
|
70100
|
+
};
|
|
70101
|
+
required: string[];
|
|
70102
|
+
type: string;
|
|
70103
|
+
};
|
|
70104
|
+
type: string;
|
|
70105
|
+
};
|
|
70106
|
+
space_ids: {
|
|
70107
|
+
description: string;
|
|
70108
|
+
items: {
|
|
70109
|
+
format: string;
|
|
70110
|
+
type: string;
|
|
70111
|
+
};
|
|
70112
|
+
type: string;
|
|
70113
|
+
};
|
|
70114
|
+
starts_at: {
|
|
70115
|
+
description: string;
|
|
70116
|
+
format: string;
|
|
70117
|
+
type: string;
|
|
70118
|
+
};
|
|
70119
|
+
user_identity_id: {
|
|
70120
|
+
description: string;
|
|
70121
|
+
format: string;
|
|
70122
|
+
type: string;
|
|
70123
|
+
};
|
|
70124
|
+
warnings: {
|
|
70125
|
+
description: string;
|
|
70126
|
+
items: {
|
|
70127
|
+
description: string;
|
|
70128
|
+
discriminator: {
|
|
70129
|
+
propertyName: string;
|
|
70130
|
+
};
|
|
70131
|
+
oneOf: {
|
|
70132
|
+
description: string;
|
|
70133
|
+
properties: {
|
|
70134
|
+
created_at: {
|
|
70135
|
+
description: string;
|
|
70136
|
+
format: string;
|
|
70137
|
+
type: string;
|
|
70138
|
+
};
|
|
70139
|
+
message: {
|
|
70140
|
+
description: string;
|
|
70141
|
+
type: string;
|
|
70142
|
+
};
|
|
70143
|
+
warning_code: {
|
|
70144
|
+
description: string;
|
|
70145
|
+
enum: string[];
|
|
70146
|
+
type: string;
|
|
70147
|
+
};
|
|
70148
|
+
};
|
|
70149
|
+
required: string[];
|
|
70150
|
+
type: string;
|
|
70151
|
+
}[];
|
|
70152
|
+
};
|
|
70153
|
+
type: string;
|
|
70154
|
+
};
|
|
70155
|
+
workspace_id: {
|
|
70156
|
+
description: string;
|
|
70157
|
+
format: string;
|
|
70158
|
+
type: string;
|
|
70159
|
+
};
|
|
70160
|
+
};
|
|
70161
|
+
required: string[];
|
|
70162
|
+
type: string;
|
|
70163
|
+
'x-draft': string;
|
|
70164
|
+
'x-route-path': string;
|
|
70165
|
+
};
|
|
70166
|
+
ok: {
|
|
70167
|
+
type: string;
|
|
70168
|
+
};
|
|
70169
|
+
};
|
|
70170
|
+
required: string[];
|
|
70171
|
+
type: string;
|
|
70172
|
+
};
|
|
70173
|
+
};
|
|
70174
|
+
};
|
|
70175
|
+
description: string;
|
|
70176
|
+
};
|
|
70177
|
+
400: {
|
|
70178
|
+
description: string;
|
|
70179
|
+
};
|
|
70180
|
+
401: {
|
|
70181
|
+
description: string;
|
|
70182
|
+
};
|
|
70183
|
+
};
|
|
70184
|
+
security: ({
|
|
70185
|
+
pat_with_workspace: never[];
|
|
70186
|
+
console_session_with_workspace?: never;
|
|
70187
|
+
api_key?: never;
|
|
70188
|
+
client_session_with_customer?: never;
|
|
70189
|
+
} | {
|
|
70190
|
+
console_session_with_workspace: never[];
|
|
70191
|
+
pat_with_workspace?: never;
|
|
70192
|
+
api_key?: never;
|
|
70193
|
+
client_session_with_customer?: never;
|
|
70194
|
+
} | {
|
|
70195
|
+
api_key: never[];
|
|
70196
|
+
pat_with_workspace?: never;
|
|
70197
|
+
console_session_with_workspace?: never;
|
|
70198
|
+
client_session_with_customer?: never;
|
|
70199
|
+
} | {
|
|
70200
|
+
client_session_with_customer: never[];
|
|
70201
|
+
pat_with_workspace?: never;
|
|
70202
|
+
console_session_with_workspace?: never;
|
|
70203
|
+
api_key?: never;
|
|
70204
|
+
})[];
|
|
70205
|
+
summary: string;
|
|
70206
|
+
tags: never[];
|
|
70207
|
+
'x-draft': string;
|
|
70208
|
+
'x-fern-sdk-group-name': string[];
|
|
70209
|
+
'x-fern-sdk-method-name': string;
|
|
70210
|
+
'x-fern-sdk-return-value': string;
|
|
70211
|
+
'x-response-key': string;
|
|
70212
|
+
'x-title': string;
|
|
70213
|
+
};
|
|
70214
|
+
};
|
|
70215
|
+
'/access_grants/unmanaged/list': {
|
|
70216
|
+
get: {
|
|
70217
|
+
description: string;
|
|
70218
|
+
operationId: string;
|
|
70219
|
+
parameters: {
|
|
70220
|
+
in: string;
|
|
70221
|
+
name: string;
|
|
70222
|
+
schema: {
|
|
70223
|
+
description: string;
|
|
70224
|
+
format: string;
|
|
70225
|
+
type: string;
|
|
70226
|
+
};
|
|
70227
|
+
}[];
|
|
70228
|
+
responses: {
|
|
70229
|
+
200: {
|
|
70230
|
+
content: {
|
|
70231
|
+
'application/json': {
|
|
70232
|
+
schema: {
|
|
70233
|
+
properties: {
|
|
70234
|
+
access_grants: {
|
|
70235
|
+
items: {
|
|
70236
|
+
description: string;
|
|
70237
|
+
properties: {
|
|
70238
|
+
access_grant_id: {
|
|
70239
|
+
description: string;
|
|
70240
|
+
format: string;
|
|
70241
|
+
type: string;
|
|
70242
|
+
};
|
|
70243
|
+
access_method_ids: {
|
|
70244
|
+
description: string;
|
|
70245
|
+
items: {
|
|
70246
|
+
format: string;
|
|
70247
|
+
type: string;
|
|
70248
|
+
};
|
|
70249
|
+
type: string;
|
|
70250
|
+
};
|
|
70251
|
+
created_at: {
|
|
70252
|
+
description: string;
|
|
70253
|
+
format: string;
|
|
70254
|
+
type: string;
|
|
70255
|
+
};
|
|
70256
|
+
display_name: {
|
|
70257
|
+
description: string;
|
|
70258
|
+
type: string;
|
|
70259
|
+
};
|
|
70260
|
+
ends_at: {
|
|
70261
|
+
description: string;
|
|
70262
|
+
format: string;
|
|
70263
|
+
nullable: boolean;
|
|
70264
|
+
type: string;
|
|
70265
|
+
};
|
|
70266
|
+
location_ids: {
|
|
70267
|
+
deprecated: boolean;
|
|
70268
|
+
items: {
|
|
70269
|
+
format: string;
|
|
70270
|
+
type: string;
|
|
70271
|
+
};
|
|
70272
|
+
type: string;
|
|
70273
|
+
'x-deprecated': string;
|
|
70274
|
+
};
|
|
70275
|
+
name: {
|
|
70276
|
+
description: string;
|
|
70277
|
+
nullable: boolean;
|
|
70278
|
+
type: string;
|
|
70279
|
+
};
|
|
70280
|
+
requested_access_methods: {
|
|
70281
|
+
description: string;
|
|
70282
|
+
items: {
|
|
70283
|
+
properties: {
|
|
70284
|
+
code: {
|
|
70285
|
+
description: string;
|
|
70286
|
+
maxLength: number;
|
|
70287
|
+
minLength: number;
|
|
70288
|
+
pattern: string;
|
|
70289
|
+
type: string;
|
|
70290
|
+
};
|
|
70291
|
+
created_access_method_ids: {
|
|
70292
|
+
description: string;
|
|
70293
|
+
items: {
|
|
70294
|
+
format: string;
|
|
70295
|
+
type: string;
|
|
70296
|
+
};
|
|
70297
|
+
type: string;
|
|
70298
|
+
};
|
|
70299
|
+
created_at: {
|
|
70300
|
+
description: string;
|
|
70301
|
+
format: string;
|
|
70302
|
+
type: string;
|
|
70303
|
+
};
|
|
70304
|
+
display_name: {
|
|
70305
|
+
description: string;
|
|
70306
|
+
type: string;
|
|
70307
|
+
};
|
|
70308
|
+
mode: {
|
|
70309
|
+
description: string;
|
|
70310
|
+
enum: string[];
|
|
70311
|
+
type: string;
|
|
70312
|
+
};
|
|
70313
|
+
};
|
|
70314
|
+
required: string[];
|
|
70315
|
+
type: string;
|
|
70316
|
+
};
|
|
70317
|
+
type: string;
|
|
70318
|
+
};
|
|
70319
|
+
space_ids: {
|
|
70320
|
+
description: string;
|
|
70321
|
+
items: {
|
|
70322
|
+
format: string;
|
|
70323
|
+
type: string;
|
|
70324
|
+
};
|
|
70325
|
+
type: string;
|
|
70326
|
+
};
|
|
70327
|
+
starts_at: {
|
|
70328
|
+
description: string;
|
|
70329
|
+
format: string;
|
|
70330
|
+
type: string;
|
|
70331
|
+
};
|
|
70332
|
+
user_identity_id: {
|
|
70333
|
+
description: string;
|
|
70334
|
+
format: string;
|
|
70335
|
+
type: string;
|
|
70336
|
+
};
|
|
70337
|
+
warnings: {
|
|
70338
|
+
description: string;
|
|
70339
|
+
items: {
|
|
70340
|
+
description: string;
|
|
70341
|
+
discriminator: {
|
|
70342
|
+
propertyName: string;
|
|
70343
|
+
};
|
|
70344
|
+
oneOf: {
|
|
70345
|
+
description: string;
|
|
70346
|
+
properties: {
|
|
70347
|
+
created_at: {
|
|
70348
|
+
description: string;
|
|
70349
|
+
format: string;
|
|
70350
|
+
type: string;
|
|
70351
|
+
};
|
|
70352
|
+
message: {
|
|
70353
|
+
description: string;
|
|
70354
|
+
type: string;
|
|
70355
|
+
};
|
|
70356
|
+
warning_code: {
|
|
70357
|
+
description: string;
|
|
70358
|
+
enum: string[];
|
|
70359
|
+
type: string;
|
|
70360
|
+
};
|
|
70361
|
+
};
|
|
70362
|
+
required: string[];
|
|
70363
|
+
type: string;
|
|
70364
|
+
}[];
|
|
70365
|
+
};
|
|
70366
|
+
type: string;
|
|
70367
|
+
};
|
|
70368
|
+
workspace_id: {
|
|
70369
|
+
description: string;
|
|
70370
|
+
format: string;
|
|
70371
|
+
type: string;
|
|
70372
|
+
};
|
|
70373
|
+
};
|
|
70374
|
+
required: string[];
|
|
70375
|
+
type: string;
|
|
70376
|
+
'x-draft': string;
|
|
70377
|
+
'x-route-path': string;
|
|
70378
|
+
};
|
|
70379
|
+
type: string;
|
|
70380
|
+
};
|
|
70381
|
+
ok: {
|
|
70382
|
+
type: string;
|
|
70383
|
+
};
|
|
70384
|
+
};
|
|
70385
|
+
required: string[];
|
|
70386
|
+
type: string;
|
|
70387
|
+
};
|
|
70388
|
+
};
|
|
70389
|
+
};
|
|
70390
|
+
description: string;
|
|
70391
|
+
};
|
|
70392
|
+
400: {
|
|
70393
|
+
description: string;
|
|
70394
|
+
};
|
|
70395
|
+
401: {
|
|
70396
|
+
description: string;
|
|
70397
|
+
};
|
|
70398
|
+
};
|
|
70399
|
+
security: ({
|
|
70400
|
+
pat_with_workspace: never[];
|
|
70401
|
+
console_session_with_workspace?: never;
|
|
70402
|
+
api_key?: never;
|
|
70403
|
+
client_session_with_customer?: never;
|
|
70404
|
+
} | {
|
|
70405
|
+
console_session_with_workspace: never[];
|
|
70406
|
+
pat_with_workspace?: never;
|
|
70407
|
+
api_key?: never;
|
|
70408
|
+
client_session_with_customer?: never;
|
|
70409
|
+
} | {
|
|
70410
|
+
api_key: never[];
|
|
70411
|
+
pat_with_workspace?: never;
|
|
70412
|
+
console_session_with_workspace?: never;
|
|
70413
|
+
client_session_with_customer?: never;
|
|
70414
|
+
} | {
|
|
70415
|
+
client_session_with_customer: never[];
|
|
70416
|
+
pat_with_workspace?: never;
|
|
70417
|
+
console_session_with_workspace?: never;
|
|
70418
|
+
api_key?: never;
|
|
70419
|
+
})[];
|
|
70420
|
+
summary: string;
|
|
70421
|
+
tags: never[];
|
|
70422
|
+
'x-draft': string;
|
|
70423
|
+
'x-fern-sdk-group-name': string[];
|
|
70424
|
+
'x-fern-sdk-method-name': string;
|
|
70425
|
+
'x-fern-sdk-return-value': string;
|
|
70426
|
+
'x-response-key': string;
|
|
70427
|
+
'x-title': string;
|
|
70428
|
+
};
|
|
70429
|
+
post: {
|
|
70430
|
+
description: string;
|
|
70431
|
+
operationId: string;
|
|
70432
|
+
requestBody: {
|
|
70433
|
+
content: {
|
|
70434
|
+
'application/json': {
|
|
70435
|
+
schema: {
|
|
70436
|
+
properties: {
|
|
70437
|
+
acs_entrance_id: {
|
|
70438
|
+
description: string;
|
|
70439
|
+
format: string;
|
|
70440
|
+
type: string;
|
|
70441
|
+
};
|
|
70442
|
+
acs_system_id: {
|
|
70443
|
+
description: string;
|
|
70444
|
+
format: string;
|
|
70445
|
+
type: string;
|
|
70446
|
+
};
|
|
70447
|
+
user_identity_id: {
|
|
70448
|
+
description: string;
|
|
70449
|
+
format: string;
|
|
70450
|
+
type: string;
|
|
70451
|
+
};
|
|
70452
|
+
};
|
|
70453
|
+
type: string;
|
|
70454
|
+
};
|
|
70455
|
+
};
|
|
70456
|
+
};
|
|
70457
|
+
};
|
|
70458
|
+
responses: {
|
|
70459
|
+
200: {
|
|
70460
|
+
content: {
|
|
70461
|
+
'application/json': {
|
|
70462
|
+
schema: {
|
|
70463
|
+
properties: {
|
|
70464
|
+
access_grants: {
|
|
70465
|
+
items: {
|
|
70466
|
+
description: string;
|
|
70467
|
+
properties: {
|
|
70468
|
+
access_grant_id: {
|
|
70469
|
+
description: string;
|
|
70470
|
+
format: string;
|
|
70471
|
+
type: string;
|
|
70472
|
+
};
|
|
70473
|
+
access_method_ids: {
|
|
70474
|
+
description: string;
|
|
70475
|
+
items: {
|
|
70476
|
+
format: string;
|
|
70477
|
+
type: string;
|
|
70478
|
+
};
|
|
70479
|
+
type: string;
|
|
70480
|
+
};
|
|
70481
|
+
created_at: {
|
|
70482
|
+
description: string;
|
|
70483
|
+
format: string;
|
|
70484
|
+
type: string;
|
|
70485
|
+
};
|
|
70486
|
+
display_name: {
|
|
70487
|
+
description: string;
|
|
70488
|
+
type: string;
|
|
70489
|
+
};
|
|
70490
|
+
ends_at: {
|
|
70491
|
+
description: string;
|
|
70492
|
+
format: string;
|
|
70493
|
+
nullable: boolean;
|
|
70494
|
+
type: string;
|
|
70495
|
+
};
|
|
70496
|
+
location_ids: {
|
|
70497
|
+
deprecated: boolean;
|
|
70498
|
+
items: {
|
|
70499
|
+
format: string;
|
|
70500
|
+
type: string;
|
|
70501
|
+
};
|
|
70502
|
+
type: string;
|
|
70503
|
+
'x-deprecated': string;
|
|
70504
|
+
};
|
|
70505
|
+
name: {
|
|
70506
|
+
description: string;
|
|
70507
|
+
nullable: boolean;
|
|
70508
|
+
type: string;
|
|
70509
|
+
};
|
|
70510
|
+
requested_access_methods: {
|
|
70511
|
+
description: string;
|
|
70512
|
+
items: {
|
|
70513
|
+
properties: {
|
|
70514
|
+
code: {
|
|
70515
|
+
description: string;
|
|
70516
|
+
maxLength: number;
|
|
70517
|
+
minLength: number;
|
|
70518
|
+
pattern: string;
|
|
70519
|
+
type: string;
|
|
70520
|
+
};
|
|
70521
|
+
created_access_method_ids: {
|
|
70522
|
+
description: string;
|
|
70523
|
+
items: {
|
|
70524
|
+
format: string;
|
|
70525
|
+
type: string;
|
|
70526
|
+
};
|
|
70527
|
+
type: string;
|
|
70528
|
+
};
|
|
70529
|
+
created_at: {
|
|
70530
|
+
description: string;
|
|
70531
|
+
format: string;
|
|
70532
|
+
type: string;
|
|
70533
|
+
};
|
|
70534
|
+
display_name: {
|
|
70535
|
+
description: string;
|
|
70536
|
+
type: string;
|
|
70537
|
+
};
|
|
70538
|
+
mode: {
|
|
70539
|
+
description: string;
|
|
70540
|
+
enum: string[];
|
|
70541
|
+
type: string;
|
|
70542
|
+
};
|
|
70543
|
+
};
|
|
70544
|
+
required: string[];
|
|
70545
|
+
type: string;
|
|
70546
|
+
};
|
|
70547
|
+
type: string;
|
|
70548
|
+
};
|
|
70549
|
+
space_ids: {
|
|
70550
|
+
description: string;
|
|
70551
|
+
items: {
|
|
70552
|
+
format: string;
|
|
70553
|
+
type: string;
|
|
70554
|
+
};
|
|
70555
|
+
type: string;
|
|
70556
|
+
};
|
|
70557
|
+
starts_at: {
|
|
70558
|
+
description: string;
|
|
70559
|
+
format: string;
|
|
70560
|
+
type: string;
|
|
70561
|
+
};
|
|
70562
|
+
user_identity_id: {
|
|
70563
|
+
description: string;
|
|
70564
|
+
format: string;
|
|
70565
|
+
type: string;
|
|
70566
|
+
};
|
|
70567
|
+
warnings: {
|
|
70568
|
+
description: string;
|
|
70569
|
+
items: {
|
|
70570
|
+
description: string;
|
|
70571
|
+
discriminator: {
|
|
70572
|
+
propertyName: string;
|
|
70573
|
+
};
|
|
70574
|
+
oneOf: {
|
|
70575
|
+
description: string;
|
|
70576
|
+
properties: {
|
|
70577
|
+
created_at: {
|
|
70578
|
+
description: string;
|
|
70579
|
+
format: string;
|
|
70580
|
+
type: string;
|
|
70581
|
+
};
|
|
70582
|
+
message: {
|
|
70583
|
+
description: string;
|
|
70584
|
+
type: string;
|
|
70585
|
+
};
|
|
70586
|
+
warning_code: {
|
|
70587
|
+
description: string;
|
|
70588
|
+
enum: string[];
|
|
70589
|
+
type: string;
|
|
70590
|
+
};
|
|
70591
|
+
};
|
|
70592
|
+
required: string[];
|
|
70593
|
+
type: string;
|
|
70594
|
+
}[];
|
|
70595
|
+
};
|
|
70596
|
+
type: string;
|
|
70597
|
+
};
|
|
70598
|
+
workspace_id: {
|
|
70599
|
+
description: string;
|
|
70600
|
+
format: string;
|
|
70601
|
+
type: string;
|
|
70602
|
+
};
|
|
70603
|
+
};
|
|
70604
|
+
required: string[];
|
|
70605
|
+
type: string;
|
|
70606
|
+
'x-draft': string;
|
|
70607
|
+
'x-route-path': string;
|
|
70608
|
+
};
|
|
70609
|
+
type: string;
|
|
70610
|
+
};
|
|
70611
|
+
ok: {
|
|
70612
|
+
type: string;
|
|
70613
|
+
};
|
|
70614
|
+
};
|
|
70615
|
+
required: string[];
|
|
70616
|
+
type: string;
|
|
70617
|
+
};
|
|
70618
|
+
};
|
|
70619
|
+
};
|
|
70620
|
+
description: string;
|
|
70621
|
+
};
|
|
70622
|
+
400: {
|
|
70623
|
+
description: string;
|
|
70624
|
+
};
|
|
70625
|
+
401: {
|
|
70626
|
+
description: string;
|
|
70627
|
+
};
|
|
70628
|
+
};
|
|
70629
|
+
security: ({
|
|
70630
|
+
pat_with_workspace: never[];
|
|
70631
|
+
console_session_with_workspace?: never;
|
|
70632
|
+
api_key?: never;
|
|
70633
|
+
client_session_with_customer?: never;
|
|
70634
|
+
} | {
|
|
70635
|
+
console_session_with_workspace: never[];
|
|
70636
|
+
pat_with_workspace?: never;
|
|
70637
|
+
api_key?: never;
|
|
70638
|
+
client_session_with_customer?: never;
|
|
70639
|
+
} | {
|
|
70640
|
+
api_key: never[];
|
|
70641
|
+
pat_with_workspace?: never;
|
|
70642
|
+
console_session_with_workspace?: never;
|
|
70643
|
+
client_session_with_customer?: never;
|
|
70644
|
+
} | {
|
|
70645
|
+
client_session_with_customer: never[];
|
|
70646
|
+
pat_with_workspace?: never;
|
|
70647
|
+
console_session_with_workspace?: never;
|
|
70648
|
+
api_key?: never;
|
|
70649
|
+
})[];
|
|
70650
|
+
summary: string;
|
|
70651
|
+
tags: never[];
|
|
70652
|
+
'x-draft': string;
|
|
70653
|
+
'x-fern-sdk-group-name': string[];
|
|
70654
|
+
'x-fern-sdk-method-name': string;
|
|
70655
|
+
'x-fern-sdk-return-value': string;
|
|
70656
|
+
'x-response-key': string;
|
|
70657
|
+
'x-title': string;
|
|
70658
|
+
};
|
|
70659
|
+
};
|
|
69784
70660
|
'/access_grants/update': {
|
|
69785
70661
|
patch: {
|
|
69786
70662
|
description: string;
|
|
@@ -70502,7 +71378,332 @@ declare const _default: {
|
|
|
70502
71378
|
type: string;
|
|
70503
71379
|
};
|
|
70504
71380
|
};
|
|
70505
|
-
required: string[];
|
|
71381
|
+
required: string[];
|
|
71382
|
+
type: string;
|
|
71383
|
+
};
|
|
71384
|
+
ok: {
|
|
71385
|
+
type: string;
|
|
71386
|
+
};
|
|
71387
|
+
};
|
|
71388
|
+
required: string[];
|
|
71389
|
+
type: string;
|
|
71390
|
+
};
|
|
71391
|
+
};
|
|
71392
|
+
};
|
|
71393
|
+
description: string;
|
|
71394
|
+
};
|
|
71395
|
+
400: {
|
|
71396
|
+
description: string;
|
|
71397
|
+
};
|
|
71398
|
+
401: {
|
|
71399
|
+
description: string;
|
|
71400
|
+
};
|
|
71401
|
+
};
|
|
71402
|
+
security: ({
|
|
71403
|
+
pat_with_workspace: never[];
|
|
71404
|
+
console_session_with_workspace?: never;
|
|
71405
|
+
api_key?: never;
|
|
71406
|
+
} | {
|
|
71407
|
+
console_session_with_workspace: never[];
|
|
71408
|
+
pat_with_workspace?: never;
|
|
71409
|
+
api_key?: never;
|
|
71410
|
+
} | {
|
|
71411
|
+
api_key: never[];
|
|
71412
|
+
pat_with_workspace?: never;
|
|
71413
|
+
console_session_with_workspace?: never;
|
|
71414
|
+
})[];
|
|
71415
|
+
summary: string;
|
|
71416
|
+
tags: never[];
|
|
71417
|
+
'x-batch-type': string;
|
|
71418
|
+
'x-draft': string;
|
|
71419
|
+
'x-fern-sdk-group-name': string[];
|
|
71420
|
+
'x-fern-sdk-method-name': string;
|
|
71421
|
+
'x-fern-sdk-return-value': string;
|
|
71422
|
+
'x-response-key': string;
|
|
71423
|
+
'x-title': string;
|
|
71424
|
+
};
|
|
71425
|
+
post: {
|
|
71426
|
+
description: string;
|
|
71427
|
+
operationId: string;
|
|
71428
|
+
requestBody: {
|
|
71429
|
+
content: {
|
|
71430
|
+
'application/json': {
|
|
71431
|
+
schema: {
|
|
71432
|
+
properties: {
|
|
71433
|
+
access_method_ids: {
|
|
71434
|
+
description: string;
|
|
71435
|
+
items: {
|
|
71436
|
+
format: string;
|
|
71437
|
+
type: string;
|
|
71438
|
+
};
|
|
71439
|
+
type: string;
|
|
71440
|
+
};
|
|
71441
|
+
exclude: {
|
|
71442
|
+
items: {
|
|
71443
|
+
enum: string[];
|
|
71444
|
+
type: string;
|
|
71445
|
+
};
|
|
71446
|
+
type: string;
|
|
71447
|
+
};
|
|
71448
|
+
include: {
|
|
71449
|
+
items: {
|
|
71450
|
+
enum: string[];
|
|
71451
|
+
type: string;
|
|
71452
|
+
};
|
|
71453
|
+
type: string;
|
|
71454
|
+
};
|
|
71455
|
+
};
|
|
71456
|
+
required: string[];
|
|
71457
|
+
type: string;
|
|
71458
|
+
};
|
|
71459
|
+
};
|
|
71460
|
+
};
|
|
71461
|
+
};
|
|
71462
|
+
responses: {
|
|
71463
|
+
200: {
|
|
71464
|
+
content: {
|
|
71465
|
+
'application/json': {
|
|
71466
|
+
schema: {
|
|
71467
|
+
properties: {
|
|
71468
|
+
batch: {
|
|
71469
|
+
description: string;
|
|
71470
|
+
properties: {
|
|
71471
|
+
access_codes: {
|
|
71472
|
+
items: {
|
|
71473
|
+
$ref: string;
|
|
71474
|
+
};
|
|
71475
|
+
type: string;
|
|
71476
|
+
};
|
|
71477
|
+
access_grants: {
|
|
71478
|
+
items: {
|
|
71479
|
+
$ref: string;
|
|
71480
|
+
};
|
|
71481
|
+
type: string;
|
|
71482
|
+
};
|
|
71483
|
+
access_methods: {
|
|
71484
|
+
items: {
|
|
71485
|
+
$ref: string;
|
|
71486
|
+
};
|
|
71487
|
+
type: string;
|
|
71488
|
+
};
|
|
71489
|
+
acs_access_groups: {
|
|
71490
|
+
items: {
|
|
71491
|
+
$ref: string;
|
|
71492
|
+
};
|
|
71493
|
+
type: string;
|
|
71494
|
+
};
|
|
71495
|
+
acs_credentials: {
|
|
71496
|
+
items: {
|
|
71497
|
+
$ref: string;
|
|
71498
|
+
};
|
|
71499
|
+
type: string;
|
|
71500
|
+
};
|
|
71501
|
+
acs_encoders: {
|
|
71502
|
+
items: {
|
|
71503
|
+
$ref: string;
|
|
71504
|
+
};
|
|
71505
|
+
type: string;
|
|
71506
|
+
};
|
|
71507
|
+
acs_entrances: {
|
|
71508
|
+
items: {
|
|
71509
|
+
$ref: string;
|
|
71510
|
+
};
|
|
71511
|
+
type: string;
|
|
71512
|
+
};
|
|
71513
|
+
acs_systems: {
|
|
71514
|
+
items: {
|
|
71515
|
+
$ref: string;
|
|
71516
|
+
};
|
|
71517
|
+
type: string;
|
|
71518
|
+
};
|
|
71519
|
+
acs_users: {
|
|
71520
|
+
items: {
|
|
71521
|
+
$ref: string;
|
|
71522
|
+
};
|
|
71523
|
+
type: string;
|
|
71524
|
+
};
|
|
71525
|
+
action_attempts: {
|
|
71526
|
+
items: {
|
|
71527
|
+
$ref: string;
|
|
71528
|
+
};
|
|
71529
|
+
type: string;
|
|
71530
|
+
};
|
|
71531
|
+
batch_type: {
|
|
71532
|
+
enum: string[];
|
|
71533
|
+
type: string;
|
|
71534
|
+
};
|
|
71535
|
+
client_sessions: {
|
|
71536
|
+
items: {
|
|
71537
|
+
$ref: string;
|
|
71538
|
+
};
|
|
71539
|
+
type: string;
|
|
71540
|
+
};
|
|
71541
|
+
connect_webviews: {
|
|
71542
|
+
items: {
|
|
71543
|
+
$ref: string;
|
|
71544
|
+
};
|
|
71545
|
+
type: string;
|
|
71546
|
+
};
|
|
71547
|
+
customization_profiles: {
|
|
71548
|
+
items: {
|
|
71549
|
+
$ref: string;
|
|
71550
|
+
};
|
|
71551
|
+
type: string;
|
|
71552
|
+
};
|
|
71553
|
+
devices: {
|
|
71554
|
+
items: {
|
|
71555
|
+
$ref: string;
|
|
71556
|
+
};
|
|
71557
|
+
type: string;
|
|
71558
|
+
};
|
|
71559
|
+
events: {
|
|
71560
|
+
items: {
|
|
71561
|
+
$ref: string;
|
|
71562
|
+
};
|
|
71563
|
+
type: string;
|
|
71564
|
+
};
|
|
71565
|
+
instant_keys: {
|
|
71566
|
+
items: {
|
|
71567
|
+
$ref: string;
|
|
71568
|
+
};
|
|
71569
|
+
type: string;
|
|
71570
|
+
};
|
|
71571
|
+
noise_thresholds: {
|
|
71572
|
+
items: {
|
|
71573
|
+
$ref: string;
|
|
71574
|
+
};
|
|
71575
|
+
type: string;
|
|
71576
|
+
};
|
|
71577
|
+
spaces: {
|
|
71578
|
+
items: {
|
|
71579
|
+
$ref: string;
|
|
71580
|
+
};
|
|
71581
|
+
type: string;
|
|
71582
|
+
};
|
|
71583
|
+
thermostat_daily_programs: {
|
|
71584
|
+
items: {
|
|
71585
|
+
$ref: string;
|
|
71586
|
+
};
|
|
71587
|
+
type: string;
|
|
71588
|
+
};
|
|
71589
|
+
thermostat_schedules: {
|
|
71590
|
+
items: {
|
|
71591
|
+
$ref: string;
|
|
71592
|
+
};
|
|
71593
|
+
type: string;
|
|
71594
|
+
};
|
|
71595
|
+
unmanaged_access_codes: {
|
|
71596
|
+
items: {
|
|
71597
|
+
$ref: string;
|
|
71598
|
+
};
|
|
71599
|
+
type: string;
|
|
71600
|
+
};
|
|
71601
|
+
unmanaged_acs_access_groups: {
|
|
71602
|
+
items: {
|
|
71603
|
+
$ref: string;
|
|
71604
|
+
};
|
|
71605
|
+
type: string;
|
|
71606
|
+
};
|
|
71607
|
+
unmanaged_acs_credentials: {
|
|
71608
|
+
items: {
|
|
71609
|
+
$ref: string;
|
|
71610
|
+
};
|
|
71611
|
+
type: string;
|
|
71612
|
+
};
|
|
71613
|
+
unmanaged_acs_users: {
|
|
71614
|
+
items: {
|
|
71615
|
+
$ref: string;
|
|
71616
|
+
};
|
|
71617
|
+
type: string;
|
|
71618
|
+
};
|
|
71619
|
+
unmanaged_devices: {
|
|
71620
|
+
items: {
|
|
71621
|
+
$ref: string;
|
|
71622
|
+
};
|
|
71623
|
+
type: string;
|
|
71624
|
+
};
|
|
71625
|
+
user_identities: {
|
|
71626
|
+
items: {
|
|
71627
|
+
$ref: string;
|
|
71628
|
+
};
|
|
71629
|
+
type: string;
|
|
71630
|
+
};
|
|
71631
|
+
workspaces: {
|
|
71632
|
+
items: {
|
|
71633
|
+
$ref: string;
|
|
71634
|
+
};
|
|
71635
|
+
type: string;
|
|
71636
|
+
};
|
|
71637
|
+
};
|
|
71638
|
+
required: string[];
|
|
71639
|
+
type: string;
|
|
71640
|
+
};
|
|
71641
|
+
ok: {
|
|
71642
|
+
type: string;
|
|
71643
|
+
};
|
|
71644
|
+
};
|
|
71645
|
+
required: string[];
|
|
71646
|
+
type: string;
|
|
71647
|
+
};
|
|
71648
|
+
};
|
|
71649
|
+
};
|
|
71650
|
+
description: string;
|
|
71651
|
+
};
|
|
71652
|
+
400: {
|
|
71653
|
+
description: string;
|
|
71654
|
+
};
|
|
71655
|
+
401: {
|
|
71656
|
+
description: string;
|
|
71657
|
+
};
|
|
71658
|
+
};
|
|
71659
|
+
security: ({
|
|
71660
|
+
pat_with_workspace: never[];
|
|
71661
|
+
console_session_with_workspace?: never;
|
|
71662
|
+
api_key?: never;
|
|
71663
|
+
} | {
|
|
71664
|
+
console_session_with_workspace: never[];
|
|
71665
|
+
pat_with_workspace?: never;
|
|
71666
|
+
api_key?: never;
|
|
71667
|
+
} | {
|
|
71668
|
+
api_key: never[];
|
|
71669
|
+
pat_with_workspace?: never;
|
|
71670
|
+
console_session_with_workspace?: never;
|
|
71671
|
+
})[];
|
|
71672
|
+
summary: string;
|
|
71673
|
+
tags: never[];
|
|
71674
|
+
'x-batch-type': string;
|
|
71675
|
+
'x-draft': string;
|
|
71676
|
+
'x-fern-sdk-group-name': string[];
|
|
71677
|
+
'x-fern-sdk-method-name': string;
|
|
71678
|
+
'x-fern-sdk-return-value': string;
|
|
71679
|
+
'x-response-key': string;
|
|
71680
|
+
'x-title': string;
|
|
71681
|
+
};
|
|
71682
|
+
};
|
|
71683
|
+
'/access_methods/list': {
|
|
71684
|
+
get: {
|
|
71685
|
+
description: string;
|
|
71686
|
+
operationId: string;
|
|
71687
|
+
parameters: {
|
|
71688
|
+
in: string;
|
|
71689
|
+
name: string;
|
|
71690
|
+
required: boolean;
|
|
71691
|
+
schema: {
|
|
71692
|
+
description: string;
|
|
71693
|
+
format: string;
|
|
71694
|
+
type: string;
|
|
71695
|
+
};
|
|
71696
|
+
}[];
|
|
71697
|
+
responses: {
|
|
71698
|
+
200: {
|
|
71699
|
+
content: {
|
|
71700
|
+
'application/json': {
|
|
71701
|
+
schema: {
|
|
71702
|
+
properties: {
|
|
71703
|
+
access_methods: {
|
|
71704
|
+
items: {
|
|
71705
|
+
$ref: string;
|
|
71706
|
+
};
|
|
70506
71707
|
type: string;
|
|
70507
71708
|
};
|
|
70508
71709
|
ok: {
|
|
@@ -70538,7 +71739,6 @@ declare const _default: {
|
|
|
70538
71739
|
})[];
|
|
70539
71740
|
summary: string;
|
|
70540
71741
|
tags: never[];
|
|
70541
|
-
'x-batch-type': string;
|
|
70542
71742
|
'x-draft': string;
|
|
70543
71743
|
'x-fern-sdk-group-name': string[];
|
|
70544
71744
|
'x-fern-sdk-method-name': string;
|
|
@@ -70554,26 +71754,24 @@ declare const _default: {
|
|
|
70554
71754
|
'application/json': {
|
|
70555
71755
|
schema: {
|
|
70556
71756
|
properties: {
|
|
70557
|
-
|
|
71757
|
+
access_grant_id: {
|
|
70558
71758
|
description: string;
|
|
70559
|
-
|
|
70560
|
-
format: string;
|
|
70561
|
-
type: string;
|
|
70562
|
-
};
|
|
71759
|
+
format: string;
|
|
70563
71760
|
type: string;
|
|
70564
71761
|
};
|
|
70565
|
-
|
|
70566
|
-
|
|
70567
|
-
|
|
70568
|
-
type: string;
|
|
70569
|
-
};
|
|
71762
|
+
acs_entrance_id: {
|
|
71763
|
+
description: string;
|
|
71764
|
+
format: string;
|
|
70570
71765
|
type: string;
|
|
70571
71766
|
};
|
|
70572
|
-
|
|
70573
|
-
|
|
70574
|
-
|
|
70575
|
-
|
|
70576
|
-
|
|
71767
|
+
device_id: {
|
|
71768
|
+
description: string;
|
|
71769
|
+
format: string;
|
|
71770
|
+
type: string;
|
|
71771
|
+
};
|
|
71772
|
+
space_id: {
|
|
71773
|
+
description: string;
|
|
71774
|
+
format: string;
|
|
70577
71775
|
type: string;
|
|
70578
71776
|
};
|
|
70579
71777
|
};
|
|
@@ -70589,178 +71787,304 @@ declare const _default: {
|
|
|
70589
71787
|
'application/json': {
|
|
70590
71788
|
schema: {
|
|
70591
71789
|
properties: {
|
|
70592
|
-
|
|
71790
|
+
access_methods: {
|
|
71791
|
+
items: {
|
|
71792
|
+
$ref: string;
|
|
71793
|
+
};
|
|
71794
|
+
type: string;
|
|
71795
|
+
};
|
|
71796
|
+
ok: {
|
|
71797
|
+
type: string;
|
|
71798
|
+
};
|
|
71799
|
+
};
|
|
71800
|
+
required: string[];
|
|
71801
|
+
type: string;
|
|
71802
|
+
};
|
|
71803
|
+
};
|
|
71804
|
+
};
|
|
71805
|
+
description: string;
|
|
71806
|
+
};
|
|
71807
|
+
400: {
|
|
71808
|
+
description: string;
|
|
71809
|
+
};
|
|
71810
|
+
401: {
|
|
71811
|
+
description: string;
|
|
71812
|
+
};
|
|
71813
|
+
};
|
|
71814
|
+
security: ({
|
|
71815
|
+
pat_with_workspace: never[];
|
|
71816
|
+
console_session_with_workspace?: never;
|
|
71817
|
+
api_key?: never;
|
|
71818
|
+
} | {
|
|
71819
|
+
console_session_with_workspace: never[];
|
|
71820
|
+
pat_with_workspace?: never;
|
|
71821
|
+
api_key?: never;
|
|
71822
|
+
} | {
|
|
71823
|
+
api_key: never[];
|
|
71824
|
+
pat_with_workspace?: never;
|
|
71825
|
+
console_session_with_workspace?: never;
|
|
71826
|
+
})[];
|
|
71827
|
+
summary: string;
|
|
71828
|
+
tags: never[];
|
|
71829
|
+
'x-draft': string;
|
|
71830
|
+
'x-fern-sdk-group-name': string[];
|
|
71831
|
+
'x-fern-sdk-method-name': string;
|
|
71832
|
+
'x-fern-sdk-return-value': string;
|
|
71833
|
+
'x-response-key': string;
|
|
71834
|
+
'x-title': string;
|
|
71835
|
+
};
|
|
71836
|
+
};
|
|
71837
|
+
'/access_methods/unmanaged/get': {
|
|
71838
|
+
get: {
|
|
71839
|
+
description: string;
|
|
71840
|
+
operationId: string;
|
|
71841
|
+
parameters: {
|
|
71842
|
+
in: string;
|
|
71843
|
+
name: string;
|
|
71844
|
+
required: boolean;
|
|
71845
|
+
schema: {
|
|
71846
|
+
description: string;
|
|
71847
|
+
format: string;
|
|
71848
|
+
type: string;
|
|
71849
|
+
};
|
|
71850
|
+
}[];
|
|
71851
|
+
responses: {
|
|
71852
|
+
200: {
|
|
71853
|
+
content: {
|
|
71854
|
+
'application/json': {
|
|
71855
|
+
schema: {
|
|
71856
|
+
properties: {
|
|
71857
|
+
access_method: {
|
|
70593
71858
|
description: string;
|
|
70594
71859
|
properties: {
|
|
70595
|
-
|
|
70596
|
-
|
|
70597
|
-
|
|
70598
|
-
};
|
|
70599
|
-
type: string;
|
|
70600
|
-
};
|
|
70601
|
-
access_grants: {
|
|
70602
|
-
items: {
|
|
70603
|
-
$ref: string;
|
|
70604
|
-
};
|
|
70605
|
-
type: string;
|
|
70606
|
-
};
|
|
70607
|
-
access_methods: {
|
|
70608
|
-
items: {
|
|
70609
|
-
$ref: string;
|
|
70610
|
-
};
|
|
70611
|
-
type: string;
|
|
70612
|
-
};
|
|
70613
|
-
acs_access_groups: {
|
|
70614
|
-
items: {
|
|
70615
|
-
$ref: string;
|
|
70616
|
-
};
|
|
71860
|
+
access_method_id: {
|
|
71861
|
+
description: string;
|
|
71862
|
+
format: string;
|
|
70617
71863
|
type: string;
|
|
70618
71864
|
};
|
|
70619
|
-
|
|
70620
|
-
|
|
70621
|
-
|
|
70622
|
-
};
|
|
71865
|
+
code: {
|
|
71866
|
+
description: string;
|
|
71867
|
+
nullable: boolean;
|
|
70623
71868
|
type: string;
|
|
70624
71869
|
};
|
|
70625
|
-
|
|
70626
|
-
|
|
70627
|
-
|
|
70628
|
-
};
|
|
71870
|
+
created_at: {
|
|
71871
|
+
description: string;
|
|
71872
|
+
format: string;
|
|
70629
71873
|
type: string;
|
|
70630
71874
|
};
|
|
70631
|
-
|
|
70632
|
-
|
|
70633
|
-
$ref: string;
|
|
70634
|
-
};
|
|
71875
|
+
display_name: {
|
|
71876
|
+
description: string;
|
|
70635
71877
|
type: string;
|
|
70636
71878
|
};
|
|
70637
|
-
|
|
70638
|
-
|
|
70639
|
-
$ref: string;
|
|
70640
|
-
};
|
|
71879
|
+
is_encoding_required: {
|
|
71880
|
+
description: string;
|
|
70641
71881
|
type: string;
|
|
70642
71882
|
};
|
|
70643
|
-
|
|
70644
|
-
|
|
70645
|
-
$ref: string;
|
|
70646
|
-
};
|
|
71883
|
+
is_issued: {
|
|
71884
|
+
description: string;
|
|
70647
71885
|
type: string;
|
|
70648
71886
|
};
|
|
70649
|
-
|
|
70650
|
-
|
|
70651
|
-
|
|
70652
|
-
|
|
71887
|
+
issued_at: {
|
|
71888
|
+
description: string;
|
|
71889
|
+
format: string;
|
|
71890
|
+
nullable: boolean;
|
|
70653
71891
|
type: string;
|
|
70654
71892
|
};
|
|
70655
|
-
|
|
71893
|
+
mode: {
|
|
71894
|
+
description: string;
|
|
70656
71895
|
enum: string[];
|
|
70657
71896
|
type: string;
|
|
70658
71897
|
};
|
|
70659
|
-
|
|
70660
|
-
|
|
70661
|
-
$ref: string;
|
|
70662
|
-
};
|
|
70663
|
-
type: string;
|
|
70664
|
-
};
|
|
70665
|
-
connect_webviews: {
|
|
70666
|
-
items: {
|
|
70667
|
-
$ref: string;
|
|
70668
|
-
};
|
|
70669
|
-
type: string;
|
|
70670
|
-
};
|
|
70671
|
-
customization_profiles: {
|
|
70672
|
-
items: {
|
|
70673
|
-
$ref: string;
|
|
70674
|
-
};
|
|
70675
|
-
type: string;
|
|
70676
|
-
};
|
|
70677
|
-
devices: {
|
|
70678
|
-
items: {
|
|
70679
|
-
$ref: string;
|
|
70680
|
-
};
|
|
70681
|
-
type: string;
|
|
70682
|
-
};
|
|
70683
|
-
events: {
|
|
70684
|
-
items: {
|
|
70685
|
-
$ref: string;
|
|
70686
|
-
};
|
|
70687
|
-
type: string;
|
|
70688
|
-
};
|
|
70689
|
-
instant_keys: {
|
|
71898
|
+
warnings: {
|
|
71899
|
+
description: string;
|
|
70690
71900
|
items: {
|
|
70691
|
-
|
|
71901
|
+
description: string;
|
|
71902
|
+
discriminator: {
|
|
71903
|
+
propertyName: string;
|
|
71904
|
+
};
|
|
71905
|
+
oneOf: {
|
|
71906
|
+
description: string;
|
|
71907
|
+
properties: {
|
|
71908
|
+
created_at: {
|
|
71909
|
+
description: string;
|
|
71910
|
+
format: string;
|
|
71911
|
+
type: string;
|
|
71912
|
+
};
|
|
71913
|
+
message: {
|
|
71914
|
+
description: string;
|
|
71915
|
+
type: string;
|
|
71916
|
+
};
|
|
71917
|
+
warning_code: {
|
|
71918
|
+
description: string;
|
|
71919
|
+
enum: string[];
|
|
71920
|
+
type: string;
|
|
71921
|
+
};
|
|
71922
|
+
};
|
|
71923
|
+
required: string[];
|
|
71924
|
+
type: string;
|
|
71925
|
+
}[];
|
|
70692
71926
|
};
|
|
70693
71927
|
type: string;
|
|
70694
71928
|
};
|
|
70695
|
-
|
|
70696
|
-
|
|
70697
|
-
|
|
70698
|
-
};
|
|
71929
|
+
workspace_id: {
|
|
71930
|
+
description: string;
|
|
71931
|
+
format: string;
|
|
70699
71932
|
type: string;
|
|
70700
71933
|
};
|
|
70701
|
-
|
|
70702
|
-
|
|
70703
|
-
|
|
70704
|
-
|
|
71934
|
+
};
|
|
71935
|
+
required: string[];
|
|
71936
|
+
type: string;
|
|
71937
|
+
'x-draft': string;
|
|
71938
|
+
'x-route-path': string;
|
|
71939
|
+
};
|
|
71940
|
+
ok: {
|
|
71941
|
+
type: string;
|
|
71942
|
+
};
|
|
71943
|
+
};
|
|
71944
|
+
required: string[];
|
|
71945
|
+
type: string;
|
|
71946
|
+
};
|
|
71947
|
+
};
|
|
71948
|
+
};
|
|
71949
|
+
description: string;
|
|
71950
|
+
};
|
|
71951
|
+
400: {
|
|
71952
|
+
description: string;
|
|
71953
|
+
};
|
|
71954
|
+
401: {
|
|
71955
|
+
description: string;
|
|
71956
|
+
};
|
|
71957
|
+
};
|
|
71958
|
+
security: ({
|
|
71959
|
+
pat_with_workspace: never[];
|
|
71960
|
+
console_session_with_workspace?: never;
|
|
71961
|
+
api_key?: never;
|
|
71962
|
+
} | {
|
|
71963
|
+
console_session_with_workspace: never[];
|
|
71964
|
+
pat_with_workspace?: never;
|
|
71965
|
+
api_key?: never;
|
|
71966
|
+
} | {
|
|
71967
|
+
api_key: never[];
|
|
71968
|
+
pat_with_workspace?: never;
|
|
71969
|
+
console_session_with_workspace?: never;
|
|
71970
|
+
})[];
|
|
71971
|
+
summary: string;
|
|
71972
|
+
tags: never[];
|
|
71973
|
+
'x-draft': string;
|
|
71974
|
+
'x-fern-sdk-group-name': string[];
|
|
71975
|
+
'x-fern-sdk-method-name': string;
|
|
71976
|
+
'x-fern-sdk-return-value': string;
|
|
71977
|
+
'x-response-key': string;
|
|
71978
|
+
'x-title': string;
|
|
71979
|
+
};
|
|
71980
|
+
post: {
|
|
71981
|
+
description: string;
|
|
71982
|
+
operationId: string;
|
|
71983
|
+
requestBody: {
|
|
71984
|
+
content: {
|
|
71985
|
+
'application/json': {
|
|
71986
|
+
schema: {
|
|
71987
|
+
properties: {
|
|
71988
|
+
access_method_id: {
|
|
71989
|
+
description: string;
|
|
71990
|
+
format: string;
|
|
71991
|
+
type: string;
|
|
71992
|
+
};
|
|
71993
|
+
};
|
|
71994
|
+
required: string[];
|
|
71995
|
+
type: string;
|
|
71996
|
+
};
|
|
71997
|
+
};
|
|
71998
|
+
};
|
|
71999
|
+
};
|
|
72000
|
+
responses: {
|
|
72001
|
+
200: {
|
|
72002
|
+
content: {
|
|
72003
|
+
'application/json': {
|
|
72004
|
+
schema: {
|
|
72005
|
+
properties: {
|
|
72006
|
+
access_method: {
|
|
72007
|
+
description: string;
|
|
72008
|
+
properties: {
|
|
72009
|
+
access_method_id: {
|
|
72010
|
+
description: string;
|
|
72011
|
+
format: string;
|
|
70705
72012
|
type: string;
|
|
70706
72013
|
};
|
|
70707
|
-
|
|
70708
|
-
|
|
70709
|
-
|
|
70710
|
-
};
|
|
72014
|
+
code: {
|
|
72015
|
+
description: string;
|
|
72016
|
+
nullable: boolean;
|
|
70711
72017
|
type: string;
|
|
70712
72018
|
};
|
|
70713
|
-
|
|
70714
|
-
|
|
70715
|
-
|
|
70716
|
-
};
|
|
72019
|
+
created_at: {
|
|
72020
|
+
description: string;
|
|
72021
|
+
format: string;
|
|
70717
72022
|
type: string;
|
|
70718
72023
|
};
|
|
70719
|
-
|
|
70720
|
-
|
|
70721
|
-
$ref: string;
|
|
70722
|
-
};
|
|
72024
|
+
display_name: {
|
|
72025
|
+
description: string;
|
|
70723
72026
|
type: string;
|
|
70724
72027
|
};
|
|
70725
|
-
|
|
70726
|
-
|
|
70727
|
-
$ref: string;
|
|
70728
|
-
};
|
|
72028
|
+
is_encoding_required: {
|
|
72029
|
+
description: string;
|
|
70729
72030
|
type: string;
|
|
70730
72031
|
};
|
|
70731
|
-
|
|
70732
|
-
|
|
70733
|
-
$ref: string;
|
|
70734
|
-
};
|
|
72032
|
+
is_issued: {
|
|
72033
|
+
description: string;
|
|
70735
72034
|
type: string;
|
|
70736
72035
|
};
|
|
70737
|
-
|
|
70738
|
-
|
|
70739
|
-
|
|
70740
|
-
|
|
72036
|
+
issued_at: {
|
|
72037
|
+
description: string;
|
|
72038
|
+
format: string;
|
|
72039
|
+
nullable: boolean;
|
|
70741
72040
|
type: string;
|
|
70742
72041
|
};
|
|
70743
|
-
|
|
70744
|
-
|
|
70745
|
-
|
|
70746
|
-
};
|
|
72042
|
+
mode: {
|
|
72043
|
+
description: string;
|
|
72044
|
+
enum: string[];
|
|
70747
72045
|
type: string;
|
|
70748
72046
|
};
|
|
70749
|
-
|
|
72047
|
+
warnings: {
|
|
72048
|
+
description: string;
|
|
70750
72049
|
items: {
|
|
70751
|
-
|
|
72050
|
+
description: string;
|
|
72051
|
+
discriminator: {
|
|
72052
|
+
propertyName: string;
|
|
72053
|
+
};
|
|
72054
|
+
oneOf: {
|
|
72055
|
+
description: string;
|
|
72056
|
+
properties: {
|
|
72057
|
+
created_at: {
|
|
72058
|
+
description: string;
|
|
72059
|
+
format: string;
|
|
72060
|
+
type: string;
|
|
72061
|
+
};
|
|
72062
|
+
message: {
|
|
72063
|
+
description: string;
|
|
72064
|
+
type: string;
|
|
72065
|
+
};
|
|
72066
|
+
warning_code: {
|
|
72067
|
+
description: string;
|
|
72068
|
+
enum: string[];
|
|
72069
|
+
type: string;
|
|
72070
|
+
};
|
|
72071
|
+
};
|
|
72072
|
+
required: string[];
|
|
72073
|
+
type: string;
|
|
72074
|
+
}[];
|
|
70752
72075
|
};
|
|
70753
72076
|
type: string;
|
|
70754
72077
|
};
|
|
70755
|
-
|
|
70756
|
-
|
|
70757
|
-
|
|
70758
|
-
};
|
|
72078
|
+
workspace_id: {
|
|
72079
|
+
description: string;
|
|
72080
|
+
format: string;
|
|
70759
72081
|
type: string;
|
|
70760
72082
|
};
|
|
70761
72083
|
};
|
|
70762
72084
|
required: string[];
|
|
70763
72085
|
type: string;
|
|
72086
|
+
'x-draft': string;
|
|
72087
|
+
'x-route-path': string;
|
|
70764
72088
|
};
|
|
70765
72089
|
ok: {
|
|
70766
72090
|
type: string;
|
|
@@ -70795,7 +72119,6 @@ declare const _default: {
|
|
|
70795
72119
|
})[];
|
|
70796
72120
|
summary: string;
|
|
70797
72121
|
tags: never[];
|
|
70798
|
-
'x-batch-type': string;
|
|
70799
72122
|
'x-draft': string;
|
|
70800
72123
|
'x-fern-sdk-group-name': string[];
|
|
70801
72124
|
'x-fern-sdk-method-name': string;
|
|
@@ -70804,7 +72127,7 @@ declare const _default: {
|
|
|
70804
72127
|
'x-title': string;
|
|
70805
72128
|
};
|
|
70806
72129
|
};
|
|
70807
|
-
'/access_methods/list': {
|
|
72130
|
+
'/access_methods/unmanaged/list': {
|
|
70808
72131
|
get: {
|
|
70809
72132
|
description: string;
|
|
70810
72133
|
operationId: string;
|
|
@@ -70826,7 +72149,87 @@ declare const _default: {
|
|
|
70826
72149
|
properties: {
|
|
70827
72150
|
access_methods: {
|
|
70828
72151
|
items: {
|
|
70829
|
-
|
|
72152
|
+
description: string;
|
|
72153
|
+
properties: {
|
|
72154
|
+
access_method_id: {
|
|
72155
|
+
description: string;
|
|
72156
|
+
format: string;
|
|
72157
|
+
type: string;
|
|
72158
|
+
};
|
|
72159
|
+
code: {
|
|
72160
|
+
description: string;
|
|
72161
|
+
nullable: boolean;
|
|
72162
|
+
type: string;
|
|
72163
|
+
};
|
|
72164
|
+
created_at: {
|
|
72165
|
+
description: string;
|
|
72166
|
+
format: string;
|
|
72167
|
+
type: string;
|
|
72168
|
+
};
|
|
72169
|
+
display_name: {
|
|
72170
|
+
description: string;
|
|
72171
|
+
type: string;
|
|
72172
|
+
};
|
|
72173
|
+
is_encoding_required: {
|
|
72174
|
+
description: string;
|
|
72175
|
+
type: string;
|
|
72176
|
+
};
|
|
72177
|
+
is_issued: {
|
|
72178
|
+
description: string;
|
|
72179
|
+
type: string;
|
|
72180
|
+
};
|
|
72181
|
+
issued_at: {
|
|
72182
|
+
description: string;
|
|
72183
|
+
format: string;
|
|
72184
|
+
nullable: boolean;
|
|
72185
|
+
type: string;
|
|
72186
|
+
};
|
|
72187
|
+
mode: {
|
|
72188
|
+
description: string;
|
|
72189
|
+
enum: string[];
|
|
72190
|
+
type: string;
|
|
72191
|
+
};
|
|
72192
|
+
warnings: {
|
|
72193
|
+
description: string;
|
|
72194
|
+
items: {
|
|
72195
|
+
description: string;
|
|
72196
|
+
discriminator: {
|
|
72197
|
+
propertyName: string;
|
|
72198
|
+
};
|
|
72199
|
+
oneOf: {
|
|
72200
|
+
description: string;
|
|
72201
|
+
properties: {
|
|
72202
|
+
created_at: {
|
|
72203
|
+
description: string;
|
|
72204
|
+
format: string;
|
|
72205
|
+
type: string;
|
|
72206
|
+
};
|
|
72207
|
+
message: {
|
|
72208
|
+
description: string;
|
|
72209
|
+
type: string;
|
|
72210
|
+
};
|
|
72211
|
+
warning_code: {
|
|
72212
|
+
description: string;
|
|
72213
|
+
enum: string[];
|
|
72214
|
+
type: string;
|
|
72215
|
+
};
|
|
72216
|
+
};
|
|
72217
|
+
required: string[];
|
|
72218
|
+
type: string;
|
|
72219
|
+
}[];
|
|
72220
|
+
};
|
|
72221
|
+
type: string;
|
|
72222
|
+
};
|
|
72223
|
+
workspace_id: {
|
|
72224
|
+
description: string;
|
|
72225
|
+
format: string;
|
|
72226
|
+
type: string;
|
|
72227
|
+
};
|
|
72228
|
+
};
|
|
72229
|
+
required: string[];
|
|
72230
|
+
type: string;
|
|
72231
|
+
'x-draft': string;
|
|
72232
|
+
'x-route-path': string;
|
|
70830
72233
|
};
|
|
70831
72234
|
type: string;
|
|
70832
72235
|
};
|
|
@@ -70913,7 +72316,87 @@ declare const _default: {
|
|
|
70913
72316
|
properties: {
|
|
70914
72317
|
access_methods: {
|
|
70915
72318
|
items: {
|
|
70916
|
-
|
|
72319
|
+
description: string;
|
|
72320
|
+
properties: {
|
|
72321
|
+
access_method_id: {
|
|
72322
|
+
description: string;
|
|
72323
|
+
format: string;
|
|
72324
|
+
type: string;
|
|
72325
|
+
};
|
|
72326
|
+
code: {
|
|
72327
|
+
description: string;
|
|
72328
|
+
nullable: boolean;
|
|
72329
|
+
type: string;
|
|
72330
|
+
};
|
|
72331
|
+
created_at: {
|
|
72332
|
+
description: string;
|
|
72333
|
+
format: string;
|
|
72334
|
+
type: string;
|
|
72335
|
+
};
|
|
72336
|
+
display_name: {
|
|
72337
|
+
description: string;
|
|
72338
|
+
type: string;
|
|
72339
|
+
};
|
|
72340
|
+
is_encoding_required: {
|
|
72341
|
+
description: string;
|
|
72342
|
+
type: string;
|
|
72343
|
+
};
|
|
72344
|
+
is_issued: {
|
|
72345
|
+
description: string;
|
|
72346
|
+
type: string;
|
|
72347
|
+
};
|
|
72348
|
+
issued_at: {
|
|
72349
|
+
description: string;
|
|
72350
|
+
format: string;
|
|
72351
|
+
nullable: boolean;
|
|
72352
|
+
type: string;
|
|
72353
|
+
};
|
|
72354
|
+
mode: {
|
|
72355
|
+
description: string;
|
|
72356
|
+
enum: string[];
|
|
72357
|
+
type: string;
|
|
72358
|
+
};
|
|
72359
|
+
warnings: {
|
|
72360
|
+
description: string;
|
|
72361
|
+
items: {
|
|
72362
|
+
description: string;
|
|
72363
|
+
discriminator: {
|
|
72364
|
+
propertyName: string;
|
|
72365
|
+
};
|
|
72366
|
+
oneOf: {
|
|
72367
|
+
description: string;
|
|
72368
|
+
properties: {
|
|
72369
|
+
created_at: {
|
|
72370
|
+
description: string;
|
|
72371
|
+
format: string;
|
|
72372
|
+
type: string;
|
|
72373
|
+
};
|
|
72374
|
+
message: {
|
|
72375
|
+
description: string;
|
|
72376
|
+
type: string;
|
|
72377
|
+
};
|
|
72378
|
+
warning_code: {
|
|
72379
|
+
description: string;
|
|
72380
|
+
enum: string[];
|
|
72381
|
+
type: string;
|
|
72382
|
+
};
|
|
72383
|
+
};
|
|
72384
|
+
required: string[];
|
|
72385
|
+
type: string;
|
|
72386
|
+
}[];
|
|
72387
|
+
};
|
|
72388
|
+
type: string;
|
|
72389
|
+
};
|
|
72390
|
+
workspace_id: {
|
|
72391
|
+
description: string;
|
|
72392
|
+
format: string;
|
|
72393
|
+
type: string;
|
|
72394
|
+
};
|
|
72395
|
+
};
|
|
72396
|
+
required: string[];
|
|
72397
|
+
type: string;
|
|
72398
|
+
'x-draft': string;
|
|
72399
|
+
'x-route-path': string;
|
|
70917
72400
|
};
|
|
70918
72401
|
type: string;
|
|
70919
72402
|
};
|
|
@@ -100681,15 +102164,305 @@ declare const _default: {
|
|
|
100681
102164
|
tags: string[];
|
|
100682
102165
|
'x-fern-sdk-group-name': string[];
|
|
100683
102166
|
'x-fern-sdk-method-name': string;
|
|
100684
|
-
'x-fern-sdk-return-value': string;
|
|
100685
|
-
'x-response-key': string;
|
|
102167
|
+
'x-fern-sdk-return-value': string;
|
|
102168
|
+
'x-response-key': string;
|
|
102169
|
+
'x-title': string;
|
|
102170
|
+
};
|
|
102171
|
+
};
|
|
102172
|
+
'/user_identities/get': {
|
|
102173
|
+
get: {
|
|
102174
|
+
description: string;
|
|
102175
|
+
operationId: string;
|
|
102176
|
+
responses: {
|
|
102177
|
+
200: {
|
|
102178
|
+
content: {
|
|
102179
|
+
'application/json': {
|
|
102180
|
+
schema: {
|
|
102181
|
+
properties: {
|
|
102182
|
+
ok: {
|
|
102183
|
+
type: string;
|
|
102184
|
+
};
|
|
102185
|
+
user_identity: {
|
|
102186
|
+
$ref: string;
|
|
102187
|
+
};
|
|
102188
|
+
};
|
|
102189
|
+
required: string[];
|
|
102190
|
+
type: string;
|
|
102191
|
+
};
|
|
102192
|
+
};
|
|
102193
|
+
};
|
|
102194
|
+
description: string;
|
|
102195
|
+
};
|
|
102196
|
+
400: {
|
|
102197
|
+
description: string;
|
|
102198
|
+
};
|
|
102199
|
+
401: {
|
|
102200
|
+
description: string;
|
|
102201
|
+
};
|
|
102202
|
+
};
|
|
102203
|
+
security: ({
|
|
102204
|
+
api_key: never[];
|
|
102205
|
+
pat_with_workspace?: never;
|
|
102206
|
+
console_session_with_workspace?: never;
|
|
102207
|
+
} | {
|
|
102208
|
+
pat_with_workspace: never[];
|
|
102209
|
+
api_key?: never;
|
|
102210
|
+
console_session_with_workspace?: never;
|
|
102211
|
+
} | {
|
|
102212
|
+
console_session_with_workspace: never[];
|
|
102213
|
+
api_key?: never;
|
|
102214
|
+
pat_with_workspace?: never;
|
|
102215
|
+
})[];
|
|
102216
|
+
summary: string;
|
|
102217
|
+
tags: string[];
|
|
102218
|
+
'x-fern-sdk-group-name': string[];
|
|
102219
|
+
'x-fern-sdk-method-name': string;
|
|
102220
|
+
'x-fern-sdk-return-value': string;
|
|
102221
|
+
'x-response-key': string;
|
|
102222
|
+
'x-title': string;
|
|
102223
|
+
};
|
|
102224
|
+
post: {
|
|
102225
|
+
description: string;
|
|
102226
|
+
operationId: string;
|
|
102227
|
+
requestBody: {
|
|
102228
|
+
content: {
|
|
102229
|
+
'application/json': {
|
|
102230
|
+
schema: {
|
|
102231
|
+
oneOf: ({
|
|
102232
|
+
properties: {
|
|
102233
|
+
user_identity_id: {
|
|
102234
|
+
description: string;
|
|
102235
|
+
format: string;
|
|
102236
|
+
type: string;
|
|
102237
|
+
};
|
|
102238
|
+
user_identity_key?: never;
|
|
102239
|
+
};
|
|
102240
|
+
required: string[];
|
|
102241
|
+
type: string;
|
|
102242
|
+
} | {
|
|
102243
|
+
properties: {
|
|
102244
|
+
user_identity_key: {
|
|
102245
|
+
type: string;
|
|
102246
|
+
};
|
|
102247
|
+
user_identity_id?: never;
|
|
102248
|
+
};
|
|
102249
|
+
required: string[];
|
|
102250
|
+
type: string;
|
|
102251
|
+
})[];
|
|
102252
|
+
};
|
|
102253
|
+
};
|
|
102254
|
+
};
|
|
102255
|
+
};
|
|
102256
|
+
responses: {
|
|
102257
|
+
200: {
|
|
102258
|
+
content: {
|
|
102259
|
+
'application/json': {
|
|
102260
|
+
schema: {
|
|
102261
|
+
properties: {
|
|
102262
|
+
ok: {
|
|
102263
|
+
type: string;
|
|
102264
|
+
};
|
|
102265
|
+
user_identity: {
|
|
102266
|
+
$ref: string;
|
|
102267
|
+
};
|
|
102268
|
+
};
|
|
102269
|
+
required: string[];
|
|
102270
|
+
type: string;
|
|
102271
|
+
};
|
|
102272
|
+
};
|
|
102273
|
+
};
|
|
102274
|
+
description: string;
|
|
102275
|
+
};
|
|
102276
|
+
400: {
|
|
102277
|
+
description: string;
|
|
102278
|
+
};
|
|
102279
|
+
401: {
|
|
102280
|
+
description: string;
|
|
102281
|
+
};
|
|
102282
|
+
};
|
|
102283
|
+
security: ({
|
|
102284
|
+
api_key: never[];
|
|
102285
|
+
pat_with_workspace?: never;
|
|
102286
|
+
console_session_with_workspace?: never;
|
|
102287
|
+
} | {
|
|
102288
|
+
pat_with_workspace: never[];
|
|
102289
|
+
api_key?: never;
|
|
102290
|
+
console_session_with_workspace?: never;
|
|
102291
|
+
} | {
|
|
102292
|
+
console_session_with_workspace: never[];
|
|
102293
|
+
api_key?: never;
|
|
102294
|
+
pat_with_workspace?: never;
|
|
102295
|
+
})[];
|
|
102296
|
+
summary: string;
|
|
102297
|
+
tags: string[];
|
|
102298
|
+
'x-fern-sdk-group-name': string[];
|
|
102299
|
+
'x-fern-sdk-method-name': string;
|
|
102300
|
+
'x-fern-sdk-return-value': string;
|
|
102301
|
+
'x-response-key': string;
|
|
102302
|
+
'x-title': string;
|
|
102303
|
+
};
|
|
102304
|
+
};
|
|
102305
|
+
'/user_identities/grant_access_to_device': {
|
|
102306
|
+
post: {
|
|
102307
|
+
description: string;
|
|
102308
|
+
operationId: string;
|
|
102309
|
+
requestBody: {
|
|
102310
|
+
content: {
|
|
102311
|
+
'application/json': {
|
|
102312
|
+
schema: {
|
|
102313
|
+
properties: {
|
|
102314
|
+
device_id: {
|
|
102315
|
+
description: string;
|
|
102316
|
+
format: string;
|
|
102317
|
+
type: string;
|
|
102318
|
+
};
|
|
102319
|
+
user_identity_id: {
|
|
102320
|
+
description: string;
|
|
102321
|
+
format: string;
|
|
102322
|
+
type: string;
|
|
102323
|
+
};
|
|
102324
|
+
};
|
|
102325
|
+
required: string[];
|
|
102326
|
+
type: string;
|
|
102327
|
+
};
|
|
102328
|
+
};
|
|
102329
|
+
};
|
|
102330
|
+
};
|
|
102331
|
+
responses: {
|
|
102332
|
+
200: {
|
|
102333
|
+
content: {
|
|
102334
|
+
'application/json': {
|
|
102335
|
+
schema: {
|
|
102336
|
+
properties: {
|
|
102337
|
+
ok: {
|
|
102338
|
+
type: string;
|
|
102339
|
+
};
|
|
102340
|
+
};
|
|
102341
|
+
required: string[];
|
|
102342
|
+
type: string;
|
|
102343
|
+
};
|
|
102344
|
+
};
|
|
102345
|
+
};
|
|
102346
|
+
description: string;
|
|
102347
|
+
};
|
|
102348
|
+
400: {
|
|
102349
|
+
description: string;
|
|
102350
|
+
};
|
|
102351
|
+
401: {
|
|
102352
|
+
description: string;
|
|
102353
|
+
};
|
|
102354
|
+
};
|
|
102355
|
+
security: ({
|
|
102356
|
+
api_key: never[];
|
|
102357
|
+
pat_with_workspace?: never;
|
|
102358
|
+
console_session_with_workspace?: never;
|
|
102359
|
+
} | {
|
|
102360
|
+
pat_with_workspace: never[];
|
|
102361
|
+
api_key?: never;
|
|
102362
|
+
console_session_with_workspace?: never;
|
|
102363
|
+
} | {
|
|
102364
|
+
console_session_with_workspace: never[];
|
|
102365
|
+
api_key?: never;
|
|
102366
|
+
pat_with_workspace?: never;
|
|
102367
|
+
})[];
|
|
102368
|
+
summary: string;
|
|
102369
|
+
tags: string[];
|
|
102370
|
+
'x-fern-sdk-group-name': string[];
|
|
102371
|
+
'x-fern-sdk-method-name': string;
|
|
102372
|
+
'x-response-key': null;
|
|
102373
|
+
'x-title': string;
|
|
102374
|
+
};
|
|
102375
|
+
put: {
|
|
102376
|
+
description: string;
|
|
102377
|
+
operationId: string;
|
|
102378
|
+
requestBody: {
|
|
102379
|
+
content: {
|
|
102380
|
+
'application/json': {
|
|
102381
|
+
schema: {
|
|
102382
|
+
properties: {
|
|
102383
|
+
device_id: {
|
|
102384
|
+
description: string;
|
|
102385
|
+
format: string;
|
|
102386
|
+
type: string;
|
|
102387
|
+
};
|
|
102388
|
+
user_identity_id: {
|
|
102389
|
+
description: string;
|
|
102390
|
+
format: string;
|
|
102391
|
+
type: string;
|
|
102392
|
+
};
|
|
102393
|
+
};
|
|
102394
|
+
required: string[];
|
|
102395
|
+
type: string;
|
|
102396
|
+
};
|
|
102397
|
+
};
|
|
102398
|
+
};
|
|
102399
|
+
};
|
|
102400
|
+
responses: {
|
|
102401
|
+
200: {
|
|
102402
|
+
content: {
|
|
102403
|
+
'application/json': {
|
|
102404
|
+
schema: {
|
|
102405
|
+
properties: {
|
|
102406
|
+
ok: {
|
|
102407
|
+
type: string;
|
|
102408
|
+
};
|
|
102409
|
+
};
|
|
102410
|
+
required: string[];
|
|
102411
|
+
type: string;
|
|
102412
|
+
};
|
|
102413
|
+
};
|
|
102414
|
+
};
|
|
102415
|
+
description: string;
|
|
102416
|
+
};
|
|
102417
|
+
400: {
|
|
102418
|
+
description: string;
|
|
102419
|
+
};
|
|
102420
|
+
401: {
|
|
102421
|
+
description: string;
|
|
102422
|
+
};
|
|
102423
|
+
};
|
|
102424
|
+
security: ({
|
|
102425
|
+
api_key: never[];
|
|
102426
|
+
pat_with_workspace?: never;
|
|
102427
|
+
console_session_with_workspace?: never;
|
|
102428
|
+
} | {
|
|
102429
|
+
pat_with_workspace: never[];
|
|
102430
|
+
api_key?: never;
|
|
102431
|
+
console_session_with_workspace?: never;
|
|
102432
|
+
} | {
|
|
102433
|
+
console_session_with_workspace: never[];
|
|
102434
|
+
api_key?: never;
|
|
102435
|
+
pat_with_workspace?: never;
|
|
102436
|
+
})[];
|
|
102437
|
+
summary: string;
|
|
102438
|
+
tags: string[];
|
|
102439
|
+
'x-fern-sdk-group-name': string[];
|
|
102440
|
+
'x-fern-sdk-method-name': string;
|
|
102441
|
+
'x-response-key': null;
|
|
100686
102442
|
'x-title': string;
|
|
100687
102443
|
};
|
|
100688
102444
|
};
|
|
100689
|
-
'/user_identities/
|
|
102445
|
+
'/user_identities/list': {
|
|
100690
102446
|
get: {
|
|
100691
102447
|
description: string;
|
|
100692
102448
|
operationId: string;
|
|
102449
|
+
parameters: ({
|
|
102450
|
+
in: string;
|
|
102451
|
+
name: string;
|
|
102452
|
+
schema: {
|
|
102453
|
+
description: string;
|
|
102454
|
+
type: string;
|
|
102455
|
+
format?: never;
|
|
102456
|
+
};
|
|
102457
|
+
} | {
|
|
102458
|
+
in: string;
|
|
102459
|
+
name: string;
|
|
102460
|
+
schema: {
|
|
102461
|
+
description: string;
|
|
102462
|
+
format: string;
|
|
102463
|
+
type: string;
|
|
102464
|
+
};
|
|
102465
|
+
})[];
|
|
100693
102466
|
responses: {
|
|
100694
102467
|
200: {
|
|
100695
102468
|
content: {
|
|
@@ -100699,8 +102472,11 @@ declare const _default: {
|
|
|
100699
102472
|
ok: {
|
|
100700
102473
|
type: string;
|
|
100701
102474
|
};
|
|
100702
|
-
|
|
100703
|
-
|
|
102475
|
+
user_identities: {
|
|
102476
|
+
items: {
|
|
102477
|
+
$ref: string;
|
|
102478
|
+
};
|
|
102479
|
+
type: string;
|
|
100704
102480
|
};
|
|
100705
102481
|
};
|
|
100706
102482
|
required: string[];
|
|
@@ -100719,15 +102495,23 @@ declare const _default: {
|
|
|
100719
102495
|
};
|
|
100720
102496
|
security: ({
|
|
100721
102497
|
api_key: never[];
|
|
102498
|
+
client_session?: never;
|
|
102499
|
+
pat_with_workspace?: never;
|
|
102500
|
+
console_session_with_workspace?: never;
|
|
102501
|
+
} | {
|
|
102502
|
+
client_session: never[];
|
|
102503
|
+
api_key?: never;
|
|
100722
102504
|
pat_with_workspace?: never;
|
|
100723
102505
|
console_session_with_workspace?: never;
|
|
100724
102506
|
} | {
|
|
100725
102507
|
pat_with_workspace: never[];
|
|
100726
102508
|
api_key?: never;
|
|
102509
|
+
client_session?: never;
|
|
100727
102510
|
console_session_with_workspace?: never;
|
|
100728
102511
|
} | {
|
|
100729
102512
|
console_session_with_workspace: never[];
|
|
100730
102513
|
api_key?: never;
|
|
102514
|
+
client_session?: never;
|
|
100731
102515
|
pat_with_workspace?: never;
|
|
100732
102516
|
})[];
|
|
100733
102517
|
summary: string;
|
|
@@ -100745,27 +102529,18 @@ declare const _default: {
|
|
|
100745
102529
|
content: {
|
|
100746
102530
|
'application/json': {
|
|
100747
102531
|
schema: {
|
|
100748
|
-
|
|
100749
|
-
|
|
100750
|
-
|
|
100751
|
-
|
|
100752
|
-
|
|
100753
|
-
type: string;
|
|
100754
|
-
};
|
|
100755
|
-
user_identity_key?: never;
|
|
102532
|
+
properties: {
|
|
102533
|
+
credential_manager_acs_system_id: {
|
|
102534
|
+
description: string;
|
|
102535
|
+
format: string;
|
|
102536
|
+
type: string;
|
|
100756
102537
|
};
|
|
100757
|
-
|
|
100758
|
-
|
|
100759
|
-
|
|
100760
|
-
properties: {
|
|
100761
|
-
user_identity_key: {
|
|
100762
|
-
type: string;
|
|
100763
|
-
};
|
|
100764
|
-
user_identity_id?: never;
|
|
102538
|
+
search: {
|
|
102539
|
+
description: string;
|
|
102540
|
+
type: string;
|
|
100765
102541
|
};
|
|
100766
|
-
|
|
100767
|
-
|
|
100768
|
-
})[];
|
|
102542
|
+
};
|
|
102543
|
+
type: string;
|
|
100769
102544
|
};
|
|
100770
102545
|
};
|
|
100771
102546
|
};
|
|
@@ -100779,8 +102554,11 @@ declare const _default: {
|
|
|
100779
102554
|
ok: {
|
|
100780
102555
|
type: string;
|
|
100781
102556
|
};
|
|
100782
|
-
|
|
100783
|
-
|
|
102557
|
+
user_identities: {
|
|
102558
|
+
items: {
|
|
102559
|
+
$ref: string;
|
|
102560
|
+
};
|
|
102561
|
+
type: string;
|
|
100784
102562
|
};
|
|
100785
102563
|
};
|
|
100786
102564
|
required: string[];
|
|
@@ -100799,15 +102577,23 @@ declare const _default: {
|
|
|
100799
102577
|
};
|
|
100800
102578
|
security: ({
|
|
100801
102579
|
api_key: never[];
|
|
102580
|
+
client_session?: never;
|
|
102581
|
+
pat_with_workspace?: never;
|
|
102582
|
+
console_session_with_workspace?: never;
|
|
102583
|
+
} | {
|
|
102584
|
+
client_session: never[];
|
|
102585
|
+
api_key?: never;
|
|
100802
102586
|
pat_with_workspace?: never;
|
|
100803
102587
|
console_session_with_workspace?: never;
|
|
100804
102588
|
} | {
|
|
100805
102589
|
pat_with_workspace: never[];
|
|
100806
102590
|
api_key?: never;
|
|
102591
|
+
client_session?: never;
|
|
100807
102592
|
console_session_with_workspace?: never;
|
|
100808
102593
|
} | {
|
|
100809
102594
|
console_session_with_workspace: never[];
|
|
100810
102595
|
api_key?: never;
|
|
102596
|
+
client_session?: never;
|
|
100811
102597
|
pat_with_workspace?: never;
|
|
100812
102598
|
})[];
|
|
100813
102599
|
summary: string;
|
|
@@ -100819,38 +102605,40 @@ declare const _default: {
|
|
|
100819
102605
|
'x-title': string;
|
|
100820
102606
|
};
|
|
100821
102607
|
};
|
|
100822
|
-
'/user_identities/
|
|
100823
|
-
|
|
102608
|
+
'/user_identities/list_accessible_devices': {
|
|
102609
|
+
get: {
|
|
100824
102610
|
description: string;
|
|
100825
102611
|
operationId: string;
|
|
100826
|
-
|
|
100827
|
-
|
|
100828
|
-
|
|
100829
|
-
|
|
100830
|
-
|
|
100831
|
-
|
|
100832
|
-
|
|
100833
|
-
|
|
100834
|
-
type: string;
|
|
100835
|
-
};
|
|
100836
|
-
user_identity_id: {
|
|
100837
|
-
description: string;
|
|
100838
|
-
format: string;
|
|
100839
|
-
type: string;
|
|
100840
|
-
};
|
|
100841
|
-
};
|
|
100842
|
-
required: string[];
|
|
100843
|
-
type: string;
|
|
100844
|
-
};
|
|
100845
|
-
};
|
|
102612
|
+
parameters: {
|
|
102613
|
+
in: string;
|
|
102614
|
+
name: string;
|
|
102615
|
+
required: boolean;
|
|
102616
|
+
schema: {
|
|
102617
|
+
description: string;
|
|
102618
|
+
format: string;
|
|
102619
|
+
type: string;
|
|
100846
102620
|
};
|
|
100847
|
-
};
|
|
102621
|
+
}[];
|
|
100848
102622
|
responses: {
|
|
100849
102623
|
200: {
|
|
100850
102624
|
content: {
|
|
100851
102625
|
'application/json': {
|
|
100852
102626
|
schema: {
|
|
100853
102627
|
properties: {
|
|
102628
|
+
accessible_devices: {
|
|
102629
|
+
deprecated: boolean;
|
|
102630
|
+
items: {
|
|
102631
|
+
$ref: string;
|
|
102632
|
+
};
|
|
102633
|
+
type: string;
|
|
102634
|
+
'x-deprecated': string;
|
|
102635
|
+
};
|
|
102636
|
+
devices: {
|
|
102637
|
+
items: {
|
|
102638
|
+
$ref: string;
|
|
102639
|
+
};
|
|
102640
|
+
type: string;
|
|
102641
|
+
};
|
|
100854
102642
|
ok: {
|
|
100855
102643
|
type: string;
|
|
100856
102644
|
};
|
|
@@ -100886,10 +102674,11 @@ declare const _default: {
|
|
|
100886
102674
|
tags: string[];
|
|
100887
102675
|
'x-fern-sdk-group-name': string[];
|
|
100888
102676
|
'x-fern-sdk-method-name': string;
|
|
100889
|
-
'x-
|
|
102677
|
+
'x-fern-sdk-return-value': string;
|
|
102678
|
+
'x-response-key': string;
|
|
100890
102679
|
'x-title': string;
|
|
100891
102680
|
};
|
|
100892
|
-
|
|
102681
|
+
post: {
|
|
100893
102682
|
description: string;
|
|
100894
102683
|
operationId: string;
|
|
100895
102684
|
requestBody: {
|
|
@@ -100897,11 +102686,6 @@ declare const _default: {
|
|
|
100897
102686
|
'application/json': {
|
|
100898
102687
|
schema: {
|
|
100899
102688
|
properties: {
|
|
100900
|
-
device_id: {
|
|
100901
|
-
description: string;
|
|
100902
|
-
format: string;
|
|
100903
|
-
type: string;
|
|
100904
|
-
};
|
|
100905
102689
|
user_identity_id: {
|
|
100906
102690
|
description: string;
|
|
100907
102691
|
format: string;
|
|
@@ -100920,6 +102704,20 @@ declare const _default: {
|
|
|
100920
102704
|
'application/json': {
|
|
100921
102705
|
schema: {
|
|
100922
102706
|
properties: {
|
|
102707
|
+
accessible_devices: {
|
|
102708
|
+
deprecated: boolean;
|
|
102709
|
+
items: {
|
|
102710
|
+
$ref: string;
|
|
102711
|
+
};
|
|
102712
|
+
type: string;
|
|
102713
|
+
'x-deprecated': string;
|
|
102714
|
+
};
|
|
102715
|
+
devices: {
|
|
102716
|
+
items: {
|
|
102717
|
+
$ref: string;
|
|
102718
|
+
};
|
|
102719
|
+
type: string;
|
|
102720
|
+
};
|
|
100923
102721
|
ok: {
|
|
100924
102722
|
type: string;
|
|
100925
102723
|
};
|
|
@@ -100955,46 +102753,40 @@ declare const _default: {
|
|
|
100955
102753
|
tags: string[];
|
|
100956
102754
|
'x-fern-sdk-group-name': string[];
|
|
100957
102755
|
'x-fern-sdk-method-name': string;
|
|
100958
|
-
'x-
|
|
102756
|
+
'x-fern-sdk-return-value': string;
|
|
102757
|
+
'x-response-key': string;
|
|
100959
102758
|
'x-title': string;
|
|
100960
102759
|
};
|
|
100961
102760
|
};
|
|
100962
|
-
'/user_identities/
|
|
102761
|
+
'/user_identities/list_acs_systems': {
|
|
100963
102762
|
get: {
|
|
100964
102763
|
description: string;
|
|
100965
102764
|
operationId: string;
|
|
100966
|
-
parameters:
|
|
100967
|
-
in: string;
|
|
100968
|
-
name: string;
|
|
100969
|
-
schema: {
|
|
100970
|
-
description: string;
|
|
100971
|
-
type: string;
|
|
100972
|
-
format?: never;
|
|
100973
|
-
};
|
|
100974
|
-
} | {
|
|
102765
|
+
parameters: {
|
|
100975
102766
|
in: string;
|
|
100976
102767
|
name: string;
|
|
102768
|
+
required: boolean;
|
|
100977
102769
|
schema: {
|
|
100978
102770
|
description: string;
|
|
100979
102771
|
format: string;
|
|
100980
102772
|
type: string;
|
|
100981
102773
|
};
|
|
100982
|
-
}
|
|
102774
|
+
}[];
|
|
100983
102775
|
responses: {
|
|
100984
102776
|
200: {
|
|
100985
102777
|
content: {
|
|
100986
102778
|
'application/json': {
|
|
100987
102779
|
schema: {
|
|
100988
102780
|
properties: {
|
|
100989
|
-
|
|
100990
|
-
type: string;
|
|
100991
|
-
};
|
|
100992
|
-
user_identities: {
|
|
102781
|
+
acs_systems: {
|
|
100993
102782
|
items: {
|
|
100994
102783
|
$ref: string;
|
|
100995
102784
|
};
|
|
100996
102785
|
type: string;
|
|
100997
102786
|
};
|
|
102787
|
+
ok: {
|
|
102788
|
+
type: string;
|
|
102789
|
+
};
|
|
100998
102790
|
};
|
|
100999
102791
|
required: string[];
|
|
101000
102792
|
type: string;
|
|
@@ -101011,25 +102803,25 @@ declare const _default: {
|
|
|
101011
102803
|
};
|
|
101012
102804
|
};
|
|
101013
102805
|
security: ({
|
|
101014
|
-
api_key: never[];
|
|
101015
|
-
client_session?: never;
|
|
101016
|
-
pat_with_workspace?: never;
|
|
101017
|
-
console_session_with_workspace?: never;
|
|
101018
|
-
} | {
|
|
101019
102806
|
client_session: never[];
|
|
101020
|
-
api_key?: never;
|
|
101021
102807
|
pat_with_workspace?: never;
|
|
101022
102808
|
console_session_with_workspace?: never;
|
|
102809
|
+
api_key?: never;
|
|
101023
102810
|
} | {
|
|
101024
102811
|
pat_with_workspace: never[];
|
|
101025
|
-
api_key?: never;
|
|
101026
102812
|
client_session?: never;
|
|
101027
102813
|
console_session_with_workspace?: never;
|
|
102814
|
+
api_key?: never;
|
|
101028
102815
|
} | {
|
|
101029
102816
|
console_session_with_workspace: never[];
|
|
102817
|
+
client_session?: never;
|
|
102818
|
+
pat_with_workspace?: never;
|
|
101030
102819
|
api_key?: never;
|
|
102820
|
+
} | {
|
|
102821
|
+
api_key: never[];
|
|
101031
102822
|
client_session?: never;
|
|
101032
102823
|
pat_with_workspace?: never;
|
|
102824
|
+
console_session_with_workspace?: never;
|
|
101033
102825
|
})[];
|
|
101034
102826
|
summary: string;
|
|
101035
102827
|
tags: string[];
|
|
@@ -101047,16 +102839,13 @@ declare const _default: {
|
|
|
101047
102839
|
'application/json': {
|
|
101048
102840
|
schema: {
|
|
101049
102841
|
properties: {
|
|
101050
|
-
|
|
102842
|
+
user_identity_id: {
|
|
101051
102843
|
description: string;
|
|
101052
102844
|
format: string;
|
|
101053
102845
|
type: string;
|
|
101054
102846
|
};
|
|
101055
|
-
search: {
|
|
101056
|
-
description: string;
|
|
101057
|
-
type: string;
|
|
101058
|
-
};
|
|
101059
102847
|
};
|
|
102848
|
+
required: string[];
|
|
101060
102849
|
type: string;
|
|
101061
102850
|
};
|
|
101062
102851
|
};
|
|
@@ -101068,15 +102857,15 @@ declare const _default: {
|
|
|
101068
102857
|
'application/json': {
|
|
101069
102858
|
schema: {
|
|
101070
102859
|
properties: {
|
|
101071
|
-
|
|
101072
|
-
type: string;
|
|
101073
|
-
};
|
|
101074
|
-
user_identities: {
|
|
102860
|
+
acs_systems: {
|
|
101075
102861
|
items: {
|
|
101076
102862
|
$ref: string;
|
|
101077
102863
|
};
|
|
101078
102864
|
type: string;
|
|
101079
102865
|
};
|
|
102866
|
+
ok: {
|
|
102867
|
+
type: string;
|
|
102868
|
+
};
|
|
101080
102869
|
};
|
|
101081
102870
|
required: string[];
|
|
101082
102871
|
type: string;
|
|
@@ -101093,25 +102882,25 @@ declare const _default: {
|
|
|
101093
102882
|
};
|
|
101094
102883
|
};
|
|
101095
102884
|
security: ({
|
|
101096
|
-
api_key: never[];
|
|
101097
|
-
client_session?: never;
|
|
101098
|
-
pat_with_workspace?: never;
|
|
101099
|
-
console_session_with_workspace?: never;
|
|
101100
|
-
} | {
|
|
101101
102885
|
client_session: never[];
|
|
101102
|
-
api_key?: never;
|
|
101103
102886
|
pat_with_workspace?: never;
|
|
101104
102887
|
console_session_with_workspace?: never;
|
|
102888
|
+
api_key?: never;
|
|
101105
102889
|
} | {
|
|
101106
102890
|
pat_with_workspace: never[];
|
|
101107
|
-
api_key?: never;
|
|
101108
102891
|
client_session?: never;
|
|
101109
102892
|
console_session_with_workspace?: never;
|
|
102893
|
+
api_key?: never;
|
|
101110
102894
|
} | {
|
|
101111
102895
|
console_session_with_workspace: never[];
|
|
102896
|
+
client_session?: never;
|
|
102897
|
+
pat_with_workspace?: never;
|
|
101112
102898
|
api_key?: never;
|
|
102899
|
+
} | {
|
|
102900
|
+
api_key: never[];
|
|
101113
102901
|
client_session?: never;
|
|
101114
102902
|
pat_with_workspace?: never;
|
|
102903
|
+
console_session_with_workspace?: never;
|
|
101115
102904
|
})[];
|
|
101116
102905
|
summary: string;
|
|
101117
102906
|
tags: string[];
|
|
@@ -101122,7 +102911,7 @@ declare const _default: {
|
|
|
101122
102911
|
'x-title': string;
|
|
101123
102912
|
};
|
|
101124
102913
|
};
|
|
101125
|
-
'/user_identities/
|
|
102914
|
+
'/user_identities/list_acs_users': {
|
|
101126
102915
|
get: {
|
|
101127
102916
|
description: string;
|
|
101128
102917
|
operationId: string;
|
|
@@ -101142,15 +102931,7 @@ declare const _default: {
|
|
|
101142
102931
|
'application/json': {
|
|
101143
102932
|
schema: {
|
|
101144
102933
|
properties: {
|
|
101145
|
-
|
|
101146
|
-
deprecated: boolean;
|
|
101147
|
-
items: {
|
|
101148
|
-
$ref: string;
|
|
101149
|
-
};
|
|
101150
|
-
type: string;
|
|
101151
|
-
'x-deprecated': string;
|
|
101152
|
-
};
|
|
101153
|
-
devices: {
|
|
102934
|
+
acs_users: {
|
|
101154
102935
|
items: {
|
|
101155
102936
|
$ref: string;
|
|
101156
102937
|
};
|
|
@@ -101221,15 +103002,7 @@ declare const _default: {
|
|
|
101221
103002
|
'application/json': {
|
|
101222
103003
|
schema: {
|
|
101223
103004
|
properties: {
|
|
101224
|
-
|
|
101225
|
-
deprecated: boolean;
|
|
101226
|
-
items: {
|
|
101227
|
-
$ref: string;
|
|
101228
|
-
};
|
|
101229
|
-
type: string;
|
|
101230
|
-
'x-deprecated': string;
|
|
101231
|
-
};
|
|
101232
|
-
devices: {
|
|
103005
|
+
acs_users: {
|
|
101233
103006
|
items: {
|
|
101234
103007
|
$ref: string;
|
|
101235
103008
|
};
|
|
@@ -101275,8 +103048,8 @@ declare const _default: {
|
|
|
101275
103048
|
'x-title': string;
|
|
101276
103049
|
};
|
|
101277
103050
|
};
|
|
101278
|
-
'/user_identities/
|
|
101279
|
-
|
|
103051
|
+
'/user_identities/remove_acs_user': {
|
|
103052
|
+
delete: {
|
|
101280
103053
|
description: string;
|
|
101281
103054
|
operationId: string;
|
|
101282
103055
|
parameters: {
|
|
@@ -101295,12 +103068,6 @@ declare const _default: {
|
|
|
101295
103068
|
'application/json': {
|
|
101296
103069
|
schema: {
|
|
101297
103070
|
properties: {
|
|
101298
|
-
acs_systems: {
|
|
101299
|
-
items: {
|
|
101300
|
-
$ref: string;
|
|
101301
|
-
};
|
|
101302
|
-
type: string;
|
|
101303
|
-
};
|
|
101304
103071
|
ok: {
|
|
101305
103072
|
type: string;
|
|
101306
103073
|
};
|
|
@@ -101320,32 +103087,23 @@ declare const _default: {
|
|
|
101320
103087
|
};
|
|
101321
103088
|
};
|
|
101322
103089
|
security: ({
|
|
101323
|
-
|
|
103090
|
+
api_key: never[];
|
|
101324
103091
|
pat_with_workspace?: never;
|
|
101325
103092
|
console_session_with_workspace?: never;
|
|
101326
|
-
api_key?: never;
|
|
101327
103093
|
} | {
|
|
101328
103094
|
pat_with_workspace: never[];
|
|
101329
|
-
client_session?: never;
|
|
101330
|
-
console_session_with_workspace?: never;
|
|
101331
103095
|
api_key?: never;
|
|
103096
|
+
console_session_with_workspace?: never;
|
|
101332
103097
|
} | {
|
|
101333
103098
|
console_session_with_workspace: never[];
|
|
101334
|
-
client_session?: never;
|
|
101335
|
-
pat_with_workspace?: never;
|
|
101336
103099
|
api_key?: never;
|
|
101337
|
-
} | {
|
|
101338
|
-
api_key: never[];
|
|
101339
|
-
client_session?: never;
|
|
101340
103100
|
pat_with_workspace?: never;
|
|
101341
|
-
console_session_with_workspace?: never;
|
|
101342
103101
|
})[];
|
|
101343
103102
|
summary: string;
|
|
101344
103103
|
tags: string[];
|
|
101345
103104
|
'x-fern-sdk-group-name': string[];
|
|
101346
103105
|
'x-fern-sdk-method-name': string;
|
|
101347
|
-
'x-
|
|
101348
|
-
'x-response-key': string;
|
|
103106
|
+
'x-response-key': null;
|
|
101349
103107
|
'x-title': string;
|
|
101350
103108
|
};
|
|
101351
103109
|
post: {
|
|
@@ -101356,6 +103114,11 @@ declare const _default: {
|
|
|
101356
103114
|
'application/json': {
|
|
101357
103115
|
schema: {
|
|
101358
103116
|
properties: {
|
|
103117
|
+
acs_user_id: {
|
|
103118
|
+
description: string;
|
|
103119
|
+
format: string;
|
|
103120
|
+
type: string;
|
|
103121
|
+
};
|
|
101359
103122
|
user_identity_id: {
|
|
101360
103123
|
description: string;
|
|
101361
103124
|
format: string;
|
|
@@ -101374,12 +103137,6 @@ declare const _default: {
|
|
|
101374
103137
|
'application/json': {
|
|
101375
103138
|
schema: {
|
|
101376
103139
|
properties: {
|
|
101377
|
-
acs_systems: {
|
|
101378
|
-
items: {
|
|
101379
|
-
$ref: string;
|
|
101380
|
-
};
|
|
101381
|
-
type: string;
|
|
101382
|
-
};
|
|
101383
103140
|
ok: {
|
|
101384
103141
|
type: string;
|
|
101385
103142
|
};
|
|
@@ -101399,37 +103156,28 @@ declare const _default: {
|
|
|
101399
103156
|
};
|
|
101400
103157
|
};
|
|
101401
103158
|
security: ({
|
|
101402
|
-
|
|
103159
|
+
api_key: never[];
|
|
101403
103160
|
pat_with_workspace?: never;
|
|
101404
103161
|
console_session_with_workspace?: never;
|
|
101405
|
-
api_key?: never;
|
|
101406
103162
|
} | {
|
|
101407
103163
|
pat_with_workspace: never[];
|
|
101408
|
-
client_session?: never;
|
|
101409
|
-
console_session_with_workspace?: never;
|
|
101410
103164
|
api_key?: never;
|
|
103165
|
+
console_session_with_workspace?: never;
|
|
101411
103166
|
} | {
|
|
101412
103167
|
console_session_with_workspace: never[];
|
|
101413
|
-
client_session?: never;
|
|
101414
|
-
pat_with_workspace?: never;
|
|
101415
103168
|
api_key?: never;
|
|
101416
|
-
} | {
|
|
101417
|
-
api_key: never[];
|
|
101418
|
-
client_session?: never;
|
|
101419
103169
|
pat_with_workspace?: never;
|
|
101420
|
-
console_session_with_workspace?: never;
|
|
101421
103170
|
})[];
|
|
101422
103171
|
summary: string;
|
|
101423
103172
|
tags: string[];
|
|
101424
103173
|
'x-fern-sdk-group-name': string[];
|
|
101425
103174
|
'x-fern-sdk-method-name': string;
|
|
101426
|
-
'x-
|
|
101427
|
-
'x-response-key': string;
|
|
103175
|
+
'x-response-key': null;
|
|
101428
103176
|
'x-title': string;
|
|
101429
103177
|
};
|
|
101430
103178
|
};
|
|
101431
|
-
'/user_identities/
|
|
101432
|
-
|
|
103179
|
+
'/user_identities/revoke_access_to_device': {
|
|
103180
|
+
delete: {
|
|
101433
103181
|
description: string;
|
|
101434
103182
|
operationId: string;
|
|
101435
103183
|
parameters: {
|
|
@@ -101448,12 +103196,6 @@ declare const _default: {
|
|
|
101448
103196
|
'application/json': {
|
|
101449
103197
|
schema: {
|
|
101450
103198
|
properties: {
|
|
101451
|
-
acs_users: {
|
|
101452
|
-
items: {
|
|
101453
|
-
$ref: string;
|
|
101454
|
-
};
|
|
101455
|
-
type: string;
|
|
101456
|
-
};
|
|
101457
103199
|
ok: {
|
|
101458
103200
|
type: string;
|
|
101459
103201
|
};
|
|
@@ -101489,8 +103231,7 @@ declare const _default: {
|
|
|
101489
103231
|
tags: string[];
|
|
101490
103232
|
'x-fern-sdk-group-name': string[];
|
|
101491
103233
|
'x-fern-sdk-method-name': string;
|
|
101492
|
-
'x-
|
|
101493
|
-
'x-response-key': string;
|
|
103234
|
+
'x-response-key': null;
|
|
101494
103235
|
'x-title': string;
|
|
101495
103236
|
};
|
|
101496
103237
|
post: {
|
|
@@ -101501,6 +103242,11 @@ declare const _default: {
|
|
|
101501
103242
|
'application/json': {
|
|
101502
103243
|
schema: {
|
|
101503
103244
|
properties: {
|
|
103245
|
+
device_id: {
|
|
103246
|
+
description: string;
|
|
103247
|
+
format: string;
|
|
103248
|
+
type: string;
|
|
103249
|
+
};
|
|
101504
103250
|
user_identity_id: {
|
|
101505
103251
|
description: string;
|
|
101506
103252
|
format: string;
|
|
@@ -101519,12 +103265,6 @@ declare const _default: {
|
|
|
101519
103265
|
'application/json': {
|
|
101520
103266
|
schema: {
|
|
101521
103267
|
properties: {
|
|
101522
|
-
acs_users: {
|
|
101523
|
-
items: {
|
|
101524
|
-
$ref: string;
|
|
101525
|
-
};
|
|
101526
|
-
type: string;
|
|
101527
|
-
};
|
|
101528
103268
|
ok: {
|
|
101529
103269
|
type: string;
|
|
101530
103270
|
};
|
|
@@ -101560,13 +103300,12 @@ declare const _default: {
|
|
|
101560
103300
|
tags: string[];
|
|
101561
103301
|
'x-fern-sdk-group-name': string[];
|
|
101562
103302
|
'x-fern-sdk-method-name': string;
|
|
101563
|
-
'x-
|
|
101564
|
-
'x-response-key': string;
|
|
103303
|
+
'x-response-key': null;
|
|
101565
103304
|
'x-title': string;
|
|
101566
103305
|
};
|
|
101567
103306
|
};
|
|
101568
|
-
'/user_identities/
|
|
101569
|
-
|
|
103307
|
+
'/user_identities/unmanaged/get': {
|
|
103308
|
+
get: {
|
|
101570
103309
|
description: string;
|
|
101571
103310
|
operationId: string;
|
|
101572
103311
|
parameters: {
|
|
@@ -101588,6 +103327,130 @@ declare const _default: {
|
|
|
101588
103327
|
ok: {
|
|
101589
103328
|
type: string;
|
|
101590
103329
|
};
|
|
103330
|
+
user_identity: {
|
|
103331
|
+
description: string;
|
|
103332
|
+
properties: {
|
|
103333
|
+
acs_user_ids: {
|
|
103334
|
+
description: string;
|
|
103335
|
+
items: {
|
|
103336
|
+
format: string;
|
|
103337
|
+
type: string;
|
|
103338
|
+
};
|
|
103339
|
+
type: string;
|
|
103340
|
+
};
|
|
103341
|
+
created_at: {
|
|
103342
|
+
description: string;
|
|
103343
|
+
format: string;
|
|
103344
|
+
type: string;
|
|
103345
|
+
};
|
|
103346
|
+
display_name: {
|
|
103347
|
+
minLength: number;
|
|
103348
|
+
type: string;
|
|
103349
|
+
};
|
|
103350
|
+
email_address: {
|
|
103351
|
+
description: string;
|
|
103352
|
+
format: string;
|
|
103353
|
+
nullable: boolean;
|
|
103354
|
+
type: string;
|
|
103355
|
+
};
|
|
103356
|
+
errors: {
|
|
103357
|
+
description: string;
|
|
103358
|
+
items: {
|
|
103359
|
+
description: string;
|
|
103360
|
+
discriminator: {
|
|
103361
|
+
propertyName: string;
|
|
103362
|
+
};
|
|
103363
|
+
oneOf: {
|
|
103364
|
+
description: string;
|
|
103365
|
+
properties: {
|
|
103366
|
+
acs_system_id: {
|
|
103367
|
+
description: string;
|
|
103368
|
+
format: string;
|
|
103369
|
+
type: string;
|
|
103370
|
+
};
|
|
103371
|
+
acs_user_id: {
|
|
103372
|
+
description: string;
|
|
103373
|
+
format: string;
|
|
103374
|
+
type: string;
|
|
103375
|
+
};
|
|
103376
|
+
created_at: {
|
|
103377
|
+
description: string;
|
|
103378
|
+
format: string;
|
|
103379
|
+
type: string;
|
|
103380
|
+
};
|
|
103381
|
+
error_code: {
|
|
103382
|
+
description: string;
|
|
103383
|
+
enum: string[];
|
|
103384
|
+
type: string;
|
|
103385
|
+
};
|
|
103386
|
+
message: {
|
|
103387
|
+
description: string;
|
|
103388
|
+
type: string;
|
|
103389
|
+
};
|
|
103390
|
+
};
|
|
103391
|
+
required: string[];
|
|
103392
|
+
type: string;
|
|
103393
|
+
}[];
|
|
103394
|
+
};
|
|
103395
|
+
type: string;
|
|
103396
|
+
};
|
|
103397
|
+
full_name: {
|
|
103398
|
+
minLength: number;
|
|
103399
|
+
nullable: boolean;
|
|
103400
|
+
type: string;
|
|
103401
|
+
};
|
|
103402
|
+
phone_number: {
|
|
103403
|
+
description: string;
|
|
103404
|
+
nullable: boolean;
|
|
103405
|
+
type: string;
|
|
103406
|
+
};
|
|
103407
|
+
user_identity_id: {
|
|
103408
|
+
description: string;
|
|
103409
|
+
format: string;
|
|
103410
|
+
type: string;
|
|
103411
|
+
};
|
|
103412
|
+
warnings: {
|
|
103413
|
+
description: string;
|
|
103414
|
+
items: {
|
|
103415
|
+
description: string;
|
|
103416
|
+
discriminator: {
|
|
103417
|
+
propertyName: string;
|
|
103418
|
+
};
|
|
103419
|
+
oneOf: {
|
|
103420
|
+
description: string;
|
|
103421
|
+
properties: {
|
|
103422
|
+
created_at: {
|
|
103423
|
+
description: string;
|
|
103424
|
+
format: string;
|
|
103425
|
+
type: string;
|
|
103426
|
+
};
|
|
103427
|
+
message: {
|
|
103428
|
+
description: string;
|
|
103429
|
+
type: string;
|
|
103430
|
+
};
|
|
103431
|
+
warning_code: {
|
|
103432
|
+
description: string;
|
|
103433
|
+
enum: string[];
|
|
103434
|
+
type: string;
|
|
103435
|
+
};
|
|
103436
|
+
};
|
|
103437
|
+
required: string[];
|
|
103438
|
+
type: string;
|
|
103439
|
+
}[];
|
|
103440
|
+
};
|
|
103441
|
+
type: string;
|
|
103442
|
+
};
|
|
103443
|
+
workspace_id: {
|
|
103444
|
+
description: string;
|
|
103445
|
+
format: string;
|
|
103446
|
+
type: string;
|
|
103447
|
+
};
|
|
103448
|
+
};
|
|
103449
|
+
required: string[];
|
|
103450
|
+
type: string;
|
|
103451
|
+
'x-draft': string;
|
|
103452
|
+
'x-route-path': string;
|
|
103453
|
+
};
|
|
101591
103454
|
};
|
|
101592
103455
|
required: string[];
|
|
101593
103456
|
type: string;
|
|
@@ -101620,7 +103483,8 @@ declare const _default: {
|
|
|
101620
103483
|
tags: string[];
|
|
101621
103484
|
'x-fern-sdk-group-name': string[];
|
|
101622
103485
|
'x-fern-sdk-method-name': string;
|
|
101623
|
-
'x-
|
|
103486
|
+
'x-fern-sdk-return-value': string;
|
|
103487
|
+
'x-response-key': string;
|
|
101624
103488
|
'x-title': string;
|
|
101625
103489
|
};
|
|
101626
103490
|
post: {
|
|
@@ -101631,11 +103495,6 @@ declare const _default: {
|
|
|
101631
103495
|
'application/json': {
|
|
101632
103496
|
schema: {
|
|
101633
103497
|
properties: {
|
|
101634
|
-
acs_user_id: {
|
|
101635
|
-
description: string;
|
|
101636
|
-
format: string;
|
|
101637
|
-
type: string;
|
|
101638
|
-
};
|
|
101639
103498
|
user_identity_id: {
|
|
101640
103499
|
description: string;
|
|
101641
103500
|
format: string;
|
|
@@ -101657,6 +103516,130 @@ declare const _default: {
|
|
|
101657
103516
|
ok: {
|
|
101658
103517
|
type: string;
|
|
101659
103518
|
};
|
|
103519
|
+
user_identity: {
|
|
103520
|
+
description: string;
|
|
103521
|
+
properties: {
|
|
103522
|
+
acs_user_ids: {
|
|
103523
|
+
description: string;
|
|
103524
|
+
items: {
|
|
103525
|
+
format: string;
|
|
103526
|
+
type: string;
|
|
103527
|
+
};
|
|
103528
|
+
type: string;
|
|
103529
|
+
};
|
|
103530
|
+
created_at: {
|
|
103531
|
+
description: string;
|
|
103532
|
+
format: string;
|
|
103533
|
+
type: string;
|
|
103534
|
+
};
|
|
103535
|
+
display_name: {
|
|
103536
|
+
minLength: number;
|
|
103537
|
+
type: string;
|
|
103538
|
+
};
|
|
103539
|
+
email_address: {
|
|
103540
|
+
description: string;
|
|
103541
|
+
format: string;
|
|
103542
|
+
nullable: boolean;
|
|
103543
|
+
type: string;
|
|
103544
|
+
};
|
|
103545
|
+
errors: {
|
|
103546
|
+
description: string;
|
|
103547
|
+
items: {
|
|
103548
|
+
description: string;
|
|
103549
|
+
discriminator: {
|
|
103550
|
+
propertyName: string;
|
|
103551
|
+
};
|
|
103552
|
+
oneOf: {
|
|
103553
|
+
description: string;
|
|
103554
|
+
properties: {
|
|
103555
|
+
acs_system_id: {
|
|
103556
|
+
description: string;
|
|
103557
|
+
format: string;
|
|
103558
|
+
type: string;
|
|
103559
|
+
};
|
|
103560
|
+
acs_user_id: {
|
|
103561
|
+
description: string;
|
|
103562
|
+
format: string;
|
|
103563
|
+
type: string;
|
|
103564
|
+
};
|
|
103565
|
+
created_at: {
|
|
103566
|
+
description: string;
|
|
103567
|
+
format: string;
|
|
103568
|
+
type: string;
|
|
103569
|
+
};
|
|
103570
|
+
error_code: {
|
|
103571
|
+
description: string;
|
|
103572
|
+
enum: string[];
|
|
103573
|
+
type: string;
|
|
103574
|
+
};
|
|
103575
|
+
message: {
|
|
103576
|
+
description: string;
|
|
103577
|
+
type: string;
|
|
103578
|
+
};
|
|
103579
|
+
};
|
|
103580
|
+
required: string[];
|
|
103581
|
+
type: string;
|
|
103582
|
+
}[];
|
|
103583
|
+
};
|
|
103584
|
+
type: string;
|
|
103585
|
+
};
|
|
103586
|
+
full_name: {
|
|
103587
|
+
minLength: number;
|
|
103588
|
+
nullable: boolean;
|
|
103589
|
+
type: string;
|
|
103590
|
+
};
|
|
103591
|
+
phone_number: {
|
|
103592
|
+
description: string;
|
|
103593
|
+
nullable: boolean;
|
|
103594
|
+
type: string;
|
|
103595
|
+
};
|
|
103596
|
+
user_identity_id: {
|
|
103597
|
+
description: string;
|
|
103598
|
+
format: string;
|
|
103599
|
+
type: string;
|
|
103600
|
+
};
|
|
103601
|
+
warnings: {
|
|
103602
|
+
description: string;
|
|
103603
|
+
items: {
|
|
103604
|
+
description: string;
|
|
103605
|
+
discriminator: {
|
|
103606
|
+
propertyName: string;
|
|
103607
|
+
};
|
|
103608
|
+
oneOf: {
|
|
103609
|
+
description: string;
|
|
103610
|
+
properties: {
|
|
103611
|
+
created_at: {
|
|
103612
|
+
description: string;
|
|
103613
|
+
format: string;
|
|
103614
|
+
type: string;
|
|
103615
|
+
};
|
|
103616
|
+
message: {
|
|
103617
|
+
description: string;
|
|
103618
|
+
type: string;
|
|
103619
|
+
};
|
|
103620
|
+
warning_code: {
|
|
103621
|
+
description: string;
|
|
103622
|
+
enum: string[];
|
|
103623
|
+
type: string;
|
|
103624
|
+
};
|
|
103625
|
+
};
|
|
103626
|
+
required: string[];
|
|
103627
|
+
type: string;
|
|
103628
|
+
}[];
|
|
103629
|
+
};
|
|
103630
|
+
type: string;
|
|
103631
|
+
};
|
|
103632
|
+
workspace_id: {
|
|
103633
|
+
description: string;
|
|
103634
|
+
format: string;
|
|
103635
|
+
type: string;
|
|
103636
|
+
};
|
|
103637
|
+
};
|
|
103638
|
+
required: string[];
|
|
103639
|
+
type: string;
|
|
103640
|
+
'x-draft': string;
|
|
103641
|
+
'x-route-path': string;
|
|
103642
|
+
};
|
|
101660
103643
|
};
|
|
101661
103644
|
required: string[];
|
|
101662
103645
|
type: string;
|
|
@@ -101689,21 +103672,20 @@ declare const _default: {
|
|
|
101689
103672
|
tags: string[];
|
|
101690
103673
|
'x-fern-sdk-group-name': string[];
|
|
101691
103674
|
'x-fern-sdk-method-name': string;
|
|
101692
|
-
'x-
|
|
103675
|
+
'x-fern-sdk-return-value': string;
|
|
103676
|
+
'x-response-key': string;
|
|
101693
103677
|
'x-title': string;
|
|
101694
103678
|
};
|
|
101695
103679
|
};
|
|
101696
|
-
'/user_identities/
|
|
101697
|
-
|
|
103680
|
+
'/user_identities/unmanaged/list': {
|
|
103681
|
+
get: {
|
|
101698
103682
|
description: string;
|
|
101699
103683
|
operationId: string;
|
|
101700
103684
|
parameters: {
|
|
101701
103685
|
in: string;
|
|
101702
103686
|
name: string;
|
|
101703
|
-
required: boolean;
|
|
101704
103687
|
schema: {
|
|
101705
103688
|
description: string;
|
|
101706
|
-
format: string;
|
|
101707
103689
|
type: string;
|
|
101708
103690
|
};
|
|
101709
103691
|
}[];
|
|
@@ -101716,6 +103698,133 @@ declare const _default: {
|
|
|
101716
103698
|
ok: {
|
|
101717
103699
|
type: string;
|
|
101718
103700
|
};
|
|
103701
|
+
user_identities: {
|
|
103702
|
+
items: {
|
|
103703
|
+
description: string;
|
|
103704
|
+
properties: {
|
|
103705
|
+
acs_user_ids: {
|
|
103706
|
+
description: string;
|
|
103707
|
+
items: {
|
|
103708
|
+
format: string;
|
|
103709
|
+
type: string;
|
|
103710
|
+
};
|
|
103711
|
+
type: string;
|
|
103712
|
+
};
|
|
103713
|
+
created_at: {
|
|
103714
|
+
description: string;
|
|
103715
|
+
format: string;
|
|
103716
|
+
type: string;
|
|
103717
|
+
};
|
|
103718
|
+
display_name: {
|
|
103719
|
+
minLength: number;
|
|
103720
|
+
type: string;
|
|
103721
|
+
};
|
|
103722
|
+
email_address: {
|
|
103723
|
+
description: string;
|
|
103724
|
+
format: string;
|
|
103725
|
+
nullable: boolean;
|
|
103726
|
+
type: string;
|
|
103727
|
+
};
|
|
103728
|
+
errors: {
|
|
103729
|
+
description: string;
|
|
103730
|
+
items: {
|
|
103731
|
+
description: string;
|
|
103732
|
+
discriminator: {
|
|
103733
|
+
propertyName: string;
|
|
103734
|
+
};
|
|
103735
|
+
oneOf: {
|
|
103736
|
+
description: string;
|
|
103737
|
+
properties: {
|
|
103738
|
+
acs_system_id: {
|
|
103739
|
+
description: string;
|
|
103740
|
+
format: string;
|
|
103741
|
+
type: string;
|
|
103742
|
+
};
|
|
103743
|
+
acs_user_id: {
|
|
103744
|
+
description: string;
|
|
103745
|
+
format: string;
|
|
103746
|
+
type: string;
|
|
103747
|
+
};
|
|
103748
|
+
created_at: {
|
|
103749
|
+
description: string;
|
|
103750
|
+
format: string;
|
|
103751
|
+
type: string;
|
|
103752
|
+
};
|
|
103753
|
+
error_code: {
|
|
103754
|
+
description: string;
|
|
103755
|
+
enum: string[];
|
|
103756
|
+
type: string;
|
|
103757
|
+
};
|
|
103758
|
+
message: {
|
|
103759
|
+
description: string;
|
|
103760
|
+
type: string;
|
|
103761
|
+
};
|
|
103762
|
+
};
|
|
103763
|
+
required: string[];
|
|
103764
|
+
type: string;
|
|
103765
|
+
}[];
|
|
103766
|
+
};
|
|
103767
|
+
type: string;
|
|
103768
|
+
};
|
|
103769
|
+
full_name: {
|
|
103770
|
+
minLength: number;
|
|
103771
|
+
nullable: boolean;
|
|
103772
|
+
type: string;
|
|
103773
|
+
};
|
|
103774
|
+
phone_number: {
|
|
103775
|
+
description: string;
|
|
103776
|
+
nullable: boolean;
|
|
103777
|
+
type: string;
|
|
103778
|
+
};
|
|
103779
|
+
user_identity_id: {
|
|
103780
|
+
description: string;
|
|
103781
|
+
format: string;
|
|
103782
|
+
type: string;
|
|
103783
|
+
};
|
|
103784
|
+
warnings: {
|
|
103785
|
+
description: string;
|
|
103786
|
+
items: {
|
|
103787
|
+
description: string;
|
|
103788
|
+
discriminator: {
|
|
103789
|
+
propertyName: string;
|
|
103790
|
+
};
|
|
103791
|
+
oneOf: {
|
|
103792
|
+
description: string;
|
|
103793
|
+
properties: {
|
|
103794
|
+
created_at: {
|
|
103795
|
+
description: string;
|
|
103796
|
+
format: string;
|
|
103797
|
+
type: string;
|
|
103798
|
+
};
|
|
103799
|
+
message: {
|
|
103800
|
+
description: string;
|
|
103801
|
+
type: string;
|
|
103802
|
+
};
|
|
103803
|
+
warning_code: {
|
|
103804
|
+
description: string;
|
|
103805
|
+
enum: string[];
|
|
103806
|
+
type: string;
|
|
103807
|
+
};
|
|
103808
|
+
};
|
|
103809
|
+
required: string[];
|
|
103810
|
+
type: string;
|
|
103811
|
+
}[];
|
|
103812
|
+
};
|
|
103813
|
+
type: string;
|
|
103814
|
+
};
|
|
103815
|
+
workspace_id: {
|
|
103816
|
+
description: string;
|
|
103817
|
+
format: string;
|
|
103818
|
+
type: string;
|
|
103819
|
+
};
|
|
103820
|
+
};
|
|
103821
|
+
required: string[];
|
|
103822
|
+
type: string;
|
|
103823
|
+
'x-draft': string;
|
|
103824
|
+
'x-route-path': string;
|
|
103825
|
+
};
|
|
103826
|
+
type: string;
|
|
103827
|
+
};
|
|
101719
103828
|
};
|
|
101720
103829
|
required: string[];
|
|
101721
103830
|
type: string;
|
|
@@ -101733,22 +103842,31 @@ declare const _default: {
|
|
|
101733
103842
|
};
|
|
101734
103843
|
security: ({
|
|
101735
103844
|
api_key: never[];
|
|
103845
|
+
client_session?: never;
|
|
103846
|
+
pat_with_workspace?: never;
|
|
103847
|
+
console_session_with_workspace?: never;
|
|
103848
|
+
} | {
|
|
103849
|
+
client_session: never[];
|
|
103850
|
+
api_key?: never;
|
|
101736
103851
|
pat_with_workspace?: never;
|
|
101737
103852
|
console_session_with_workspace?: never;
|
|
101738
103853
|
} | {
|
|
101739
103854
|
pat_with_workspace: never[];
|
|
101740
103855
|
api_key?: never;
|
|
103856
|
+
client_session?: never;
|
|
101741
103857
|
console_session_with_workspace?: never;
|
|
101742
103858
|
} | {
|
|
101743
103859
|
console_session_with_workspace: never[];
|
|
101744
103860
|
api_key?: never;
|
|
103861
|
+
client_session?: never;
|
|
101745
103862
|
pat_with_workspace?: never;
|
|
101746
103863
|
})[];
|
|
101747
103864
|
summary: string;
|
|
101748
103865
|
tags: string[];
|
|
101749
103866
|
'x-fern-sdk-group-name': string[];
|
|
101750
103867
|
'x-fern-sdk-method-name': string;
|
|
101751
|
-
'x-
|
|
103868
|
+
'x-fern-sdk-return-value': string;
|
|
103869
|
+
'x-response-key': string;
|
|
101752
103870
|
'x-title': string;
|
|
101753
103871
|
};
|
|
101754
103872
|
post: {
|
|
@@ -101759,18 +103877,11 @@ declare const _default: {
|
|
|
101759
103877
|
'application/json': {
|
|
101760
103878
|
schema: {
|
|
101761
103879
|
properties: {
|
|
101762
|
-
|
|
101763
|
-
description: string;
|
|
101764
|
-
format: string;
|
|
101765
|
-
type: string;
|
|
101766
|
-
};
|
|
101767
|
-
user_identity_id: {
|
|
103880
|
+
search: {
|
|
101768
103881
|
description: string;
|
|
101769
|
-
format: string;
|
|
101770
103882
|
type: string;
|
|
101771
103883
|
};
|
|
101772
103884
|
};
|
|
101773
|
-
required: string[];
|
|
101774
103885
|
type: string;
|
|
101775
103886
|
};
|
|
101776
103887
|
};
|
|
@@ -101785,6 +103896,133 @@ declare const _default: {
|
|
|
101785
103896
|
ok: {
|
|
101786
103897
|
type: string;
|
|
101787
103898
|
};
|
|
103899
|
+
user_identities: {
|
|
103900
|
+
items: {
|
|
103901
|
+
description: string;
|
|
103902
|
+
properties: {
|
|
103903
|
+
acs_user_ids: {
|
|
103904
|
+
description: string;
|
|
103905
|
+
items: {
|
|
103906
|
+
format: string;
|
|
103907
|
+
type: string;
|
|
103908
|
+
};
|
|
103909
|
+
type: string;
|
|
103910
|
+
};
|
|
103911
|
+
created_at: {
|
|
103912
|
+
description: string;
|
|
103913
|
+
format: string;
|
|
103914
|
+
type: string;
|
|
103915
|
+
};
|
|
103916
|
+
display_name: {
|
|
103917
|
+
minLength: number;
|
|
103918
|
+
type: string;
|
|
103919
|
+
};
|
|
103920
|
+
email_address: {
|
|
103921
|
+
description: string;
|
|
103922
|
+
format: string;
|
|
103923
|
+
nullable: boolean;
|
|
103924
|
+
type: string;
|
|
103925
|
+
};
|
|
103926
|
+
errors: {
|
|
103927
|
+
description: string;
|
|
103928
|
+
items: {
|
|
103929
|
+
description: string;
|
|
103930
|
+
discriminator: {
|
|
103931
|
+
propertyName: string;
|
|
103932
|
+
};
|
|
103933
|
+
oneOf: {
|
|
103934
|
+
description: string;
|
|
103935
|
+
properties: {
|
|
103936
|
+
acs_system_id: {
|
|
103937
|
+
description: string;
|
|
103938
|
+
format: string;
|
|
103939
|
+
type: string;
|
|
103940
|
+
};
|
|
103941
|
+
acs_user_id: {
|
|
103942
|
+
description: string;
|
|
103943
|
+
format: string;
|
|
103944
|
+
type: string;
|
|
103945
|
+
};
|
|
103946
|
+
created_at: {
|
|
103947
|
+
description: string;
|
|
103948
|
+
format: string;
|
|
103949
|
+
type: string;
|
|
103950
|
+
};
|
|
103951
|
+
error_code: {
|
|
103952
|
+
description: string;
|
|
103953
|
+
enum: string[];
|
|
103954
|
+
type: string;
|
|
103955
|
+
};
|
|
103956
|
+
message: {
|
|
103957
|
+
description: string;
|
|
103958
|
+
type: string;
|
|
103959
|
+
};
|
|
103960
|
+
};
|
|
103961
|
+
required: string[];
|
|
103962
|
+
type: string;
|
|
103963
|
+
}[];
|
|
103964
|
+
};
|
|
103965
|
+
type: string;
|
|
103966
|
+
};
|
|
103967
|
+
full_name: {
|
|
103968
|
+
minLength: number;
|
|
103969
|
+
nullable: boolean;
|
|
103970
|
+
type: string;
|
|
103971
|
+
};
|
|
103972
|
+
phone_number: {
|
|
103973
|
+
description: string;
|
|
103974
|
+
nullable: boolean;
|
|
103975
|
+
type: string;
|
|
103976
|
+
};
|
|
103977
|
+
user_identity_id: {
|
|
103978
|
+
description: string;
|
|
103979
|
+
format: string;
|
|
103980
|
+
type: string;
|
|
103981
|
+
};
|
|
103982
|
+
warnings: {
|
|
103983
|
+
description: string;
|
|
103984
|
+
items: {
|
|
103985
|
+
description: string;
|
|
103986
|
+
discriminator: {
|
|
103987
|
+
propertyName: string;
|
|
103988
|
+
};
|
|
103989
|
+
oneOf: {
|
|
103990
|
+
description: string;
|
|
103991
|
+
properties: {
|
|
103992
|
+
created_at: {
|
|
103993
|
+
description: string;
|
|
103994
|
+
format: string;
|
|
103995
|
+
type: string;
|
|
103996
|
+
};
|
|
103997
|
+
message: {
|
|
103998
|
+
description: string;
|
|
103999
|
+
type: string;
|
|
104000
|
+
};
|
|
104001
|
+
warning_code: {
|
|
104002
|
+
description: string;
|
|
104003
|
+
enum: string[];
|
|
104004
|
+
type: string;
|
|
104005
|
+
};
|
|
104006
|
+
};
|
|
104007
|
+
required: string[];
|
|
104008
|
+
type: string;
|
|
104009
|
+
}[];
|
|
104010
|
+
};
|
|
104011
|
+
type: string;
|
|
104012
|
+
};
|
|
104013
|
+
workspace_id: {
|
|
104014
|
+
description: string;
|
|
104015
|
+
format: string;
|
|
104016
|
+
type: string;
|
|
104017
|
+
};
|
|
104018
|
+
};
|
|
104019
|
+
required: string[];
|
|
104020
|
+
type: string;
|
|
104021
|
+
'x-draft': string;
|
|
104022
|
+
'x-route-path': string;
|
|
104023
|
+
};
|
|
104024
|
+
type: string;
|
|
104025
|
+
};
|
|
101788
104026
|
};
|
|
101789
104027
|
required: string[];
|
|
101790
104028
|
type: string;
|
|
@@ -101802,22 +104040,31 @@ declare const _default: {
|
|
|
101802
104040
|
};
|
|
101803
104041
|
security: ({
|
|
101804
104042
|
api_key: never[];
|
|
104043
|
+
client_session?: never;
|
|
104044
|
+
pat_with_workspace?: never;
|
|
104045
|
+
console_session_with_workspace?: never;
|
|
104046
|
+
} | {
|
|
104047
|
+
client_session: never[];
|
|
104048
|
+
api_key?: never;
|
|
101805
104049
|
pat_with_workspace?: never;
|
|
101806
104050
|
console_session_with_workspace?: never;
|
|
101807
104051
|
} | {
|
|
101808
104052
|
pat_with_workspace: never[];
|
|
101809
104053
|
api_key?: never;
|
|
104054
|
+
client_session?: never;
|
|
101810
104055
|
console_session_with_workspace?: never;
|
|
101811
104056
|
} | {
|
|
101812
104057
|
console_session_with_workspace: never[];
|
|
101813
104058
|
api_key?: never;
|
|
104059
|
+
client_session?: never;
|
|
101814
104060
|
pat_with_workspace?: never;
|
|
101815
104061
|
})[];
|
|
101816
104062
|
summary: string;
|
|
101817
104063
|
tags: string[];
|
|
101818
104064
|
'x-fern-sdk-group-name': string[];
|
|
101819
104065
|
'x-fern-sdk-method-name': string;
|
|
101820
|
-
'x-
|
|
104066
|
+
'x-fern-sdk-return-value': string;
|
|
104067
|
+
'x-response-key': string;
|
|
101821
104068
|
'x-title': string;
|
|
101822
104069
|
};
|
|
101823
104070
|
};
|
|
@@ -116163,6 +118410,131 @@ type Routes = {
|
|
|
116163
118410
|
}[];
|
|
116164
118411
|
};
|
|
116165
118412
|
};
|
|
118413
|
+
'/access_grants/unmanaged/get': {
|
|
118414
|
+
route: '/access_grants/unmanaged/get';
|
|
118415
|
+
method: 'GET' | 'POST';
|
|
118416
|
+
queryParams: {};
|
|
118417
|
+
jsonBody: {};
|
|
118418
|
+
commonParams: {
|
|
118419
|
+
/** ID of unmanaged Access Grant to get. */
|
|
118420
|
+
access_grant_id: string;
|
|
118421
|
+
};
|
|
118422
|
+
formData: {};
|
|
118423
|
+
jsonResponse: {
|
|
118424
|
+
/** Represents an unmanaged Access Grant. Unmanaged Access Grants do not have client sessions, instant keys, customization profiles, or keys. */
|
|
118425
|
+
access_grant: {
|
|
118426
|
+
/** ID of the Seam workspace associated with the Access Grant. */
|
|
118427
|
+
workspace_id: string;
|
|
118428
|
+
/** ID of the Access Grant. */
|
|
118429
|
+
access_grant_id: string;
|
|
118430
|
+
/** ID of user identity to which the Access Grant gives access. */
|
|
118431
|
+
user_identity_id: string;
|
|
118432
|
+
/**
|
|
118433
|
+
* @deprecated Use `space_ids`.*/
|
|
118434
|
+
location_ids: string[];
|
|
118435
|
+
/** IDs of the spaces to which the Access Grant gives access. */
|
|
118436
|
+
space_ids: string[];
|
|
118437
|
+
/** Access methods that the user requested for the Access Grant. */
|
|
118438
|
+
requested_access_methods: {
|
|
118439
|
+
/** Display name of the access method. */
|
|
118440
|
+
display_name: string;
|
|
118441
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
118442
|
+
mode: 'code' | 'card' | 'mobile_key';
|
|
118443
|
+
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
118444
|
+
code?: string | undefined;
|
|
118445
|
+
/** Date and time at which the requested access method was added to the Access Grant. */
|
|
118446
|
+
created_at: string;
|
|
118447
|
+
/** IDs of the access methods created for the requested access method. */
|
|
118448
|
+
created_access_method_ids: string[];
|
|
118449
|
+
}[];
|
|
118450
|
+
/** IDs of the access methods created for the Access Grant. */
|
|
118451
|
+
access_method_ids: string[];
|
|
118452
|
+
/** Name of the Access Grant. If not provided, the display name will be computed. */
|
|
118453
|
+
name: string | null;
|
|
118454
|
+
/** Display name of the Access Grant. */
|
|
118455
|
+
display_name: string;
|
|
118456
|
+
/** Date and time at which the Access Grant was created. */
|
|
118457
|
+
created_at: string;
|
|
118458
|
+
/** Date and time at which the Access Grant starts. */
|
|
118459
|
+
starts_at: string;
|
|
118460
|
+
/** Date and time at which the Access Grant ends. */
|
|
118461
|
+
ends_at: string | null;
|
|
118462
|
+
/** Warnings associated with the [access grant](https://docs.seam.co/latest/capability-guides/access-grants). */
|
|
118463
|
+
warnings: {
|
|
118464
|
+
/** Date and time at which Seam created the warning. */
|
|
118465
|
+
created_at: string;
|
|
118466
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
118467
|
+
message: string;
|
|
118468
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118469
|
+
warning_code: 'being_deleted';
|
|
118470
|
+
}[];
|
|
118471
|
+
};
|
|
118472
|
+
};
|
|
118473
|
+
};
|
|
118474
|
+
'/access_grants/unmanaged/list': {
|
|
118475
|
+
route: '/access_grants/unmanaged/list';
|
|
118476
|
+
method: 'GET' | 'POST';
|
|
118477
|
+
queryParams: {};
|
|
118478
|
+
jsonBody: {};
|
|
118479
|
+
commonParams: {
|
|
118480
|
+
/** ID of user identity by which you want to filter the list of unmanaged Access Grants. */
|
|
118481
|
+
user_identity_id?: string | undefined;
|
|
118482
|
+
/** ID of the access system by which you want to filter the list of unmanaged Access Grants. */
|
|
118483
|
+
acs_system_id?: string | undefined;
|
|
118484
|
+
/** ID of the entrance by which you want to filter the list of unmanaged Access Grants. */
|
|
118485
|
+
acs_entrance_id?: string | undefined;
|
|
118486
|
+
};
|
|
118487
|
+
formData: {};
|
|
118488
|
+
jsonResponse: {
|
|
118489
|
+
access_grants: {
|
|
118490
|
+
/** ID of the Seam workspace associated with the Access Grant. */
|
|
118491
|
+
workspace_id: string;
|
|
118492
|
+
/** ID of the Access Grant. */
|
|
118493
|
+
access_grant_id: string;
|
|
118494
|
+
/** ID of user identity to which the Access Grant gives access. */
|
|
118495
|
+
user_identity_id: string;
|
|
118496
|
+
/**
|
|
118497
|
+
* @deprecated Use `space_ids`.*/
|
|
118498
|
+
location_ids: string[];
|
|
118499
|
+
/** IDs of the spaces to which the Access Grant gives access. */
|
|
118500
|
+
space_ids: string[];
|
|
118501
|
+
/** Access methods that the user requested for the Access Grant. */
|
|
118502
|
+
requested_access_methods: {
|
|
118503
|
+
/** Display name of the access method. */
|
|
118504
|
+
display_name: string;
|
|
118505
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
118506
|
+
mode: 'code' | 'card' | 'mobile_key';
|
|
118507
|
+
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
118508
|
+
code?: string | undefined;
|
|
118509
|
+
/** Date and time at which the requested access method was added to the Access Grant. */
|
|
118510
|
+
created_at: string;
|
|
118511
|
+
/** IDs of the access methods created for the requested access method. */
|
|
118512
|
+
created_access_method_ids: string[];
|
|
118513
|
+
}[];
|
|
118514
|
+
/** IDs of the access methods created for the Access Grant. */
|
|
118515
|
+
access_method_ids: string[];
|
|
118516
|
+
/** Name of the Access Grant. If not provided, the display name will be computed. */
|
|
118517
|
+
name: string | null;
|
|
118518
|
+
/** Display name of the Access Grant. */
|
|
118519
|
+
display_name: string;
|
|
118520
|
+
/** Date and time at which the Access Grant was created. */
|
|
118521
|
+
created_at: string;
|
|
118522
|
+
/** Date and time at which the Access Grant starts. */
|
|
118523
|
+
starts_at: string;
|
|
118524
|
+
/** Date and time at which the Access Grant ends. */
|
|
118525
|
+
ends_at: string | null;
|
|
118526
|
+
/** Warnings associated with the [access grant](https://docs.seam.co/latest/capability-guides/access-grants). */
|
|
118527
|
+
warnings: {
|
|
118528
|
+
/** Date and time at which Seam created the warning. */
|
|
118529
|
+
created_at: string;
|
|
118530
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
118531
|
+
message: string;
|
|
118532
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118533
|
+
warning_code: 'being_deleted';
|
|
118534
|
+
}[];
|
|
118535
|
+
}[];
|
|
118536
|
+
};
|
|
118537
|
+
};
|
|
116166
118538
|
'/access_grants/update': {
|
|
116167
118539
|
route: '/access_grants/update';
|
|
116168
118540
|
method: 'POST' | 'PATCH';
|
|
@@ -124642,6 +127014,97 @@ type Routes = {
|
|
|
124642
127014
|
}[];
|
|
124643
127015
|
};
|
|
124644
127016
|
};
|
|
127017
|
+
'/access_methods/unmanaged/get': {
|
|
127018
|
+
route: '/access_methods/unmanaged/get';
|
|
127019
|
+
method: 'GET' | 'POST';
|
|
127020
|
+
queryParams: {};
|
|
127021
|
+
jsonBody: {};
|
|
127022
|
+
commonParams: {
|
|
127023
|
+
/** ID of unmanaged access method to get. */
|
|
127024
|
+
access_method_id: string;
|
|
127025
|
+
};
|
|
127026
|
+
formData: {};
|
|
127027
|
+
jsonResponse: {
|
|
127028
|
+
/** Represents an unmanaged access method. Unmanaged access methods do not have client sessions, instant keys, customization profiles, or keys. */
|
|
127029
|
+
access_method: {
|
|
127030
|
+
/** ID of the Seam workspace associated with the access method. */
|
|
127031
|
+
workspace_id: string;
|
|
127032
|
+
/** ID of the access method. */
|
|
127033
|
+
access_method_id: string;
|
|
127034
|
+
/** Display name of the access method. */
|
|
127035
|
+
display_name: string;
|
|
127036
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
127037
|
+
mode: 'code' | 'card' | 'mobile_key';
|
|
127038
|
+
/** Date and time at which the access method was created. */
|
|
127039
|
+
created_at: string;
|
|
127040
|
+
/** Date and time at which the access method was issued. */
|
|
127041
|
+
issued_at: string | null;
|
|
127042
|
+
/** Indicates whether the access method has been issued. */
|
|
127043
|
+
is_issued: boolean;
|
|
127044
|
+
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
127045
|
+
is_encoding_required?: boolean | undefined;
|
|
127046
|
+
/** The actual PIN code for code access methods. */
|
|
127047
|
+
code?: (string | null) | undefined;
|
|
127048
|
+
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
127049
|
+
warnings: {
|
|
127050
|
+
/** Date and time at which Seam created the warning. */
|
|
127051
|
+
created_at: string;
|
|
127052
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
127053
|
+
message: string;
|
|
127054
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127055
|
+
warning_code: 'being_deleted';
|
|
127056
|
+
}[];
|
|
127057
|
+
};
|
|
127058
|
+
};
|
|
127059
|
+
};
|
|
127060
|
+
'/access_methods/unmanaged/list': {
|
|
127061
|
+
route: '/access_methods/unmanaged/list';
|
|
127062
|
+
method: 'GET' | 'POST';
|
|
127063
|
+
queryParams: {};
|
|
127064
|
+
jsonBody: {};
|
|
127065
|
+
commonParams: {
|
|
127066
|
+
/** ID of Access Grant to list unmanaged access methods for. */
|
|
127067
|
+
access_grant_id: string;
|
|
127068
|
+
/** ID of the device for which you want to retrieve all unmanaged access methods. */
|
|
127069
|
+
device_id?: string | undefined;
|
|
127070
|
+
/** ID of the entrance for which you want to retrieve all unmanaged access methods. */
|
|
127071
|
+
acs_entrance_id?: string | undefined;
|
|
127072
|
+
/** ID of the space for which you want to retrieve all unmanaged access methods. */
|
|
127073
|
+
space_id?: string | undefined;
|
|
127074
|
+
};
|
|
127075
|
+
formData: {};
|
|
127076
|
+
jsonResponse: {
|
|
127077
|
+
access_methods: {
|
|
127078
|
+
/** ID of the Seam workspace associated with the access method. */
|
|
127079
|
+
workspace_id: string;
|
|
127080
|
+
/** ID of the access method. */
|
|
127081
|
+
access_method_id: string;
|
|
127082
|
+
/** Display name of the access method. */
|
|
127083
|
+
display_name: string;
|
|
127084
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
127085
|
+
mode: 'code' | 'card' | 'mobile_key';
|
|
127086
|
+
/** Date and time at which the access method was created. */
|
|
127087
|
+
created_at: string;
|
|
127088
|
+
/** Date and time at which the access method was issued. */
|
|
127089
|
+
issued_at: string | null;
|
|
127090
|
+
/** Indicates whether the access method has been issued. */
|
|
127091
|
+
is_issued: boolean;
|
|
127092
|
+
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
127093
|
+
is_encoding_required?: boolean | undefined;
|
|
127094
|
+
/** The actual PIN code for code access methods. */
|
|
127095
|
+
code?: (string | null) | undefined;
|
|
127096
|
+
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
127097
|
+
warnings: {
|
|
127098
|
+
/** Date and time at which Seam created the warning. */
|
|
127099
|
+
created_at: string;
|
|
127100
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
127101
|
+
message: string;
|
|
127102
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127103
|
+
warning_code: 'being_deleted';
|
|
127104
|
+
}[];
|
|
127105
|
+
}[];
|
|
127106
|
+
};
|
|
127107
|
+
};
|
|
124645
127108
|
'/acs/access_groups/add_user': {
|
|
124646
127109
|
route: '/acs/access_groups/add_user';
|
|
124647
127110
|
method: 'PUT' | 'POST';
|
|
@@ -183969,6 +186432,123 @@ type Routes = {
|
|
|
183969
186432
|
formData: {};
|
|
183970
186433
|
jsonResponse: {};
|
|
183971
186434
|
};
|
|
186435
|
+
'/user_identities/unmanaged/get': {
|
|
186436
|
+
route: '/user_identities/unmanaged/get';
|
|
186437
|
+
method: 'GET' | 'POST';
|
|
186438
|
+
queryParams: {};
|
|
186439
|
+
jsonBody: {};
|
|
186440
|
+
commonParams: {
|
|
186441
|
+
/** ID of the unmanaged user identity that you want to get. */
|
|
186442
|
+
user_identity_id: string;
|
|
186443
|
+
};
|
|
186444
|
+
formData: {};
|
|
186445
|
+
jsonResponse: {
|
|
186446
|
+
/** Represents an unmanaged user identity. Unmanaged user identities do not have keys. */
|
|
186447
|
+
user_identity: {
|
|
186448
|
+
/** ID of the user identity. */
|
|
186449
|
+
user_identity_id: string;
|
|
186450
|
+
/** Unique email address for the user identity. */
|
|
186451
|
+
email_address: string | null;
|
|
186452
|
+
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
186453
|
+
phone_number: string | null;
|
|
186454
|
+
display_name: string;
|
|
186455
|
+
full_name: string | null;
|
|
186456
|
+
/** Date and time at which the user identity was created. */
|
|
186457
|
+
created_at: string;
|
|
186458
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
186459
|
+
workspace_id: string;
|
|
186460
|
+
/** Array of errors associated with the user identity. Each error object within the array contains fields like "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
186461
|
+
errors: {
|
|
186462
|
+
/** Date and time at which Seam created the error. */
|
|
186463
|
+
created_at: string;
|
|
186464
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
186465
|
+
message: string;
|
|
186466
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
186467
|
+
error_code: 'issue_with_acs_user';
|
|
186468
|
+
/** ID of the access system user that has an issue. */
|
|
186469
|
+
acs_user_id: string;
|
|
186470
|
+
/** ID of the access system that the user identity is associated with. */
|
|
186471
|
+
acs_system_id: string;
|
|
186472
|
+
}[];
|
|
186473
|
+
/** Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
186474
|
+
warnings: ({
|
|
186475
|
+
/** Date and time at which Seam created the warning. */
|
|
186476
|
+
created_at: string;
|
|
186477
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
186478
|
+
message: string;
|
|
186479
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
186480
|
+
warning_code: 'being_deleted';
|
|
186481
|
+
} | {
|
|
186482
|
+
/** Date and time at which Seam created the warning. */
|
|
186483
|
+
created_at: string;
|
|
186484
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
186485
|
+
message: string;
|
|
186486
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
186487
|
+
warning_code: 'acs_user_profile_does_not_match_user_identity';
|
|
186488
|
+
})[];
|
|
186489
|
+
/** Array of access system user IDs associated with the user identity. */
|
|
186490
|
+
acs_user_ids: string[];
|
|
186491
|
+
};
|
|
186492
|
+
};
|
|
186493
|
+
};
|
|
186494
|
+
'/user_identities/unmanaged/list': {
|
|
186495
|
+
route: '/user_identities/unmanaged/list';
|
|
186496
|
+
method: 'GET' | 'POST';
|
|
186497
|
+
queryParams: {};
|
|
186498
|
+
jsonBody: {};
|
|
186499
|
+
commonParams: {
|
|
186500
|
+
/** String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`. */
|
|
186501
|
+
search?: string | undefined;
|
|
186502
|
+
};
|
|
186503
|
+
formData: {};
|
|
186504
|
+
jsonResponse: {
|
|
186505
|
+
user_identities: {
|
|
186506
|
+
/** ID of the user identity. */
|
|
186507
|
+
user_identity_id: string;
|
|
186508
|
+
/** Unique email address for the user identity. */
|
|
186509
|
+
email_address: string | null;
|
|
186510
|
+
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
186511
|
+
phone_number: string | null;
|
|
186512
|
+
display_name: string;
|
|
186513
|
+
full_name: string | null;
|
|
186514
|
+
/** Date and time at which the user identity was created. */
|
|
186515
|
+
created_at: string;
|
|
186516
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
186517
|
+
workspace_id: string;
|
|
186518
|
+
/** Array of errors associated with the user identity. Each error object within the array contains fields like "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
186519
|
+
errors: {
|
|
186520
|
+
/** Date and time at which Seam created the error. */
|
|
186521
|
+
created_at: string;
|
|
186522
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
186523
|
+
message: string;
|
|
186524
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
186525
|
+
error_code: 'issue_with_acs_user';
|
|
186526
|
+
/** ID of the access system user that has an issue. */
|
|
186527
|
+
acs_user_id: string;
|
|
186528
|
+
/** ID of the access system that the user identity is associated with. */
|
|
186529
|
+
acs_system_id: string;
|
|
186530
|
+
}[];
|
|
186531
|
+
/** Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
186532
|
+
warnings: ({
|
|
186533
|
+
/** Date and time at which Seam created the warning. */
|
|
186534
|
+
created_at: string;
|
|
186535
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
186536
|
+
message: string;
|
|
186537
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
186538
|
+
warning_code: 'being_deleted';
|
|
186539
|
+
} | {
|
|
186540
|
+
/** Date and time at which Seam created the warning. */
|
|
186541
|
+
created_at: string;
|
|
186542
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
186543
|
+
message: string;
|
|
186544
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
186545
|
+
warning_code: 'acs_user_profile_does_not_match_user_identity';
|
|
186546
|
+
})[];
|
|
186547
|
+
/** Array of access system user IDs associated with the user identity. */
|
|
186548
|
+
acs_user_ids: string[];
|
|
186549
|
+
}[];
|
|
186550
|
+
};
|
|
186551
|
+
};
|
|
183972
186552
|
'/user_identities/update': {
|
|
183973
186553
|
route: '/user_identities/update';
|
|
183974
186554
|
method: 'PATCH' | 'POST';
|