@seamapi/types 1.584.0 → 1.586.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 +2837 -396
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3265 -623
- package/dist/index.cjs +2837 -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 +2924 -623
- package/lib/seam/connect/openapi.js +3415 -1006
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +341 -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 +3411 -738
- package/src/lib/seam/connect/route-types.ts +351 -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;
|
|
@@ -69879,23 +70755,228 @@ declare const _default: {
|
|
|
69879
70755
|
'application/json': {
|
|
69880
70756
|
schema: {
|
|
69881
70757
|
properties: {
|
|
69882
|
-
access_grant_id: {
|
|
70758
|
+
access_grant_id: {
|
|
70759
|
+
description: string;
|
|
70760
|
+
format: string;
|
|
70761
|
+
type: string;
|
|
70762
|
+
};
|
|
70763
|
+
ends_at: {
|
|
70764
|
+
description: string;
|
|
70765
|
+
format: string;
|
|
70766
|
+
nullable: boolean;
|
|
70767
|
+
type: string;
|
|
70768
|
+
};
|
|
70769
|
+
name: {
|
|
70770
|
+
description: string;
|
|
70771
|
+
nullable: boolean;
|
|
70772
|
+
type: string;
|
|
70773
|
+
};
|
|
70774
|
+
starts_at: {
|
|
70775
|
+
description: string;
|
|
70776
|
+
format: string;
|
|
70777
|
+
type: string;
|
|
70778
|
+
};
|
|
70779
|
+
};
|
|
70780
|
+
required: string[];
|
|
70781
|
+
type: string;
|
|
70782
|
+
};
|
|
70783
|
+
};
|
|
70784
|
+
};
|
|
70785
|
+
};
|
|
70786
|
+
responses: {
|
|
70787
|
+
200: {
|
|
70788
|
+
content: {
|
|
70789
|
+
'application/json': {
|
|
70790
|
+
schema: {
|
|
70791
|
+
properties: {
|
|
70792
|
+
ok: {
|
|
70793
|
+
type: string;
|
|
70794
|
+
};
|
|
70795
|
+
};
|
|
70796
|
+
required: string[];
|
|
70797
|
+
type: string;
|
|
70798
|
+
};
|
|
70799
|
+
};
|
|
70800
|
+
};
|
|
70801
|
+
description: string;
|
|
70802
|
+
};
|
|
70803
|
+
400: {
|
|
70804
|
+
description: string;
|
|
70805
|
+
};
|
|
70806
|
+
401: {
|
|
70807
|
+
description: string;
|
|
70808
|
+
};
|
|
70809
|
+
};
|
|
70810
|
+
security: ({
|
|
70811
|
+
pat_with_workspace: never[];
|
|
70812
|
+
console_session_with_workspace?: never;
|
|
70813
|
+
api_key?: never;
|
|
70814
|
+
client_session_with_customer?: never;
|
|
70815
|
+
} | {
|
|
70816
|
+
console_session_with_workspace: never[];
|
|
70817
|
+
pat_with_workspace?: never;
|
|
70818
|
+
api_key?: never;
|
|
70819
|
+
client_session_with_customer?: never;
|
|
70820
|
+
} | {
|
|
70821
|
+
api_key: never[];
|
|
70822
|
+
pat_with_workspace?: never;
|
|
70823
|
+
console_session_with_workspace?: never;
|
|
70824
|
+
client_session_with_customer?: never;
|
|
70825
|
+
} | {
|
|
70826
|
+
client_session_with_customer: never[];
|
|
70827
|
+
pat_with_workspace?: never;
|
|
70828
|
+
console_session_with_workspace?: never;
|
|
70829
|
+
api_key?: never;
|
|
70830
|
+
})[];
|
|
70831
|
+
summary: string;
|
|
70832
|
+
tags: never[];
|
|
70833
|
+
'x-draft': string;
|
|
70834
|
+
'x-fern-sdk-group-name': string[];
|
|
70835
|
+
'x-fern-sdk-method-name': string;
|
|
70836
|
+
'x-response-key': null;
|
|
70837
|
+
'x-title': string;
|
|
70838
|
+
};
|
|
70839
|
+
};
|
|
70840
|
+
'/access_methods/delete': {
|
|
70841
|
+
delete: {
|
|
70842
|
+
description: string;
|
|
70843
|
+
operationId: string;
|
|
70844
|
+
parameters: {
|
|
70845
|
+
in: string;
|
|
70846
|
+
name: string;
|
|
70847
|
+
required: boolean;
|
|
70848
|
+
schema: {
|
|
70849
|
+
description: string;
|
|
70850
|
+
format: string;
|
|
70851
|
+
type: string;
|
|
70852
|
+
};
|
|
70853
|
+
}[];
|
|
70854
|
+
responses: {
|
|
70855
|
+
200: {
|
|
70856
|
+
content: {
|
|
70857
|
+
'application/json': {
|
|
70858
|
+
schema: {
|
|
70859
|
+
properties: {
|
|
70860
|
+
ok: {
|
|
70861
|
+
type: string;
|
|
70862
|
+
};
|
|
70863
|
+
};
|
|
70864
|
+
required: string[];
|
|
70865
|
+
type: string;
|
|
70866
|
+
};
|
|
70867
|
+
};
|
|
70868
|
+
};
|
|
70869
|
+
description: string;
|
|
70870
|
+
};
|
|
70871
|
+
400: {
|
|
70872
|
+
description: string;
|
|
70873
|
+
};
|
|
70874
|
+
401: {
|
|
70875
|
+
description: string;
|
|
70876
|
+
};
|
|
70877
|
+
};
|
|
70878
|
+
security: ({
|
|
70879
|
+
pat_with_workspace: never[];
|
|
70880
|
+
console_session_with_workspace?: never;
|
|
70881
|
+
api_key?: never;
|
|
70882
|
+
} | {
|
|
70883
|
+
console_session_with_workspace: never[];
|
|
70884
|
+
pat_with_workspace?: never;
|
|
70885
|
+
api_key?: never;
|
|
70886
|
+
} | {
|
|
70887
|
+
api_key: never[];
|
|
70888
|
+
pat_with_workspace?: never;
|
|
70889
|
+
console_session_with_workspace?: never;
|
|
70890
|
+
})[];
|
|
70891
|
+
summary: string;
|
|
70892
|
+
tags: never[];
|
|
70893
|
+
'x-draft': string;
|
|
70894
|
+
'x-fern-sdk-group-name': string[];
|
|
70895
|
+
'x-fern-sdk-method-name': string;
|
|
70896
|
+
'x-response-key': null;
|
|
70897
|
+
'x-title': string;
|
|
70898
|
+
};
|
|
70899
|
+
post: {
|
|
70900
|
+
description: string;
|
|
70901
|
+
operationId: string;
|
|
70902
|
+
requestBody: {
|
|
70903
|
+
content: {
|
|
70904
|
+
'application/json': {
|
|
70905
|
+
schema: {
|
|
70906
|
+
properties: {
|
|
70907
|
+
access_method_id: {
|
|
69883
70908
|
description: string;
|
|
69884
70909
|
format: string;
|
|
69885
70910
|
type: string;
|
|
69886
70911
|
};
|
|
69887
|
-
|
|
69888
|
-
|
|
69889
|
-
|
|
69890
|
-
|
|
69891
|
-
|
|
70912
|
+
};
|
|
70913
|
+
required: string[];
|
|
70914
|
+
type: string;
|
|
70915
|
+
};
|
|
70916
|
+
};
|
|
70917
|
+
};
|
|
70918
|
+
};
|
|
70919
|
+
responses: {
|
|
70920
|
+
200: {
|
|
70921
|
+
content: {
|
|
70922
|
+
'application/json': {
|
|
70923
|
+
schema: {
|
|
70924
|
+
properties: {
|
|
70925
|
+
ok: {
|
|
70926
|
+
type: string;
|
|
70927
|
+
};
|
|
69892
70928
|
};
|
|
69893
|
-
|
|
70929
|
+
required: string[];
|
|
70930
|
+
type: string;
|
|
70931
|
+
};
|
|
70932
|
+
};
|
|
70933
|
+
};
|
|
70934
|
+
description: string;
|
|
70935
|
+
};
|
|
70936
|
+
400: {
|
|
70937
|
+
description: string;
|
|
70938
|
+
};
|
|
70939
|
+
401: {
|
|
70940
|
+
description: string;
|
|
70941
|
+
};
|
|
70942
|
+
};
|
|
70943
|
+
security: ({
|
|
70944
|
+
pat_with_workspace: never[];
|
|
70945
|
+
console_session_with_workspace?: never;
|
|
70946
|
+
api_key?: never;
|
|
70947
|
+
} | {
|
|
70948
|
+
console_session_with_workspace: never[];
|
|
70949
|
+
pat_with_workspace?: never;
|
|
70950
|
+
api_key?: never;
|
|
70951
|
+
} | {
|
|
70952
|
+
api_key: never[];
|
|
70953
|
+
pat_with_workspace?: never;
|
|
70954
|
+
console_session_with_workspace?: never;
|
|
70955
|
+
})[];
|
|
70956
|
+
summary: string;
|
|
70957
|
+
tags: never[];
|
|
70958
|
+
'x-draft': string;
|
|
70959
|
+
'x-fern-sdk-group-name': string[];
|
|
70960
|
+
'x-fern-sdk-method-name': string;
|
|
70961
|
+
'x-response-key': null;
|
|
70962
|
+
'x-title': string;
|
|
70963
|
+
};
|
|
70964
|
+
};
|
|
70965
|
+
'/access_methods/encode': {
|
|
70966
|
+
post: {
|
|
70967
|
+
description: string;
|
|
70968
|
+
operationId: string;
|
|
70969
|
+
requestBody: {
|
|
70970
|
+
content: {
|
|
70971
|
+
'application/json': {
|
|
70972
|
+
schema: {
|
|
70973
|
+
properties: {
|
|
70974
|
+
access_method_id: {
|
|
69894
70975
|
description: string;
|
|
69895
|
-
|
|
70976
|
+
format: string;
|
|
69896
70977
|
type: string;
|
|
69897
70978
|
};
|
|
69898
|
-
|
|
70979
|
+
acs_encoder_id: {
|
|
69899
70980
|
description: string;
|
|
69900
70981
|
format: string;
|
|
69901
70982
|
type: string;
|
|
@@ -69913,6 +70994,9 @@ declare const _default: {
|
|
|
69913
70994
|
'application/json': {
|
|
69914
70995
|
schema: {
|
|
69915
70996
|
properties: {
|
|
70997
|
+
action_attempt: {
|
|
70998
|
+
$ref: string;
|
|
70999
|
+
};
|
|
69916
71000
|
ok: {
|
|
69917
71001
|
type: string;
|
|
69918
71002
|
};
|
|
@@ -69935,52 +71019,368 @@ declare const _default: {
|
|
|
69935
71019
|
pat_with_workspace: never[];
|
|
69936
71020
|
console_session_with_workspace?: never;
|
|
69937
71021
|
api_key?: never;
|
|
69938
|
-
client_session_with_customer?: never;
|
|
69939
71022
|
} | {
|
|
69940
71023
|
console_session_with_workspace: never[];
|
|
69941
71024
|
pat_with_workspace?: never;
|
|
69942
71025
|
api_key?: never;
|
|
69943
|
-
client_session_with_customer?: never;
|
|
69944
71026
|
} | {
|
|
69945
71027
|
api_key: never[];
|
|
69946
71028
|
pat_with_workspace?: never;
|
|
69947
71029
|
console_session_with_workspace?: never;
|
|
69948
|
-
|
|
71030
|
+
})[];
|
|
71031
|
+
summary: string;
|
|
71032
|
+
tags: never[];
|
|
71033
|
+
'x-action-attempt-type': string;
|
|
71034
|
+
'x-fern-sdk-group-name': string[];
|
|
71035
|
+
'x-fern-sdk-method-name': string;
|
|
71036
|
+
'x-fern-sdk-return-value': string;
|
|
71037
|
+
'x-response-key': string;
|
|
71038
|
+
'x-title': string;
|
|
71039
|
+
};
|
|
71040
|
+
};
|
|
71041
|
+
'/access_methods/get': {
|
|
71042
|
+
get: {
|
|
71043
|
+
description: string;
|
|
71044
|
+
operationId: string;
|
|
71045
|
+
parameters: {
|
|
71046
|
+
in: string;
|
|
71047
|
+
name: string;
|
|
71048
|
+
required: boolean;
|
|
71049
|
+
schema: {
|
|
71050
|
+
description: string;
|
|
71051
|
+
format: string;
|
|
71052
|
+
type: string;
|
|
71053
|
+
};
|
|
71054
|
+
}[];
|
|
71055
|
+
responses: {
|
|
71056
|
+
200: {
|
|
71057
|
+
content: {
|
|
71058
|
+
'application/json': {
|
|
71059
|
+
schema: {
|
|
71060
|
+
properties: {
|
|
71061
|
+
access_method: {
|
|
71062
|
+
$ref: string;
|
|
71063
|
+
};
|
|
71064
|
+
ok: {
|
|
71065
|
+
type: string;
|
|
71066
|
+
};
|
|
71067
|
+
};
|
|
71068
|
+
required: string[];
|
|
71069
|
+
type: string;
|
|
71070
|
+
};
|
|
71071
|
+
};
|
|
71072
|
+
};
|
|
71073
|
+
description: string;
|
|
71074
|
+
};
|
|
71075
|
+
400: {
|
|
71076
|
+
description: string;
|
|
71077
|
+
};
|
|
71078
|
+
401: {
|
|
71079
|
+
description: string;
|
|
71080
|
+
};
|
|
71081
|
+
};
|
|
71082
|
+
security: ({
|
|
71083
|
+
pat_with_workspace: never[];
|
|
71084
|
+
console_session_with_workspace?: never;
|
|
71085
|
+
api_key?: never;
|
|
69949
71086
|
} | {
|
|
69950
|
-
|
|
71087
|
+
console_session_with_workspace: never[];
|
|
71088
|
+
pat_with_workspace?: never;
|
|
71089
|
+
api_key?: never;
|
|
71090
|
+
} | {
|
|
71091
|
+
api_key: never[];
|
|
69951
71092
|
pat_with_workspace?: never;
|
|
69952
71093
|
console_session_with_workspace?: never;
|
|
71094
|
+
})[];
|
|
71095
|
+
summary: string;
|
|
71096
|
+
tags: never[];
|
|
71097
|
+
'x-draft': string;
|
|
71098
|
+
'x-fern-sdk-group-name': string[];
|
|
71099
|
+
'x-fern-sdk-method-name': string;
|
|
71100
|
+
'x-fern-sdk-return-value': string;
|
|
71101
|
+
'x-response-key': string;
|
|
71102
|
+
'x-title': string;
|
|
71103
|
+
};
|
|
71104
|
+
post: {
|
|
71105
|
+
description: string;
|
|
71106
|
+
operationId: string;
|
|
71107
|
+
requestBody: {
|
|
71108
|
+
content: {
|
|
71109
|
+
'application/json': {
|
|
71110
|
+
schema: {
|
|
71111
|
+
properties: {
|
|
71112
|
+
access_method_id: {
|
|
71113
|
+
description: string;
|
|
71114
|
+
format: string;
|
|
71115
|
+
type: string;
|
|
71116
|
+
};
|
|
71117
|
+
};
|
|
71118
|
+
required: string[];
|
|
71119
|
+
type: string;
|
|
71120
|
+
};
|
|
71121
|
+
};
|
|
71122
|
+
};
|
|
71123
|
+
};
|
|
71124
|
+
responses: {
|
|
71125
|
+
200: {
|
|
71126
|
+
content: {
|
|
71127
|
+
'application/json': {
|
|
71128
|
+
schema: {
|
|
71129
|
+
properties: {
|
|
71130
|
+
access_method: {
|
|
71131
|
+
$ref: string;
|
|
71132
|
+
};
|
|
71133
|
+
ok: {
|
|
71134
|
+
type: string;
|
|
71135
|
+
};
|
|
71136
|
+
};
|
|
71137
|
+
required: string[];
|
|
71138
|
+
type: string;
|
|
71139
|
+
};
|
|
71140
|
+
};
|
|
71141
|
+
};
|
|
71142
|
+
description: string;
|
|
71143
|
+
};
|
|
71144
|
+
400: {
|
|
71145
|
+
description: string;
|
|
71146
|
+
};
|
|
71147
|
+
401: {
|
|
71148
|
+
description: string;
|
|
71149
|
+
};
|
|
71150
|
+
};
|
|
71151
|
+
security: ({
|
|
71152
|
+
pat_with_workspace: never[];
|
|
71153
|
+
console_session_with_workspace?: never;
|
|
71154
|
+
api_key?: never;
|
|
71155
|
+
} | {
|
|
71156
|
+
console_session_with_workspace: never[];
|
|
71157
|
+
pat_with_workspace?: never;
|
|
69953
71158
|
api_key?: never;
|
|
71159
|
+
} | {
|
|
71160
|
+
api_key: never[];
|
|
71161
|
+
pat_with_workspace?: never;
|
|
71162
|
+
console_session_with_workspace?: never;
|
|
69954
71163
|
})[];
|
|
69955
71164
|
summary: string;
|
|
69956
71165
|
tags: never[];
|
|
69957
71166
|
'x-draft': string;
|
|
69958
71167
|
'x-fern-sdk-group-name': string[];
|
|
69959
71168
|
'x-fern-sdk-method-name': string;
|
|
69960
|
-
'x-
|
|
71169
|
+
'x-fern-sdk-return-value': string;
|
|
71170
|
+
'x-response-key': string;
|
|
69961
71171
|
'x-title': string;
|
|
69962
71172
|
};
|
|
69963
71173
|
};
|
|
69964
|
-
'/access_methods/
|
|
69965
|
-
|
|
71174
|
+
'/access_methods/get_related': {
|
|
71175
|
+
get: {
|
|
69966
71176
|
description: string;
|
|
69967
71177
|
operationId: string;
|
|
69968
|
-
parameters: {
|
|
71178
|
+
parameters: ({
|
|
69969
71179
|
in: string;
|
|
69970
71180
|
name: string;
|
|
69971
71181
|
required: boolean;
|
|
69972
71182
|
schema: {
|
|
69973
71183
|
description: string;
|
|
69974
|
-
|
|
71184
|
+
items: {
|
|
71185
|
+
format: string;
|
|
71186
|
+
type: string;
|
|
71187
|
+
enum?: never;
|
|
71188
|
+
};
|
|
69975
71189
|
type: string;
|
|
69976
71190
|
};
|
|
69977
|
-
}
|
|
71191
|
+
} | {
|
|
71192
|
+
in: string;
|
|
71193
|
+
name: string;
|
|
71194
|
+
required: boolean;
|
|
71195
|
+
schema: {
|
|
71196
|
+
items: {
|
|
71197
|
+
enum: string[];
|
|
71198
|
+
type: string;
|
|
71199
|
+
format?: never;
|
|
71200
|
+
};
|
|
71201
|
+
type: string;
|
|
71202
|
+
description?: never;
|
|
71203
|
+
};
|
|
71204
|
+
})[];
|
|
69978
71205
|
responses: {
|
|
69979
71206
|
200: {
|
|
69980
71207
|
content: {
|
|
69981
71208
|
'application/json': {
|
|
69982
71209
|
schema: {
|
|
69983
71210
|
properties: {
|
|
71211
|
+
batch: {
|
|
71212
|
+
description: string;
|
|
71213
|
+
properties: {
|
|
71214
|
+
access_codes: {
|
|
71215
|
+
items: {
|
|
71216
|
+
$ref: string;
|
|
71217
|
+
};
|
|
71218
|
+
type: string;
|
|
71219
|
+
};
|
|
71220
|
+
access_grants: {
|
|
71221
|
+
items: {
|
|
71222
|
+
$ref: string;
|
|
71223
|
+
};
|
|
71224
|
+
type: string;
|
|
71225
|
+
};
|
|
71226
|
+
access_methods: {
|
|
71227
|
+
items: {
|
|
71228
|
+
$ref: string;
|
|
71229
|
+
};
|
|
71230
|
+
type: string;
|
|
71231
|
+
};
|
|
71232
|
+
acs_access_groups: {
|
|
71233
|
+
items: {
|
|
71234
|
+
$ref: string;
|
|
71235
|
+
};
|
|
71236
|
+
type: string;
|
|
71237
|
+
};
|
|
71238
|
+
acs_credentials: {
|
|
71239
|
+
items: {
|
|
71240
|
+
$ref: string;
|
|
71241
|
+
};
|
|
71242
|
+
type: string;
|
|
71243
|
+
};
|
|
71244
|
+
acs_encoders: {
|
|
71245
|
+
items: {
|
|
71246
|
+
$ref: string;
|
|
71247
|
+
};
|
|
71248
|
+
type: string;
|
|
71249
|
+
};
|
|
71250
|
+
acs_entrances: {
|
|
71251
|
+
items: {
|
|
71252
|
+
$ref: string;
|
|
71253
|
+
};
|
|
71254
|
+
type: string;
|
|
71255
|
+
};
|
|
71256
|
+
acs_systems: {
|
|
71257
|
+
items: {
|
|
71258
|
+
$ref: string;
|
|
71259
|
+
};
|
|
71260
|
+
type: string;
|
|
71261
|
+
};
|
|
71262
|
+
acs_users: {
|
|
71263
|
+
items: {
|
|
71264
|
+
$ref: string;
|
|
71265
|
+
};
|
|
71266
|
+
type: string;
|
|
71267
|
+
};
|
|
71268
|
+
action_attempts: {
|
|
71269
|
+
items: {
|
|
71270
|
+
$ref: string;
|
|
71271
|
+
};
|
|
71272
|
+
type: string;
|
|
71273
|
+
};
|
|
71274
|
+
batch_type: {
|
|
71275
|
+
enum: string[];
|
|
71276
|
+
type: string;
|
|
71277
|
+
};
|
|
71278
|
+
client_sessions: {
|
|
71279
|
+
items: {
|
|
71280
|
+
$ref: string;
|
|
71281
|
+
};
|
|
71282
|
+
type: string;
|
|
71283
|
+
};
|
|
71284
|
+
connect_webviews: {
|
|
71285
|
+
items: {
|
|
71286
|
+
$ref: string;
|
|
71287
|
+
};
|
|
71288
|
+
type: string;
|
|
71289
|
+
};
|
|
71290
|
+
customization_profiles: {
|
|
71291
|
+
items: {
|
|
71292
|
+
$ref: string;
|
|
71293
|
+
};
|
|
71294
|
+
type: string;
|
|
71295
|
+
};
|
|
71296
|
+
devices: {
|
|
71297
|
+
items: {
|
|
71298
|
+
$ref: string;
|
|
71299
|
+
};
|
|
71300
|
+
type: string;
|
|
71301
|
+
};
|
|
71302
|
+
events: {
|
|
71303
|
+
items: {
|
|
71304
|
+
$ref: string;
|
|
71305
|
+
};
|
|
71306
|
+
type: string;
|
|
71307
|
+
};
|
|
71308
|
+
instant_keys: {
|
|
71309
|
+
items: {
|
|
71310
|
+
$ref: string;
|
|
71311
|
+
};
|
|
71312
|
+
type: string;
|
|
71313
|
+
};
|
|
71314
|
+
noise_thresholds: {
|
|
71315
|
+
items: {
|
|
71316
|
+
$ref: string;
|
|
71317
|
+
};
|
|
71318
|
+
type: string;
|
|
71319
|
+
};
|
|
71320
|
+
spaces: {
|
|
71321
|
+
items: {
|
|
71322
|
+
$ref: string;
|
|
71323
|
+
};
|
|
71324
|
+
type: string;
|
|
71325
|
+
};
|
|
71326
|
+
thermostat_daily_programs: {
|
|
71327
|
+
items: {
|
|
71328
|
+
$ref: string;
|
|
71329
|
+
};
|
|
71330
|
+
type: string;
|
|
71331
|
+
};
|
|
71332
|
+
thermostat_schedules: {
|
|
71333
|
+
items: {
|
|
71334
|
+
$ref: string;
|
|
71335
|
+
};
|
|
71336
|
+
type: string;
|
|
71337
|
+
};
|
|
71338
|
+
unmanaged_access_codes: {
|
|
71339
|
+
items: {
|
|
71340
|
+
$ref: string;
|
|
71341
|
+
};
|
|
71342
|
+
type: string;
|
|
71343
|
+
};
|
|
71344
|
+
unmanaged_acs_access_groups: {
|
|
71345
|
+
items: {
|
|
71346
|
+
$ref: string;
|
|
71347
|
+
};
|
|
71348
|
+
type: string;
|
|
71349
|
+
};
|
|
71350
|
+
unmanaged_acs_credentials: {
|
|
71351
|
+
items: {
|
|
71352
|
+
$ref: string;
|
|
71353
|
+
};
|
|
71354
|
+
type: string;
|
|
71355
|
+
};
|
|
71356
|
+
unmanaged_acs_users: {
|
|
71357
|
+
items: {
|
|
71358
|
+
$ref: string;
|
|
71359
|
+
};
|
|
71360
|
+
type: string;
|
|
71361
|
+
};
|
|
71362
|
+
unmanaged_devices: {
|
|
71363
|
+
items: {
|
|
71364
|
+
$ref: string;
|
|
71365
|
+
};
|
|
71366
|
+
type: string;
|
|
71367
|
+
};
|
|
71368
|
+
user_identities: {
|
|
71369
|
+
items: {
|
|
71370
|
+
$ref: string;
|
|
71371
|
+
};
|
|
71372
|
+
type: string;
|
|
71373
|
+
};
|
|
71374
|
+
workspaces: {
|
|
71375
|
+
items: {
|
|
71376
|
+
$ref: string;
|
|
71377
|
+
};
|
|
71378
|
+
type: string;
|
|
71379
|
+
};
|
|
71380
|
+
};
|
|
71381
|
+
required: string[];
|
|
71382
|
+
type: string;
|
|
71383
|
+
};
|
|
69984
71384
|
ok: {
|
|
69985
71385
|
type: string;
|
|
69986
71386
|
};
|
|
@@ -70014,10 +71414,12 @@ declare const _default: {
|
|
|
70014
71414
|
})[];
|
|
70015
71415
|
summary: string;
|
|
70016
71416
|
tags: never[];
|
|
71417
|
+
'x-batch-type': string;
|
|
70017
71418
|
'x-draft': string;
|
|
70018
71419
|
'x-fern-sdk-group-name': string[];
|
|
70019
71420
|
'x-fern-sdk-method-name': string;
|
|
70020
|
-
'x-
|
|
71421
|
+
'x-fern-sdk-return-value': string;
|
|
71422
|
+
'x-response-key': string;
|
|
70021
71423
|
'x-title': string;
|
|
70022
71424
|
};
|
|
70023
71425
|
post: {
|
|
@@ -70028,81 +71430,26 @@ declare const _default: {
|
|
|
70028
71430
|
'application/json': {
|
|
70029
71431
|
schema: {
|
|
70030
71432
|
properties: {
|
|
70031
|
-
|
|
71433
|
+
access_method_ids: {
|
|
70032
71434
|
description: string;
|
|
70033
|
-
|
|
71435
|
+
items: {
|
|
71436
|
+
format: string;
|
|
71437
|
+
type: string;
|
|
71438
|
+
};
|
|
70034
71439
|
type: string;
|
|
70035
71440
|
};
|
|
70036
|
-
|
|
70037
|
-
|
|
70038
|
-
|
|
70039
|
-
};
|
|
70040
|
-
};
|
|
70041
|
-
};
|
|
70042
|
-
};
|
|
70043
|
-
responses: {
|
|
70044
|
-
200: {
|
|
70045
|
-
content: {
|
|
70046
|
-
'application/json': {
|
|
70047
|
-
schema: {
|
|
70048
|
-
properties: {
|
|
70049
|
-
ok: {
|
|
71441
|
+
exclude: {
|
|
71442
|
+
items: {
|
|
71443
|
+
enum: string[];
|
|
70050
71444
|
type: string;
|
|
70051
71445
|
};
|
|
70052
|
-
};
|
|
70053
|
-
required: string[];
|
|
70054
|
-
type: string;
|
|
70055
|
-
};
|
|
70056
|
-
};
|
|
70057
|
-
};
|
|
70058
|
-
description: string;
|
|
70059
|
-
};
|
|
70060
|
-
400: {
|
|
70061
|
-
description: string;
|
|
70062
|
-
};
|
|
70063
|
-
401: {
|
|
70064
|
-
description: string;
|
|
70065
|
-
};
|
|
70066
|
-
};
|
|
70067
|
-
security: ({
|
|
70068
|
-
pat_with_workspace: never[];
|
|
70069
|
-
console_session_with_workspace?: never;
|
|
70070
|
-
api_key?: never;
|
|
70071
|
-
} | {
|
|
70072
|
-
console_session_with_workspace: never[];
|
|
70073
|
-
pat_with_workspace?: never;
|
|
70074
|
-
api_key?: never;
|
|
70075
|
-
} | {
|
|
70076
|
-
api_key: never[];
|
|
70077
|
-
pat_with_workspace?: never;
|
|
70078
|
-
console_session_with_workspace?: never;
|
|
70079
|
-
})[];
|
|
70080
|
-
summary: string;
|
|
70081
|
-
tags: never[];
|
|
70082
|
-
'x-draft': string;
|
|
70083
|
-
'x-fern-sdk-group-name': string[];
|
|
70084
|
-
'x-fern-sdk-method-name': string;
|
|
70085
|
-
'x-response-key': null;
|
|
70086
|
-
'x-title': string;
|
|
70087
|
-
};
|
|
70088
|
-
};
|
|
70089
|
-
'/access_methods/encode': {
|
|
70090
|
-
post: {
|
|
70091
|
-
description: string;
|
|
70092
|
-
operationId: string;
|
|
70093
|
-
requestBody: {
|
|
70094
|
-
content: {
|
|
70095
|
-
'application/json': {
|
|
70096
|
-
schema: {
|
|
70097
|
-
properties: {
|
|
70098
|
-
access_method_id: {
|
|
70099
|
-
description: string;
|
|
70100
|
-
format: string;
|
|
70101
71446
|
type: string;
|
|
70102
71447
|
};
|
|
70103
|
-
|
|
70104
|
-
|
|
70105
|
-
|
|
71448
|
+
include: {
|
|
71449
|
+
items: {
|
|
71450
|
+
enum: string[];
|
|
71451
|
+
type: string;
|
|
71452
|
+
};
|
|
70106
71453
|
type: string;
|
|
70107
71454
|
};
|
|
70108
71455
|
};
|
|
@@ -70118,8 +71465,178 @@ declare const _default: {
|
|
|
70118
71465
|
'application/json': {
|
|
70119
71466
|
schema: {
|
|
70120
71467
|
properties: {
|
|
70121
|
-
|
|
70122
|
-
|
|
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;
|
|
70123
71640
|
};
|
|
70124
71641
|
ok: {
|
|
70125
71642
|
type: string;
|
|
@@ -70154,7 +71671,8 @@ declare const _default: {
|
|
|
70154
71671
|
})[];
|
|
70155
71672
|
summary: string;
|
|
70156
71673
|
tags: never[];
|
|
70157
|
-
'x-
|
|
71674
|
+
'x-batch-type': string;
|
|
71675
|
+
'x-draft': string;
|
|
70158
71676
|
'x-fern-sdk-group-name': string[];
|
|
70159
71677
|
'x-fern-sdk-method-name': string;
|
|
70160
71678
|
'x-fern-sdk-return-value': string;
|
|
@@ -70162,7 +71680,7 @@ declare const _default: {
|
|
|
70162
71680
|
'x-title': string;
|
|
70163
71681
|
};
|
|
70164
71682
|
};
|
|
70165
|
-
'/access_methods/
|
|
71683
|
+
'/access_methods/list': {
|
|
70166
71684
|
get: {
|
|
70167
71685
|
description: string;
|
|
70168
71686
|
operationId: string;
|
|
@@ -70182,8 +71700,11 @@ declare const _default: {
|
|
|
70182
71700
|
'application/json': {
|
|
70183
71701
|
schema: {
|
|
70184
71702
|
properties: {
|
|
70185
|
-
|
|
70186
|
-
|
|
71703
|
+
access_methods: {
|
|
71704
|
+
items: {
|
|
71705
|
+
$ref: string;
|
|
71706
|
+
};
|
|
71707
|
+
type: string;
|
|
70187
71708
|
};
|
|
70188
71709
|
ok: {
|
|
70189
71710
|
type: string;
|
|
@@ -70233,7 +71754,22 @@ declare const _default: {
|
|
|
70233
71754
|
'application/json': {
|
|
70234
71755
|
schema: {
|
|
70235
71756
|
properties: {
|
|
70236
|
-
|
|
71757
|
+
access_grant_id: {
|
|
71758
|
+
description: string;
|
|
71759
|
+
format: string;
|
|
71760
|
+
type: string;
|
|
71761
|
+
};
|
|
71762
|
+
acs_entrance_id: {
|
|
71763
|
+
description: string;
|
|
71764
|
+
format: string;
|
|
71765
|
+
type: string;
|
|
71766
|
+
};
|
|
71767
|
+
device_id: {
|
|
71768
|
+
description: string;
|
|
71769
|
+
format: string;
|
|
71770
|
+
type: string;
|
|
71771
|
+
};
|
|
71772
|
+
space_id: {
|
|
70237
71773
|
description: string;
|
|
70238
71774
|
format: string;
|
|
70239
71775
|
type: string;
|
|
@@ -70251,8 +71787,11 @@ declare const _default: {
|
|
|
70251
71787
|
'application/json': {
|
|
70252
71788
|
schema: {
|
|
70253
71789
|
properties: {
|
|
70254
|
-
|
|
70255
|
-
|
|
71790
|
+
access_methods: {
|
|
71791
|
+
items: {
|
|
71792
|
+
$ref: string;
|
|
71793
|
+
};
|
|
71794
|
+
type: string;
|
|
70256
71795
|
};
|
|
70257
71796
|
ok: {
|
|
70258
71797
|
type: string;
|
|
@@ -70295,215 +71834,108 @@ declare const _default: {
|
|
|
70295
71834
|
'x-title': string;
|
|
70296
71835
|
};
|
|
70297
71836
|
};
|
|
70298
|
-
'/access_methods/
|
|
71837
|
+
'/access_methods/unmanaged/get': {
|
|
70299
71838
|
get: {
|
|
70300
71839
|
description: string;
|
|
70301
71840
|
operationId: string;
|
|
70302
|
-
parameters:
|
|
71841
|
+
parameters: {
|
|
70303
71842
|
in: string;
|
|
70304
71843
|
name: string;
|
|
70305
71844
|
required: boolean;
|
|
70306
71845
|
schema: {
|
|
70307
71846
|
description: string;
|
|
70308
|
-
|
|
70309
|
-
format: string;
|
|
70310
|
-
type: string;
|
|
70311
|
-
enum?: never;
|
|
70312
|
-
};
|
|
70313
|
-
type: string;
|
|
70314
|
-
};
|
|
70315
|
-
} | {
|
|
70316
|
-
in: string;
|
|
70317
|
-
name: string;
|
|
70318
|
-
required: boolean;
|
|
70319
|
-
schema: {
|
|
70320
|
-
items: {
|
|
70321
|
-
enum: string[];
|
|
70322
|
-
type: string;
|
|
70323
|
-
format?: never;
|
|
70324
|
-
};
|
|
71847
|
+
format: string;
|
|
70325
71848
|
type: string;
|
|
70326
|
-
description?: never;
|
|
70327
71849
|
};
|
|
70328
|
-
}
|
|
71850
|
+
}[];
|
|
70329
71851
|
responses: {
|
|
70330
71852
|
200: {
|
|
70331
71853
|
content: {
|
|
70332
71854
|
'application/json': {
|
|
70333
71855
|
schema: {
|
|
70334
71856
|
properties: {
|
|
70335
|
-
|
|
71857
|
+
access_method: {
|
|
70336
71858
|
description: string;
|
|
70337
71859
|
properties: {
|
|
70338
|
-
|
|
70339
|
-
|
|
70340
|
-
|
|
70341
|
-
};
|
|
70342
|
-
type: string;
|
|
70343
|
-
};
|
|
70344
|
-
access_grants: {
|
|
70345
|
-
items: {
|
|
70346
|
-
$ref: string;
|
|
70347
|
-
};
|
|
70348
|
-
type: string;
|
|
70349
|
-
};
|
|
70350
|
-
access_methods: {
|
|
70351
|
-
items: {
|
|
70352
|
-
$ref: string;
|
|
70353
|
-
};
|
|
70354
|
-
type: string;
|
|
70355
|
-
};
|
|
70356
|
-
acs_access_groups: {
|
|
70357
|
-
items: {
|
|
70358
|
-
$ref: string;
|
|
70359
|
-
};
|
|
71860
|
+
access_method_id: {
|
|
71861
|
+
description: string;
|
|
71862
|
+
format: string;
|
|
70360
71863
|
type: string;
|
|
70361
71864
|
};
|
|
70362
|
-
|
|
70363
|
-
|
|
70364
|
-
|
|
70365
|
-
};
|
|
71865
|
+
code: {
|
|
71866
|
+
description: string;
|
|
71867
|
+
nullable: boolean;
|
|
70366
71868
|
type: string;
|
|
70367
71869
|
};
|
|
70368
|
-
|
|
70369
|
-
|
|
70370
|
-
|
|
70371
|
-
};
|
|
71870
|
+
created_at: {
|
|
71871
|
+
description: string;
|
|
71872
|
+
format: string;
|
|
70372
71873
|
type: string;
|
|
70373
71874
|
};
|
|
70374
|
-
|
|
70375
|
-
|
|
70376
|
-
$ref: string;
|
|
70377
|
-
};
|
|
71875
|
+
display_name: {
|
|
71876
|
+
description: string;
|
|
70378
71877
|
type: string;
|
|
70379
71878
|
};
|
|
70380
|
-
|
|
70381
|
-
|
|
70382
|
-
$ref: string;
|
|
70383
|
-
};
|
|
71879
|
+
is_encoding_required: {
|
|
71880
|
+
description: string;
|
|
70384
71881
|
type: string;
|
|
70385
71882
|
};
|
|
70386
|
-
|
|
70387
|
-
|
|
70388
|
-
$ref: string;
|
|
70389
|
-
};
|
|
71883
|
+
is_issued: {
|
|
71884
|
+
description: string;
|
|
70390
71885
|
type: string;
|
|
70391
71886
|
};
|
|
70392
|
-
|
|
70393
|
-
|
|
70394
|
-
|
|
70395
|
-
|
|
71887
|
+
issued_at: {
|
|
71888
|
+
description: string;
|
|
71889
|
+
format: string;
|
|
71890
|
+
nullable: boolean;
|
|
70396
71891
|
type: string;
|
|
70397
71892
|
};
|
|
70398
|
-
|
|
71893
|
+
mode: {
|
|
71894
|
+
description: string;
|
|
70399
71895
|
enum: string[];
|
|
70400
71896
|
type: string;
|
|
70401
71897
|
};
|
|
70402
|
-
|
|
70403
|
-
|
|
70404
|
-
$ref: string;
|
|
70405
|
-
};
|
|
70406
|
-
type: string;
|
|
70407
|
-
};
|
|
70408
|
-
connect_webviews: {
|
|
70409
|
-
items: {
|
|
70410
|
-
$ref: string;
|
|
70411
|
-
};
|
|
70412
|
-
type: string;
|
|
70413
|
-
};
|
|
70414
|
-
customization_profiles: {
|
|
70415
|
-
items: {
|
|
70416
|
-
$ref: string;
|
|
70417
|
-
};
|
|
70418
|
-
type: string;
|
|
70419
|
-
};
|
|
70420
|
-
devices: {
|
|
70421
|
-
items: {
|
|
70422
|
-
$ref: string;
|
|
70423
|
-
};
|
|
70424
|
-
type: string;
|
|
70425
|
-
};
|
|
70426
|
-
events: {
|
|
70427
|
-
items: {
|
|
70428
|
-
$ref: string;
|
|
70429
|
-
};
|
|
70430
|
-
type: string;
|
|
70431
|
-
};
|
|
70432
|
-
instant_keys: {
|
|
70433
|
-
items: {
|
|
70434
|
-
$ref: string;
|
|
70435
|
-
};
|
|
70436
|
-
type: string;
|
|
70437
|
-
};
|
|
70438
|
-
noise_thresholds: {
|
|
70439
|
-
items: {
|
|
70440
|
-
$ref: string;
|
|
70441
|
-
};
|
|
70442
|
-
type: string;
|
|
70443
|
-
};
|
|
70444
|
-
spaces: {
|
|
70445
|
-
items: {
|
|
70446
|
-
$ref: string;
|
|
70447
|
-
};
|
|
70448
|
-
type: string;
|
|
70449
|
-
};
|
|
70450
|
-
thermostat_daily_programs: {
|
|
70451
|
-
items: {
|
|
70452
|
-
$ref: string;
|
|
70453
|
-
};
|
|
70454
|
-
type: string;
|
|
70455
|
-
};
|
|
70456
|
-
thermostat_schedules: {
|
|
70457
|
-
items: {
|
|
70458
|
-
$ref: string;
|
|
70459
|
-
};
|
|
70460
|
-
type: string;
|
|
70461
|
-
};
|
|
70462
|
-
unmanaged_access_codes: {
|
|
70463
|
-
items: {
|
|
70464
|
-
$ref: string;
|
|
70465
|
-
};
|
|
70466
|
-
type: string;
|
|
70467
|
-
};
|
|
70468
|
-
unmanaged_acs_access_groups: {
|
|
70469
|
-
items: {
|
|
70470
|
-
$ref: string;
|
|
70471
|
-
};
|
|
70472
|
-
type: string;
|
|
70473
|
-
};
|
|
70474
|
-
unmanaged_acs_credentials: {
|
|
70475
|
-
items: {
|
|
70476
|
-
$ref: string;
|
|
70477
|
-
};
|
|
70478
|
-
type: string;
|
|
70479
|
-
};
|
|
70480
|
-
unmanaged_acs_users: {
|
|
70481
|
-
items: {
|
|
70482
|
-
$ref: string;
|
|
70483
|
-
};
|
|
70484
|
-
type: string;
|
|
70485
|
-
};
|
|
70486
|
-
unmanaged_devices: {
|
|
70487
|
-
items: {
|
|
70488
|
-
$ref: string;
|
|
70489
|
-
};
|
|
70490
|
-
type: string;
|
|
70491
|
-
};
|
|
70492
|
-
user_identities: {
|
|
71898
|
+
warnings: {
|
|
71899
|
+
description: string;
|
|
70493
71900
|
items: {
|
|
70494
|
-
|
|
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
|
+
}[];
|
|
70495
71926
|
};
|
|
70496
71927
|
type: string;
|
|
70497
71928
|
};
|
|
70498
|
-
|
|
70499
|
-
|
|
70500
|
-
|
|
70501
|
-
};
|
|
71929
|
+
workspace_id: {
|
|
71930
|
+
description: string;
|
|
71931
|
+
format: string;
|
|
70502
71932
|
type: string;
|
|
70503
71933
|
};
|
|
70504
71934
|
};
|
|
70505
71935
|
required: string[];
|
|
70506
71936
|
type: string;
|
|
71937
|
+
'x-draft': string;
|
|
71938
|
+
'x-route-path': string;
|
|
70507
71939
|
};
|
|
70508
71940
|
ok: {
|
|
70509
71941
|
type: string;
|
|
@@ -70538,7 +71970,6 @@ declare const _default: {
|
|
|
70538
71970
|
})[];
|
|
70539
71971
|
summary: string;
|
|
70540
71972
|
tags: never[];
|
|
70541
|
-
'x-batch-type': string;
|
|
70542
71973
|
'x-draft': string;
|
|
70543
71974
|
'x-fern-sdk-group-name': string[];
|
|
70544
71975
|
'x-fern-sdk-method-name': string;
|
|
@@ -70554,26 +71985,9 @@ declare const _default: {
|
|
|
70554
71985
|
'application/json': {
|
|
70555
71986
|
schema: {
|
|
70556
71987
|
properties: {
|
|
70557
|
-
|
|
71988
|
+
access_method_id: {
|
|
70558
71989
|
description: string;
|
|
70559
|
-
|
|
70560
|
-
format: string;
|
|
70561
|
-
type: string;
|
|
70562
|
-
};
|
|
70563
|
-
type: string;
|
|
70564
|
-
};
|
|
70565
|
-
exclude: {
|
|
70566
|
-
items: {
|
|
70567
|
-
enum: string[];
|
|
70568
|
-
type: string;
|
|
70569
|
-
};
|
|
70570
|
-
type: string;
|
|
70571
|
-
};
|
|
70572
|
-
include: {
|
|
70573
|
-
items: {
|
|
70574
|
-
enum: string[];
|
|
70575
|
-
type: string;
|
|
70576
|
-
};
|
|
71990
|
+
format: string;
|
|
70577
71991
|
type: string;
|
|
70578
71992
|
};
|
|
70579
71993
|
};
|
|
@@ -70589,178 +72003,88 @@ declare const _default: {
|
|
|
70589
72003
|
'application/json': {
|
|
70590
72004
|
schema: {
|
|
70591
72005
|
properties: {
|
|
70592
|
-
|
|
72006
|
+
access_method: {
|
|
70593
72007
|
description: string;
|
|
70594
72008
|
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
|
-
};
|
|
72009
|
+
access_method_id: {
|
|
72010
|
+
description: string;
|
|
72011
|
+
format: string;
|
|
70617
72012
|
type: string;
|
|
70618
72013
|
};
|
|
70619
|
-
|
|
70620
|
-
|
|
70621
|
-
|
|
70622
|
-
};
|
|
72014
|
+
code: {
|
|
72015
|
+
description: string;
|
|
72016
|
+
nullable: boolean;
|
|
70623
72017
|
type: string;
|
|
70624
72018
|
};
|
|
70625
|
-
|
|
70626
|
-
|
|
70627
|
-
|
|
70628
|
-
};
|
|
72019
|
+
created_at: {
|
|
72020
|
+
description: string;
|
|
72021
|
+
format: string;
|
|
70629
72022
|
type: string;
|
|
70630
72023
|
};
|
|
70631
|
-
|
|
70632
|
-
|
|
70633
|
-
$ref: string;
|
|
70634
|
-
};
|
|
72024
|
+
display_name: {
|
|
72025
|
+
description: string;
|
|
70635
72026
|
type: string;
|
|
70636
72027
|
};
|
|
70637
|
-
|
|
70638
|
-
|
|
70639
|
-
$ref: string;
|
|
70640
|
-
};
|
|
72028
|
+
is_encoding_required: {
|
|
72029
|
+
description: string;
|
|
70641
72030
|
type: string;
|
|
70642
72031
|
};
|
|
70643
|
-
|
|
70644
|
-
|
|
70645
|
-
$ref: string;
|
|
70646
|
-
};
|
|
72032
|
+
is_issued: {
|
|
72033
|
+
description: string;
|
|
70647
72034
|
type: string;
|
|
70648
72035
|
};
|
|
70649
|
-
|
|
70650
|
-
|
|
70651
|
-
|
|
70652
|
-
|
|
72036
|
+
issued_at: {
|
|
72037
|
+
description: string;
|
|
72038
|
+
format: string;
|
|
72039
|
+
nullable: boolean;
|
|
70653
72040
|
type: string;
|
|
70654
72041
|
};
|
|
70655
|
-
|
|
72042
|
+
mode: {
|
|
72043
|
+
description: string;
|
|
70656
72044
|
enum: string[];
|
|
70657
72045
|
type: string;
|
|
70658
72046
|
};
|
|
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: {
|
|
70690
|
-
items: {
|
|
70691
|
-
$ref: string;
|
|
70692
|
-
};
|
|
70693
|
-
type: string;
|
|
70694
|
-
};
|
|
70695
|
-
noise_thresholds: {
|
|
70696
|
-
items: {
|
|
70697
|
-
$ref: string;
|
|
70698
|
-
};
|
|
70699
|
-
type: string;
|
|
70700
|
-
};
|
|
70701
|
-
spaces: {
|
|
70702
|
-
items: {
|
|
70703
|
-
$ref: string;
|
|
70704
|
-
};
|
|
70705
|
-
type: string;
|
|
70706
|
-
};
|
|
70707
|
-
thermostat_daily_programs: {
|
|
70708
|
-
items: {
|
|
70709
|
-
$ref: string;
|
|
70710
|
-
};
|
|
70711
|
-
type: string;
|
|
70712
|
-
};
|
|
70713
|
-
thermostat_schedules: {
|
|
70714
|
-
items: {
|
|
70715
|
-
$ref: string;
|
|
70716
|
-
};
|
|
70717
|
-
type: string;
|
|
70718
|
-
};
|
|
70719
|
-
unmanaged_access_codes: {
|
|
70720
|
-
items: {
|
|
70721
|
-
$ref: string;
|
|
70722
|
-
};
|
|
70723
|
-
type: string;
|
|
70724
|
-
};
|
|
70725
|
-
unmanaged_acs_access_groups: {
|
|
70726
|
-
items: {
|
|
70727
|
-
$ref: string;
|
|
70728
|
-
};
|
|
70729
|
-
type: string;
|
|
70730
|
-
};
|
|
70731
|
-
unmanaged_acs_credentials: {
|
|
70732
|
-
items: {
|
|
70733
|
-
$ref: string;
|
|
70734
|
-
};
|
|
70735
|
-
type: string;
|
|
70736
|
-
};
|
|
70737
|
-
unmanaged_acs_users: {
|
|
70738
|
-
items: {
|
|
70739
|
-
$ref: string;
|
|
70740
|
-
};
|
|
70741
|
-
type: string;
|
|
70742
|
-
};
|
|
70743
|
-
unmanaged_devices: {
|
|
70744
|
-
items: {
|
|
70745
|
-
$ref: string;
|
|
70746
|
-
};
|
|
70747
|
-
type: string;
|
|
70748
|
-
};
|
|
70749
|
-
user_identities: {
|
|
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
|
};
|
|
@@ -90926,6 +92409,19 @@ declare const _default: {
|
|
|
90926
92409
|
required: string[];
|
|
90927
92410
|
type: string;
|
|
90928
92411
|
};
|
|
92412
|
+
user_identity_name_updated: {
|
|
92413
|
+
properties: {
|
|
92414
|
+
config: {
|
|
92415
|
+
$ref: string;
|
|
92416
|
+
};
|
|
92417
|
+
rule: {
|
|
92418
|
+
enum: string[];
|
|
92419
|
+
type: string;
|
|
92420
|
+
};
|
|
92421
|
+
};
|
|
92422
|
+
required: string[];
|
|
92423
|
+
type: string;
|
|
92424
|
+
};
|
|
90929
92425
|
};
|
|
90930
92426
|
type: string;
|
|
90931
92427
|
};
|
|
@@ -91046,6 +92542,19 @@ declare const _default: {
|
|
|
91046
92542
|
required: string[];
|
|
91047
92543
|
type: string;
|
|
91048
92544
|
};
|
|
92545
|
+
user_identity_name_updated: {
|
|
92546
|
+
properties: {
|
|
92547
|
+
config: {
|
|
92548
|
+
$ref: string;
|
|
92549
|
+
};
|
|
92550
|
+
rule: {
|
|
92551
|
+
enum: string[];
|
|
92552
|
+
type: string;
|
|
92553
|
+
};
|
|
92554
|
+
};
|
|
92555
|
+
required: string[];
|
|
92556
|
+
type: string;
|
|
92557
|
+
};
|
|
91049
92558
|
};
|
|
91050
92559
|
type: string;
|
|
91051
92560
|
};
|
|
@@ -91171,6 +92680,20 @@ declare const _default: {
|
|
|
91171
92680
|
required: string[];
|
|
91172
92681
|
type: string;
|
|
91173
92682
|
};
|
|
92683
|
+
user_identity_name_updated: {
|
|
92684
|
+
properties: {
|
|
92685
|
+
config: {
|
|
92686
|
+
properties: {};
|
|
92687
|
+
type: string;
|
|
92688
|
+
};
|
|
92689
|
+
rule: {
|
|
92690
|
+
enum: string[];
|
|
92691
|
+
type: string;
|
|
92692
|
+
};
|
|
92693
|
+
};
|
|
92694
|
+
required: string[];
|
|
92695
|
+
type: string;
|
|
92696
|
+
};
|
|
91174
92697
|
};
|
|
91175
92698
|
type: string;
|
|
91176
92699
|
};
|
|
@@ -91306,6 +92829,20 @@ declare const _default: {
|
|
|
91306
92829
|
required: string[];
|
|
91307
92830
|
type: string;
|
|
91308
92831
|
};
|
|
92832
|
+
user_identity_name_updated: {
|
|
92833
|
+
properties: {
|
|
92834
|
+
config: {
|
|
92835
|
+
properties: {};
|
|
92836
|
+
type: string;
|
|
92837
|
+
};
|
|
92838
|
+
rule: {
|
|
92839
|
+
enum: string[];
|
|
92840
|
+
type: string;
|
|
92841
|
+
};
|
|
92842
|
+
};
|
|
92843
|
+
required: string[];
|
|
92844
|
+
type: string;
|
|
92845
|
+
};
|
|
91309
92846
|
};
|
|
91310
92847
|
type: string;
|
|
91311
92848
|
};
|
|
@@ -100681,15 +102218,305 @@ declare const _default: {
|
|
|
100681
102218
|
tags: string[];
|
|
100682
102219
|
'x-fern-sdk-group-name': string[];
|
|
100683
102220
|
'x-fern-sdk-method-name': string;
|
|
100684
|
-
'x-fern-sdk-return-value': string;
|
|
100685
|
-
'x-response-key': string;
|
|
102221
|
+
'x-fern-sdk-return-value': string;
|
|
102222
|
+
'x-response-key': string;
|
|
102223
|
+
'x-title': string;
|
|
102224
|
+
};
|
|
102225
|
+
};
|
|
102226
|
+
'/user_identities/get': {
|
|
102227
|
+
get: {
|
|
102228
|
+
description: string;
|
|
102229
|
+
operationId: string;
|
|
102230
|
+
responses: {
|
|
102231
|
+
200: {
|
|
102232
|
+
content: {
|
|
102233
|
+
'application/json': {
|
|
102234
|
+
schema: {
|
|
102235
|
+
properties: {
|
|
102236
|
+
ok: {
|
|
102237
|
+
type: string;
|
|
102238
|
+
};
|
|
102239
|
+
user_identity: {
|
|
102240
|
+
$ref: string;
|
|
102241
|
+
};
|
|
102242
|
+
};
|
|
102243
|
+
required: string[];
|
|
102244
|
+
type: string;
|
|
102245
|
+
};
|
|
102246
|
+
};
|
|
102247
|
+
};
|
|
102248
|
+
description: string;
|
|
102249
|
+
};
|
|
102250
|
+
400: {
|
|
102251
|
+
description: string;
|
|
102252
|
+
};
|
|
102253
|
+
401: {
|
|
102254
|
+
description: string;
|
|
102255
|
+
};
|
|
102256
|
+
};
|
|
102257
|
+
security: ({
|
|
102258
|
+
api_key: never[];
|
|
102259
|
+
pat_with_workspace?: never;
|
|
102260
|
+
console_session_with_workspace?: never;
|
|
102261
|
+
} | {
|
|
102262
|
+
pat_with_workspace: never[];
|
|
102263
|
+
api_key?: never;
|
|
102264
|
+
console_session_with_workspace?: never;
|
|
102265
|
+
} | {
|
|
102266
|
+
console_session_with_workspace: never[];
|
|
102267
|
+
api_key?: never;
|
|
102268
|
+
pat_with_workspace?: never;
|
|
102269
|
+
})[];
|
|
102270
|
+
summary: string;
|
|
102271
|
+
tags: string[];
|
|
102272
|
+
'x-fern-sdk-group-name': string[];
|
|
102273
|
+
'x-fern-sdk-method-name': string;
|
|
102274
|
+
'x-fern-sdk-return-value': string;
|
|
102275
|
+
'x-response-key': string;
|
|
102276
|
+
'x-title': string;
|
|
102277
|
+
};
|
|
102278
|
+
post: {
|
|
102279
|
+
description: string;
|
|
102280
|
+
operationId: string;
|
|
102281
|
+
requestBody: {
|
|
102282
|
+
content: {
|
|
102283
|
+
'application/json': {
|
|
102284
|
+
schema: {
|
|
102285
|
+
oneOf: ({
|
|
102286
|
+
properties: {
|
|
102287
|
+
user_identity_id: {
|
|
102288
|
+
description: string;
|
|
102289
|
+
format: string;
|
|
102290
|
+
type: string;
|
|
102291
|
+
};
|
|
102292
|
+
user_identity_key?: never;
|
|
102293
|
+
};
|
|
102294
|
+
required: string[];
|
|
102295
|
+
type: string;
|
|
102296
|
+
} | {
|
|
102297
|
+
properties: {
|
|
102298
|
+
user_identity_key: {
|
|
102299
|
+
type: string;
|
|
102300
|
+
};
|
|
102301
|
+
user_identity_id?: never;
|
|
102302
|
+
};
|
|
102303
|
+
required: string[];
|
|
102304
|
+
type: string;
|
|
102305
|
+
})[];
|
|
102306
|
+
};
|
|
102307
|
+
};
|
|
102308
|
+
};
|
|
102309
|
+
};
|
|
102310
|
+
responses: {
|
|
102311
|
+
200: {
|
|
102312
|
+
content: {
|
|
102313
|
+
'application/json': {
|
|
102314
|
+
schema: {
|
|
102315
|
+
properties: {
|
|
102316
|
+
ok: {
|
|
102317
|
+
type: string;
|
|
102318
|
+
};
|
|
102319
|
+
user_identity: {
|
|
102320
|
+
$ref: string;
|
|
102321
|
+
};
|
|
102322
|
+
};
|
|
102323
|
+
required: string[];
|
|
102324
|
+
type: string;
|
|
102325
|
+
};
|
|
102326
|
+
};
|
|
102327
|
+
};
|
|
102328
|
+
description: string;
|
|
102329
|
+
};
|
|
102330
|
+
400: {
|
|
102331
|
+
description: string;
|
|
102332
|
+
};
|
|
102333
|
+
401: {
|
|
102334
|
+
description: string;
|
|
102335
|
+
};
|
|
102336
|
+
};
|
|
102337
|
+
security: ({
|
|
102338
|
+
api_key: never[];
|
|
102339
|
+
pat_with_workspace?: never;
|
|
102340
|
+
console_session_with_workspace?: never;
|
|
102341
|
+
} | {
|
|
102342
|
+
pat_with_workspace: never[];
|
|
102343
|
+
api_key?: never;
|
|
102344
|
+
console_session_with_workspace?: never;
|
|
102345
|
+
} | {
|
|
102346
|
+
console_session_with_workspace: never[];
|
|
102347
|
+
api_key?: never;
|
|
102348
|
+
pat_with_workspace?: never;
|
|
102349
|
+
})[];
|
|
102350
|
+
summary: string;
|
|
102351
|
+
tags: string[];
|
|
102352
|
+
'x-fern-sdk-group-name': string[];
|
|
102353
|
+
'x-fern-sdk-method-name': string;
|
|
102354
|
+
'x-fern-sdk-return-value': string;
|
|
102355
|
+
'x-response-key': string;
|
|
102356
|
+
'x-title': string;
|
|
102357
|
+
};
|
|
102358
|
+
};
|
|
102359
|
+
'/user_identities/grant_access_to_device': {
|
|
102360
|
+
post: {
|
|
102361
|
+
description: string;
|
|
102362
|
+
operationId: string;
|
|
102363
|
+
requestBody: {
|
|
102364
|
+
content: {
|
|
102365
|
+
'application/json': {
|
|
102366
|
+
schema: {
|
|
102367
|
+
properties: {
|
|
102368
|
+
device_id: {
|
|
102369
|
+
description: string;
|
|
102370
|
+
format: string;
|
|
102371
|
+
type: string;
|
|
102372
|
+
};
|
|
102373
|
+
user_identity_id: {
|
|
102374
|
+
description: string;
|
|
102375
|
+
format: string;
|
|
102376
|
+
type: string;
|
|
102377
|
+
};
|
|
102378
|
+
};
|
|
102379
|
+
required: string[];
|
|
102380
|
+
type: string;
|
|
102381
|
+
};
|
|
102382
|
+
};
|
|
102383
|
+
};
|
|
102384
|
+
};
|
|
102385
|
+
responses: {
|
|
102386
|
+
200: {
|
|
102387
|
+
content: {
|
|
102388
|
+
'application/json': {
|
|
102389
|
+
schema: {
|
|
102390
|
+
properties: {
|
|
102391
|
+
ok: {
|
|
102392
|
+
type: string;
|
|
102393
|
+
};
|
|
102394
|
+
};
|
|
102395
|
+
required: string[];
|
|
102396
|
+
type: string;
|
|
102397
|
+
};
|
|
102398
|
+
};
|
|
102399
|
+
};
|
|
102400
|
+
description: string;
|
|
102401
|
+
};
|
|
102402
|
+
400: {
|
|
102403
|
+
description: string;
|
|
102404
|
+
};
|
|
102405
|
+
401: {
|
|
102406
|
+
description: string;
|
|
102407
|
+
};
|
|
102408
|
+
};
|
|
102409
|
+
security: ({
|
|
102410
|
+
api_key: never[];
|
|
102411
|
+
pat_with_workspace?: never;
|
|
102412
|
+
console_session_with_workspace?: never;
|
|
102413
|
+
} | {
|
|
102414
|
+
pat_with_workspace: never[];
|
|
102415
|
+
api_key?: never;
|
|
102416
|
+
console_session_with_workspace?: never;
|
|
102417
|
+
} | {
|
|
102418
|
+
console_session_with_workspace: never[];
|
|
102419
|
+
api_key?: never;
|
|
102420
|
+
pat_with_workspace?: never;
|
|
102421
|
+
})[];
|
|
102422
|
+
summary: string;
|
|
102423
|
+
tags: string[];
|
|
102424
|
+
'x-fern-sdk-group-name': string[];
|
|
102425
|
+
'x-fern-sdk-method-name': string;
|
|
102426
|
+
'x-response-key': null;
|
|
102427
|
+
'x-title': string;
|
|
102428
|
+
};
|
|
102429
|
+
put: {
|
|
102430
|
+
description: string;
|
|
102431
|
+
operationId: string;
|
|
102432
|
+
requestBody: {
|
|
102433
|
+
content: {
|
|
102434
|
+
'application/json': {
|
|
102435
|
+
schema: {
|
|
102436
|
+
properties: {
|
|
102437
|
+
device_id: {
|
|
102438
|
+
description: string;
|
|
102439
|
+
format: string;
|
|
102440
|
+
type: string;
|
|
102441
|
+
};
|
|
102442
|
+
user_identity_id: {
|
|
102443
|
+
description: string;
|
|
102444
|
+
format: string;
|
|
102445
|
+
type: string;
|
|
102446
|
+
};
|
|
102447
|
+
};
|
|
102448
|
+
required: string[];
|
|
102449
|
+
type: string;
|
|
102450
|
+
};
|
|
102451
|
+
};
|
|
102452
|
+
};
|
|
102453
|
+
};
|
|
102454
|
+
responses: {
|
|
102455
|
+
200: {
|
|
102456
|
+
content: {
|
|
102457
|
+
'application/json': {
|
|
102458
|
+
schema: {
|
|
102459
|
+
properties: {
|
|
102460
|
+
ok: {
|
|
102461
|
+
type: string;
|
|
102462
|
+
};
|
|
102463
|
+
};
|
|
102464
|
+
required: string[];
|
|
102465
|
+
type: string;
|
|
102466
|
+
};
|
|
102467
|
+
};
|
|
102468
|
+
};
|
|
102469
|
+
description: string;
|
|
102470
|
+
};
|
|
102471
|
+
400: {
|
|
102472
|
+
description: string;
|
|
102473
|
+
};
|
|
102474
|
+
401: {
|
|
102475
|
+
description: string;
|
|
102476
|
+
};
|
|
102477
|
+
};
|
|
102478
|
+
security: ({
|
|
102479
|
+
api_key: never[];
|
|
102480
|
+
pat_with_workspace?: never;
|
|
102481
|
+
console_session_with_workspace?: never;
|
|
102482
|
+
} | {
|
|
102483
|
+
pat_with_workspace: never[];
|
|
102484
|
+
api_key?: never;
|
|
102485
|
+
console_session_with_workspace?: never;
|
|
102486
|
+
} | {
|
|
102487
|
+
console_session_with_workspace: never[];
|
|
102488
|
+
api_key?: never;
|
|
102489
|
+
pat_with_workspace?: never;
|
|
102490
|
+
})[];
|
|
102491
|
+
summary: string;
|
|
102492
|
+
tags: string[];
|
|
102493
|
+
'x-fern-sdk-group-name': string[];
|
|
102494
|
+
'x-fern-sdk-method-name': string;
|
|
102495
|
+
'x-response-key': null;
|
|
100686
102496
|
'x-title': string;
|
|
100687
102497
|
};
|
|
100688
102498
|
};
|
|
100689
|
-
'/user_identities/
|
|
102499
|
+
'/user_identities/list': {
|
|
100690
102500
|
get: {
|
|
100691
102501
|
description: string;
|
|
100692
102502
|
operationId: string;
|
|
102503
|
+
parameters: ({
|
|
102504
|
+
in: string;
|
|
102505
|
+
name: string;
|
|
102506
|
+
schema: {
|
|
102507
|
+
description: string;
|
|
102508
|
+
type: string;
|
|
102509
|
+
format?: never;
|
|
102510
|
+
};
|
|
102511
|
+
} | {
|
|
102512
|
+
in: string;
|
|
102513
|
+
name: string;
|
|
102514
|
+
schema: {
|
|
102515
|
+
description: string;
|
|
102516
|
+
format: string;
|
|
102517
|
+
type: string;
|
|
102518
|
+
};
|
|
102519
|
+
})[];
|
|
100693
102520
|
responses: {
|
|
100694
102521
|
200: {
|
|
100695
102522
|
content: {
|
|
@@ -100699,8 +102526,11 @@ declare const _default: {
|
|
|
100699
102526
|
ok: {
|
|
100700
102527
|
type: string;
|
|
100701
102528
|
};
|
|
100702
|
-
|
|
100703
|
-
|
|
102529
|
+
user_identities: {
|
|
102530
|
+
items: {
|
|
102531
|
+
$ref: string;
|
|
102532
|
+
};
|
|
102533
|
+
type: string;
|
|
100704
102534
|
};
|
|
100705
102535
|
};
|
|
100706
102536
|
required: string[];
|
|
@@ -100719,15 +102549,23 @@ declare const _default: {
|
|
|
100719
102549
|
};
|
|
100720
102550
|
security: ({
|
|
100721
102551
|
api_key: never[];
|
|
102552
|
+
client_session?: never;
|
|
102553
|
+
pat_with_workspace?: never;
|
|
102554
|
+
console_session_with_workspace?: never;
|
|
102555
|
+
} | {
|
|
102556
|
+
client_session: never[];
|
|
102557
|
+
api_key?: never;
|
|
100722
102558
|
pat_with_workspace?: never;
|
|
100723
102559
|
console_session_with_workspace?: never;
|
|
100724
102560
|
} | {
|
|
100725
102561
|
pat_with_workspace: never[];
|
|
100726
102562
|
api_key?: never;
|
|
102563
|
+
client_session?: never;
|
|
100727
102564
|
console_session_with_workspace?: never;
|
|
100728
102565
|
} | {
|
|
100729
102566
|
console_session_with_workspace: never[];
|
|
100730
102567
|
api_key?: never;
|
|
102568
|
+
client_session?: never;
|
|
100731
102569
|
pat_with_workspace?: never;
|
|
100732
102570
|
})[];
|
|
100733
102571
|
summary: string;
|
|
@@ -100745,27 +102583,18 @@ declare const _default: {
|
|
|
100745
102583
|
content: {
|
|
100746
102584
|
'application/json': {
|
|
100747
102585
|
schema: {
|
|
100748
|
-
|
|
100749
|
-
|
|
100750
|
-
|
|
100751
|
-
|
|
100752
|
-
|
|
100753
|
-
type: string;
|
|
100754
|
-
};
|
|
100755
|
-
user_identity_key?: never;
|
|
102586
|
+
properties: {
|
|
102587
|
+
credential_manager_acs_system_id: {
|
|
102588
|
+
description: string;
|
|
102589
|
+
format: string;
|
|
102590
|
+
type: string;
|
|
100756
102591
|
};
|
|
100757
|
-
|
|
100758
|
-
|
|
100759
|
-
|
|
100760
|
-
properties: {
|
|
100761
|
-
user_identity_key: {
|
|
100762
|
-
type: string;
|
|
100763
|
-
};
|
|
100764
|
-
user_identity_id?: never;
|
|
102592
|
+
search: {
|
|
102593
|
+
description: string;
|
|
102594
|
+
type: string;
|
|
100765
102595
|
};
|
|
100766
|
-
|
|
100767
|
-
|
|
100768
|
-
})[];
|
|
102596
|
+
};
|
|
102597
|
+
type: string;
|
|
100769
102598
|
};
|
|
100770
102599
|
};
|
|
100771
102600
|
};
|
|
@@ -100779,8 +102608,11 @@ declare const _default: {
|
|
|
100779
102608
|
ok: {
|
|
100780
102609
|
type: string;
|
|
100781
102610
|
};
|
|
100782
|
-
|
|
100783
|
-
|
|
102611
|
+
user_identities: {
|
|
102612
|
+
items: {
|
|
102613
|
+
$ref: string;
|
|
102614
|
+
};
|
|
102615
|
+
type: string;
|
|
100784
102616
|
};
|
|
100785
102617
|
};
|
|
100786
102618
|
required: string[];
|
|
@@ -100799,15 +102631,23 @@ declare const _default: {
|
|
|
100799
102631
|
};
|
|
100800
102632
|
security: ({
|
|
100801
102633
|
api_key: never[];
|
|
102634
|
+
client_session?: never;
|
|
102635
|
+
pat_with_workspace?: never;
|
|
102636
|
+
console_session_with_workspace?: never;
|
|
102637
|
+
} | {
|
|
102638
|
+
client_session: never[];
|
|
102639
|
+
api_key?: never;
|
|
100802
102640
|
pat_with_workspace?: never;
|
|
100803
102641
|
console_session_with_workspace?: never;
|
|
100804
102642
|
} | {
|
|
100805
102643
|
pat_with_workspace: never[];
|
|
100806
102644
|
api_key?: never;
|
|
102645
|
+
client_session?: never;
|
|
100807
102646
|
console_session_with_workspace?: never;
|
|
100808
102647
|
} | {
|
|
100809
102648
|
console_session_with_workspace: never[];
|
|
100810
102649
|
api_key?: never;
|
|
102650
|
+
client_session?: never;
|
|
100811
102651
|
pat_with_workspace?: never;
|
|
100812
102652
|
})[];
|
|
100813
102653
|
summary: string;
|
|
@@ -100819,38 +102659,40 @@ declare const _default: {
|
|
|
100819
102659
|
'x-title': string;
|
|
100820
102660
|
};
|
|
100821
102661
|
};
|
|
100822
|
-
'/user_identities/
|
|
100823
|
-
|
|
102662
|
+
'/user_identities/list_accessible_devices': {
|
|
102663
|
+
get: {
|
|
100824
102664
|
description: string;
|
|
100825
102665
|
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
|
-
};
|
|
102666
|
+
parameters: {
|
|
102667
|
+
in: string;
|
|
102668
|
+
name: string;
|
|
102669
|
+
required: boolean;
|
|
102670
|
+
schema: {
|
|
102671
|
+
description: string;
|
|
102672
|
+
format: string;
|
|
102673
|
+
type: string;
|
|
100846
102674
|
};
|
|
100847
|
-
};
|
|
102675
|
+
}[];
|
|
100848
102676
|
responses: {
|
|
100849
102677
|
200: {
|
|
100850
102678
|
content: {
|
|
100851
102679
|
'application/json': {
|
|
100852
102680
|
schema: {
|
|
100853
102681
|
properties: {
|
|
102682
|
+
accessible_devices: {
|
|
102683
|
+
deprecated: boolean;
|
|
102684
|
+
items: {
|
|
102685
|
+
$ref: string;
|
|
102686
|
+
};
|
|
102687
|
+
type: string;
|
|
102688
|
+
'x-deprecated': string;
|
|
102689
|
+
};
|
|
102690
|
+
devices: {
|
|
102691
|
+
items: {
|
|
102692
|
+
$ref: string;
|
|
102693
|
+
};
|
|
102694
|
+
type: string;
|
|
102695
|
+
};
|
|
100854
102696
|
ok: {
|
|
100855
102697
|
type: string;
|
|
100856
102698
|
};
|
|
@@ -100886,10 +102728,11 @@ declare const _default: {
|
|
|
100886
102728
|
tags: string[];
|
|
100887
102729
|
'x-fern-sdk-group-name': string[];
|
|
100888
102730
|
'x-fern-sdk-method-name': string;
|
|
100889
|
-
'x-
|
|
102731
|
+
'x-fern-sdk-return-value': string;
|
|
102732
|
+
'x-response-key': string;
|
|
100890
102733
|
'x-title': string;
|
|
100891
102734
|
};
|
|
100892
|
-
|
|
102735
|
+
post: {
|
|
100893
102736
|
description: string;
|
|
100894
102737
|
operationId: string;
|
|
100895
102738
|
requestBody: {
|
|
@@ -100897,11 +102740,6 @@ declare const _default: {
|
|
|
100897
102740
|
'application/json': {
|
|
100898
102741
|
schema: {
|
|
100899
102742
|
properties: {
|
|
100900
|
-
device_id: {
|
|
100901
|
-
description: string;
|
|
100902
|
-
format: string;
|
|
100903
|
-
type: string;
|
|
100904
|
-
};
|
|
100905
102743
|
user_identity_id: {
|
|
100906
102744
|
description: string;
|
|
100907
102745
|
format: string;
|
|
@@ -100920,6 +102758,20 @@ declare const _default: {
|
|
|
100920
102758
|
'application/json': {
|
|
100921
102759
|
schema: {
|
|
100922
102760
|
properties: {
|
|
102761
|
+
accessible_devices: {
|
|
102762
|
+
deprecated: boolean;
|
|
102763
|
+
items: {
|
|
102764
|
+
$ref: string;
|
|
102765
|
+
};
|
|
102766
|
+
type: string;
|
|
102767
|
+
'x-deprecated': string;
|
|
102768
|
+
};
|
|
102769
|
+
devices: {
|
|
102770
|
+
items: {
|
|
102771
|
+
$ref: string;
|
|
102772
|
+
};
|
|
102773
|
+
type: string;
|
|
102774
|
+
};
|
|
100923
102775
|
ok: {
|
|
100924
102776
|
type: string;
|
|
100925
102777
|
};
|
|
@@ -100955,46 +102807,40 @@ declare const _default: {
|
|
|
100955
102807
|
tags: string[];
|
|
100956
102808
|
'x-fern-sdk-group-name': string[];
|
|
100957
102809
|
'x-fern-sdk-method-name': string;
|
|
100958
|
-
'x-
|
|
102810
|
+
'x-fern-sdk-return-value': string;
|
|
102811
|
+
'x-response-key': string;
|
|
100959
102812
|
'x-title': string;
|
|
100960
102813
|
};
|
|
100961
102814
|
};
|
|
100962
|
-
'/user_identities/
|
|
102815
|
+
'/user_identities/list_acs_systems': {
|
|
100963
102816
|
get: {
|
|
100964
102817
|
description: string;
|
|
100965
102818
|
operationId: string;
|
|
100966
|
-
parameters:
|
|
100967
|
-
in: string;
|
|
100968
|
-
name: string;
|
|
100969
|
-
schema: {
|
|
100970
|
-
description: string;
|
|
100971
|
-
type: string;
|
|
100972
|
-
format?: never;
|
|
100973
|
-
};
|
|
100974
|
-
} | {
|
|
102819
|
+
parameters: {
|
|
100975
102820
|
in: string;
|
|
100976
102821
|
name: string;
|
|
102822
|
+
required: boolean;
|
|
100977
102823
|
schema: {
|
|
100978
102824
|
description: string;
|
|
100979
102825
|
format: string;
|
|
100980
102826
|
type: string;
|
|
100981
102827
|
};
|
|
100982
|
-
}
|
|
102828
|
+
}[];
|
|
100983
102829
|
responses: {
|
|
100984
102830
|
200: {
|
|
100985
102831
|
content: {
|
|
100986
102832
|
'application/json': {
|
|
100987
102833
|
schema: {
|
|
100988
102834
|
properties: {
|
|
100989
|
-
|
|
100990
|
-
type: string;
|
|
100991
|
-
};
|
|
100992
|
-
user_identities: {
|
|
102835
|
+
acs_systems: {
|
|
100993
102836
|
items: {
|
|
100994
102837
|
$ref: string;
|
|
100995
102838
|
};
|
|
100996
102839
|
type: string;
|
|
100997
102840
|
};
|
|
102841
|
+
ok: {
|
|
102842
|
+
type: string;
|
|
102843
|
+
};
|
|
100998
102844
|
};
|
|
100999
102845
|
required: string[];
|
|
101000
102846
|
type: string;
|
|
@@ -101011,25 +102857,25 @@ declare const _default: {
|
|
|
101011
102857
|
};
|
|
101012
102858
|
};
|
|
101013
102859
|
security: ({
|
|
101014
|
-
api_key: never[];
|
|
101015
|
-
client_session?: never;
|
|
101016
|
-
pat_with_workspace?: never;
|
|
101017
|
-
console_session_with_workspace?: never;
|
|
101018
|
-
} | {
|
|
101019
102860
|
client_session: never[];
|
|
101020
|
-
api_key?: never;
|
|
101021
102861
|
pat_with_workspace?: never;
|
|
101022
102862
|
console_session_with_workspace?: never;
|
|
102863
|
+
api_key?: never;
|
|
101023
102864
|
} | {
|
|
101024
102865
|
pat_with_workspace: never[];
|
|
101025
|
-
api_key?: never;
|
|
101026
102866
|
client_session?: never;
|
|
101027
102867
|
console_session_with_workspace?: never;
|
|
102868
|
+
api_key?: never;
|
|
101028
102869
|
} | {
|
|
101029
102870
|
console_session_with_workspace: never[];
|
|
102871
|
+
client_session?: never;
|
|
102872
|
+
pat_with_workspace?: never;
|
|
101030
102873
|
api_key?: never;
|
|
102874
|
+
} | {
|
|
102875
|
+
api_key: never[];
|
|
101031
102876
|
client_session?: never;
|
|
101032
102877
|
pat_with_workspace?: never;
|
|
102878
|
+
console_session_with_workspace?: never;
|
|
101033
102879
|
})[];
|
|
101034
102880
|
summary: string;
|
|
101035
102881
|
tags: string[];
|
|
@@ -101047,16 +102893,13 @@ declare const _default: {
|
|
|
101047
102893
|
'application/json': {
|
|
101048
102894
|
schema: {
|
|
101049
102895
|
properties: {
|
|
101050
|
-
|
|
102896
|
+
user_identity_id: {
|
|
101051
102897
|
description: string;
|
|
101052
102898
|
format: string;
|
|
101053
102899
|
type: string;
|
|
101054
102900
|
};
|
|
101055
|
-
search: {
|
|
101056
|
-
description: string;
|
|
101057
|
-
type: string;
|
|
101058
|
-
};
|
|
101059
102901
|
};
|
|
102902
|
+
required: string[];
|
|
101060
102903
|
type: string;
|
|
101061
102904
|
};
|
|
101062
102905
|
};
|
|
@@ -101068,15 +102911,15 @@ declare const _default: {
|
|
|
101068
102911
|
'application/json': {
|
|
101069
102912
|
schema: {
|
|
101070
102913
|
properties: {
|
|
101071
|
-
|
|
101072
|
-
type: string;
|
|
101073
|
-
};
|
|
101074
|
-
user_identities: {
|
|
102914
|
+
acs_systems: {
|
|
101075
102915
|
items: {
|
|
101076
102916
|
$ref: string;
|
|
101077
102917
|
};
|
|
101078
102918
|
type: string;
|
|
101079
102919
|
};
|
|
102920
|
+
ok: {
|
|
102921
|
+
type: string;
|
|
102922
|
+
};
|
|
101080
102923
|
};
|
|
101081
102924
|
required: string[];
|
|
101082
102925
|
type: string;
|
|
@@ -101093,25 +102936,25 @@ declare const _default: {
|
|
|
101093
102936
|
};
|
|
101094
102937
|
};
|
|
101095
102938
|
security: ({
|
|
101096
|
-
api_key: never[];
|
|
101097
|
-
client_session?: never;
|
|
101098
|
-
pat_with_workspace?: never;
|
|
101099
|
-
console_session_with_workspace?: never;
|
|
101100
|
-
} | {
|
|
101101
102939
|
client_session: never[];
|
|
101102
|
-
api_key?: never;
|
|
101103
102940
|
pat_with_workspace?: never;
|
|
101104
102941
|
console_session_with_workspace?: never;
|
|
102942
|
+
api_key?: never;
|
|
101105
102943
|
} | {
|
|
101106
102944
|
pat_with_workspace: never[];
|
|
101107
|
-
api_key?: never;
|
|
101108
102945
|
client_session?: never;
|
|
101109
102946
|
console_session_with_workspace?: never;
|
|
102947
|
+
api_key?: never;
|
|
101110
102948
|
} | {
|
|
101111
102949
|
console_session_with_workspace: never[];
|
|
102950
|
+
client_session?: never;
|
|
102951
|
+
pat_with_workspace?: never;
|
|
101112
102952
|
api_key?: never;
|
|
102953
|
+
} | {
|
|
102954
|
+
api_key: never[];
|
|
101113
102955
|
client_session?: never;
|
|
101114
102956
|
pat_with_workspace?: never;
|
|
102957
|
+
console_session_with_workspace?: never;
|
|
101115
102958
|
})[];
|
|
101116
102959
|
summary: string;
|
|
101117
102960
|
tags: string[];
|
|
@@ -101122,7 +102965,7 @@ declare const _default: {
|
|
|
101122
102965
|
'x-title': string;
|
|
101123
102966
|
};
|
|
101124
102967
|
};
|
|
101125
|
-
'/user_identities/
|
|
102968
|
+
'/user_identities/list_acs_users': {
|
|
101126
102969
|
get: {
|
|
101127
102970
|
description: string;
|
|
101128
102971
|
operationId: string;
|
|
@@ -101142,15 +102985,7 @@ declare const _default: {
|
|
|
101142
102985
|
'application/json': {
|
|
101143
102986
|
schema: {
|
|
101144
102987
|
properties: {
|
|
101145
|
-
|
|
101146
|
-
deprecated: boolean;
|
|
101147
|
-
items: {
|
|
101148
|
-
$ref: string;
|
|
101149
|
-
};
|
|
101150
|
-
type: string;
|
|
101151
|
-
'x-deprecated': string;
|
|
101152
|
-
};
|
|
101153
|
-
devices: {
|
|
102988
|
+
acs_users: {
|
|
101154
102989
|
items: {
|
|
101155
102990
|
$ref: string;
|
|
101156
102991
|
};
|
|
@@ -101221,15 +103056,7 @@ declare const _default: {
|
|
|
101221
103056
|
'application/json': {
|
|
101222
103057
|
schema: {
|
|
101223
103058
|
properties: {
|
|
101224
|
-
|
|
101225
|
-
deprecated: boolean;
|
|
101226
|
-
items: {
|
|
101227
|
-
$ref: string;
|
|
101228
|
-
};
|
|
101229
|
-
type: string;
|
|
101230
|
-
'x-deprecated': string;
|
|
101231
|
-
};
|
|
101232
|
-
devices: {
|
|
103059
|
+
acs_users: {
|
|
101233
103060
|
items: {
|
|
101234
103061
|
$ref: string;
|
|
101235
103062
|
};
|
|
@@ -101275,8 +103102,8 @@ declare const _default: {
|
|
|
101275
103102
|
'x-title': string;
|
|
101276
103103
|
};
|
|
101277
103104
|
};
|
|
101278
|
-
'/user_identities/
|
|
101279
|
-
|
|
103105
|
+
'/user_identities/remove_acs_user': {
|
|
103106
|
+
delete: {
|
|
101280
103107
|
description: string;
|
|
101281
103108
|
operationId: string;
|
|
101282
103109
|
parameters: {
|
|
@@ -101295,12 +103122,6 @@ declare const _default: {
|
|
|
101295
103122
|
'application/json': {
|
|
101296
103123
|
schema: {
|
|
101297
103124
|
properties: {
|
|
101298
|
-
acs_systems: {
|
|
101299
|
-
items: {
|
|
101300
|
-
$ref: string;
|
|
101301
|
-
};
|
|
101302
|
-
type: string;
|
|
101303
|
-
};
|
|
101304
103125
|
ok: {
|
|
101305
103126
|
type: string;
|
|
101306
103127
|
};
|
|
@@ -101320,32 +103141,23 @@ declare const _default: {
|
|
|
101320
103141
|
};
|
|
101321
103142
|
};
|
|
101322
103143
|
security: ({
|
|
101323
|
-
|
|
103144
|
+
api_key: never[];
|
|
101324
103145
|
pat_with_workspace?: never;
|
|
101325
103146
|
console_session_with_workspace?: never;
|
|
101326
|
-
api_key?: never;
|
|
101327
103147
|
} | {
|
|
101328
103148
|
pat_with_workspace: never[];
|
|
101329
|
-
client_session?: never;
|
|
101330
|
-
console_session_with_workspace?: never;
|
|
101331
103149
|
api_key?: never;
|
|
103150
|
+
console_session_with_workspace?: never;
|
|
101332
103151
|
} | {
|
|
101333
103152
|
console_session_with_workspace: never[];
|
|
101334
|
-
client_session?: never;
|
|
101335
|
-
pat_with_workspace?: never;
|
|
101336
103153
|
api_key?: never;
|
|
101337
|
-
} | {
|
|
101338
|
-
api_key: never[];
|
|
101339
|
-
client_session?: never;
|
|
101340
103154
|
pat_with_workspace?: never;
|
|
101341
|
-
console_session_with_workspace?: never;
|
|
101342
103155
|
})[];
|
|
101343
103156
|
summary: string;
|
|
101344
103157
|
tags: string[];
|
|
101345
103158
|
'x-fern-sdk-group-name': string[];
|
|
101346
103159
|
'x-fern-sdk-method-name': string;
|
|
101347
|
-
'x-
|
|
101348
|
-
'x-response-key': string;
|
|
103160
|
+
'x-response-key': null;
|
|
101349
103161
|
'x-title': string;
|
|
101350
103162
|
};
|
|
101351
103163
|
post: {
|
|
@@ -101356,6 +103168,11 @@ declare const _default: {
|
|
|
101356
103168
|
'application/json': {
|
|
101357
103169
|
schema: {
|
|
101358
103170
|
properties: {
|
|
103171
|
+
acs_user_id: {
|
|
103172
|
+
description: string;
|
|
103173
|
+
format: string;
|
|
103174
|
+
type: string;
|
|
103175
|
+
};
|
|
101359
103176
|
user_identity_id: {
|
|
101360
103177
|
description: string;
|
|
101361
103178
|
format: string;
|
|
@@ -101374,12 +103191,6 @@ declare const _default: {
|
|
|
101374
103191
|
'application/json': {
|
|
101375
103192
|
schema: {
|
|
101376
103193
|
properties: {
|
|
101377
|
-
acs_systems: {
|
|
101378
|
-
items: {
|
|
101379
|
-
$ref: string;
|
|
101380
|
-
};
|
|
101381
|
-
type: string;
|
|
101382
|
-
};
|
|
101383
103194
|
ok: {
|
|
101384
103195
|
type: string;
|
|
101385
103196
|
};
|
|
@@ -101399,37 +103210,28 @@ declare const _default: {
|
|
|
101399
103210
|
};
|
|
101400
103211
|
};
|
|
101401
103212
|
security: ({
|
|
101402
|
-
|
|
103213
|
+
api_key: never[];
|
|
101403
103214
|
pat_with_workspace?: never;
|
|
101404
103215
|
console_session_with_workspace?: never;
|
|
101405
|
-
api_key?: never;
|
|
101406
103216
|
} | {
|
|
101407
103217
|
pat_with_workspace: never[];
|
|
101408
|
-
client_session?: never;
|
|
101409
|
-
console_session_with_workspace?: never;
|
|
101410
103218
|
api_key?: never;
|
|
103219
|
+
console_session_with_workspace?: never;
|
|
101411
103220
|
} | {
|
|
101412
103221
|
console_session_with_workspace: never[];
|
|
101413
|
-
client_session?: never;
|
|
101414
|
-
pat_with_workspace?: never;
|
|
101415
103222
|
api_key?: never;
|
|
101416
|
-
} | {
|
|
101417
|
-
api_key: never[];
|
|
101418
|
-
client_session?: never;
|
|
101419
103223
|
pat_with_workspace?: never;
|
|
101420
|
-
console_session_with_workspace?: never;
|
|
101421
103224
|
})[];
|
|
101422
103225
|
summary: string;
|
|
101423
103226
|
tags: string[];
|
|
101424
103227
|
'x-fern-sdk-group-name': string[];
|
|
101425
103228
|
'x-fern-sdk-method-name': string;
|
|
101426
|
-
'x-
|
|
101427
|
-
'x-response-key': string;
|
|
103229
|
+
'x-response-key': null;
|
|
101428
103230
|
'x-title': string;
|
|
101429
103231
|
};
|
|
101430
103232
|
};
|
|
101431
|
-
'/user_identities/
|
|
101432
|
-
|
|
103233
|
+
'/user_identities/revoke_access_to_device': {
|
|
103234
|
+
delete: {
|
|
101433
103235
|
description: string;
|
|
101434
103236
|
operationId: string;
|
|
101435
103237
|
parameters: {
|
|
@@ -101448,12 +103250,6 @@ declare const _default: {
|
|
|
101448
103250
|
'application/json': {
|
|
101449
103251
|
schema: {
|
|
101450
103252
|
properties: {
|
|
101451
|
-
acs_users: {
|
|
101452
|
-
items: {
|
|
101453
|
-
$ref: string;
|
|
101454
|
-
};
|
|
101455
|
-
type: string;
|
|
101456
|
-
};
|
|
101457
103253
|
ok: {
|
|
101458
103254
|
type: string;
|
|
101459
103255
|
};
|
|
@@ -101489,8 +103285,7 @@ declare const _default: {
|
|
|
101489
103285
|
tags: string[];
|
|
101490
103286
|
'x-fern-sdk-group-name': string[];
|
|
101491
103287
|
'x-fern-sdk-method-name': string;
|
|
101492
|
-
'x-
|
|
101493
|
-
'x-response-key': string;
|
|
103288
|
+
'x-response-key': null;
|
|
101494
103289
|
'x-title': string;
|
|
101495
103290
|
};
|
|
101496
103291
|
post: {
|
|
@@ -101501,6 +103296,11 @@ declare const _default: {
|
|
|
101501
103296
|
'application/json': {
|
|
101502
103297
|
schema: {
|
|
101503
103298
|
properties: {
|
|
103299
|
+
device_id: {
|
|
103300
|
+
description: string;
|
|
103301
|
+
format: string;
|
|
103302
|
+
type: string;
|
|
103303
|
+
};
|
|
101504
103304
|
user_identity_id: {
|
|
101505
103305
|
description: string;
|
|
101506
103306
|
format: string;
|
|
@@ -101519,12 +103319,6 @@ declare const _default: {
|
|
|
101519
103319
|
'application/json': {
|
|
101520
103320
|
schema: {
|
|
101521
103321
|
properties: {
|
|
101522
|
-
acs_users: {
|
|
101523
|
-
items: {
|
|
101524
|
-
$ref: string;
|
|
101525
|
-
};
|
|
101526
|
-
type: string;
|
|
101527
|
-
};
|
|
101528
103322
|
ok: {
|
|
101529
103323
|
type: string;
|
|
101530
103324
|
};
|
|
@@ -101560,13 +103354,12 @@ declare const _default: {
|
|
|
101560
103354
|
tags: string[];
|
|
101561
103355
|
'x-fern-sdk-group-name': string[];
|
|
101562
103356
|
'x-fern-sdk-method-name': string;
|
|
101563
|
-
'x-
|
|
101564
|
-
'x-response-key': string;
|
|
103357
|
+
'x-response-key': null;
|
|
101565
103358
|
'x-title': string;
|
|
101566
103359
|
};
|
|
101567
103360
|
};
|
|
101568
|
-
'/user_identities/
|
|
101569
|
-
|
|
103361
|
+
'/user_identities/unmanaged/get': {
|
|
103362
|
+
get: {
|
|
101570
103363
|
description: string;
|
|
101571
103364
|
operationId: string;
|
|
101572
103365
|
parameters: {
|
|
@@ -101588,6 +103381,130 @@ declare const _default: {
|
|
|
101588
103381
|
ok: {
|
|
101589
103382
|
type: string;
|
|
101590
103383
|
};
|
|
103384
|
+
user_identity: {
|
|
103385
|
+
description: string;
|
|
103386
|
+
properties: {
|
|
103387
|
+
acs_user_ids: {
|
|
103388
|
+
description: string;
|
|
103389
|
+
items: {
|
|
103390
|
+
format: string;
|
|
103391
|
+
type: string;
|
|
103392
|
+
};
|
|
103393
|
+
type: string;
|
|
103394
|
+
};
|
|
103395
|
+
created_at: {
|
|
103396
|
+
description: string;
|
|
103397
|
+
format: string;
|
|
103398
|
+
type: string;
|
|
103399
|
+
};
|
|
103400
|
+
display_name: {
|
|
103401
|
+
minLength: number;
|
|
103402
|
+
type: string;
|
|
103403
|
+
};
|
|
103404
|
+
email_address: {
|
|
103405
|
+
description: string;
|
|
103406
|
+
format: string;
|
|
103407
|
+
nullable: boolean;
|
|
103408
|
+
type: string;
|
|
103409
|
+
};
|
|
103410
|
+
errors: {
|
|
103411
|
+
description: string;
|
|
103412
|
+
items: {
|
|
103413
|
+
description: string;
|
|
103414
|
+
discriminator: {
|
|
103415
|
+
propertyName: string;
|
|
103416
|
+
};
|
|
103417
|
+
oneOf: {
|
|
103418
|
+
description: string;
|
|
103419
|
+
properties: {
|
|
103420
|
+
acs_system_id: {
|
|
103421
|
+
description: string;
|
|
103422
|
+
format: string;
|
|
103423
|
+
type: string;
|
|
103424
|
+
};
|
|
103425
|
+
acs_user_id: {
|
|
103426
|
+
description: string;
|
|
103427
|
+
format: string;
|
|
103428
|
+
type: string;
|
|
103429
|
+
};
|
|
103430
|
+
created_at: {
|
|
103431
|
+
description: string;
|
|
103432
|
+
format: string;
|
|
103433
|
+
type: string;
|
|
103434
|
+
};
|
|
103435
|
+
error_code: {
|
|
103436
|
+
description: string;
|
|
103437
|
+
enum: string[];
|
|
103438
|
+
type: string;
|
|
103439
|
+
};
|
|
103440
|
+
message: {
|
|
103441
|
+
description: string;
|
|
103442
|
+
type: string;
|
|
103443
|
+
};
|
|
103444
|
+
};
|
|
103445
|
+
required: string[];
|
|
103446
|
+
type: string;
|
|
103447
|
+
}[];
|
|
103448
|
+
};
|
|
103449
|
+
type: string;
|
|
103450
|
+
};
|
|
103451
|
+
full_name: {
|
|
103452
|
+
minLength: number;
|
|
103453
|
+
nullable: boolean;
|
|
103454
|
+
type: string;
|
|
103455
|
+
};
|
|
103456
|
+
phone_number: {
|
|
103457
|
+
description: string;
|
|
103458
|
+
nullable: boolean;
|
|
103459
|
+
type: string;
|
|
103460
|
+
};
|
|
103461
|
+
user_identity_id: {
|
|
103462
|
+
description: string;
|
|
103463
|
+
format: string;
|
|
103464
|
+
type: string;
|
|
103465
|
+
};
|
|
103466
|
+
warnings: {
|
|
103467
|
+
description: string;
|
|
103468
|
+
items: {
|
|
103469
|
+
description: string;
|
|
103470
|
+
discriminator: {
|
|
103471
|
+
propertyName: string;
|
|
103472
|
+
};
|
|
103473
|
+
oneOf: {
|
|
103474
|
+
description: string;
|
|
103475
|
+
properties: {
|
|
103476
|
+
created_at: {
|
|
103477
|
+
description: string;
|
|
103478
|
+
format: string;
|
|
103479
|
+
type: string;
|
|
103480
|
+
};
|
|
103481
|
+
message: {
|
|
103482
|
+
description: string;
|
|
103483
|
+
type: string;
|
|
103484
|
+
};
|
|
103485
|
+
warning_code: {
|
|
103486
|
+
description: string;
|
|
103487
|
+
enum: string[];
|
|
103488
|
+
type: string;
|
|
103489
|
+
};
|
|
103490
|
+
};
|
|
103491
|
+
required: string[];
|
|
103492
|
+
type: string;
|
|
103493
|
+
}[];
|
|
103494
|
+
};
|
|
103495
|
+
type: string;
|
|
103496
|
+
};
|
|
103497
|
+
workspace_id: {
|
|
103498
|
+
description: string;
|
|
103499
|
+
format: string;
|
|
103500
|
+
type: string;
|
|
103501
|
+
};
|
|
103502
|
+
};
|
|
103503
|
+
required: string[];
|
|
103504
|
+
type: string;
|
|
103505
|
+
'x-draft': string;
|
|
103506
|
+
'x-route-path': string;
|
|
103507
|
+
};
|
|
101591
103508
|
};
|
|
101592
103509
|
required: string[];
|
|
101593
103510
|
type: string;
|
|
@@ -101620,7 +103537,8 @@ declare const _default: {
|
|
|
101620
103537
|
tags: string[];
|
|
101621
103538
|
'x-fern-sdk-group-name': string[];
|
|
101622
103539
|
'x-fern-sdk-method-name': string;
|
|
101623
|
-
'x-
|
|
103540
|
+
'x-fern-sdk-return-value': string;
|
|
103541
|
+
'x-response-key': string;
|
|
101624
103542
|
'x-title': string;
|
|
101625
103543
|
};
|
|
101626
103544
|
post: {
|
|
@@ -101631,11 +103549,6 @@ declare const _default: {
|
|
|
101631
103549
|
'application/json': {
|
|
101632
103550
|
schema: {
|
|
101633
103551
|
properties: {
|
|
101634
|
-
acs_user_id: {
|
|
101635
|
-
description: string;
|
|
101636
|
-
format: string;
|
|
101637
|
-
type: string;
|
|
101638
|
-
};
|
|
101639
103552
|
user_identity_id: {
|
|
101640
103553
|
description: string;
|
|
101641
103554
|
format: string;
|
|
@@ -101657,6 +103570,130 @@ declare const _default: {
|
|
|
101657
103570
|
ok: {
|
|
101658
103571
|
type: string;
|
|
101659
103572
|
};
|
|
103573
|
+
user_identity: {
|
|
103574
|
+
description: string;
|
|
103575
|
+
properties: {
|
|
103576
|
+
acs_user_ids: {
|
|
103577
|
+
description: string;
|
|
103578
|
+
items: {
|
|
103579
|
+
format: string;
|
|
103580
|
+
type: string;
|
|
103581
|
+
};
|
|
103582
|
+
type: string;
|
|
103583
|
+
};
|
|
103584
|
+
created_at: {
|
|
103585
|
+
description: string;
|
|
103586
|
+
format: string;
|
|
103587
|
+
type: string;
|
|
103588
|
+
};
|
|
103589
|
+
display_name: {
|
|
103590
|
+
minLength: number;
|
|
103591
|
+
type: string;
|
|
103592
|
+
};
|
|
103593
|
+
email_address: {
|
|
103594
|
+
description: string;
|
|
103595
|
+
format: string;
|
|
103596
|
+
nullable: boolean;
|
|
103597
|
+
type: string;
|
|
103598
|
+
};
|
|
103599
|
+
errors: {
|
|
103600
|
+
description: string;
|
|
103601
|
+
items: {
|
|
103602
|
+
description: string;
|
|
103603
|
+
discriminator: {
|
|
103604
|
+
propertyName: string;
|
|
103605
|
+
};
|
|
103606
|
+
oneOf: {
|
|
103607
|
+
description: string;
|
|
103608
|
+
properties: {
|
|
103609
|
+
acs_system_id: {
|
|
103610
|
+
description: string;
|
|
103611
|
+
format: string;
|
|
103612
|
+
type: string;
|
|
103613
|
+
};
|
|
103614
|
+
acs_user_id: {
|
|
103615
|
+
description: string;
|
|
103616
|
+
format: string;
|
|
103617
|
+
type: string;
|
|
103618
|
+
};
|
|
103619
|
+
created_at: {
|
|
103620
|
+
description: string;
|
|
103621
|
+
format: string;
|
|
103622
|
+
type: string;
|
|
103623
|
+
};
|
|
103624
|
+
error_code: {
|
|
103625
|
+
description: string;
|
|
103626
|
+
enum: string[];
|
|
103627
|
+
type: string;
|
|
103628
|
+
};
|
|
103629
|
+
message: {
|
|
103630
|
+
description: string;
|
|
103631
|
+
type: string;
|
|
103632
|
+
};
|
|
103633
|
+
};
|
|
103634
|
+
required: string[];
|
|
103635
|
+
type: string;
|
|
103636
|
+
}[];
|
|
103637
|
+
};
|
|
103638
|
+
type: string;
|
|
103639
|
+
};
|
|
103640
|
+
full_name: {
|
|
103641
|
+
minLength: number;
|
|
103642
|
+
nullable: boolean;
|
|
103643
|
+
type: string;
|
|
103644
|
+
};
|
|
103645
|
+
phone_number: {
|
|
103646
|
+
description: string;
|
|
103647
|
+
nullable: boolean;
|
|
103648
|
+
type: string;
|
|
103649
|
+
};
|
|
103650
|
+
user_identity_id: {
|
|
103651
|
+
description: string;
|
|
103652
|
+
format: string;
|
|
103653
|
+
type: string;
|
|
103654
|
+
};
|
|
103655
|
+
warnings: {
|
|
103656
|
+
description: string;
|
|
103657
|
+
items: {
|
|
103658
|
+
description: string;
|
|
103659
|
+
discriminator: {
|
|
103660
|
+
propertyName: string;
|
|
103661
|
+
};
|
|
103662
|
+
oneOf: {
|
|
103663
|
+
description: string;
|
|
103664
|
+
properties: {
|
|
103665
|
+
created_at: {
|
|
103666
|
+
description: string;
|
|
103667
|
+
format: string;
|
|
103668
|
+
type: string;
|
|
103669
|
+
};
|
|
103670
|
+
message: {
|
|
103671
|
+
description: string;
|
|
103672
|
+
type: string;
|
|
103673
|
+
};
|
|
103674
|
+
warning_code: {
|
|
103675
|
+
description: string;
|
|
103676
|
+
enum: string[];
|
|
103677
|
+
type: string;
|
|
103678
|
+
};
|
|
103679
|
+
};
|
|
103680
|
+
required: string[];
|
|
103681
|
+
type: string;
|
|
103682
|
+
}[];
|
|
103683
|
+
};
|
|
103684
|
+
type: string;
|
|
103685
|
+
};
|
|
103686
|
+
workspace_id: {
|
|
103687
|
+
description: string;
|
|
103688
|
+
format: string;
|
|
103689
|
+
type: string;
|
|
103690
|
+
};
|
|
103691
|
+
};
|
|
103692
|
+
required: string[];
|
|
103693
|
+
type: string;
|
|
103694
|
+
'x-draft': string;
|
|
103695
|
+
'x-route-path': string;
|
|
103696
|
+
};
|
|
101660
103697
|
};
|
|
101661
103698
|
required: string[];
|
|
101662
103699
|
type: string;
|
|
@@ -101689,21 +103726,20 @@ declare const _default: {
|
|
|
101689
103726
|
tags: string[];
|
|
101690
103727
|
'x-fern-sdk-group-name': string[];
|
|
101691
103728
|
'x-fern-sdk-method-name': string;
|
|
101692
|
-
'x-
|
|
103729
|
+
'x-fern-sdk-return-value': string;
|
|
103730
|
+
'x-response-key': string;
|
|
101693
103731
|
'x-title': string;
|
|
101694
103732
|
};
|
|
101695
103733
|
};
|
|
101696
|
-
'/user_identities/
|
|
101697
|
-
|
|
103734
|
+
'/user_identities/unmanaged/list': {
|
|
103735
|
+
get: {
|
|
101698
103736
|
description: string;
|
|
101699
103737
|
operationId: string;
|
|
101700
103738
|
parameters: {
|
|
101701
103739
|
in: string;
|
|
101702
103740
|
name: string;
|
|
101703
|
-
required: boolean;
|
|
101704
103741
|
schema: {
|
|
101705
103742
|
description: string;
|
|
101706
|
-
format: string;
|
|
101707
103743
|
type: string;
|
|
101708
103744
|
};
|
|
101709
103745
|
}[];
|
|
@@ -101716,6 +103752,133 @@ declare const _default: {
|
|
|
101716
103752
|
ok: {
|
|
101717
103753
|
type: string;
|
|
101718
103754
|
};
|
|
103755
|
+
user_identities: {
|
|
103756
|
+
items: {
|
|
103757
|
+
description: string;
|
|
103758
|
+
properties: {
|
|
103759
|
+
acs_user_ids: {
|
|
103760
|
+
description: string;
|
|
103761
|
+
items: {
|
|
103762
|
+
format: string;
|
|
103763
|
+
type: string;
|
|
103764
|
+
};
|
|
103765
|
+
type: string;
|
|
103766
|
+
};
|
|
103767
|
+
created_at: {
|
|
103768
|
+
description: string;
|
|
103769
|
+
format: string;
|
|
103770
|
+
type: string;
|
|
103771
|
+
};
|
|
103772
|
+
display_name: {
|
|
103773
|
+
minLength: number;
|
|
103774
|
+
type: string;
|
|
103775
|
+
};
|
|
103776
|
+
email_address: {
|
|
103777
|
+
description: string;
|
|
103778
|
+
format: string;
|
|
103779
|
+
nullable: boolean;
|
|
103780
|
+
type: string;
|
|
103781
|
+
};
|
|
103782
|
+
errors: {
|
|
103783
|
+
description: string;
|
|
103784
|
+
items: {
|
|
103785
|
+
description: string;
|
|
103786
|
+
discriminator: {
|
|
103787
|
+
propertyName: string;
|
|
103788
|
+
};
|
|
103789
|
+
oneOf: {
|
|
103790
|
+
description: string;
|
|
103791
|
+
properties: {
|
|
103792
|
+
acs_system_id: {
|
|
103793
|
+
description: string;
|
|
103794
|
+
format: string;
|
|
103795
|
+
type: string;
|
|
103796
|
+
};
|
|
103797
|
+
acs_user_id: {
|
|
103798
|
+
description: string;
|
|
103799
|
+
format: string;
|
|
103800
|
+
type: string;
|
|
103801
|
+
};
|
|
103802
|
+
created_at: {
|
|
103803
|
+
description: string;
|
|
103804
|
+
format: string;
|
|
103805
|
+
type: string;
|
|
103806
|
+
};
|
|
103807
|
+
error_code: {
|
|
103808
|
+
description: string;
|
|
103809
|
+
enum: string[];
|
|
103810
|
+
type: string;
|
|
103811
|
+
};
|
|
103812
|
+
message: {
|
|
103813
|
+
description: string;
|
|
103814
|
+
type: string;
|
|
103815
|
+
};
|
|
103816
|
+
};
|
|
103817
|
+
required: string[];
|
|
103818
|
+
type: string;
|
|
103819
|
+
}[];
|
|
103820
|
+
};
|
|
103821
|
+
type: string;
|
|
103822
|
+
};
|
|
103823
|
+
full_name: {
|
|
103824
|
+
minLength: number;
|
|
103825
|
+
nullable: boolean;
|
|
103826
|
+
type: string;
|
|
103827
|
+
};
|
|
103828
|
+
phone_number: {
|
|
103829
|
+
description: string;
|
|
103830
|
+
nullable: boolean;
|
|
103831
|
+
type: string;
|
|
103832
|
+
};
|
|
103833
|
+
user_identity_id: {
|
|
103834
|
+
description: string;
|
|
103835
|
+
format: string;
|
|
103836
|
+
type: string;
|
|
103837
|
+
};
|
|
103838
|
+
warnings: {
|
|
103839
|
+
description: string;
|
|
103840
|
+
items: {
|
|
103841
|
+
description: string;
|
|
103842
|
+
discriminator: {
|
|
103843
|
+
propertyName: string;
|
|
103844
|
+
};
|
|
103845
|
+
oneOf: {
|
|
103846
|
+
description: string;
|
|
103847
|
+
properties: {
|
|
103848
|
+
created_at: {
|
|
103849
|
+
description: string;
|
|
103850
|
+
format: string;
|
|
103851
|
+
type: string;
|
|
103852
|
+
};
|
|
103853
|
+
message: {
|
|
103854
|
+
description: string;
|
|
103855
|
+
type: string;
|
|
103856
|
+
};
|
|
103857
|
+
warning_code: {
|
|
103858
|
+
description: string;
|
|
103859
|
+
enum: string[];
|
|
103860
|
+
type: string;
|
|
103861
|
+
};
|
|
103862
|
+
};
|
|
103863
|
+
required: string[];
|
|
103864
|
+
type: string;
|
|
103865
|
+
}[];
|
|
103866
|
+
};
|
|
103867
|
+
type: string;
|
|
103868
|
+
};
|
|
103869
|
+
workspace_id: {
|
|
103870
|
+
description: string;
|
|
103871
|
+
format: string;
|
|
103872
|
+
type: string;
|
|
103873
|
+
};
|
|
103874
|
+
};
|
|
103875
|
+
required: string[];
|
|
103876
|
+
type: string;
|
|
103877
|
+
'x-draft': string;
|
|
103878
|
+
'x-route-path': string;
|
|
103879
|
+
};
|
|
103880
|
+
type: string;
|
|
103881
|
+
};
|
|
101719
103882
|
};
|
|
101720
103883
|
required: string[];
|
|
101721
103884
|
type: string;
|
|
@@ -101733,22 +103896,31 @@ declare const _default: {
|
|
|
101733
103896
|
};
|
|
101734
103897
|
security: ({
|
|
101735
103898
|
api_key: never[];
|
|
103899
|
+
client_session?: never;
|
|
103900
|
+
pat_with_workspace?: never;
|
|
103901
|
+
console_session_with_workspace?: never;
|
|
103902
|
+
} | {
|
|
103903
|
+
client_session: never[];
|
|
103904
|
+
api_key?: never;
|
|
101736
103905
|
pat_with_workspace?: never;
|
|
101737
103906
|
console_session_with_workspace?: never;
|
|
101738
103907
|
} | {
|
|
101739
103908
|
pat_with_workspace: never[];
|
|
101740
103909
|
api_key?: never;
|
|
103910
|
+
client_session?: never;
|
|
101741
103911
|
console_session_with_workspace?: never;
|
|
101742
103912
|
} | {
|
|
101743
103913
|
console_session_with_workspace: never[];
|
|
101744
103914
|
api_key?: never;
|
|
103915
|
+
client_session?: never;
|
|
101745
103916
|
pat_with_workspace?: never;
|
|
101746
103917
|
})[];
|
|
101747
103918
|
summary: string;
|
|
101748
103919
|
tags: string[];
|
|
101749
103920
|
'x-fern-sdk-group-name': string[];
|
|
101750
103921
|
'x-fern-sdk-method-name': string;
|
|
101751
|
-
'x-
|
|
103922
|
+
'x-fern-sdk-return-value': string;
|
|
103923
|
+
'x-response-key': string;
|
|
101752
103924
|
'x-title': string;
|
|
101753
103925
|
};
|
|
101754
103926
|
post: {
|
|
@@ -101759,18 +103931,11 @@ declare const _default: {
|
|
|
101759
103931
|
'application/json': {
|
|
101760
103932
|
schema: {
|
|
101761
103933
|
properties: {
|
|
101762
|
-
|
|
101763
|
-
description: string;
|
|
101764
|
-
format: string;
|
|
101765
|
-
type: string;
|
|
101766
|
-
};
|
|
101767
|
-
user_identity_id: {
|
|
103934
|
+
search: {
|
|
101768
103935
|
description: string;
|
|
101769
|
-
format: string;
|
|
101770
103936
|
type: string;
|
|
101771
103937
|
};
|
|
101772
103938
|
};
|
|
101773
|
-
required: string[];
|
|
101774
103939
|
type: string;
|
|
101775
103940
|
};
|
|
101776
103941
|
};
|
|
@@ -101785,6 +103950,133 @@ declare const _default: {
|
|
|
101785
103950
|
ok: {
|
|
101786
103951
|
type: string;
|
|
101787
103952
|
};
|
|
103953
|
+
user_identities: {
|
|
103954
|
+
items: {
|
|
103955
|
+
description: string;
|
|
103956
|
+
properties: {
|
|
103957
|
+
acs_user_ids: {
|
|
103958
|
+
description: string;
|
|
103959
|
+
items: {
|
|
103960
|
+
format: string;
|
|
103961
|
+
type: string;
|
|
103962
|
+
};
|
|
103963
|
+
type: string;
|
|
103964
|
+
};
|
|
103965
|
+
created_at: {
|
|
103966
|
+
description: string;
|
|
103967
|
+
format: string;
|
|
103968
|
+
type: string;
|
|
103969
|
+
};
|
|
103970
|
+
display_name: {
|
|
103971
|
+
minLength: number;
|
|
103972
|
+
type: string;
|
|
103973
|
+
};
|
|
103974
|
+
email_address: {
|
|
103975
|
+
description: string;
|
|
103976
|
+
format: string;
|
|
103977
|
+
nullable: boolean;
|
|
103978
|
+
type: string;
|
|
103979
|
+
};
|
|
103980
|
+
errors: {
|
|
103981
|
+
description: string;
|
|
103982
|
+
items: {
|
|
103983
|
+
description: string;
|
|
103984
|
+
discriminator: {
|
|
103985
|
+
propertyName: string;
|
|
103986
|
+
};
|
|
103987
|
+
oneOf: {
|
|
103988
|
+
description: string;
|
|
103989
|
+
properties: {
|
|
103990
|
+
acs_system_id: {
|
|
103991
|
+
description: string;
|
|
103992
|
+
format: string;
|
|
103993
|
+
type: string;
|
|
103994
|
+
};
|
|
103995
|
+
acs_user_id: {
|
|
103996
|
+
description: string;
|
|
103997
|
+
format: string;
|
|
103998
|
+
type: string;
|
|
103999
|
+
};
|
|
104000
|
+
created_at: {
|
|
104001
|
+
description: string;
|
|
104002
|
+
format: string;
|
|
104003
|
+
type: string;
|
|
104004
|
+
};
|
|
104005
|
+
error_code: {
|
|
104006
|
+
description: string;
|
|
104007
|
+
enum: string[];
|
|
104008
|
+
type: string;
|
|
104009
|
+
};
|
|
104010
|
+
message: {
|
|
104011
|
+
description: string;
|
|
104012
|
+
type: string;
|
|
104013
|
+
};
|
|
104014
|
+
};
|
|
104015
|
+
required: string[];
|
|
104016
|
+
type: string;
|
|
104017
|
+
}[];
|
|
104018
|
+
};
|
|
104019
|
+
type: string;
|
|
104020
|
+
};
|
|
104021
|
+
full_name: {
|
|
104022
|
+
minLength: number;
|
|
104023
|
+
nullable: boolean;
|
|
104024
|
+
type: string;
|
|
104025
|
+
};
|
|
104026
|
+
phone_number: {
|
|
104027
|
+
description: string;
|
|
104028
|
+
nullable: boolean;
|
|
104029
|
+
type: string;
|
|
104030
|
+
};
|
|
104031
|
+
user_identity_id: {
|
|
104032
|
+
description: string;
|
|
104033
|
+
format: string;
|
|
104034
|
+
type: string;
|
|
104035
|
+
};
|
|
104036
|
+
warnings: {
|
|
104037
|
+
description: string;
|
|
104038
|
+
items: {
|
|
104039
|
+
description: string;
|
|
104040
|
+
discriminator: {
|
|
104041
|
+
propertyName: string;
|
|
104042
|
+
};
|
|
104043
|
+
oneOf: {
|
|
104044
|
+
description: string;
|
|
104045
|
+
properties: {
|
|
104046
|
+
created_at: {
|
|
104047
|
+
description: string;
|
|
104048
|
+
format: string;
|
|
104049
|
+
type: string;
|
|
104050
|
+
};
|
|
104051
|
+
message: {
|
|
104052
|
+
description: string;
|
|
104053
|
+
type: string;
|
|
104054
|
+
};
|
|
104055
|
+
warning_code: {
|
|
104056
|
+
description: string;
|
|
104057
|
+
enum: string[];
|
|
104058
|
+
type: string;
|
|
104059
|
+
};
|
|
104060
|
+
};
|
|
104061
|
+
required: string[];
|
|
104062
|
+
type: string;
|
|
104063
|
+
}[];
|
|
104064
|
+
};
|
|
104065
|
+
type: string;
|
|
104066
|
+
};
|
|
104067
|
+
workspace_id: {
|
|
104068
|
+
description: string;
|
|
104069
|
+
format: string;
|
|
104070
|
+
type: string;
|
|
104071
|
+
};
|
|
104072
|
+
};
|
|
104073
|
+
required: string[];
|
|
104074
|
+
type: string;
|
|
104075
|
+
'x-draft': string;
|
|
104076
|
+
'x-route-path': string;
|
|
104077
|
+
};
|
|
104078
|
+
type: string;
|
|
104079
|
+
};
|
|
101788
104080
|
};
|
|
101789
104081
|
required: string[];
|
|
101790
104082
|
type: string;
|
|
@@ -101802,22 +104094,31 @@ declare const _default: {
|
|
|
101802
104094
|
};
|
|
101803
104095
|
security: ({
|
|
101804
104096
|
api_key: never[];
|
|
104097
|
+
client_session?: never;
|
|
104098
|
+
pat_with_workspace?: never;
|
|
104099
|
+
console_session_with_workspace?: never;
|
|
104100
|
+
} | {
|
|
104101
|
+
client_session: never[];
|
|
104102
|
+
api_key?: never;
|
|
101805
104103
|
pat_with_workspace?: never;
|
|
101806
104104
|
console_session_with_workspace?: never;
|
|
101807
104105
|
} | {
|
|
101808
104106
|
pat_with_workspace: never[];
|
|
101809
104107
|
api_key?: never;
|
|
104108
|
+
client_session?: never;
|
|
101810
104109
|
console_session_with_workspace?: never;
|
|
101811
104110
|
} | {
|
|
101812
104111
|
console_session_with_workspace: never[];
|
|
101813
104112
|
api_key?: never;
|
|
104113
|
+
client_session?: never;
|
|
101814
104114
|
pat_with_workspace?: never;
|
|
101815
104115
|
})[];
|
|
101816
104116
|
summary: string;
|
|
101817
104117
|
tags: string[];
|
|
101818
104118
|
'x-fern-sdk-group-name': string[];
|
|
101819
104119
|
'x-fern-sdk-method-name': string;
|
|
101820
|
-
'x-
|
|
104120
|
+
'x-fern-sdk-return-value': string;
|
|
104121
|
+
'x-response-key': string;
|
|
101821
104122
|
'x-title': string;
|
|
101822
104123
|
};
|
|
101823
104124
|
};
|
|
@@ -116163,6 +118464,131 @@ type Routes = {
|
|
|
116163
118464
|
}[];
|
|
116164
118465
|
};
|
|
116165
118466
|
};
|
|
118467
|
+
'/access_grants/unmanaged/get': {
|
|
118468
|
+
route: '/access_grants/unmanaged/get';
|
|
118469
|
+
method: 'GET' | 'POST';
|
|
118470
|
+
queryParams: {};
|
|
118471
|
+
jsonBody: {};
|
|
118472
|
+
commonParams: {
|
|
118473
|
+
/** ID of unmanaged Access Grant to get. */
|
|
118474
|
+
access_grant_id: string;
|
|
118475
|
+
};
|
|
118476
|
+
formData: {};
|
|
118477
|
+
jsonResponse: {
|
|
118478
|
+
/** Represents an unmanaged Access Grant. Unmanaged Access Grants do not have client sessions, instant keys, customization profiles, or keys. */
|
|
118479
|
+
access_grant: {
|
|
118480
|
+
/** ID of the Seam workspace associated with the Access Grant. */
|
|
118481
|
+
workspace_id: string;
|
|
118482
|
+
/** ID of the Access Grant. */
|
|
118483
|
+
access_grant_id: string;
|
|
118484
|
+
/** ID of user identity to which the Access Grant gives access. */
|
|
118485
|
+
user_identity_id: string;
|
|
118486
|
+
/**
|
|
118487
|
+
* @deprecated Use `space_ids`.*/
|
|
118488
|
+
location_ids: string[];
|
|
118489
|
+
/** IDs of the spaces to which the Access Grant gives access. */
|
|
118490
|
+
space_ids: string[];
|
|
118491
|
+
/** Access methods that the user requested for the Access Grant. */
|
|
118492
|
+
requested_access_methods: {
|
|
118493
|
+
/** Display name of the access method. */
|
|
118494
|
+
display_name: string;
|
|
118495
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
118496
|
+
mode: 'code' | 'card' | 'mobile_key';
|
|
118497
|
+
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
118498
|
+
code?: string | undefined;
|
|
118499
|
+
/** Date and time at which the requested access method was added to the Access Grant. */
|
|
118500
|
+
created_at: string;
|
|
118501
|
+
/** IDs of the access methods created for the requested access method. */
|
|
118502
|
+
created_access_method_ids: string[];
|
|
118503
|
+
}[];
|
|
118504
|
+
/** IDs of the access methods created for the Access Grant. */
|
|
118505
|
+
access_method_ids: string[];
|
|
118506
|
+
/** Name of the Access Grant. If not provided, the display name will be computed. */
|
|
118507
|
+
name: string | null;
|
|
118508
|
+
/** Display name of the Access Grant. */
|
|
118509
|
+
display_name: string;
|
|
118510
|
+
/** Date and time at which the Access Grant was created. */
|
|
118511
|
+
created_at: string;
|
|
118512
|
+
/** Date and time at which the Access Grant starts. */
|
|
118513
|
+
starts_at: string;
|
|
118514
|
+
/** Date and time at which the Access Grant ends. */
|
|
118515
|
+
ends_at: string | null;
|
|
118516
|
+
/** Warnings associated with the [access grant](https://docs.seam.co/latest/capability-guides/access-grants). */
|
|
118517
|
+
warnings: {
|
|
118518
|
+
/** Date and time at which Seam created the warning. */
|
|
118519
|
+
created_at: string;
|
|
118520
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
118521
|
+
message: string;
|
|
118522
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118523
|
+
warning_code: 'being_deleted';
|
|
118524
|
+
}[];
|
|
118525
|
+
};
|
|
118526
|
+
};
|
|
118527
|
+
};
|
|
118528
|
+
'/access_grants/unmanaged/list': {
|
|
118529
|
+
route: '/access_grants/unmanaged/list';
|
|
118530
|
+
method: 'GET' | 'POST';
|
|
118531
|
+
queryParams: {};
|
|
118532
|
+
jsonBody: {};
|
|
118533
|
+
commonParams: {
|
|
118534
|
+
/** ID of user identity by which you want to filter the list of unmanaged Access Grants. */
|
|
118535
|
+
user_identity_id?: string | undefined;
|
|
118536
|
+
/** ID of the access system by which you want to filter the list of unmanaged Access Grants. */
|
|
118537
|
+
acs_system_id?: string | undefined;
|
|
118538
|
+
/** ID of the entrance by which you want to filter the list of unmanaged Access Grants. */
|
|
118539
|
+
acs_entrance_id?: string | undefined;
|
|
118540
|
+
};
|
|
118541
|
+
formData: {};
|
|
118542
|
+
jsonResponse: {
|
|
118543
|
+
access_grants: {
|
|
118544
|
+
/** ID of the Seam workspace associated with the Access Grant. */
|
|
118545
|
+
workspace_id: string;
|
|
118546
|
+
/** ID of the Access Grant. */
|
|
118547
|
+
access_grant_id: string;
|
|
118548
|
+
/** ID of user identity to which the Access Grant gives access. */
|
|
118549
|
+
user_identity_id: string;
|
|
118550
|
+
/**
|
|
118551
|
+
* @deprecated Use `space_ids`.*/
|
|
118552
|
+
location_ids: string[];
|
|
118553
|
+
/** IDs of the spaces to which the Access Grant gives access. */
|
|
118554
|
+
space_ids: string[];
|
|
118555
|
+
/** Access methods that the user requested for the Access Grant. */
|
|
118556
|
+
requested_access_methods: {
|
|
118557
|
+
/** Display name of the access method. */
|
|
118558
|
+
display_name: string;
|
|
118559
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
118560
|
+
mode: 'code' | 'card' | 'mobile_key';
|
|
118561
|
+
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
118562
|
+
code?: string | undefined;
|
|
118563
|
+
/** Date and time at which the requested access method was added to the Access Grant. */
|
|
118564
|
+
created_at: string;
|
|
118565
|
+
/** IDs of the access methods created for the requested access method. */
|
|
118566
|
+
created_access_method_ids: string[];
|
|
118567
|
+
}[];
|
|
118568
|
+
/** IDs of the access methods created for the Access Grant. */
|
|
118569
|
+
access_method_ids: string[];
|
|
118570
|
+
/** Name of the Access Grant. If not provided, the display name will be computed. */
|
|
118571
|
+
name: string | null;
|
|
118572
|
+
/** Display name of the Access Grant. */
|
|
118573
|
+
display_name: string;
|
|
118574
|
+
/** Date and time at which the Access Grant was created. */
|
|
118575
|
+
created_at: string;
|
|
118576
|
+
/** Date and time at which the Access Grant starts. */
|
|
118577
|
+
starts_at: string;
|
|
118578
|
+
/** Date and time at which the Access Grant ends. */
|
|
118579
|
+
ends_at: string | null;
|
|
118580
|
+
/** Warnings associated with the [access grant](https://docs.seam.co/latest/capability-guides/access-grants). */
|
|
118581
|
+
warnings: {
|
|
118582
|
+
/** Date and time at which Seam created the warning. */
|
|
118583
|
+
created_at: string;
|
|
118584
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
118585
|
+
message: string;
|
|
118586
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118587
|
+
warning_code: 'being_deleted';
|
|
118588
|
+
}[];
|
|
118589
|
+
}[];
|
|
118590
|
+
};
|
|
118591
|
+
};
|
|
116166
118592
|
'/access_grants/update': {
|
|
116167
118593
|
route: '/access_grants/update';
|
|
116168
118594
|
method: 'POST' | 'PATCH';
|
|
@@ -124642,6 +127068,97 @@ type Routes = {
|
|
|
124642
127068
|
}[];
|
|
124643
127069
|
};
|
|
124644
127070
|
};
|
|
127071
|
+
'/access_methods/unmanaged/get': {
|
|
127072
|
+
route: '/access_methods/unmanaged/get';
|
|
127073
|
+
method: 'GET' | 'POST';
|
|
127074
|
+
queryParams: {};
|
|
127075
|
+
jsonBody: {};
|
|
127076
|
+
commonParams: {
|
|
127077
|
+
/** ID of unmanaged access method to get. */
|
|
127078
|
+
access_method_id: string;
|
|
127079
|
+
};
|
|
127080
|
+
formData: {};
|
|
127081
|
+
jsonResponse: {
|
|
127082
|
+
/** Represents an unmanaged access method. Unmanaged access methods do not have client sessions, instant keys, customization profiles, or keys. */
|
|
127083
|
+
access_method: {
|
|
127084
|
+
/** ID of the Seam workspace associated with the access method. */
|
|
127085
|
+
workspace_id: string;
|
|
127086
|
+
/** ID of the access method. */
|
|
127087
|
+
access_method_id: string;
|
|
127088
|
+
/** Display name of the access method. */
|
|
127089
|
+
display_name: string;
|
|
127090
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
127091
|
+
mode: 'code' | 'card' | 'mobile_key';
|
|
127092
|
+
/** Date and time at which the access method was created. */
|
|
127093
|
+
created_at: string;
|
|
127094
|
+
/** Date and time at which the access method was issued. */
|
|
127095
|
+
issued_at: string | null;
|
|
127096
|
+
/** Indicates whether the access method has been issued. */
|
|
127097
|
+
is_issued: boolean;
|
|
127098
|
+
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
127099
|
+
is_encoding_required?: boolean | undefined;
|
|
127100
|
+
/** The actual PIN code for code access methods. */
|
|
127101
|
+
code?: (string | null) | undefined;
|
|
127102
|
+
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
127103
|
+
warnings: {
|
|
127104
|
+
/** Date and time at which Seam created the warning. */
|
|
127105
|
+
created_at: string;
|
|
127106
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
127107
|
+
message: string;
|
|
127108
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127109
|
+
warning_code: 'being_deleted';
|
|
127110
|
+
}[];
|
|
127111
|
+
};
|
|
127112
|
+
};
|
|
127113
|
+
};
|
|
127114
|
+
'/access_methods/unmanaged/list': {
|
|
127115
|
+
route: '/access_methods/unmanaged/list';
|
|
127116
|
+
method: 'GET' | 'POST';
|
|
127117
|
+
queryParams: {};
|
|
127118
|
+
jsonBody: {};
|
|
127119
|
+
commonParams: {
|
|
127120
|
+
/** ID of Access Grant to list unmanaged access methods for. */
|
|
127121
|
+
access_grant_id: string;
|
|
127122
|
+
/** ID of the device for which you want to retrieve all unmanaged access methods. */
|
|
127123
|
+
device_id?: string | undefined;
|
|
127124
|
+
/** ID of the entrance for which you want to retrieve all unmanaged access methods. */
|
|
127125
|
+
acs_entrance_id?: string | undefined;
|
|
127126
|
+
/** ID of the space for which you want to retrieve all unmanaged access methods. */
|
|
127127
|
+
space_id?: string | undefined;
|
|
127128
|
+
};
|
|
127129
|
+
formData: {};
|
|
127130
|
+
jsonResponse: {
|
|
127131
|
+
access_methods: {
|
|
127132
|
+
/** ID of the Seam workspace associated with the access method. */
|
|
127133
|
+
workspace_id: string;
|
|
127134
|
+
/** ID of the access method. */
|
|
127135
|
+
access_method_id: string;
|
|
127136
|
+
/** Display name of the access method. */
|
|
127137
|
+
display_name: string;
|
|
127138
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
127139
|
+
mode: 'code' | 'card' | 'mobile_key';
|
|
127140
|
+
/** Date and time at which the access method was created. */
|
|
127141
|
+
created_at: string;
|
|
127142
|
+
/** Date and time at which the access method was issued. */
|
|
127143
|
+
issued_at: string | null;
|
|
127144
|
+
/** Indicates whether the access method has been issued. */
|
|
127145
|
+
is_issued: boolean;
|
|
127146
|
+
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
127147
|
+
is_encoding_required?: boolean | undefined;
|
|
127148
|
+
/** The actual PIN code for code access methods. */
|
|
127149
|
+
code?: (string | null) | undefined;
|
|
127150
|
+
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
127151
|
+
warnings: {
|
|
127152
|
+
/** Date and time at which Seam created the warning. */
|
|
127153
|
+
created_at: string;
|
|
127154
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
127155
|
+
message: string;
|
|
127156
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127157
|
+
warning_code: 'being_deleted';
|
|
127158
|
+
}[];
|
|
127159
|
+
}[];
|
|
127160
|
+
};
|
|
127161
|
+
};
|
|
124645
127162
|
'/acs/access_groups/add_user': {
|
|
124646
127163
|
route: '/acs/access_groups/add_user';
|
|
124647
127164
|
method: 'PUT' | 'POST';
|
|
@@ -160553,6 +163070,10 @@ type Routes = {
|
|
|
160553
163070
|
rule: 'space_name_updated';
|
|
160554
163071
|
config?: {} | undefined;
|
|
160555
163072
|
} | undefined;
|
|
163073
|
+
user_identity_name_updated?: {
|
|
163074
|
+
rule: 'user_identity_name_updated';
|
|
163075
|
+
config?: {} | undefined;
|
|
163076
|
+
} | undefined;
|
|
160556
163077
|
} | undefined;
|
|
160557
163078
|
};
|
|
160558
163079
|
};
|
|
@@ -160582,6 +163103,10 @@ type Routes = {
|
|
|
160582
163103
|
rule: 'space_name_updated';
|
|
160583
163104
|
config?: {} | undefined;
|
|
160584
163105
|
} | undefined;
|
|
163106
|
+
user_identity_name_updated?: {
|
|
163107
|
+
rule: 'user_identity_name_updated';
|
|
163108
|
+
config?: {} | undefined;
|
|
163109
|
+
} | undefined;
|
|
160585
163110
|
} | undefined;
|
|
160586
163111
|
};
|
|
160587
163112
|
commonParams: {};
|
|
@@ -183969,6 +186494,123 @@ type Routes = {
|
|
|
183969
186494
|
formData: {};
|
|
183970
186495
|
jsonResponse: {};
|
|
183971
186496
|
};
|
|
186497
|
+
'/user_identities/unmanaged/get': {
|
|
186498
|
+
route: '/user_identities/unmanaged/get';
|
|
186499
|
+
method: 'GET' | 'POST';
|
|
186500
|
+
queryParams: {};
|
|
186501
|
+
jsonBody: {};
|
|
186502
|
+
commonParams: {
|
|
186503
|
+
/** ID of the unmanaged user identity that you want to get. */
|
|
186504
|
+
user_identity_id: string;
|
|
186505
|
+
};
|
|
186506
|
+
formData: {};
|
|
186507
|
+
jsonResponse: {
|
|
186508
|
+
/** Represents an unmanaged user identity. Unmanaged user identities do not have keys. */
|
|
186509
|
+
user_identity: {
|
|
186510
|
+
/** ID of the user identity. */
|
|
186511
|
+
user_identity_id: string;
|
|
186512
|
+
/** Unique email address for the user identity. */
|
|
186513
|
+
email_address: string | null;
|
|
186514
|
+
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
186515
|
+
phone_number: string | null;
|
|
186516
|
+
display_name: string;
|
|
186517
|
+
full_name: string | null;
|
|
186518
|
+
/** Date and time at which the user identity was created. */
|
|
186519
|
+
created_at: string;
|
|
186520
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
186521
|
+
workspace_id: string;
|
|
186522
|
+
/** 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. */
|
|
186523
|
+
errors: {
|
|
186524
|
+
/** Date and time at which Seam created the error. */
|
|
186525
|
+
created_at: string;
|
|
186526
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
186527
|
+
message: string;
|
|
186528
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
186529
|
+
error_code: 'issue_with_acs_user';
|
|
186530
|
+
/** ID of the access system user that has an issue. */
|
|
186531
|
+
acs_user_id: string;
|
|
186532
|
+
/** ID of the access system that the user identity is associated with. */
|
|
186533
|
+
acs_system_id: string;
|
|
186534
|
+
}[];
|
|
186535
|
+
/** 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. */
|
|
186536
|
+
warnings: ({
|
|
186537
|
+
/** Date and time at which Seam created the warning. */
|
|
186538
|
+
created_at: string;
|
|
186539
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
186540
|
+
message: string;
|
|
186541
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
186542
|
+
warning_code: 'being_deleted';
|
|
186543
|
+
} | {
|
|
186544
|
+
/** Date and time at which Seam created the warning. */
|
|
186545
|
+
created_at: string;
|
|
186546
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
186547
|
+
message: string;
|
|
186548
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
186549
|
+
warning_code: 'acs_user_profile_does_not_match_user_identity';
|
|
186550
|
+
})[];
|
|
186551
|
+
/** Array of access system user IDs associated with the user identity. */
|
|
186552
|
+
acs_user_ids: string[];
|
|
186553
|
+
};
|
|
186554
|
+
};
|
|
186555
|
+
};
|
|
186556
|
+
'/user_identities/unmanaged/list': {
|
|
186557
|
+
route: '/user_identities/unmanaged/list';
|
|
186558
|
+
method: 'GET' | 'POST';
|
|
186559
|
+
queryParams: {};
|
|
186560
|
+
jsonBody: {};
|
|
186561
|
+
commonParams: {
|
|
186562
|
+
/** 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`. */
|
|
186563
|
+
search?: string | undefined;
|
|
186564
|
+
};
|
|
186565
|
+
formData: {};
|
|
186566
|
+
jsonResponse: {
|
|
186567
|
+
user_identities: {
|
|
186568
|
+
/** ID of the user identity. */
|
|
186569
|
+
user_identity_id: string;
|
|
186570
|
+
/** Unique email address for the user identity. */
|
|
186571
|
+
email_address: string | null;
|
|
186572
|
+
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
186573
|
+
phone_number: string | null;
|
|
186574
|
+
display_name: string;
|
|
186575
|
+
full_name: string | null;
|
|
186576
|
+
/** Date and time at which the user identity was created. */
|
|
186577
|
+
created_at: string;
|
|
186578
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
186579
|
+
workspace_id: string;
|
|
186580
|
+
/** 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. */
|
|
186581
|
+
errors: {
|
|
186582
|
+
/** Date and time at which Seam created the error. */
|
|
186583
|
+
created_at: string;
|
|
186584
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
186585
|
+
message: string;
|
|
186586
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
186587
|
+
error_code: 'issue_with_acs_user';
|
|
186588
|
+
/** ID of the access system user that has an issue. */
|
|
186589
|
+
acs_user_id: string;
|
|
186590
|
+
/** ID of the access system that the user identity is associated with. */
|
|
186591
|
+
acs_system_id: string;
|
|
186592
|
+
}[];
|
|
186593
|
+
/** 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. */
|
|
186594
|
+
warnings: ({
|
|
186595
|
+
/** Date and time at which Seam created the warning. */
|
|
186596
|
+
created_at: string;
|
|
186597
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
186598
|
+
message: string;
|
|
186599
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
186600
|
+
warning_code: 'being_deleted';
|
|
186601
|
+
} | {
|
|
186602
|
+
/** Date and time at which Seam created the warning. */
|
|
186603
|
+
created_at: string;
|
|
186604
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
186605
|
+
message: string;
|
|
186606
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
186607
|
+
warning_code: 'acs_user_profile_does_not_match_user_identity';
|
|
186608
|
+
})[];
|
|
186609
|
+
/** Array of access system user IDs associated with the user identity. */
|
|
186610
|
+
acs_user_ids: string[];
|
|
186611
|
+
}[];
|
|
186612
|
+
};
|
|
186613
|
+
};
|
|
183972
186614
|
'/user_identities/update': {
|
|
183973
186615
|
route: '/user_identities/update';
|
|
183974
186616
|
method: 'PATCH' | 'POST';
|