@seamapi/types 1.471.0 → 1.473.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 +32 -993
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +388 -1812
- package/dist/index.cjs +32 -993
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +13 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +4 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/dormakaba-ambiance.d.ts +9 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba-ambiance.js +9 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba-ambiance.js.map +1 -0
- package/lib/seam/connect/models/acs/metadata/index.d.ts +1 -0
- package/lib/seam/connect/models/acs/metadata/index.js +1 -0
- package/lib/seam/connect/models/acs/metadata/index.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +95 -0
- 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/models/phones/phone-session.d.ts +56 -0
- package/lib/seam/connect/openapi.d.ts +22 -1312
- package/lib/seam/connect/openapi.js +22 -993
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +50 -216
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +0 -2
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +6 -0
- package/src/lib/seam/connect/models/acs/metadata/dormakaba-ambiance.ts +17 -0
- package/src/lib/seam/connect/models/acs/metadata/index.ts +1 -0
- package/src/lib/seam/connect/models/index.ts +0 -1
- package/src/lib/seam/connect/openapi.ts +26 -1015
- package/src/lib/seam/connect/route-types.ts +70 -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
|
@@ -4653,6 +4653,13 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4653
4653
|
room_name?: string | undefined;
|
|
4654
4654
|
room_description?: string | undefined;
|
|
4655
4655
|
}>>;
|
|
4656
|
+
dormakaba_ambiance_metadata: z.ZodOptional<z.ZodObject<{
|
|
4657
|
+
access_point_name: z.ZodString;
|
|
4658
|
+
}, "strip", z.ZodTypeAny, {
|
|
4659
|
+
access_point_name: string;
|
|
4660
|
+
}, {
|
|
4661
|
+
access_point_name: string;
|
|
4662
|
+
}>>;
|
|
4656
4663
|
} & {
|
|
4657
4664
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
4658
4665
|
can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4712,6 +4719,9 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4712
4719
|
room_name?: string | undefined;
|
|
4713
4720
|
room_description?: string | undefined;
|
|
4714
4721
|
} | undefined;
|
|
4722
|
+
dormakaba_ambiance_metadata?: {
|
|
4723
|
+
access_point_name: string;
|
|
4724
|
+
} | undefined;
|
|
4715
4725
|
}, {
|
|
4716
4726
|
display_name: string;
|
|
4717
4727
|
created_at: string;
|
|
@@ -4767,6 +4777,9 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
4767
4777
|
room_name?: string | undefined;
|
|
4768
4778
|
room_description?: string | undefined;
|
|
4769
4779
|
} | undefined;
|
|
4780
|
+
dormakaba_ambiance_metadata?: {
|
|
4781
|
+
access_point_name: string;
|
|
4782
|
+
} | undefined;
|
|
4770
4783
|
}>;
|
|
4771
4784
|
type AcsEntrance = z.infer<typeof acs_entrance>;
|
|
4772
4785
|
|
|
@@ -14634,6 +14647,13 @@ declare const batch: z.ZodObject<{
|
|
|
14634
14647
|
room_name?: string | undefined;
|
|
14635
14648
|
room_description?: string | undefined;
|
|
14636
14649
|
}>>;
|
|
14650
|
+
dormakaba_ambiance_metadata: z.ZodOptional<z.ZodObject<{
|
|
14651
|
+
access_point_name: z.ZodString;
|
|
14652
|
+
}, "strip", z.ZodTypeAny, {
|
|
14653
|
+
access_point_name: string;
|
|
14654
|
+
}, {
|
|
14655
|
+
access_point_name: string;
|
|
14656
|
+
}>>;
|
|
14637
14657
|
} & {
|
|
14638
14658
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
14639
14659
|
can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -14693,6 +14713,9 @@ declare const batch: z.ZodObject<{
|
|
|
14693
14713
|
room_name?: string | undefined;
|
|
14694
14714
|
room_description?: string | undefined;
|
|
14695
14715
|
} | undefined;
|
|
14716
|
+
dormakaba_ambiance_metadata?: {
|
|
14717
|
+
access_point_name: string;
|
|
14718
|
+
} | undefined;
|
|
14696
14719
|
}, {
|
|
14697
14720
|
display_name: string;
|
|
14698
14721
|
created_at: string;
|
|
@@ -14748,6 +14771,9 @@ declare const batch: z.ZodObject<{
|
|
|
14748
14771
|
room_name?: string | undefined;
|
|
14749
14772
|
room_description?: string | undefined;
|
|
14750
14773
|
} | undefined;
|
|
14774
|
+
dormakaba_ambiance_metadata?: {
|
|
14775
|
+
access_point_name: string;
|
|
14776
|
+
} | undefined;
|
|
14751
14777
|
}>, "many">>;
|
|
14752
14778
|
acs_systems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14753
14779
|
default_credential_manager_acs_system_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24531,6 +24557,9 @@ declare const batch: z.ZodObject<{
|
|
|
24531
24557
|
room_name?: string | undefined;
|
|
24532
24558
|
room_description?: string | undefined;
|
|
24533
24559
|
} | undefined;
|
|
24560
|
+
dormakaba_ambiance_metadata?: {
|
|
24561
|
+
access_point_name: string;
|
|
24562
|
+
} | undefined;
|
|
24534
24563
|
}[] | undefined;
|
|
24535
24564
|
acs_systems?: {
|
|
24536
24565
|
name: string;
|
|
@@ -26647,6 +26676,9 @@ declare const batch: z.ZodObject<{
|
|
|
26647
26676
|
room_name?: string | undefined;
|
|
26648
26677
|
room_description?: string | undefined;
|
|
26649
26678
|
} | undefined;
|
|
26679
|
+
dormakaba_ambiance_metadata?: {
|
|
26680
|
+
access_point_name: string;
|
|
26681
|
+
} | undefined;
|
|
26650
26682
|
}[] | undefined;
|
|
26651
26683
|
acs_systems?: {
|
|
26652
26684
|
name: string;
|
|
@@ -41601,6 +41633,17 @@ declare const _default: {
|
|
|
41601
41633
|
description: string;
|
|
41602
41634
|
type: string;
|
|
41603
41635
|
};
|
|
41636
|
+
dormakaba_ambiance_metadata: {
|
|
41637
|
+
description: string;
|
|
41638
|
+
properties: {
|
|
41639
|
+
access_point_name: {
|
|
41640
|
+
description: string;
|
|
41641
|
+
type: string;
|
|
41642
|
+
};
|
|
41643
|
+
};
|
|
41644
|
+
required: string[];
|
|
41645
|
+
type: string;
|
|
41646
|
+
};
|
|
41604
41647
|
dormakaba_community_metadata: {
|
|
41605
41648
|
description: string;
|
|
41606
41649
|
properties: {
|
|
@@ -50878,56 +50921,6 @@ declare const _default: {
|
|
|
50878
50921
|
type: string;
|
|
50879
50922
|
'x-route-path': string;
|
|
50880
50923
|
};
|
|
50881
|
-
location: {
|
|
50882
|
-
properties: {
|
|
50883
|
-
created_at: {
|
|
50884
|
-
description: string;
|
|
50885
|
-
format: string;
|
|
50886
|
-
type: string;
|
|
50887
|
-
};
|
|
50888
|
-
display_name: {
|
|
50889
|
-
description: string;
|
|
50890
|
-
type: string;
|
|
50891
|
-
};
|
|
50892
|
-
geolocation: {
|
|
50893
|
-
description: string;
|
|
50894
|
-
properties: {
|
|
50895
|
-
latitude: {
|
|
50896
|
-
format: string;
|
|
50897
|
-
type: string;
|
|
50898
|
-
};
|
|
50899
|
-
longitude: {
|
|
50900
|
-
format: string;
|
|
50901
|
-
type: string;
|
|
50902
|
-
};
|
|
50903
|
-
};
|
|
50904
|
-
required: string[];
|
|
50905
|
-
type: string;
|
|
50906
|
-
};
|
|
50907
|
-
location_id: {
|
|
50908
|
-
description: string;
|
|
50909
|
-
format: string;
|
|
50910
|
-
type: string;
|
|
50911
|
-
};
|
|
50912
|
-
name: {
|
|
50913
|
-
description: string;
|
|
50914
|
-
type: string;
|
|
50915
|
-
};
|
|
50916
|
-
time_zone: {
|
|
50917
|
-
description: string;
|
|
50918
|
-
type: string;
|
|
50919
|
-
};
|
|
50920
|
-
workspace_id: {
|
|
50921
|
-
description: string;
|
|
50922
|
-
format: string;
|
|
50923
|
-
type: string;
|
|
50924
|
-
};
|
|
50925
|
-
};
|
|
50926
|
-
required: string[];
|
|
50927
|
-
type: string;
|
|
50928
|
-
'x-route-path': string;
|
|
50929
|
-
'x-undocumented': string;
|
|
50930
|
-
};
|
|
50931
50924
|
magic_link: {
|
|
50932
50925
|
description: string;
|
|
50933
50926
|
properties: {
|
|
@@ -51276,6 +51269,17 @@ declare const _default: {
|
|
|
51276
51269
|
description: string;
|
|
51277
51270
|
type: string;
|
|
51278
51271
|
};
|
|
51272
|
+
dormakaba_ambiance_metadata: {
|
|
51273
|
+
description: string;
|
|
51274
|
+
properties: {
|
|
51275
|
+
access_point_name: {
|
|
51276
|
+
description: string;
|
|
51277
|
+
type: string;
|
|
51278
|
+
};
|
|
51279
|
+
};
|
|
51280
|
+
required: string[];
|
|
51281
|
+
type: string;
|
|
51282
|
+
};
|
|
51279
51283
|
dormakaba_community_metadata: {
|
|
51280
51284
|
description: string;
|
|
51281
51285
|
properties: {
|
|
@@ -84829,7 +84833,7 @@ declare const _default: {
|
|
|
84829
84833
|
'x-title': string;
|
|
84830
84834
|
};
|
|
84831
84835
|
};
|
|
84832
|
-
'/
|
|
84836
|
+
'/unstable_partner/building_blocks/connect_accounts': {
|
|
84833
84837
|
post: {
|
|
84834
84838
|
description: string;
|
|
84835
84839
|
operationId: string;
|
|
@@ -84838,18 +84842,8 @@ declare const _default: {
|
|
|
84838
84842
|
'application/json': {
|
|
84839
84843
|
schema: {
|
|
84840
84844
|
properties: {
|
|
84841
|
-
|
|
84842
|
-
description: string;
|
|
84843
|
-
items: {
|
|
84844
|
-
format: string;
|
|
84845
|
-
type: string;
|
|
84846
|
-
};
|
|
84847
|
-
minItems: number;
|
|
84848
|
-
type: string;
|
|
84849
|
-
};
|
|
84850
|
-
location_id: {
|
|
84845
|
+
customer_key: {
|
|
84851
84846
|
description: string;
|
|
84852
|
-
format: string;
|
|
84853
84847
|
type: string;
|
|
84854
84848
|
};
|
|
84855
84849
|
};
|
|
@@ -84865,6 +84859,9 @@ declare const _default: {
|
|
|
84865
84859
|
'application/json': {
|
|
84866
84860
|
schema: {
|
|
84867
84861
|
properties: {
|
|
84862
|
+
magic_link: {
|
|
84863
|
+
$ref: string;
|
|
84864
|
+
};
|
|
84868
84865
|
ok: {
|
|
84869
84866
|
type: string;
|
|
84870
84867
|
};
|
|
@@ -84900,11 +84897,110 @@ declare const _default: {
|
|
|
84900
84897
|
tags: never[];
|
|
84901
84898
|
'x-fern-sdk-group-name': string[];
|
|
84902
84899
|
'x-fern-sdk-method-name': string;
|
|
84903
|
-
'x-
|
|
84900
|
+
'x-fern-sdk-return-value': string;
|
|
84901
|
+
'x-response-key': string;
|
|
84904
84902
|
'x-title': string;
|
|
84905
84903
|
'x-undocumented': string;
|
|
84906
84904
|
};
|
|
84907
|
-
|
|
84905
|
+
};
|
|
84906
|
+
'/unstable_partner/building_blocks/generate_magic_link': {
|
|
84907
|
+
get: {
|
|
84908
|
+
description: string;
|
|
84909
|
+
operationId: string;
|
|
84910
|
+
parameters: ({
|
|
84911
|
+
in: string;
|
|
84912
|
+
name: string;
|
|
84913
|
+
required: boolean;
|
|
84914
|
+
schema: {
|
|
84915
|
+
description: string;
|
|
84916
|
+
enum: string[];
|
|
84917
|
+
type: string;
|
|
84918
|
+
items?: never;
|
|
84919
|
+
};
|
|
84920
|
+
} | {
|
|
84921
|
+
in: string;
|
|
84922
|
+
name: string;
|
|
84923
|
+
required: boolean;
|
|
84924
|
+
schema: {
|
|
84925
|
+
description: string;
|
|
84926
|
+
type: string;
|
|
84927
|
+
enum?: never;
|
|
84928
|
+
items?: never;
|
|
84929
|
+
};
|
|
84930
|
+
} | {
|
|
84931
|
+
in: string;
|
|
84932
|
+
name: string;
|
|
84933
|
+
required: boolean;
|
|
84934
|
+
schema: {
|
|
84935
|
+
description: string;
|
|
84936
|
+
items: {
|
|
84937
|
+
properties: {
|
|
84938
|
+
name: {
|
|
84939
|
+
description: string;
|
|
84940
|
+
type: string;
|
|
84941
|
+
};
|
|
84942
|
+
space_key: {
|
|
84943
|
+
description: string;
|
|
84944
|
+
type: string;
|
|
84945
|
+
};
|
|
84946
|
+
};
|
|
84947
|
+
required: string[];
|
|
84948
|
+
type: string;
|
|
84949
|
+
};
|
|
84950
|
+
type: string;
|
|
84951
|
+
enum?: never;
|
|
84952
|
+
};
|
|
84953
|
+
})[];
|
|
84954
|
+
responses: {
|
|
84955
|
+
200: {
|
|
84956
|
+
content: {
|
|
84957
|
+
'application/json': {
|
|
84958
|
+
schema: {
|
|
84959
|
+
properties: {
|
|
84960
|
+
magic_link: {
|
|
84961
|
+
$ref: string;
|
|
84962
|
+
};
|
|
84963
|
+
ok: {
|
|
84964
|
+
type: string;
|
|
84965
|
+
};
|
|
84966
|
+
};
|
|
84967
|
+
required: string[];
|
|
84968
|
+
type: string;
|
|
84969
|
+
};
|
|
84970
|
+
};
|
|
84971
|
+
};
|
|
84972
|
+
description: string;
|
|
84973
|
+
};
|
|
84974
|
+
400: {
|
|
84975
|
+
description: string;
|
|
84976
|
+
};
|
|
84977
|
+
401: {
|
|
84978
|
+
description: string;
|
|
84979
|
+
};
|
|
84980
|
+
};
|
|
84981
|
+
security: ({
|
|
84982
|
+
pat_with_workspace: never[];
|
|
84983
|
+
console_session_with_workspace?: never;
|
|
84984
|
+
api_key?: never;
|
|
84985
|
+
} | {
|
|
84986
|
+
console_session_with_workspace: never[];
|
|
84987
|
+
pat_with_workspace?: never;
|
|
84988
|
+
api_key?: never;
|
|
84989
|
+
} | {
|
|
84990
|
+
api_key: never[];
|
|
84991
|
+
pat_with_workspace?: never;
|
|
84992
|
+
console_session_with_workspace?: never;
|
|
84993
|
+
})[];
|
|
84994
|
+
summary: string;
|
|
84995
|
+
tags: never[];
|
|
84996
|
+
'x-fern-sdk-group-name': string[];
|
|
84997
|
+
'x-fern-sdk-method-name': string;
|
|
84998
|
+
'x-fern-sdk-return-value': string;
|
|
84999
|
+
'x-response-key': string;
|
|
85000
|
+
'x-title': string;
|
|
85001
|
+
'x-undocumented': string;
|
|
85002
|
+
};
|
|
85003
|
+
post: {
|
|
84908
85004
|
description: string;
|
|
84909
85005
|
operationId: string;
|
|
84910
85006
|
requestBody: {
|
|
@@ -84912,18 +85008,31 @@ declare const _default: {
|
|
|
84912
85008
|
'application/json': {
|
|
84913
85009
|
schema: {
|
|
84914
85010
|
properties: {
|
|
84915
|
-
|
|
85011
|
+
building_block_type: {
|
|
84916
85012
|
description: string;
|
|
84917
|
-
|
|
84918
|
-
format: string;
|
|
84919
|
-
type: string;
|
|
84920
|
-
};
|
|
84921
|
-
minItems: number;
|
|
85013
|
+
enum: string[];
|
|
84922
85014
|
type: string;
|
|
84923
85015
|
};
|
|
84924
|
-
|
|
85016
|
+
customer_key: {
|
|
84925
85017
|
description: string;
|
|
84926
|
-
|
|
85018
|
+
type: string;
|
|
85019
|
+
};
|
|
85020
|
+
spaces: {
|
|
85021
|
+
description: string;
|
|
85022
|
+
items: {
|
|
85023
|
+
properties: {
|
|
85024
|
+
name: {
|
|
85025
|
+
description: string;
|
|
85026
|
+
type: string;
|
|
85027
|
+
};
|
|
85028
|
+
space_key: {
|
|
85029
|
+
description: string;
|
|
85030
|
+
type: string;
|
|
85031
|
+
};
|
|
85032
|
+
};
|
|
85033
|
+
required: string[];
|
|
85034
|
+
type: string;
|
|
85035
|
+
};
|
|
84927
85036
|
type: string;
|
|
84928
85037
|
};
|
|
84929
85038
|
};
|
|
@@ -84939,6 +85048,9 @@ declare const _default: {
|
|
|
84939
85048
|
'application/json': {
|
|
84940
85049
|
schema: {
|
|
84941
85050
|
properties: {
|
|
85051
|
+
magic_link: {
|
|
85052
|
+
$ref: string;
|
|
85053
|
+
};
|
|
84942
85054
|
ok: {
|
|
84943
85055
|
type: string;
|
|
84944
85056
|
};
|
|
@@ -84974,12 +85086,13 @@ declare const _default: {
|
|
|
84974
85086
|
tags: never[];
|
|
84975
85087
|
'x-fern-sdk-group-name': string[];
|
|
84976
85088
|
'x-fern-sdk-method-name': string;
|
|
84977
|
-
'x-
|
|
85089
|
+
'x-fern-sdk-return-value': string;
|
|
85090
|
+
'x-response-key': string;
|
|
84978
85091
|
'x-title': string;
|
|
84979
85092
|
'x-undocumented': string;
|
|
84980
85093
|
};
|
|
84981
85094
|
};
|
|
84982
|
-
'/
|
|
85095
|
+
'/unstable_partner/building_blocks/manage_devices': {
|
|
84983
85096
|
post: {
|
|
84984
85097
|
description: string;
|
|
84985
85098
|
operationId: string;
|
|
@@ -84988,18 +85101,8 @@ declare const _default: {
|
|
|
84988
85101
|
'application/json': {
|
|
84989
85102
|
schema: {
|
|
84990
85103
|
properties: {
|
|
84991
|
-
|
|
84992
|
-
description: string;
|
|
84993
|
-
items: {
|
|
84994
|
-
format: string;
|
|
84995
|
-
type: string;
|
|
84996
|
-
};
|
|
84997
|
-
minItems: number;
|
|
84998
|
-
type: string;
|
|
84999
|
-
};
|
|
85000
|
-
location_id: {
|
|
85104
|
+
customer_key: {
|
|
85001
85105
|
description: string;
|
|
85002
|
-
format: string;
|
|
85003
85106
|
type: string;
|
|
85004
85107
|
};
|
|
85005
85108
|
};
|
|
@@ -85015,1370 +85118,9 @@ declare const _default: {
|
|
|
85015
85118
|
'application/json': {
|
|
85016
85119
|
schema: {
|
|
85017
85120
|
properties: {
|
|
85018
|
-
|
|
85019
|
-
|
|
85020
|
-
};
|
|
85021
|
-
};
|
|
85022
|
-
required: string[];
|
|
85023
|
-
type: string;
|
|
85024
|
-
};
|
|
85025
|
-
};
|
|
85026
|
-
};
|
|
85027
|
-
description: string;
|
|
85028
|
-
};
|
|
85029
|
-
400: {
|
|
85030
|
-
description: string;
|
|
85031
|
-
};
|
|
85032
|
-
401: {
|
|
85033
|
-
description: string;
|
|
85034
|
-
};
|
|
85035
|
-
};
|
|
85036
|
-
security: ({
|
|
85037
|
-
pat_with_workspace: never[];
|
|
85038
|
-
console_session_with_workspace?: never;
|
|
85039
|
-
api_key?: never;
|
|
85040
|
-
} | {
|
|
85041
|
-
console_session_with_workspace: never[];
|
|
85042
|
-
pat_with_workspace?: never;
|
|
85043
|
-
api_key?: never;
|
|
85044
|
-
} | {
|
|
85045
|
-
api_key: never[];
|
|
85046
|
-
pat_with_workspace?: never;
|
|
85047
|
-
console_session_with_workspace?: never;
|
|
85048
|
-
})[];
|
|
85049
|
-
summary: string;
|
|
85050
|
-
tags: never[];
|
|
85051
|
-
'x-fern-sdk-group-name': string[];
|
|
85052
|
-
'x-fern-sdk-method-name': string;
|
|
85053
|
-
'x-response-key': null;
|
|
85054
|
-
'x-title': string;
|
|
85055
|
-
'x-undocumented': string;
|
|
85056
|
-
};
|
|
85057
|
-
put: {
|
|
85058
|
-
description: string;
|
|
85059
|
-
operationId: string;
|
|
85060
|
-
requestBody: {
|
|
85061
|
-
content: {
|
|
85062
|
-
'application/json': {
|
|
85063
|
-
schema: {
|
|
85064
|
-
properties: {
|
|
85065
|
-
device_ids: {
|
|
85066
|
-
description: string;
|
|
85067
|
-
items: {
|
|
85068
|
-
format: string;
|
|
85069
|
-
type: string;
|
|
85070
|
-
};
|
|
85071
|
-
minItems: number;
|
|
85072
|
-
type: string;
|
|
85073
|
-
};
|
|
85074
|
-
location_id: {
|
|
85075
|
-
description: string;
|
|
85076
|
-
format: string;
|
|
85077
|
-
type: string;
|
|
85078
|
-
};
|
|
85079
|
-
};
|
|
85080
|
-
required: string[];
|
|
85081
|
-
type: string;
|
|
85082
|
-
};
|
|
85083
|
-
};
|
|
85084
|
-
};
|
|
85085
|
-
};
|
|
85086
|
-
responses: {
|
|
85087
|
-
200: {
|
|
85088
|
-
content: {
|
|
85089
|
-
'application/json': {
|
|
85090
|
-
schema: {
|
|
85091
|
-
properties: {
|
|
85092
|
-
ok: {
|
|
85093
|
-
type: string;
|
|
85094
|
-
};
|
|
85095
|
-
};
|
|
85096
|
-
required: string[];
|
|
85097
|
-
type: string;
|
|
85098
|
-
};
|
|
85099
|
-
};
|
|
85100
|
-
};
|
|
85101
|
-
description: string;
|
|
85102
|
-
};
|
|
85103
|
-
400: {
|
|
85104
|
-
description: string;
|
|
85105
|
-
};
|
|
85106
|
-
401: {
|
|
85107
|
-
description: string;
|
|
85108
|
-
};
|
|
85109
|
-
};
|
|
85110
|
-
security: ({
|
|
85111
|
-
pat_with_workspace: never[];
|
|
85112
|
-
console_session_with_workspace?: never;
|
|
85113
|
-
api_key?: never;
|
|
85114
|
-
} | {
|
|
85115
|
-
console_session_with_workspace: never[];
|
|
85116
|
-
pat_with_workspace?: never;
|
|
85117
|
-
api_key?: never;
|
|
85118
|
-
} | {
|
|
85119
|
-
api_key: never[];
|
|
85120
|
-
pat_with_workspace?: never;
|
|
85121
|
-
console_session_with_workspace?: never;
|
|
85122
|
-
})[];
|
|
85123
|
-
summary: string;
|
|
85124
|
-
tags: never[];
|
|
85125
|
-
'x-fern-sdk-group-name': string[];
|
|
85126
|
-
'x-fern-sdk-method-name': string;
|
|
85127
|
-
'x-response-key': null;
|
|
85128
|
-
'x-title': string;
|
|
85129
|
-
'x-undocumented': string;
|
|
85130
|
-
};
|
|
85131
|
-
};
|
|
85132
|
-
'/unstable_locations/create': {
|
|
85133
|
-
post: {
|
|
85134
|
-
description: string;
|
|
85135
|
-
operationId: string;
|
|
85136
|
-
requestBody: {
|
|
85137
|
-
content: {
|
|
85138
|
-
'application/json': {
|
|
85139
|
-
schema: {
|
|
85140
|
-
properties: {
|
|
85141
|
-
acs_entrance_ids: {
|
|
85142
|
-
description: string;
|
|
85143
|
-
items: {
|
|
85144
|
-
format: string;
|
|
85145
|
-
type: string;
|
|
85146
|
-
};
|
|
85147
|
-
type: string;
|
|
85148
|
-
};
|
|
85149
|
-
device_ids: {
|
|
85150
|
-
description: string;
|
|
85151
|
-
items: {
|
|
85152
|
-
format: string;
|
|
85153
|
-
type: string;
|
|
85154
|
-
};
|
|
85155
|
-
type: string;
|
|
85156
|
-
};
|
|
85157
|
-
geolocation: {
|
|
85158
|
-
description: string;
|
|
85159
|
-
properties: {
|
|
85160
|
-
latitude: {
|
|
85161
|
-
format: string;
|
|
85162
|
-
type: string;
|
|
85163
|
-
};
|
|
85164
|
-
longitude: {
|
|
85165
|
-
format: string;
|
|
85166
|
-
type: string;
|
|
85167
|
-
};
|
|
85168
|
-
};
|
|
85169
|
-
required: string[];
|
|
85170
|
-
type: string;
|
|
85171
|
-
};
|
|
85172
|
-
name: {
|
|
85173
|
-
description: string;
|
|
85174
|
-
type: string;
|
|
85175
|
-
};
|
|
85176
|
-
time_zone: {
|
|
85177
|
-
description: string;
|
|
85178
|
-
type: string;
|
|
85179
|
-
};
|
|
85180
|
-
};
|
|
85181
|
-
required: string[];
|
|
85182
|
-
type: string;
|
|
85183
|
-
};
|
|
85184
|
-
};
|
|
85185
|
-
};
|
|
85186
|
-
};
|
|
85187
|
-
responses: {
|
|
85188
|
-
200: {
|
|
85189
|
-
content: {
|
|
85190
|
-
'application/json': {
|
|
85191
|
-
schema: {
|
|
85192
|
-
properties: {
|
|
85193
|
-
location: {
|
|
85194
|
-
$ref: string;
|
|
85195
|
-
};
|
|
85196
|
-
ok: {
|
|
85197
|
-
type: string;
|
|
85198
|
-
};
|
|
85199
|
-
};
|
|
85200
|
-
required: string[];
|
|
85201
|
-
type: string;
|
|
85202
|
-
};
|
|
85203
|
-
};
|
|
85204
|
-
};
|
|
85205
|
-
description: string;
|
|
85206
|
-
};
|
|
85207
|
-
400: {
|
|
85208
|
-
description: string;
|
|
85209
|
-
};
|
|
85210
|
-
401: {
|
|
85211
|
-
description: string;
|
|
85212
|
-
};
|
|
85213
|
-
};
|
|
85214
|
-
security: ({
|
|
85215
|
-
pat_with_workspace: never[];
|
|
85216
|
-
console_session_with_workspace?: never;
|
|
85217
|
-
api_key?: never;
|
|
85218
|
-
} | {
|
|
85219
|
-
console_session_with_workspace: never[];
|
|
85220
|
-
pat_with_workspace?: never;
|
|
85221
|
-
api_key?: never;
|
|
85222
|
-
} | {
|
|
85223
|
-
api_key: never[];
|
|
85224
|
-
pat_with_workspace?: never;
|
|
85225
|
-
console_session_with_workspace?: never;
|
|
85226
|
-
})[];
|
|
85227
|
-
summary: string;
|
|
85228
|
-
tags: never[];
|
|
85229
|
-
'x-fern-sdk-group-name': string[];
|
|
85230
|
-
'x-fern-sdk-method-name': string;
|
|
85231
|
-
'x-fern-sdk-return-value': string;
|
|
85232
|
-
'x-response-key': string;
|
|
85233
|
-
'x-title': string;
|
|
85234
|
-
'x-undocumented': string;
|
|
85235
|
-
};
|
|
85236
|
-
};
|
|
85237
|
-
'/unstable_locations/delete': {
|
|
85238
|
-
delete: {
|
|
85239
|
-
description: string;
|
|
85240
|
-
operationId: string;
|
|
85241
|
-
requestBody: {
|
|
85242
|
-
content: {
|
|
85243
|
-
'application/json': {
|
|
85244
|
-
schema: {
|
|
85245
|
-
properties: {
|
|
85246
|
-
location_id: {
|
|
85247
|
-
description: string;
|
|
85248
|
-
format: string;
|
|
85249
|
-
type: string;
|
|
85250
|
-
};
|
|
85251
|
-
};
|
|
85252
|
-
required: string[];
|
|
85253
|
-
type: string;
|
|
85254
|
-
};
|
|
85255
|
-
};
|
|
85256
|
-
};
|
|
85257
|
-
};
|
|
85258
|
-
responses: {
|
|
85259
|
-
200: {
|
|
85260
|
-
content: {
|
|
85261
|
-
'application/json': {
|
|
85262
|
-
schema: {
|
|
85263
|
-
properties: {
|
|
85264
|
-
ok: {
|
|
85265
|
-
type: string;
|
|
85266
|
-
};
|
|
85267
|
-
};
|
|
85268
|
-
required: string[];
|
|
85269
|
-
type: string;
|
|
85270
|
-
};
|
|
85271
|
-
};
|
|
85272
|
-
};
|
|
85273
|
-
description: string;
|
|
85274
|
-
};
|
|
85275
|
-
400: {
|
|
85276
|
-
description: string;
|
|
85277
|
-
};
|
|
85278
|
-
401: {
|
|
85279
|
-
description: string;
|
|
85280
|
-
};
|
|
85281
|
-
};
|
|
85282
|
-
security: ({
|
|
85283
|
-
pat_with_workspace: never[];
|
|
85284
|
-
console_session_with_workspace?: never;
|
|
85285
|
-
api_key?: never;
|
|
85286
|
-
} | {
|
|
85287
|
-
console_session_with_workspace: never[];
|
|
85288
|
-
pat_with_workspace?: never;
|
|
85289
|
-
api_key?: never;
|
|
85290
|
-
} | {
|
|
85291
|
-
api_key: never[];
|
|
85292
|
-
pat_with_workspace?: never;
|
|
85293
|
-
console_session_with_workspace?: never;
|
|
85294
|
-
})[];
|
|
85295
|
-
summary: string;
|
|
85296
|
-
tags: never[];
|
|
85297
|
-
'x-fern-sdk-group-name': string[];
|
|
85298
|
-
'x-fern-sdk-method-name': string;
|
|
85299
|
-
'x-response-key': null;
|
|
85300
|
-
'x-title': string;
|
|
85301
|
-
'x-undocumented': string;
|
|
85302
|
-
};
|
|
85303
|
-
post: {
|
|
85304
|
-
description: string;
|
|
85305
|
-
operationId: string;
|
|
85306
|
-
requestBody: {
|
|
85307
|
-
content: {
|
|
85308
|
-
'application/json': {
|
|
85309
|
-
schema: {
|
|
85310
|
-
properties: {
|
|
85311
|
-
location_id: {
|
|
85312
|
-
description: string;
|
|
85313
|
-
format: string;
|
|
85314
|
-
type: string;
|
|
85315
|
-
};
|
|
85316
|
-
};
|
|
85317
|
-
required: string[];
|
|
85318
|
-
type: string;
|
|
85319
|
-
};
|
|
85320
|
-
};
|
|
85321
|
-
};
|
|
85322
|
-
};
|
|
85323
|
-
responses: {
|
|
85324
|
-
200: {
|
|
85325
|
-
content: {
|
|
85326
|
-
'application/json': {
|
|
85327
|
-
schema: {
|
|
85328
|
-
properties: {
|
|
85329
|
-
ok: {
|
|
85330
|
-
type: string;
|
|
85331
|
-
};
|
|
85332
|
-
};
|
|
85333
|
-
required: string[];
|
|
85334
|
-
type: string;
|
|
85335
|
-
};
|
|
85336
|
-
};
|
|
85337
|
-
};
|
|
85338
|
-
description: string;
|
|
85339
|
-
};
|
|
85340
|
-
400: {
|
|
85341
|
-
description: string;
|
|
85342
|
-
};
|
|
85343
|
-
401: {
|
|
85344
|
-
description: string;
|
|
85345
|
-
};
|
|
85346
|
-
};
|
|
85347
|
-
security: ({
|
|
85348
|
-
pat_with_workspace: never[];
|
|
85349
|
-
console_session_with_workspace?: never;
|
|
85350
|
-
api_key?: never;
|
|
85351
|
-
} | {
|
|
85352
|
-
console_session_with_workspace: never[];
|
|
85353
|
-
pat_with_workspace?: never;
|
|
85354
|
-
api_key?: never;
|
|
85355
|
-
} | {
|
|
85356
|
-
api_key: never[];
|
|
85357
|
-
pat_with_workspace?: never;
|
|
85358
|
-
console_session_with_workspace?: never;
|
|
85359
|
-
})[];
|
|
85360
|
-
summary: string;
|
|
85361
|
-
tags: never[];
|
|
85362
|
-
'x-fern-sdk-group-name': string[];
|
|
85363
|
-
'x-fern-sdk-method-name': string;
|
|
85364
|
-
'x-response-key': null;
|
|
85365
|
-
'x-title': string;
|
|
85366
|
-
'x-undocumented': string;
|
|
85367
|
-
};
|
|
85368
|
-
};
|
|
85369
|
-
'/unstable_locations/get': {
|
|
85370
|
-
get: {
|
|
85371
|
-
description: string;
|
|
85372
|
-
operationId: string;
|
|
85373
|
-
parameters: {
|
|
85374
|
-
in: string;
|
|
85375
|
-
name: string;
|
|
85376
|
-
required: boolean;
|
|
85377
|
-
schema: {
|
|
85378
|
-
description: string;
|
|
85379
|
-
format: string;
|
|
85380
|
-
type: string;
|
|
85381
|
-
};
|
|
85382
|
-
}[];
|
|
85383
|
-
responses: {
|
|
85384
|
-
200: {
|
|
85385
|
-
content: {
|
|
85386
|
-
'application/json': {
|
|
85387
|
-
schema: {
|
|
85388
|
-
properties: {
|
|
85389
|
-
location: {
|
|
85390
|
-
$ref: string;
|
|
85391
|
-
};
|
|
85392
|
-
ok: {
|
|
85393
|
-
type: string;
|
|
85394
|
-
};
|
|
85395
|
-
};
|
|
85396
|
-
required: string[];
|
|
85397
|
-
type: string;
|
|
85398
|
-
};
|
|
85399
|
-
};
|
|
85400
|
-
};
|
|
85401
|
-
description: string;
|
|
85402
|
-
};
|
|
85403
|
-
400: {
|
|
85404
|
-
description: string;
|
|
85405
|
-
};
|
|
85406
|
-
401: {
|
|
85407
|
-
description: string;
|
|
85408
|
-
};
|
|
85409
|
-
};
|
|
85410
|
-
security: ({
|
|
85411
|
-
pat_with_workspace: never[];
|
|
85412
|
-
console_session_with_workspace?: never;
|
|
85413
|
-
api_key?: never;
|
|
85414
|
-
} | {
|
|
85415
|
-
console_session_with_workspace: never[];
|
|
85416
|
-
pat_with_workspace?: never;
|
|
85417
|
-
api_key?: never;
|
|
85418
|
-
} | {
|
|
85419
|
-
api_key: never[];
|
|
85420
|
-
pat_with_workspace?: never;
|
|
85421
|
-
console_session_with_workspace?: never;
|
|
85422
|
-
})[];
|
|
85423
|
-
summary: string;
|
|
85424
|
-
tags: never[];
|
|
85425
|
-
'x-fern-sdk-group-name': string[];
|
|
85426
|
-
'x-fern-sdk-method-name': string;
|
|
85427
|
-
'x-fern-sdk-return-value': string;
|
|
85428
|
-
'x-response-key': string;
|
|
85429
|
-
'x-title': string;
|
|
85430
|
-
'x-undocumented': string;
|
|
85431
|
-
};
|
|
85432
|
-
post: {
|
|
85433
|
-
description: string;
|
|
85434
|
-
operationId: string;
|
|
85435
|
-
requestBody: {
|
|
85436
|
-
content: {
|
|
85437
|
-
'application/json': {
|
|
85438
|
-
schema: {
|
|
85439
|
-
properties: {
|
|
85440
|
-
location_id: {
|
|
85441
|
-
description: string;
|
|
85442
|
-
format: string;
|
|
85443
|
-
type: string;
|
|
85444
|
-
};
|
|
85445
|
-
};
|
|
85446
|
-
required: string[];
|
|
85447
|
-
type: string;
|
|
85448
|
-
};
|
|
85449
|
-
};
|
|
85450
|
-
};
|
|
85451
|
-
};
|
|
85452
|
-
responses: {
|
|
85453
|
-
200: {
|
|
85454
|
-
content: {
|
|
85455
|
-
'application/json': {
|
|
85456
|
-
schema: {
|
|
85457
|
-
properties: {
|
|
85458
|
-
location: {
|
|
85459
|
-
$ref: string;
|
|
85460
|
-
};
|
|
85461
|
-
ok: {
|
|
85462
|
-
type: string;
|
|
85463
|
-
};
|
|
85464
|
-
};
|
|
85465
|
-
required: string[];
|
|
85466
|
-
type: string;
|
|
85467
|
-
};
|
|
85468
|
-
};
|
|
85469
|
-
};
|
|
85470
|
-
description: string;
|
|
85471
|
-
};
|
|
85472
|
-
400: {
|
|
85473
|
-
description: string;
|
|
85474
|
-
};
|
|
85475
|
-
401: {
|
|
85476
|
-
description: string;
|
|
85477
|
-
};
|
|
85478
|
-
};
|
|
85479
|
-
security: ({
|
|
85480
|
-
pat_with_workspace: never[];
|
|
85481
|
-
console_session_with_workspace?: never;
|
|
85482
|
-
api_key?: never;
|
|
85483
|
-
} | {
|
|
85484
|
-
console_session_with_workspace: never[];
|
|
85485
|
-
pat_with_workspace?: never;
|
|
85486
|
-
api_key?: never;
|
|
85487
|
-
} | {
|
|
85488
|
-
api_key: never[];
|
|
85489
|
-
pat_with_workspace?: never;
|
|
85490
|
-
console_session_with_workspace?: never;
|
|
85491
|
-
})[];
|
|
85492
|
-
summary: string;
|
|
85493
|
-
tags: never[];
|
|
85494
|
-
'x-fern-sdk-group-name': string[];
|
|
85495
|
-
'x-fern-sdk-method-name': string;
|
|
85496
|
-
'x-fern-sdk-return-value': string;
|
|
85497
|
-
'x-response-key': string;
|
|
85498
|
-
'x-title': string;
|
|
85499
|
-
'x-undocumented': string;
|
|
85500
|
-
};
|
|
85501
|
-
};
|
|
85502
|
-
'/unstable_locations/list': {
|
|
85503
|
-
get: {
|
|
85504
|
-
description: string;
|
|
85505
|
-
operationId: string;
|
|
85506
|
-
responses: {
|
|
85507
|
-
200: {
|
|
85508
|
-
content: {
|
|
85509
|
-
'application/json': {
|
|
85510
|
-
schema: {
|
|
85511
|
-
properties: {
|
|
85512
|
-
locations: {
|
|
85513
|
-
items: {
|
|
85514
|
-
$ref: string;
|
|
85515
|
-
};
|
|
85516
|
-
type: string;
|
|
85517
|
-
};
|
|
85518
|
-
ok: {
|
|
85519
|
-
type: string;
|
|
85520
|
-
};
|
|
85521
|
-
};
|
|
85522
|
-
required: string[];
|
|
85523
|
-
type: string;
|
|
85524
|
-
};
|
|
85525
|
-
};
|
|
85526
|
-
};
|
|
85527
|
-
description: string;
|
|
85528
|
-
};
|
|
85529
|
-
400: {
|
|
85530
|
-
description: string;
|
|
85531
|
-
};
|
|
85532
|
-
401: {
|
|
85533
|
-
description: string;
|
|
85534
|
-
};
|
|
85535
|
-
};
|
|
85536
|
-
security: ({
|
|
85537
|
-
pat_with_workspace: never[];
|
|
85538
|
-
console_session_with_workspace?: never;
|
|
85539
|
-
api_key?: never;
|
|
85540
|
-
} | {
|
|
85541
|
-
console_session_with_workspace: never[];
|
|
85542
|
-
pat_with_workspace?: never;
|
|
85543
|
-
api_key?: never;
|
|
85544
|
-
} | {
|
|
85545
|
-
api_key: never[];
|
|
85546
|
-
pat_with_workspace?: never;
|
|
85547
|
-
console_session_with_workspace?: never;
|
|
85548
|
-
})[];
|
|
85549
|
-
summary: string;
|
|
85550
|
-
tags: never[];
|
|
85551
|
-
'x-fern-sdk-group-name': string[];
|
|
85552
|
-
'x-fern-sdk-method-name': string;
|
|
85553
|
-
'x-fern-sdk-return-value': string;
|
|
85554
|
-
'x-response-key': string;
|
|
85555
|
-
'x-title': string;
|
|
85556
|
-
'x-undocumented': string;
|
|
85557
|
-
};
|
|
85558
|
-
post: {
|
|
85559
|
-
description: string;
|
|
85560
|
-
operationId: string;
|
|
85561
|
-
responses: {
|
|
85562
|
-
200: {
|
|
85563
|
-
content: {
|
|
85564
|
-
'application/json': {
|
|
85565
|
-
schema: {
|
|
85566
|
-
properties: {
|
|
85567
|
-
locations: {
|
|
85568
|
-
items: {
|
|
85569
|
-
$ref: string;
|
|
85570
|
-
};
|
|
85571
|
-
type: string;
|
|
85572
|
-
};
|
|
85573
|
-
ok: {
|
|
85574
|
-
type: string;
|
|
85575
|
-
};
|
|
85576
|
-
};
|
|
85577
|
-
required: string[];
|
|
85578
|
-
type: string;
|
|
85579
|
-
};
|
|
85580
|
-
};
|
|
85581
|
-
};
|
|
85582
|
-
description: string;
|
|
85583
|
-
};
|
|
85584
|
-
400: {
|
|
85585
|
-
description: string;
|
|
85586
|
-
};
|
|
85587
|
-
401: {
|
|
85588
|
-
description: string;
|
|
85589
|
-
};
|
|
85590
|
-
};
|
|
85591
|
-
security: ({
|
|
85592
|
-
pat_with_workspace: never[];
|
|
85593
|
-
console_session_with_workspace?: never;
|
|
85594
|
-
api_key?: never;
|
|
85595
|
-
} | {
|
|
85596
|
-
console_session_with_workspace: never[];
|
|
85597
|
-
pat_with_workspace?: never;
|
|
85598
|
-
api_key?: never;
|
|
85599
|
-
} | {
|
|
85600
|
-
api_key: never[];
|
|
85601
|
-
pat_with_workspace?: never;
|
|
85602
|
-
console_session_with_workspace?: never;
|
|
85603
|
-
})[];
|
|
85604
|
-
summary: string;
|
|
85605
|
-
tags: never[];
|
|
85606
|
-
'x-fern-sdk-group-name': string[];
|
|
85607
|
-
'x-fern-sdk-method-name': string;
|
|
85608
|
-
'x-fern-sdk-return-value': string;
|
|
85609
|
-
'x-response-key': string;
|
|
85610
|
-
'x-title': string;
|
|
85611
|
-
'x-undocumented': string;
|
|
85612
|
-
};
|
|
85613
|
-
};
|
|
85614
|
-
'/unstable_locations/remove_acs_entrances': {
|
|
85615
|
-
delete: {
|
|
85616
|
-
description: string;
|
|
85617
|
-
operationId: string;
|
|
85618
|
-
parameters: ({
|
|
85619
|
-
in: string;
|
|
85620
|
-
name: string;
|
|
85621
|
-
required: boolean;
|
|
85622
|
-
schema: {
|
|
85623
|
-
description: string;
|
|
85624
|
-
format: string;
|
|
85625
|
-
type: string;
|
|
85626
|
-
items?: never;
|
|
85627
|
-
};
|
|
85628
|
-
} | {
|
|
85629
|
-
in: string;
|
|
85630
|
-
name: string;
|
|
85631
|
-
required: boolean;
|
|
85632
|
-
schema: {
|
|
85633
|
-
description: string;
|
|
85634
|
-
items: {
|
|
85635
|
-
format: string;
|
|
85636
|
-
type: string;
|
|
85637
|
-
};
|
|
85638
|
-
type: string;
|
|
85639
|
-
format?: never;
|
|
85640
|
-
};
|
|
85641
|
-
})[];
|
|
85642
|
-
responses: {
|
|
85643
|
-
200: {
|
|
85644
|
-
content: {
|
|
85645
|
-
'application/json': {
|
|
85646
|
-
schema: {
|
|
85647
|
-
properties: {
|
|
85648
|
-
ok: {
|
|
85649
|
-
type: string;
|
|
85650
|
-
};
|
|
85651
|
-
};
|
|
85652
|
-
required: string[];
|
|
85653
|
-
type: string;
|
|
85654
|
-
};
|
|
85655
|
-
};
|
|
85656
|
-
};
|
|
85657
|
-
description: string;
|
|
85658
|
-
};
|
|
85659
|
-
400: {
|
|
85660
|
-
description: string;
|
|
85661
|
-
};
|
|
85662
|
-
401: {
|
|
85663
|
-
description: string;
|
|
85664
|
-
};
|
|
85665
|
-
};
|
|
85666
|
-
security: ({
|
|
85667
|
-
pat_with_workspace: never[];
|
|
85668
|
-
console_session_with_workspace?: never;
|
|
85669
|
-
api_key?: never;
|
|
85670
|
-
} | {
|
|
85671
|
-
console_session_with_workspace: never[];
|
|
85672
|
-
pat_with_workspace?: never;
|
|
85673
|
-
api_key?: never;
|
|
85674
|
-
} | {
|
|
85675
|
-
api_key: never[];
|
|
85676
|
-
pat_with_workspace?: never;
|
|
85677
|
-
console_session_with_workspace?: never;
|
|
85678
|
-
})[];
|
|
85679
|
-
summary: string;
|
|
85680
|
-
tags: never[];
|
|
85681
|
-
'x-fern-sdk-group-name': string[];
|
|
85682
|
-
'x-fern-sdk-method-name': string;
|
|
85683
|
-
'x-response-key': null;
|
|
85684
|
-
'x-title': string;
|
|
85685
|
-
'x-undocumented': string;
|
|
85686
|
-
};
|
|
85687
|
-
post: {
|
|
85688
|
-
description: string;
|
|
85689
|
-
operationId: string;
|
|
85690
|
-
requestBody: {
|
|
85691
|
-
content: {
|
|
85692
|
-
'application/json': {
|
|
85693
|
-
schema: {
|
|
85694
|
-
properties: {
|
|
85695
|
-
acs_entrance_ids: {
|
|
85696
|
-
description: string;
|
|
85697
|
-
items: {
|
|
85698
|
-
format: string;
|
|
85699
|
-
type: string;
|
|
85700
|
-
};
|
|
85701
|
-
type: string;
|
|
85702
|
-
};
|
|
85703
|
-
location_id: {
|
|
85704
|
-
description: string;
|
|
85705
|
-
format: string;
|
|
85706
|
-
type: string;
|
|
85707
|
-
};
|
|
85708
|
-
};
|
|
85709
|
-
required: string[];
|
|
85710
|
-
type: string;
|
|
85711
|
-
};
|
|
85712
|
-
};
|
|
85713
|
-
};
|
|
85714
|
-
};
|
|
85715
|
-
responses: {
|
|
85716
|
-
200: {
|
|
85717
|
-
content: {
|
|
85718
|
-
'application/json': {
|
|
85719
|
-
schema: {
|
|
85720
|
-
properties: {
|
|
85721
|
-
ok: {
|
|
85722
|
-
type: string;
|
|
85723
|
-
};
|
|
85724
|
-
};
|
|
85725
|
-
required: string[];
|
|
85726
|
-
type: string;
|
|
85727
|
-
};
|
|
85728
|
-
};
|
|
85729
|
-
};
|
|
85730
|
-
description: string;
|
|
85731
|
-
};
|
|
85732
|
-
400: {
|
|
85733
|
-
description: string;
|
|
85734
|
-
};
|
|
85735
|
-
401: {
|
|
85736
|
-
description: string;
|
|
85737
|
-
};
|
|
85738
|
-
};
|
|
85739
|
-
security: ({
|
|
85740
|
-
pat_with_workspace: never[];
|
|
85741
|
-
console_session_with_workspace?: never;
|
|
85742
|
-
api_key?: never;
|
|
85743
|
-
} | {
|
|
85744
|
-
console_session_with_workspace: never[];
|
|
85745
|
-
pat_with_workspace?: never;
|
|
85746
|
-
api_key?: never;
|
|
85747
|
-
} | {
|
|
85748
|
-
api_key: never[];
|
|
85749
|
-
pat_with_workspace?: never;
|
|
85750
|
-
console_session_with_workspace?: never;
|
|
85751
|
-
})[];
|
|
85752
|
-
summary: string;
|
|
85753
|
-
tags: never[];
|
|
85754
|
-
'x-fern-sdk-group-name': string[];
|
|
85755
|
-
'x-fern-sdk-method-name': string;
|
|
85756
|
-
'x-response-key': null;
|
|
85757
|
-
'x-title': string;
|
|
85758
|
-
'x-undocumented': string;
|
|
85759
|
-
};
|
|
85760
|
-
};
|
|
85761
|
-
'/unstable_locations/remove_devices': {
|
|
85762
|
-
delete: {
|
|
85763
|
-
description: string;
|
|
85764
|
-
operationId: string;
|
|
85765
|
-
parameters: ({
|
|
85766
|
-
in: string;
|
|
85767
|
-
name: string;
|
|
85768
|
-
required: boolean;
|
|
85769
|
-
schema: {
|
|
85770
|
-
description: string;
|
|
85771
|
-
format: string;
|
|
85772
|
-
type: string;
|
|
85773
|
-
items?: never;
|
|
85774
|
-
};
|
|
85775
|
-
} | {
|
|
85776
|
-
in: string;
|
|
85777
|
-
name: string;
|
|
85778
|
-
required: boolean;
|
|
85779
|
-
schema: {
|
|
85780
|
-
description: string;
|
|
85781
|
-
items: {
|
|
85782
|
-
format: string;
|
|
85783
|
-
type: string;
|
|
85784
|
-
};
|
|
85785
|
-
type: string;
|
|
85786
|
-
format?: never;
|
|
85787
|
-
};
|
|
85788
|
-
})[];
|
|
85789
|
-
responses: {
|
|
85790
|
-
200: {
|
|
85791
|
-
content: {
|
|
85792
|
-
'application/json': {
|
|
85793
|
-
schema: {
|
|
85794
|
-
properties: {
|
|
85795
|
-
ok: {
|
|
85796
|
-
type: string;
|
|
85797
|
-
};
|
|
85798
|
-
};
|
|
85799
|
-
required: string[];
|
|
85800
|
-
type: string;
|
|
85801
|
-
};
|
|
85802
|
-
};
|
|
85803
|
-
};
|
|
85804
|
-
description: string;
|
|
85805
|
-
};
|
|
85806
|
-
400: {
|
|
85807
|
-
description: string;
|
|
85808
|
-
};
|
|
85809
|
-
401: {
|
|
85810
|
-
description: string;
|
|
85811
|
-
};
|
|
85812
|
-
};
|
|
85813
|
-
security: ({
|
|
85814
|
-
pat_with_workspace: never[];
|
|
85815
|
-
console_session_with_workspace?: never;
|
|
85816
|
-
api_key?: never;
|
|
85817
|
-
} | {
|
|
85818
|
-
console_session_with_workspace: never[];
|
|
85819
|
-
pat_with_workspace?: never;
|
|
85820
|
-
api_key?: never;
|
|
85821
|
-
} | {
|
|
85822
|
-
api_key: never[];
|
|
85823
|
-
pat_with_workspace?: never;
|
|
85824
|
-
console_session_with_workspace?: never;
|
|
85825
|
-
})[];
|
|
85826
|
-
summary: string;
|
|
85827
|
-
tags: never[];
|
|
85828
|
-
'x-fern-sdk-group-name': string[];
|
|
85829
|
-
'x-fern-sdk-method-name': string;
|
|
85830
|
-
'x-response-key': null;
|
|
85831
|
-
'x-title': string;
|
|
85832
|
-
'x-undocumented': string;
|
|
85833
|
-
};
|
|
85834
|
-
post: {
|
|
85835
|
-
description: string;
|
|
85836
|
-
operationId: string;
|
|
85837
|
-
requestBody: {
|
|
85838
|
-
content: {
|
|
85839
|
-
'application/json': {
|
|
85840
|
-
schema: {
|
|
85841
|
-
properties: {
|
|
85842
|
-
device_ids: {
|
|
85843
|
-
description: string;
|
|
85844
|
-
items: {
|
|
85845
|
-
format: string;
|
|
85846
|
-
type: string;
|
|
85847
|
-
};
|
|
85848
|
-
type: string;
|
|
85849
|
-
};
|
|
85850
|
-
location_id: {
|
|
85851
|
-
description: string;
|
|
85852
|
-
format: string;
|
|
85853
|
-
type: string;
|
|
85854
|
-
};
|
|
85855
|
-
};
|
|
85856
|
-
required: string[];
|
|
85857
|
-
type: string;
|
|
85858
|
-
};
|
|
85859
|
-
};
|
|
85860
|
-
};
|
|
85861
|
-
};
|
|
85862
|
-
responses: {
|
|
85863
|
-
200: {
|
|
85864
|
-
content: {
|
|
85865
|
-
'application/json': {
|
|
85866
|
-
schema: {
|
|
85867
|
-
properties: {
|
|
85868
|
-
ok: {
|
|
85869
|
-
type: string;
|
|
85870
|
-
};
|
|
85871
|
-
};
|
|
85872
|
-
required: string[];
|
|
85873
|
-
type: string;
|
|
85874
|
-
};
|
|
85875
|
-
};
|
|
85876
|
-
};
|
|
85877
|
-
description: string;
|
|
85878
|
-
};
|
|
85879
|
-
400: {
|
|
85880
|
-
description: string;
|
|
85881
|
-
};
|
|
85882
|
-
401: {
|
|
85883
|
-
description: string;
|
|
85884
|
-
};
|
|
85885
|
-
};
|
|
85886
|
-
security: ({
|
|
85887
|
-
pat_with_workspace: never[];
|
|
85888
|
-
console_session_with_workspace?: never;
|
|
85889
|
-
api_key?: never;
|
|
85890
|
-
} | {
|
|
85891
|
-
console_session_with_workspace: never[];
|
|
85892
|
-
pat_with_workspace?: never;
|
|
85893
|
-
api_key?: never;
|
|
85894
|
-
} | {
|
|
85895
|
-
api_key: never[];
|
|
85896
|
-
pat_with_workspace?: never;
|
|
85897
|
-
console_session_with_workspace?: never;
|
|
85898
|
-
})[];
|
|
85899
|
-
summary: string;
|
|
85900
|
-
tags: never[];
|
|
85901
|
-
'x-fern-sdk-group-name': string[];
|
|
85902
|
-
'x-fern-sdk-method-name': string;
|
|
85903
|
-
'x-response-key': null;
|
|
85904
|
-
'x-title': string;
|
|
85905
|
-
'x-undocumented': string;
|
|
85906
|
-
};
|
|
85907
|
-
};
|
|
85908
|
-
'/unstable_locations/update': {
|
|
85909
|
-
patch: {
|
|
85910
|
-
description: string;
|
|
85911
|
-
operationId: string;
|
|
85912
|
-
requestBody: {
|
|
85913
|
-
content: {
|
|
85914
|
-
'application/json': {
|
|
85915
|
-
schema: {
|
|
85916
|
-
properties: {
|
|
85917
|
-
geolocation: {
|
|
85918
|
-
description: string;
|
|
85919
|
-
properties: {
|
|
85920
|
-
latitude: {
|
|
85921
|
-
format: string;
|
|
85922
|
-
type: string;
|
|
85923
|
-
};
|
|
85924
|
-
longitude: {
|
|
85925
|
-
format: string;
|
|
85926
|
-
type: string;
|
|
85927
|
-
};
|
|
85928
|
-
};
|
|
85929
|
-
required: string[];
|
|
85930
|
-
type: string;
|
|
85931
|
-
};
|
|
85932
|
-
location_id: {
|
|
85933
|
-
description: string;
|
|
85934
|
-
format: string;
|
|
85935
|
-
type: string;
|
|
85936
|
-
};
|
|
85937
|
-
name: {
|
|
85938
|
-
description: string;
|
|
85939
|
-
type: string;
|
|
85940
|
-
};
|
|
85941
|
-
time_zone: {
|
|
85942
|
-
description: string;
|
|
85943
|
-
type: string;
|
|
85944
|
-
};
|
|
85945
|
-
};
|
|
85946
|
-
required: string[];
|
|
85947
|
-
type: string;
|
|
85948
|
-
};
|
|
85949
|
-
};
|
|
85950
|
-
};
|
|
85951
|
-
};
|
|
85952
|
-
responses: {
|
|
85953
|
-
200: {
|
|
85954
|
-
content: {
|
|
85955
|
-
'application/json': {
|
|
85956
|
-
schema: {
|
|
85957
|
-
properties: {
|
|
85958
|
-
location: {
|
|
85959
|
-
$ref: string;
|
|
85960
|
-
};
|
|
85961
|
-
ok: {
|
|
85962
|
-
type: string;
|
|
85963
|
-
};
|
|
85964
|
-
};
|
|
85965
|
-
required: string[];
|
|
85966
|
-
type: string;
|
|
85967
|
-
};
|
|
85968
|
-
};
|
|
85969
|
-
};
|
|
85970
|
-
description: string;
|
|
85971
|
-
};
|
|
85972
|
-
400: {
|
|
85973
|
-
description: string;
|
|
85974
|
-
};
|
|
85975
|
-
401: {
|
|
85976
|
-
description: string;
|
|
85977
|
-
};
|
|
85978
|
-
};
|
|
85979
|
-
security: ({
|
|
85980
|
-
pat_with_workspace: never[];
|
|
85981
|
-
console_session_with_workspace?: never;
|
|
85982
|
-
api_key?: never;
|
|
85983
|
-
} | {
|
|
85984
|
-
console_session_with_workspace: never[];
|
|
85985
|
-
pat_with_workspace?: never;
|
|
85986
|
-
api_key?: never;
|
|
85987
|
-
} | {
|
|
85988
|
-
api_key: never[];
|
|
85989
|
-
pat_with_workspace?: never;
|
|
85990
|
-
console_session_with_workspace?: never;
|
|
85991
|
-
})[];
|
|
85992
|
-
summary: string;
|
|
85993
|
-
tags: never[];
|
|
85994
|
-
'x-fern-sdk-group-name': string[];
|
|
85995
|
-
'x-fern-sdk-method-name': string;
|
|
85996
|
-
'x-fern-sdk-return-value': string;
|
|
85997
|
-
'x-response-key': string;
|
|
85998
|
-
'x-title': string;
|
|
85999
|
-
'x-undocumented': string;
|
|
86000
|
-
};
|
|
86001
|
-
post: {
|
|
86002
|
-
description: string;
|
|
86003
|
-
operationId: string;
|
|
86004
|
-
requestBody: {
|
|
86005
|
-
content: {
|
|
86006
|
-
'application/json': {
|
|
86007
|
-
schema: {
|
|
86008
|
-
properties: {
|
|
86009
|
-
geolocation: {
|
|
86010
|
-
description: string;
|
|
86011
|
-
properties: {
|
|
86012
|
-
latitude: {
|
|
86013
|
-
format: string;
|
|
86014
|
-
type: string;
|
|
86015
|
-
};
|
|
86016
|
-
longitude: {
|
|
86017
|
-
format: string;
|
|
86018
|
-
type: string;
|
|
86019
|
-
};
|
|
86020
|
-
};
|
|
86021
|
-
required: string[];
|
|
86022
|
-
type: string;
|
|
86023
|
-
};
|
|
86024
|
-
location_id: {
|
|
86025
|
-
description: string;
|
|
86026
|
-
format: string;
|
|
86027
|
-
type: string;
|
|
86028
|
-
};
|
|
86029
|
-
name: {
|
|
86030
|
-
description: string;
|
|
86031
|
-
type: string;
|
|
86032
|
-
};
|
|
86033
|
-
time_zone: {
|
|
86034
|
-
description: string;
|
|
86035
|
-
type: string;
|
|
86036
|
-
};
|
|
86037
|
-
};
|
|
86038
|
-
required: string[];
|
|
86039
|
-
type: string;
|
|
86040
|
-
};
|
|
86041
|
-
};
|
|
86042
|
-
};
|
|
86043
|
-
};
|
|
86044
|
-
responses: {
|
|
86045
|
-
200: {
|
|
86046
|
-
content: {
|
|
86047
|
-
'application/json': {
|
|
86048
|
-
schema: {
|
|
86049
|
-
properties: {
|
|
86050
|
-
location: {
|
|
86051
|
-
$ref: string;
|
|
86052
|
-
};
|
|
86053
|
-
ok: {
|
|
86054
|
-
type: string;
|
|
86055
|
-
};
|
|
86056
|
-
};
|
|
86057
|
-
required: string[];
|
|
86058
|
-
type: string;
|
|
86059
|
-
};
|
|
86060
|
-
};
|
|
86061
|
-
};
|
|
86062
|
-
description: string;
|
|
86063
|
-
};
|
|
86064
|
-
400: {
|
|
86065
|
-
description: string;
|
|
86066
|
-
};
|
|
86067
|
-
401: {
|
|
86068
|
-
description: string;
|
|
86069
|
-
};
|
|
86070
|
-
};
|
|
86071
|
-
security: ({
|
|
86072
|
-
pat_with_workspace: never[];
|
|
86073
|
-
console_session_with_workspace?: never;
|
|
86074
|
-
api_key?: never;
|
|
86075
|
-
} | {
|
|
86076
|
-
console_session_with_workspace: never[];
|
|
86077
|
-
pat_with_workspace?: never;
|
|
86078
|
-
api_key?: never;
|
|
86079
|
-
} | {
|
|
86080
|
-
api_key: never[];
|
|
86081
|
-
pat_with_workspace?: never;
|
|
86082
|
-
console_session_with_workspace?: never;
|
|
86083
|
-
})[];
|
|
86084
|
-
summary: string;
|
|
86085
|
-
tags: never[];
|
|
86086
|
-
'x-fern-sdk-group-name': string[];
|
|
86087
|
-
'x-fern-sdk-method-name': string;
|
|
86088
|
-
'x-fern-sdk-return-value': string;
|
|
86089
|
-
'x-response-key': string;
|
|
86090
|
-
'x-title': string;
|
|
86091
|
-
'x-undocumented': string;
|
|
86092
|
-
};
|
|
86093
|
-
};
|
|
86094
|
-
'/unstable_partner/building_blocks/connect_accounts': {
|
|
86095
|
-
post: {
|
|
86096
|
-
description: string;
|
|
86097
|
-
operationId: string;
|
|
86098
|
-
requestBody: {
|
|
86099
|
-
content: {
|
|
86100
|
-
'application/json': {
|
|
86101
|
-
schema: {
|
|
86102
|
-
properties: {
|
|
86103
|
-
customer_key: {
|
|
86104
|
-
description: string;
|
|
86105
|
-
type: string;
|
|
86106
|
-
};
|
|
86107
|
-
};
|
|
86108
|
-
required: string[];
|
|
86109
|
-
type: string;
|
|
86110
|
-
};
|
|
86111
|
-
};
|
|
86112
|
-
};
|
|
86113
|
-
};
|
|
86114
|
-
responses: {
|
|
86115
|
-
200: {
|
|
86116
|
-
content: {
|
|
86117
|
-
'application/json': {
|
|
86118
|
-
schema: {
|
|
86119
|
-
properties: {
|
|
86120
|
-
magic_link: {
|
|
86121
|
-
$ref: string;
|
|
86122
|
-
};
|
|
86123
|
-
ok: {
|
|
86124
|
-
type: string;
|
|
86125
|
-
};
|
|
86126
|
-
};
|
|
86127
|
-
required: string[];
|
|
86128
|
-
type: string;
|
|
86129
|
-
};
|
|
86130
|
-
};
|
|
86131
|
-
};
|
|
86132
|
-
description: string;
|
|
86133
|
-
};
|
|
86134
|
-
400: {
|
|
86135
|
-
description: string;
|
|
86136
|
-
};
|
|
86137
|
-
401: {
|
|
86138
|
-
description: string;
|
|
86139
|
-
};
|
|
86140
|
-
};
|
|
86141
|
-
security: ({
|
|
86142
|
-
pat_with_workspace: never[];
|
|
86143
|
-
console_session_with_workspace?: never;
|
|
86144
|
-
api_key?: never;
|
|
86145
|
-
} | {
|
|
86146
|
-
console_session_with_workspace: never[];
|
|
86147
|
-
pat_with_workspace?: never;
|
|
86148
|
-
api_key?: never;
|
|
86149
|
-
} | {
|
|
86150
|
-
api_key: never[];
|
|
86151
|
-
pat_with_workspace?: never;
|
|
86152
|
-
console_session_with_workspace?: never;
|
|
86153
|
-
})[];
|
|
86154
|
-
summary: string;
|
|
86155
|
-
tags: never[];
|
|
86156
|
-
'x-fern-sdk-group-name': string[];
|
|
86157
|
-
'x-fern-sdk-method-name': string;
|
|
86158
|
-
'x-fern-sdk-return-value': string;
|
|
86159
|
-
'x-response-key': string;
|
|
86160
|
-
'x-title': string;
|
|
86161
|
-
'x-undocumented': string;
|
|
86162
|
-
};
|
|
86163
|
-
};
|
|
86164
|
-
'/unstable_partner/building_blocks/generate_magic_link': {
|
|
86165
|
-
get: {
|
|
86166
|
-
description: string;
|
|
86167
|
-
operationId: string;
|
|
86168
|
-
parameters: ({
|
|
86169
|
-
in: string;
|
|
86170
|
-
name: string;
|
|
86171
|
-
required: boolean;
|
|
86172
|
-
schema: {
|
|
86173
|
-
description: string;
|
|
86174
|
-
enum: string[];
|
|
86175
|
-
type: string;
|
|
86176
|
-
items?: never;
|
|
86177
|
-
};
|
|
86178
|
-
} | {
|
|
86179
|
-
in: string;
|
|
86180
|
-
name: string;
|
|
86181
|
-
required: boolean;
|
|
86182
|
-
schema: {
|
|
86183
|
-
description: string;
|
|
86184
|
-
type: string;
|
|
86185
|
-
enum?: never;
|
|
86186
|
-
items?: never;
|
|
86187
|
-
};
|
|
86188
|
-
} | {
|
|
86189
|
-
in: string;
|
|
86190
|
-
name: string;
|
|
86191
|
-
required: boolean;
|
|
86192
|
-
schema: {
|
|
86193
|
-
description: string;
|
|
86194
|
-
items: {
|
|
86195
|
-
properties: {
|
|
86196
|
-
name: {
|
|
86197
|
-
description: string;
|
|
86198
|
-
type: string;
|
|
86199
|
-
};
|
|
86200
|
-
space_key: {
|
|
86201
|
-
description: string;
|
|
86202
|
-
type: string;
|
|
86203
|
-
};
|
|
86204
|
-
};
|
|
86205
|
-
required: string[];
|
|
86206
|
-
type: string;
|
|
86207
|
-
};
|
|
86208
|
-
type: string;
|
|
86209
|
-
enum?: never;
|
|
86210
|
-
};
|
|
86211
|
-
})[];
|
|
86212
|
-
responses: {
|
|
86213
|
-
200: {
|
|
86214
|
-
content: {
|
|
86215
|
-
'application/json': {
|
|
86216
|
-
schema: {
|
|
86217
|
-
properties: {
|
|
86218
|
-
magic_link: {
|
|
86219
|
-
$ref: string;
|
|
86220
|
-
};
|
|
86221
|
-
ok: {
|
|
86222
|
-
type: string;
|
|
86223
|
-
};
|
|
86224
|
-
};
|
|
86225
|
-
required: string[];
|
|
86226
|
-
type: string;
|
|
86227
|
-
};
|
|
86228
|
-
};
|
|
86229
|
-
};
|
|
86230
|
-
description: string;
|
|
86231
|
-
};
|
|
86232
|
-
400: {
|
|
86233
|
-
description: string;
|
|
86234
|
-
};
|
|
86235
|
-
401: {
|
|
86236
|
-
description: string;
|
|
86237
|
-
};
|
|
86238
|
-
};
|
|
86239
|
-
security: ({
|
|
86240
|
-
pat_with_workspace: never[];
|
|
86241
|
-
console_session_with_workspace?: never;
|
|
86242
|
-
api_key?: never;
|
|
86243
|
-
} | {
|
|
86244
|
-
console_session_with_workspace: never[];
|
|
86245
|
-
pat_with_workspace?: never;
|
|
86246
|
-
api_key?: never;
|
|
86247
|
-
} | {
|
|
86248
|
-
api_key: never[];
|
|
86249
|
-
pat_with_workspace?: never;
|
|
86250
|
-
console_session_with_workspace?: never;
|
|
86251
|
-
})[];
|
|
86252
|
-
summary: string;
|
|
86253
|
-
tags: never[];
|
|
86254
|
-
'x-fern-sdk-group-name': string[];
|
|
86255
|
-
'x-fern-sdk-method-name': string;
|
|
86256
|
-
'x-fern-sdk-return-value': string;
|
|
86257
|
-
'x-response-key': string;
|
|
86258
|
-
'x-title': string;
|
|
86259
|
-
'x-undocumented': string;
|
|
86260
|
-
};
|
|
86261
|
-
post: {
|
|
86262
|
-
description: string;
|
|
86263
|
-
operationId: string;
|
|
86264
|
-
requestBody: {
|
|
86265
|
-
content: {
|
|
86266
|
-
'application/json': {
|
|
86267
|
-
schema: {
|
|
86268
|
-
properties: {
|
|
86269
|
-
building_block_type: {
|
|
86270
|
-
description: string;
|
|
86271
|
-
enum: string[];
|
|
86272
|
-
type: string;
|
|
86273
|
-
};
|
|
86274
|
-
customer_key: {
|
|
86275
|
-
description: string;
|
|
86276
|
-
type: string;
|
|
86277
|
-
};
|
|
86278
|
-
spaces: {
|
|
86279
|
-
description: string;
|
|
86280
|
-
items: {
|
|
86281
|
-
properties: {
|
|
86282
|
-
name: {
|
|
86283
|
-
description: string;
|
|
86284
|
-
type: string;
|
|
86285
|
-
};
|
|
86286
|
-
space_key: {
|
|
86287
|
-
description: string;
|
|
86288
|
-
type: string;
|
|
86289
|
-
};
|
|
86290
|
-
};
|
|
86291
|
-
required: string[];
|
|
86292
|
-
type: string;
|
|
86293
|
-
};
|
|
86294
|
-
type: string;
|
|
86295
|
-
};
|
|
86296
|
-
};
|
|
86297
|
-
required: string[];
|
|
86298
|
-
type: string;
|
|
86299
|
-
};
|
|
86300
|
-
};
|
|
86301
|
-
};
|
|
86302
|
-
};
|
|
86303
|
-
responses: {
|
|
86304
|
-
200: {
|
|
86305
|
-
content: {
|
|
86306
|
-
'application/json': {
|
|
86307
|
-
schema: {
|
|
86308
|
-
properties: {
|
|
86309
|
-
magic_link: {
|
|
86310
|
-
$ref: string;
|
|
86311
|
-
};
|
|
86312
|
-
ok: {
|
|
86313
|
-
type: string;
|
|
86314
|
-
};
|
|
86315
|
-
};
|
|
86316
|
-
required: string[];
|
|
86317
|
-
type: string;
|
|
86318
|
-
};
|
|
86319
|
-
};
|
|
86320
|
-
};
|
|
86321
|
-
description: string;
|
|
86322
|
-
};
|
|
86323
|
-
400: {
|
|
86324
|
-
description: string;
|
|
86325
|
-
};
|
|
86326
|
-
401: {
|
|
86327
|
-
description: string;
|
|
86328
|
-
};
|
|
86329
|
-
};
|
|
86330
|
-
security: ({
|
|
86331
|
-
pat_with_workspace: never[];
|
|
86332
|
-
console_session_with_workspace?: never;
|
|
86333
|
-
api_key?: never;
|
|
86334
|
-
} | {
|
|
86335
|
-
console_session_with_workspace: never[];
|
|
86336
|
-
pat_with_workspace?: never;
|
|
86337
|
-
api_key?: never;
|
|
86338
|
-
} | {
|
|
86339
|
-
api_key: never[];
|
|
86340
|
-
pat_with_workspace?: never;
|
|
86341
|
-
console_session_with_workspace?: never;
|
|
86342
|
-
})[];
|
|
86343
|
-
summary: string;
|
|
86344
|
-
tags: never[];
|
|
86345
|
-
'x-fern-sdk-group-name': string[];
|
|
86346
|
-
'x-fern-sdk-method-name': string;
|
|
86347
|
-
'x-fern-sdk-return-value': string;
|
|
86348
|
-
'x-response-key': string;
|
|
86349
|
-
'x-title': string;
|
|
86350
|
-
'x-undocumented': string;
|
|
86351
|
-
};
|
|
86352
|
-
};
|
|
86353
|
-
'/unstable_partner/building_blocks/manage_devices': {
|
|
86354
|
-
post: {
|
|
86355
|
-
description: string;
|
|
86356
|
-
operationId: string;
|
|
86357
|
-
requestBody: {
|
|
86358
|
-
content: {
|
|
86359
|
-
'application/json': {
|
|
86360
|
-
schema: {
|
|
86361
|
-
properties: {
|
|
86362
|
-
customer_key: {
|
|
86363
|
-
description: string;
|
|
86364
|
-
type: string;
|
|
86365
|
-
};
|
|
86366
|
-
};
|
|
86367
|
-
required: string[];
|
|
86368
|
-
type: string;
|
|
86369
|
-
};
|
|
86370
|
-
};
|
|
86371
|
-
};
|
|
86372
|
-
};
|
|
86373
|
-
responses: {
|
|
86374
|
-
200: {
|
|
86375
|
-
content: {
|
|
86376
|
-
'application/json': {
|
|
86377
|
-
schema: {
|
|
86378
|
-
properties: {
|
|
86379
|
-
magic_link: {
|
|
86380
|
-
$ref: string;
|
|
86381
|
-
};
|
|
85121
|
+
magic_link: {
|
|
85122
|
+
$ref: string;
|
|
85123
|
+
};
|
|
86382
85124
|
ok: {
|
|
86383
85125
|
type: string;
|
|
86384
85126
|
};
|
|
@@ -101786,6 +100528,11 @@ type Routes = {
|
|
|
101786
100528
|
/** Description of the room in the Salto Space access system. */
|
|
101787
100529
|
room_description?: string | undefined;
|
|
101788
100530
|
} | undefined;
|
|
100531
|
+
/** dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
100532
|
+
dormakaba_ambiance_metadata?: {
|
|
100533
|
+
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
100534
|
+
access_point_name: string;
|
|
100535
|
+
} | undefined;
|
|
101789
100536
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
101790
100537
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
101791
100538
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -104892,6 +103639,11 @@ type Routes = {
|
|
|
104892
103639
|
/** Description of the room in the Salto Space access system. */
|
|
104893
103640
|
room_description?: string | undefined;
|
|
104894
103641
|
} | undefined;
|
|
103642
|
+
/** dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
103643
|
+
dormakaba_ambiance_metadata?: {
|
|
103644
|
+
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
103645
|
+
access_point_name: string;
|
|
103646
|
+
} | undefined;
|
|
104895
103647
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
104896
103648
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
104897
103649
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -107496,6 +106248,11 @@ type Routes = {
|
|
|
107496
106248
|
/** Description of the room in the Salto Space access system. */
|
|
107497
106249
|
room_description?: string | undefined;
|
|
107498
106250
|
} | undefined;
|
|
106251
|
+
/** dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
106252
|
+
dormakaba_ambiance_metadata?: {
|
|
106253
|
+
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
106254
|
+
access_point_name: string;
|
|
106255
|
+
} | undefined;
|
|
107499
106256
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
107500
106257
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
107501
106258
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -108828,6 +107585,11 @@ type Routes = {
|
|
|
108828
107585
|
/** Description of the room in the Salto Space access system. */
|
|
108829
107586
|
room_description?: string | undefined;
|
|
108830
107587
|
} | undefined;
|
|
107588
|
+
/** dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
107589
|
+
dormakaba_ambiance_metadata?: {
|
|
107590
|
+
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
107591
|
+
access_point_name: string;
|
|
107592
|
+
} | undefined;
|
|
108831
107593
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
108832
107594
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
108833
107595
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -112250,155 +111012,165 @@ type Routes = {
|
|
|
112250
111012
|
/** Description of the room in the Salto Space access system. */
|
|
112251
111013
|
room_description?: string | undefined;
|
|
112252
111014
|
} | undefined;
|
|
112253
|
-
/**
|
|
112254
|
-
|
|
112255
|
-
|
|
112256
|
-
|
|
112257
|
-
|
|
112258
|
-
|
|
112259
|
-
|
|
112260
|
-
|
|
112261
|
-
|
|
112262
|
-
|
|
112263
|
-
|
|
112264
|
-
|
|
112265
|
-
|
|
112266
|
-
|
|
112267
|
-
|
|
112268
|
-
|
|
112269
|
-
|
|
112270
|
-
|
|
112271
|
-
|
|
112272
|
-
|
|
112273
|
-
|
|
112274
|
-
|
|
112275
|
-
|
|
112276
|
-
|
|
112277
|
-
|
|
112278
|
-
|
|
112279
|
-
|
|
112280
|
-
|
|
112281
|
-
|
|
112282
|
-
|
|
112283
|
-
|
|
112284
|
-
|
|
112285
|
-
|
|
112286
|
-
|
|
112287
|
-
|
|
112288
|
-
|
|
112289
|
-
|
|
112290
|
-
|
|
112291
|
-
/** ID of the
|
|
112292
|
-
|
|
112293
|
-
/**
|
|
112294
|
-
|
|
112295
|
-
|
|
112296
|
-
|
|
112297
|
-
|
|
112298
|
-
|
|
112299
|
-
|
|
112300
|
-
|
|
112301
|
-
|
|
112302
|
-
|
|
112303
|
-
|
|
112304
|
-
|
|
112305
|
-
|
|
112306
|
-
|
|
112307
|
-
|
|
112308
|
-
|
|
112309
|
-
|
|
112310
|
-
|
|
112311
|
-
|
|
112312
|
-
|
|
112313
|
-
|
|
112314
|
-
|
|
112315
|
-
|
|
112316
|
-
|
|
112317
|
-
|
|
112318
|
-
|
|
112319
|
-
|
|
112320
|
-
|
|
112321
|
-
|
|
112322
|
-
|
|
112323
|
-
|
|
112324
|
-
|
|
112325
|
-
|
|
112326
|
-
/**
|
|
112327
|
-
|
|
112328
|
-
|
|
112329
|
-
|
|
112330
|
-
|
|
112331
|
-
|
|
112332
|
-
|
|
112333
|
-
|
|
112334
|
-
|
|
112335
|
-
|
|
112336
|
-
|
|
112337
|
-
/**
|
|
112338
|
-
|
|
112339
|
-
|
|
112340
|
-
|
|
112341
|
-
|
|
112342
|
-
|
|
112343
|
-
|
|
112344
|
-
|
|
112345
|
-
|
|
112346
|
-
|
|
112347
|
-
|
|
112348
|
-
|
|
112349
|
-
|
|
112350
|
-
|
|
112351
|
-
|
|
112352
|
-
|
|
112353
|
-
|
|
112354
|
-
|
|
112355
|
-
|
|
112356
|
-
|
|
112357
|
-
|
|
112358
|
-
|
|
112359
|
-
|
|
112360
|
-
|
|
112361
|
-
|
|
112362
|
-
|
|
112363
|
-
|
|
112364
|
-
|
|
112365
|
-
|
|
112366
|
-
|
|
112367
|
-
|
|
112368
|
-
|
|
112369
|
-
|
|
112370
|
-
/**
|
|
111015
|
+
/** dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
111016
|
+
dormakaba_ambiance_metadata?: {
|
|
111017
|
+
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
111018
|
+
access_point_name: string;
|
|
111019
|
+
} | undefined;
|
|
111020
|
+
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
111021
|
+
can_unlock_with_mobile_key?: boolean | undefined;
|
|
111022
|
+
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
111023
|
+
can_unlock_with_card?: boolean | undefined;
|
|
111024
|
+
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
111025
|
+
can_unlock_with_code?: boolean | undefined;
|
|
111026
|
+
};
|
|
111027
|
+
};
|
|
111028
|
+
};
|
|
111029
|
+
'/acs/entrances/grant_access': {
|
|
111030
|
+
route: '/acs/entrances/grant_access';
|
|
111031
|
+
method: 'POST';
|
|
111032
|
+
queryParams: {};
|
|
111033
|
+
jsonBody: {
|
|
111034
|
+
/** ID of the entrance to which you want to grant an access system user access. */
|
|
111035
|
+
acs_entrance_id: string;
|
|
111036
|
+
/** ID of the user identity to whom you want to grant access to an entrance. You can only provide one of acs_user_id or user_identity_id. If the ACS system contains an ACS user with the same `email_address` or `phone_number` as the user identity that you specify, they are linked, and the access group membership belongs to the ACS user. If the ACS system does not have a corresponding ACS user, one is created. */
|
|
111037
|
+
user_identity_id?: string | undefined;
|
|
111038
|
+
/** ID of the access system user to whom you want to grant access to an entrance. You can only provide one of acs_user_id or user_identity_id. */
|
|
111039
|
+
acs_user_id?: string | undefined;
|
|
111040
|
+
};
|
|
111041
|
+
commonParams: {};
|
|
111042
|
+
formData: {};
|
|
111043
|
+
jsonResponse: {};
|
|
111044
|
+
};
|
|
111045
|
+
'/acs/entrances/list': {
|
|
111046
|
+
route: '/acs/entrances/list';
|
|
111047
|
+
method: 'GET' | 'POST';
|
|
111048
|
+
queryParams: {};
|
|
111049
|
+
jsonBody: {};
|
|
111050
|
+
commonParams: {
|
|
111051
|
+
/** ID of the access system for which you want to retrieve all entrances. */
|
|
111052
|
+
acs_system_id?: string | undefined;
|
|
111053
|
+
/** ID of the credential for which you want to retrieve all entrances. */
|
|
111054
|
+
acs_credential_id?: string | undefined;
|
|
111055
|
+
/**
|
|
111056
|
+
* @deprecated Use `space_id`.*/
|
|
111057
|
+
location_id?: (string | null) | undefined;
|
|
111058
|
+
/** ID of the space for which you want to list entrances. */
|
|
111059
|
+
space_id?: string | undefined;
|
|
111060
|
+
/** ID of the access grant for which you want to retrieve all entrances. */
|
|
111061
|
+
access_grant_id?: string | undefined;
|
|
111062
|
+
/** ID of the access method for which you want to retrieve all entrances. */
|
|
111063
|
+
access_method_id?: string | undefined;
|
|
111064
|
+
/** ID of the connected account for which you want to retrieve all entrances. */
|
|
111065
|
+
connected_account_id?: string | undefined;
|
|
111066
|
+
/** IDs of the entrances for which you want to retrieve all entrances. */
|
|
111067
|
+
acs_entrance_ids?: string[] | undefined;
|
|
111068
|
+
/** String for which to search. Filters returned entrances to include all records that satisfy a partial match using `display_name`. */
|
|
111069
|
+
search?: string | undefined;
|
|
111070
|
+
};
|
|
111071
|
+
formData: {};
|
|
111072
|
+
jsonResponse: {
|
|
111073
|
+
acs_entrances: {
|
|
111074
|
+
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
111075
|
+
acs_system_id: string;
|
|
111076
|
+
/** ID of the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
111077
|
+
acs_entrance_id: string;
|
|
111078
|
+
/** Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created. */
|
|
111079
|
+
created_at: string;
|
|
111080
|
+
/** Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
111081
|
+
display_name: string;
|
|
111082
|
+
/** ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
111083
|
+
connected_account_id: string;
|
|
111084
|
+
/** Errors associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
111085
|
+
errors: {
|
|
111086
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
111087
|
+
error_code: string;
|
|
111088
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
111089
|
+
message: string;
|
|
111090
|
+
}[];
|
|
111091
|
+
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
111092
|
+
latch_metadata?: {
|
|
111093
|
+
/** Accessibility type in the Latch access system. */
|
|
111094
|
+
accessibility_type: string;
|
|
111095
|
+
/** Name of the door in the Latch access system. */
|
|
111096
|
+
door_name: string;
|
|
111097
|
+
/** Type of the door in the Latch access system. */
|
|
111098
|
+
door_type: string;
|
|
111099
|
+
/** Indicates whether the entrance is connected. */
|
|
111100
|
+
is_connected: boolean;
|
|
111101
|
+
} | undefined;
|
|
111102
|
+
/** Visionline-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
111103
|
+
visionline_metadata?: {
|
|
111104
|
+
/** Name of the door in the Visionline access system. */
|
|
111105
|
+
door_name: string;
|
|
111106
|
+
/** Category of the door in the Visionline access system. */
|
|
111107
|
+
door_category: 'entrance' | 'guest' | 'elevator reader' | 'common' | 'common (PMS)';
|
|
111108
|
+
/** Profile for the door in the Visionline access system. */
|
|
111109
|
+
profiles?: {
|
|
111110
|
+
/** Door profile ID in the Visionline access system. */
|
|
111111
|
+
visionline_door_profile_id: string;
|
|
111112
|
+
/** Door profile type in the Visionline access system. */
|
|
111113
|
+
visionline_door_profile_type: 'BLE' | 'commonDoor' | 'touch';
|
|
111114
|
+
}[] | undefined;
|
|
111115
|
+
} | undefined;
|
|
111116
|
+
/** Salto KS-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
111117
|
+
salto_ks_metadata?: {
|
|
111118
|
+
/** Name of the door in the Salto KS access system. */
|
|
111119
|
+
door_name: string;
|
|
111120
|
+
/** Locked state of the door in the Salto KS access system. */
|
|
111121
|
+
locked_state: string;
|
|
111122
|
+
/** Type of the lock in the Salto KS access system. */
|
|
111123
|
+
lock_type: string;
|
|
111124
|
+
/** Indicates whether the door access device is online. */
|
|
111125
|
+
online?: boolean | undefined;
|
|
111126
|
+
/** Battery level of the door access device. */
|
|
111127
|
+
battery_level: string;
|
|
111128
|
+
/** Indicates whether the door is left open. */
|
|
111129
|
+
left_open_alarm?: boolean | undefined;
|
|
111130
|
+
/** Indicates whether an intrusion alarm is active on the door. */
|
|
111131
|
+
intrusion_alarm?: boolean | undefined;
|
|
111132
|
+
/** Indicates whether privacy mode is enabled for the lock. */
|
|
111133
|
+
privacy_mode?: boolean | undefined;
|
|
111134
|
+
} | undefined;
|
|
111135
|
+
/** dormakaba Community-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
111136
|
+
dormakaba_community_metadata?: {
|
|
111137
|
+
/** Name of the access point in the dormakaba Community access system. */
|
|
111138
|
+
access_point_name: string;
|
|
111139
|
+
} | undefined;
|
|
111140
|
+
/** ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
111141
|
+
assa_abloy_vostio_metadata?: {
|
|
111142
|
+
/** Type of the door in the Vostio access system. */
|
|
111143
|
+
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
111144
|
+
/** Name of the door in the Vostio access system. */
|
|
111145
|
+
door_name: string;
|
|
111146
|
+
/** Number of the door in the Vostio access system. */
|
|
111147
|
+
door_number?: number | undefined;
|
|
111148
|
+
/** Indicates whether keys are allowed to set the door in stand open mode in the Vostio access system. */
|
|
111149
|
+
stand_open?: boolean | undefined;
|
|
111150
|
+
/** PMS ID of the door in the Vostio access system. */
|
|
111151
|
+
pms_id?: string | undefined;
|
|
111152
|
+
} | undefined;
|
|
111153
|
+
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
111154
|
+
salto_space_metadata?: {
|
|
111155
|
+
/**
|
|
111156
|
+
* @deprecated use door_id.*/
|
|
111157
|
+
ext_door_id?: string | undefined;
|
|
111158
|
+
/** Door ID in the Salto Space access system. */
|
|
111159
|
+
door_id?: string | undefined;
|
|
111160
|
+
/** Name of the door in the Salto Space access system. */
|
|
111161
|
+
door_name?: string | undefined;
|
|
111162
|
+
/** Description of the door in the Salto Space access system. */
|
|
111163
|
+
door_description?: string | undefined;
|
|
111164
|
+
/** Name of the room in the Salto Space access system. */
|
|
111165
|
+
room_name?: string | undefined;
|
|
111166
|
+
/** Description of the room in the Salto Space access system. */
|
|
111167
|
+
room_description?: string | undefined;
|
|
111168
|
+
} | undefined;
|
|
111169
|
+
/** dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
111170
|
+
dormakaba_ambiance_metadata?: {
|
|
111171
|
+
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
112371
111172
|
access_point_name: string;
|
|
112372
111173
|
} | undefined;
|
|
112373
|
-
/** ASSA ABLOY Vostio-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
112374
|
-
assa_abloy_vostio_metadata?: {
|
|
112375
|
-
/** Type of the door in the Vostio access system. */
|
|
112376
|
-
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
112377
|
-
/** Name of the door in the Vostio access system. */
|
|
112378
|
-
door_name: string;
|
|
112379
|
-
/** Number of the door in the Vostio access system. */
|
|
112380
|
-
door_number?: number | undefined;
|
|
112381
|
-
/** Indicates whether keys are allowed to set the door in stand open mode in the Vostio access system. */
|
|
112382
|
-
stand_open?: boolean | undefined;
|
|
112383
|
-
/** PMS ID of the door in the Vostio access system. */
|
|
112384
|
-
pms_id?: string | undefined;
|
|
112385
|
-
} | undefined;
|
|
112386
|
-
/** Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
112387
|
-
salto_space_metadata?: {
|
|
112388
|
-
/**
|
|
112389
|
-
* @deprecated use door_id.*/
|
|
112390
|
-
ext_door_id?: string | undefined;
|
|
112391
|
-
/** Door ID in the Salto Space access system. */
|
|
112392
|
-
door_id?: string | undefined;
|
|
112393
|
-
/** Name of the door in the Salto Space access system. */
|
|
112394
|
-
door_name?: string | undefined;
|
|
112395
|
-
/** Description of the door in the Salto Space access system. */
|
|
112396
|
-
door_description?: string | undefined;
|
|
112397
|
-
/** Name of the room in the Salto Space access system. */
|
|
112398
|
-
room_name?: string | undefined;
|
|
112399
|
-
/** Description of the room in the Salto Space access system. */
|
|
112400
|
-
room_description?: string | undefined;
|
|
112401
|
-
} | undefined;
|
|
112402
111174
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
112403
111175
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
112404
111176
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -113813,6 +112585,11 @@ type Routes = {
|
|
|
113813
112585
|
/** Description of the room in the Salto Space access system. */
|
|
113814
112586
|
room_description?: string | undefined;
|
|
113815
112587
|
} | undefined;
|
|
112588
|
+
/** dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
112589
|
+
dormakaba_ambiance_metadata?: {
|
|
112590
|
+
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
112591
|
+
access_point_name: string;
|
|
112592
|
+
} | undefined;
|
|
113816
112593
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
113817
112594
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
113818
112595
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -145076,6 +143853,11 @@ type Routes = {
|
|
|
145076
143853
|
/** Description of the room in the Salto Space access system. */
|
|
145077
143854
|
room_description?: string | undefined;
|
|
145078
143855
|
} | undefined;
|
|
143856
|
+
/** dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
143857
|
+
dormakaba_ambiance_metadata?: {
|
|
143858
|
+
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
143859
|
+
access_point_name: string;
|
|
143860
|
+
} | undefined;
|
|
145079
143861
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
145080
143862
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
145081
143863
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -146612,6 +145394,11 @@ type Routes = {
|
|
|
146612
145394
|
/** Description of the room in the Salto Space access system. */
|
|
146613
145395
|
room_description?: string | undefined;
|
|
146614
145396
|
} | undefined;
|
|
145397
|
+
/** dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
145398
|
+
dormakaba_ambiance_metadata?: {
|
|
145399
|
+
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
145400
|
+
access_point_name: string;
|
|
145401
|
+
} | undefined;
|
|
146615
145402
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
146616
145403
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
146617
145404
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -162493,222 +161280,6 @@ type Routes = {
|
|
|
162493
161280
|
};
|
|
162494
161281
|
};
|
|
162495
161282
|
};
|
|
162496
|
-
'/unstable_locations/add_acs_entrances': {
|
|
162497
|
-
route: '/unstable_locations/add_acs_entrances';
|
|
162498
|
-
method: 'POST' | 'PUT';
|
|
162499
|
-
queryParams: {};
|
|
162500
|
-
jsonBody: {
|
|
162501
|
-
/** ID of the location to which you want to add entrances. */
|
|
162502
|
-
location_id: string;
|
|
162503
|
-
/** IDs of the entrances that you want to add to the location. */
|
|
162504
|
-
acs_entrance_ids: string[];
|
|
162505
|
-
};
|
|
162506
|
-
commonParams: {};
|
|
162507
|
-
formData: {};
|
|
162508
|
-
jsonResponse: {};
|
|
162509
|
-
};
|
|
162510
|
-
'/unstable_locations/add_devices': {
|
|
162511
|
-
route: '/unstable_locations/add_devices';
|
|
162512
|
-
method: 'POST' | 'PUT';
|
|
162513
|
-
queryParams: {};
|
|
162514
|
-
jsonBody: {
|
|
162515
|
-
/** ID of the location to which you want to add devices. */
|
|
162516
|
-
location_id: string;
|
|
162517
|
-
/** IDs of the devices that you want to add to the location. */
|
|
162518
|
-
device_ids: string[];
|
|
162519
|
-
};
|
|
162520
|
-
commonParams: {};
|
|
162521
|
-
formData: {};
|
|
162522
|
-
jsonResponse: {};
|
|
162523
|
-
};
|
|
162524
|
-
'/unstable_locations/create': {
|
|
162525
|
-
route: '/unstable_locations/create';
|
|
162526
|
-
method: 'POST';
|
|
162527
|
-
queryParams: {};
|
|
162528
|
-
jsonBody: {
|
|
162529
|
-
/** Name of the new location. */
|
|
162530
|
-
name: string;
|
|
162531
|
-
/** Geolocation of the new location. */
|
|
162532
|
-
geolocation?: {
|
|
162533
|
-
latitude: number;
|
|
162534
|
-
longitude: number;
|
|
162535
|
-
} | undefined;
|
|
162536
|
-
/** Time zone of the new location. */
|
|
162537
|
-
time_zone?: string | undefined;
|
|
162538
|
-
/** IDs of the devices that you want to add to the new location. */
|
|
162539
|
-
device_ids?: string[] | undefined;
|
|
162540
|
-
/** IDs of the entrances that you want to add to the new location. */
|
|
162541
|
-
acs_entrance_ids?: string[] | undefined;
|
|
162542
|
-
};
|
|
162543
|
-
commonParams: {};
|
|
162544
|
-
formData: {};
|
|
162545
|
-
jsonResponse: {
|
|
162546
|
-
/** */
|
|
162547
|
-
location: {
|
|
162548
|
-
/** Unique identifier for the location. */
|
|
162549
|
-
location_id: string;
|
|
162550
|
-
/** Unique identifier for the Seam workspace associated with the location. */
|
|
162551
|
-
workspace_id: string;
|
|
162552
|
-
/** Name of the location. */
|
|
162553
|
-
name: string;
|
|
162554
|
-
/** Display name of the location. */
|
|
162555
|
-
display_name: string;
|
|
162556
|
-
/** Geographical location of the location. */
|
|
162557
|
-
geolocation?: {
|
|
162558
|
-
latitude: number;
|
|
162559
|
-
longitude: number;
|
|
162560
|
-
} | undefined;
|
|
162561
|
-
/** Time zone of the location. */
|
|
162562
|
-
time_zone?: string | undefined;
|
|
162563
|
-
/** Date and time at which the location object was created. */
|
|
162564
|
-
created_at: string;
|
|
162565
|
-
};
|
|
162566
|
-
};
|
|
162567
|
-
};
|
|
162568
|
-
'/unstable_locations/delete': {
|
|
162569
|
-
route: '/unstable_locations/delete';
|
|
162570
|
-
method: 'DELETE' | 'POST';
|
|
162571
|
-
queryParams: {};
|
|
162572
|
-
jsonBody: {
|
|
162573
|
-
/** ID of the location that you want to delete. */
|
|
162574
|
-
location_id: string;
|
|
162575
|
-
};
|
|
162576
|
-
commonParams: {};
|
|
162577
|
-
formData: {};
|
|
162578
|
-
jsonResponse: {};
|
|
162579
|
-
};
|
|
162580
|
-
'/unstable_locations/get': {
|
|
162581
|
-
route: '/unstable_locations/get';
|
|
162582
|
-
method: 'GET' | 'POST';
|
|
162583
|
-
queryParams: {};
|
|
162584
|
-
jsonBody: {};
|
|
162585
|
-
commonParams: {
|
|
162586
|
-
/** ID of the location that you want to get. */
|
|
162587
|
-
location_id: string;
|
|
162588
|
-
};
|
|
162589
|
-
formData: {};
|
|
162590
|
-
jsonResponse: {
|
|
162591
|
-
/** */
|
|
162592
|
-
location: {
|
|
162593
|
-
/** Unique identifier for the location. */
|
|
162594
|
-
location_id: string;
|
|
162595
|
-
/** Unique identifier for the Seam workspace associated with the location. */
|
|
162596
|
-
workspace_id: string;
|
|
162597
|
-
/** Name of the location. */
|
|
162598
|
-
name: string;
|
|
162599
|
-
/** Display name of the location. */
|
|
162600
|
-
display_name: string;
|
|
162601
|
-
/** Geographical location of the location. */
|
|
162602
|
-
geolocation?: {
|
|
162603
|
-
latitude: number;
|
|
162604
|
-
longitude: number;
|
|
162605
|
-
} | undefined;
|
|
162606
|
-
/** Time zone of the location. */
|
|
162607
|
-
time_zone?: string | undefined;
|
|
162608
|
-
/** Date and time at which the location object was created. */
|
|
162609
|
-
created_at: string;
|
|
162610
|
-
};
|
|
162611
|
-
};
|
|
162612
|
-
};
|
|
162613
|
-
'/unstable_locations/list': {
|
|
162614
|
-
route: '/unstable_locations/list';
|
|
162615
|
-
method: 'GET' | 'POST';
|
|
162616
|
-
queryParams: {};
|
|
162617
|
-
jsonBody: {};
|
|
162618
|
-
commonParams: {};
|
|
162619
|
-
formData: {};
|
|
162620
|
-
jsonResponse: {
|
|
162621
|
-
locations: {
|
|
162622
|
-
/** Unique identifier for the location. */
|
|
162623
|
-
location_id: string;
|
|
162624
|
-
/** Unique identifier for the Seam workspace associated with the location. */
|
|
162625
|
-
workspace_id: string;
|
|
162626
|
-
/** Name of the location. */
|
|
162627
|
-
name: string;
|
|
162628
|
-
/** Display name of the location. */
|
|
162629
|
-
display_name: string;
|
|
162630
|
-
/** Geographical location of the location. */
|
|
162631
|
-
geolocation?: {
|
|
162632
|
-
latitude: number;
|
|
162633
|
-
longitude: number;
|
|
162634
|
-
} | undefined;
|
|
162635
|
-
/** Time zone of the location. */
|
|
162636
|
-
time_zone?: string | undefined;
|
|
162637
|
-
/** Date and time at which the location object was created. */
|
|
162638
|
-
created_at: string;
|
|
162639
|
-
}[];
|
|
162640
|
-
};
|
|
162641
|
-
};
|
|
162642
|
-
'/unstable_locations/remove_acs_entrances': {
|
|
162643
|
-
route: '/unstable_locations/remove_acs_entrances';
|
|
162644
|
-
method: 'POST' | 'DELETE';
|
|
162645
|
-
queryParams: {};
|
|
162646
|
-
jsonBody: {};
|
|
162647
|
-
commonParams: {
|
|
162648
|
-
/** ID of the location from which you want to remove entrances. */
|
|
162649
|
-
location_id: string;
|
|
162650
|
-
/** IDs of the entrances that you want to remove from the location. */
|
|
162651
|
-
acs_entrance_ids: string[];
|
|
162652
|
-
};
|
|
162653
|
-
formData: {};
|
|
162654
|
-
jsonResponse: {};
|
|
162655
|
-
};
|
|
162656
|
-
'/unstable_locations/remove_devices': {
|
|
162657
|
-
route: '/unstable_locations/remove_devices';
|
|
162658
|
-
method: 'POST' | 'DELETE';
|
|
162659
|
-
queryParams: {};
|
|
162660
|
-
jsonBody: {};
|
|
162661
|
-
commonParams: {
|
|
162662
|
-
/** ID of the location from which you want to remove devices. */
|
|
162663
|
-
location_id: string;
|
|
162664
|
-
/** IDs of the devices that you want to remove from the location. */
|
|
162665
|
-
device_ids: string[];
|
|
162666
|
-
};
|
|
162667
|
-
formData: {};
|
|
162668
|
-
jsonResponse: {};
|
|
162669
|
-
};
|
|
162670
|
-
'/unstable_locations/update': {
|
|
162671
|
-
route: '/unstable_locations/update';
|
|
162672
|
-
method: 'POST' | 'PATCH';
|
|
162673
|
-
queryParams: {};
|
|
162674
|
-
jsonBody: {
|
|
162675
|
-
/** ID of the location that you want to update. */
|
|
162676
|
-
location_id: string;
|
|
162677
|
-
/** Name of the location. */
|
|
162678
|
-
name?: string | undefined;
|
|
162679
|
-
/** Geolocation of the location. */
|
|
162680
|
-
geolocation?: {
|
|
162681
|
-
latitude: number;
|
|
162682
|
-
longitude: number;
|
|
162683
|
-
} | undefined;
|
|
162684
|
-
/** Time zone of the the location. */
|
|
162685
|
-
time_zone?: string | undefined;
|
|
162686
|
-
};
|
|
162687
|
-
commonParams: {};
|
|
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
161283
|
'/unstable_partner/building_blocks/connect_accounts': {
|
|
162713
161284
|
route: '/unstable_partner/building_blocks/connect_accounts';
|
|
162714
161285
|
method: 'POST';
|
|
@@ -167609,6 +166180,11 @@ type Routes = {
|
|
|
167609
166180
|
/** Description of the room in the Salto Space access system. */
|
|
167610
166181
|
room_description?: string | undefined;
|
|
167611
166182
|
} | undefined;
|
|
166183
|
+
/** dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
166184
|
+
dormakaba_ambiance_metadata?: {
|
|
166185
|
+
/** Name of the access point in the dormakaba Ambiance access system. */
|
|
166186
|
+
access_point_name: string;
|
|
166187
|
+
} | undefined;
|
|
167612
166188
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
167613
166189
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
167614
166190
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|