@seamapi/types 1.472.0 → 1.474.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 +318 -1270
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +870 -2263
- package/dist/index.cjs +318 -1270
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +126 -0
- package/lib/seam/connect/models/batch.js +3 -0
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/models/index.d.ts +0 -1
- package/lib/seam/connect/models/index.js +0 -1
- package/lib/seam/connect/models/index.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +185 -1473
- package/lib/seam/connect/openapi.js +199 -1176
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +48 -216
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +0 -2
- package/src/lib/seam/connect/models/batch.ts +3 -0
- package/src/lib/seam/connect/models/index.ts +0 -1
- package/src/lib/seam/connect/openapi.ts +210 -1209
- package/src/lib/seam/connect/route-types.ts +52 -228
- package/lib/seam/connect/models/locations/index.d.ts +0 -1
- package/lib/seam/connect/models/locations/index.js +0 -2
- package/lib/seam/connect/models/locations/index.js.map +0 -1
- package/lib/seam/connect/models/locations/location.d.ts +0 -52
- package/lib/seam/connect/models/locations/location.js +0 -31
- package/lib/seam/connect/models/locations/location.js.map +0 -1
- package/src/lib/seam/connect/models/locations/index.ts +0 -1
- package/src/lib/seam/connect/models/locations/location.ts +0 -36
package/dist/connect.d.cts
CHANGED
|
@@ -23833,6 +23833,43 @@ declare const batch: z.ZodObject<{
|
|
|
23833
23833
|
selected_provider: string | null;
|
|
23834
23834
|
customer_key?: string | undefined;
|
|
23835
23835
|
}>, "many">>;
|
|
23836
|
+
access_methods: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
23837
|
+
workspace_id: z.ZodString;
|
|
23838
|
+
access_method_id: z.ZodString;
|
|
23839
|
+
display_name: z.ZodString;
|
|
23840
|
+
mode: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
23841
|
+
created_at: z.ZodString;
|
|
23842
|
+
issued_at: z.ZodNullable<z.ZodString>;
|
|
23843
|
+
is_issued: z.ZodBoolean;
|
|
23844
|
+
instant_key_url: z.ZodOptional<z.ZodString>;
|
|
23845
|
+
client_session_token: z.ZodOptional<z.ZodString>;
|
|
23846
|
+
is_encoding_required: z.ZodOptional<z.ZodBoolean>;
|
|
23847
|
+
code: z.ZodOptional<z.ZodString>;
|
|
23848
|
+
}, "strip", z.ZodTypeAny, {
|
|
23849
|
+
display_name: string;
|
|
23850
|
+
workspace_id: string;
|
|
23851
|
+
created_at: string;
|
|
23852
|
+
mode: "code" | "card" | "mobile_key";
|
|
23853
|
+
access_method_id: string;
|
|
23854
|
+
issued_at: string | null;
|
|
23855
|
+
is_issued: boolean;
|
|
23856
|
+
code?: string | undefined;
|
|
23857
|
+
client_session_token?: string | undefined;
|
|
23858
|
+
instant_key_url?: string | undefined;
|
|
23859
|
+
is_encoding_required?: boolean | undefined;
|
|
23860
|
+
}, {
|
|
23861
|
+
display_name: string;
|
|
23862
|
+
workspace_id: string;
|
|
23863
|
+
created_at: string;
|
|
23864
|
+
mode: "code" | "card" | "mobile_key";
|
|
23865
|
+
access_method_id: string;
|
|
23866
|
+
issued_at: string | null;
|
|
23867
|
+
is_issued: boolean;
|
|
23868
|
+
code?: string | undefined;
|
|
23869
|
+
client_session_token?: string | undefined;
|
|
23870
|
+
instant_key_url?: string | undefined;
|
|
23871
|
+
is_encoding_required?: boolean | undefined;
|
|
23872
|
+
}>, "many">>;
|
|
23836
23873
|
}, "strip", z.ZodTypeAny, {
|
|
23837
23874
|
batch_type: "spaces" | "access_grants" | "access_methods" | "workspaces";
|
|
23838
23875
|
spaces?: {
|
|
@@ -24654,6 +24691,19 @@ declare const batch: z.ZodObject<{
|
|
|
24654
24691
|
user_identity_key: string | null;
|
|
24655
24692
|
acs_user_ids: string[];
|
|
24656
24693
|
}[] | undefined;
|
|
24694
|
+
access_methods?: {
|
|
24695
|
+
display_name: string;
|
|
24696
|
+
workspace_id: string;
|
|
24697
|
+
created_at: string;
|
|
24698
|
+
mode: "code" | "card" | "mobile_key";
|
|
24699
|
+
access_method_id: string;
|
|
24700
|
+
issued_at: string | null;
|
|
24701
|
+
is_issued: boolean;
|
|
24702
|
+
code?: string | undefined;
|
|
24703
|
+
client_session_token?: string | undefined;
|
|
24704
|
+
instant_key_url?: string | undefined;
|
|
24705
|
+
is_encoding_required?: boolean | undefined;
|
|
24706
|
+
}[] | undefined;
|
|
24657
24707
|
workspaces?: {
|
|
24658
24708
|
name: string;
|
|
24659
24709
|
workspace_id: string;
|
|
@@ -26773,6 +26823,19 @@ declare const batch: z.ZodObject<{
|
|
|
26773
26823
|
user_identity_key: string | null;
|
|
26774
26824
|
acs_user_ids: string[];
|
|
26775
26825
|
}[] | undefined;
|
|
26826
|
+
access_methods?: {
|
|
26827
|
+
display_name: string;
|
|
26828
|
+
workspace_id: string;
|
|
26829
|
+
created_at: string;
|
|
26830
|
+
mode: "code" | "card" | "mobile_key";
|
|
26831
|
+
access_method_id: string;
|
|
26832
|
+
issued_at: string | null;
|
|
26833
|
+
is_issued: boolean;
|
|
26834
|
+
code?: string | undefined;
|
|
26835
|
+
client_session_token?: string | undefined;
|
|
26836
|
+
instant_key_url?: string | undefined;
|
|
26837
|
+
is_encoding_required?: boolean | undefined;
|
|
26838
|
+
}[] | undefined;
|
|
26776
26839
|
workspaces?: {
|
|
26777
26840
|
name: string;
|
|
26778
26841
|
workspace_id: string;
|
|
@@ -50921,56 +50984,6 @@ declare const _default: {
|
|
|
50921
50984
|
type: string;
|
|
50922
50985
|
'x-route-path': string;
|
|
50923
50986
|
};
|
|
50924
|
-
location: {
|
|
50925
|
-
properties: {
|
|
50926
|
-
created_at: {
|
|
50927
|
-
description: string;
|
|
50928
|
-
format: string;
|
|
50929
|
-
type: string;
|
|
50930
|
-
};
|
|
50931
|
-
display_name: {
|
|
50932
|
-
description: string;
|
|
50933
|
-
type: string;
|
|
50934
|
-
};
|
|
50935
|
-
geolocation: {
|
|
50936
|
-
description: string;
|
|
50937
|
-
properties: {
|
|
50938
|
-
latitude: {
|
|
50939
|
-
format: string;
|
|
50940
|
-
type: string;
|
|
50941
|
-
};
|
|
50942
|
-
longitude: {
|
|
50943
|
-
format: string;
|
|
50944
|
-
type: string;
|
|
50945
|
-
};
|
|
50946
|
-
};
|
|
50947
|
-
required: string[];
|
|
50948
|
-
type: string;
|
|
50949
|
-
};
|
|
50950
|
-
location_id: {
|
|
50951
|
-
description: string;
|
|
50952
|
-
format: string;
|
|
50953
|
-
type: string;
|
|
50954
|
-
};
|
|
50955
|
-
name: {
|
|
50956
|
-
description: string;
|
|
50957
|
-
type: string;
|
|
50958
|
-
};
|
|
50959
|
-
time_zone: {
|
|
50960
|
-
description: string;
|
|
50961
|
-
type: string;
|
|
50962
|
-
};
|
|
50963
|
-
workspace_id: {
|
|
50964
|
-
description: string;
|
|
50965
|
-
format: string;
|
|
50966
|
-
type: string;
|
|
50967
|
-
};
|
|
50968
|
-
};
|
|
50969
|
-
required: string[];
|
|
50970
|
-
type: string;
|
|
50971
|
-
'x-route-path': string;
|
|
50972
|
-
'x-undocumented': string;
|
|
50973
|
-
};
|
|
50974
50987
|
magic_link: {
|
|
50975
50988
|
description: string;
|
|
50976
50989
|
properties: {
|
|
@@ -58692,6 +58705,12 @@ declare const _default: {
|
|
|
58692
58705
|
batch: {
|
|
58693
58706
|
description: string;
|
|
58694
58707
|
properties: {
|
|
58708
|
+
access_methods: {
|
|
58709
|
+
items: {
|
|
58710
|
+
$ref: string;
|
|
58711
|
+
};
|
|
58712
|
+
type: string;
|
|
58713
|
+
};
|
|
58695
58714
|
acs_access_groups: {
|
|
58696
58715
|
items: {
|
|
58697
58716
|
$ref: string;
|
|
@@ -58877,6 +58896,12 @@ declare const _default: {
|
|
|
58877
58896
|
batch: {
|
|
58878
58897
|
description: string;
|
|
58879
58898
|
properties: {
|
|
58899
|
+
access_methods: {
|
|
58900
|
+
items: {
|
|
58901
|
+
$ref: string;
|
|
58902
|
+
};
|
|
58903
|
+
type: string;
|
|
58904
|
+
};
|
|
58880
58905
|
acs_access_groups: {
|
|
58881
58906
|
items: {
|
|
58882
58907
|
$ref: string;
|
|
@@ -84883,7 +84908,7 @@ declare const _default: {
|
|
|
84883
84908
|
'x-title': string;
|
|
84884
84909
|
};
|
|
84885
84910
|
};
|
|
84886
|
-
'/
|
|
84911
|
+
'/unstable_partner/building_blocks/connect_accounts': {
|
|
84887
84912
|
post: {
|
|
84888
84913
|
description: string;
|
|
84889
84914
|
operationId: string;
|
|
@@ -84892,18 +84917,8 @@ declare const _default: {
|
|
|
84892
84917
|
'application/json': {
|
|
84893
84918
|
schema: {
|
|
84894
84919
|
properties: {
|
|
84895
|
-
|
|
84896
|
-
description: string;
|
|
84897
|
-
items: {
|
|
84898
|
-
format: string;
|
|
84899
|
-
type: string;
|
|
84900
|
-
};
|
|
84901
|
-
minItems: number;
|
|
84902
|
-
type: string;
|
|
84903
|
-
};
|
|
84904
|
-
location_id: {
|
|
84920
|
+
customer_key: {
|
|
84905
84921
|
description: string;
|
|
84906
|
-
format: string;
|
|
84907
84922
|
type: string;
|
|
84908
84923
|
};
|
|
84909
84924
|
};
|
|
@@ -84919,6 +84934,9 @@ declare const _default: {
|
|
|
84919
84934
|
'application/json': {
|
|
84920
84935
|
schema: {
|
|
84921
84936
|
properties: {
|
|
84937
|
+
magic_link: {
|
|
84938
|
+
$ref: string;
|
|
84939
|
+
};
|
|
84922
84940
|
ok: {
|
|
84923
84941
|
type: string;
|
|
84924
84942
|
};
|
|
@@ -84954,45 +84972,69 @@ declare const _default: {
|
|
|
84954
84972
|
tags: never[];
|
|
84955
84973
|
'x-fern-sdk-group-name': string[];
|
|
84956
84974
|
'x-fern-sdk-method-name': string;
|
|
84957
|
-
'x-
|
|
84975
|
+
'x-fern-sdk-return-value': string;
|
|
84976
|
+
'x-response-key': string;
|
|
84958
84977
|
'x-title': string;
|
|
84959
84978
|
'x-undocumented': string;
|
|
84960
84979
|
};
|
|
84961
|
-
|
|
84980
|
+
};
|
|
84981
|
+
'/unstable_partner/building_blocks/generate_magic_link': {
|
|
84982
|
+
get: {
|
|
84962
84983
|
description: string;
|
|
84963
84984
|
operationId: string;
|
|
84964
|
-
|
|
84965
|
-
|
|
84966
|
-
|
|
84967
|
-
|
|
84968
|
-
|
|
84969
|
-
|
|
84970
|
-
|
|
84971
|
-
|
|
84972
|
-
|
|
84973
|
-
|
|
84974
|
-
|
|
84975
|
-
|
|
84976
|
-
|
|
84977
|
-
|
|
84978
|
-
|
|
84979
|
-
|
|
84980
|
-
|
|
84981
|
-
|
|
84982
|
-
|
|
84985
|
+
parameters: ({
|
|
84986
|
+
in: string;
|
|
84987
|
+
name: string;
|
|
84988
|
+
required: boolean;
|
|
84989
|
+
schema: {
|
|
84990
|
+
description: string;
|
|
84991
|
+
enum: string[];
|
|
84992
|
+
type: string;
|
|
84993
|
+
items?: never;
|
|
84994
|
+
};
|
|
84995
|
+
} | {
|
|
84996
|
+
in: string;
|
|
84997
|
+
name: string;
|
|
84998
|
+
required: boolean;
|
|
84999
|
+
schema: {
|
|
85000
|
+
description: string;
|
|
85001
|
+
type: string;
|
|
85002
|
+
enum?: never;
|
|
85003
|
+
items?: never;
|
|
85004
|
+
};
|
|
85005
|
+
} | {
|
|
85006
|
+
in: string;
|
|
85007
|
+
name: string;
|
|
85008
|
+
required: boolean;
|
|
85009
|
+
schema: {
|
|
85010
|
+
description: string;
|
|
85011
|
+
items: {
|
|
85012
|
+
properties: {
|
|
85013
|
+
name: {
|
|
85014
|
+
description: string;
|
|
85015
|
+
type: string;
|
|
85016
|
+
};
|
|
85017
|
+
space_key: {
|
|
85018
|
+
description: string;
|
|
85019
|
+
type: string;
|
|
84983
85020
|
};
|
|
84984
|
-
required: string[];
|
|
84985
|
-
type: string;
|
|
84986
85021
|
};
|
|
85022
|
+
required: string[];
|
|
85023
|
+
type: string;
|
|
84987
85024
|
};
|
|
85025
|
+
type: string;
|
|
85026
|
+
enum?: never;
|
|
84988
85027
|
};
|
|
84989
|
-
};
|
|
85028
|
+
})[];
|
|
84990
85029
|
responses: {
|
|
84991
85030
|
200: {
|
|
84992
85031
|
content: {
|
|
84993
85032
|
'application/json': {
|
|
84994
85033
|
schema: {
|
|
84995
85034
|
properties: {
|
|
85035
|
+
magic_link: {
|
|
85036
|
+
$ref: string;
|
|
85037
|
+
};
|
|
84996
85038
|
ok: {
|
|
84997
85039
|
type: string;
|
|
84998
85040
|
};
|
|
@@ -85028,12 +85070,11 @@ declare const _default: {
|
|
|
85028
85070
|
tags: never[];
|
|
85029
85071
|
'x-fern-sdk-group-name': string[];
|
|
85030
85072
|
'x-fern-sdk-method-name': string;
|
|
85031
|
-
'x-
|
|
85073
|
+
'x-fern-sdk-return-value': string;
|
|
85074
|
+
'x-response-key': string;
|
|
85032
85075
|
'x-title': string;
|
|
85033
85076
|
'x-undocumented': string;
|
|
85034
85077
|
};
|
|
85035
|
-
};
|
|
85036
|
-
'/unstable_locations/add_devices': {
|
|
85037
85078
|
post: {
|
|
85038
85079
|
description: string;
|
|
85039
85080
|
operationId: string;
|
|
@@ -85042,92 +85083,31 @@ declare const _default: {
|
|
|
85042
85083
|
'application/json': {
|
|
85043
85084
|
schema: {
|
|
85044
85085
|
properties: {
|
|
85045
|
-
|
|
85086
|
+
building_block_type: {
|
|
85046
85087
|
description: string;
|
|
85047
|
-
|
|
85048
|
-
format: string;
|
|
85049
|
-
type: string;
|
|
85050
|
-
};
|
|
85051
|
-
minItems: number;
|
|
85088
|
+
enum: string[];
|
|
85052
85089
|
type: string;
|
|
85053
85090
|
};
|
|
85054
|
-
|
|
85091
|
+
customer_key: {
|
|
85055
85092
|
description: string;
|
|
85056
|
-
format: string;
|
|
85057
85093
|
type: string;
|
|
85058
85094
|
};
|
|
85059
|
-
|
|
85060
|
-
required: string[];
|
|
85061
|
-
type: string;
|
|
85062
|
-
};
|
|
85063
|
-
};
|
|
85064
|
-
};
|
|
85065
|
-
};
|
|
85066
|
-
responses: {
|
|
85067
|
-
200: {
|
|
85068
|
-
content: {
|
|
85069
|
-
'application/json': {
|
|
85070
|
-
schema: {
|
|
85071
|
-
properties: {
|
|
85072
|
-
ok: {
|
|
85073
|
-
type: string;
|
|
85074
|
-
};
|
|
85075
|
-
};
|
|
85076
|
-
required: string[];
|
|
85077
|
-
type: string;
|
|
85078
|
-
};
|
|
85079
|
-
};
|
|
85080
|
-
};
|
|
85081
|
-
description: string;
|
|
85082
|
-
};
|
|
85083
|
-
400: {
|
|
85084
|
-
description: string;
|
|
85085
|
-
};
|
|
85086
|
-
401: {
|
|
85087
|
-
description: string;
|
|
85088
|
-
};
|
|
85089
|
-
};
|
|
85090
|
-
security: ({
|
|
85091
|
-
pat_with_workspace: never[];
|
|
85092
|
-
console_session_with_workspace?: never;
|
|
85093
|
-
api_key?: never;
|
|
85094
|
-
} | {
|
|
85095
|
-
console_session_with_workspace: never[];
|
|
85096
|
-
pat_with_workspace?: never;
|
|
85097
|
-
api_key?: never;
|
|
85098
|
-
} | {
|
|
85099
|
-
api_key: never[];
|
|
85100
|
-
pat_with_workspace?: never;
|
|
85101
|
-
console_session_with_workspace?: never;
|
|
85102
|
-
})[];
|
|
85103
|
-
summary: string;
|
|
85104
|
-
tags: never[];
|
|
85105
|
-
'x-fern-sdk-group-name': string[];
|
|
85106
|
-
'x-fern-sdk-method-name': string;
|
|
85107
|
-
'x-response-key': null;
|
|
85108
|
-
'x-title': string;
|
|
85109
|
-
'x-undocumented': string;
|
|
85110
|
-
};
|
|
85111
|
-
put: {
|
|
85112
|
-
description: string;
|
|
85113
|
-
operationId: string;
|
|
85114
|
-
requestBody: {
|
|
85115
|
-
content: {
|
|
85116
|
-
'application/json': {
|
|
85117
|
-
schema: {
|
|
85118
|
-
properties: {
|
|
85119
|
-
device_ids: {
|
|
85095
|
+
spaces: {
|
|
85120
85096
|
description: string;
|
|
85121
85097
|
items: {
|
|
85122
|
-
|
|
85098
|
+
properties: {
|
|
85099
|
+
name: {
|
|
85100
|
+
description: string;
|
|
85101
|
+
type: string;
|
|
85102
|
+
};
|
|
85103
|
+
space_key: {
|
|
85104
|
+
description: string;
|
|
85105
|
+
type: string;
|
|
85106
|
+
};
|
|
85107
|
+
};
|
|
85108
|
+
required: string[];
|
|
85123
85109
|
type: string;
|
|
85124
85110
|
};
|
|
85125
|
-
minItems: number;
|
|
85126
|
-
type: string;
|
|
85127
|
-
};
|
|
85128
|
-
location_id: {
|
|
85129
|
-
description: string;
|
|
85130
|
-
format: string;
|
|
85131
85111
|
type: string;
|
|
85132
85112
|
};
|
|
85133
85113
|
};
|
|
@@ -85143,6 +85123,9 @@ declare const _default: {
|
|
|
85143
85123
|
'application/json': {
|
|
85144
85124
|
schema: {
|
|
85145
85125
|
properties: {
|
|
85126
|
+
magic_link: {
|
|
85127
|
+
$ref: string;
|
|
85128
|
+
};
|
|
85146
85129
|
ok: {
|
|
85147
85130
|
type: string;
|
|
85148
85131
|
};
|
|
@@ -85178,12 +85161,13 @@ declare const _default: {
|
|
|
85178
85161
|
tags: never[];
|
|
85179
85162
|
'x-fern-sdk-group-name': string[];
|
|
85180
85163
|
'x-fern-sdk-method-name': string;
|
|
85181
|
-
'x-
|
|
85164
|
+
'x-fern-sdk-return-value': string;
|
|
85165
|
+
'x-response-key': string;
|
|
85182
85166
|
'x-title': string;
|
|
85183
85167
|
'x-undocumented': string;
|
|
85184
85168
|
};
|
|
85185
85169
|
};
|
|
85186
|
-
'/
|
|
85170
|
+
'/unstable_partner/building_blocks/manage_devices': {
|
|
85187
85171
|
post: {
|
|
85188
85172
|
description: string;
|
|
85189
85173
|
operationId: string;
|
|
@@ -85192,42 +85176,7 @@ declare const _default: {
|
|
|
85192
85176
|
'application/json': {
|
|
85193
85177
|
schema: {
|
|
85194
85178
|
properties: {
|
|
85195
|
-
|
|
85196
|
-
description: string;
|
|
85197
|
-
items: {
|
|
85198
|
-
format: string;
|
|
85199
|
-
type: string;
|
|
85200
|
-
};
|
|
85201
|
-
type: string;
|
|
85202
|
-
};
|
|
85203
|
-
device_ids: {
|
|
85204
|
-
description: string;
|
|
85205
|
-
items: {
|
|
85206
|
-
format: string;
|
|
85207
|
-
type: string;
|
|
85208
|
-
};
|
|
85209
|
-
type: string;
|
|
85210
|
-
};
|
|
85211
|
-
geolocation: {
|
|
85212
|
-
description: string;
|
|
85213
|
-
properties: {
|
|
85214
|
-
latitude: {
|
|
85215
|
-
format: string;
|
|
85216
|
-
type: string;
|
|
85217
|
-
};
|
|
85218
|
-
longitude: {
|
|
85219
|
-
format: string;
|
|
85220
|
-
type: string;
|
|
85221
|
-
};
|
|
85222
|
-
};
|
|
85223
|
-
required: string[];
|
|
85224
|
-
type: string;
|
|
85225
|
-
};
|
|
85226
|
-
name: {
|
|
85227
|
-
description: string;
|
|
85228
|
-
type: string;
|
|
85229
|
-
};
|
|
85230
|
-
time_zone: {
|
|
85179
|
+
customer_key: {
|
|
85231
85180
|
description: string;
|
|
85232
85181
|
type: string;
|
|
85233
85182
|
};
|
|
@@ -85244,7 +85193,7 @@ declare const _default: {
|
|
|
85244
85193
|
'application/json': {
|
|
85245
85194
|
schema: {
|
|
85246
85195
|
properties: {
|
|
85247
|
-
|
|
85196
|
+
magic_link: {
|
|
85248
85197
|
$ref: string;
|
|
85249
85198
|
};
|
|
85250
85199
|
ok: {
|
|
@@ -85288,8 +85237,8 @@ declare const _default: {
|
|
|
85288
85237
|
'x-undocumented': string;
|
|
85289
85238
|
};
|
|
85290
85239
|
};
|
|
85291
|
-
'/
|
|
85292
|
-
|
|
85240
|
+
'/unstable_partner/building_blocks/organize_spaces': {
|
|
85241
|
+
post: {
|
|
85293
85242
|
description: string;
|
|
85294
85243
|
operationId: string;
|
|
85295
85244
|
requestBody: {
|
|
@@ -85297,9 +85246,26 @@ declare const _default: {
|
|
|
85297
85246
|
'application/json': {
|
|
85298
85247
|
schema: {
|
|
85299
85248
|
properties: {
|
|
85300
|
-
|
|
85249
|
+
customer_key: {
|
|
85301
85250
|
description: string;
|
|
85302
|
-
|
|
85251
|
+
type: string;
|
|
85252
|
+
};
|
|
85253
|
+
spaces: {
|
|
85254
|
+
description: string;
|
|
85255
|
+
items: {
|
|
85256
|
+
properties: {
|
|
85257
|
+
name: {
|
|
85258
|
+
description: string;
|
|
85259
|
+
type: string;
|
|
85260
|
+
};
|
|
85261
|
+
space_key: {
|
|
85262
|
+
description: string;
|
|
85263
|
+
type: string;
|
|
85264
|
+
};
|
|
85265
|
+
};
|
|
85266
|
+
required: string[];
|
|
85267
|
+
type: string;
|
|
85268
|
+
};
|
|
85303
85269
|
type: string;
|
|
85304
85270
|
};
|
|
85305
85271
|
};
|
|
@@ -85315,6 +85281,9 @@ declare const _default: {
|
|
|
85315
85281
|
'application/json': {
|
|
85316
85282
|
schema: {
|
|
85317
85283
|
properties: {
|
|
85284
|
+
magic_link: {
|
|
85285
|
+
$ref: string;
|
|
85286
|
+
};
|
|
85318
85287
|
ok: {
|
|
85319
85288
|
type: string;
|
|
85320
85289
|
};
|
|
@@ -85350,10 +85319,13 @@ declare const _default: {
|
|
|
85350
85319
|
tags: never[];
|
|
85351
85320
|
'x-fern-sdk-group-name': string[];
|
|
85352
85321
|
'x-fern-sdk-method-name': string;
|
|
85353
|
-
'x-
|
|
85322
|
+
'x-fern-sdk-return-value': string;
|
|
85323
|
+
'x-response-key': string;
|
|
85354
85324
|
'x-title': string;
|
|
85355
85325
|
'x-undocumented': string;
|
|
85356
85326
|
};
|
|
85327
|
+
};
|
|
85328
|
+
'/user_identities/add_acs_user': {
|
|
85357
85329
|
post: {
|
|
85358
85330
|
description: string;
|
|
85359
85331
|
operationId: string;
|
|
@@ -85362,7 +85334,12 @@ declare const _default: {
|
|
|
85362
85334
|
'application/json': {
|
|
85363
85335
|
schema: {
|
|
85364
85336
|
properties: {
|
|
85365
|
-
|
|
85337
|
+
acs_user_id: {
|
|
85338
|
+
description: string;
|
|
85339
|
+
format: string;
|
|
85340
|
+
type: string;
|
|
85341
|
+
};
|
|
85342
|
+
user_identity_id: {
|
|
85366
85343
|
description: string;
|
|
85367
85344
|
format: string;
|
|
85368
85345
|
type: string;
|
|
@@ -85399,50 +85376,56 @@ declare const _default: {
|
|
|
85399
85376
|
};
|
|
85400
85377
|
};
|
|
85401
85378
|
security: ({
|
|
85402
|
-
|
|
85379
|
+
api_key: never[];
|
|
85380
|
+
pat_with_workspace?: never;
|
|
85403
85381
|
console_session_with_workspace?: never;
|
|
85382
|
+
} | {
|
|
85383
|
+
pat_with_workspace: never[];
|
|
85404
85384
|
api_key?: never;
|
|
85385
|
+
console_session_with_workspace?: never;
|
|
85405
85386
|
} | {
|
|
85406
85387
|
console_session_with_workspace: never[];
|
|
85407
|
-
pat_with_workspace?: never;
|
|
85408
85388
|
api_key?: never;
|
|
85409
|
-
} | {
|
|
85410
|
-
api_key: never[];
|
|
85411
85389
|
pat_with_workspace?: never;
|
|
85412
|
-
console_session_with_workspace?: never;
|
|
85413
85390
|
})[];
|
|
85414
85391
|
summary: string;
|
|
85415
|
-
tags:
|
|
85392
|
+
tags: string[];
|
|
85416
85393
|
'x-fern-sdk-group-name': string[];
|
|
85417
85394
|
'x-fern-sdk-method-name': string;
|
|
85418
85395
|
'x-response-key': null;
|
|
85419
85396
|
'x-title': string;
|
|
85420
|
-
'x-undocumented': string;
|
|
85421
85397
|
};
|
|
85422
|
-
|
|
85423
|
-
'/unstable_locations/get': {
|
|
85424
|
-
get: {
|
|
85398
|
+
put: {
|
|
85425
85399
|
description: string;
|
|
85426
85400
|
operationId: string;
|
|
85427
|
-
|
|
85428
|
-
|
|
85429
|
-
|
|
85430
|
-
|
|
85431
|
-
|
|
85432
|
-
|
|
85433
|
-
|
|
85434
|
-
|
|
85401
|
+
requestBody: {
|
|
85402
|
+
content: {
|
|
85403
|
+
'application/json': {
|
|
85404
|
+
schema: {
|
|
85405
|
+
properties: {
|
|
85406
|
+
acs_user_id: {
|
|
85407
|
+
description: string;
|
|
85408
|
+
format: string;
|
|
85409
|
+
type: string;
|
|
85410
|
+
};
|
|
85411
|
+
user_identity_id: {
|
|
85412
|
+
description: string;
|
|
85413
|
+
format: string;
|
|
85414
|
+
type: string;
|
|
85415
|
+
};
|
|
85416
|
+
};
|
|
85417
|
+
required: string[];
|
|
85418
|
+
type: string;
|
|
85419
|
+
};
|
|
85420
|
+
};
|
|
85435
85421
|
};
|
|
85436
|
-
}
|
|
85422
|
+
};
|
|
85437
85423
|
responses: {
|
|
85438
85424
|
200: {
|
|
85439
85425
|
content: {
|
|
85440
85426
|
'application/json': {
|
|
85441
85427
|
schema: {
|
|
85442
85428
|
properties: {
|
|
85443
|
-
location: {
|
|
85444
|
-
$ref: string;
|
|
85445
|
-
};
|
|
85446
85429
|
ok: {
|
|
85447
85430
|
type: string;
|
|
85448
85431
|
};
|
|
@@ -85462,27 +85445,27 @@ declare const _default: {
|
|
|
85462
85445
|
};
|
|
85463
85446
|
};
|
|
85464
85447
|
security: ({
|
|
85465
|
-
|
|
85448
|
+
api_key: never[];
|
|
85449
|
+
pat_with_workspace?: never;
|
|
85466
85450
|
console_session_with_workspace?: never;
|
|
85451
|
+
} | {
|
|
85452
|
+
pat_with_workspace: never[];
|
|
85467
85453
|
api_key?: never;
|
|
85454
|
+
console_session_with_workspace?: never;
|
|
85468
85455
|
} | {
|
|
85469
85456
|
console_session_with_workspace: never[];
|
|
85470
|
-
pat_with_workspace?: never;
|
|
85471
85457
|
api_key?: never;
|
|
85472
|
-
} | {
|
|
85473
|
-
api_key: never[];
|
|
85474
85458
|
pat_with_workspace?: never;
|
|
85475
|
-
console_session_with_workspace?: never;
|
|
85476
85459
|
})[];
|
|
85477
85460
|
summary: string;
|
|
85478
|
-
tags:
|
|
85461
|
+
tags: string[];
|
|
85479
85462
|
'x-fern-sdk-group-name': string[];
|
|
85480
85463
|
'x-fern-sdk-method-name': string;
|
|
85481
|
-
'x-
|
|
85482
|
-
'x-response-key': string;
|
|
85464
|
+
'x-response-key': null;
|
|
85483
85465
|
'x-title': string;
|
|
85484
|
-
'x-undocumented': string;
|
|
85485
85466
|
};
|
|
85467
|
+
};
|
|
85468
|
+
'/user_identities/create': {
|
|
85486
85469
|
post: {
|
|
85487
85470
|
description: string;
|
|
85488
85471
|
operationId: string;
|
|
@@ -85491,13 +85474,38 @@ declare const _default: {
|
|
|
85491
85474
|
'application/json': {
|
|
85492
85475
|
schema: {
|
|
85493
85476
|
properties: {
|
|
85494
|
-
|
|
85477
|
+
acs_system_ids: {
|
|
85478
|
+
description: string;
|
|
85479
|
+
items: {
|
|
85480
|
+
format: string;
|
|
85481
|
+
type: string;
|
|
85482
|
+
};
|
|
85483
|
+
type: string;
|
|
85484
|
+
};
|
|
85485
|
+
email_address: {
|
|
85495
85486
|
description: string;
|
|
85496
85487
|
format: string;
|
|
85488
|
+
nullable: boolean;
|
|
85489
|
+
type: string;
|
|
85490
|
+
};
|
|
85491
|
+
full_name: {
|
|
85492
|
+
description: string;
|
|
85493
|
+
minLength: number;
|
|
85494
|
+
nullable: boolean;
|
|
85495
|
+
type: string;
|
|
85496
|
+
};
|
|
85497
|
+
phone_number: {
|
|
85498
|
+
description: string;
|
|
85499
|
+
nullable: boolean;
|
|
85500
|
+
type: string;
|
|
85501
|
+
};
|
|
85502
|
+
user_identity_key: {
|
|
85503
|
+
description: string;
|
|
85504
|
+
minLength: number;
|
|
85505
|
+
nullable: boolean;
|
|
85497
85506
|
type: string;
|
|
85498
85507
|
};
|
|
85499
85508
|
};
|
|
85500
|
-
required: string[];
|
|
85501
85509
|
type: string;
|
|
85502
85510
|
};
|
|
85503
85511
|
};
|
|
@@ -85509,12 +85517,12 @@ declare const _default: {
|
|
|
85509
85517
|
'application/json': {
|
|
85510
85518
|
schema: {
|
|
85511
85519
|
properties: {
|
|
85512
|
-
location: {
|
|
85513
|
-
$ref: string;
|
|
85514
|
-
};
|
|
85515
85520
|
ok: {
|
|
85516
85521
|
type: string;
|
|
85517
85522
|
};
|
|
85523
|
+
user_identity: {
|
|
85524
|
+
$ref: string;
|
|
85525
|
+
};
|
|
85518
85526
|
};
|
|
85519
85527
|
required: string[];
|
|
85520
85528
|
type: string;
|
|
@@ -85531,44 +85539,47 @@ declare const _default: {
|
|
|
85531
85539
|
};
|
|
85532
85540
|
};
|
|
85533
85541
|
security: ({
|
|
85534
|
-
|
|
85542
|
+
api_key: never[];
|
|
85543
|
+
pat_with_workspace?: never;
|
|
85535
85544
|
console_session_with_workspace?: never;
|
|
85545
|
+
} | {
|
|
85546
|
+
pat_with_workspace: never[];
|
|
85536
85547
|
api_key?: never;
|
|
85548
|
+
console_session_with_workspace?: never;
|
|
85537
85549
|
} | {
|
|
85538
85550
|
console_session_with_workspace: never[];
|
|
85539
|
-
pat_with_workspace?: never;
|
|
85540
85551
|
api_key?: never;
|
|
85541
|
-
} | {
|
|
85542
|
-
api_key: never[];
|
|
85543
85552
|
pat_with_workspace?: never;
|
|
85544
|
-
console_session_with_workspace?: never;
|
|
85545
85553
|
})[];
|
|
85546
85554
|
summary: string;
|
|
85547
|
-
tags:
|
|
85555
|
+
tags: string[];
|
|
85548
85556
|
'x-fern-sdk-group-name': string[];
|
|
85549
85557
|
'x-fern-sdk-method-name': string;
|
|
85550
85558
|
'x-fern-sdk-return-value': string;
|
|
85551
85559
|
'x-response-key': string;
|
|
85552
85560
|
'x-title': string;
|
|
85553
|
-
'x-undocumented': string;
|
|
85554
85561
|
};
|
|
85555
85562
|
};
|
|
85556
|
-
'/
|
|
85557
|
-
|
|
85563
|
+
'/user_identities/delete': {
|
|
85564
|
+
delete: {
|
|
85558
85565
|
description: string;
|
|
85559
85566
|
operationId: string;
|
|
85567
|
+
parameters: {
|
|
85568
|
+
in: string;
|
|
85569
|
+
name: string;
|
|
85570
|
+
required: boolean;
|
|
85571
|
+
schema: {
|
|
85572
|
+
description: string;
|
|
85573
|
+
format: string;
|
|
85574
|
+
type: string;
|
|
85575
|
+
};
|
|
85576
|
+
}[];
|
|
85560
85577
|
responses: {
|
|
85561
85578
|
200: {
|
|
85562
85579
|
content: {
|
|
85563
85580
|
'application/json': {
|
|
85564
85581
|
schema: {
|
|
85565
85582
|
properties: {
|
|
85566
|
-
locations: {
|
|
85567
|
-
items: {
|
|
85568
|
-
$ref: string;
|
|
85569
|
-
};
|
|
85570
|
-
type: string;
|
|
85571
|
-
};
|
|
85572
85583
|
ok: {
|
|
85573
85584
|
type: string;
|
|
85574
85585
|
};
|
|
@@ -85588,42 +85599,51 @@ declare const _default: {
|
|
|
85588
85599
|
};
|
|
85589
85600
|
};
|
|
85590
85601
|
security: ({
|
|
85591
|
-
|
|
85602
|
+
api_key: never[];
|
|
85603
|
+
pat_with_workspace?: never;
|
|
85592
85604
|
console_session_with_workspace?: never;
|
|
85605
|
+
} | {
|
|
85606
|
+
pat_with_workspace: never[];
|
|
85593
85607
|
api_key?: never;
|
|
85608
|
+
console_session_with_workspace?: never;
|
|
85594
85609
|
} | {
|
|
85595
85610
|
console_session_with_workspace: never[];
|
|
85596
|
-
pat_with_workspace?: never;
|
|
85597
85611
|
api_key?: never;
|
|
85598
|
-
} | {
|
|
85599
|
-
api_key: never[];
|
|
85600
85612
|
pat_with_workspace?: never;
|
|
85601
|
-
console_session_with_workspace?: never;
|
|
85602
85613
|
})[];
|
|
85603
85614
|
summary: string;
|
|
85604
|
-
tags:
|
|
85615
|
+
tags: string[];
|
|
85605
85616
|
'x-fern-sdk-group-name': string[];
|
|
85606
85617
|
'x-fern-sdk-method-name': string;
|
|
85607
|
-
'x-
|
|
85608
|
-
'x-response-key': string;
|
|
85618
|
+
'x-response-key': null;
|
|
85609
85619
|
'x-title': string;
|
|
85610
|
-
'x-undocumented': string;
|
|
85611
85620
|
};
|
|
85612
85621
|
post: {
|
|
85613
85622
|
description: string;
|
|
85614
85623
|
operationId: string;
|
|
85624
|
+
requestBody: {
|
|
85625
|
+
content: {
|
|
85626
|
+
'application/json': {
|
|
85627
|
+
schema: {
|
|
85628
|
+
properties: {
|
|
85629
|
+
user_identity_id: {
|
|
85630
|
+
description: string;
|
|
85631
|
+
format: string;
|
|
85632
|
+
type: string;
|
|
85633
|
+
};
|
|
85634
|
+
};
|
|
85635
|
+
required: string[];
|
|
85636
|
+
type: string;
|
|
85637
|
+
};
|
|
85638
|
+
};
|
|
85639
|
+
};
|
|
85640
|
+
};
|
|
85615
85641
|
responses: {
|
|
85616
85642
|
200: {
|
|
85617
85643
|
content: {
|
|
85618
85644
|
'application/json': {
|
|
85619
85645
|
schema: {
|
|
85620
85646
|
properties: {
|
|
85621
|
-
locations: {
|
|
85622
|
-
items: {
|
|
85623
|
-
$ref: string;
|
|
85624
|
-
};
|
|
85625
|
-
type: string;
|
|
85626
|
-
};
|
|
85627
85647
|
ok: {
|
|
85628
85648
|
type: string;
|
|
85629
85649
|
};
|
|
@@ -85643,33 +85663,31 @@ declare const _default: {
|
|
|
85643
85663
|
};
|
|
85644
85664
|
};
|
|
85645
85665
|
security: ({
|
|
85646
|
-
|
|
85666
|
+
api_key: never[];
|
|
85667
|
+
pat_with_workspace?: never;
|
|
85647
85668
|
console_session_with_workspace?: never;
|
|
85669
|
+
} | {
|
|
85670
|
+
pat_with_workspace: never[];
|
|
85648
85671
|
api_key?: never;
|
|
85672
|
+
console_session_with_workspace?: never;
|
|
85649
85673
|
} | {
|
|
85650
85674
|
console_session_with_workspace: never[];
|
|
85651
|
-
pat_with_workspace?: never;
|
|
85652
85675
|
api_key?: never;
|
|
85653
|
-
} | {
|
|
85654
|
-
api_key: never[];
|
|
85655
85676
|
pat_with_workspace?: never;
|
|
85656
|
-
console_session_with_workspace?: never;
|
|
85657
85677
|
})[];
|
|
85658
85678
|
summary: string;
|
|
85659
|
-
tags:
|
|
85679
|
+
tags: string[];
|
|
85660
85680
|
'x-fern-sdk-group-name': string[];
|
|
85661
85681
|
'x-fern-sdk-method-name': string;
|
|
85662
|
-
'x-
|
|
85663
|
-
'x-response-key': string;
|
|
85682
|
+
'x-response-key': null;
|
|
85664
85683
|
'x-title': string;
|
|
85665
|
-
'x-undocumented': string;
|
|
85666
85684
|
};
|
|
85667
85685
|
};
|
|
85668
|
-
'/
|
|
85686
|
+
'/user_identities/enrollment_automations/delete': {
|
|
85669
85687
|
delete: {
|
|
85670
85688
|
description: string;
|
|
85671
85689
|
operationId: string;
|
|
85672
|
-
parameters:
|
|
85690
|
+
parameters: {
|
|
85673
85691
|
in: string;
|
|
85674
85692
|
name: string;
|
|
85675
85693
|
required: boolean;
|
|
@@ -85677,22 +85695,8 @@ declare const _default: {
|
|
|
85677
85695
|
description: string;
|
|
85678
85696
|
format: string;
|
|
85679
85697
|
type: string;
|
|
85680
|
-
items?: never;
|
|
85681
85698
|
};
|
|
85682
|
-
}
|
|
85683
|
-
in: string;
|
|
85684
|
-
name: string;
|
|
85685
|
-
required: boolean;
|
|
85686
|
-
schema: {
|
|
85687
|
-
description: string;
|
|
85688
|
-
items: {
|
|
85689
|
-
format: string;
|
|
85690
|
-
type: string;
|
|
85691
|
-
};
|
|
85692
|
-
type: string;
|
|
85693
|
-
format?: never;
|
|
85694
|
-
};
|
|
85695
|
-
})[];
|
|
85699
|
+
}[];
|
|
85696
85700
|
responses: {
|
|
85697
85701
|
200: {
|
|
85698
85702
|
content: {
|
|
@@ -85731,7 +85735,7 @@ declare const _default: {
|
|
|
85731
85735
|
console_session_with_workspace?: never;
|
|
85732
85736
|
})[];
|
|
85733
85737
|
summary: string;
|
|
85734
|
-
tags:
|
|
85738
|
+
tags: string[];
|
|
85735
85739
|
'x-fern-sdk-group-name': string[];
|
|
85736
85740
|
'x-fern-sdk-method-name': string;
|
|
85737
85741
|
'x-response-key': null;
|
|
@@ -85746,15 +85750,7 @@ declare const _default: {
|
|
|
85746
85750
|
'application/json': {
|
|
85747
85751
|
schema: {
|
|
85748
85752
|
properties: {
|
|
85749
|
-
|
|
85750
|
-
description: string;
|
|
85751
|
-
items: {
|
|
85752
|
-
format: string;
|
|
85753
|
-
type: string;
|
|
85754
|
-
};
|
|
85755
|
-
type: string;
|
|
85756
|
-
};
|
|
85757
|
-
location_id: {
|
|
85753
|
+
enrollment_automation_id: {
|
|
85758
85754
|
description: string;
|
|
85759
85755
|
format: string;
|
|
85760
85756
|
type: string;
|
|
@@ -85804,7 +85800,7 @@ declare const _default: {
|
|
|
85804
85800
|
console_session_with_workspace?: never;
|
|
85805
85801
|
})[];
|
|
85806
85802
|
summary: string;
|
|
85807
|
-
tags:
|
|
85803
|
+
tags: string[];
|
|
85808
85804
|
'x-fern-sdk-group-name': string[];
|
|
85809
85805
|
'x-fern-sdk-method-name': string;
|
|
85810
85806
|
'x-response-key': null;
|
|
@@ -85812,11 +85808,11 @@ declare const _default: {
|
|
|
85812
85808
|
'x-undocumented': string;
|
|
85813
85809
|
};
|
|
85814
85810
|
};
|
|
85815
|
-
'/
|
|
85816
|
-
|
|
85811
|
+
'/user_identities/enrollment_automations/get': {
|
|
85812
|
+
get: {
|
|
85817
85813
|
description: string;
|
|
85818
85814
|
operationId: string;
|
|
85819
|
-
parameters:
|
|
85815
|
+
parameters: {
|
|
85820
85816
|
in: string;
|
|
85821
85817
|
name: string;
|
|
85822
85818
|
required: boolean;
|
|
@@ -85824,28 +85820,17 @@ declare const _default: {
|
|
|
85824
85820
|
description: string;
|
|
85825
85821
|
format: string;
|
|
85826
85822
|
type: string;
|
|
85827
|
-
items?: never;
|
|
85828
|
-
};
|
|
85829
|
-
} | {
|
|
85830
|
-
in: string;
|
|
85831
|
-
name: string;
|
|
85832
|
-
required: boolean;
|
|
85833
|
-
schema: {
|
|
85834
|
-
description: string;
|
|
85835
|
-
items: {
|
|
85836
|
-
format: string;
|
|
85837
|
-
type: string;
|
|
85838
|
-
};
|
|
85839
|
-
type: string;
|
|
85840
|
-
format?: never;
|
|
85841
85823
|
};
|
|
85842
|
-
}
|
|
85824
|
+
}[];
|
|
85843
85825
|
responses: {
|
|
85844
85826
|
200: {
|
|
85845
85827
|
content: {
|
|
85846
85828
|
'application/json': {
|
|
85847
85829
|
schema: {
|
|
85848
85830
|
properties: {
|
|
85831
|
+
enrollment_automation: {
|
|
85832
|
+
$ref: string;
|
|
85833
|
+
};
|
|
85849
85834
|
ok: {
|
|
85850
85835
|
type: string;
|
|
85851
85836
|
};
|
|
@@ -85865,23 +85850,32 @@ declare const _default: {
|
|
|
85865
85850
|
};
|
|
85866
85851
|
};
|
|
85867
85852
|
security: ({
|
|
85853
|
+
client_session: never[];
|
|
85854
|
+
pat_with_workspace?: never;
|
|
85855
|
+
console_session_with_workspace?: never;
|
|
85856
|
+
api_key?: never;
|
|
85857
|
+
} | {
|
|
85868
85858
|
pat_with_workspace: never[];
|
|
85859
|
+
client_session?: never;
|
|
85869
85860
|
console_session_with_workspace?: never;
|
|
85870
85861
|
api_key?: never;
|
|
85871
85862
|
} | {
|
|
85872
85863
|
console_session_with_workspace: never[];
|
|
85864
|
+
client_session?: never;
|
|
85873
85865
|
pat_with_workspace?: never;
|
|
85874
85866
|
api_key?: never;
|
|
85875
85867
|
} | {
|
|
85876
85868
|
api_key: never[];
|
|
85869
|
+
client_session?: never;
|
|
85877
85870
|
pat_with_workspace?: never;
|
|
85878
85871
|
console_session_with_workspace?: never;
|
|
85879
85872
|
})[];
|
|
85880
85873
|
summary: string;
|
|
85881
|
-
tags:
|
|
85874
|
+
tags: string[];
|
|
85882
85875
|
'x-fern-sdk-group-name': string[];
|
|
85883
85876
|
'x-fern-sdk-method-name': string;
|
|
85884
|
-
'x-
|
|
85877
|
+
'x-fern-sdk-return-value': string;
|
|
85878
|
+
'x-response-key': string;
|
|
85885
85879
|
'x-title': string;
|
|
85886
85880
|
'x-undocumented': string;
|
|
85887
85881
|
};
|
|
@@ -85893,15 +85887,7 @@ declare const _default: {
|
|
|
85893
85887
|
'application/json': {
|
|
85894
85888
|
schema: {
|
|
85895
85889
|
properties: {
|
|
85896
|
-
|
|
85897
|
-
description: string;
|
|
85898
|
-
items: {
|
|
85899
|
-
format: string;
|
|
85900
|
-
type: string;
|
|
85901
|
-
};
|
|
85902
|
-
type: string;
|
|
85903
|
-
};
|
|
85904
|
-
location_id: {
|
|
85890
|
+
enrollment_automation_id: {
|
|
85905
85891
|
description: string;
|
|
85906
85892
|
format: string;
|
|
85907
85893
|
type: string;
|
|
@@ -85919,6 +85905,9 @@ declare const _default: {
|
|
|
85919
85905
|
'application/json': {
|
|
85920
85906
|
schema: {
|
|
85921
85907
|
properties: {
|
|
85908
|
+
enrollment_automation: {
|
|
85909
|
+
$ref: string;
|
|
85910
|
+
};
|
|
85922
85911
|
ok: {
|
|
85923
85912
|
type: string;
|
|
85924
85913
|
};
|
|
@@ -85938,29 +85927,38 @@ declare const _default: {
|
|
|
85938
85927
|
};
|
|
85939
85928
|
};
|
|
85940
85929
|
security: ({
|
|
85930
|
+
client_session: never[];
|
|
85931
|
+
pat_with_workspace?: never;
|
|
85932
|
+
console_session_with_workspace?: never;
|
|
85933
|
+
api_key?: never;
|
|
85934
|
+
} | {
|
|
85941
85935
|
pat_with_workspace: never[];
|
|
85936
|
+
client_session?: never;
|
|
85942
85937
|
console_session_with_workspace?: never;
|
|
85943
85938
|
api_key?: never;
|
|
85944
85939
|
} | {
|
|
85945
85940
|
console_session_with_workspace: never[];
|
|
85941
|
+
client_session?: never;
|
|
85946
85942
|
pat_with_workspace?: never;
|
|
85947
85943
|
api_key?: never;
|
|
85948
85944
|
} | {
|
|
85949
85945
|
api_key: never[];
|
|
85946
|
+
client_session?: never;
|
|
85950
85947
|
pat_with_workspace?: never;
|
|
85951
85948
|
console_session_with_workspace?: never;
|
|
85952
85949
|
})[];
|
|
85953
85950
|
summary: string;
|
|
85954
|
-
tags:
|
|
85951
|
+
tags: string[];
|
|
85955
85952
|
'x-fern-sdk-group-name': string[];
|
|
85956
85953
|
'x-fern-sdk-method-name': string;
|
|
85957
|
-
'x-
|
|
85954
|
+
'x-fern-sdk-return-value': string;
|
|
85955
|
+
'x-response-key': string;
|
|
85958
85956
|
'x-title': string;
|
|
85959
85957
|
'x-undocumented': string;
|
|
85960
85958
|
};
|
|
85961
85959
|
};
|
|
85962
|
-
'/
|
|
85963
|
-
|
|
85960
|
+
'/user_identities/enrollment_automations/launch': {
|
|
85961
|
+
post: {
|
|
85964
85962
|
description: string;
|
|
85965
85963
|
operationId: string;
|
|
85966
85964
|
requestBody: {
|
|
@@ -85968,32 +85966,28 @@ declare const _default: {
|
|
|
85968
85966
|
'application/json': {
|
|
85969
85967
|
schema: {
|
|
85970
85968
|
properties: {
|
|
85971
|
-
|
|
85969
|
+
acs_credential_pool_id: {
|
|
85972
85970
|
description: string;
|
|
85973
|
-
|
|
85974
|
-
latitude: {
|
|
85975
|
-
format: string;
|
|
85976
|
-
type: string;
|
|
85977
|
-
};
|
|
85978
|
-
longitude: {
|
|
85979
|
-
format: string;
|
|
85980
|
-
type: string;
|
|
85981
|
-
};
|
|
85982
|
-
};
|
|
85983
|
-
required: string[];
|
|
85971
|
+
format: string;
|
|
85984
85972
|
type: string;
|
|
85985
85973
|
};
|
|
85986
|
-
|
|
85974
|
+
create_credential_manager_user: {
|
|
85975
|
+
description: string;
|
|
85976
|
+
type: string;
|
|
85977
|
+
};
|
|
85978
|
+
credential_manager_acs_system_id: {
|
|
85987
85979
|
description: string;
|
|
85988
85980
|
format: string;
|
|
85989
85981
|
type: string;
|
|
85990
85982
|
};
|
|
85991
|
-
|
|
85983
|
+
credential_manager_acs_user_id: {
|
|
85992
85984
|
description: string;
|
|
85985
|
+
format: string;
|
|
85993
85986
|
type: string;
|
|
85994
85987
|
};
|
|
85995
|
-
|
|
85988
|
+
user_identity_id: {
|
|
85996
85989
|
description: string;
|
|
85990
|
+
format: string;
|
|
85997
85991
|
type: string;
|
|
85998
85992
|
};
|
|
85999
85993
|
};
|
|
@@ -86009,7 +86003,7 @@ declare const _default: {
|
|
|
86009
86003
|
'application/json': {
|
|
86010
86004
|
schema: {
|
|
86011
86005
|
properties: {
|
|
86012
|
-
|
|
86006
|
+
enrollment_automation: {
|
|
86013
86007
|
$ref: string;
|
|
86014
86008
|
};
|
|
86015
86009
|
ok: {
|
|
@@ -86044,7 +86038,7 @@ declare const _default: {
|
|
|
86044
86038
|
console_session_with_workspace?: never;
|
|
86045
86039
|
})[];
|
|
86046
86040
|
summary: string;
|
|
86047
|
-
tags:
|
|
86041
|
+
tags: string[];
|
|
86048
86042
|
'x-fern-sdk-group-name': string[];
|
|
86049
86043
|
'x-fern-sdk-method-name': string;
|
|
86050
86044
|
'x-fern-sdk-return-value': string;
|
|
@@ -86052,57 +86046,32 @@ declare const _default: {
|
|
|
86052
86046
|
'x-title': string;
|
|
86053
86047
|
'x-undocumented': string;
|
|
86054
86048
|
};
|
|
86055
|
-
|
|
86049
|
+
};
|
|
86050
|
+
'/user_identities/enrollment_automations/list': {
|
|
86051
|
+
get: {
|
|
86056
86052
|
description: string;
|
|
86057
86053
|
operationId: string;
|
|
86058
|
-
|
|
86059
|
-
|
|
86060
|
-
|
|
86061
|
-
|
|
86062
|
-
|
|
86063
|
-
|
|
86064
|
-
|
|
86065
|
-
|
|
86066
|
-
latitude: {
|
|
86067
|
-
format: string;
|
|
86068
|
-
type: string;
|
|
86069
|
-
};
|
|
86070
|
-
longitude: {
|
|
86071
|
-
format: string;
|
|
86072
|
-
type: string;
|
|
86073
|
-
};
|
|
86074
|
-
};
|
|
86075
|
-
required: string[];
|
|
86076
|
-
type: string;
|
|
86077
|
-
};
|
|
86078
|
-
location_id: {
|
|
86079
|
-
description: string;
|
|
86080
|
-
format: string;
|
|
86081
|
-
type: string;
|
|
86082
|
-
};
|
|
86083
|
-
name: {
|
|
86084
|
-
description: string;
|
|
86085
|
-
type: string;
|
|
86086
|
-
};
|
|
86087
|
-
time_zone: {
|
|
86088
|
-
description: string;
|
|
86089
|
-
type: string;
|
|
86090
|
-
};
|
|
86091
|
-
};
|
|
86092
|
-
required: string[];
|
|
86093
|
-
type: string;
|
|
86094
|
-
};
|
|
86095
|
-
};
|
|
86054
|
+
parameters: {
|
|
86055
|
+
in: string;
|
|
86056
|
+
name: string;
|
|
86057
|
+
required: boolean;
|
|
86058
|
+
schema: {
|
|
86059
|
+
description: string;
|
|
86060
|
+
format: string;
|
|
86061
|
+
type: string;
|
|
86096
86062
|
};
|
|
86097
|
-
};
|
|
86063
|
+
}[];
|
|
86098
86064
|
responses: {
|
|
86099
86065
|
200: {
|
|
86100
86066
|
content: {
|
|
86101
86067
|
'application/json': {
|
|
86102
86068
|
schema: {
|
|
86103
86069
|
properties: {
|
|
86104
|
-
|
|
86105
|
-
|
|
86070
|
+
enrollment_automations: {
|
|
86071
|
+
items: {
|
|
86072
|
+
$ref: string;
|
|
86073
|
+
};
|
|
86074
|
+
type: string;
|
|
86106
86075
|
};
|
|
86107
86076
|
ok: {
|
|
86108
86077
|
type: string;
|
|
@@ -86123,20 +86092,28 @@ declare const _default: {
|
|
|
86123
86092
|
};
|
|
86124
86093
|
};
|
|
86125
86094
|
security: ({
|
|
86095
|
+
client_session: never[];
|
|
86096
|
+
pat_with_workspace?: never;
|
|
86097
|
+
console_session_with_workspace?: never;
|
|
86098
|
+
api_key?: never;
|
|
86099
|
+
} | {
|
|
86126
86100
|
pat_with_workspace: never[];
|
|
86101
|
+
client_session?: never;
|
|
86127
86102
|
console_session_with_workspace?: never;
|
|
86128
86103
|
api_key?: never;
|
|
86129
86104
|
} | {
|
|
86130
86105
|
console_session_with_workspace: never[];
|
|
86106
|
+
client_session?: never;
|
|
86131
86107
|
pat_with_workspace?: never;
|
|
86132
86108
|
api_key?: never;
|
|
86133
86109
|
} | {
|
|
86134
86110
|
api_key: never[];
|
|
86111
|
+
client_session?: never;
|
|
86135
86112
|
pat_with_workspace?: never;
|
|
86136
86113
|
console_session_with_workspace?: never;
|
|
86137
86114
|
})[];
|
|
86138
86115
|
summary: string;
|
|
86139
|
-
tags:
|
|
86116
|
+
tags: string[];
|
|
86140
86117
|
'x-fern-sdk-group-name': string[];
|
|
86141
86118
|
'x-fern-sdk-method-name': string;
|
|
86142
86119
|
'x-fern-sdk-return-value': string;
|
|
@@ -86144,8 +86121,6 @@ declare const _default: {
|
|
|
86144
86121
|
'x-title': string;
|
|
86145
86122
|
'x-undocumented': string;
|
|
86146
86123
|
};
|
|
86147
|
-
};
|
|
86148
|
-
'/unstable_partner/building_blocks/connect_accounts': {
|
|
86149
86124
|
post: {
|
|
86150
86125
|
description: string;
|
|
86151
86126
|
operationId: string;
|
|
@@ -86154,8 +86129,9 @@ declare const _default: {
|
|
|
86154
86129
|
'application/json': {
|
|
86155
86130
|
schema: {
|
|
86156
86131
|
properties: {
|
|
86157
|
-
|
|
86132
|
+
user_identity_id: {
|
|
86158
86133
|
description: string;
|
|
86134
|
+
format: string;
|
|
86159
86135
|
type: string;
|
|
86160
86136
|
};
|
|
86161
86137
|
};
|
|
@@ -86171,8 +86147,11 @@ declare const _default: {
|
|
|
86171
86147
|
'application/json': {
|
|
86172
86148
|
schema: {
|
|
86173
86149
|
properties: {
|
|
86174
|
-
|
|
86175
|
-
|
|
86150
|
+
enrollment_automations: {
|
|
86151
|
+
items: {
|
|
86152
|
+
$ref: string;
|
|
86153
|
+
};
|
|
86154
|
+
type: string;
|
|
86176
86155
|
};
|
|
86177
86156
|
ok: {
|
|
86178
86157
|
type: string;
|
|
@@ -86193,20 +86172,28 @@ declare const _default: {
|
|
|
86193
86172
|
};
|
|
86194
86173
|
};
|
|
86195
86174
|
security: ({
|
|
86175
|
+
client_session: never[];
|
|
86176
|
+
pat_with_workspace?: never;
|
|
86177
|
+
console_session_with_workspace?: never;
|
|
86178
|
+
api_key?: never;
|
|
86179
|
+
} | {
|
|
86196
86180
|
pat_with_workspace: never[];
|
|
86181
|
+
client_session?: never;
|
|
86197
86182
|
console_session_with_workspace?: never;
|
|
86198
86183
|
api_key?: never;
|
|
86199
86184
|
} | {
|
|
86200
86185
|
console_session_with_workspace: never[];
|
|
86186
|
+
client_session?: never;
|
|
86201
86187
|
pat_with_workspace?: never;
|
|
86202
86188
|
api_key?: never;
|
|
86203
86189
|
} | {
|
|
86204
86190
|
api_key: never[];
|
|
86191
|
+
client_session?: never;
|
|
86205
86192
|
pat_with_workspace?: never;
|
|
86206
86193
|
console_session_with_workspace?: never;
|
|
86207
86194
|
})[];
|
|
86208
86195
|
summary: string;
|
|
86209
|
-
tags:
|
|
86196
|
+
tags: string[];
|
|
86210
86197
|
'x-fern-sdk-group-name': string[];
|
|
86211
86198
|
'x-fern-sdk-method-name': string;
|
|
86212
86199
|
'x-fern-sdk-return-value': string;
|
|
@@ -86215,61 +86202,40 @@ declare const _default: {
|
|
|
86215
86202
|
'x-undocumented': string;
|
|
86216
86203
|
};
|
|
86217
86204
|
};
|
|
86218
|
-
'/
|
|
86219
|
-
|
|
86205
|
+
'/user_identities/generate_instant_key': {
|
|
86206
|
+
post: {
|
|
86220
86207
|
description: string;
|
|
86221
86208
|
operationId: string;
|
|
86222
|
-
|
|
86223
|
-
|
|
86224
|
-
|
|
86225
|
-
|
|
86226
|
-
|
|
86227
|
-
|
|
86228
|
-
|
|
86229
|
-
|
|
86230
|
-
|
|
86231
|
-
|
|
86232
|
-
|
|
86233
|
-
|
|
86234
|
-
|
|
86235
|
-
|
|
86236
|
-
|
|
86237
|
-
|
|
86238
|
-
type: string;
|
|
86239
|
-
enum?: never;
|
|
86240
|
-
items?: never;
|
|
86241
|
-
};
|
|
86242
|
-
} | {
|
|
86243
|
-
in: string;
|
|
86244
|
-
name: string;
|
|
86245
|
-
required: boolean;
|
|
86246
|
-
schema: {
|
|
86247
|
-
description: string;
|
|
86248
|
-
items: {
|
|
86249
|
-
properties: {
|
|
86250
|
-
name: {
|
|
86251
|
-
description: string;
|
|
86252
|
-
type: string;
|
|
86253
|
-
};
|
|
86254
|
-
space_key: {
|
|
86255
|
-
description: string;
|
|
86256
|
-
type: string;
|
|
86209
|
+
requestBody: {
|
|
86210
|
+
content: {
|
|
86211
|
+
'application/json': {
|
|
86212
|
+
schema: {
|
|
86213
|
+
properties: {
|
|
86214
|
+
max_use_count: {
|
|
86215
|
+
default: number;
|
|
86216
|
+
description: string;
|
|
86217
|
+
format: string;
|
|
86218
|
+
type: string;
|
|
86219
|
+
};
|
|
86220
|
+
user_identity_id: {
|
|
86221
|
+
description: string;
|
|
86222
|
+
format: string;
|
|
86223
|
+
type: string;
|
|
86224
|
+
};
|
|
86257
86225
|
};
|
|
86226
|
+
required: string[];
|
|
86227
|
+
type: string;
|
|
86258
86228
|
};
|
|
86259
|
-
required: string[];
|
|
86260
|
-
type: string;
|
|
86261
86229
|
};
|
|
86262
|
-
type: string;
|
|
86263
|
-
enum?: never;
|
|
86264
86230
|
};
|
|
86265
|
-
}
|
|
86231
|
+
};
|
|
86266
86232
|
responses: {
|
|
86267
86233
|
200: {
|
|
86268
86234
|
content: {
|
|
86269
86235
|
'application/json': {
|
|
86270
86236
|
schema: {
|
|
86271
86237
|
properties: {
|
|
86272
|
-
|
|
86238
|
+
instant_key: {
|
|
86273
86239
|
$ref: string;
|
|
86274
86240
|
};
|
|
86275
86241
|
ok: {
|
|
@@ -86291,81 +86257,43 @@ declare const _default: {
|
|
|
86291
86257
|
};
|
|
86292
86258
|
};
|
|
86293
86259
|
security: ({
|
|
86294
|
-
|
|
86260
|
+
api_key: never[];
|
|
86261
|
+
pat_with_workspace?: never;
|
|
86295
86262
|
console_session_with_workspace?: never;
|
|
86263
|
+
} | {
|
|
86264
|
+
pat_with_workspace: never[];
|
|
86296
86265
|
api_key?: never;
|
|
86266
|
+
console_session_with_workspace?: never;
|
|
86297
86267
|
} | {
|
|
86298
86268
|
console_session_with_workspace: never[];
|
|
86299
|
-
pat_with_workspace?: never;
|
|
86300
86269
|
api_key?: never;
|
|
86301
|
-
} | {
|
|
86302
|
-
api_key: never[];
|
|
86303
86270
|
pat_with_workspace?: never;
|
|
86304
|
-
console_session_with_workspace?: never;
|
|
86305
86271
|
})[];
|
|
86306
86272
|
summary: string;
|
|
86307
|
-
tags:
|
|
86273
|
+
tags: string[];
|
|
86308
86274
|
'x-fern-sdk-group-name': string[];
|
|
86309
86275
|
'x-fern-sdk-method-name': string;
|
|
86310
86276
|
'x-fern-sdk-return-value': string;
|
|
86311
86277
|
'x-response-key': string;
|
|
86312
86278
|
'x-title': string;
|
|
86313
|
-
'x-undocumented': string;
|
|
86314
86279
|
};
|
|
86315
|
-
|
|
86280
|
+
};
|
|
86281
|
+
'/user_identities/get': {
|
|
86282
|
+
get: {
|
|
86316
86283
|
description: string;
|
|
86317
86284
|
operationId: string;
|
|
86318
|
-
requestBody: {
|
|
86319
|
-
content: {
|
|
86320
|
-
'application/json': {
|
|
86321
|
-
schema: {
|
|
86322
|
-
properties: {
|
|
86323
|
-
building_block_type: {
|
|
86324
|
-
description: string;
|
|
86325
|
-
enum: string[];
|
|
86326
|
-
type: string;
|
|
86327
|
-
};
|
|
86328
|
-
customer_key: {
|
|
86329
|
-
description: string;
|
|
86330
|
-
type: string;
|
|
86331
|
-
};
|
|
86332
|
-
spaces: {
|
|
86333
|
-
description: string;
|
|
86334
|
-
items: {
|
|
86335
|
-
properties: {
|
|
86336
|
-
name: {
|
|
86337
|
-
description: string;
|
|
86338
|
-
type: string;
|
|
86339
|
-
};
|
|
86340
|
-
space_key: {
|
|
86341
|
-
description: string;
|
|
86342
|
-
type: string;
|
|
86343
|
-
};
|
|
86344
|
-
};
|
|
86345
|
-
required: string[];
|
|
86346
|
-
type: string;
|
|
86347
|
-
};
|
|
86348
|
-
type: string;
|
|
86349
|
-
};
|
|
86350
|
-
};
|
|
86351
|
-
required: string[];
|
|
86352
|
-
type: string;
|
|
86353
|
-
};
|
|
86354
|
-
};
|
|
86355
|
-
};
|
|
86356
|
-
};
|
|
86357
86285
|
responses: {
|
|
86358
86286
|
200: {
|
|
86359
86287
|
content: {
|
|
86360
86288
|
'application/json': {
|
|
86361
86289
|
schema: {
|
|
86362
86290
|
properties: {
|
|
86363
|
-
magic_link: {
|
|
86364
|
-
$ref: string;
|
|
86365
|
-
};
|
|
86366
86291
|
ok: {
|
|
86367
86292
|
type: string;
|
|
86368
86293
|
};
|
|
86294
|
+
user_identity: {
|
|
86295
|
+
$ref: string;
|
|
86296
|
+
};
|
|
86369
86297
|
};
|
|
86370
86298
|
required: string[];
|
|
86371
86299
|
type: string;
|
|
@@ -86382,29 +86310,26 @@ declare const _default: {
|
|
|
86382
86310
|
};
|
|
86383
86311
|
};
|
|
86384
86312
|
security: ({
|
|
86385
|
-
|
|
86313
|
+
api_key: never[];
|
|
86314
|
+
pat_with_workspace?: never;
|
|
86386
86315
|
console_session_with_workspace?: never;
|
|
86316
|
+
} | {
|
|
86317
|
+
pat_with_workspace: never[];
|
|
86387
86318
|
api_key?: never;
|
|
86319
|
+
console_session_with_workspace?: never;
|
|
86388
86320
|
} | {
|
|
86389
86321
|
console_session_with_workspace: never[];
|
|
86390
|
-
pat_with_workspace?: never;
|
|
86391
86322
|
api_key?: never;
|
|
86392
|
-
} | {
|
|
86393
|
-
api_key: never[];
|
|
86394
86323
|
pat_with_workspace?: never;
|
|
86395
|
-
console_session_with_workspace?: never;
|
|
86396
86324
|
})[];
|
|
86397
86325
|
summary: string;
|
|
86398
|
-
tags:
|
|
86326
|
+
tags: string[];
|
|
86399
86327
|
'x-fern-sdk-group-name': string[];
|
|
86400
86328
|
'x-fern-sdk-method-name': string;
|
|
86401
86329
|
'x-fern-sdk-return-value': string;
|
|
86402
86330
|
'x-response-key': string;
|
|
86403
86331
|
'x-title': string;
|
|
86404
|
-
'x-undocumented': string;
|
|
86405
86332
|
};
|
|
86406
|
-
};
|
|
86407
|
-
'/unstable_partner/building_blocks/manage_devices': {
|
|
86408
86333
|
post: {
|
|
86409
86334
|
description: string;
|
|
86410
86335
|
operationId: string;
|
|
@@ -86412,14 +86337,27 @@ declare const _default: {
|
|
|
86412
86337
|
content: {
|
|
86413
86338
|
'application/json': {
|
|
86414
86339
|
schema: {
|
|
86415
|
-
|
|
86416
|
-
|
|
86417
|
-
|
|
86418
|
-
|
|
86340
|
+
oneOf: ({
|
|
86341
|
+
properties: {
|
|
86342
|
+
user_identity_id: {
|
|
86343
|
+
description: string;
|
|
86344
|
+
format: string;
|
|
86345
|
+
type: string;
|
|
86346
|
+
};
|
|
86347
|
+
user_identity_key?: never;
|
|
86419
86348
|
};
|
|
86420
|
-
|
|
86421
|
-
|
|
86422
|
-
|
|
86349
|
+
required: string[];
|
|
86350
|
+
type: string;
|
|
86351
|
+
} | {
|
|
86352
|
+
properties: {
|
|
86353
|
+
user_identity_key: {
|
|
86354
|
+
type: string;
|
|
86355
|
+
};
|
|
86356
|
+
user_identity_id?: never;
|
|
86357
|
+
};
|
|
86358
|
+
required: string[];
|
|
86359
|
+
type: string;
|
|
86360
|
+
})[];
|
|
86423
86361
|
};
|
|
86424
86362
|
};
|
|
86425
86363
|
};
|
|
@@ -86430,12 +86368,12 @@ declare const _default: {
|
|
|
86430
86368
|
'application/json': {
|
|
86431
86369
|
schema: {
|
|
86432
86370
|
properties: {
|
|
86433
|
-
magic_link: {
|
|
86434
|
-
$ref: string;
|
|
86435
|
-
};
|
|
86436
86371
|
ok: {
|
|
86437
86372
|
type: string;
|
|
86438
86373
|
};
|
|
86374
|
+
user_identity: {
|
|
86375
|
+
$ref: string;
|
|
86376
|
+
};
|
|
86439
86377
|
};
|
|
86440
86378
|
required: string[];
|
|
86441
86379
|
type: string;
|
|
@@ -86452,29 +86390,28 @@ declare const _default: {
|
|
|
86452
86390
|
};
|
|
86453
86391
|
};
|
|
86454
86392
|
security: ({
|
|
86455
|
-
|
|
86393
|
+
api_key: never[];
|
|
86394
|
+
pat_with_workspace?: never;
|
|
86456
86395
|
console_session_with_workspace?: never;
|
|
86396
|
+
} | {
|
|
86397
|
+
pat_with_workspace: never[];
|
|
86457
86398
|
api_key?: never;
|
|
86399
|
+
console_session_with_workspace?: never;
|
|
86458
86400
|
} | {
|
|
86459
86401
|
console_session_with_workspace: never[];
|
|
86460
|
-
pat_with_workspace?: never;
|
|
86461
86402
|
api_key?: never;
|
|
86462
|
-
} | {
|
|
86463
|
-
api_key: never[];
|
|
86464
86403
|
pat_with_workspace?: never;
|
|
86465
|
-
console_session_with_workspace?: never;
|
|
86466
86404
|
})[];
|
|
86467
86405
|
summary: string;
|
|
86468
|
-
tags:
|
|
86406
|
+
tags: string[];
|
|
86469
86407
|
'x-fern-sdk-group-name': string[];
|
|
86470
86408
|
'x-fern-sdk-method-name': string;
|
|
86471
86409
|
'x-fern-sdk-return-value': string;
|
|
86472
86410
|
'x-response-key': string;
|
|
86473
86411
|
'x-title': string;
|
|
86474
|
-
'x-undocumented': string;
|
|
86475
86412
|
};
|
|
86476
86413
|
};
|
|
86477
|
-
'/
|
|
86414
|
+
'/user_identities/grant_access_to_device': {
|
|
86478
86415
|
post: {
|
|
86479
86416
|
description: string;
|
|
86480
86417
|
operationId: string;
|
|
@@ -86483,26 +86420,14 @@ declare const _default: {
|
|
|
86483
86420
|
'application/json': {
|
|
86484
86421
|
schema: {
|
|
86485
86422
|
properties: {
|
|
86486
|
-
|
|
86423
|
+
device_id: {
|
|
86487
86424
|
description: string;
|
|
86425
|
+
format: string;
|
|
86488
86426
|
type: string;
|
|
86489
86427
|
};
|
|
86490
|
-
|
|
86428
|
+
user_identity_id: {
|
|
86491
86429
|
description: string;
|
|
86492
|
-
|
|
86493
|
-
properties: {
|
|
86494
|
-
name: {
|
|
86495
|
-
description: string;
|
|
86496
|
-
type: string;
|
|
86497
|
-
};
|
|
86498
|
-
space_key: {
|
|
86499
|
-
description: string;
|
|
86500
|
-
type: string;
|
|
86501
|
-
};
|
|
86502
|
-
};
|
|
86503
|
-
required: string[];
|
|
86504
|
-
type: string;
|
|
86505
|
-
};
|
|
86430
|
+
format: string;
|
|
86506
86431
|
type: string;
|
|
86507
86432
|
};
|
|
86508
86433
|
};
|
|
@@ -86518,9 +86443,6 @@ declare const _default: {
|
|
|
86518
86443
|
'application/json': {
|
|
86519
86444
|
schema: {
|
|
86520
86445
|
properties: {
|
|
86521
|
-
magic_link: {
|
|
86522
|
-
$ref: string;
|
|
86523
|
-
};
|
|
86524
86446
|
ok: {
|
|
86525
86447
|
type: string;
|
|
86526
86448
|
};
|
|
@@ -86540,30 +86462,26 @@ declare const _default: {
|
|
|
86540
86462
|
};
|
|
86541
86463
|
};
|
|
86542
86464
|
security: ({
|
|
86543
|
-
|
|
86465
|
+
api_key: never[];
|
|
86466
|
+
pat_with_workspace?: never;
|
|
86544
86467
|
console_session_with_workspace?: never;
|
|
86468
|
+
} | {
|
|
86469
|
+
pat_with_workspace: never[];
|
|
86545
86470
|
api_key?: never;
|
|
86471
|
+
console_session_with_workspace?: never;
|
|
86546
86472
|
} | {
|
|
86547
86473
|
console_session_with_workspace: never[];
|
|
86548
|
-
pat_with_workspace?: never;
|
|
86549
86474
|
api_key?: never;
|
|
86550
|
-
} | {
|
|
86551
|
-
api_key: never[];
|
|
86552
86475
|
pat_with_workspace?: never;
|
|
86553
|
-
console_session_with_workspace?: never;
|
|
86554
86476
|
})[];
|
|
86555
86477
|
summary: string;
|
|
86556
|
-
tags:
|
|
86478
|
+
tags: string[];
|
|
86557
86479
|
'x-fern-sdk-group-name': string[];
|
|
86558
86480
|
'x-fern-sdk-method-name': string;
|
|
86559
|
-
'x-
|
|
86560
|
-
'x-response-key': string;
|
|
86481
|
+
'x-response-key': null;
|
|
86561
86482
|
'x-title': string;
|
|
86562
|
-
'x-undocumented': string;
|
|
86563
86483
|
};
|
|
86564
|
-
|
|
86565
|
-
'/user_identities/add_acs_user': {
|
|
86566
|
-
post: {
|
|
86484
|
+
put: {
|
|
86567
86485
|
description: string;
|
|
86568
86486
|
operationId: string;
|
|
86569
86487
|
requestBody: {
|
|
@@ -86571,7 +86489,7 @@ declare const _default: {
|
|
|
86571
86489
|
'application/json': {
|
|
86572
86490
|
schema: {
|
|
86573
86491
|
properties: {
|
|
86574
|
-
|
|
86492
|
+
device_id: {
|
|
86575
86493
|
description: string;
|
|
86576
86494
|
format: string;
|
|
86577
86495
|
type: string;
|
|
@@ -86632,31 +86550,28 @@ declare const _default: {
|
|
|
86632
86550
|
'x-response-key': null;
|
|
86633
86551
|
'x-title': string;
|
|
86634
86552
|
};
|
|
86635
|
-
|
|
86553
|
+
};
|
|
86554
|
+
'/user_identities/list': {
|
|
86555
|
+
get: {
|
|
86636
86556
|
description: string;
|
|
86637
86557
|
operationId: string;
|
|
86638
|
-
|
|
86639
|
-
|
|
86640
|
-
|
|
86641
|
-
|
|
86642
|
-
|
|
86643
|
-
|
|
86644
|
-
|
|
86645
|
-
format: string;
|
|
86646
|
-
type: string;
|
|
86647
|
-
};
|
|
86648
|
-
user_identity_id: {
|
|
86649
|
-
description: string;
|
|
86650
|
-
format: string;
|
|
86651
|
-
type: string;
|
|
86652
|
-
};
|
|
86653
|
-
};
|
|
86654
|
-
required: string[];
|
|
86655
|
-
type: string;
|
|
86656
|
-
};
|
|
86657
|
-
};
|
|
86558
|
+
parameters: ({
|
|
86559
|
+
in: string;
|
|
86560
|
+
name: string;
|
|
86561
|
+
schema: {
|
|
86562
|
+
description: string;
|
|
86563
|
+
type: string;
|
|
86564
|
+
format?: never;
|
|
86658
86565
|
};
|
|
86659
|
-
}
|
|
86566
|
+
} | {
|
|
86567
|
+
in: string;
|
|
86568
|
+
name: string;
|
|
86569
|
+
schema: {
|
|
86570
|
+
description: string;
|
|
86571
|
+
format: string;
|
|
86572
|
+
type: string;
|
|
86573
|
+
};
|
|
86574
|
+
})[];
|
|
86660
86575
|
responses: {
|
|
86661
86576
|
200: {
|
|
86662
86577
|
content: {
|
|
@@ -86666,6 +86581,12 @@ declare const _default: {
|
|
|
86666
86581
|
ok: {
|
|
86667
86582
|
type: string;
|
|
86668
86583
|
};
|
|
86584
|
+
user_identities: {
|
|
86585
|
+
items: {
|
|
86586
|
+
$ref: string;
|
|
86587
|
+
};
|
|
86588
|
+
type: string;
|
|
86589
|
+
};
|
|
86669
86590
|
};
|
|
86670
86591
|
required: string[];
|
|
86671
86592
|
type: string;
|
|
@@ -86683,26 +86604,33 @@ declare const _default: {
|
|
|
86683
86604
|
};
|
|
86684
86605
|
security: ({
|
|
86685
86606
|
api_key: never[];
|
|
86607
|
+
client_session?: never;
|
|
86608
|
+
pat_with_workspace?: never;
|
|
86609
|
+
console_session_with_workspace?: never;
|
|
86610
|
+
} | {
|
|
86611
|
+
client_session: never[];
|
|
86612
|
+
api_key?: never;
|
|
86686
86613
|
pat_with_workspace?: never;
|
|
86687
86614
|
console_session_with_workspace?: never;
|
|
86688
86615
|
} | {
|
|
86689
86616
|
pat_with_workspace: never[];
|
|
86690
86617
|
api_key?: never;
|
|
86618
|
+
client_session?: never;
|
|
86691
86619
|
console_session_with_workspace?: never;
|
|
86692
86620
|
} | {
|
|
86693
86621
|
console_session_with_workspace: never[];
|
|
86694
86622
|
api_key?: never;
|
|
86623
|
+
client_session?: never;
|
|
86695
86624
|
pat_with_workspace?: never;
|
|
86696
86625
|
})[];
|
|
86697
86626
|
summary: string;
|
|
86698
86627
|
tags: string[];
|
|
86699
86628
|
'x-fern-sdk-group-name': string[];
|
|
86700
86629
|
'x-fern-sdk-method-name': string;
|
|
86701
|
-
'x-
|
|
86630
|
+
'x-fern-sdk-return-value': string;
|
|
86631
|
+
'x-response-key': string;
|
|
86702
86632
|
'x-title': string;
|
|
86703
86633
|
};
|
|
86704
|
-
};
|
|
86705
|
-
'/user_identities/create': {
|
|
86706
86634
|
post: {
|
|
86707
86635
|
description: string;
|
|
86708
86636
|
operationId: string;
|
|
@@ -86711,35 +86639,13 @@ declare const _default: {
|
|
|
86711
86639
|
'application/json': {
|
|
86712
86640
|
schema: {
|
|
86713
86641
|
properties: {
|
|
86714
|
-
|
|
86715
|
-
description: string;
|
|
86716
|
-
items: {
|
|
86717
|
-
format: string;
|
|
86718
|
-
type: string;
|
|
86719
|
-
};
|
|
86720
|
-
type: string;
|
|
86721
|
-
};
|
|
86722
|
-
email_address: {
|
|
86642
|
+
credential_manager_acs_system_id: {
|
|
86723
86643
|
description: string;
|
|
86724
86644
|
format: string;
|
|
86725
|
-
nullable: boolean;
|
|
86726
|
-
type: string;
|
|
86727
|
-
};
|
|
86728
|
-
full_name: {
|
|
86729
|
-
description: string;
|
|
86730
|
-
minLength: number;
|
|
86731
|
-
nullable: boolean;
|
|
86732
|
-
type: string;
|
|
86733
|
-
};
|
|
86734
|
-
phone_number: {
|
|
86735
|
-
description: string;
|
|
86736
|
-
nullable: boolean;
|
|
86737
86645
|
type: string;
|
|
86738
86646
|
};
|
|
86739
|
-
|
|
86647
|
+
search: {
|
|
86740
86648
|
description: string;
|
|
86741
|
-
minLength: number;
|
|
86742
|
-
nullable: boolean;
|
|
86743
86649
|
type: string;
|
|
86744
86650
|
};
|
|
86745
86651
|
};
|
|
@@ -86757,8 +86663,11 @@ declare const _default: {
|
|
|
86757
86663
|
ok: {
|
|
86758
86664
|
type: string;
|
|
86759
86665
|
};
|
|
86760
|
-
|
|
86761
|
-
|
|
86666
|
+
user_identities: {
|
|
86667
|
+
items: {
|
|
86668
|
+
$ref: string;
|
|
86669
|
+
};
|
|
86670
|
+
type: string;
|
|
86762
86671
|
};
|
|
86763
86672
|
};
|
|
86764
86673
|
required: string[];
|
|
@@ -86777,15 +86686,23 @@ declare const _default: {
|
|
|
86777
86686
|
};
|
|
86778
86687
|
security: ({
|
|
86779
86688
|
api_key: never[];
|
|
86689
|
+
client_session?: never;
|
|
86690
|
+
pat_with_workspace?: never;
|
|
86691
|
+
console_session_with_workspace?: never;
|
|
86692
|
+
} | {
|
|
86693
|
+
client_session: never[];
|
|
86694
|
+
api_key?: never;
|
|
86780
86695
|
pat_with_workspace?: never;
|
|
86781
86696
|
console_session_with_workspace?: never;
|
|
86782
86697
|
} | {
|
|
86783
86698
|
pat_with_workspace: never[];
|
|
86784
86699
|
api_key?: never;
|
|
86700
|
+
client_session?: never;
|
|
86785
86701
|
console_session_with_workspace?: never;
|
|
86786
86702
|
} | {
|
|
86787
86703
|
console_session_with_workspace: never[];
|
|
86788
86704
|
api_key?: never;
|
|
86705
|
+
client_session?: never;
|
|
86789
86706
|
pat_with_workspace?: never;
|
|
86790
86707
|
})[];
|
|
86791
86708
|
summary: string;
|
|
@@ -86797,8 +86714,8 @@ declare const _default: {
|
|
|
86797
86714
|
'x-title': string;
|
|
86798
86715
|
};
|
|
86799
86716
|
};
|
|
86800
|
-
'/user_identities/
|
|
86801
|
-
|
|
86717
|
+
'/user_identities/list_accessible_devices': {
|
|
86718
|
+
get: {
|
|
86802
86719
|
description: string;
|
|
86803
86720
|
operationId: string;
|
|
86804
86721
|
parameters: {
|
|
@@ -86817,6 +86734,20 @@ declare const _default: {
|
|
|
86817
86734
|
'application/json': {
|
|
86818
86735
|
schema: {
|
|
86819
86736
|
properties: {
|
|
86737
|
+
accessible_devices: {
|
|
86738
|
+
deprecated: boolean;
|
|
86739
|
+
items: {
|
|
86740
|
+
$ref: string;
|
|
86741
|
+
};
|
|
86742
|
+
type: string;
|
|
86743
|
+
'x-deprecated': string;
|
|
86744
|
+
};
|
|
86745
|
+
devices: {
|
|
86746
|
+
items: {
|
|
86747
|
+
$ref: string;
|
|
86748
|
+
};
|
|
86749
|
+
type: string;
|
|
86750
|
+
};
|
|
86820
86751
|
ok: {
|
|
86821
86752
|
type: string;
|
|
86822
86753
|
};
|
|
@@ -86852,7 +86783,8 @@ declare const _default: {
|
|
|
86852
86783
|
tags: string[];
|
|
86853
86784
|
'x-fern-sdk-group-name': string[];
|
|
86854
86785
|
'x-fern-sdk-method-name': string;
|
|
86855
|
-
'x-
|
|
86786
|
+
'x-fern-sdk-return-value': string;
|
|
86787
|
+
'x-response-key': string;
|
|
86856
86788
|
'x-title': string;
|
|
86857
86789
|
};
|
|
86858
86790
|
post: {
|
|
@@ -86881,6 +86813,20 @@ declare const _default: {
|
|
|
86881
86813
|
'application/json': {
|
|
86882
86814
|
schema: {
|
|
86883
86815
|
properties: {
|
|
86816
|
+
accessible_devices: {
|
|
86817
|
+
deprecated: boolean;
|
|
86818
|
+
items: {
|
|
86819
|
+
$ref: string;
|
|
86820
|
+
};
|
|
86821
|
+
type: string;
|
|
86822
|
+
'x-deprecated': string;
|
|
86823
|
+
};
|
|
86824
|
+
devices: {
|
|
86825
|
+
items: {
|
|
86826
|
+
$ref: string;
|
|
86827
|
+
};
|
|
86828
|
+
type: string;
|
|
86829
|
+
};
|
|
86884
86830
|
ok: {
|
|
86885
86831
|
type: string;
|
|
86886
86832
|
};
|
|
@@ -86916,12 +86862,13 @@ declare const _default: {
|
|
|
86916
86862
|
tags: string[];
|
|
86917
86863
|
'x-fern-sdk-group-name': string[];
|
|
86918
86864
|
'x-fern-sdk-method-name': string;
|
|
86919
|
-
'x-
|
|
86865
|
+
'x-fern-sdk-return-value': string;
|
|
86866
|
+
'x-response-key': string;
|
|
86920
86867
|
'x-title': string;
|
|
86921
86868
|
};
|
|
86922
86869
|
};
|
|
86923
|
-
'/user_identities/
|
|
86924
|
-
|
|
86870
|
+
'/user_identities/list_acs_systems': {
|
|
86871
|
+
get: {
|
|
86925
86872
|
description: string;
|
|
86926
86873
|
operationId: string;
|
|
86927
86874
|
parameters: {
|
|
@@ -86940,6 +86887,12 @@ declare const _default: {
|
|
|
86940
86887
|
'application/json': {
|
|
86941
86888
|
schema: {
|
|
86942
86889
|
properties: {
|
|
86890
|
+
acs_systems: {
|
|
86891
|
+
items: {
|
|
86892
|
+
$ref: string;
|
|
86893
|
+
};
|
|
86894
|
+
type: string;
|
|
86895
|
+
};
|
|
86943
86896
|
ok: {
|
|
86944
86897
|
type: string;
|
|
86945
86898
|
};
|
|
@@ -86959,15 +86912,23 @@ declare const _default: {
|
|
|
86959
86912
|
};
|
|
86960
86913
|
};
|
|
86961
86914
|
security: ({
|
|
86915
|
+
client_session: never[];
|
|
86916
|
+
pat_with_workspace?: never;
|
|
86917
|
+
console_session_with_workspace?: never;
|
|
86918
|
+
api_key?: never;
|
|
86919
|
+
} | {
|
|
86962
86920
|
pat_with_workspace: never[];
|
|
86921
|
+
client_session?: never;
|
|
86963
86922
|
console_session_with_workspace?: never;
|
|
86964
86923
|
api_key?: never;
|
|
86965
86924
|
} | {
|
|
86966
86925
|
console_session_with_workspace: never[];
|
|
86926
|
+
client_session?: never;
|
|
86967
86927
|
pat_with_workspace?: never;
|
|
86968
86928
|
api_key?: never;
|
|
86969
86929
|
} | {
|
|
86970
86930
|
api_key: never[];
|
|
86931
|
+
client_session?: never;
|
|
86971
86932
|
pat_with_workspace?: never;
|
|
86972
86933
|
console_session_with_workspace?: never;
|
|
86973
86934
|
})[];
|
|
@@ -86975,9 +86936,9 @@ declare const _default: {
|
|
|
86975
86936
|
tags: string[];
|
|
86976
86937
|
'x-fern-sdk-group-name': string[];
|
|
86977
86938
|
'x-fern-sdk-method-name': string;
|
|
86978
|
-
'x-
|
|
86939
|
+
'x-fern-sdk-return-value': string;
|
|
86940
|
+
'x-response-key': string;
|
|
86979
86941
|
'x-title': string;
|
|
86980
|
-
'x-undocumented': string;
|
|
86981
86942
|
};
|
|
86982
86943
|
post: {
|
|
86983
86944
|
description: string;
|
|
@@ -86987,7 +86948,7 @@ declare const _default: {
|
|
|
86987
86948
|
'application/json': {
|
|
86988
86949
|
schema: {
|
|
86989
86950
|
properties: {
|
|
86990
|
-
|
|
86951
|
+
user_identity_id: {
|
|
86991
86952
|
description: string;
|
|
86992
86953
|
format: string;
|
|
86993
86954
|
type: string;
|
|
@@ -87005,6 +86966,12 @@ declare const _default: {
|
|
|
87005
86966
|
'application/json': {
|
|
87006
86967
|
schema: {
|
|
87007
86968
|
properties: {
|
|
86969
|
+
acs_systems: {
|
|
86970
|
+
items: {
|
|
86971
|
+
$ref: string;
|
|
86972
|
+
};
|
|
86973
|
+
type: string;
|
|
86974
|
+
};
|
|
87008
86975
|
ok: {
|
|
87009
86976
|
type: string;
|
|
87010
86977
|
};
|
|
@@ -87024,15 +86991,23 @@ declare const _default: {
|
|
|
87024
86991
|
};
|
|
87025
86992
|
};
|
|
87026
86993
|
security: ({
|
|
86994
|
+
client_session: never[];
|
|
86995
|
+
pat_with_workspace?: never;
|
|
86996
|
+
console_session_with_workspace?: never;
|
|
86997
|
+
api_key?: never;
|
|
86998
|
+
} | {
|
|
87027
86999
|
pat_with_workspace: never[];
|
|
87000
|
+
client_session?: never;
|
|
87028
87001
|
console_session_with_workspace?: never;
|
|
87029
87002
|
api_key?: never;
|
|
87030
87003
|
} | {
|
|
87031
87004
|
console_session_with_workspace: never[];
|
|
87005
|
+
client_session?: never;
|
|
87032
87006
|
pat_with_workspace?: never;
|
|
87033
87007
|
api_key?: never;
|
|
87034
87008
|
} | {
|
|
87035
87009
|
api_key: never[];
|
|
87010
|
+
client_session?: never;
|
|
87036
87011
|
pat_with_workspace?: never;
|
|
87037
87012
|
console_session_with_workspace?: never;
|
|
87038
87013
|
})[];
|
|
@@ -87040,12 +87015,12 @@ declare const _default: {
|
|
|
87040
87015
|
tags: string[];
|
|
87041
87016
|
'x-fern-sdk-group-name': string[];
|
|
87042
87017
|
'x-fern-sdk-method-name': string;
|
|
87043
|
-
'x-
|
|
87018
|
+
'x-fern-sdk-return-value': string;
|
|
87019
|
+
'x-response-key': string;
|
|
87044
87020
|
'x-title': string;
|
|
87045
|
-
'x-undocumented': string;
|
|
87046
87021
|
};
|
|
87047
87022
|
};
|
|
87048
|
-
'/user_identities/
|
|
87023
|
+
'/user_identities/list_acs_users': {
|
|
87049
87024
|
get: {
|
|
87050
87025
|
description: string;
|
|
87051
87026
|
operationId: string;
|
|
@@ -87065,8 +87040,11 @@ declare const _default: {
|
|
|
87065
87040
|
'application/json': {
|
|
87066
87041
|
schema: {
|
|
87067
87042
|
properties: {
|
|
87068
|
-
|
|
87069
|
-
|
|
87043
|
+
acs_users: {
|
|
87044
|
+
items: {
|
|
87045
|
+
$ref: string;
|
|
87046
|
+
};
|
|
87047
|
+
type: string;
|
|
87070
87048
|
};
|
|
87071
87049
|
ok: {
|
|
87072
87050
|
type: string;
|
|
@@ -87087,25 +87065,17 @@ declare const _default: {
|
|
|
87087
87065
|
};
|
|
87088
87066
|
};
|
|
87089
87067
|
security: ({
|
|
87090
|
-
|
|
87068
|
+
api_key: never[];
|
|
87091
87069
|
pat_with_workspace?: never;
|
|
87092
87070
|
console_session_with_workspace?: never;
|
|
87093
|
-
api_key?: never;
|
|
87094
87071
|
} | {
|
|
87095
87072
|
pat_with_workspace: never[];
|
|
87096
|
-
client_session?: never;
|
|
87097
|
-
console_session_with_workspace?: never;
|
|
87098
87073
|
api_key?: never;
|
|
87074
|
+
console_session_with_workspace?: never;
|
|
87099
87075
|
} | {
|
|
87100
87076
|
console_session_with_workspace: never[];
|
|
87101
|
-
client_session?: never;
|
|
87102
|
-
pat_with_workspace?: never;
|
|
87103
87077
|
api_key?: never;
|
|
87104
|
-
} | {
|
|
87105
|
-
api_key: never[];
|
|
87106
|
-
client_session?: never;
|
|
87107
87078
|
pat_with_workspace?: never;
|
|
87108
|
-
console_session_with_workspace?: never;
|
|
87109
87079
|
})[];
|
|
87110
87080
|
summary: string;
|
|
87111
87081
|
tags: string[];
|
|
@@ -87114,7 +87084,6 @@ declare const _default: {
|
|
|
87114
87084
|
'x-fern-sdk-return-value': string;
|
|
87115
87085
|
'x-response-key': string;
|
|
87116
87086
|
'x-title': string;
|
|
87117
|
-
'x-undocumented': string;
|
|
87118
87087
|
};
|
|
87119
87088
|
post: {
|
|
87120
87089
|
description: string;
|
|
@@ -87124,7 +87093,7 @@ declare const _default: {
|
|
|
87124
87093
|
'application/json': {
|
|
87125
87094
|
schema: {
|
|
87126
87095
|
properties: {
|
|
87127
|
-
|
|
87096
|
+
user_identity_id: {
|
|
87128
87097
|
description: string;
|
|
87129
87098
|
format: string;
|
|
87130
87099
|
type: string;
|
|
@@ -87142,8 +87111,11 @@ declare const _default: {
|
|
|
87142
87111
|
'application/json': {
|
|
87143
87112
|
schema: {
|
|
87144
87113
|
properties: {
|
|
87145
|
-
|
|
87146
|
-
|
|
87114
|
+
acs_users: {
|
|
87115
|
+
items: {
|
|
87116
|
+
$ref: string;
|
|
87117
|
+
};
|
|
87118
|
+
type: string;
|
|
87147
87119
|
};
|
|
87148
87120
|
ok: {
|
|
87149
87121
|
type: string;
|
|
@@ -87164,25 +87136,17 @@ declare const _default: {
|
|
|
87164
87136
|
};
|
|
87165
87137
|
};
|
|
87166
87138
|
security: ({
|
|
87167
|
-
|
|
87139
|
+
api_key: never[];
|
|
87168
87140
|
pat_with_workspace?: never;
|
|
87169
87141
|
console_session_with_workspace?: never;
|
|
87170
|
-
api_key?: never;
|
|
87171
87142
|
} | {
|
|
87172
87143
|
pat_with_workspace: never[];
|
|
87173
|
-
client_session?: never;
|
|
87174
|
-
console_session_with_workspace?: never;
|
|
87175
87144
|
api_key?: never;
|
|
87145
|
+
console_session_with_workspace?: never;
|
|
87176
87146
|
} | {
|
|
87177
87147
|
console_session_with_workspace: never[];
|
|
87178
|
-
client_session?: never;
|
|
87179
|
-
pat_with_workspace?: never;
|
|
87180
87148
|
api_key?: never;
|
|
87181
|
-
} | {
|
|
87182
|
-
api_key: never[];
|
|
87183
|
-
client_session?: never;
|
|
87184
87149
|
pat_with_workspace?: never;
|
|
87185
|
-
console_session_with_workspace?: never;
|
|
87186
87150
|
})[];
|
|
87187
87151
|
summary: string;
|
|
87188
87152
|
tags: string[];
|
|
@@ -87191,10 +87155,66 @@ declare const _default: {
|
|
|
87191
87155
|
'x-fern-sdk-return-value': string;
|
|
87192
87156
|
'x-response-key': string;
|
|
87193
87157
|
'x-title': string;
|
|
87194
|
-
'x-undocumented': string;
|
|
87195
87158
|
};
|
|
87196
87159
|
};
|
|
87197
|
-
'/user_identities/
|
|
87160
|
+
'/user_identities/remove_acs_user': {
|
|
87161
|
+
delete: {
|
|
87162
|
+
description: string;
|
|
87163
|
+
operationId: string;
|
|
87164
|
+
parameters: {
|
|
87165
|
+
in: string;
|
|
87166
|
+
name: string;
|
|
87167
|
+
required: boolean;
|
|
87168
|
+
schema: {
|
|
87169
|
+
description: string;
|
|
87170
|
+
format: string;
|
|
87171
|
+
type: string;
|
|
87172
|
+
};
|
|
87173
|
+
}[];
|
|
87174
|
+
responses: {
|
|
87175
|
+
200: {
|
|
87176
|
+
content: {
|
|
87177
|
+
'application/json': {
|
|
87178
|
+
schema: {
|
|
87179
|
+
properties: {
|
|
87180
|
+
ok: {
|
|
87181
|
+
type: string;
|
|
87182
|
+
};
|
|
87183
|
+
};
|
|
87184
|
+
required: string[];
|
|
87185
|
+
type: string;
|
|
87186
|
+
};
|
|
87187
|
+
};
|
|
87188
|
+
};
|
|
87189
|
+
description: string;
|
|
87190
|
+
};
|
|
87191
|
+
400: {
|
|
87192
|
+
description: string;
|
|
87193
|
+
};
|
|
87194
|
+
401: {
|
|
87195
|
+
description: string;
|
|
87196
|
+
};
|
|
87197
|
+
};
|
|
87198
|
+
security: ({
|
|
87199
|
+
api_key: never[];
|
|
87200
|
+
pat_with_workspace?: never;
|
|
87201
|
+
console_session_with_workspace?: never;
|
|
87202
|
+
} | {
|
|
87203
|
+
pat_with_workspace: never[];
|
|
87204
|
+
api_key?: never;
|
|
87205
|
+
console_session_with_workspace?: never;
|
|
87206
|
+
} | {
|
|
87207
|
+
console_session_with_workspace: never[];
|
|
87208
|
+
api_key?: never;
|
|
87209
|
+
pat_with_workspace?: never;
|
|
87210
|
+
})[];
|
|
87211
|
+
summary: string;
|
|
87212
|
+
tags: string[];
|
|
87213
|
+
'x-fern-sdk-group-name': string[];
|
|
87214
|
+
'x-fern-sdk-method-name': string;
|
|
87215
|
+
'x-response-key': null;
|
|
87216
|
+
'x-title': string;
|
|
87217
|
+
};
|
|
87198
87218
|
post: {
|
|
87199
87219
|
description: string;
|
|
87200
87220
|
operationId: string;
|
|
@@ -87203,21 +87223,7 @@ declare const _default: {
|
|
|
87203
87223
|
'application/json': {
|
|
87204
87224
|
schema: {
|
|
87205
87225
|
properties: {
|
|
87206
|
-
|
|
87207
|
-
description: string;
|
|
87208
|
-
format: string;
|
|
87209
|
-
type: string;
|
|
87210
|
-
};
|
|
87211
|
-
create_credential_manager_user: {
|
|
87212
|
-
description: string;
|
|
87213
|
-
type: string;
|
|
87214
|
-
};
|
|
87215
|
-
credential_manager_acs_system_id: {
|
|
87216
|
-
description: string;
|
|
87217
|
-
format: string;
|
|
87218
|
-
type: string;
|
|
87219
|
-
};
|
|
87220
|
-
credential_manager_acs_user_id: {
|
|
87226
|
+
acs_user_id: {
|
|
87221
87227
|
description: string;
|
|
87222
87228
|
format: string;
|
|
87223
87229
|
type: string;
|
|
@@ -87240,9 +87246,6 @@ declare const _default: {
|
|
|
87240
87246
|
'application/json': {
|
|
87241
87247
|
schema: {
|
|
87242
87248
|
properties: {
|
|
87243
|
-
enrollment_automation: {
|
|
87244
|
-
$ref: string;
|
|
87245
|
-
};
|
|
87246
87249
|
ok: {
|
|
87247
87250
|
type: string;
|
|
87248
87251
|
};
|
|
@@ -87262,30 +87265,28 @@ declare const _default: {
|
|
|
87262
87265
|
};
|
|
87263
87266
|
};
|
|
87264
87267
|
security: ({
|
|
87265
|
-
|
|
87268
|
+
api_key: never[];
|
|
87269
|
+
pat_with_workspace?: never;
|
|
87266
87270
|
console_session_with_workspace?: never;
|
|
87271
|
+
} | {
|
|
87272
|
+
pat_with_workspace: never[];
|
|
87267
87273
|
api_key?: never;
|
|
87274
|
+
console_session_with_workspace?: never;
|
|
87268
87275
|
} | {
|
|
87269
87276
|
console_session_with_workspace: never[];
|
|
87270
|
-
pat_with_workspace?: never;
|
|
87271
87277
|
api_key?: never;
|
|
87272
|
-
} | {
|
|
87273
|
-
api_key: never[];
|
|
87274
87278
|
pat_with_workspace?: never;
|
|
87275
|
-
console_session_with_workspace?: never;
|
|
87276
87279
|
})[];
|
|
87277
87280
|
summary: string;
|
|
87278
87281
|
tags: string[];
|
|
87279
87282
|
'x-fern-sdk-group-name': string[];
|
|
87280
87283
|
'x-fern-sdk-method-name': string;
|
|
87281
|
-
'x-
|
|
87282
|
-
'x-response-key': string;
|
|
87284
|
+
'x-response-key': null;
|
|
87283
87285
|
'x-title': string;
|
|
87284
|
-
'x-undocumented': string;
|
|
87285
87286
|
};
|
|
87286
87287
|
};
|
|
87287
|
-
'/user_identities/
|
|
87288
|
-
|
|
87288
|
+
'/user_identities/revoke_access_to_device': {
|
|
87289
|
+
delete: {
|
|
87289
87290
|
description: string;
|
|
87290
87291
|
operationId: string;
|
|
87291
87292
|
parameters: {
|
|
@@ -87304,12 +87305,6 @@ declare const _default: {
|
|
|
87304
87305
|
'application/json': {
|
|
87305
87306
|
schema: {
|
|
87306
87307
|
properties: {
|
|
87307
|
-
enrollment_automations: {
|
|
87308
|
-
items: {
|
|
87309
|
-
$ref: string;
|
|
87310
|
-
};
|
|
87311
|
-
type: string;
|
|
87312
|
-
};
|
|
87313
87308
|
ok: {
|
|
87314
87309
|
type: string;
|
|
87315
87310
|
};
|
|
@@ -87329,34 +87324,24 @@ declare const _default: {
|
|
|
87329
87324
|
};
|
|
87330
87325
|
};
|
|
87331
87326
|
security: ({
|
|
87332
|
-
|
|
87327
|
+
api_key: never[];
|
|
87333
87328
|
pat_with_workspace?: never;
|
|
87334
87329
|
console_session_with_workspace?: never;
|
|
87335
|
-
api_key?: never;
|
|
87336
87330
|
} | {
|
|
87337
87331
|
pat_with_workspace: never[];
|
|
87338
|
-
client_session?: never;
|
|
87339
|
-
console_session_with_workspace?: never;
|
|
87340
87332
|
api_key?: never;
|
|
87333
|
+
console_session_with_workspace?: never;
|
|
87341
87334
|
} | {
|
|
87342
87335
|
console_session_with_workspace: never[];
|
|
87343
|
-
client_session?: never;
|
|
87344
|
-
pat_with_workspace?: never;
|
|
87345
87336
|
api_key?: never;
|
|
87346
|
-
} | {
|
|
87347
|
-
api_key: never[];
|
|
87348
|
-
client_session?: never;
|
|
87349
87337
|
pat_with_workspace?: never;
|
|
87350
|
-
console_session_with_workspace?: never;
|
|
87351
87338
|
})[];
|
|
87352
87339
|
summary: string;
|
|
87353
87340
|
tags: string[];
|
|
87354
87341
|
'x-fern-sdk-group-name': string[];
|
|
87355
87342
|
'x-fern-sdk-method-name': string;
|
|
87356
|
-
'x-
|
|
87357
|
-
'x-response-key': string;
|
|
87343
|
+
'x-response-key': null;
|
|
87358
87344
|
'x-title': string;
|
|
87359
|
-
'x-undocumented': string;
|
|
87360
87345
|
};
|
|
87361
87346
|
post: {
|
|
87362
87347
|
description: string;
|
|
@@ -87366,6 +87351,11 @@ declare const _default: {
|
|
|
87366
87351
|
'application/json': {
|
|
87367
87352
|
schema: {
|
|
87368
87353
|
properties: {
|
|
87354
|
+
device_id: {
|
|
87355
|
+
description: string;
|
|
87356
|
+
format: string;
|
|
87357
|
+
type: string;
|
|
87358
|
+
};
|
|
87369
87359
|
user_identity_id: {
|
|
87370
87360
|
description: string;
|
|
87371
87361
|
format: string;
|
|
@@ -87384,12 +87374,6 @@ declare const _default: {
|
|
|
87384
87374
|
'application/json': {
|
|
87385
87375
|
schema: {
|
|
87386
87376
|
properties: {
|
|
87387
|
-
enrollment_automations: {
|
|
87388
|
-
items: {
|
|
87389
|
-
$ref: string;
|
|
87390
|
-
};
|
|
87391
|
-
type: string;
|
|
87392
|
-
};
|
|
87393
87377
|
ok: {
|
|
87394
87378
|
type: string;
|
|
87395
87379
|
};
|
|
@@ -87409,38 +87393,28 @@ declare const _default: {
|
|
|
87409
87393
|
};
|
|
87410
87394
|
};
|
|
87411
87395
|
security: ({
|
|
87412
|
-
|
|
87396
|
+
api_key: never[];
|
|
87413
87397
|
pat_with_workspace?: never;
|
|
87414
87398
|
console_session_with_workspace?: never;
|
|
87415
|
-
api_key?: never;
|
|
87416
87399
|
} | {
|
|
87417
87400
|
pat_with_workspace: never[];
|
|
87418
|
-
client_session?: never;
|
|
87419
|
-
console_session_with_workspace?: never;
|
|
87420
87401
|
api_key?: never;
|
|
87402
|
+
console_session_with_workspace?: never;
|
|
87421
87403
|
} | {
|
|
87422
87404
|
console_session_with_workspace: never[];
|
|
87423
|
-
client_session?: never;
|
|
87424
|
-
pat_with_workspace?: never;
|
|
87425
87405
|
api_key?: never;
|
|
87426
|
-
} | {
|
|
87427
|
-
api_key: never[];
|
|
87428
|
-
client_session?: never;
|
|
87429
87406
|
pat_with_workspace?: never;
|
|
87430
|
-
console_session_with_workspace?: never;
|
|
87431
87407
|
})[];
|
|
87432
87408
|
summary: string;
|
|
87433
87409
|
tags: string[];
|
|
87434
87410
|
'x-fern-sdk-group-name': string[];
|
|
87435
87411
|
'x-fern-sdk-method-name': string;
|
|
87436
|
-
'x-
|
|
87437
|
-
'x-response-key': string;
|
|
87412
|
+
'x-response-key': null;
|
|
87438
87413
|
'x-title': string;
|
|
87439
|
-
'x-undocumented': string;
|
|
87440
87414
|
};
|
|
87441
87415
|
};
|
|
87442
|
-
'/user_identities/
|
|
87443
|
-
|
|
87416
|
+
'/user_identities/update': {
|
|
87417
|
+
patch: {
|
|
87444
87418
|
description: string;
|
|
87445
87419
|
operationId: string;
|
|
87446
87420
|
requestBody: {
|
|
@@ -87448,10 +87422,21 @@ declare const _default: {
|
|
|
87448
87422
|
'application/json': {
|
|
87449
87423
|
schema: {
|
|
87450
87424
|
properties: {
|
|
87451
|
-
|
|
87452
|
-
default: number;
|
|
87425
|
+
email_address: {
|
|
87453
87426
|
description: string;
|
|
87454
87427
|
format: string;
|
|
87428
|
+
nullable: boolean;
|
|
87429
|
+
type: string;
|
|
87430
|
+
};
|
|
87431
|
+
full_name: {
|
|
87432
|
+
description: string;
|
|
87433
|
+
minLength: number;
|
|
87434
|
+
nullable: boolean;
|
|
87435
|
+
type: string;
|
|
87436
|
+
};
|
|
87437
|
+
phone_number: {
|
|
87438
|
+
description: string;
|
|
87439
|
+
nullable: boolean;
|
|
87455
87440
|
type: string;
|
|
87456
87441
|
};
|
|
87457
87442
|
user_identity_id: {
|
|
@@ -87459,6 +87444,12 @@ declare const _default: {
|
|
|
87459
87444
|
format: string;
|
|
87460
87445
|
type: string;
|
|
87461
87446
|
};
|
|
87447
|
+
user_identity_key: {
|
|
87448
|
+
description: string;
|
|
87449
|
+
minLength: number;
|
|
87450
|
+
nullable: boolean;
|
|
87451
|
+
type: string;
|
|
87452
|
+
};
|
|
87462
87453
|
};
|
|
87463
87454
|
required: string[];
|
|
87464
87455
|
type: string;
|
|
@@ -87472,9 +87463,6 @@ declare const _default: {
|
|
|
87472
87463
|
'application/json': {
|
|
87473
87464
|
schema: {
|
|
87474
87465
|
properties: {
|
|
87475
|
-
instant_key: {
|
|
87476
|
-
$ref: string;
|
|
87477
|
-
};
|
|
87478
87466
|
ok: {
|
|
87479
87467
|
type: string;
|
|
87480
87468
|
};
|
|
@@ -87494,31 +87482,68 @@ declare const _default: {
|
|
|
87494
87482
|
};
|
|
87495
87483
|
};
|
|
87496
87484
|
security: ({
|
|
87497
|
-
api_key: never[];
|
|
87498
|
-
pat_with_workspace?: never;
|
|
87499
|
-
console_session_with_workspace?: never;
|
|
87500
|
-
} | {
|
|
87501
87485
|
pat_with_workspace: never[];
|
|
87502
|
-
api_key?: never;
|
|
87503
87486
|
console_session_with_workspace?: never;
|
|
87487
|
+
api_key?: never;
|
|
87504
87488
|
} | {
|
|
87505
87489
|
console_session_with_workspace: never[];
|
|
87490
|
+
pat_with_workspace?: never;
|
|
87506
87491
|
api_key?: never;
|
|
87492
|
+
} | {
|
|
87493
|
+
api_key: never[];
|
|
87507
87494
|
pat_with_workspace?: never;
|
|
87495
|
+
console_session_with_workspace?: never;
|
|
87508
87496
|
})[];
|
|
87509
87497
|
summary: string;
|
|
87510
87498
|
tags: string[];
|
|
87511
87499
|
'x-fern-sdk-group-name': string[];
|
|
87512
87500
|
'x-fern-sdk-method-name': string;
|
|
87513
|
-
'x-
|
|
87514
|
-
'x-response-key': string;
|
|
87501
|
+
'x-response-key': null;
|
|
87515
87502
|
'x-title': string;
|
|
87516
87503
|
};
|
|
87517
|
-
|
|
87518
|
-
'/user_identities/get': {
|
|
87519
|
-
get: {
|
|
87504
|
+
post: {
|
|
87520
87505
|
description: string;
|
|
87521
87506
|
operationId: string;
|
|
87507
|
+
requestBody: {
|
|
87508
|
+
content: {
|
|
87509
|
+
'application/json': {
|
|
87510
|
+
schema: {
|
|
87511
|
+
properties: {
|
|
87512
|
+
email_address: {
|
|
87513
|
+
description: string;
|
|
87514
|
+
format: string;
|
|
87515
|
+
nullable: boolean;
|
|
87516
|
+
type: string;
|
|
87517
|
+
};
|
|
87518
|
+
full_name: {
|
|
87519
|
+
description: string;
|
|
87520
|
+
minLength: number;
|
|
87521
|
+
nullable: boolean;
|
|
87522
|
+
type: string;
|
|
87523
|
+
};
|
|
87524
|
+
phone_number: {
|
|
87525
|
+
description: string;
|
|
87526
|
+
nullable: boolean;
|
|
87527
|
+
type: string;
|
|
87528
|
+
};
|
|
87529
|
+
user_identity_id: {
|
|
87530
|
+
description: string;
|
|
87531
|
+
format: string;
|
|
87532
|
+
type: string;
|
|
87533
|
+
};
|
|
87534
|
+
user_identity_key: {
|
|
87535
|
+
description: string;
|
|
87536
|
+
minLength: number;
|
|
87537
|
+
nullable: boolean;
|
|
87538
|
+
type: string;
|
|
87539
|
+
};
|
|
87540
|
+
};
|
|
87541
|
+
required: string[];
|
|
87542
|
+
type: string;
|
|
87543
|
+
};
|
|
87544
|
+
};
|
|
87545
|
+
};
|
|
87546
|
+
};
|
|
87522
87547
|
responses: {
|
|
87523
87548
|
200: {
|
|
87524
87549
|
content: {
|
|
@@ -87528,9 +87553,6 @@ declare const _default: {
|
|
|
87528
87553
|
ok: {
|
|
87529
87554
|
type: string;
|
|
87530
87555
|
};
|
|
87531
|
-
user_identity: {
|
|
87532
|
-
$ref: string;
|
|
87533
|
-
};
|
|
87534
87556
|
};
|
|
87535
87557
|
required: string[];
|
|
87536
87558
|
type: string;
|
|
@@ -87547,26 +87569,27 @@ declare const _default: {
|
|
|
87547
87569
|
};
|
|
87548
87570
|
};
|
|
87549
87571
|
security: ({
|
|
87550
|
-
api_key: never[];
|
|
87551
|
-
pat_with_workspace?: never;
|
|
87552
|
-
console_session_with_workspace?: never;
|
|
87553
|
-
} | {
|
|
87554
87572
|
pat_with_workspace: never[];
|
|
87555
|
-
api_key?: never;
|
|
87556
87573
|
console_session_with_workspace?: never;
|
|
87574
|
+
api_key?: never;
|
|
87557
87575
|
} | {
|
|
87558
87576
|
console_session_with_workspace: never[];
|
|
87577
|
+
pat_with_workspace?: never;
|
|
87559
87578
|
api_key?: never;
|
|
87579
|
+
} | {
|
|
87580
|
+
api_key: never[];
|
|
87560
87581
|
pat_with_workspace?: never;
|
|
87582
|
+
console_session_with_workspace?: never;
|
|
87561
87583
|
})[];
|
|
87562
87584
|
summary: string;
|
|
87563
87585
|
tags: string[];
|
|
87564
87586
|
'x-fern-sdk-group-name': string[];
|
|
87565
87587
|
'x-fern-sdk-method-name': string;
|
|
87566
|
-
'x-
|
|
87567
|
-
'x-response-key': string;
|
|
87588
|
+
'x-response-key': null;
|
|
87568
87589
|
'x-title': string;
|
|
87569
87590
|
};
|
|
87591
|
+
};
|
|
87592
|
+
'/webhooks/create': {
|
|
87570
87593
|
post: {
|
|
87571
87594
|
description: string;
|
|
87572
87595
|
operationId: string;
|
|
@@ -87574,27 +87597,23 @@ declare const _default: {
|
|
|
87574
87597
|
content: {
|
|
87575
87598
|
'application/json': {
|
|
87576
87599
|
schema: {
|
|
87577
|
-
|
|
87578
|
-
|
|
87579
|
-
|
|
87580
|
-
|
|
87581
|
-
|
|
87600
|
+
properties: {
|
|
87601
|
+
event_types: {
|
|
87602
|
+
default: string[];
|
|
87603
|
+
description: string;
|
|
87604
|
+
items: {
|
|
87582
87605
|
type: string;
|
|
87583
87606
|
};
|
|
87584
|
-
|
|
87607
|
+
type: string;
|
|
87585
87608
|
};
|
|
87586
|
-
|
|
87587
|
-
|
|
87588
|
-
|
|
87589
|
-
|
|
87590
|
-
user_identity_key: {
|
|
87591
|
-
type: string;
|
|
87592
|
-
};
|
|
87593
|
-
user_identity_id?: never;
|
|
87609
|
+
url: {
|
|
87610
|
+
description: string;
|
|
87611
|
+
format: string;
|
|
87612
|
+
type: string;
|
|
87594
87613
|
};
|
|
87595
|
-
|
|
87596
|
-
|
|
87597
|
-
|
|
87614
|
+
};
|
|
87615
|
+
required: string[];
|
|
87616
|
+
type: string;
|
|
87598
87617
|
};
|
|
87599
87618
|
};
|
|
87600
87619
|
};
|
|
@@ -87608,7 +87627,7 @@ declare const _default: {
|
|
|
87608
87627
|
ok: {
|
|
87609
87628
|
type: string;
|
|
87610
87629
|
};
|
|
87611
|
-
|
|
87630
|
+
webhook: {
|
|
87612
87631
|
$ref: string;
|
|
87613
87632
|
};
|
|
87614
87633
|
};
|
|
@@ -87648,32 +87667,19 @@ declare const _default: {
|
|
|
87648
87667
|
'x-title': string;
|
|
87649
87668
|
};
|
|
87650
87669
|
};
|
|
87651
|
-
'/
|
|
87652
|
-
|
|
87670
|
+
'/webhooks/delete': {
|
|
87671
|
+
delete: {
|
|
87653
87672
|
description: string;
|
|
87654
87673
|
operationId: string;
|
|
87655
|
-
|
|
87656
|
-
|
|
87657
|
-
|
|
87658
|
-
|
|
87659
|
-
|
|
87660
|
-
|
|
87661
|
-
|
|
87662
|
-
format: string;
|
|
87663
|
-
type: string;
|
|
87664
|
-
};
|
|
87665
|
-
user_identity_id: {
|
|
87666
|
-
description: string;
|
|
87667
|
-
format: string;
|
|
87668
|
-
type: string;
|
|
87669
|
-
};
|
|
87670
|
-
};
|
|
87671
|
-
required: string[];
|
|
87672
|
-
type: string;
|
|
87673
|
-
};
|
|
87674
|
-
};
|
|
87674
|
+
parameters: {
|
|
87675
|
+
in: string;
|
|
87676
|
+
name: string;
|
|
87677
|
+
required: boolean;
|
|
87678
|
+
schema: {
|
|
87679
|
+
description: string;
|
|
87680
|
+
type: string;
|
|
87675
87681
|
};
|
|
87676
|
-
};
|
|
87682
|
+
}[];
|
|
87677
87683
|
responses: {
|
|
87678
87684
|
200: {
|
|
87679
87685
|
content: {
|
|
@@ -87718,7 +87724,7 @@ declare const _default: {
|
|
|
87718
87724
|
'x-response-key': null;
|
|
87719
87725
|
'x-title': string;
|
|
87720
87726
|
};
|
|
87721
|
-
|
|
87727
|
+
post: {
|
|
87722
87728
|
description: string;
|
|
87723
87729
|
operationId: string;
|
|
87724
87730
|
requestBody: {
|
|
@@ -87726,14 +87732,8 @@ declare const _default: {
|
|
|
87726
87732
|
'application/json': {
|
|
87727
87733
|
schema: {
|
|
87728
87734
|
properties: {
|
|
87729
|
-
|
|
87730
|
-
description: string;
|
|
87731
|
-
format: string;
|
|
87732
|
-
type: string;
|
|
87733
|
-
};
|
|
87734
|
-
user_identity_id: {
|
|
87735
|
+
webhook_id: {
|
|
87735
87736
|
description: string;
|
|
87736
|
-
format: string;
|
|
87737
87737
|
type: string;
|
|
87738
87738
|
};
|
|
87739
87739
|
};
|
|
@@ -87788,27 +87788,19 @@ declare const _default: {
|
|
|
87788
87788
|
'x-title': string;
|
|
87789
87789
|
};
|
|
87790
87790
|
};
|
|
87791
|
-
'/
|
|
87791
|
+
'/webhooks/get': {
|
|
87792
87792
|
get: {
|
|
87793
87793
|
description: string;
|
|
87794
87794
|
operationId: string;
|
|
87795
|
-
parameters:
|
|
87796
|
-
in: string;
|
|
87797
|
-
name: string;
|
|
87798
|
-
schema: {
|
|
87799
|
-
description: string;
|
|
87800
|
-
type: string;
|
|
87801
|
-
format?: never;
|
|
87802
|
-
};
|
|
87803
|
-
} | {
|
|
87795
|
+
parameters: {
|
|
87804
87796
|
in: string;
|
|
87805
87797
|
name: string;
|
|
87798
|
+
required: boolean;
|
|
87806
87799
|
schema: {
|
|
87807
87800
|
description: string;
|
|
87808
|
-
format: string;
|
|
87809
87801
|
type: string;
|
|
87810
87802
|
};
|
|
87811
|
-
}
|
|
87803
|
+
}[];
|
|
87812
87804
|
responses: {
|
|
87813
87805
|
200: {
|
|
87814
87806
|
content: {
|
|
@@ -87818,11 +87810,8 @@ declare const _default: {
|
|
|
87818
87810
|
ok: {
|
|
87819
87811
|
type: string;
|
|
87820
87812
|
};
|
|
87821
|
-
|
|
87822
|
-
|
|
87823
|
-
$ref: string;
|
|
87824
|
-
};
|
|
87825
|
-
type: string;
|
|
87813
|
+
webhook: {
|
|
87814
|
+
$ref: string;
|
|
87826
87815
|
};
|
|
87827
87816
|
};
|
|
87828
87817
|
required: string[];
|
|
@@ -87841,23 +87830,15 @@ declare const _default: {
|
|
|
87841
87830
|
};
|
|
87842
87831
|
security: ({
|
|
87843
87832
|
api_key: never[];
|
|
87844
|
-
client_session?: never;
|
|
87845
|
-
pat_with_workspace?: never;
|
|
87846
|
-
console_session_with_workspace?: never;
|
|
87847
|
-
} | {
|
|
87848
|
-
client_session: never[];
|
|
87849
|
-
api_key?: never;
|
|
87850
87833
|
pat_with_workspace?: never;
|
|
87851
87834
|
console_session_with_workspace?: never;
|
|
87852
87835
|
} | {
|
|
87853
87836
|
pat_with_workspace: never[];
|
|
87854
87837
|
api_key?: never;
|
|
87855
|
-
client_session?: never;
|
|
87856
87838
|
console_session_with_workspace?: never;
|
|
87857
87839
|
} | {
|
|
87858
87840
|
console_session_with_workspace: never[];
|
|
87859
87841
|
api_key?: never;
|
|
87860
|
-
client_session?: never;
|
|
87861
87842
|
pat_with_workspace?: never;
|
|
87862
87843
|
})[];
|
|
87863
87844
|
summary: string;
|
|
@@ -87876,16 +87857,12 @@ declare const _default: {
|
|
|
87876
87857
|
'application/json': {
|
|
87877
87858
|
schema: {
|
|
87878
87859
|
properties: {
|
|
87879
|
-
|
|
87880
|
-
description: string;
|
|
87881
|
-
format: string;
|
|
87882
|
-
type: string;
|
|
87883
|
-
};
|
|
87884
|
-
search: {
|
|
87860
|
+
webhook_id: {
|
|
87885
87861
|
description: string;
|
|
87886
87862
|
type: string;
|
|
87887
87863
|
};
|
|
87888
87864
|
};
|
|
87865
|
+
required: string[];
|
|
87889
87866
|
type: string;
|
|
87890
87867
|
};
|
|
87891
87868
|
};
|
|
@@ -87900,11 +87877,8 @@ declare const _default: {
|
|
|
87900
87877
|
ok: {
|
|
87901
87878
|
type: string;
|
|
87902
87879
|
};
|
|
87903
|
-
|
|
87904
|
-
|
|
87905
|
-
$ref: string;
|
|
87906
|
-
};
|
|
87907
|
-
type: string;
|
|
87880
|
+
webhook: {
|
|
87881
|
+
$ref: string;
|
|
87908
87882
|
};
|
|
87909
87883
|
};
|
|
87910
87884
|
required: string[];
|
|
@@ -87923,23 +87897,15 @@ declare const _default: {
|
|
|
87923
87897
|
};
|
|
87924
87898
|
security: ({
|
|
87925
87899
|
api_key: never[];
|
|
87926
|
-
client_session?: never;
|
|
87927
|
-
pat_with_workspace?: never;
|
|
87928
|
-
console_session_with_workspace?: never;
|
|
87929
|
-
} | {
|
|
87930
|
-
client_session: never[];
|
|
87931
|
-
api_key?: never;
|
|
87932
87900
|
pat_with_workspace?: never;
|
|
87933
87901
|
console_session_with_workspace?: never;
|
|
87934
87902
|
} | {
|
|
87935
87903
|
pat_with_workspace: never[];
|
|
87936
87904
|
api_key?: never;
|
|
87937
|
-
client_session?: never;
|
|
87938
87905
|
console_session_with_workspace?: never;
|
|
87939
87906
|
} | {
|
|
87940
87907
|
console_session_with_workspace: never[];
|
|
87941
87908
|
api_key?: never;
|
|
87942
|
-
client_session?: never;
|
|
87943
87909
|
pat_with_workspace?: never;
|
|
87944
87910
|
})[];
|
|
87945
87911
|
summary: string;
|
|
@@ -87951,1223 +87917,20 @@ declare const _default: {
|
|
|
87951
87917
|
'x-title': string;
|
|
87952
87918
|
};
|
|
87953
87919
|
};
|
|
87954
|
-
'/
|
|
87920
|
+
'/webhooks/list': {
|
|
87955
87921
|
get: {
|
|
87956
87922
|
description: string;
|
|
87957
87923
|
operationId: string;
|
|
87958
|
-
parameters: {
|
|
87959
|
-
in: string;
|
|
87960
|
-
name: string;
|
|
87961
|
-
required: boolean;
|
|
87962
|
-
schema: {
|
|
87963
|
-
description: string;
|
|
87964
|
-
format: string;
|
|
87965
|
-
type: string;
|
|
87966
|
-
};
|
|
87967
|
-
}[];
|
|
87968
87924
|
responses: {
|
|
87969
87925
|
200: {
|
|
87970
87926
|
content: {
|
|
87971
87927
|
'application/json': {
|
|
87972
87928
|
schema: {
|
|
87973
87929
|
properties: {
|
|
87974
|
-
|
|
87975
|
-
deprecated: boolean;
|
|
87976
|
-
items: {
|
|
87977
|
-
$ref: string;
|
|
87978
|
-
};
|
|
87930
|
+
ok: {
|
|
87979
87931
|
type: string;
|
|
87980
|
-
'x-deprecated': string;
|
|
87981
87932
|
};
|
|
87982
|
-
|
|
87983
|
-
items: {
|
|
87984
|
-
$ref: string;
|
|
87985
|
-
};
|
|
87986
|
-
type: string;
|
|
87987
|
-
};
|
|
87988
|
-
ok: {
|
|
87989
|
-
type: string;
|
|
87990
|
-
};
|
|
87991
|
-
};
|
|
87992
|
-
required: string[];
|
|
87993
|
-
type: string;
|
|
87994
|
-
};
|
|
87995
|
-
};
|
|
87996
|
-
};
|
|
87997
|
-
description: string;
|
|
87998
|
-
};
|
|
87999
|
-
400: {
|
|
88000
|
-
description: string;
|
|
88001
|
-
};
|
|
88002
|
-
401: {
|
|
88003
|
-
description: string;
|
|
88004
|
-
};
|
|
88005
|
-
};
|
|
88006
|
-
security: ({
|
|
88007
|
-
api_key: never[];
|
|
88008
|
-
pat_with_workspace?: never;
|
|
88009
|
-
console_session_with_workspace?: never;
|
|
88010
|
-
} | {
|
|
88011
|
-
pat_with_workspace: never[];
|
|
88012
|
-
api_key?: never;
|
|
88013
|
-
console_session_with_workspace?: never;
|
|
88014
|
-
} | {
|
|
88015
|
-
console_session_with_workspace: never[];
|
|
88016
|
-
api_key?: never;
|
|
88017
|
-
pat_with_workspace?: never;
|
|
88018
|
-
})[];
|
|
88019
|
-
summary: string;
|
|
88020
|
-
tags: string[];
|
|
88021
|
-
'x-fern-sdk-group-name': string[];
|
|
88022
|
-
'x-fern-sdk-method-name': string;
|
|
88023
|
-
'x-fern-sdk-return-value': string;
|
|
88024
|
-
'x-response-key': string;
|
|
88025
|
-
'x-title': string;
|
|
88026
|
-
};
|
|
88027
|
-
post: {
|
|
88028
|
-
description: string;
|
|
88029
|
-
operationId: string;
|
|
88030
|
-
requestBody: {
|
|
88031
|
-
content: {
|
|
88032
|
-
'application/json': {
|
|
88033
|
-
schema: {
|
|
88034
|
-
properties: {
|
|
88035
|
-
user_identity_id: {
|
|
88036
|
-
description: string;
|
|
88037
|
-
format: string;
|
|
88038
|
-
type: string;
|
|
88039
|
-
};
|
|
88040
|
-
};
|
|
88041
|
-
required: string[];
|
|
88042
|
-
type: string;
|
|
88043
|
-
};
|
|
88044
|
-
};
|
|
88045
|
-
};
|
|
88046
|
-
};
|
|
88047
|
-
responses: {
|
|
88048
|
-
200: {
|
|
88049
|
-
content: {
|
|
88050
|
-
'application/json': {
|
|
88051
|
-
schema: {
|
|
88052
|
-
properties: {
|
|
88053
|
-
accessible_devices: {
|
|
88054
|
-
deprecated: boolean;
|
|
88055
|
-
items: {
|
|
88056
|
-
$ref: string;
|
|
88057
|
-
};
|
|
88058
|
-
type: string;
|
|
88059
|
-
'x-deprecated': string;
|
|
88060
|
-
};
|
|
88061
|
-
devices: {
|
|
88062
|
-
items: {
|
|
88063
|
-
$ref: string;
|
|
88064
|
-
};
|
|
88065
|
-
type: string;
|
|
88066
|
-
};
|
|
88067
|
-
ok: {
|
|
88068
|
-
type: string;
|
|
88069
|
-
};
|
|
88070
|
-
};
|
|
88071
|
-
required: string[];
|
|
88072
|
-
type: string;
|
|
88073
|
-
};
|
|
88074
|
-
};
|
|
88075
|
-
};
|
|
88076
|
-
description: string;
|
|
88077
|
-
};
|
|
88078
|
-
400: {
|
|
88079
|
-
description: string;
|
|
88080
|
-
};
|
|
88081
|
-
401: {
|
|
88082
|
-
description: string;
|
|
88083
|
-
};
|
|
88084
|
-
};
|
|
88085
|
-
security: ({
|
|
88086
|
-
api_key: never[];
|
|
88087
|
-
pat_with_workspace?: never;
|
|
88088
|
-
console_session_with_workspace?: never;
|
|
88089
|
-
} | {
|
|
88090
|
-
pat_with_workspace: never[];
|
|
88091
|
-
api_key?: never;
|
|
88092
|
-
console_session_with_workspace?: never;
|
|
88093
|
-
} | {
|
|
88094
|
-
console_session_with_workspace: never[];
|
|
88095
|
-
api_key?: never;
|
|
88096
|
-
pat_with_workspace?: never;
|
|
88097
|
-
})[];
|
|
88098
|
-
summary: string;
|
|
88099
|
-
tags: string[];
|
|
88100
|
-
'x-fern-sdk-group-name': string[];
|
|
88101
|
-
'x-fern-sdk-method-name': string;
|
|
88102
|
-
'x-fern-sdk-return-value': string;
|
|
88103
|
-
'x-response-key': string;
|
|
88104
|
-
'x-title': string;
|
|
88105
|
-
};
|
|
88106
|
-
};
|
|
88107
|
-
'/user_identities/list_acs_systems': {
|
|
88108
|
-
get: {
|
|
88109
|
-
description: string;
|
|
88110
|
-
operationId: string;
|
|
88111
|
-
parameters: {
|
|
88112
|
-
in: string;
|
|
88113
|
-
name: string;
|
|
88114
|
-
required: boolean;
|
|
88115
|
-
schema: {
|
|
88116
|
-
description: string;
|
|
88117
|
-
format: string;
|
|
88118
|
-
type: string;
|
|
88119
|
-
};
|
|
88120
|
-
}[];
|
|
88121
|
-
responses: {
|
|
88122
|
-
200: {
|
|
88123
|
-
content: {
|
|
88124
|
-
'application/json': {
|
|
88125
|
-
schema: {
|
|
88126
|
-
properties: {
|
|
88127
|
-
acs_systems: {
|
|
88128
|
-
items: {
|
|
88129
|
-
$ref: string;
|
|
88130
|
-
};
|
|
88131
|
-
type: string;
|
|
88132
|
-
};
|
|
88133
|
-
ok: {
|
|
88134
|
-
type: string;
|
|
88135
|
-
};
|
|
88136
|
-
};
|
|
88137
|
-
required: string[];
|
|
88138
|
-
type: string;
|
|
88139
|
-
};
|
|
88140
|
-
};
|
|
88141
|
-
};
|
|
88142
|
-
description: string;
|
|
88143
|
-
};
|
|
88144
|
-
400: {
|
|
88145
|
-
description: string;
|
|
88146
|
-
};
|
|
88147
|
-
401: {
|
|
88148
|
-
description: string;
|
|
88149
|
-
};
|
|
88150
|
-
};
|
|
88151
|
-
security: ({
|
|
88152
|
-
client_session: never[];
|
|
88153
|
-
pat_with_workspace?: never;
|
|
88154
|
-
console_session_with_workspace?: never;
|
|
88155
|
-
api_key?: never;
|
|
88156
|
-
} | {
|
|
88157
|
-
pat_with_workspace: never[];
|
|
88158
|
-
client_session?: never;
|
|
88159
|
-
console_session_with_workspace?: never;
|
|
88160
|
-
api_key?: never;
|
|
88161
|
-
} | {
|
|
88162
|
-
console_session_with_workspace: never[];
|
|
88163
|
-
client_session?: never;
|
|
88164
|
-
pat_with_workspace?: never;
|
|
88165
|
-
api_key?: never;
|
|
88166
|
-
} | {
|
|
88167
|
-
api_key: never[];
|
|
88168
|
-
client_session?: never;
|
|
88169
|
-
pat_with_workspace?: never;
|
|
88170
|
-
console_session_with_workspace?: never;
|
|
88171
|
-
})[];
|
|
88172
|
-
summary: string;
|
|
88173
|
-
tags: string[];
|
|
88174
|
-
'x-fern-sdk-group-name': string[];
|
|
88175
|
-
'x-fern-sdk-method-name': string;
|
|
88176
|
-
'x-fern-sdk-return-value': string;
|
|
88177
|
-
'x-response-key': string;
|
|
88178
|
-
'x-title': string;
|
|
88179
|
-
};
|
|
88180
|
-
post: {
|
|
88181
|
-
description: string;
|
|
88182
|
-
operationId: string;
|
|
88183
|
-
requestBody: {
|
|
88184
|
-
content: {
|
|
88185
|
-
'application/json': {
|
|
88186
|
-
schema: {
|
|
88187
|
-
properties: {
|
|
88188
|
-
user_identity_id: {
|
|
88189
|
-
description: string;
|
|
88190
|
-
format: string;
|
|
88191
|
-
type: string;
|
|
88192
|
-
};
|
|
88193
|
-
};
|
|
88194
|
-
required: string[];
|
|
88195
|
-
type: string;
|
|
88196
|
-
};
|
|
88197
|
-
};
|
|
88198
|
-
};
|
|
88199
|
-
};
|
|
88200
|
-
responses: {
|
|
88201
|
-
200: {
|
|
88202
|
-
content: {
|
|
88203
|
-
'application/json': {
|
|
88204
|
-
schema: {
|
|
88205
|
-
properties: {
|
|
88206
|
-
acs_systems: {
|
|
88207
|
-
items: {
|
|
88208
|
-
$ref: string;
|
|
88209
|
-
};
|
|
88210
|
-
type: string;
|
|
88211
|
-
};
|
|
88212
|
-
ok: {
|
|
88213
|
-
type: string;
|
|
88214
|
-
};
|
|
88215
|
-
};
|
|
88216
|
-
required: string[];
|
|
88217
|
-
type: string;
|
|
88218
|
-
};
|
|
88219
|
-
};
|
|
88220
|
-
};
|
|
88221
|
-
description: string;
|
|
88222
|
-
};
|
|
88223
|
-
400: {
|
|
88224
|
-
description: string;
|
|
88225
|
-
};
|
|
88226
|
-
401: {
|
|
88227
|
-
description: string;
|
|
88228
|
-
};
|
|
88229
|
-
};
|
|
88230
|
-
security: ({
|
|
88231
|
-
client_session: never[];
|
|
88232
|
-
pat_with_workspace?: never;
|
|
88233
|
-
console_session_with_workspace?: never;
|
|
88234
|
-
api_key?: never;
|
|
88235
|
-
} | {
|
|
88236
|
-
pat_with_workspace: never[];
|
|
88237
|
-
client_session?: never;
|
|
88238
|
-
console_session_with_workspace?: never;
|
|
88239
|
-
api_key?: never;
|
|
88240
|
-
} | {
|
|
88241
|
-
console_session_with_workspace: never[];
|
|
88242
|
-
client_session?: never;
|
|
88243
|
-
pat_with_workspace?: never;
|
|
88244
|
-
api_key?: never;
|
|
88245
|
-
} | {
|
|
88246
|
-
api_key: never[];
|
|
88247
|
-
client_session?: never;
|
|
88248
|
-
pat_with_workspace?: never;
|
|
88249
|
-
console_session_with_workspace?: never;
|
|
88250
|
-
})[];
|
|
88251
|
-
summary: string;
|
|
88252
|
-
tags: string[];
|
|
88253
|
-
'x-fern-sdk-group-name': string[];
|
|
88254
|
-
'x-fern-sdk-method-name': string;
|
|
88255
|
-
'x-fern-sdk-return-value': string;
|
|
88256
|
-
'x-response-key': string;
|
|
88257
|
-
'x-title': string;
|
|
88258
|
-
};
|
|
88259
|
-
};
|
|
88260
|
-
'/user_identities/list_acs_users': {
|
|
88261
|
-
get: {
|
|
88262
|
-
description: string;
|
|
88263
|
-
operationId: string;
|
|
88264
|
-
parameters: {
|
|
88265
|
-
in: string;
|
|
88266
|
-
name: string;
|
|
88267
|
-
required: boolean;
|
|
88268
|
-
schema: {
|
|
88269
|
-
description: string;
|
|
88270
|
-
format: string;
|
|
88271
|
-
type: string;
|
|
88272
|
-
};
|
|
88273
|
-
}[];
|
|
88274
|
-
responses: {
|
|
88275
|
-
200: {
|
|
88276
|
-
content: {
|
|
88277
|
-
'application/json': {
|
|
88278
|
-
schema: {
|
|
88279
|
-
properties: {
|
|
88280
|
-
acs_users: {
|
|
88281
|
-
items: {
|
|
88282
|
-
$ref: string;
|
|
88283
|
-
};
|
|
88284
|
-
type: string;
|
|
88285
|
-
};
|
|
88286
|
-
ok: {
|
|
88287
|
-
type: string;
|
|
88288
|
-
};
|
|
88289
|
-
};
|
|
88290
|
-
required: string[];
|
|
88291
|
-
type: string;
|
|
88292
|
-
};
|
|
88293
|
-
};
|
|
88294
|
-
};
|
|
88295
|
-
description: string;
|
|
88296
|
-
};
|
|
88297
|
-
400: {
|
|
88298
|
-
description: string;
|
|
88299
|
-
};
|
|
88300
|
-
401: {
|
|
88301
|
-
description: string;
|
|
88302
|
-
};
|
|
88303
|
-
};
|
|
88304
|
-
security: ({
|
|
88305
|
-
api_key: never[];
|
|
88306
|
-
pat_with_workspace?: never;
|
|
88307
|
-
console_session_with_workspace?: never;
|
|
88308
|
-
} | {
|
|
88309
|
-
pat_with_workspace: never[];
|
|
88310
|
-
api_key?: never;
|
|
88311
|
-
console_session_with_workspace?: never;
|
|
88312
|
-
} | {
|
|
88313
|
-
console_session_with_workspace: never[];
|
|
88314
|
-
api_key?: never;
|
|
88315
|
-
pat_with_workspace?: never;
|
|
88316
|
-
})[];
|
|
88317
|
-
summary: string;
|
|
88318
|
-
tags: string[];
|
|
88319
|
-
'x-fern-sdk-group-name': string[];
|
|
88320
|
-
'x-fern-sdk-method-name': string;
|
|
88321
|
-
'x-fern-sdk-return-value': string;
|
|
88322
|
-
'x-response-key': string;
|
|
88323
|
-
'x-title': string;
|
|
88324
|
-
};
|
|
88325
|
-
post: {
|
|
88326
|
-
description: string;
|
|
88327
|
-
operationId: string;
|
|
88328
|
-
requestBody: {
|
|
88329
|
-
content: {
|
|
88330
|
-
'application/json': {
|
|
88331
|
-
schema: {
|
|
88332
|
-
properties: {
|
|
88333
|
-
user_identity_id: {
|
|
88334
|
-
description: string;
|
|
88335
|
-
format: string;
|
|
88336
|
-
type: string;
|
|
88337
|
-
};
|
|
88338
|
-
};
|
|
88339
|
-
required: string[];
|
|
88340
|
-
type: string;
|
|
88341
|
-
};
|
|
88342
|
-
};
|
|
88343
|
-
};
|
|
88344
|
-
};
|
|
88345
|
-
responses: {
|
|
88346
|
-
200: {
|
|
88347
|
-
content: {
|
|
88348
|
-
'application/json': {
|
|
88349
|
-
schema: {
|
|
88350
|
-
properties: {
|
|
88351
|
-
acs_users: {
|
|
88352
|
-
items: {
|
|
88353
|
-
$ref: string;
|
|
88354
|
-
};
|
|
88355
|
-
type: string;
|
|
88356
|
-
};
|
|
88357
|
-
ok: {
|
|
88358
|
-
type: string;
|
|
88359
|
-
};
|
|
88360
|
-
};
|
|
88361
|
-
required: string[];
|
|
88362
|
-
type: string;
|
|
88363
|
-
};
|
|
88364
|
-
};
|
|
88365
|
-
};
|
|
88366
|
-
description: string;
|
|
88367
|
-
};
|
|
88368
|
-
400: {
|
|
88369
|
-
description: string;
|
|
88370
|
-
};
|
|
88371
|
-
401: {
|
|
88372
|
-
description: string;
|
|
88373
|
-
};
|
|
88374
|
-
};
|
|
88375
|
-
security: ({
|
|
88376
|
-
api_key: never[];
|
|
88377
|
-
pat_with_workspace?: never;
|
|
88378
|
-
console_session_with_workspace?: never;
|
|
88379
|
-
} | {
|
|
88380
|
-
pat_with_workspace: never[];
|
|
88381
|
-
api_key?: never;
|
|
88382
|
-
console_session_with_workspace?: never;
|
|
88383
|
-
} | {
|
|
88384
|
-
console_session_with_workspace: never[];
|
|
88385
|
-
api_key?: never;
|
|
88386
|
-
pat_with_workspace?: never;
|
|
88387
|
-
})[];
|
|
88388
|
-
summary: string;
|
|
88389
|
-
tags: string[];
|
|
88390
|
-
'x-fern-sdk-group-name': string[];
|
|
88391
|
-
'x-fern-sdk-method-name': string;
|
|
88392
|
-
'x-fern-sdk-return-value': string;
|
|
88393
|
-
'x-response-key': string;
|
|
88394
|
-
'x-title': string;
|
|
88395
|
-
};
|
|
88396
|
-
};
|
|
88397
|
-
'/user_identities/remove_acs_user': {
|
|
88398
|
-
delete: {
|
|
88399
|
-
description: string;
|
|
88400
|
-
operationId: string;
|
|
88401
|
-
parameters: {
|
|
88402
|
-
in: string;
|
|
88403
|
-
name: string;
|
|
88404
|
-
required: boolean;
|
|
88405
|
-
schema: {
|
|
88406
|
-
description: string;
|
|
88407
|
-
format: string;
|
|
88408
|
-
type: string;
|
|
88409
|
-
};
|
|
88410
|
-
}[];
|
|
88411
|
-
responses: {
|
|
88412
|
-
200: {
|
|
88413
|
-
content: {
|
|
88414
|
-
'application/json': {
|
|
88415
|
-
schema: {
|
|
88416
|
-
properties: {
|
|
88417
|
-
ok: {
|
|
88418
|
-
type: string;
|
|
88419
|
-
};
|
|
88420
|
-
};
|
|
88421
|
-
required: string[];
|
|
88422
|
-
type: string;
|
|
88423
|
-
};
|
|
88424
|
-
};
|
|
88425
|
-
};
|
|
88426
|
-
description: string;
|
|
88427
|
-
};
|
|
88428
|
-
400: {
|
|
88429
|
-
description: string;
|
|
88430
|
-
};
|
|
88431
|
-
401: {
|
|
88432
|
-
description: string;
|
|
88433
|
-
};
|
|
88434
|
-
};
|
|
88435
|
-
security: ({
|
|
88436
|
-
api_key: never[];
|
|
88437
|
-
pat_with_workspace?: never;
|
|
88438
|
-
console_session_with_workspace?: never;
|
|
88439
|
-
} | {
|
|
88440
|
-
pat_with_workspace: never[];
|
|
88441
|
-
api_key?: never;
|
|
88442
|
-
console_session_with_workspace?: never;
|
|
88443
|
-
} | {
|
|
88444
|
-
console_session_with_workspace: never[];
|
|
88445
|
-
api_key?: never;
|
|
88446
|
-
pat_with_workspace?: never;
|
|
88447
|
-
})[];
|
|
88448
|
-
summary: string;
|
|
88449
|
-
tags: string[];
|
|
88450
|
-
'x-fern-sdk-group-name': string[];
|
|
88451
|
-
'x-fern-sdk-method-name': string;
|
|
88452
|
-
'x-response-key': null;
|
|
88453
|
-
'x-title': string;
|
|
88454
|
-
};
|
|
88455
|
-
post: {
|
|
88456
|
-
description: string;
|
|
88457
|
-
operationId: string;
|
|
88458
|
-
requestBody: {
|
|
88459
|
-
content: {
|
|
88460
|
-
'application/json': {
|
|
88461
|
-
schema: {
|
|
88462
|
-
properties: {
|
|
88463
|
-
acs_user_id: {
|
|
88464
|
-
description: string;
|
|
88465
|
-
format: string;
|
|
88466
|
-
type: string;
|
|
88467
|
-
};
|
|
88468
|
-
user_identity_id: {
|
|
88469
|
-
description: string;
|
|
88470
|
-
format: string;
|
|
88471
|
-
type: string;
|
|
88472
|
-
};
|
|
88473
|
-
};
|
|
88474
|
-
required: string[];
|
|
88475
|
-
type: string;
|
|
88476
|
-
};
|
|
88477
|
-
};
|
|
88478
|
-
};
|
|
88479
|
-
};
|
|
88480
|
-
responses: {
|
|
88481
|
-
200: {
|
|
88482
|
-
content: {
|
|
88483
|
-
'application/json': {
|
|
88484
|
-
schema: {
|
|
88485
|
-
properties: {
|
|
88486
|
-
ok: {
|
|
88487
|
-
type: string;
|
|
88488
|
-
};
|
|
88489
|
-
};
|
|
88490
|
-
required: string[];
|
|
88491
|
-
type: string;
|
|
88492
|
-
};
|
|
88493
|
-
};
|
|
88494
|
-
};
|
|
88495
|
-
description: string;
|
|
88496
|
-
};
|
|
88497
|
-
400: {
|
|
88498
|
-
description: string;
|
|
88499
|
-
};
|
|
88500
|
-
401: {
|
|
88501
|
-
description: string;
|
|
88502
|
-
};
|
|
88503
|
-
};
|
|
88504
|
-
security: ({
|
|
88505
|
-
api_key: never[];
|
|
88506
|
-
pat_with_workspace?: never;
|
|
88507
|
-
console_session_with_workspace?: never;
|
|
88508
|
-
} | {
|
|
88509
|
-
pat_with_workspace: never[];
|
|
88510
|
-
api_key?: never;
|
|
88511
|
-
console_session_with_workspace?: never;
|
|
88512
|
-
} | {
|
|
88513
|
-
console_session_with_workspace: never[];
|
|
88514
|
-
api_key?: never;
|
|
88515
|
-
pat_with_workspace?: never;
|
|
88516
|
-
})[];
|
|
88517
|
-
summary: string;
|
|
88518
|
-
tags: string[];
|
|
88519
|
-
'x-fern-sdk-group-name': string[];
|
|
88520
|
-
'x-fern-sdk-method-name': string;
|
|
88521
|
-
'x-response-key': null;
|
|
88522
|
-
'x-title': string;
|
|
88523
|
-
};
|
|
88524
|
-
};
|
|
88525
|
-
'/user_identities/revoke_access_to_device': {
|
|
88526
|
-
delete: {
|
|
88527
|
-
description: string;
|
|
88528
|
-
operationId: string;
|
|
88529
|
-
parameters: {
|
|
88530
|
-
in: string;
|
|
88531
|
-
name: string;
|
|
88532
|
-
required: boolean;
|
|
88533
|
-
schema: {
|
|
88534
|
-
description: string;
|
|
88535
|
-
format: string;
|
|
88536
|
-
type: string;
|
|
88537
|
-
};
|
|
88538
|
-
}[];
|
|
88539
|
-
responses: {
|
|
88540
|
-
200: {
|
|
88541
|
-
content: {
|
|
88542
|
-
'application/json': {
|
|
88543
|
-
schema: {
|
|
88544
|
-
properties: {
|
|
88545
|
-
ok: {
|
|
88546
|
-
type: string;
|
|
88547
|
-
};
|
|
88548
|
-
};
|
|
88549
|
-
required: string[];
|
|
88550
|
-
type: string;
|
|
88551
|
-
};
|
|
88552
|
-
};
|
|
88553
|
-
};
|
|
88554
|
-
description: string;
|
|
88555
|
-
};
|
|
88556
|
-
400: {
|
|
88557
|
-
description: string;
|
|
88558
|
-
};
|
|
88559
|
-
401: {
|
|
88560
|
-
description: string;
|
|
88561
|
-
};
|
|
88562
|
-
};
|
|
88563
|
-
security: ({
|
|
88564
|
-
api_key: never[];
|
|
88565
|
-
pat_with_workspace?: never;
|
|
88566
|
-
console_session_with_workspace?: never;
|
|
88567
|
-
} | {
|
|
88568
|
-
pat_with_workspace: never[];
|
|
88569
|
-
api_key?: never;
|
|
88570
|
-
console_session_with_workspace?: never;
|
|
88571
|
-
} | {
|
|
88572
|
-
console_session_with_workspace: never[];
|
|
88573
|
-
api_key?: never;
|
|
88574
|
-
pat_with_workspace?: never;
|
|
88575
|
-
})[];
|
|
88576
|
-
summary: string;
|
|
88577
|
-
tags: string[];
|
|
88578
|
-
'x-fern-sdk-group-name': string[];
|
|
88579
|
-
'x-fern-sdk-method-name': string;
|
|
88580
|
-
'x-response-key': null;
|
|
88581
|
-
'x-title': string;
|
|
88582
|
-
};
|
|
88583
|
-
post: {
|
|
88584
|
-
description: string;
|
|
88585
|
-
operationId: string;
|
|
88586
|
-
requestBody: {
|
|
88587
|
-
content: {
|
|
88588
|
-
'application/json': {
|
|
88589
|
-
schema: {
|
|
88590
|
-
properties: {
|
|
88591
|
-
device_id: {
|
|
88592
|
-
description: string;
|
|
88593
|
-
format: string;
|
|
88594
|
-
type: string;
|
|
88595
|
-
};
|
|
88596
|
-
user_identity_id: {
|
|
88597
|
-
description: string;
|
|
88598
|
-
format: string;
|
|
88599
|
-
type: string;
|
|
88600
|
-
};
|
|
88601
|
-
};
|
|
88602
|
-
required: string[];
|
|
88603
|
-
type: string;
|
|
88604
|
-
};
|
|
88605
|
-
};
|
|
88606
|
-
};
|
|
88607
|
-
};
|
|
88608
|
-
responses: {
|
|
88609
|
-
200: {
|
|
88610
|
-
content: {
|
|
88611
|
-
'application/json': {
|
|
88612
|
-
schema: {
|
|
88613
|
-
properties: {
|
|
88614
|
-
ok: {
|
|
88615
|
-
type: string;
|
|
88616
|
-
};
|
|
88617
|
-
};
|
|
88618
|
-
required: string[];
|
|
88619
|
-
type: string;
|
|
88620
|
-
};
|
|
88621
|
-
};
|
|
88622
|
-
};
|
|
88623
|
-
description: string;
|
|
88624
|
-
};
|
|
88625
|
-
400: {
|
|
88626
|
-
description: string;
|
|
88627
|
-
};
|
|
88628
|
-
401: {
|
|
88629
|
-
description: string;
|
|
88630
|
-
};
|
|
88631
|
-
};
|
|
88632
|
-
security: ({
|
|
88633
|
-
api_key: never[];
|
|
88634
|
-
pat_with_workspace?: never;
|
|
88635
|
-
console_session_with_workspace?: never;
|
|
88636
|
-
} | {
|
|
88637
|
-
pat_with_workspace: never[];
|
|
88638
|
-
api_key?: never;
|
|
88639
|
-
console_session_with_workspace?: never;
|
|
88640
|
-
} | {
|
|
88641
|
-
console_session_with_workspace: never[];
|
|
88642
|
-
api_key?: never;
|
|
88643
|
-
pat_with_workspace?: never;
|
|
88644
|
-
})[];
|
|
88645
|
-
summary: string;
|
|
88646
|
-
tags: string[];
|
|
88647
|
-
'x-fern-sdk-group-name': string[];
|
|
88648
|
-
'x-fern-sdk-method-name': string;
|
|
88649
|
-
'x-response-key': null;
|
|
88650
|
-
'x-title': string;
|
|
88651
|
-
};
|
|
88652
|
-
};
|
|
88653
|
-
'/user_identities/update': {
|
|
88654
|
-
patch: {
|
|
88655
|
-
description: string;
|
|
88656
|
-
operationId: string;
|
|
88657
|
-
requestBody: {
|
|
88658
|
-
content: {
|
|
88659
|
-
'application/json': {
|
|
88660
|
-
schema: {
|
|
88661
|
-
properties: {
|
|
88662
|
-
email_address: {
|
|
88663
|
-
description: string;
|
|
88664
|
-
format: string;
|
|
88665
|
-
nullable: boolean;
|
|
88666
|
-
type: string;
|
|
88667
|
-
};
|
|
88668
|
-
full_name: {
|
|
88669
|
-
description: string;
|
|
88670
|
-
minLength: number;
|
|
88671
|
-
nullable: boolean;
|
|
88672
|
-
type: string;
|
|
88673
|
-
};
|
|
88674
|
-
phone_number: {
|
|
88675
|
-
description: string;
|
|
88676
|
-
nullable: boolean;
|
|
88677
|
-
type: string;
|
|
88678
|
-
};
|
|
88679
|
-
user_identity_id: {
|
|
88680
|
-
description: string;
|
|
88681
|
-
format: string;
|
|
88682
|
-
type: string;
|
|
88683
|
-
};
|
|
88684
|
-
user_identity_key: {
|
|
88685
|
-
description: string;
|
|
88686
|
-
minLength: number;
|
|
88687
|
-
nullable: boolean;
|
|
88688
|
-
type: string;
|
|
88689
|
-
};
|
|
88690
|
-
};
|
|
88691
|
-
required: string[];
|
|
88692
|
-
type: string;
|
|
88693
|
-
};
|
|
88694
|
-
};
|
|
88695
|
-
};
|
|
88696
|
-
};
|
|
88697
|
-
responses: {
|
|
88698
|
-
200: {
|
|
88699
|
-
content: {
|
|
88700
|
-
'application/json': {
|
|
88701
|
-
schema: {
|
|
88702
|
-
properties: {
|
|
88703
|
-
ok: {
|
|
88704
|
-
type: string;
|
|
88705
|
-
};
|
|
88706
|
-
};
|
|
88707
|
-
required: string[];
|
|
88708
|
-
type: string;
|
|
88709
|
-
};
|
|
88710
|
-
};
|
|
88711
|
-
};
|
|
88712
|
-
description: string;
|
|
88713
|
-
};
|
|
88714
|
-
400: {
|
|
88715
|
-
description: string;
|
|
88716
|
-
};
|
|
88717
|
-
401: {
|
|
88718
|
-
description: string;
|
|
88719
|
-
};
|
|
88720
|
-
};
|
|
88721
|
-
security: ({
|
|
88722
|
-
pat_with_workspace: never[];
|
|
88723
|
-
console_session_with_workspace?: never;
|
|
88724
|
-
api_key?: never;
|
|
88725
|
-
} | {
|
|
88726
|
-
console_session_with_workspace: never[];
|
|
88727
|
-
pat_with_workspace?: never;
|
|
88728
|
-
api_key?: never;
|
|
88729
|
-
} | {
|
|
88730
|
-
api_key: never[];
|
|
88731
|
-
pat_with_workspace?: never;
|
|
88732
|
-
console_session_with_workspace?: never;
|
|
88733
|
-
})[];
|
|
88734
|
-
summary: string;
|
|
88735
|
-
tags: string[];
|
|
88736
|
-
'x-fern-sdk-group-name': string[];
|
|
88737
|
-
'x-fern-sdk-method-name': string;
|
|
88738
|
-
'x-response-key': null;
|
|
88739
|
-
'x-title': string;
|
|
88740
|
-
};
|
|
88741
|
-
post: {
|
|
88742
|
-
description: string;
|
|
88743
|
-
operationId: string;
|
|
88744
|
-
requestBody: {
|
|
88745
|
-
content: {
|
|
88746
|
-
'application/json': {
|
|
88747
|
-
schema: {
|
|
88748
|
-
properties: {
|
|
88749
|
-
email_address: {
|
|
88750
|
-
description: string;
|
|
88751
|
-
format: string;
|
|
88752
|
-
nullable: boolean;
|
|
88753
|
-
type: string;
|
|
88754
|
-
};
|
|
88755
|
-
full_name: {
|
|
88756
|
-
description: string;
|
|
88757
|
-
minLength: number;
|
|
88758
|
-
nullable: boolean;
|
|
88759
|
-
type: string;
|
|
88760
|
-
};
|
|
88761
|
-
phone_number: {
|
|
88762
|
-
description: string;
|
|
88763
|
-
nullable: boolean;
|
|
88764
|
-
type: string;
|
|
88765
|
-
};
|
|
88766
|
-
user_identity_id: {
|
|
88767
|
-
description: string;
|
|
88768
|
-
format: string;
|
|
88769
|
-
type: string;
|
|
88770
|
-
};
|
|
88771
|
-
user_identity_key: {
|
|
88772
|
-
description: string;
|
|
88773
|
-
minLength: number;
|
|
88774
|
-
nullable: boolean;
|
|
88775
|
-
type: string;
|
|
88776
|
-
};
|
|
88777
|
-
};
|
|
88778
|
-
required: string[];
|
|
88779
|
-
type: string;
|
|
88780
|
-
};
|
|
88781
|
-
};
|
|
88782
|
-
};
|
|
88783
|
-
};
|
|
88784
|
-
responses: {
|
|
88785
|
-
200: {
|
|
88786
|
-
content: {
|
|
88787
|
-
'application/json': {
|
|
88788
|
-
schema: {
|
|
88789
|
-
properties: {
|
|
88790
|
-
ok: {
|
|
88791
|
-
type: string;
|
|
88792
|
-
};
|
|
88793
|
-
};
|
|
88794
|
-
required: string[];
|
|
88795
|
-
type: string;
|
|
88796
|
-
};
|
|
88797
|
-
};
|
|
88798
|
-
};
|
|
88799
|
-
description: string;
|
|
88800
|
-
};
|
|
88801
|
-
400: {
|
|
88802
|
-
description: string;
|
|
88803
|
-
};
|
|
88804
|
-
401: {
|
|
88805
|
-
description: string;
|
|
88806
|
-
};
|
|
88807
|
-
};
|
|
88808
|
-
security: ({
|
|
88809
|
-
pat_with_workspace: never[];
|
|
88810
|
-
console_session_with_workspace?: never;
|
|
88811
|
-
api_key?: never;
|
|
88812
|
-
} | {
|
|
88813
|
-
console_session_with_workspace: never[];
|
|
88814
|
-
pat_with_workspace?: never;
|
|
88815
|
-
api_key?: never;
|
|
88816
|
-
} | {
|
|
88817
|
-
api_key: never[];
|
|
88818
|
-
pat_with_workspace?: never;
|
|
88819
|
-
console_session_with_workspace?: never;
|
|
88820
|
-
})[];
|
|
88821
|
-
summary: string;
|
|
88822
|
-
tags: string[];
|
|
88823
|
-
'x-fern-sdk-group-name': string[];
|
|
88824
|
-
'x-fern-sdk-method-name': string;
|
|
88825
|
-
'x-response-key': null;
|
|
88826
|
-
'x-title': string;
|
|
88827
|
-
};
|
|
88828
|
-
};
|
|
88829
|
-
'/webhooks/create': {
|
|
88830
|
-
post: {
|
|
88831
|
-
description: string;
|
|
88832
|
-
operationId: string;
|
|
88833
|
-
requestBody: {
|
|
88834
|
-
content: {
|
|
88835
|
-
'application/json': {
|
|
88836
|
-
schema: {
|
|
88837
|
-
properties: {
|
|
88838
|
-
event_types: {
|
|
88839
|
-
default: string[];
|
|
88840
|
-
description: string;
|
|
88841
|
-
items: {
|
|
88842
|
-
type: string;
|
|
88843
|
-
};
|
|
88844
|
-
type: string;
|
|
88845
|
-
};
|
|
88846
|
-
url: {
|
|
88847
|
-
description: string;
|
|
88848
|
-
format: string;
|
|
88849
|
-
type: string;
|
|
88850
|
-
};
|
|
88851
|
-
};
|
|
88852
|
-
required: string[];
|
|
88853
|
-
type: string;
|
|
88854
|
-
};
|
|
88855
|
-
};
|
|
88856
|
-
};
|
|
88857
|
-
};
|
|
88858
|
-
responses: {
|
|
88859
|
-
200: {
|
|
88860
|
-
content: {
|
|
88861
|
-
'application/json': {
|
|
88862
|
-
schema: {
|
|
88863
|
-
properties: {
|
|
88864
|
-
ok: {
|
|
88865
|
-
type: string;
|
|
88866
|
-
};
|
|
88867
|
-
webhook: {
|
|
88868
|
-
$ref: string;
|
|
88869
|
-
};
|
|
88870
|
-
};
|
|
88871
|
-
required: string[];
|
|
88872
|
-
type: string;
|
|
88873
|
-
};
|
|
88874
|
-
};
|
|
88875
|
-
};
|
|
88876
|
-
description: string;
|
|
88877
|
-
};
|
|
88878
|
-
400: {
|
|
88879
|
-
description: string;
|
|
88880
|
-
};
|
|
88881
|
-
401: {
|
|
88882
|
-
description: string;
|
|
88883
|
-
};
|
|
88884
|
-
};
|
|
88885
|
-
security: ({
|
|
88886
|
-
api_key: never[];
|
|
88887
|
-
pat_with_workspace?: never;
|
|
88888
|
-
console_session_with_workspace?: never;
|
|
88889
|
-
} | {
|
|
88890
|
-
pat_with_workspace: never[];
|
|
88891
|
-
api_key?: never;
|
|
88892
|
-
console_session_with_workspace?: never;
|
|
88893
|
-
} | {
|
|
88894
|
-
console_session_with_workspace: never[];
|
|
88895
|
-
api_key?: never;
|
|
88896
|
-
pat_with_workspace?: never;
|
|
88897
|
-
})[];
|
|
88898
|
-
summary: string;
|
|
88899
|
-
tags: string[];
|
|
88900
|
-
'x-fern-sdk-group-name': string[];
|
|
88901
|
-
'x-fern-sdk-method-name': string;
|
|
88902
|
-
'x-fern-sdk-return-value': string;
|
|
88903
|
-
'x-response-key': string;
|
|
88904
|
-
'x-title': string;
|
|
88905
|
-
};
|
|
88906
|
-
};
|
|
88907
|
-
'/webhooks/delete': {
|
|
88908
|
-
delete: {
|
|
88909
|
-
description: string;
|
|
88910
|
-
operationId: string;
|
|
88911
|
-
parameters: {
|
|
88912
|
-
in: string;
|
|
88913
|
-
name: string;
|
|
88914
|
-
required: boolean;
|
|
88915
|
-
schema: {
|
|
88916
|
-
description: string;
|
|
88917
|
-
type: string;
|
|
88918
|
-
};
|
|
88919
|
-
}[];
|
|
88920
|
-
responses: {
|
|
88921
|
-
200: {
|
|
88922
|
-
content: {
|
|
88923
|
-
'application/json': {
|
|
88924
|
-
schema: {
|
|
88925
|
-
properties: {
|
|
88926
|
-
ok: {
|
|
88927
|
-
type: string;
|
|
88928
|
-
};
|
|
88929
|
-
};
|
|
88930
|
-
required: string[];
|
|
88931
|
-
type: string;
|
|
88932
|
-
};
|
|
88933
|
-
};
|
|
88934
|
-
};
|
|
88935
|
-
description: string;
|
|
88936
|
-
};
|
|
88937
|
-
400: {
|
|
88938
|
-
description: string;
|
|
88939
|
-
};
|
|
88940
|
-
401: {
|
|
88941
|
-
description: string;
|
|
88942
|
-
};
|
|
88943
|
-
};
|
|
88944
|
-
security: ({
|
|
88945
|
-
api_key: never[];
|
|
88946
|
-
pat_with_workspace?: never;
|
|
88947
|
-
console_session_with_workspace?: never;
|
|
88948
|
-
} | {
|
|
88949
|
-
pat_with_workspace: never[];
|
|
88950
|
-
api_key?: never;
|
|
88951
|
-
console_session_with_workspace?: never;
|
|
88952
|
-
} | {
|
|
88953
|
-
console_session_with_workspace: never[];
|
|
88954
|
-
api_key?: never;
|
|
88955
|
-
pat_with_workspace?: never;
|
|
88956
|
-
})[];
|
|
88957
|
-
summary: string;
|
|
88958
|
-
tags: string[];
|
|
88959
|
-
'x-fern-sdk-group-name': string[];
|
|
88960
|
-
'x-fern-sdk-method-name': string;
|
|
88961
|
-
'x-response-key': null;
|
|
88962
|
-
'x-title': string;
|
|
88963
|
-
};
|
|
88964
|
-
post: {
|
|
88965
|
-
description: string;
|
|
88966
|
-
operationId: string;
|
|
88967
|
-
requestBody: {
|
|
88968
|
-
content: {
|
|
88969
|
-
'application/json': {
|
|
88970
|
-
schema: {
|
|
88971
|
-
properties: {
|
|
88972
|
-
webhook_id: {
|
|
88973
|
-
description: string;
|
|
88974
|
-
type: string;
|
|
88975
|
-
};
|
|
88976
|
-
};
|
|
88977
|
-
required: string[];
|
|
88978
|
-
type: string;
|
|
88979
|
-
};
|
|
88980
|
-
};
|
|
88981
|
-
};
|
|
88982
|
-
};
|
|
88983
|
-
responses: {
|
|
88984
|
-
200: {
|
|
88985
|
-
content: {
|
|
88986
|
-
'application/json': {
|
|
88987
|
-
schema: {
|
|
88988
|
-
properties: {
|
|
88989
|
-
ok: {
|
|
88990
|
-
type: string;
|
|
88991
|
-
};
|
|
88992
|
-
};
|
|
88993
|
-
required: string[];
|
|
88994
|
-
type: string;
|
|
88995
|
-
};
|
|
88996
|
-
};
|
|
88997
|
-
};
|
|
88998
|
-
description: string;
|
|
88999
|
-
};
|
|
89000
|
-
400: {
|
|
89001
|
-
description: string;
|
|
89002
|
-
};
|
|
89003
|
-
401: {
|
|
89004
|
-
description: string;
|
|
89005
|
-
};
|
|
89006
|
-
};
|
|
89007
|
-
security: ({
|
|
89008
|
-
api_key: never[];
|
|
89009
|
-
pat_with_workspace?: never;
|
|
89010
|
-
console_session_with_workspace?: never;
|
|
89011
|
-
} | {
|
|
89012
|
-
pat_with_workspace: never[];
|
|
89013
|
-
api_key?: never;
|
|
89014
|
-
console_session_with_workspace?: never;
|
|
89015
|
-
} | {
|
|
89016
|
-
console_session_with_workspace: never[];
|
|
89017
|
-
api_key?: never;
|
|
89018
|
-
pat_with_workspace?: never;
|
|
89019
|
-
})[];
|
|
89020
|
-
summary: string;
|
|
89021
|
-
tags: string[];
|
|
89022
|
-
'x-fern-sdk-group-name': string[];
|
|
89023
|
-
'x-fern-sdk-method-name': string;
|
|
89024
|
-
'x-response-key': null;
|
|
89025
|
-
'x-title': string;
|
|
89026
|
-
};
|
|
89027
|
-
};
|
|
89028
|
-
'/webhooks/get': {
|
|
89029
|
-
get: {
|
|
89030
|
-
description: string;
|
|
89031
|
-
operationId: string;
|
|
89032
|
-
parameters: {
|
|
89033
|
-
in: string;
|
|
89034
|
-
name: string;
|
|
89035
|
-
required: boolean;
|
|
89036
|
-
schema: {
|
|
89037
|
-
description: string;
|
|
89038
|
-
type: string;
|
|
89039
|
-
};
|
|
89040
|
-
}[];
|
|
89041
|
-
responses: {
|
|
89042
|
-
200: {
|
|
89043
|
-
content: {
|
|
89044
|
-
'application/json': {
|
|
89045
|
-
schema: {
|
|
89046
|
-
properties: {
|
|
89047
|
-
ok: {
|
|
89048
|
-
type: string;
|
|
89049
|
-
};
|
|
89050
|
-
webhook: {
|
|
89051
|
-
$ref: string;
|
|
89052
|
-
};
|
|
89053
|
-
};
|
|
89054
|
-
required: string[];
|
|
89055
|
-
type: string;
|
|
89056
|
-
};
|
|
89057
|
-
};
|
|
89058
|
-
};
|
|
89059
|
-
description: string;
|
|
89060
|
-
};
|
|
89061
|
-
400: {
|
|
89062
|
-
description: string;
|
|
89063
|
-
};
|
|
89064
|
-
401: {
|
|
89065
|
-
description: string;
|
|
89066
|
-
};
|
|
89067
|
-
};
|
|
89068
|
-
security: ({
|
|
89069
|
-
api_key: never[];
|
|
89070
|
-
pat_with_workspace?: never;
|
|
89071
|
-
console_session_with_workspace?: never;
|
|
89072
|
-
} | {
|
|
89073
|
-
pat_with_workspace: never[];
|
|
89074
|
-
api_key?: never;
|
|
89075
|
-
console_session_with_workspace?: never;
|
|
89076
|
-
} | {
|
|
89077
|
-
console_session_with_workspace: never[];
|
|
89078
|
-
api_key?: never;
|
|
89079
|
-
pat_with_workspace?: never;
|
|
89080
|
-
})[];
|
|
89081
|
-
summary: string;
|
|
89082
|
-
tags: string[];
|
|
89083
|
-
'x-fern-sdk-group-name': string[];
|
|
89084
|
-
'x-fern-sdk-method-name': string;
|
|
89085
|
-
'x-fern-sdk-return-value': string;
|
|
89086
|
-
'x-response-key': string;
|
|
89087
|
-
'x-title': string;
|
|
89088
|
-
};
|
|
89089
|
-
post: {
|
|
89090
|
-
description: string;
|
|
89091
|
-
operationId: string;
|
|
89092
|
-
requestBody: {
|
|
89093
|
-
content: {
|
|
89094
|
-
'application/json': {
|
|
89095
|
-
schema: {
|
|
89096
|
-
properties: {
|
|
89097
|
-
webhook_id: {
|
|
89098
|
-
description: string;
|
|
89099
|
-
type: string;
|
|
89100
|
-
};
|
|
89101
|
-
};
|
|
89102
|
-
required: string[];
|
|
89103
|
-
type: string;
|
|
89104
|
-
};
|
|
89105
|
-
};
|
|
89106
|
-
};
|
|
89107
|
-
};
|
|
89108
|
-
responses: {
|
|
89109
|
-
200: {
|
|
89110
|
-
content: {
|
|
89111
|
-
'application/json': {
|
|
89112
|
-
schema: {
|
|
89113
|
-
properties: {
|
|
89114
|
-
ok: {
|
|
89115
|
-
type: string;
|
|
89116
|
-
};
|
|
89117
|
-
webhook: {
|
|
89118
|
-
$ref: string;
|
|
89119
|
-
};
|
|
89120
|
-
};
|
|
89121
|
-
required: string[];
|
|
89122
|
-
type: string;
|
|
89123
|
-
};
|
|
89124
|
-
};
|
|
89125
|
-
};
|
|
89126
|
-
description: string;
|
|
89127
|
-
};
|
|
89128
|
-
400: {
|
|
89129
|
-
description: string;
|
|
89130
|
-
};
|
|
89131
|
-
401: {
|
|
89132
|
-
description: string;
|
|
89133
|
-
};
|
|
89134
|
-
};
|
|
89135
|
-
security: ({
|
|
89136
|
-
api_key: never[];
|
|
89137
|
-
pat_with_workspace?: never;
|
|
89138
|
-
console_session_with_workspace?: never;
|
|
89139
|
-
} | {
|
|
89140
|
-
pat_with_workspace: never[];
|
|
89141
|
-
api_key?: never;
|
|
89142
|
-
console_session_with_workspace?: never;
|
|
89143
|
-
} | {
|
|
89144
|
-
console_session_with_workspace: never[];
|
|
89145
|
-
api_key?: never;
|
|
89146
|
-
pat_with_workspace?: never;
|
|
89147
|
-
})[];
|
|
89148
|
-
summary: string;
|
|
89149
|
-
tags: string[];
|
|
89150
|
-
'x-fern-sdk-group-name': string[];
|
|
89151
|
-
'x-fern-sdk-method-name': string;
|
|
89152
|
-
'x-fern-sdk-return-value': string;
|
|
89153
|
-
'x-response-key': string;
|
|
89154
|
-
'x-title': string;
|
|
89155
|
-
};
|
|
89156
|
-
};
|
|
89157
|
-
'/webhooks/list': {
|
|
89158
|
-
get: {
|
|
89159
|
-
description: string;
|
|
89160
|
-
operationId: string;
|
|
89161
|
-
responses: {
|
|
89162
|
-
200: {
|
|
89163
|
-
content: {
|
|
89164
|
-
'application/json': {
|
|
89165
|
-
schema: {
|
|
89166
|
-
properties: {
|
|
89167
|
-
ok: {
|
|
89168
|
-
type: string;
|
|
89169
|
-
};
|
|
89170
|
-
webhooks: {
|
|
87933
|
+
webhooks: {
|
|
89171
87934
|
items: {
|
|
89172
87935
|
$ref: string;
|
|
89173
87936
|
};
|
|
@@ -89561,6 +88324,12 @@ declare const _default: {
|
|
|
89561
88324
|
batch: {
|
|
89562
88325
|
description: string;
|
|
89563
88326
|
properties: {
|
|
88327
|
+
access_methods: {
|
|
88328
|
+
items: {
|
|
88329
|
+
$ref: string;
|
|
88330
|
+
};
|
|
88331
|
+
type: string;
|
|
88332
|
+
};
|
|
89564
88333
|
acs_access_groups: {
|
|
89565
88334
|
items: {
|
|
89566
88335
|
$ref: string;
|
|
@@ -89721,6 +88490,12 @@ declare const _default: {
|
|
|
89721
88490
|
batch: {
|
|
89722
88491
|
description: string;
|
|
89723
88492
|
properties: {
|
|
88493
|
+
access_methods: {
|
|
88494
|
+
items: {
|
|
88495
|
+
$ref: string;
|
|
88496
|
+
};
|
|
88497
|
+
type: string;
|
|
88498
|
+
};
|
|
89724
88499
|
acs_access_groups: {
|
|
89725
88500
|
items: {
|
|
89726
88501
|
$ref: string;
|
|
@@ -107286,6 +106061,30 @@ type Routes = {
|
|
|
107286
106061
|
/** The customer key associated with this webview, if any. */
|
|
107287
106062
|
customer_key?: string | undefined;
|
|
107288
106063
|
}[] | undefined;
|
|
106064
|
+
access_methods?: {
|
|
106065
|
+
/** ID of the Seam workspace associated with the access method. */
|
|
106066
|
+
workspace_id: string;
|
|
106067
|
+
/** ID of the access method. */
|
|
106068
|
+
access_method_id: string;
|
|
106069
|
+
/** Display name of the access method. */
|
|
106070
|
+
display_name: string;
|
|
106071
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
106072
|
+
mode: 'code' | 'card' | 'mobile_key';
|
|
106073
|
+
/** Date and time at which the access method was created. */
|
|
106074
|
+
created_at: string;
|
|
106075
|
+
/** Date and time at which the access method was issued. */
|
|
106076
|
+
issued_at: string | null;
|
|
106077
|
+
/** Indicates whether the access method has been issued. */
|
|
106078
|
+
is_issued: boolean;
|
|
106079
|
+
/** URL of the Instant Key for mobile key access methods. */
|
|
106080
|
+
instant_key_url?: string | undefined;
|
|
106081
|
+
/** Token of the client session associated with the access method. */
|
|
106082
|
+
client_session_token?: string | undefined;
|
|
106083
|
+
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
106084
|
+
is_encoding_required?: boolean | undefined;
|
|
106085
|
+
/** The actual PIN code for code access methods. */
|
|
106086
|
+
code?: string | undefined;
|
|
106087
|
+
}[] | undefined;
|
|
107289
106088
|
};
|
|
107290
106089
|
};
|
|
107291
106090
|
};
|
|
@@ -162592,222 +161391,6 @@ type Routes = {
|
|
|
162592
161391
|
};
|
|
162593
161392
|
};
|
|
162594
161393
|
};
|
|
162595
|
-
'/unstable_locations/add_acs_entrances': {
|
|
162596
|
-
route: '/unstable_locations/add_acs_entrances';
|
|
162597
|
-
method: 'POST' | 'PUT';
|
|
162598
|
-
queryParams: {};
|
|
162599
|
-
jsonBody: {
|
|
162600
|
-
/** ID of the location to which you want to add entrances. */
|
|
162601
|
-
location_id: string;
|
|
162602
|
-
/** IDs of the entrances that you want to add to the location. */
|
|
162603
|
-
acs_entrance_ids: string[];
|
|
162604
|
-
};
|
|
162605
|
-
commonParams: {};
|
|
162606
|
-
formData: {};
|
|
162607
|
-
jsonResponse: {};
|
|
162608
|
-
};
|
|
162609
|
-
'/unstable_locations/add_devices': {
|
|
162610
|
-
route: '/unstable_locations/add_devices';
|
|
162611
|
-
method: 'POST' | 'PUT';
|
|
162612
|
-
queryParams: {};
|
|
162613
|
-
jsonBody: {
|
|
162614
|
-
/** ID of the location to which you want to add devices. */
|
|
162615
|
-
location_id: string;
|
|
162616
|
-
/** IDs of the devices that you want to add to the location. */
|
|
162617
|
-
device_ids: string[];
|
|
162618
|
-
};
|
|
162619
|
-
commonParams: {};
|
|
162620
|
-
formData: {};
|
|
162621
|
-
jsonResponse: {};
|
|
162622
|
-
};
|
|
162623
|
-
'/unstable_locations/create': {
|
|
162624
|
-
route: '/unstable_locations/create';
|
|
162625
|
-
method: 'POST';
|
|
162626
|
-
queryParams: {};
|
|
162627
|
-
jsonBody: {
|
|
162628
|
-
/** Name of the new location. */
|
|
162629
|
-
name: string;
|
|
162630
|
-
/** Geolocation of the new location. */
|
|
162631
|
-
geolocation?: {
|
|
162632
|
-
latitude: number;
|
|
162633
|
-
longitude: number;
|
|
162634
|
-
} | undefined;
|
|
162635
|
-
/** Time zone of the new location. */
|
|
162636
|
-
time_zone?: string | undefined;
|
|
162637
|
-
/** IDs of the devices that you want to add to the new location. */
|
|
162638
|
-
device_ids?: string[] | undefined;
|
|
162639
|
-
/** IDs of the entrances that you want to add to the new location. */
|
|
162640
|
-
acs_entrance_ids?: string[] | undefined;
|
|
162641
|
-
};
|
|
162642
|
-
commonParams: {};
|
|
162643
|
-
formData: {};
|
|
162644
|
-
jsonResponse: {
|
|
162645
|
-
/** */
|
|
162646
|
-
location: {
|
|
162647
|
-
/** Unique identifier for the location. */
|
|
162648
|
-
location_id: string;
|
|
162649
|
-
/** Unique identifier for the Seam workspace associated with the location. */
|
|
162650
|
-
workspace_id: string;
|
|
162651
|
-
/** Name of the location. */
|
|
162652
|
-
name: string;
|
|
162653
|
-
/** Display name of the location. */
|
|
162654
|
-
display_name: string;
|
|
162655
|
-
/** Geographical location of the location. */
|
|
162656
|
-
geolocation?: {
|
|
162657
|
-
latitude: number;
|
|
162658
|
-
longitude: number;
|
|
162659
|
-
} | undefined;
|
|
162660
|
-
/** Time zone of the location. */
|
|
162661
|
-
time_zone?: string | undefined;
|
|
162662
|
-
/** Date and time at which the location object was created. */
|
|
162663
|
-
created_at: string;
|
|
162664
|
-
};
|
|
162665
|
-
};
|
|
162666
|
-
};
|
|
162667
|
-
'/unstable_locations/delete': {
|
|
162668
|
-
route: '/unstable_locations/delete';
|
|
162669
|
-
method: 'DELETE' | 'POST';
|
|
162670
|
-
queryParams: {};
|
|
162671
|
-
jsonBody: {
|
|
162672
|
-
/** ID of the location that you want to delete. */
|
|
162673
|
-
location_id: string;
|
|
162674
|
-
};
|
|
162675
|
-
commonParams: {};
|
|
162676
|
-
formData: {};
|
|
162677
|
-
jsonResponse: {};
|
|
162678
|
-
};
|
|
162679
|
-
'/unstable_locations/get': {
|
|
162680
|
-
route: '/unstable_locations/get';
|
|
162681
|
-
method: 'GET' | 'POST';
|
|
162682
|
-
queryParams: {};
|
|
162683
|
-
jsonBody: {};
|
|
162684
|
-
commonParams: {
|
|
162685
|
-
/** ID of the location that you want to get. */
|
|
162686
|
-
location_id: string;
|
|
162687
|
-
};
|
|
162688
|
-
formData: {};
|
|
162689
|
-
jsonResponse: {
|
|
162690
|
-
/** */
|
|
162691
|
-
location: {
|
|
162692
|
-
/** Unique identifier for the location. */
|
|
162693
|
-
location_id: string;
|
|
162694
|
-
/** Unique identifier for the Seam workspace associated with the location. */
|
|
162695
|
-
workspace_id: string;
|
|
162696
|
-
/** Name of the location. */
|
|
162697
|
-
name: string;
|
|
162698
|
-
/** Display name of the location. */
|
|
162699
|
-
display_name: string;
|
|
162700
|
-
/** Geographical location of the location. */
|
|
162701
|
-
geolocation?: {
|
|
162702
|
-
latitude: number;
|
|
162703
|
-
longitude: number;
|
|
162704
|
-
} | undefined;
|
|
162705
|
-
/** Time zone of the location. */
|
|
162706
|
-
time_zone?: string | undefined;
|
|
162707
|
-
/** Date and time at which the location object was created. */
|
|
162708
|
-
created_at: string;
|
|
162709
|
-
};
|
|
162710
|
-
};
|
|
162711
|
-
};
|
|
162712
|
-
'/unstable_locations/list': {
|
|
162713
|
-
route: '/unstable_locations/list';
|
|
162714
|
-
method: 'GET' | 'POST';
|
|
162715
|
-
queryParams: {};
|
|
162716
|
-
jsonBody: {};
|
|
162717
|
-
commonParams: {};
|
|
162718
|
-
formData: {};
|
|
162719
|
-
jsonResponse: {
|
|
162720
|
-
locations: {
|
|
162721
|
-
/** Unique identifier for the location. */
|
|
162722
|
-
location_id: string;
|
|
162723
|
-
/** Unique identifier for the Seam workspace associated with the location. */
|
|
162724
|
-
workspace_id: string;
|
|
162725
|
-
/** Name of the location. */
|
|
162726
|
-
name: string;
|
|
162727
|
-
/** Display name of the location. */
|
|
162728
|
-
display_name: string;
|
|
162729
|
-
/** Geographical location of the location. */
|
|
162730
|
-
geolocation?: {
|
|
162731
|
-
latitude: number;
|
|
162732
|
-
longitude: number;
|
|
162733
|
-
} | undefined;
|
|
162734
|
-
/** Time zone of the location. */
|
|
162735
|
-
time_zone?: string | undefined;
|
|
162736
|
-
/** Date and time at which the location object was created. */
|
|
162737
|
-
created_at: string;
|
|
162738
|
-
}[];
|
|
162739
|
-
};
|
|
162740
|
-
};
|
|
162741
|
-
'/unstable_locations/remove_acs_entrances': {
|
|
162742
|
-
route: '/unstable_locations/remove_acs_entrances';
|
|
162743
|
-
method: 'POST' | 'DELETE';
|
|
162744
|
-
queryParams: {};
|
|
162745
|
-
jsonBody: {};
|
|
162746
|
-
commonParams: {
|
|
162747
|
-
/** ID of the location from which you want to remove entrances. */
|
|
162748
|
-
location_id: string;
|
|
162749
|
-
/** IDs of the entrances that you want to remove from the location. */
|
|
162750
|
-
acs_entrance_ids: string[];
|
|
162751
|
-
};
|
|
162752
|
-
formData: {};
|
|
162753
|
-
jsonResponse: {};
|
|
162754
|
-
};
|
|
162755
|
-
'/unstable_locations/remove_devices': {
|
|
162756
|
-
route: '/unstable_locations/remove_devices';
|
|
162757
|
-
method: 'POST' | 'DELETE';
|
|
162758
|
-
queryParams: {};
|
|
162759
|
-
jsonBody: {};
|
|
162760
|
-
commonParams: {
|
|
162761
|
-
/** ID of the location from which you want to remove devices. */
|
|
162762
|
-
location_id: string;
|
|
162763
|
-
/** IDs of the devices that you want to remove from the location. */
|
|
162764
|
-
device_ids: string[];
|
|
162765
|
-
};
|
|
162766
|
-
formData: {};
|
|
162767
|
-
jsonResponse: {};
|
|
162768
|
-
};
|
|
162769
|
-
'/unstable_locations/update': {
|
|
162770
|
-
route: '/unstable_locations/update';
|
|
162771
|
-
method: 'POST' | 'PATCH';
|
|
162772
|
-
queryParams: {};
|
|
162773
|
-
jsonBody: {
|
|
162774
|
-
/** ID of the location that you want to update. */
|
|
162775
|
-
location_id: string;
|
|
162776
|
-
/** Name of the location. */
|
|
162777
|
-
name?: string | undefined;
|
|
162778
|
-
/** Geolocation of the location. */
|
|
162779
|
-
geolocation?: {
|
|
162780
|
-
latitude: number;
|
|
162781
|
-
longitude: number;
|
|
162782
|
-
} | undefined;
|
|
162783
|
-
/** Time zone of the the location. */
|
|
162784
|
-
time_zone?: string | undefined;
|
|
162785
|
-
};
|
|
162786
|
-
commonParams: {};
|
|
162787
|
-
formData: {};
|
|
162788
|
-
jsonResponse: {
|
|
162789
|
-
/** */
|
|
162790
|
-
location: {
|
|
162791
|
-
/** Unique identifier for the location. */
|
|
162792
|
-
location_id: string;
|
|
162793
|
-
/** Unique identifier for the Seam workspace associated with the location. */
|
|
162794
|
-
workspace_id: string;
|
|
162795
|
-
/** Name of the location. */
|
|
162796
|
-
name: string;
|
|
162797
|
-
/** Display name of the location. */
|
|
162798
|
-
display_name: string;
|
|
162799
|
-
/** Geographical location of the location. */
|
|
162800
|
-
geolocation?: {
|
|
162801
|
-
latitude: number;
|
|
162802
|
-
longitude: number;
|
|
162803
|
-
} | undefined;
|
|
162804
|
-
/** Time zone of the location. */
|
|
162805
|
-
time_zone?: string | undefined;
|
|
162806
|
-
/** Date and time at which the location object was created. */
|
|
162807
|
-
created_at: string;
|
|
162808
|
-
};
|
|
162809
|
-
};
|
|
162810
|
-
};
|
|
162811
161394
|
'/unstable_partner/building_blocks/connect_accounts': {
|
|
162812
161395
|
route: '/unstable_partner/building_blocks/connect_accounts';
|
|
162813
161396
|
method: 'POST';
|
|
@@ -170043,6 +168626,30 @@ type Routes = {
|
|
|
170043
168626
|
/** The customer key associated with this webview, if any. */
|
|
170044
168627
|
customer_key?: string | undefined;
|
|
170045
168628
|
}[] | undefined;
|
|
168629
|
+
access_methods?: {
|
|
168630
|
+
/** ID of the Seam workspace associated with the access method. */
|
|
168631
|
+
workspace_id: string;
|
|
168632
|
+
/** ID of the access method. */
|
|
168633
|
+
access_method_id: string;
|
|
168634
|
+
/** Display name of the access method. */
|
|
168635
|
+
display_name: string;
|
|
168636
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
168637
|
+
mode: 'code' | 'card' | 'mobile_key';
|
|
168638
|
+
/** Date and time at which the access method was created. */
|
|
168639
|
+
created_at: string;
|
|
168640
|
+
/** Date and time at which the access method was issued. */
|
|
168641
|
+
issued_at: string | null;
|
|
168642
|
+
/** Indicates whether the access method has been issued. */
|
|
168643
|
+
is_issued: boolean;
|
|
168644
|
+
/** URL of the Instant Key for mobile key access methods. */
|
|
168645
|
+
instant_key_url?: string | undefined;
|
|
168646
|
+
/** Token of the client session associated with the access method. */
|
|
168647
|
+
client_session_token?: string | undefined;
|
|
168648
|
+
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
168649
|
+
is_encoding_required?: boolean | undefined;
|
|
168650
|
+
/** The actual PIN code for code access methods. */
|
|
168651
|
+
code?: string | undefined;
|
|
168652
|
+
}[] | undefined;
|
|
170046
168653
|
};
|
|
170047
168654
|
};
|
|
170048
168655
|
};
|