@seamapi/types 1.583.0 → 1.585.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +2841 -398
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3266 -624
- package/dist/index.cjs +2841 -398
- 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 +3417 -1006
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +342 -1
- 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 +3413 -738
- package/src/lib/seam/connect/route-types.ts +352 -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
|
};
|
|
@@ -90913,6 +92396,19 @@ declare const _default: {
|
|
|
90913
92396
|
required: string[];
|
|
90914
92397
|
type: string;
|
|
90915
92398
|
};
|
|
92399
|
+
space_name_updated: {
|
|
92400
|
+
properties: {
|
|
92401
|
+
config: {
|
|
92402
|
+
$ref: string;
|
|
92403
|
+
};
|
|
92404
|
+
rule: {
|
|
92405
|
+
enum: string[];
|
|
92406
|
+
type: string;
|
|
92407
|
+
};
|
|
92408
|
+
};
|
|
92409
|
+
required: string[];
|
|
92410
|
+
type: string;
|
|
92411
|
+
};
|
|
90916
92412
|
};
|
|
90917
92413
|
type: string;
|
|
90918
92414
|
};
|
|
@@ -91020,6 +92516,19 @@ declare const _default: {
|
|
|
91020
92516
|
required: string[];
|
|
91021
92517
|
type: string;
|
|
91022
92518
|
};
|
|
92519
|
+
space_name_updated: {
|
|
92520
|
+
properties: {
|
|
92521
|
+
config: {
|
|
92522
|
+
$ref: string;
|
|
92523
|
+
};
|
|
92524
|
+
rule: {
|
|
92525
|
+
enum: string[];
|
|
92526
|
+
type: string;
|
|
92527
|
+
};
|
|
92528
|
+
};
|
|
92529
|
+
required: string[];
|
|
92530
|
+
type: string;
|
|
92531
|
+
};
|
|
91023
92532
|
};
|
|
91024
92533
|
type: string;
|
|
91025
92534
|
};
|
|
@@ -91131,6 +92640,20 @@ declare const _default: {
|
|
|
91131
92640
|
required: string[];
|
|
91132
92641
|
type: string;
|
|
91133
92642
|
};
|
|
92643
|
+
space_name_updated: {
|
|
92644
|
+
properties: {
|
|
92645
|
+
config: {
|
|
92646
|
+
properties: {};
|
|
92647
|
+
type: string;
|
|
92648
|
+
};
|
|
92649
|
+
rule: {
|
|
92650
|
+
enum: string[];
|
|
92651
|
+
type: string;
|
|
92652
|
+
};
|
|
92653
|
+
};
|
|
92654
|
+
required: string[];
|
|
92655
|
+
type: string;
|
|
92656
|
+
};
|
|
91134
92657
|
};
|
|
91135
92658
|
type: string;
|
|
91136
92659
|
};
|
|
@@ -91252,6 +92775,20 @@ declare const _default: {
|
|
|
91252
92775
|
required: string[];
|
|
91253
92776
|
type: string;
|
|
91254
92777
|
};
|
|
92778
|
+
space_name_updated: {
|
|
92779
|
+
properties: {
|
|
92780
|
+
config: {
|
|
92781
|
+
properties: {};
|
|
92782
|
+
type: string;
|
|
92783
|
+
};
|
|
92784
|
+
rule: {
|
|
92785
|
+
enum: string[];
|
|
92786
|
+
type: string;
|
|
92787
|
+
};
|
|
92788
|
+
};
|
|
92789
|
+
required: string[];
|
|
92790
|
+
type: string;
|
|
92791
|
+
};
|
|
91255
92792
|
};
|
|
91256
92793
|
type: string;
|
|
91257
92794
|
};
|
|
@@ -100627,15 +102164,305 @@ declare const _default: {
|
|
|
100627
102164
|
tags: string[];
|
|
100628
102165
|
'x-fern-sdk-group-name': string[];
|
|
100629
102166
|
'x-fern-sdk-method-name': string;
|
|
100630
|
-
'x-fern-sdk-return-value': string;
|
|
100631
|
-
'x-response-key': string;
|
|
102167
|
+
'x-fern-sdk-return-value': string;
|
|
102168
|
+
'x-response-key': string;
|
|
102169
|
+
'x-title': string;
|
|
102170
|
+
};
|
|
102171
|
+
};
|
|
102172
|
+
'/user_identities/get': {
|
|
102173
|
+
get: {
|
|
102174
|
+
description: string;
|
|
102175
|
+
operationId: string;
|
|
102176
|
+
responses: {
|
|
102177
|
+
200: {
|
|
102178
|
+
content: {
|
|
102179
|
+
'application/json': {
|
|
102180
|
+
schema: {
|
|
102181
|
+
properties: {
|
|
102182
|
+
ok: {
|
|
102183
|
+
type: string;
|
|
102184
|
+
};
|
|
102185
|
+
user_identity: {
|
|
102186
|
+
$ref: string;
|
|
102187
|
+
};
|
|
102188
|
+
};
|
|
102189
|
+
required: string[];
|
|
102190
|
+
type: string;
|
|
102191
|
+
};
|
|
102192
|
+
};
|
|
102193
|
+
};
|
|
102194
|
+
description: string;
|
|
102195
|
+
};
|
|
102196
|
+
400: {
|
|
102197
|
+
description: string;
|
|
102198
|
+
};
|
|
102199
|
+
401: {
|
|
102200
|
+
description: string;
|
|
102201
|
+
};
|
|
102202
|
+
};
|
|
102203
|
+
security: ({
|
|
102204
|
+
api_key: never[];
|
|
102205
|
+
pat_with_workspace?: never;
|
|
102206
|
+
console_session_with_workspace?: never;
|
|
102207
|
+
} | {
|
|
102208
|
+
pat_with_workspace: never[];
|
|
102209
|
+
api_key?: never;
|
|
102210
|
+
console_session_with_workspace?: never;
|
|
102211
|
+
} | {
|
|
102212
|
+
console_session_with_workspace: never[];
|
|
102213
|
+
api_key?: never;
|
|
102214
|
+
pat_with_workspace?: never;
|
|
102215
|
+
})[];
|
|
102216
|
+
summary: string;
|
|
102217
|
+
tags: string[];
|
|
102218
|
+
'x-fern-sdk-group-name': string[];
|
|
102219
|
+
'x-fern-sdk-method-name': string;
|
|
102220
|
+
'x-fern-sdk-return-value': string;
|
|
102221
|
+
'x-response-key': string;
|
|
102222
|
+
'x-title': string;
|
|
102223
|
+
};
|
|
102224
|
+
post: {
|
|
102225
|
+
description: string;
|
|
102226
|
+
operationId: string;
|
|
102227
|
+
requestBody: {
|
|
102228
|
+
content: {
|
|
102229
|
+
'application/json': {
|
|
102230
|
+
schema: {
|
|
102231
|
+
oneOf: ({
|
|
102232
|
+
properties: {
|
|
102233
|
+
user_identity_id: {
|
|
102234
|
+
description: string;
|
|
102235
|
+
format: string;
|
|
102236
|
+
type: string;
|
|
102237
|
+
};
|
|
102238
|
+
user_identity_key?: never;
|
|
102239
|
+
};
|
|
102240
|
+
required: string[];
|
|
102241
|
+
type: string;
|
|
102242
|
+
} | {
|
|
102243
|
+
properties: {
|
|
102244
|
+
user_identity_key: {
|
|
102245
|
+
type: string;
|
|
102246
|
+
};
|
|
102247
|
+
user_identity_id?: never;
|
|
102248
|
+
};
|
|
102249
|
+
required: string[];
|
|
102250
|
+
type: string;
|
|
102251
|
+
})[];
|
|
102252
|
+
};
|
|
102253
|
+
};
|
|
102254
|
+
};
|
|
102255
|
+
};
|
|
102256
|
+
responses: {
|
|
102257
|
+
200: {
|
|
102258
|
+
content: {
|
|
102259
|
+
'application/json': {
|
|
102260
|
+
schema: {
|
|
102261
|
+
properties: {
|
|
102262
|
+
ok: {
|
|
102263
|
+
type: string;
|
|
102264
|
+
};
|
|
102265
|
+
user_identity: {
|
|
102266
|
+
$ref: string;
|
|
102267
|
+
};
|
|
102268
|
+
};
|
|
102269
|
+
required: string[];
|
|
102270
|
+
type: string;
|
|
102271
|
+
};
|
|
102272
|
+
};
|
|
102273
|
+
};
|
|
102274
|
+
description: string;
|
|
102275
|
+
};
|
|
102276
|
+
400: {
|
|
102277
|
+
description: string;
|
|
102278
|
+
};
|
|
102279
|
+
401: {
|
|
102280
|
+
description: string;
|
|
102281
|
+
};
|
|
102282
|
+
};
|
|
102283
|
+
security: ({
|
|
102284
|
+
api_key: never[];
|
|
102285
|
+
pat_with_workspace?: never;
|
|
102286
|
+
console_session_with_workspace?: never;
|
|
102287
|
+
} | {
|
|
102288
|
+
pat_with_workspace: never[];
|
|
102289
|
+
api_key?: never;
|
|
102290
|
+
console_session_with_workspace?: never;
|
|
102291
|
+
} | {
|
|
102292
|
+
console_session_with_workspace: never[];
|
|
102293
|
+
api_key?: never;
|
|
102294
|
+
pat_with_workspace?: never;
|
|
102295
|
+
})[];
|
|
102296
|
+
summary: string;
|
|
102297
|
+
tags: string[];
|
|
102298
|
+
'x-fern-sdk-group-name': string[];
|
|
102299
|
+
'x-fern-sdk-method-name': string;
|
|
102300
|
+
'x-fern-sdk-return-value': string;
|
|
102301
|
+
'x-response-key': string;
|
|
102302
|
+
'x-title': string;
|
|
102303
|
+
};
|
|
102304
|
+
};
|
|
102305
|
+
'/user_identities/grant_access_to_device': {
|
|
102306
|
+
post: {
|
|
102307
|
+
description: string;
|
|
102308
|
+
operationId: string;
|
|
102309
|
+
requestBody: {
|
|
102310
|
+
content: {
|
|
102311
|
+
'application/json': {
|
|
102312
|
+
schema: {
|
|
102313
|
+
properties: {
|
|
102314
|
+
device_id: {
|
|
102315
|
+
description: string;
|
|
102316
|
+
format: string;
|
|
102317
|
+
type: string;
|
|
102318
|
+
};
|
|
102319
|
+
user_identity_id: {
|
|
102320
|
+
description: string;
|
|
102321
|
+
format: string;
|
|
102322
|
+
type: string;
|
|
102323
|
+
};
|
|
102324
|
+
};
|
|
102325
|
+
required: string[];
|
|
102326
|
+
type: string;
|
|
102327
|
+
};
|
|
102328
|
+
};
|
|
102329
|
+
};
|
|
102330
|
+
};
|
|
102331
|
+
responses: {
|
|
102332
|
+
200: {
|
|
102333
|
+
content: {
|
|
102334
|
+
'application/json': {
|
|
102335
|
+
schema: {
|
|
102336
|
+
properties: {
|
|
102337
|
+
ok: {
|
|
102338
|
+
type: string;
|
|
102339
|
+
};
|
|
102340
|
+
};
|
|
102341
|
+
required: string[];
|
|
102342
|
+
type: string;
|
|
102343
|
+
};
|
|
102344
|
+
};
|
|
102345
|
+
};
|
|
102346
|
+
description: string;
|
|
102347
|
+
};
|
|
102348
|
+
400: {
|
|
102349
|
+
description: string;
|
|
102350
|
+
};
|
|
102351
|
+
401: {
|
|
102352
|
+
description: string;
|
|
102353
|
+
};
|
|
102354
|
+
};
|
|
102355
|
+
security: ({
|
|
102356
|
+
api_key: never[];
|
|
102357
|
+
pat_with_workspace?: never;
|
|
102358
|
+
console_session_with_workspace?: never;
|
|
102359
|
+
} | {
|
|
102360
|
+
pat_with_workspace: never[];
|
|
102361
|
+
api_key?: never;
|
|
102362
|
+
console_session_with_workspace?: never;
|
|
102363
|
+
} | {
|
|
102364
|
+
console_session_with_workspace: never[];
|
|
102365
|
+
api_key?: never;
|
|
102366
|
+
pat_with_workspace?: never;
|
|
102367
|
+
})[];
|
|
102368
|
+
summary: string;
|
|
102369
|
+
tags: string[];
|
|
102370
|
+
'x-fern-sdk-group-name': string[];
|
|
102371
|
+
'x-fern-sdk-method-name': string;
|
|
102372
|
+
'x-response-key': null;
|
|
102373
|
+
'x-title': string;
|
|
102374
|
+
};
|
|
102375
|
+
put: {
|
|
102376
|
+
description: string;
|
|
102377
|
+
operationId: string;
|
|
102378
|
+
requestBody: {
|
|
102379
|
+
content: {
|
|
102380
|
+
'application/json': {
|
|
102381
|
+
schema: {
|
|
102382
|
+
properties: {
|
|
102383
|
+
device_id: {
|
|
102384
|
+
description: string;
|
|
102385
|
+
format: string;
|
|
102386
|
+
type: string;
|
|
102387
|
+
};
|
|
102388
|
+
user_identity_id: {
|
|
102389
|
+
description: string;
|
|
102390
|
+
format: string;
|
|
102391
|
+
type: string;
|
|
102392
|
+
};
|
|
102393
|
+
};
|
|
102394
|
+
required: string[];
|
|
102395
|
+
type: string;
|
|
102396
|
+
};
|
|
102397
|
+
};
|
|
102398
|
+
};
|
|
102399
|
+
};
|
|
102400
|
+
responses: {
|
|
102401
|
+
200: {
|
|
102402
|
+
content: {
|
|
102403
|
+
'application/json': {
|
|
102404
|
+
schema: {
|
|
102405
|
+
properties: {
|
|
102406
|
+
ok: {
|
|
102407
|
+
type: string;
|
|
102408
|
+
};
|
|
102409
|
+
};
|
|
102410
|
+
required: string[];
|
|
102411
|
+
type: string;
|
|
102412
|
+
};
|
|
102413
|
+
};
|
|
102414
|
+
};
|
|
102415
|
+
description: string;
|
|
102416
|
+
};
|
|
102417
|
+
400: {
|
|
102418
|
+
description: string;
|
|
102419
|
+
};
|
|
102420
|
+
401: {
|
|
102421
|
+
description: string;
|
|
102422
|
+
};
|
|
102423
|
+
};
|
|
102424
|
+
security: ({
|
|
102425
|
+
api_key: never[];
|
|
102426
|
+
pat_with_workspace?: never;
|
|
102427
|
+
console_session_with_workspace?: never;
|
|
102428
|
+
} | {
|
|
102429
|
+
pat_with_workspace: never[];
|
|
102430
|
+
api_key?: never;
|
|
102431
|
+
console_session_with_workspace?: never;
|
|
102432
|
+
} | {
|
|
102433
|
+
console_session_with_workspace: never[];
|
|
102434
|
+
api_key?: never;
|
|
102435
|
+
pat_with_workspace?: never;
|
|
102436
|
+
})[];
|
|
102437
|
+
summary: string;
|
|
102438
|
+
tags: string[];
|
|
102439
|
+
'x-fern-sdk-group-name': string[];
|
|
102440
|
+
'x-fern-sdk-method-name': string;
|
|
102441
|
+
'x-response-key': null;
|
|
100632
102442
|
'x-title': string;
|
|
100633
102443
|
};
|
|
100634
102444
|
};
|
|
100635
|
-
'/user_identities/
|
|
102445
|
+
'/user_identities/list': {
|
|
100636
102446
|
get: {
|
|
100637
102447
|
description: string;
|
|
100638
102448
|
operationId: string;
|
|
102449
|
+
parameters: ({
|
|
102450
|
+
in: string;
|
|
102451
|
+
name: string;
|
|
102452
|
+
schema: {
|
|
102453
|
+
description: string;
|
|
102454
|
+
type: string;
|
|
102455
|
+
format?: never;
|
|
102456
|
+
};
|
|
102457
|
+
} | {
|
|
102458
|
+
in: string;
|
|
102459
|
+
name: string;
|
|
102460
|
+
schema: {
|
|
102461
|
+
description: string;
|
|
102462
|
+
format: string;
|
|
102463
|
+
type: string;
|
|
102464
|
+
};
|
|
102465
|
+
})[];
|
|
100639
102466
|
responses: {
|
|
100640
102467
|
200: {
|
|
100641
102468
|
content: {
|
|
@@ -100645,8 +102472,11 @@ declare const _default: {
|
|
|
100645
102472
|
ok: {
|
|
100646
102473
|
type: string;
|
|
100647
102474
|
};
|
|
100648
|
-
|
|
100649
|
-
|
|
102475
|
+
user_identities: {
|
|
102476
|
+
items: {
|
|
102477
|
+
$ref: string;
|
|
102478
|
+
};
|
|
102479
|
+
type: string;
|
|
100650
102480
|
};
|
|
100651
102481
|
};
|
|
100652
102482
|
required: string[];
|
|
@@ -100665,15 +102495,23 @@ declare const _default: {
|
|
|
100665
102495
|
};
|
|
100666
102496
|
security: ({
|
|
100667
102497
|
api_key: never[];
|
|
102498
|
+
client_session?: never;
|
|
102499
|
+
pat_with_workspace?: never;
|
|
102500
|
+
console_session_with_workspace?: never;
|
|
102501
|
+
} | {
|
|
102502
|
+
client_session: never[];
|
|
102503
|
+
api_key?: never;
|
|
100668
102504
|
pat_with_workspace?: never;
|
|
100669
102505
|
console_session_with_workspace?: never;
|
|
100670
102506
|
} | {
|
|
100671
102507
|
pat_with_workspace: never[];
|
|
100672
102508
|
api_key?: never;
|
|
102509
|
+
client_session?: never;
|
|
100673
102510
|
console_session_with_workspace?: never;
|
|
100674
102511
|
} | {
|
|
100675
102512
|
console_session_with_workspace: never[];
|
|
100676
102513
|
api_key?: never;
|
|
102514
|
+
client_session?: never;
|
|
100677
102515
|
pat_with_workspace?: never;
|
|
100678
102516
|
})[];
|
|
100679
102517
|
summary: string;
|
|
@@ -100691,27 +102529,18 @@ declare const _default: {
|
|
|
100691
102529
|
content: {
|
|
100692
102530
|
'application/json': {
|
|
100693
102531
|
schema: {
|
|
100694
|
-
|
|
100695
|
-
|
|
100696
|
-
|
|
100697
|
-
|
|
100698
|
-
|
|
100699
|
-
type: string;
|
|
100700
|
-
};
|
|
100701
|
-
user_identity_key?: never;
|
|
102532
|
+
properties: {
|
|
102533
|
+
credential_manager_acs_system_id: {
|
|
102534
|
+
description: string;
|
|
102535
|
+
format: string;
|
|
102536
|
+
type: string;
|
|
100702
102537
|
};
|
|
100703
|
-
|
|
100704
|
-
|
|
100705
|
-
|
|
100706
|
-
properties: {
|
|
100707
|
-
user_identity_key: {
|
|
100708
|
-
type: string;
|
|
100709
|
-
};
|
|
100710
|
-
user_identity_id?: never;
|
|
102538
|
+
search: {
|
|
102539
|
+
description: string;
|
|
102540
|
+
type: string;
|
|
100711
102541
|
};
|
|
100712
|
-
|
|
100713
|
-
|
|
100714
|
-
})[];
|
|
102542
|
+
};
|
|
102543
|
+
type: string;
|
|
100715
102544
|
};
|
|
100716
102545
|
};
|
|
100717
102546
|
};
|
|
@@ -100725,8 +102554,11 @@ declare const _default: {
|
|
|
100725
102554
|
ok: {
|
|
100726
102555
|
type: string;
|
|
100727
102556
|
};
|
|
100728
|
-
|
|
100729
|
-
|
|
102557
|
+
user_identities: {
|
|
102558
|
+
items: {
|
|
102559
|
+
$ref: string;
|
|
102560
|
+
};
|
|
102561
|
+
type: string;
|
|
100730
102562
|
};
|
|
100731
102563
|
};
|
|
100732
102564
|
required: string[];
|
|
@@ -100745,15 +102577,23 @@ declare const _default: {
|
|
|
100745
102577
|
};
|
|
100746
102578
|
security: ({
|
|
100747
102579
|
api_key: never[];
|
|
102580
|
+
client_session?: never;
|
|
102581
|
+
pat_with_workspace?: never;
|
|
102582
|
+
console_session_with_workspace?: never;
|
|
102583
|
+
} | {
|
|
102584
|
+
client_session: never[];
|
|
102585
|
+
api_key?: never;
|
|
100748
102586
|
pat_with_workspace?: never;
|
|
100749
102587
|
console_session_with_workspace?: never;
|
|
100750
102588
|
} | {
|
|
100751
102589
|
pat_with_workspace: never[];
|
|
100752
102590
|
api_key?: never;
|
|
102591
|
+
client_session?: never;
|
|
100753
102592
|
console_session_with_workspace?: never;
|
|
100754
102593
|
} | {
|
|
100755
102594
|
console_session_with_workspace: never[];
|
|
100756
102595
|
api_key?: never;
|
|
102596
|
+
client_session?: never;
|
|
100757
102597
|
pat_with_workspace?: never;
|
|
100758
102598
|
})[];
|
|
100759
102599
|
summary: string;
|
|
@@ -100765,38 +102605,40 @@ declare const _default: {
|
|
|
100765
102605
|
'x-title': string;
|
|
100766
102606
|
};
|
|
100767
102607
|
};
|
|
100768
|
-
'/user_identities/
|
|
100769
|
-
|
|
102608
|
+
'/user_identities/list_accessible_devices': {
|
|
102609
|
+
get: {
|
|
100770
102610
|
description: string;
|
|
100771
102611
|
operationId: string;
|
|
100772
|
-
|
|
100773
|
-
|
|
100774
|
-
|
|
100775
|
-
|
|
100776
|
-
|
|
100777
|
-
|
|
100778
|
-
|
|
100779
|
-
|
|
100780
|
-
type: string;
|
|
100781
|
-
};
|
|
100782
|
-
user_identity_id: {
|
|
100783
|
-
description: string;
|
|
100784
|
-
format: string;
|
|
100785
|
-
type: string;
|
|
100786
|
-
};
|
|
100787
|
-
};
|
|
100788
|
-
required: string[];
|
|
100789
|
-
type: string;
|
|
100790
|
-
};
|
|
100791
|
-
};
|
|
102612
|
+
parameters: {
|
|
102613
|
+
in: string;
|
|
102614
|
+
name: string;
|
|
102615
|
+
required: boolean;
|
|
102616
|
+
schema: {
|
|
102617
|
+
description: string;
|
|
102618
|
+
format: string;
|
|
102619
|
+
type: string;
|
|
100792
102620
|
};
|
|
100793
|
-
};
|
|
102621
|
+
}[];
|
|
100794
102622
|
responses: {
|
|
100795
102623
|
200: {
|
|
100796
102624
|
content: {
|
|
100797
102625
|
'application/json': {
|
|
100798
102626
|
schema: {
|
|
100799
102627
|
properties: {
|
|
102628
|
+
accessible_devices: {
|
|
102629
|
+
deprecated: boolean;
|
|
102630
|
+
items: {
|
|
102631
|
+
$ref: string;
|
|
102632
|
+
};
|
|
102633
|
+
type: string;
|
|
102634
|
+
'x-deprecated': string;
|
|
102635
|
+
};
|
|
102636
|
+
devices: {
|
|
102637
|
+
items: {
|
|
102638
|
+
$ref: string;
|
|
102639
|
+
};
|
|
102640
|
+
type: string;
|
|
102641
|
+
};
|
|
100800
102642
|
ok: {
|
|
100801
102643
|
type: string;
|
|
100802
102644
|
};
|
|
@@ -100832,10 +102674,11 @@ declare const _default: {
|
|
|
100832
102674
|
tags: string[];
|
|
100833
102675
|
'x-fern-sdk-group-name': string[];
|
|
100834
102676
|
'x-fern-sdk-method-name': string;
|
|
100835
|
-
'x-
|
|
102677
|
+
'x-fern-sdk-return-value': string;
|
|
102678
|
+
'x-response-key': string;
|
|
100836
102679
|
'x-title': string;
|
|
100837
102680
|
};
|
|
100838
|
-
|
|
102681
|
+
post: {
|
|
100839
102682
|
description: string;
|
|
100840
102683
|
operationId: string;
|
|
100841
102684
|
requestBody: {
|
|
@@ -100843,11 +102686,6 @@ declare const _default: {
|
|
|
100843
102686
|
'application/json': {
|
|
100844
102687
|
schema: {
|
|
100845
102688
|
properties: {
|
|
100846
|
-
device_id: {
|
|
100847
|
-
description: string;
|
|
100848
|
-
format: string;
|
|
100849
|
-
type: string;
|
|
100850
|
-
};
|
|
100851
102689
|
user_identity_id: {
|
|
100852
102690
|
description: string;
|
|
100853
102691
|
format: string;
|
|
@@ -100866,6 +102704,20 @@ declare const _default: {
|
|
|
100866
102704
|
'application/json': {
|
|
100867
102705
|
schema: {
|
|
100868
102706
|
properties: {
|
|
102707
|
+
accessible_devices: {
|
|
102708
|
+
deprecated: boolean;
|
|
102709
|
+
items: {
|
|
102710
|
+
$ref: string;
|
|
102711
|
+
};
|
|
102712
|
+
type: string;
|
|
102713
|
+
'x-deprecated': string;
|
|
102714
|
+
};
|
|
102715
|
+
devices: {
|
|
102716
|
+
items: {
|
|
102717
|
+
$ref: string;
|
|
102718
|
+
};
|
|
102719
|
+
type: string;
|
|
102720
|
+
};
|
|
100869
102721
|
ok: {
|
|
100870
102722
|
type: string;
|
|
100871
102723
|
};
|
|
@@ -100901,46 +102753,40 @@ declare const _default: {
|
|
|
100901
102753
|
tags: string[];
|
|
100902
102754
|
'x-fern-sdk-group-name': string[];
|
|
100903
102755
|
'x-fern-sdk-method-name': string;
|
|
100904
|
-
'x-
|
|
102756
|
+
'x-fern-sdk-return-value': string;
|
|
102757
|
+
'x-response-key': string;
|
|
100905
102758
|
'x-title': string;
|
|
100906
102759
|
};
|
|
100907
102760
|
};
|
|
100908
|
-
'/user_identities/
|
|
102761
|
+
'/user_identities/list_acs_systems': {
|
|
100909
102762
|
get: {
|
|
100910
102763
|
description: string;
|
|
100911
102764
|
operationId: string;
|
|
100912
|
-
parameters:
|
|
100913
|
-
in: string;
|
|
100914
|
-
name: string;
|
|
100915
|
-
schema: {
|
|
100916
|
-
description: string;
|
|
100917
|
-
type: string;
|
|
100918
|
-
format?: never;
|
|
100919
|
-
};
|
|
100920
|
-
} | {
|
|
102765
|
+
parameters: {
|
|
100921
102766
|
in: string;
|
|
100922
102767
|
name: string;
|
|
102768
|
+
required: boolean;
|
|
100923
102769
|
schema: {
|
|
100924
102770
|
description: string;
|
|
100925
102771
|
format: string;
|
|
100926
102772
|
type: string;
|
|
100927
102773
|
};
|
|
100928
|
-
}
|
|
102774
|
+
}[];
|
|
100929
102775
|
responses: {
|
|
100930
102776
|
200: {
|
|
100931
102777
|
content: {
|
|
100932
102778
|
'application/json': {
|
|
100933
102779
|
schema: {
|
|
100934
102780
|
properties: {
|
|
100935
|
-
|
|
100936
|
-
type: string;
|
|
100937
|
-
};
|
|
100938
|
-
user_identities: {
|
|
102781
|
+
acs_systems: {
|
|
100939
102782
|
items: {
|
|
100940
102783
|
$ref: string;
|
|
100941
102784
|
};
|
|
100942
102785
|
type: string;
|
|
100943
102786
|
};
|
|
102787
|
+
ok: {
|
|
102788
|
+
type: string;
|
|
102789
|
+
};
|
|
100944
102790
|
};
|
|
100945
102791
|
required: string[];
|
|
100946
102792
|
type: string;
|
|
@@ -100957,25 +102803,25 @@ declare const _default: {
|
|
|
100957
102803
|
};
|
|
100958
102804
|
};
|
|
100959
102805
|
security: ({
|
|
100960
|
-
api_key: never[];
|
|
100961
|
-
client_session?: never;
|
|
100962
|
-
pat_with_workspace?: never;
|
|
100963
|
-
console_session_with_workspace?: never;
|
|
100964
|
-
} | {
|
|
100965
102806
|
client_session: never[];
|
|
100966
|
-
api_key?: never;
|
|
100967
102807
|
pat_with_workspace?: never;
|
|
100968
102808
|
console_session_with_workspace?: never;
|
|
102809
|
+
api_key?: never;
|
|
100969
102810
|
} | {
|
|
100970
102811
|
pat_with_workspace: never[];
|
|
100971
|
-
api_key?: never;
|
|
100972
102812
|
client_session?: never;
|
|
100973
102813
|
console_session_with_workspace?: never;
|
|
102814
|
+
api_key?: never;
|
|
100974
102815
|
} | {
|
|
100975
102816
|
console_session_with_workspace: never[];
|
|
102817
|
+
client_session?: never;
|
|
102818
|
+
pat_with_workspace?: never;
|
|
100976
102819
|
api_key?: never;
|
|
102820
|
+
} | {
|
|
102821
|
+
api_key: never[];
|
|
100977
102822
|
client_session?: never;
|
|
100978
102823
|
pat_with_workspace?: never;
|
|
102824
|
+
console_session_with_workspace?: never;
|
|
100979
102825
|
})[];
|
|
100980
102826
|
summary: string;
|
|
100981
102827
|
tags: string[];
|
|
@@ -100993,16 +102839,13 @@ declare const _default: {
|
|
|
100993
102839
|
'application/json': {
|
|
100994
102840
|
schema: {
|
|
100995
102841
|
properties: {
|
|
100996
|
-
|
|
102842
|
+
user_identity_id: {
|
|
100997
102843
|
description: string;
|
|
100998
102844
|
format: string;
|
|
100999
102845
|
type: string;
|
|
101000
102846
|
};
|
|
101001
|
-
search: {
|
|
101002
|
-
description: string;
|
|
101003
|
-
type: string;
|
|
101004
|
-
};
|
|
101005
102847
|
};
|
|
102848
|
+
required: string[];
|
|
101006
102849
|
type: string;
|
|
101007
102850
|
};
|
|
101008
102851
|
};
|
|
@@ -101014,15 +102857,15 @@ declare const _default: {
|
|
|
101014
102857
|
'application/json': {
|
|
101015
102858
|
schema: {
|
|
101016
102859
|
properties: {
|
|
101017
|
-
|
|
101018
|
-
type: string;
|
|
101019
|
-
};
|
|
101020
|
-
user_identities: {
|
|
102860
|
+
acs_systems: {
|
|
101021
102861
|
items: {
|
|
101022
102862
|
$ref: string;
|
|
101023
102863
|
};
|
|
101024
102864
|
type: string;
|
|
101025
102865
|
};
|
|
102866
|
+
ok: {
|
|
102867
|
+
type: string;
|
|
102868
|
+
};
|
|
101026
102869
|
};
|
|
101027
102870
|
required: string[];
|
|
101028
102871
|
type: string;
|
|
@@ -101039,25 +102882,25 @@ declare const _default: {
|
|
|
101039
102882
|
};
|
|
101040
102883
|
};
|
|
101041
102884
|
security: ({
|
|
101042
|
-
api_key: never[];
|
|
101043
|
-
client_session?: never;
|
|
101044
|
-
pat_with_workspace?: never;
|
|
101045
|
-
console_session_with_workspace?: never;
|
|
101046
|
-
} | {
|
|
101047
102885
|
client_session: never[];
|
|
101048
|
-
api_key?: never;
|
|
101049
102886
|
pat_with_workspace?: never;
|
|
101050
102887
|
console_session_with_workspace?: never;
|
|
102888
|
+
api_key?: never;
|
|
101051
102889
|
} | {
|
|
101052
102890
|
pat_with_workspace: never[];
|
|
101053
|
-
api_key?: never;
|
|
101054
102891
|
client_session?: never;
|
|
101055
102892
|
console_session_with_workspace?: never;
|
|
102893
|
+
api_key?: never;
|
|
101056
102894
|
} | {
|
|
101057
102895
|
console_session_with_workspace: never[];
|
|
102896
|
+
client_session?: never;
|
|
102897
|
+
pat_with_workspace?: never;
|
|
101058
102898
|
api_key?: never;
|
|
102899
|
+
} | {
|
|
102900
|
+
api_key: never[];
|
|
101059
102901
|
client_session?: never;
|
|
101060
102902
|
pat_with_workspace?: never;
|
|
102903
|
+
console_session_with_workspace?: never;
|
|
101061
102904
|
})[];
|
|
101062
102905
|
summary: string;
|
|
101063
102906
|
tags: string[];
|
|
@@ -101068,7 +102911,7 @@ declare const _default: {
|
|
|
101068
102911
|
'x-title': string;
|
|
101069
102912
|
};
|
|
101070
102913
|
};
|
|
101071
|
-
'/user_identities/
|
|
102914
|
+
'/user_identities/list_acs_users': {
|
|
101072
102915
|
get: {
|
|
101073
102916
|
description: string;
|
|
101074
102917
|
operationId: string;
|
|
@@ -101088,15 +102931,7 @@ declare const _default: {
|
|
|
101088
102931
|
'application/json': {
|
|
101089
102932
|
schema: {
|
|
101090
102933
|
properties: {
|
|
101091
|
-
|
|
101092
|
-
deprecated: boolean;
|
|
101093
|
-
items: {
|
|
101094
|
-
$ref: string;
|
|
101095
|
-
};
|
|
101096
|
-
type: string;
|
|
101097
|
-
'x-deprecated': string;
|
|
101098
|
-
};
|
|
101099
|
-
devices: {
|
|
102934
|
+
acs_users: {
|
|
101100
102935
|
items: {
|
|
101101
102936
|
$ref: string;
|
|
101102
102937
|
};
|
|
@@ -101167,15 +103002,7 @@ declare const _default: {
|
|
|
101167
103002
|
'application/json': {
|
|
101168
103003
|
schema: {
|
|
101169
103004
|
properties: {
|
|
101170
|
-
|
|
101171
|
-
deprecated: boolean;
|
|
101172
|
-
items: {
|
|
101173
|
-
$ref: string;
|
|
101174
|
-
};
|
|
101175
|
-
type: string;
|
|
101176
|
-
'x-deprecated': string;
|
|
101177
|
-
};
|
|
101178
|
-
devices: {
|
|
103005
|
+
acs_users: {
|
|
101179
103006
|
items: {
|
|
101180
103007
|
$ref: string;
|
|
101181
103008
|
};
|
|
@@ -101221,8 +103048,8 @@ declare const _default: {
|
|
|
101221
103048
|
'x-title': string;
|
|
101222
103049
|
};
|
|
101223
103050
|
};
|
|
101224
|
-
'/user_identities/
|
|
101225
|
-
|
|
103051
|
+
'/user_identities/remove_acs_user': {
|
|
103052
|
+
delete: {
|
|
101226
103053
|
description: string;
|
|
101227
103054
|
operationId: string;
|
|
101228
103055
|
parameters: {
|
|
@@ -101241,12 +103068,6 @@ declare const _default: {
|
|
|
101241
103068
|
'application/json': {
|
|
101242
103069
|
schema: {
|
|
101243
103070
|
properties: {
|
|
101244
|
-
acs_systems: {
|
|
101245
|
-
items: {
|
|
101246
|
-
$ref: string;
|
|
101247
|
-
};
|
|
101248
|
-
type: string;
|
|
101249
|
-
};
|
|
101250
103071
|
ok: {
|
|
101251
103072
|
type: string;
|
|
101252
103073
|
};
|
|
@@ -101266,32 +103087,23 @@ declare const _default: {
|
|
|
101266
103087
|
};
|
|
101267
103088
|
};
|
|
101268
103089
|
security: ({
|
|
101269
|
-
|
|
103090
|
+
api_key: never[];
|
|
101270
103091
|
pat_with_workspace?: never;
|
|
101271
103092
|
console_session_with_workspace?: never;
|
|
101272
|
-
api_key?: never;
|
|
101273
103093
|
} | {
|
|
101274
103094
|
pat_with_workspace: never[];
|
|
101275
|
-
client_session?: never;
|
|
101276
|
-
console_session_with_workspace?: never;
|
|
101277
103095
|
api_key?: never;
|
|
103096
|
+
console_session_with_workspace?: never;
|
|
101278
103097
|
} | {
|
|
101279
103098
|
console_session_with_workspace: never[];
|
|
101280
|
-
client_session?: never;
|
|
101281
|
-
pat_with_workspace?: never;
|
|
101282
103099
|
api_key?: never;
|
|
101283
|
-
} | {
|
|
101284
|
-
api_key: never[];
|
|
101285
|
-
client_session?: never;
|
|
101286
103100
|
pat_with_workspace?: never;
|
|
101287
|
-
console_session_with_workspace?: never;
|
|
101288
103101
|
})[];
|
|
101289
103102
|
summary: string;
|
|
101290
103103
|
tags: string[];
|
|
101291
103104
|
'x-fern-sdk-group-name': string[];
|
|
101292
103105
|
'x-fern-sdk-method-name': string;
|
|
101293
|
-
'x-
|
|
101294
|
-
'x-response-key': string;
|
|
103106
|
+
'x-response-key': null;
|
|
101295
103107
|
'x-title': string;
|
|
101296
103108
|
};
|
|
101297
103109
|
post: {
|
|
@@ -101302,6 +103114,11 @@ declare const _default: {
|
|
|
101302
103114
|
'application/json': {
|
|
101303
103115
|
schema: {
|
|
101304
103116
|
properties: {
|
|
103117
|
+
acs_user_id: {
|
|
103118
|
+
description: string;
|
|
103119
|
+
format: string;
|
|
103120
|
+
type: string;
|
|
103121
|
+
};
|
|
101305
103122
|
user_identity_id: {
|
|
101306
103123
|
description: string;
|
|
101307
103124
|
format: string;
|
|
@@ -101320,12 +103137,6 @@ declare const _default: {
|
|
|
101320
103137
|
'application/json': {
|
|
101321
103138
|
schema: {
|
|
101322
103139
|
properties: {
|
|
101323
|
-
acs_systems: {
|
|
101324
|
-
items: {
|
|
101325
|
-
$ref: string;
|
|
101326
|
-
};
|
|
101327
|
-
type: string;
|
|
101328
|
-
};
|
|
101329
103140
|
ok: {
|
|
101330
103141
|
type: string;
|
|
101331
103142
|
};
|
|
@@ -101345,37 +103156,28 @@ declare const _default: {
|
|
|
101345
103156
|
};
|
|
101346
103157
|
};
|
|
101347
103158
|
security: ({
|
|
101348
|
-
|
|
103159
|
+
api_key: never[];
|
|
101349
103160
|
pat_with_workspace?: never;
|
|
101350
103161
|
console_session_with_workspace?: never;
|
|
101351
|
-
api_key?: never;
|
|
101352
103162
|
} | {
|
|
101353
103163
|
pat_with_workspace: never[];
|
|
101354
|
-
client_session?: never;
|
|
101355
|
-
console_session_with_workspace?: never;
|
|
101356
103164
|
api_key?: never;
|
|
103165
|
+
console_session_with_workspace?: never;
|
|
101357
103166
|
} | {
|
|
101358
103167
|
console_session_with_workspace: never[];
|
|
101359
|
-
client_session?: never;
|
|
101360
|
-
pat_with_workspace?: never;
|
|
101361
103168
|
api_key?: never;
|
|
101362
|
-
} | {
|
|
101363
|
-
api_key: never[];
|
|
101364
|
-
client_session?: never;
|
|
101365
103169
|
pat_with_workspace?: never;
|
|
101366
|
-
console_session_with_workspace?: never;
|
|
101367
103170
|
})[];
|
|
101368
103171
|
summary: string;
|
|
101369
103172
|
tags: string[];
|
|
101370
103173
|
'x-fern-sdk-group-name': string[];
|
|
101371
103174
|
'x-fern-sdk-method-name': string;
|
|
101372
|
-
'x-
|
|
101373
|
-
'x-response-key': string;
|
|
103175
|
+
'x-response-key': null;
|
|
101374
103176
|
'x-title': string;
|
|
101375
103177
|
};
|
|
101376
103178
|
};
|
|
101377
|
-
'/user_identities/
|
|
101378
|
-
|
|
103179
|
+
'/user_identities/revoke_access_to_device': {
|
|
103180
|
+
delete: {
|
|
101379
103181
|
description: string;
|
|
101380
103182
|
operationId: string;
|
|
101381
103183
|
parameters: {
|
|
@@ -101394,12 +103196,6 @@ declare const _default: {
|
|
|
101394
103196
|
'application/json': {
|
|
101395
103197
|
schema: {
|
|
101396
103198
|
properties: {
|
|
101397
|
-
acs_users: {
|
|
101398
|
-
items: {
|
|
101399
|
-
$ref: string;
|
|
101400
|
-
};
|
|
101401
|
-
type: string;
|
|
101402
|
-
};
|
|
101403
103199
|
ok: {
|
|
101404
103200
|
type: string;
|
|
101405
103201
|
};
|
|
@@ -101435,8 +103231,7 @@ declare const _default: {
|
|
|
101435
103231
|
tags: string[];
|
|
101436
103232
|
'x-fern-sdk-group-name': string[];
|
|
101437
103233
|
'x-fern-sdk-method-name': string;
|
|
101438
|
-
'x-
|
|
101439
|
-
'x-response-key': string;
|
|
103234
|
+
'x-response-key': null;
|
|
101440
103235
|
'x-title': string;
|
|
101441
103236
|
};
|
|
101442
103237
|
post: {
|
|
@@ -101447,6 +103242,11 @@ declare const _default: {
|
|
|
101447
103242
|
'application/json': {
|
|
101448
103243
|
schema: {
|
|
101449
103244
|
properties: {
|
|
103245
|
+
device_id: {
|
|
103246
|
+
description: string;
|
|
103247
|
+
format: string;
|
|
103248
|
+
type: string;
|
|
103249
|
+
};
|
|
101450
103250
|
user_identity_id: {
|
|
101451
103251
|
description: string;
|
|
101452
103252
|
format: string;
|
|
@@ -101465,12 +103265,6 @@ declare const _default: {
|
|
|
101465
103265
|
'application/json': {
|
|
101466
103266
|
schema: {
|
|
101467
103267
|
properties: {
|
|
101468
|
-
acs_users: {
|
|
101469
|
-
items: {
|
|
101470
|
-
$ref: string;
|
|
101471
|
-
};
|
|
101472
|
-
type: string;
|
|
101473
|
-
};
|
|
101474
103268
|
ok: {
|
|
101475
103269
|
type: string;
|
|
101476
103270
|
};
|
|
@@ -101506,13 +103300,12 @@ declare const _default: {
|
|
|
101506
103300
|
tags: string[];
|
|
101507
103301
|
'x-fern-sdk-group-name': string[];
|
|
101508
103302
|
'x-fern-sdk-method-name': string;
|
|
101509
|
-
'x-
|
|
101510
|
-
'x-response-key': string;
|
|
103303
|
+
'x-response-key': null;
|
|
101511
103304
|
'x-title': string;
|
|
101512
103305
|
};
|
|
101513
103306
|
};
|
|
101514
|
-
'/user_identities/
|
|
101515
|
-
|
|
103307
|
+
'/user_identities/unmanaged/get': {
|
|
103308
|
+
get: {
|
|
101516
103309
|
description: string;
|
|
101517
103310
|
operationId: string;
|
|
101518
103311
|
parameters: {
|
|
@@ -101534,6 +103327,130 @@ declare const _default: {
|
|
|
101534
103327
|
ok: {
|
|
101535
103328
|
type: string;
|
|
101536
103329
|
};
|
|
103330
|
+
user_identity: {
|
|
103331
|
+
description: string;
|
|
103332
|
+
properties: {
|
|
103333
|
+
acs_user_ids: {
|
|
103334
|
+
description: string;
|
|
103335
|
+
items: {
|
|
103336
|
+
format: string;
|
|
103337
|
+
type: string;
|
|
103338
|
+
};
|
|
103339
|
+
type: string;
|
|
103340
|
+
};
|
|
103341
|
+
created_at: {
|
|
103342
|
+
description: string;
|
|
103343
|
+
format: string;
|
|
103344
|
+
type: string;
|
|
103345
|
+
};
|
|
103346
|
+
display_name: {
|
|
103347
|
+
minLength: number;
|
|
103348
|
+
type: string;
|
|
103349
|
+
};
|
|
103350
|
+
email_address: {
|
|
103351
|
+
description: string;
|
|
103352
|
+
format: string;
|
|
103353
|
+
nullable: boolean;
|
|
103354
|
+
type: string;
|
|
103355
|
+
};
|
|
103356
|
+
errors: {
|
|
103357
|
+
description: string;
|
|
103358
|
+
items: {
|
|
103359
|
+
description: string;
|
|
103360
|
+
discriminator: {
|
|
103361
|
+
propertyName: string;
|
|
103362
|
+
};
|
|
103363
|
+
oneOf: {
|
|
103364
|
+
description: string;
|
|
103365
|
+
properties: {
|
|
103366
|
+
acs_system_id: {
|
|
103367
|
+
description: string;
|
|
103368
|
+
format: string;
|
|
103369
|
+
type: string;
|
|
103370
|
+
};
|
|
103371
|
+
acs_user_id: {
|
|
103372
|
+
description: string;
|
|
103373
|
+
format: string;
|
|
103374
|
+
type: string;
|
|
103375
|
+
};
|
|
103376
|
+
created_at: {
|
|
103377
|
+
description: string;
|
|
103378
|
+
format: string;
|
|
103379
|
+
type: string;
|
|
103380
|
+
};
|
|
103381
|
+
error_code: {
|
|
103382
|
+
description: string;
|
|
103383
|
+
enum: string[];
|
|
103384
|
+
type: string;
|
|
103385
|
+
};
|
|
103386
|
+
message: {
|
|
103387
|
+
description: string;
|
|
103388
|
+
type: string;
|
|
103389
|
+
};
|
|
103390
|
+
};
|
|
103391
|
+
required: string[];
|
|
103392
|
+
type: string;
|
|
103393
|
+
}[];
|
|
103394
|
+
};
|
|
103395
|
+
type: string;
|
|
103396
|
+
};
|
|
103397
|
+
full_name: {
|
|
103398
|
+
minLength: number;
|
|
103399
|
+
nullable: boolean;
|
|
103400
|
+
type: string;
|
|
103401
|
+
};
|
|
103402
|
+
phone_number: {
|
|
103403
|
+
description: string;
|
|
103404
|
+
nullable: boolean;
|
|
103405
|
+
type: string;
|
|
103406
|
+
};
|
|
103407
|
+
user_identity_id: {
|
|
103408
|
+
description: string;
|
|
103409
|
+
format: string;
|
|
103410
|
+
type: string;
|
|
103411
|
+
};
|
|
103412
|
+
warnings: {
|
|
103413
|
+
description: string;
|
|
103414
|
+
items: {
|
|
103415
|
+
description: string;
|
|
103416
|
+
discriminator: {
|
|
103417
|
+
propertyName: string;
|
|
103418
|
+
};
|
|
103419
|
+
oneOf: {
|
|
103420
|
+
description: string;
|
|
103421
|
+
properties: {
|
|
103422
|
+
created_at: {
|
|
103423
|
+
description: string;
|
|
103424
|
+
format: string;
|
|
103425
|
+
type: string;
|
|
103426
|
+
};
|
|
103427
|
+
message: {
|
|
103428
|
+
description: string;
|
|
103429
|
+
type: string;
|
|
103430
|
+
};
|
|
103431
|
+
warning_code: {
|
|
103432
|
+
description: string;
|
|
103433
|
+
enum: string[];
|
|
103434
|
+
type: string;
|
|
103435
|
+
};
|
|
103436
|
+
};
|
|
103437
|
+
required: string[];
|
|
103438
|
+
type: string;
|
|
103439
|
+
}[];
|
|
103440
|
+
};
|
|
103441
|
+
type: string;
|
|
103442
|
+
};
|
|
103443
|
+
workspace_id: {
|
|
103444
|
+
description: string;
|
|
103445
|
+
format: string;
|
|
103446
|
+
type: string;
|
|
103447
|
+
};
|
|
103448
|
+
};
|
|
103449
|
+
required: string[];
|
|
103450
|
+
type: string;
|
|
103451
|
+
'x-draft': string;
|
|
103452
|
+
'x-route-path': string;
|
|
103453
|
+
};
|
|
101537
103454
|
};
|
|
101538
103455
|
required: string[];
|
|
101539
103456
|
type: string;
|
|
@@ -101566,7 +103483,8 @@ declare const _default: {
|
|
|
101566
103483
|
tags: string[];
|
|
101567
103484
|
'x-fern-sdk-group-name': string[];
|
|
101568
103485
|
'x-fern-sdk-method-name': string;
|
|
101569
|
-
'x-
|
|
103486
|
+
'x-fern-sdk-return-value': string;
|
|
103487
|
+
'x-response-key': string;
|
|
101570
103488
|
'x-title': string;
|
|
101571
103489
|
};
|
|
101572
103490
|
post: {
|
|
@@ -101577,11 +103495,6 @@ declare const _default: {
|
|
|
101577
103495
|
'application/json': {
|
|
101578
103496
|
schema: {
|
|
101579
103497
|
properties: {
|
|
101580
|
-
acs_user_id: {
|
|
101581
|
-
description: string;
|
|
101582
|
-
format: string;
|
|
101583
|
-
type: string;
|
|
101584
|
-
};
|
|
101585
103498
|
user_identity_id: {
|
|
101586
103499
|
description: string;
|
|
101587
103500
|
format: string;
|
|
@@ -101603,6 +103516,130 @@ declare const _default: {
|
|
|
101603
103516
|
ok: {
|
|
101604
103517
|
type: string;
|
|
101605
103518
|
};
|
|
103519
|
+
user_identity: {
|
|
103520
|
+
description: string;
|
|
103521
|
+
properties: {
|
|
103522
|
+
acs_user_ids: {
|
|
103523
|
+
description: string;
|
|
103524
|
+
items: {
|
|
103525
|
+
format: string;
|
|
103526
|
+
type: string;
|
|
103527
|
+
};
|
|
103528
|
+
type: string;
|
|
103529
|
+
};
|
|
103530
|
+
created_at: {
|
|
103531
|
+
description: string;
|
|
103532
|
+
format: string;
|
|
103533
|
+
type: string;
|
|
103534
|
+
};
|
|
103535
|
+
display_name: {
|
|
103536
|
+
minLength: number;
|
|
103537
|
+
type: string;
|
|
103538
|
+
};
|
|
103539
|
+
email_address: {
|
|
103540
|
+
description: string;
|
|
103541
|
+
format: string;
|
|
103542
|
+
nullable: boolean;
|
|
103543
|
+
type: string;
|
|
103544
|
+
};
|
|
103545
|
+
errors: {
|
|
103546
|
+
description: string;
|
|
103547
|
+
items: {
|
|
103548
|
+
description: string;
|
|
103549
|
+
discriminator: {
|
|
103550
|
+
propertyName: string;
|
|
103551
|
+
};
|
|
103552
|
+
oneOf: {
|
|
103553
|
+
description: string;
|
|
103554
|
+
properties: {
|
|
103555
|
+
acs_system_id: {
|
|
103556
|
+
description: string;
|
|
103557
|
+
format: string;
|
|
103558
|
+
type: string;
|
|
103559
|
+
};
|
|
103560
|
+
acs_user_id: {
|
|
103561
|
+
description: string;
|
|
103562
|
+
format: string;
|
|
103563
|
+
type: string;
|
|
103564
|
+
};
|
|
103565
|
+
created_at: {
|
|
103566
|
+
description: string;
|
|
103567
|
+
format: string;
|
|
103568
|
+
type: string;
|
|
103569
|
+
};
|
|
103570
|
+
error_code: {
|
|
103571
|
+
description: string;
|
|
103572
|
+
enum: string[];
|
|
103573
|
+
type: string;
|
|
103574
|
+
};
|
|
103575
|
+
message: {
|
|
103576
|
+
description: string;
|
|
103577
|
+
type: string;
|
|
103578
|
+
};
|
|
103579
|
+
};
|
|
103580
|
+
required: string[];
|
|
103581
|
+
type: string;
|
|
103582
|
+
}[];
|
|
103583
|
+
};
|
|
103584
|
+
type: string;
|
|
103585
|
+
};
|
|
103586
|
+
full_name: {
|
|
103587
|
+
minLength: number;
|
|
103588
|
+
nullable: boolean;
|
|
103589
|
+
type: string;
|
|
103590
|
+
};
|
|
103591
|
+
phone_number: {
|
|
103592
|
+
description: string;
|
|
103593
|
+
nullable: boolean;
|
|
103594
|
+
type: string;
|
|
103595
|
+
};
|
|
103596
|
+
user_identity_id: {
|
|
103597
|
+
description: string;
|
|
103598
|
+
format: string;
|
|
103599
|
+
type: string;
|
|
103600
|
+
};
|
|
103601
|
+
warnings: {
|
|
103602
|
+
description: string;
|
|
103603
|
+
items: {
|
|
103604
|
+
description: string;
|
|
103605
|
+
discriminator: {
|
|
103606
|
+
propertyName: string;
|
|
103607
|
+
};
|
|
103608
|
+
oneOf: {
|
|
103609
|
+
description: string;
|
|
103610
|
+
properties: {
|
|
103611
|
+
created_at: {
|
|
103612
|
+
description: string;
|
|
103613
|
+
format: string;
|
|
103614
|
+
type: string;
|
|
103615
|
+
};
|
|
103616
|
+
message: {
|
|
103617
|
+
description: string;
|
|
103618
|
+
type: string;
|
|
103619
|
+
};
|
|
103620
|
+
warning_code: {
|
|
103621
|
+
description: string;
|
|
103622
|
+
enum: string[];
|
|
103623
|
+
type: string;
|
|
103624
|
+
};
|
|
103625
|
+
};
|
|
103626
|
+
required: string[];
|
|
103627
|
+
type: string;
|
|
103628
|
+
}[];
|
|
103629
|
+
};
|
|
103630
|
+
type: string;
|
|
103631
|
+
};
|
|
103632
|
+
workspace_id: {
|
|
103633
|
+
description: string;
|
|
103634
|
+
format: string;
|
|
103635
|
+
type: string;
|
|
103636
|
+
};
|
|
103637
|
+
};
|
|
103638
|
+
required: string[];
|
|
103639
|
+
type: string;
|
|
103640
|
+
'x-draft': string;
|
|
103641
|
+
'x-route-path': string;
|
|
103642
|
+
};
|
|
101606
103643
|
};
|
|
101607
103644
|
required: string[];
|
|
101608
103645
|
type: string;
|
|
@@ -101635,21 +103672,20 @@ declare const _default: {
|
|
|
101635
103672
|
tags: string[];
|
|
101636
103673
|
'x-fern-sdk-group-name': string[];
|
|
101637
103674
|
'x-fern-sdk-method-name': string;
|
|
101638
|
-
'x-
|
|
103675
|
+
'x-fern-sdk-return-value': string;
|
|
103676
|
+
'x-response-key': string;
|
|
101639
103677
|
'x-title': string;
|
|
101640
103678
|
};
|
|
101641
103679
|
};
|
|
101642
|
-
'/user_identities/
|
|
101643
|
-
|
|
103680
|
+
'/user_identities/unmanaged/list': {
|
|
103681
|
+
get: {
|
|
101644
103682
|
description: string;
|
|
101645
103683
|
operationId: string;
|
|
101646
103684
|
parameters: {
|
|
101647
103685
|
in: string;
|
|
101648
103686
|
name: string;
|
|
101649
|
-
required: boolean;
|
|
101650
103687
|
schema: {
|
|
101651
103688
|
description: string;
|
|
101652
|
-
format: string;
|
|
101653
103689
|
type: string;
|
|
101654
103690
|
};
|
|
101655
103691
|
}[];
|
|
@@ -101662,6 +103698,133 @@ declare const _default: {
|
|
|
101662
103698
|
ok: {
|
|
101663
103699
|
type: string;
|
|
101664
103700
|
};
|
|
103701
|
+
user_identities: {
|
|
103702
|
+
items: {
|
|
103703
|
+
description: string;
|
|
103704
|
+
properties: {
|
|
103705
|
+
acs_user_ids: {
|
|
103706
|
+
description: string;
|
|
103707
|
+
items: {
|
|
103708
|
+
format: string;
|
|
103709
|
+
type: string;
|
|
103710
|
+
};
|
|
103711
|
+
type: string;
|
|
103712
|
+
};
|
|
103713
|
+
created_at: {
|
|
103714
|
+
description: string;
|
|
103715
|
+
format: string;
|
|
103716
|
+
type: string;
|
|
103717
|
+
};
|
|
103718
|
+
display_name: {
|
|
103719
|
+
minLength: number;
|
|
103720
|
+
type: string;
|
|
103721
|
+
};
|
|
103722
|
+
email_address: {
|
|
103723
|
+
description: string;
|
|
103724
|
+
format: string;
|
|
103725
|
+
nullable: boolean;
|
|
103726
|
+
type: string;
|
|
103727
|
+
};
|
|
103728
|
+
errors: {
|
|
103729
|
+
description: string;
|
|
103730
|
+
items: {
|
|
103731
|
+
description: string;
|
|
103732
|
+
discriminator: {
|
|
103733
|
+
propertyName: string;
|
|
103734
|
+
};
|
|
103735
|
+
oneOf: {
|
|
103736
|
+
description: string;
|
|
103737
|
+
properties: {
|
|
103738
|
+
acs_system_id: {
|
|
103739
|
+
description: string;
|
|
103740
|
+
format: string;
|
|
103741
|
+
type: string;
|
|
103742
|
+
};
|
|
103743
|
+
acs_user_id: {
|
|
103744
|
+
description: string;
|
|
103745
|
+
format: string;
|
|
103746
|
+
type: string;
|
|
103747
|
+
};
|
|
103748
|
+
created_at: {
|
|
103749
|
+
description: string;
|
|
103750
|
+
format: string;
|
|
103751
|
+
type: string;
|
|
103752
|
+
};
|
|
103753
|
+
error_code: {
|
|
103754
|
+
description: string;
|
|
103755
|
+
enum: string[];
|
|
103756
|
+
type: string;
|
|
103757
|
+
};
|
|
103758
|
+
message: {
|
|
103759
|
+
description: string;
|
|
103760
|
+
type: string;
|
|
103761
|
+
};
|
|
103762
|
+
};
|
|
103763
|
+
required: string[];
|
|
103764
|
+
type: string;
|
|
103765
|
+
}[];
|
|
103766
|
+
};
|
|
103767
|
+
type: string;
|
|
103768
|
+
};
|
|
103769
|
+
full_name: {
|
|
103770
|
+
minLength: number;
|
|
103771
|
+
nullable: boolean;
|
|
103772
|
+
type: string;
|
|
103773
|
+
};
|
|
103774
|
+
phone_number: {
|
|
103775
|
+
description: string;
|
|
103776
|
+
nullable: boolean;
|
|
103777
|
+
type: string;
|
|
103778
|
+
};
|
|
103779
|
+
user_identity_id: {
|
|
103780
|
+
description: string;
|
|
103781
|
+
format: string;
|
|
103782
|
+
type: string;
|
|
103783
|
+
};
|
|
103784
|
+
warnings: {
|
|
103785
|
+
description: string;
|
|
103786
|
+
items: {
|
|
103787
|
+
description: string;
|
|
103788
|
+
discriminator: {
|
|
103789
|
+
propertyName: string;
|
|
103790
|
+
};
|
|
103791
|
+
oneOf: {
|
|
103792
|
+
description: string;
|
|
103793
|
+
properties: {
|
|
103794
|
+
created_at: {
|
|
103795
|
+
description: string;
|
|
103796
|
+
format: string;
|
|
103797
|
+
type: string;
|
|
103798
|
+
};
|
|
103799
|
+
message: {
|
|
103800
|
+
description: string;
|
|
103801
|
+
type: string;
|
|
103802
|
+
};
|
|
103803
|
+
warning_code: {
|
|
103804
|
+
description: string;
|
|
103805
|
+
enum: string[];
|
|
103806
|
+
type: string;
|
|
103807
|
+
};
|
|
103808
|
+
};
|
|
103809
|
+
required: string[];
|
|
103810
|
+
type: string;
|
|
103811
|
+
}[];
|
|
103812
|
+
};
|
|
103813
|
+
type: string;
|
|
103814
|
+
};
|
|
103815
|
+
workspace_id: {
|
|
103816
|
+
description: string;
|
|
103817
|
+
format: string;
|
|
103818
|
+
type: string;
|
|
103819
|
+
};
|
|
103820
|
+
};
|
|
103821
|
+
required: string[];
|
|
103822
|
+
type: string;
|
|
103823
|
+
'x-draft': string;
|
|
103824
|
+
'x-route-path': string;
|
|
103825
|
+
};
|
|
103826
|
+
type: string;
|
|
103827
|
+
};
|
|
101665
103828
|
};
|
|
101666
103829
|
required: string[];
|
|
101667
103830
|
type: string;
|
|
@@ -101679,22 +103842,31 @@ declare const _default: {
|
|
|
101679
103842
|
};
|
|
101680
103843
|
security: ({
|
|
101681
103844
|
api_key: never[];
|
|
103845
|
+
client_session?: never;
|
|
103846
|
+
pat_with_workspace?: never;
|
|
103847
|
+
console_session_with_workspace?: never;
|
|
103848
|
+
} | {
|
|
103849
|
+
client_session: never[];
|
|
103850
|
+
api_key?: never;
|
|
101682
103851
|
pat_with_workspace?: never;
|
|
101683
103852
|
console_session_with_workspace?: never;
|
|
101684
103853
|
} | {
|
|
101685
103854
|
pat_with_workspace: never[];
|
|
101686
103855
|
api_key?: never;
|
|
103856
|
+
client_session?: never;
|
|
101687
103857
|
console_session_with_workspace?: never;
|
|
101688
103858
|
} | {
|
|
101689
103859
|
console_session_with_workspace: never[];
|
|
101690
103860
|
api_key?: never;
|
|
103861
|
+
client_session?: never;
|
|
101691
103862
|
pat_with_workspace?: never;
|
|
101692
103863
|
})[];
|
|
101693
103864
|
summary: string;
|
|
101694
103865
|
tags: string[];
|
|
101695
103866
|
'x-fern-sdk-group-name': string[];
|
|
101696
103867
|
'x-fern-sdk-method-name': string;
|
|
101697
|
-
'x-
|
|
103868
|
+
'x-fern-sdk-return-value': string;
|
|
103869
|
+
'x-response-key': string;
|
|
101698
103870
|
'x-title': string;
|
|
101699
103871
|
};
|
|
101700
103872
|
post: {
|
|
@@ -101705,18 +103877,11 @@ declare const _default: {
|
|
|
101705
103877
|
'application/json': {
|
|
101706
103878
|
schema: {
|
|
101707
103879
|
properties: {
|
|
101708
|
-
|
|
101709
|
-
description: string;
|
|
101710
|
-
format: string;
|
|
101711
|
-
type: string;
|
|
101712
|
-
};
|
|
101713
|
-
user_identity_id: {
|
|
103880
|
+
search: {
|
|
101714
103881
|
description: string;
|
|
101715
|
-
format: string;
|
|
101716
103882
|
type: string;
|
|
101717
103883
|
};
|
|
101718
103884
|
};
|
|
101719
|
-
required: string[];
|
|
101720
103885
|
type: string;
|
|
101721
103886
|
};
|
|
101722
103887
|
};
|
|
@@ -101731,6 +103896,133 @@ declare const _default: {
|
|
|
101731
103896
|
ok: {
|
|
101732
103897
|
type: string;
|
|
101733
103898
|
};
|
|
103899
|
+
user_identities: {
|
|
103900
|
+
items: {
|
|
103901
|
+
description: string;
|
|
103902
|
+
properties: {
|
|
103903
|
+
acs_user_ids: {
|
|
103904
|
+
description: string;
|
|
103905
|
+
items: {
|
|
103906
|
+
format: string;
|
|
103907
|
+
type: string;
|
|
103908
|
+
};
|
|
103909
|
+
type: string;
|
|
103910
|
+
};
|
|
103911
|
+
created_at: {
|
|
103912
|
+
description: string;
|
|
103913
|
+
format: string;
|
|
103914
|
+
type: string;
|
|
103915
|
+
};
|
|
103916
|
+
display_name: {
|
|
103917
|
+
minLength: number;
|
|
103918
|
+
type: string;
|
|
103919
|
+
};
|
|
103920
|
+
email_address: {
|
|
103921
|
+
description: string;
|
|
103922
|
+
format: string;
|
|
103923
|
+
nullable: boolean;
|
|
103924
|
+
type: string;
|
|
103925
|
+
};
|
|
103926
|
+
errors: {
|
|
103927
|
+
description: string;
|
|
103928
|
+
items: {
|
|
103929
|
+
description: string;
|
|
103930
|
+
discriminator: {
|
|
103931
|
+
propertyName: string;
|
|
103932
|
+
};
|
|
103933
|
+
oneOf: {
|
|
103934
|
+
description: string;
|
|
103935
|
+
properties: {
|
|
103936
|
+
acs_system_id: {
|
|
103937
|
+
description: string;
|
|
103938
|
+
format: string;
|
|
103939
|
+
type: string;
|
|
103940
|
+
};
|
|
103941
|
+
acs_user_id: {
|
|
103942
|
+
description: string;
|
|
103943
|
+
format: string;
|
|
103944
|
+
type: string;
|
|
103945
|
+
};
|
|
103946
|
+
created_at: {
|
|
103947
|
+
description: string;
|
|
103948
|
+
format: string;
|
|
103949
|
+
type: string;
|
|
103950
|
+
};
|
|
103951
|
+
error_code: {
|
|
103952
|
+
description: string;
|
|
103953
|
+
enum: string[];
|
|
103954
|
+
type: string;
|
|
103955
|
+
};
|
|
103956
|
+
message: {
|
|
103957
|
+
description: string;
|
|
103958
|
+
type: string;
|
|
103959
|
+
};
|
|
103960
|
+
};
|
|
103961
|
+
required: string[];
|
|
103962
|
+
type: string;
|
|
103963
|
+
}[];
|
|
103964
|
+
};
|
|
103965
|
+
type: string;
|
|
103966
|
+
};
|
|
103967
|
+
full_name: {
|
|
103968
|
+
minLength: number;
|
|
103969
|
+
nullable: boolean;
|
|
103970
|
+
type: string;
|
|
103971
|
+
};
|
|
103972
|
+
phone_number: {
|
|
103973
|
+
description: string;
|
|
103974
|
+
nullable: boolean;
|
|
103975
|
+
type: string;
|
|
103976
|
+
};
|
|
103977
|
+
user_identity_id: {
|
|
103978
|
+
description: string;
|
|
103979
|
+
format: string;
|
|
103980
|
+
type: string;
|
|
103981
|
+
};
|
|
103982
|
+
warnings: {
|
|
103983
|
+
description: string;
|
|
103984
|
+
items: {
|
|
103985
|
+
description: string;
|
|
103986
|
+
discriminator: {
|
|
103987
|
+
propertyName: string;
|
|
103988
|
+
};
|
|
103989
|
+
oneOf: {
|
|
103990
|
+
description: string;
|
|
103991
|
+
properties: {
|
|
103992
|
+
created_at: {
|
|
103993
|
+
description: string;
|
|
103994
|
+
format: string;
|
|
103995
|
+
type: string;
|
|
103996
|
+
};
|
|
103997
|
+
message: {
|
|
103998
|
+
description: string;
|
|
103999
|
+
type: string;
|
|
104000
|
+
};
|
|
104001
|
+
warning_code: {
|
|
104002
|
+
description: string;
|
|
104003
|
+
enum: string[];
|
|
104004
|
+
type: string;
|
|
104005
|
+
};
|
|
104006
|
+
};
|
|
104007
|
+
required: string[];
|
|
104008
|
+
type: string;
|
|
104009
|
+
}[];
|
|
104010
|
+
};
|
|
104011
|
+
type: string;
|
|
104012
|
+
};
|
|
104013
|
+
workspace_id: {
|
|
104014
|
+
description: string;
|
|
104015
|
+
format: string;
|
|
104016
|
+
type: string;
|
|
104017
|
+
};
|
|
104018
|
+
};
|
|
104019
|
+
required: string[];
|
|
104020
|
+
type: string;
|
|
104021
|
+
'x-draft': string;
|
|
104022
|
+
'x-route-path': string;
|
|
104023
|
+
};
|
|
104024
|
+
type: string;
|
|
104025
|
+
};
|
|
101734
104026
|
};
|
|
101735
104027
|
required: string[];
|
|
101736
104028
|
type: string;
|
|
@@ -101748,22 +104040,31 @@ declare const _default: {
|
|
|
101748
104040
|
};
|
|
101749
104041
|
security: ({
|
|
101750
104042
|
api_key: never[];
|
|
104043
|
+
client_session?: never;
|
|
104044
|
+
pat_with_workspace?: never;
|
|
104045
|
+
console_session_with_workspace?: never;
|
|
104046
|
+
} | {
|
|
104047
|
+
client_session: never[];
|
|
104048
|
+
api_key?: never;
|
|
101751
104049
|
pat_with_workspace?: never;
|
|
101752
104050
|
console_session_with_workspace?: never;
|
|
101753
104051
|
} | {
|
|
101754
104052
|
pat_with_workspace: never[];
|
|
101755
104053
|
api_key?: never;
|
|
104054
|
+
client_session?: never;
|
|
101756
104055
|
console_session_with_workspace?: never;
|
|
101757
104056
|
} | {
|
|
101758
104057
|
console_session_with_workspace: never[];
|
|
101759
104058
|
api_key?: never;
|
|
104059
|
+
client_session?: never;
|
|
101760
104060
|
pat_with_workspace?: never;
|
|
101761
104061
|
})[];
|
|
101762
104062
|
summary: string;
|
|
101763
104063
|
tags: string[];
|
|
101764
104064
|
'x-fern-sdk-group-name': string[];
|
|
101765
104065
|
'x-fern-sdk-method-name': string;
|
|
101766
|
-
'x-
|
|
104066
|
+
'x-fern-sdk-return-value': string;
|
|
104067
|
+
'x-response-key': string;
|
|
101767
104068
|
'x-title': string;
|
|
101768
104069
|
};
|
|
101769
104070
|
};
|
|
@@ -116109,6 +118410,131 @@ type Routes = {
|
|
|
116109
118410
|
}[];
|
|
116110
118411
|
};
|
|
116111
118412
|
};
|
|
118413
|
+
'/access_grants/unmanaged/get': {
|
|
118414
|
+
route: '/access_grants/unmanaged/get';
|
|
118415
|
+
method: 'GET' | 'POST';
|
|
118416
|
+
queryParams: {};
|
|
118417
|
+
jsonBody: {};
|
|
118418
|
+
commonParams: {
|
|
118419
|
+
/** ID of unmanaged Access Grant to get. */
|
|
118420
|
+
access_grant_id: string;
|
|
118421
|
+
};
|
|
118422
|
+
formData: {};
|
|
118423
|
+
jsonResponse: {
|
|
118424
|
+
/** Represents an unmanaged Access Grant. Unmanaged Access Grants do not have client sessions, instant keys, customization profiles, or keys. */
|
|
118425
|
+
access_grant: {
|
|
118426
|
+
/** ID of the Seam workspace associated with the Access Grant. */
|
|
118427
|
+
workspace_id: string;
|
|
118428
|
+
/** ID of the Access Grant. */
|
|
118429
|
+
access_grant_id: string;
|
|
118430
|
+
/** ID of user identity to which the Access Grant gives access. */
|
|
118431
|
+
user_identity_id: string;
|
|
118432
|
+
/**
|
|
118433
|
+
* @deprecated Use `space_ids`.*/
|
|
118434
|
+
location_ids: string[];
|
|
118435
|
+
/** IDs of the spaces to which the Access Grant gives access. */
|
|
118436
|
+
space_ids: string[];
|
|
118437
|
+
/** Access methods that the user requested for the Access Grant. */
|
|
118438
|
+
requested_access_methods: {
|
|
118439
|
+
/** Display name of the access method. */
|
|
118440
|
+
display_name: string;
|
|
118441
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
118442
|
+
mode: 'code' | 'card' | 'mobile_key';
|
|
118443
|
+
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
118444
|
+
code?: string | undefined;
|
|
118445
|
+
/** Date and time at which the requested access method was added to the Access Grant. */
|
|
118446
|
+
created_at: string;
|
|
118447
|
+
/** IDs of the access methods created for the requested access method. */
|
|
118448
|
+
created_access_method_ids: string[];
|
|
118449
|
+
}[];
|
|
118450
|
+
/** IDs of the access methods created for the Access Grant. */
|
|
118451
|
+
access_method_ids: string[];
|
|
118452
|
+
/** Name of the Access Grant. If not provided, the display name will be computed. */
|
|
118453
|
+
name: string | null;
|
|
118454
|
+
/** Display name of the Access Grant. */
|
|
118455
|
+
display_name: string;
|
|
118456
|
+
/** Date and time at which the Access Grant was created. */
|
|
118457
|
+
created_at: string;
|
|
118458
|
+
/** Date and time at which the Access Grant starts. */
|
|
118459
|
+
starts_at: string;
|
|
118460
|
+
/** Date and time at which the Access Grant ends. */
|
|
118461
|
+
ends_at: string | null;
|
|
118462
|
+
/** Warnings associated with the [access grant](https://docs.seam.co/latest/capability-guides/access-grants). */
|
|
118463
|
+
warnings: {
|
|
118464
|
+
/** Date and time at which Seam created the warning. */
|
|
118465
|
+
created_at: string;
|
|
118466
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
118467
|
+
message: string;
|
|
118468
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118469
|
+
warning_code: 'being_deleted';
|
|
118470
|
+
}[];
|
|
118471
|
+
};
|
|
118472
|
+
};
|
|
118473
|
+
};
|
|
118474
|
+
'/access_grants/unmanaged/list': {
|
|
118475
|
+
route: '/access_grants/unmanaged/list';
|
|
118476
|
+
method: 'GET' | 'POST';
|
|
118477
|
+
queryParams: {};
|
|
118478
|
+
jsonBody: {};
|
|
118479
|
+
commonParams: {
|
|
118480
|
+
/** ID of user identity by which you want to filter the list of unmanaged Access Grants. */
|
|
118481
|
+
user_identity_id?: string | undefined;
|
|
118482
|
+
/** ID of the access system by which you want to filter the list of unmanaged Access Grants. */
|
|
118483
|
+
acs_system_id?: string | undefined;
|
|
118484
|
+
/** ID of the entrance by which you want to filter the list of unmanaged Access Grants. */
|
|
118485
|
+
acs_entrance_id?: string | undefined;
|
|
118486
|
+
};
|
|
118487
|
+
formData: {};
|
|
118488
|
+
jsonResponse: {
|
|
118489
|
+
access_grants: {
|
|
118490
|
+
/** ID of the Seam workspace associated with the Access Grant. */
|
|
118491
|
+
workspace_id: string;
|
|
118492
|
+
/** ID of the Access Grant. */
|
|
118493
|
+
access_grant_id: string;
|
|
118494
|
+
/** ID of user identity to which the Access Grant gives access. */
|
|
118495
|
+
user_identity_id: string;
|
|
118496
|
+
/**
|
|
118497
|
+
* @deprecated Use `space_ids`.*/
|
|
118498
|
+
location_ids: string[];
|
|
118499
|
+
/** IDs of the spaces to which the Access Grant gives access. */
|
|
118500
|
+
space_ids: string[];
|
|
118501
|
+
/** Access methods that the user requested for the Access Grant. */
|
|
118502
|
+
requested_access_methods: {
|
|
118503
|
+
/** Display name of the access method. */
|
|
118504
|
+
display_name: string;
|
|
118505
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
118506
|
+
mode: 'code' | 'card' | 'mobile_key';
|
|
118507
|
+
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
118508
|
+
code?: string | undefined;
|
|
118509
|
+
/** Date and time at which the requested access method was added to the Access Grant. */
|
|
118510
|
+
created_at: string;
|
|
118511
|
+
/** IDs of the access methods created for the requested access method. */
|
|
118512
|
+
created_access_method_ids: string[];
|
|
118513
|
+
}[];
|
|
118514
|
+
/** IDs of the access methods created for the Access Grant. */
|
|
118515
|
+
access_method_ids: string[];
|
|
118516
|
+
/** Name of the Access Grant. If not provided, the display name will be computed. */
|
|
118517
|
+
name: string | null;
|
|
118518
|
+
/** Display name of the Access Grant. */
|
|
118519
|
+
display_name: string;
|
|
118520
|
+
/** Date and time at which the Access Grant was created. */
|
|
118521
|
+
created_at: string;
|
|
118522
|
+
/** Date and time at which the Access Grant starts. */
|
|
118523
|
+
starts_at: string;
|
|
118524
|
+
/** Date and time at which the Access Grant ends. */
|
|
118525
|
+
ends_at: string | null;
|
|
118526
|
+
/** Warnings associated with the [access grant](https://docs.seam.co/latest/capability-guides/access-grants). */
|
|
118527
|
+
warnings: {
|
|
118528
|
+
/** Date and time at which Seam created the warning. */
|
|
118529
|
+
created_at: string;
|
|
118530
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
118531
|
+
message: string;
|
|
118532
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118533
|
+
warning_code: 'being_deleted';
|
|
118534
|
+
}[];
|
|
118535
|
+
}[];
|
|
118536
|
+
};
|
|
118537
|
+
};
|
|
116112
118538
|
'/access_grants/update': {
|
|
116113
118539
|
route: '/access_grants/update';
|
|
116114
118540
|
method: 'POST' | 'PATCH';
|
|
@@ -124588,6 +127014,97 @@ type Routes = {
|
|
|
124588
127014
|
}[];
|
|
124589
127015
|
};
|
|
124590
127016
|
};
|
|
127017
|
+
'/access_methods/unmanaged/get': {
|
|
127018
|
+
route: '/access_methods/unmanaged/get';
|
|
127019
|
+
method: 'GET' | 'POST';
|
|
127020
|
+
queryParams: {};
|
|
127021
|
+
jsonBody: {};
|
|
127022
|
+
commonParams: {
|
|
127023
|
+
/** ID of unmanaged access method to get. */
|
|
127024
|
+
access_method_id: string;
|
|
127025
|
+
};
|
|
127026
|
+
formData: {};
|
|
127027
|
+
jsonResponse: {
|
|
127028
|
+
/** Represents an unmanaged access method. Unmanaged access methods do not have client sessions, instant keys, customization profiles, or keys. */
|
|
127029
|
+
access_method: {
|
|
127030
|
+
/** ID of the Seam workspace associated with the access method. */
|
|
127031
|
+
workspace_id: string;
|
|
127032
|
+
/** ID of the access method. */
|
|
127033
|
+
access_method_id: string;
|
|
127034
|
+
/** Display name of the access method. */
|
|
127035
|
+
display_name: string;
|
|
127036
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
127037
|
+
mode: 'code' | 'card' | 'mobile_key';
|
|
127038
|
+
/** Date and time at which the access method was created. */
|
|
127039
|
+
created_at: string;
|
|
127040
|
+
/** Date and time at which the access method was issued. */
|
|
127041
|
+
issued_at: string | null;
|
|
127042
|
+
/** Indicates whether the access method has been issued. */
|
|
127043
|
+
is_issued: boolean;
|
|
127044
|
+
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
127045
|
+
is_encoding_required?: boolean | undefined;
|
|
127046
|
+
/** The actual PIN code for code access methods. */
|
|
127047
|
+
code?: (string | null) | undefined;
|
|
127048
|
+
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
127049
|
+
warnings: {
|
|
127050
|
+
/** Date and time at which Seam created the warning. */
|
|
127051
|
+
created_at: string;
|
|
127052
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
127053
|
+
message: string;
|
|
127054
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127055
|
+
warning_code: 'being_deleted';
|
|
127056
|
+
}[];
|
|
127057
|
+
};
|
|
127058
|
+
};
|
|
127059
|
+
};
|
|
127060
|
+
'/access_methods/unmanaged/list': {
|
|
127061
|
+
route: '/access_methods/unmanaged/list';
|
|
127062
|
+
method: 'GET' | 'POST';
|
|
127063
|
+
queryParams: {};
|
|
127064
|
+
jsonBody: {};
|
|
127065
|
+
commonParams: {
|
|
127066
|
+
/** ID of Access Grant to list unmanaged access methods for. */
|
|
127067
|
+
access_grant_id: string;
|
|
127068
|
+
/** ID of the device for which you want to retrieve all unmanaged access methods. */
|
|
127069
|
+
device_id?: string | undefined;
|
|
127070
|
+
/** ID of the entrance for which you want to retrieve all unmanaged access methods. */
|
|
127071
|
+
acs_entrance_id?: string | undefined;
|
|
127072
|
+
/** ID of the space for which you want to retrieve all unmanaged access methods. */
|
|
127073
|
+
space_id?: string | undefined;
|
|
127074
|
+
};
|
|
127075
|
+
formData: {};
|
|
127076
|
+
jsonResponse: {
|
|
127077
|
+
access_methods: {
|
|
127078
|
+
/** ID of the Seam workspace associated with the access method. */
|
|
127079
|
+
workspace_id: string;
|
|
127080
|
+
/** ID of the access method. */
|
|
127081
|
+
access_method_id: string;
|
|
127082
|
+
/** Display name of the access method. */
|
|
127083
|
+
display_name: string;
|
|
127084
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
127085
|
+
mode: 'code' | 'card' | 'mobile_key';
|
|
127086
|
+
/** Date and time at which the access method was created. */
|
|
127087
|
+
created_at: string;
|
|
127088
|
+
/** Date and time at which the access method was issued. */
|
|
127089
|
+
issued_at: string | null;
|
|
127090
|
+
/** Indicates whether the access method has been issued. */
|
|
127091
|
+
is_issued: boolean;
|
|
127092
|
+
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
127093
|
+
is_encoding_required?: boolean | undefined;
|
|
127094
|
+
/** The actual PIN code for code access methods. */
|
|
127095
|
+
code?: (string | null) | undefined;
|
|
127096
|
+
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
127097
|
+
warnings: {
|
|
127098
|
+
/** Date and time at which Seam created the warning. */
|
|
127099
|
+
created_at: string;
|
|
127100
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
127101
|
+
message: string;
|
|
127102
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127103
|
+
warning_code: 'being_deleted';
|
|
127104
|
+
}[];
|
|
127105
|
+
}[];
|
|
127106
|
+
};
|
|
127107
|
+
};
|
|
124591
127108
|
'/acs/access_groups/add_user': {
|
|
124592
127109
|
route: '/acs/access_groups/add_user';
|
|
124593
127110
|
method: 'PUT' | 'POST';
|
|
@@ -160419,7 +162936,7 @@ type Routes = {
|
|
|
160419
162936
|
/** ID of the partner resource for which you want to retrieve all automation runs. */
|
|
160420
162937
|
partner_resource_id?: string | undefined;
|
|
160421
162938
|
/** Filter automation runs by the specific rule that was executed. */
|
|
160422
|
-
rule?: ('reservation_created' | 'reservation_time_updated' | 'reservation_deleted') | undefined;
|
|
162939
|
+
rule?: ('reservation_created' | 'reservation_time_updated' | 'reservation_deleted' | 'space_name_updated') | undefined;
|
|
160423
162940
|
/** Filter automation runs by success status. */
|
|
160424
162941
|
success?: boolean | undefined;
|
|
160425
162942
|
/** Maximum number of records to return per page. */
|
|
@@ -160495,6 +163012,10 @@ type Routes = {
|
|
|
160495
163012
|
rule: 'reservation_deleted';
|
|
160496
163013
|
config?: {} | undefined;
|
|
160497
163014
|
} | undefined;
|
|
163015
|
+
space_name_updated?: {
|
|
163016
|
+
rule: 'space_name_updated';
|
|
163017
|
+
config?: {} | undefined;
|
|
163018
|
+
} | undefined;
|
|
160498
163019
|
} | undefined;
|
|
160499
163020
|
};
|
|
160500
163021
|
};
|
|
@@ -160520,6 +163041,10 @@ type Routes = {
|
|
|
160520
163041
|
rule: 'reservation_deleted';
|
|
160521
163042
|
config?: {} | undefined;
|
|
160522
163043
|
} | undefined;
|
|
163044
|
+
space_name_updated?: {
|
|
163045
|
+
rule: 'space_name_updated';
|
|
163046
|
+
config?: {} | undefined;
|
|
163047
|
+
} | undefined;
|
|
160523
163048
|
} | undefined;
|
|
160524
163049
|
};
|
|
160525
163050
|
commonParams: {};
|
|
@@ -183907,6 +186432,123 @@ type Routes = {
|
|
|
183907
186432
|
formData: {};
|
|
183908
186433
|
jsonResponse: {};
|
|
183909
186434
|
};
|
|
186435
|
+
'/user_identities/unmanaged/get': {
|
|
186436
|
+
route: '/user_identities/unmanaged/get';
|
|
186437
|
+
method: 'GET' | 'POST';
|
|
186438
|
+
queryParams: {};
|
|
186439
|
+
jsonBody: {};
|
|
186440
|
+
commonParams: {
|
|
186441
|
+
/** ID of the unmanaged user identity that you want to get. */
|
|
186442
|
+
user_identity_id: string;
|
|
186443
|
+
};
|
|
186444
|
+
formData: {};
|
|
186445
|
+
jsonResponse: {
|
|
186446
|
+
/** Represents an unmanaged user identity. Unmanaged user identities do not have keys. */
|
|
186447
|
+
user_identity: {
|
|
186448
|
+
/** ID of the user identity. */
|
|
186449
|
+
user_identity_id: string;
|
|
186450
|
+
/** Unique email address for the user identity. */
|
|
186451
|
+
email_address: string | null;
|
|
186452
|
+
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
186453
|
+
phone_number: string | null;
|
|
186454
|
+
display_name: string;
|
|
186455
|
+
full_name: string | null;
|
|
186456
|
+
/** Date and time at which the user identity was created. */
|
|
186457
|
+
created_at: string;
|
|
186458
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
186459
|
+
workspace_id: string;
|
|
186460
|
+
/** Array of errors associated with the user identity. Each error object within the array contains fields like "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
186461
|
+
errors: {
|
|
186462
|
+
/** Date and time at which Seam created the error. */
|
|
186463
|
+
created_at: string;
|
|
186464
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
186465
|
+
message: string;
|
|
186466
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
186467
|
+
error_code: 'issue_with_acs_user';
|
|
186468
|
+
/** ID of the access system user that has an issue. */
|
|
186469
|
+
acs_user_id: string;
|
|
186470
|
+
/** ID of the access system that the user identity is associated with. */
|
|
186471
|
+
acs_system_id: string;
|
|
186472
|
+
}[];
|
|
186473
|
+
/** Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
186474
|
+
warnings: ({
|
|
186475
|
+
/** Date and time at which Seam created the warning. */
|
|
186476
|
+
created_at: string;
|
|
186477
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
186478
|
+
message: string;
|
|
186479
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
186480
|
+
warning_code: 'being_deleted';
|
|
186481
|
+
} | {
|
|
186482
|
+
/** Date and time at which Seam created the warning. */
|
|
186483
|
+
created_at: string;
|
|
186484
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
186485
|
+
message: string;
|
|
186486
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
186487
|
+
warning_code: 'acs_user_profile_does_not_match_user_identity';
|
|
186488
|
+
})[];
|
|
186489
|
+
/** Array of access system user IDs associated with the user identity. */
|
|
186490
|
+
acs_user_ids: string[];
|
|
186491
|
+
};
|
|
186492
|
+
};
|
|
186493
|
+
};
|
|
186494
|
+
'/user_identities/unmanaged/list': {
|
|
186495
|
+
route: '/user_identities/unmanaged/list';
|
|
186496
|
+
method: 'GET' | 'POST';
|
|
186497
|
+
queryParams: {};
|
|
186498
|
+
jsonBody: {};
|
|
186499
|
+
commonParams: {
|
|
186500
|
+
/** String for which to search. Filters returned unmanaged user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`. */
|
|
186501
|
+
search?: string | undefined;
|
|
186502
|
+
};
|
|
186503
|
+
formData: {};
|
|
186504
|
+
jsonResponse: {
|
|
186505
|
+
user_identities: {
|
|
186506
|
+
/** ID of the user identity. */
|
|
186507
|
+
user_identity_id: string;
|
|
186508
|
+
/** Unique email address for the user identity. */
|
|
186509
|
+
email_address: string | null;
|
|
186510
|
+
/** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
|
|
186511
|
+
phone_number: string | null;
|
|
186512
|
+
display_name: string;
|
|
186513
|
+
full_name: string | null;
|
|
186514
|
+
/** Date and time at which the user identity was created. */
|
|
186515
|
+
created_at: string;
|
|
186516
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
186517
|
+
workspace_id: string;
|
|
186518
|
+
/** Array of errors associated with the user identity. Each error object within the array contains fields like "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
186519
|
+
errors: {
|
|
186520
|
+
/** Date and time at which Seam created the error. */
|
|
186521
|
+
created_at: string;
|
|
186522
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
186523
|
+
message: string;
|
|
186524
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
186525
|
+
error_code: 'issue_with_acs_user';
|
|
186526
|
+
/** ID of the access system user that has an issue. */
|
|
186527
|
+
acs_user_id: string;
|
|
186528
|
+
/** ID of the access system that the user identity is associated with. */
|
|
186529
|
+
acs_system_id: string;
|
|
186530
|
+
}[];
|
|
186531
|
+
/** Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
186532
|
+
warnings: ({
|
|
186533
|
+
/** Date and time at which Seam created the warning. */
|
|
186534
|
+
created_at: string;
|
|
186535
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
186536
|
+
message: string;
|
|
186537
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
186538
|
+
warning_code: 'being_deleted';
|
|
186539
|
+
} | {
|
|
186540
|
+
/** Date and time at which Seam created the warning. */
|
|
186541
|
+
created_at: string;
|
|
186542
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
186543
|
+
message: string;
|
|
186544
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
186545
|
+
warning_code: 'acs_user_profile_does_not_match_user_identity';
|
|
186546
|
+
})[];
|
|
186547
|
+
/** Array of access system user IDs associated with the user identity. */
|
|
186548
|
+
acs_user_ids: string[];
|
|
186549
|
+
}[];
|
|
186550
|
+
};
|
|
186551
|
+
};
|
|
183910
186552
|
'/user_identities/update': {
|
|
183911
186553
|
route: '/user_identities/update';
|
|
183912
186554
|
method: 'PATCH' | 'POST';
|