@seamapi/types 1.411.0 → 1.412.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 +240 -754
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +408 -694
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +26 -0
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +26 -0
- package/lib/seam/connect/models/devices/device.d.ts +87 -0
- package/lib/seam/connect/models/devices/device.js +9 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +26 -0
- package/lib/seam/connect/openapi.d.ts +144 -694
- package/lib/seam/connect/openapi.js +233 -752
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +144 -0
- package/package.json +2 -2
- package/src/lib/seam/connect/models/devices/device.ts +10 -0
- package/src/lib/seam/connect/openapi.ts +252 -836
- package/src/lib/seam/connect/route-types.ts +168 -0
package/dist/connect.d.cts
CHANGED
|
@@ -1310,6 +1310,22 @@ declare const access_code: z.ZodObject<{
|
|
|
1310
1310
|
created_at: string;
|
|
1311
1311
|
error_code: "subscription_required";
|
|
1312
1312
|
is_device_error: true;
|
|
1313
|
+
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
1314
|
+
message: z.ZodString;
|
|
1315
|
+
is_device_error: z.ZodLiteral<true>;
|
|
1316
|
+
created_at: z.ZodString;
|
|
1317
|
+
}, {
|
|
1318
|
+
error_code: z.ZodLiteral<"lockly_missing_wifi_bridge">;
|
|
1319
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1320
|
+
message: string;
|
|
1321
|
+
created_at: string;
|
|
1322
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
1323
|
+
is_device_error: true;
|
|
1324
|
+
}, {
|
|
1325
|
+
message: string;
|
|
1326
|
+
created_at: string;
|
|
1327
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
1328
|
+
is_device_error: true;
|
|
1313
1329
|
}>)[]]>, "many">;
|
|
1314
1330
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
1315
1331
|
message: z.ZodString;
|
|
@@ -1584,6 +1600,11 @@ declare const access_code: z.ZodObject<{
|
|
|
1584
1600
|
created_at: string;
|
|
1585
1601
|
error_code: "subscription_required";
|
|
1586
1602
|
is_device_error: true;
|
|
1603
|
+
} | {
|
|
1604
|
+
message: string;
|
|
1605
|
+
created_at: string;
|
|
1606
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
1607
|
+
is_device_error: true;
|
|
1587
1608
|
} | {
|
|
1588
1609
|
message: string;
|
|
1589
1610
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -1878,6 +1899,11 @@ declare const access_code: z.ZodObject<{
|
|
|
1878
1899
|
created_at: string;
|
|
1879
1900
|
error_code: "subscription_required";
|
|
1880
1901
|
is_device_error: true;
|
|
1902
|
+
} | {
|
|
1903
|
+
message: string;
|
|
1904
|
+
created_at: string;
|
|
1905
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
1906
|
+
is_device_error: true;
|
|
1881
1907
|
} | {
|
|
1882
1908
|
message: string;
|
|
1883
1909
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -2819,6 +2845,22 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
2819
2845
|
created_at: string;
|
|
2820
2846
|
error_code: "subscription_required";
|
|
2821
2847
|
is_device_error: true;
|
|
2848
|
+
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
2849
|
+
message: z.ZodString;
|
|
2850
|
+
is_device_error: z.ZodLiteral<true>;
|
|
2851
|
+
created_at: z.ZodString;
|
|
2852
|
+
}, {
|
|
2853
|
+
error_code: z.ZodLiteral<"lockly_missing_wifi_bridge">;
|
|
2854
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2855
|
+
message: string;
|
|
2856
|
+
created_at: string;
|
|
2857
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
2858
|
+
is_device_error: true;
|
|
2859
|
+
}, {
|
|
2860
|
+
message: string;
|
|
2861
|
+
created_at: string;
|
|
2862
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
2863
|
+
is_device_error: true;
|
|
2822
2864
|
}>)[]]>, "many">;
|
|
2823
2865
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
2824
2866
|
message: z.ZodString;
|
|
@@ -3096,6 +3138,11 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
3096
3138
|
created_at: string;
|
|
3097
3139
|
error_code: "subscription_required";
|
|
3098
3140
|
is_device_error: true;
|
|
3141
|
+
} | {
|
|
3142
|
+
message: string;
|
|
3143
|
+
created_at: string;
|
|
3144
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
3145
|
+
is_device_error: true;
|
|
3099
3146
|
} | {
|
|
3100
3147
|
message: string;
|
|
3101
3148
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -3381,6 +3428,11 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
3381
3428
|
created_at: string;
|
|
3382
3429
|
error_code: "subscription_required";
|
|
3383
3430
|
is_device_error: true;
|
|
3431
|
+
} | {
|
|
3432
|
+
message: string;
|
|
3433
|
+
created_at: string;
|
|
3434
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
3435
|
+
is_device_error: true;
|
|
3384
3436
|
} | {
|
|
3385
3437
|
message: string;
|
|
3386
3438
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -11283,6 +11335,22 @@ declare const device_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<z
|
|
|
11283
11335
|
created_at: string;
|
|
11284
11336
|
error_code: "subscription_required";
|
|
11285
11337
|
is_device_error: true;
|
|
11338
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11339
|
+
message: z.ZodString;
|
|
11340
|
+
is_device_error: z.ZodLiteral<true>;
|
|
11341
|
+
created_at: z.ZodString;
|
|
11342
|
+
}, {
|
|
11343
|
+
error_code: z.ZodLiteral<"lockly_missing_wifi_bridge">;
|
|
11344
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11345
|
+
message: string;
|
|
11346
|
+
created_at: string;
|
|
11347
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
11348
|
+
is_device_error: true;
|
|
11349
|
+
}, {
|
|
11350
|
+
message: string;
|
|
11351
|
+
created_at: string;
|
|
11352
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
11353
|
+
is_device_error: true;
|
|
11286
11354
|
}>]>;
|
|
11287
11355
|
type DeviceError = z.infer<typeof device_error>;
|
|
11288
11356
|
declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -13732,6 +13800,22 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13732
13800
|
created_at: string;
|
|
13733
13801
|
error_code: "subscription_required";
|
|
13734
13802
|
is_device_error: true;
|
|
13803
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13804
|
+
message: z.ZodString;
|
|
13805
|
+
is_device_error: z.ZodLiteral<true>;
|
|
13806
|
+
created_at: z.ZodString;
|
|
13807
|
+
}, {
|
|
13808
|
+
error_code: z.ZodLiteral<"lockly_missing_wifi_bridge">;
|
|
13809
|
+
}>, "strip", z.ZodTypeAny, {
|
|
13810
|
+
message: string;
|
|
13811
|
+
created_at: string;
|
|
13812
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
13813
|
+
is_device_error: true;
|
|
13814
|
+
}, {
|
|
13815
|
+
message: string;
|
|
13816
|
+
created_at: string;
|
|
13817
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
13818
|
+
is_device_error: true;
|
|
13735
13819
|
}>, ...(z.ZodObject<z.objectUtil.extendShape<{
|
|
13736
13820
|
created_at: z.ZodString;
|
|
13737
13821
|
message: z.ZodString;
|
|
@@ -14199,6 +14283,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
14199
14283
|
created_at: string;
|
|
14200
14284
|
error_code: "subscription_required";
|
|
14201
14285
|
is_device_error: true;
|
|
14286
|
+
} | {
|
|
14287
|
+
message: string;
|
|
14288
|
+
created_at: string;
|
|
14289
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
14290
|
+
is_device_error: true;
|
|
14202
14291
|
})[];
|
|
14203
14292
|
connected_account_id: string;
|
|
14204
14293
|
warnings: ({
|
|
@@ -14803,6 +14892,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
14803
14892
|
created_at: string;
|
|
14804
14893
|
error_code: "subscription_required";
|
|
14805
14894
|
is_device_error: true;
|
|
14895
|
+
} | {
|
|
14896
|
+
message: string;
|
|
14897
|
+
created_at: string;
|
|
14898
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
14899
|
+
is_device_error: true;
|
|
14806
14900
|
})[];
|
|
14807
14901
|
connected_account_id: string;
|
|
14808
14902
|
warnings: ({
|
|
@@ -17633,6 +17727,22 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17633
17727
|
created_at: string;
|
|
17634
17728
|
error_code: "subscription_required";
|
|
17635
17729
|
is_device_error: true;
|
|
17730
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
17731
|
+
message: z.ZodString;
|
|
17732
|
+
is_device_error: z.ZodLiteral<true>;
|
|
17733
|
+
created_at: z.ZodString;
|
|
17734
|
+
}, {
|
|
17735
|
+
error_code: z.ZodLiteral<"lockly_missing_wifi_bridge">;
|
|
17736
|
+
}>, "strip", z.ZodTypeAny, {
|
|
17737
|
+
message: string;
|
|
17738
|
+
created_at: string;
|
|
17739
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
17740
|
+
is_device_error: true;
|
|
17741
|
+
}, {
|
|
17742
|
+
message: string;
|
|
17743
|
+
created_at: string;
|
|
17744
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
17745
|
+
is_device_error: true;
|
|
17636
17746
|
}>, ...(z.ZodObject<z.objectUtil.extendShape<{
|
|
17637
17747
|
created_at: z.ZodString;
|
|
17638
17748
|
message: z.ZodString;
|
|
@@ -18248,6 +18358,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
18248
18358
|
created_at: string;
|
|
18249
18359
|
error_code: "subscription_required";
|
|
18250
18360
|
is_device_error: true;
|
|
18361
|
+
} | {
|
|
18362
|
+
message: string;
|
|
18363
|
+
created_at: string;
|
|
18364
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
18365
|
+
is_device_error: true;
|
|
18251
18366
|
})[];
|
|
18252
18367
|
connected_account_id: string;
|
|
18253
18368
|
warnings: ({
|
|
@@ -18469,6 +18584,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
18469
18584
|
created_at: string;
|
|
18470
18585
|
error_code: "subscription_required";
|
|
18471
18586
|
is_device_error: true;
|
|
18587
|
+
} | {
|
|
18588
|
+
message: string;
|
|
18589
|
+
created_at: string;
|
|
18590
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
18591
|
+
is_device_error: true;
|
|
18472
18592
|
})[];
|
|
18473
18593
|
connected_account_id: string;
|
|
18474
18594
|
warnings: ({
|
|
@@ -21772,6 +21892,140 @@ declare const _default: {
|
|
|
21772
21892
|
type: string;
|
|
21773
21893
|
'x-route-path': string;
|
|
21774
21894
|
};
|
|
21895
|
+
access_grant: {
|
|
21896
|
+
properties: {
|
|
21897
|
+
access_grant_id: {
|
|
21898
|
+
description: string;
|
|
21899
|
+
format: string;
|
|
21900
|
+
type: string;
|
|
21901
|
+
};
|
|
21902
|
+
access_method_ids: {
|
|
21903
|
+
description: string;
|
|
21904
|
+
items: {
|
|
21905
|
+
format: string;
|
|
21906
|
+
type: string;
|
|
21907
|
+
};
|
|
21908
|
+
type: string;
|
|
21909
|
+
};
|
|
21910
|
+
created_at: {
|
|
21911
|
+
description: string;
|
|
21912
|
+
format: string;
|
|
21913
|
+
type: string;
|
|
21914
|
+
};
|
|
21915
|
+
display_name: {
|
|
21916
|
+
description: string;
|
|
21917
|
+
type: string;
|
|
21918
|
+
};
|
|
21919
|
+
location_ids: {
|
|
21920
|
+
deprecated: boolean;
|
|
21921
|
+
items: {
|
|
21922
|
+
format: string;
|
|
21923
|
+
type: string;
|
|
21924
|
+
};
|
|
21925
|
+
type: string;
|
|
21926
|
+
'x-deprecated': string;
|
|
21927
|
+
};
|
|
21928
|
+
requested_access_methods: {
|
|
21929
|
+
description: string;
|
|
21930
|
+
items: {
|
|
21931
|
+
properties: {
|
|
21932
|
+
created_access_method_ids: {
|
|
21933
|
+
description: string;
|
|
21934
|
+
items: {
|
|
21935
|
+
format: string;
|
|
21936
|
+
type: string;
|
|
21937
|
+
};
|
|
21938
|
+
type: string;
|
|
21939
|
+
};
|
|
21940
|
+
created_at: {
|
|
21941
|
+
description: string;
|
|
21942
|
+
format: string;
|
|
21943
|
+
type: string;
|
|
21944
|
+
};
|
|
21945
|
+
display_name: {
|
|
21946
|
+
description: string;
|
|
21947
|
+
type: string;
|
|
21948
|
+
};
|
|
21949
|
+
mode: {
|
|
21950
|
+
description: string;
|
|
21951
|
+
enum: string[];
|
|
21952
|
+
type: string;
|
|
21953
|
+
};
|
|
21954
|
+
};
|
|
21955
|
+
required: string[];
|
|
21956
|
+
type: string;
|
|
21957
|
+
};
|
|
21958
|
+
type: string;
|
|
21959
|
+
};
|
|
21960
|
+
space_ids: {
|
|
21961
|
+
description: string;
|
|
21962
|
+
items: {
|
|
21963
|
+
format: string;
|
|
21964
|
+
type: string;
|
|
21965
|
+
};
|
|
21966
|
+
type: string;
|
|
21967
|
+
};
|
|
21968
|
+
user_identity_id: {
|
|
21969
|
+
description: string;
|
|
21970
|
+
format: string;
|
|
21971
|
+
type: string;
|
|
21972
|
+
};
|
|
21973
|
+
workspace_id: {
|
|
21974
|
+
description: string;
|
|
21975
|
+
format: string;
|
|
21976
|
+
type: string;
|
|
21977
|
+
};
|
|
21978
|
+
};
|
|
21979
|
+
required: string[];
|
|
21980
|
+
type: string;
|
|
21981
|
+
'x-draft': string;
|
|
21982
|
+
'x-route-path': string;
|
|
21983
|
+
};
|
|
21984
|
+
access_method: {
|
|
21985
|
+
properties: {
|
|
21986
|
+
access_method_id: {
|
|
21987
|
+
description: string;
|
|
21988
|
+
format: string;
|
|
21989
|
+
type: string;
|
|
21990
|
+
};
|
|
21991
|
+
created_at: {
|
|
21992
|
+
description: string;
|
|
21993
|
+
format: string;
|
|
21994
|
+
type: string;
|
|
21995
|
+
};
|
|
21996
|
+
display_name: {
|
|
21997
|
+
description: string;
|
|
21998
|
+
type: string;
|
|
21999
|
+
};
|
|
22000
|
+
instant_key_url: {
|
|
22001
|
+
description: string;
|
|
22002
|
+
type: string;
|
|
22003
|
+
};
|
|
22004
|
+
is_card_encoding_required: {
|
|
22005
|
+
description: string;
|
|
22006
|
+
type: string;
|
|
22007
|
+
};
|
|
22008
|
+
issued_at: {
|
|
22009
|
+
description: string;
|
|
22010
|
+
format: string;
|
|
22011
|
+
type: string;
|
|
22012
|
+
};
|
|
22013
|
+
mode: {
|
|
22014
|
+
description: string;
|
|
22015
|
+
enum: string[];
|
|
22016
|
+
type: string;
|
|
22017
|
+
};
|
|
22018
|
+
workspace_id: {
|
|
22019
|
+
description: string;
|
|
22020
|
+
format: string;
|
|
22021
|
+
type: string;
|
|
22022
|
+
};
|
|
22023
|
+
};
|
|
22024
|
+
required: string[];
|
|
22025
|
+
type: string;
|
|
22026
|
+
'x-draft': string;
|
|
22027
|
+
'x-route-path': string;
|
|
22028
|
+
};
|
|
21775
22029
|
acs_access_group: {
|
|
21776
22030
|
description: string;
|
|
21777
22031
|
properties: {
|
|
@@ -35142,93 +35396,7 @@ declare const _default: {
|
|
|
35142
35396
|
schema: {
|
|
35143
35397
|
properties: {
|
|
35144
35398
|
access_grant: {
|
|
35145
|
-
|
|
35146
|
-
access_grant_id: {
|
|
35147
|
-
description: string;
|
|
35148
|
-
format: string;
|
|
35149
|
-
type: string;
|
|
35150
|
-
};
|
|
35151
|
-
access_method_ids: {
|
|
35152
|
-
description: string;
|
|
35153
|
-
items: {
|
|
35154
|
-
format: string;
|
|
35155
|
-
type: string;
|
|
35156
|
-
};
|
|
35157
|
-
type: string;
|
|
35158
|
-
};
|
|
35159
|
-
created_at: {
|
|
35160
|
-
description: string;
|
|
35161
|
-
format: string;
|
|
35162
|
-
type: string;
|
|
35163
|
-
};
|
|
35164
|
-
display_name: {
|
|
35165
|
-
description: string;
|
|
35166
|
-
type: string;
|
|
35167
|
-
};
|
|
35168
|
-
location_ids: {
|
|
35169
|
-
deprecated: boolean;
|
|
35170
|
-
items: {
|
|
35171
|
-
format: string;
|
|
35172
|
-
type: string;
|
|
35173
|
-
};
|
|
35174
|
-
type: string;
|
|
35175
|
-
'x-deprecated': string;
|
|
35176
|
-
};
|
|
35177
|
-
requested_access_methods: {
|
|
35178
|
-
description: string;
|
|
35179
|
-
items: {
|
|
35180
|
-
properties: {
|
|
35181
|
-
created_access_method_ids: {
|
|
35182
|
-
description: string;
|
|
35183
|
-
items: {
|
|
35184
|
-
format: string;
|
|
35185
|
-
type: string;
|
|
35186
|
-
};
|
|
35187
|
-
type: string;
|
|
35188
|
-
};
|
|
35189
|
-
created_at: {
|
|
35190
|
-
description: string;
|
|
35191
|
-
format: string;
|
|
35192
|
-
type: string;
|
|
35193
|
-
};
|
|
35194
|
-
display_name: {
|
|
35195
|
-
description: string;
|
|
35196
|
-
type: string;
|
|
35197
|
-
};
|
|
35198
|
-
mode: {
|
|
35199
|
-
description: string;
|
|
35200
|
-
enum: string[];
|
|
35201
|
-
type: string;
|
|
35202
|
-
};
|
|
35203
|
-
};
|
|
35204
|
-
required: string[];
|
|
35205
|
-
type: string;
|
|
35206
|
-
};
|
|
35207
|
-
type: string;
|
|
35208
|
-
};
|
|
35209
|
-
space_ids: {
|
|
35210
|
-
description: string;
|
|
35211
|
-
items: {
|
|
35212
|
-
format: string;
|
|
35213
|
-
type: string;
|
|
35214
|
-
};
|
|
35215
|
-
type: string;
|
|
35216
|
-
};
|
|
35217
|
-
user_identity_id: {
|
|
35218
|
-
description: string;
|
|
35219
|
-
format: string;
|
|
35220
|
-
type: string;
|
|
35221
|
-
};
|
|
35222
|
-
workspace_id: {
|
|
35223
|
-
description: string;
|
|
35224
|
-
format: string;
|
|
35225
|
-
type: string;
|
|
35226
|
-
};
|
|
35227
|
-
};
|
|
35228
|
-
required: string[];
|
|
35229
|
-
type: string;
|
|
35230
|
-
'x-draft': string;
|
|
35231
|
-
'x-route-path': string;
|
|
35399
|
+
$ref: string;
|
|
35232
35400
|
};
|
|
35233
35401
|
ok: {
|
|
35234
35402
|
type: string;
|
|
@@ -35382,93 +35550,7 @@ declare const _default: {
|
|
|
35382
35550
|
schema: {
|
|
35383
35551
|
properties: {
|
|
35384
35552
|
access_grant: {
|
|
35385
|
-
|
|
35386
|
-
access_grant_id: {
|
|
35387
|
-
description: string;
|
|
35388
|
-
format: string;
|
|
35389
|
-
type: string;
|
|
35390
|
-
};
|
|
35391
|
-
access_method_ids: {
|
|
35392
|
-
description: string;
|
|
35393
|
-
items: {
|
|
35394
|
-
format: string;
|
|
35395
|
-
type: string;
|
|
35396
|
-
};
|
|
35397
|
-
type: string;
|
|
35398
|
-
};
|
|
35399
|
-
created_at: {
|
|
35400
|
-
description: string;
|
|
35401
|
-
format: string;
|
|
35402
|
-
type: string;
|
|
35403
|
-
};
|
|
35404
|
-
display_name: {
|
|
35405
|
-
description: string;
|
|
35406
|
-
type: string;
|
|
35407
|
-
};
|
|
35408
|
-
location_ids: {
|
|
35409
|
-
deprecated: boolean;
|
|
35410
|
-
items: {
|
|
35411
|
-
format: string;
|
|
35412
|
-
type: string;
|
|
35413
|
-
};
|
|
35414
|
-
type: string;
|
|
35415
|
-
'x-deprecated': string;
|
|
35416
|
-
};
|
|
35417
|
-
requested_access_methods: {
|
|
35418
|
-
description: string;
|
|
35419
|
-
items: {
|
|
35420
|
-
properties: {
|
|
35421
|
-
created_access_method_ids: {
|
|
35422
|
-
description: string;
|
|
35423
|
-
items: {
|
|
35424
|
-
format: string;
|
|
35425
|
-
type: string;
|
|
35426
|
-
};
|
|
35427
|
-
type: string;
|
|
35428
|
-
};
|
|
35429
|
-
created_at: {
|
|
35430
|
-
description: string;
|
|
35431
|
-
format: string;
|
|
35432
|
-
type: string;
|
|
35433
|
-
};
|
|
35434
|
-
display_name: {
|
|
35435
|
-
description: string;
|
|
35436
|
-
type: string;
|
|
35437
|
-
};
|
|
35438
|
-
mode: {
|
|
35439
|
-
description: string;
|
|
35440
|
-
enum: string[];
|
|
35441
|
-
type: string;
|
|
35442
|
-
};
|
|
35443
|
-
};
|
|
35444
|
-
required: string[];
|
|
35445
|
-
type: string;
|
|
35446
|
-
};
|
|
35447
|
-
type: string;
|
|
35448
|
-
};
|
|
35449
|
-
space_ids: {
|
|
35450
|
-
description: string;
|
|
35451
|
-
items: {
|
|
35452
|
-
format: string;
|
|
35453
|
-
type: string;
|
|
35454
|
-
};
|
|
35455
|
-
type: string;
|
|
35456
|
-
};
|
|
35457
|
-
user_identity_id: {
|
|
35458
|
-
description: string;
|
|
35459
|
-
format: string;
|
|
35460
|
-
type: string;
|
|
35461
|
-
};
|
|
35462
|
-
workspace_id: {
|
|
35463
|
-
description: string;
|
|
35464
|
-
format: string;
|
|
35465
|
-
type: string;
|
|
35466
|
-
};
|
|
35467
|
-
};
|
|
35468
|
-
required: string[];
|
|
35469
|
-
type: string;
|
|
35470
|
-
'x-draft': string;
|
|
35471
|
-
'x-route-path': string;
|
|
35553
|
+
$ref: string;
|
|
35472
35554
|
};
|
|
35473
35555
|
ok: {
|
|
35474
35556
|
type: string;
|
|
@@ -35568,93 +35650,7 @@ declare const _default: {
|
|
|
35568
35650
|
properties: {
|
|
35569
35651
|
access_grants: {
|
|
35570
35652
|
items: {
|
|
35571
|
-
|
|
35572
|
-
access_grant_id: {
|
|
35573
|
-
description: string;
|
|
35574
|
-
format: string;
|
|
35575
|
-
type: string;
|
|
35576
|
-
};
|
|
35577
|
-
access_method_ids: {
|
|
35578
|
-
description: string;
|
|
35579
|
-
items: {
|
|
35580
|
-
format: string;
|
|
35581
|
-
type: string;
|
|
35582
|
-
};
|
|
35583
|
-
type: string;
|
|
35584
|
-
};
|
|
35585
|
-
created_at: {
|
|
35586
|
-
description: string;
|
|
35587
|
-
format: string;
|
|
35588
|
-
type: string;
|
|
35589
|
-
};
|
|
35590
|
-
display_name: {
|
|
35591
|
-
description: string;
|
|
35592
|
-
type: string;
|
|
35593
|
-
};
|
|
35594
|
-
location_ids: {
|
|
35595
|
-
deprecated: boolean;
|
|
35596
|
-
items: {
|
|
35597
|
-
format: string;
|
|
35598
|
-
type: string;
|
|
35599
|
-
};
|
|
35600
|
-
type: string;
|
|
35601
|
-
'x-deprecated': string;
|
|
35602
|
-
};
|
|
35603
|
-
requested_access_methods: {
|
|
35604
|
-
description: string;
|
|
35605
|
-
items: {
|
|
35606
|
-
properties: {
|
|
35607
|
-
created_access_method_ids: {
|
|
35608
|
-
description: string;
|
|
35609
|
-
items: {
|
|
35610
|
-
format: string;
|
|
35611
|
-
type: string;
|
|
35612
|
-
};
|
|
35613
|
-
type: string;
|
|
35614
|
-
};
|
|
35615
|
-
created_at: {
|
|
35616
|
-
description: string;
|
|
35617
|
-
format: string;
|
|
35618
|
-
type: string;
|
|
35619
|
-
};
|
|
35620
|
-
display_name: {
|
|
35621
|
-
description: string;
|
|
35622
|
-
type: string;
|
|
35623
|
-
};
|
|
35624
|
-
mode: {
|
|
35625
|
-
description: string;
|
|
35626
|
-
enum: string[];
|
|
35627
|
-
type: string;
|
|
35628
|
-
};
|
|
35629
|
-
};
|
|
35630
|
-
required: string[];
|
|
35631
|
-
type: string;
|
|
35632
|
-
};
|
|
35633
|
-
type: string;
|
|
35634
|
-
};
|
|
35635
|
-
space_ids: {
|
|
35636
|
-
description: string;
|
|
35637
|
-
items: {
|
|
35638
|
-
format: string;
|
|
35639
|
-
type: string;
|
|
35640
|
-
};
|
|
35641
|
-
type: string;
|
|
35642
|
-
};
|
|
35643
|
-
user_identity_id: {
|
|
35644
|
-
description: string;
|
|
35645
|
-
format: string;
|
|
35646
|
-
type: string;
|
|
35647
|
-
};
|
|
35648
|
-
workspace_id: {
|
|
35649
|
-
description: string;
|
|
35650
|
-
format: string;
|
|
35651
|
-
type: string;
|
|
35652
|
-
};
|
|
35653
|
-
};
|
|
35654
|
-
required: string[];
|
|
35655
|
-
type: string;
|
|
35656
|
-
'x-draft': string;
|
|
35657
|
-
'x-route-path': string;
|
|
35653
|
+
$ref: string;
|
|
35658
35654
|
};
|
|
35659
35655
|
type: string;
|
|
35660
35656
|
};
|
|
@@ -35802,49 +35798,7 @@ declare const _default: {
|
|
|
35802
35798
|
schema: {
|
|
35803
35799
|
properties: {
|
|
35804
35800
|
access_method: {
|
|
35805
|
-
|
|
35806
|
-
access_method_id: {
|
|
35807
|
-
description: string;
|
|
35808
|
-
format: string;
|
|
35809
|
-
type: string;
|
|
35810
|
-
};
|
|
35811
|
-
created_at: {
|
|
35812
|
-
description: string;
|
|
35813
|
-
format: string;
|
|
35814
|
-
type: string;
|
|
35815
|
-
};
|
|
35816
|
-
display_name: {
|
|
35817
|
-
description: string;
|
|
35818
|
-
type: string;
|
|
35819
|
-
};
|
|
35820
|
-
instant_key_url: {
|
|
35821
|
-
description: string;
|
|
35822
|
-
type: string;
|
|
35823
|
-
};
|
|
35824
|
-
is_card_encoding_required: {
|
|
35825
|
-
description: string;
|
|
35826
|
-
type: string;
|
|
35827
|
-
};
|
|
35828
|
-
issued_at: {
|
|
35829
|
-
description: string;
|
|
35830
|
-
format: string;
|
|
35831
|
-
type: string;
|
|
35832
|
-
};
|
|
35833
|
-
mode: {
|
|
35834
|
-
description: string;
|
|
35835
|
-
enum: string[];
|
|
35836
|
-
type: string;
|
|
35837
|
-
};
|
|
35838
|
-
workspace_id: {
|
|
35839
|
-
description: string;
|
|
35840
|
-
format: string;
|
|
35841
|
-
type: string;
|
|
35842
|
-
};
|
|
35843
|
-
};
|
|
35844
|
-
required: string[];
|
|
35845
|
-
type: string;
|
|
35846
|
-
'x-draft': string;
|
|
35847
|
-
'x-route-path': string;
|
|
35801
|
+
$ref: string;
|
|
35848
35802
|
};
|
|
35849
35803
|
ok: {
|
|
35850
35804
|
type: string;
|
|
@@ -35916,49 +35870,7 @@ declare const _default: {
|
|
|
35916
35870
|
properties: {
|
|
35917
35871
|
access_methods: {
|
|
35918
35872
|
items: {
|
|
35919
|
-
|
|
35920
|
-
access_method_id: {
|
|
35921
|
-
description: string;
|
|
35922
|
-
format: string;
|
|
35923
|
-
type: string;
|
|
35924
|
-
};
|
|
35925
|
-
created_at: {
|
|
35926
|
-
description: string;
|
|
35927
|
-
format: string;
|
|
35928
|
-
type: string;
|
|
35929
|
-
};
|
|
35930
|
-
display_name: {
|
|
35931
|
-
description: string;
|
|
35932
|
-
type: string;
|
|
35933
|
-
};
|
|
35934
|
-
instant_key_url: {
|
|
35935
|
-
description: string;
|
|
35936
|
-
type: string;
|
|
35937
|
-
};
|
|
35938
|
-
is_card_encoding_required: {
|
|
35939
|
-
description: string;
|
|
35940
|
-
type: string;
|
|
35941
|
-
};
|
|
35942
|
-
issued_at: {
|
|
35943
|
-
description: string;
|
|
35944
|
-
format: string;
|
|
35945
|
-
type: string;
|
|
35946
|
-
};
|
|
35947
|
-
mode: {
|
|
35948
|
-
description: string;
|
|
35949
|
-
enum: string[];
|
|
35950
|
-
type: string;
|
|
35951
|
-
};
|
|
35952
|
-
workspace_id: {
|
|
35953
|
-
description: string;
|
|
35954
|
-
format: string;
|
|
35955
|
-
type: string;
|
|
35956
|
-
};
|
|
35957
|
-
};
|
|
35958
|
-
required: string[];
|
|
35959
|
-
type: string;
|
|
35960
|
-
'x-draft': string;
|
|
35961
|
-
'x-route-path': string;
|
|
35873
|
+
$ref: string;
|
|
35962
35874
|
};
|
|
35963
35875
|
type: string;
|
|
35964
35876
|
};
|
|
@@ -52048,93 +51960,7 @@ declare const _default: {
|
|
|
52048
51960
|
schema: {
|
|
52049
51961
|
properties: {
|
|
52050
51962
|
access_grant: {
|
|
52051
|
-
|
|
52052
|
-
access_grant_id: {
|
|
52053
|
-
description: string;
|
|
52054
|
-
format: string;
|
|
52055
|
-
type: string;
|
|
52056
|
-
};
|
|
52057
|
-
access_method_ids: {
|
|
52058
|
-
description: string;
|
|
52059
|
-
items: {
|
|
52060
|
-
format: string;
|
|
52061
|
-
type: string;
|
|
52062
|
-
};
|
|
52063
|
-
type: string;
|
|
52064
|
-
};
|
|
52065
|
-
created_at: {
|
|
52066
|
-
description: string;
|
|
52067
|
-
format: string;
|
|
52068
|
-
type: string;
|
|
52069
|
-
};
|
|
52070
|
-
display_name: {
|
|
52071
|
-
description: string;
|
|
52072
|
-
type: string;
|
|
52073
|
-
};
|
|
52074
|
-
location_ids: {
|
|
52075
|
-
deprecated: boolean;
|
|
52076
|
-
items: {
|
|
52077
|
-
format: string;
|
|
52078
|
-
type: string;
|
|
52079
|
-
};
|
|
52080
|
-
type: string;
|
|
52081
|
-
'x-deprecated': string;
|
|
52082
|
-
};
|
|
52083
|
-
requested_access_methods: {
|
|
52084
|
-
description: string;
|
|
52085
|
-
items: {
|
|
52086
|
-
properties: {
|
|
52087
|
-
created_access_method_ids: {
|
|
52088
|
-
description: string;
|
|
52089
|
-
items: {
|
|
52090
|
-
format: string;
|
|
52091
|
-
type: string;
|
|
52092
|
-
};
|
|
52093
|
-
type: string;
|
|
52094
|
-
};
|
|
52095
|
-
created_at: {
|
|
52096
|
-
description: string;
|
|
52097
|
-
format: string;
|
|
52098
|
-
type: string;
|
|
52099
|
-
};
|
|
52100
|
-
display_name: {
|
|
52101
|
-
description: string;
|
|
52102
|
-
type: string;
|
|
52103
|
-
};
|
|
52104
|
-
mode: {
|
|
52105
|
-
description: string;
|
|
52106
|
-
enum: string[];
|
|
52107
|
-
type: string;
|
|
52108
|
-
};
|
|
52109
|
-
};
|
|
52110
|
-
required: string[];
|
|
52111
|
-
type: string;
|
|
52112
|
-
};
|
|
52113
|
-
type: string;
|
|
52114
|
-
};
|
|
52115
|
-
space_ids: {
|
|
52116
|
-
description: string;
|
|
52117
|
-
items: {
|
|
52118
|
-
format: string;
|
|
52119
|
-
type: string;
|
|
52120
|
-
};
|
|
52121
|
-
type: string;
|
|
52122
|
-
};
|
|
52123
|
-
user_identity_id: {
|
|
52124
|
-
description: string;
|
|
52125
|
-
format: string;
|
|
52126
|
-
type: string;
|
|
52127
|
-
};
|
|
52128
|
-
workspace_id: {
|
|
52129
|
-
description: string;
|
|
52130
|
-
format: string;
|
|
52131
|
-
type: string;
|
|
52132
|
-
};
|
|
52133
|
-
};
|
|
52134
|
-
required: string[];
|
|
52135
|
-
type: string;
|
|
52136
|
-
'x-draft': string;
|
|
52137
|
-
'x-route-path': string;
|
|
51963
|
+
$ref: string;
|
|
52138
51964
|
};
|
|
52139
51965
|
ok: {
|
|
52140
51966
|
type: string;
|
|
@@ -52288,93 +52114,7 @@ declare const _default: {
|
|
|
52288
52114
|
schema: {
|
|
52289
52115
|
properties: {
|
|
52290
52116
|
access_grant: {
|
|
52291
|
-
|
|
52292
|
-
access_grant_id: {
|
|
52293
|
-
description: string;
|
|
52294
|
-
format: string;
|
|
52295
|
-
type: string;
|
|
52296
|
-
};
|
|
52297
|
-
access_method_ids: {
|
|
52298
|
-
description: string;
|
|
52299
|
-
items: {
|
|
52300
|
-
format: string;
|
|
52301
|
-
type: string;
|
|
52302
|
-
};
|
|
52303
|
-
type: string;
|
|
52304
|
-
};
|
|
52305
|
-
created_at: {
|
|
52306
|
-
description: string;
|
|
52307
|
-
format: string;
|
|
52308
|
-
type: string;
|
|
52309
|
-
};
|
|
52310
|
-
display_name: {
|
|
52311
|
-
description: string;
|
|
52312
|
-
type: string;
|
|
52313
|
-
};
|
|
52314
|
-
location_ids: {
|
|
52315
|
-
deprecated: boolean;
|
|
52316
|
-
items: {
|
|
52317
|
-
format: string;
|
|
52318
|
-
type: string;
|
|
52319
|
-
};
|
|
52320
|
-
type: string;
|
|
52321
|
-
'x-deprecated': string;
|
|
52322
|
-
};
|
|
52323
|
-
requested_access_methods: {
|
|
52324
|
-
description: string;
|
|
52325
|
-
items: {
|
|
52326
|
-
properties: {
|
|
52327
|
-
created_access_method_ids: {
|
|
52328
|
-
description: string;
|
|
52329
|
-
items: {
|
|
52330
|
-
format: string;
|
|
52331
|
-
type: string;
|
|
52332
|
-
};
|
|
52333
|
-
type: string;
|
|
52334
|
-
};
|
|
52335
|
-
created_at: {
|
|
52336
|
-
description: string;
|
|
52337
|
-
format: string;
|
|
52338
|
-
type: string;
|
|
52339
|
-
};
|
|
52340
|
-
display_name: {
|
|
52341
|
-
description: string;
|
|
52342
|
-
type: string;
|
|
52343
|
-
};
|
|
52344
|
-
mode: {
|
|
52345
|
-
description: string;
|
|
52346
|
-
enum: string[];
|
|
52347
|
-
type: string;
|
|
52348
|
-
};
|
|
52349
|
-
};
|
|
52350
|
-
required: string[];
|
|
52351
|
-
type: string;
|
|
52352
|
-
};
|
|
52353
|
-
type: string;
|
|
52354
|
-
};
|
|
52355
|
-
space_ids: {
|
|
52356
|
-
description: string;
|
|
52357
|
-
items: {
|
|
52358
|
-
format: string;
|
|
52359
|
-
type: string;
|
|
52360
|
-
};
|
|
52361
|
-
type: string;
|
|
52362
|
-
};
|
|
52363
|
-
user_identity_id: {
|
|
52364
|
-
description: string;
|
|
52365
|
-
format: string;
|
|
52366
|
-
type: string;
|
|
52367
|
-
};
|
|
52368
|
-
workspace_id: {
|
|
52369
|
-
description: string;
|
|
52370
|
-
format: string;
|
|
52371
|
-
type: string;
|
|
52372
|
-
};
|
|
52373
|
-
};
|
|
52374
|
-
required: string[];
|
|
52375
|
-
type: string;
|
|
52376
|
-
'x-draft': string;
|
|
52377
|
-
'x-route-path': string;
|
|
52117
|
+
$ref: string;
|
|
52378
52118
|
};
|
|
52379
52119
|
ok: {
|
|
52380
52120
|
type: string;
|
|
@@ -52474,93 +52214,7 @@ declare const _default: {
|
|
|
52474
52214
|
properties: {
|
|
52475
52215
|
access_grants: {
|
|
52476
52216
|
items: {
|
|
52477
|
-
|
|
52478
|
-
access_grant_id: {
|
|
52479
|
-
description: string;
|
|
52480
|
-
format: string;
|
|
52481
|
-
type: string;
|
|
52482
|
-
};
|
|
52483
|
-
access_method_ids: {
|
|
52484
|
-
description: string;
|
|
52485
|
-
items: {
|
|
52486
|
-
format: string;
|
|
52487
|
-
type: string;
|
|
52488
|
-
};
|
|
52489
|
-
type: string;
|
|
52490
|
-
};
|
|
52491
|
-
created_at: {
|
|
52492
|
-
description: string;
|
|
52493
|
-
format: string;
|
|
52494
|
-
type: string;
|
|
52495
|
-
};
|
|
52496
|
-
display_name: {
|
|
52497
|
-
description: string;
|
|
52498
|
-
type: string;
|
|
52499
|
-
};
|
|
52500
|
-
location_ids: {
|
|
52501
|
-
deprecated: boolean;
|
|
52502
|
-
items: {
|
|
52503
|
-
format: string;
|
|
52504
|
-
type: string;
|
|
52505
|
-
};
|
|
52506
|
-
type: string;
|
|
52507
|
-
'x-deprecated': string;
|
|
52508
|
-
};
|
|
52509
|
-
requested_access_methods: {
|
|
52510
|
-
description: string;
|
|
52511
|
-
items: {
|
|
52512
|
-
properties: {
|
|
52513
|
-
created_access_method_ids: {
|
|
52514
|
-
description: string;
|
|
52515
|
-
items: {
|
|
52516
|
-
format: string;
|
|
52517
|
-
type: string;
|
|
52518
|
-
};
|
|
52519
|
-
type: string;
|
|
52520
|
-
};
|
|
52521
|
-
created_at: {
|
|
52522
|
-
description: string;
|
|
52523
|
-
format: string;
|
|
52524
|
-
type: string;
|
|
52525
|
-
};
|
|
52526
|
-
display_name: {
|
|
52527
|
-
description: string;
|
|
52528
|
-
type: string;
|
|
52529
|
-
};
|
|
52530
|
-
mode: {
|
|
52531
|
-
description: string;
|
|
52532
|
-
enum: string[];
|
|
52533
|
-
type: string;
|
|
52534
|
-
};
|
|
52535
|
-
};
|
|
52536
|
-
required: string[];
|
|
52537
|
-
type: string;
|
|
52538
|
-
};
|
|
52539
|
-
type: string;
|
|
52540
|
-
};
|
|
52541
|
-
space_ids: {
|
|
52542
|
-
description: string;
|
|
52543
|
-
items: {
|
|
52544
|
-
format: string;
|
|
52545
|
-
type: string;
|
|
52546
|
-
};
|
|
52547
|
-
type: string;
|
|
52548
|
-
};
|
|
52549
|
-
user_identity_id: {
|
|
52550
|
-
description: string;
|
|
52551
|
-
format: string;
|
|
52552
|
-
type: string;
|
|
52553
|
-
};
|
|
52554
|
-
workspace_id: {
|
|
52555
|
-
description: string;
|
|
52556
|
-
format: string;
|
|
52557
|
-
type: string;
|
|
52558
|
-
};
|
|
52559
|
-
};
|
|
52560
|
-
required: string[];
|
|
52561
|
-
type: string;
|
|
52562
|
-
'x-draft': string;
|
|
52563
|
-
'x-route-path': string;
|
|
52217
|
+
$ref: string;
|
|
52564
52218
|
};
|
|
52565
52219
|
type: string;
|
|
52566
52220
|
};
|
|
@@ -52708,49 +52362,7 @@ declare const _default: {
|
|
|
52708
52362
|
schema: {
|
|
52709
52363
|
properties: {
|
|
52710
52364
|
access_method: {
|
|
52711
|
-
|
|
52712
|
-
access_method_id: {
|
|
52713
|
-
description: string;
|
|
52714
|
-
format: string;
|
|
52715
|
-
type: string;
|
|
52716
|
-
};
|
|
52717
|
-
created_at: {
|
|
52718
|
-
description: string;
|
|
52719
|
-
format: string;
|
|
52720
|
-
type: string;
|
|
52721
|
-
};
|
|
52722
|
-
display_name: {
|
|
52723
|
-
description: string;
|
|
52724
|
-
type: string;
|
|
52725
|
-
};
|
|
52726
|
-
instant_key_url: {
|
|
52727
|
-
description: string;
|
|
52728
|
-
type: string;
|
|
52729
|
-
};
|
|
52730
|
-
is_card_encoding_required: {
|
|
52731
|
-
description: string;
|
|
52732
|
-
type: string;
|
|
52733
|
-
};
|
|
52734
|
-
issued_at: {
|
|
52735
|
-
description: string;
|
|
52736
|
-
format: string;
|
|
52737
|
-
type: string;
|
|
52738
|
-
};
|
|
52739
|
-
mode: {
|
|
52740
|
-
description: string;
|
|
52741
|
-
enum: string[];
|
|
52742
|
-
type: string;
|
|
52743
|
-
};
|
|
52744
|
-
workspace_id: {
|
|
52745
|
-
description: string;
|
|
52746
|
-
format: string;
|
|
52747
|
-
type: string;
|
|
52748
|
-
};
|
|
52749
|
-
};
|
|
52750
|
-
required: string[];
|
|
52751
|
-
type: string;
|
|
52752
|
-
'x-draft': string;
|
|
52753
|
-
'x-route-path': string;
|
|
52365
|
+
$ref: string;
|
|
52754
52366
|
};
|
|
52755
52367
|
ok: {
|
|
52756
52368
|
type: string;
|
|
@@ -52822,49 +52434,7 @@ declare const _default: {
|
|
|
52822
52434
|
properties: {
|
|
52823
52435
|
access_methods: {
|
|
52824
52436
|
items: {
|
|
52825
|
-
|
|
52826
|
-
access_method_id: {
|
|
52827
|
-
description: string;
|
|
52828
|
-
format: string;
|
|
52829
|
-
type: string;
|
|
52830
|
-
};
|
|
52831
|
-
created_at: {
|
|
52832
|
-
description: string;
|
|
52833
|
-
format: string;
|
|
52834
|
-
type: string;
|
|
52835
|
-
};
|
|
52836
|
-
display_name: {
|
|
52837
|
-
description: string;
|
|
52838
|
-
type: string;
|
|
52839
|
-
};
|
|
52840
|
-
instant_key_url: {
|
|
52841
|
-
description: string;
|
|
52842
|
-
type: string;
|
|
52843
|
-
};
|
|
52844
|
-
is_card_encoding_required: {
|
|
52845
|
-
description: string;
|
|
52846
|
-
type: string;
|
|
52847
|
-
};
|
|
52848
|
-
issued_at: {
|
|
52849
|
-
description: string;
|
|
52850
|
-
format: string;
|
|
52851
|
-
type: string;
|
|
52852
|
-
};
|
|
52853
|
-
mode: {
|
|
52854
|
-
description: string;
|
|
52855
|
-
enum: string[];
|
|
52856
|
-
type: string;
|
|
52857
|
-
};
|
|
52858
|
-
workspace_id: {
|
|
52859
|
-
description: string;
|
|
52860
|
-
format: string;
|
|
52861
|
-
type: string;
|
|
52862
|
-
};
|
|
52863
|
-
};
|
|
52864
|
-
required: string[];
|
|
52865
|
-
type: string;
|
|
52866
|
-
'x-draft': string;
|
|
52867
|
-
'x-route-path': string;
|
|
52437
|
+
$ref: string;
|
|
52868
52438
|
};
|
|
52869
52439
|
type: string;
|
|
52870
52440
|
};
|
|
@@ -58851,6 +58421,12 @@ interface Routes {
|
|
|
58851
58421
|
created_at: string;
|
|
58852
58422
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
58853
58423
|
error_code: 'subscription_required';
|
|
58424
|
+
} | {
|
|
58425
|
+
message: string;
|
|
58426
|
+
is_device_error: true;
|
|
58427
|
+
created_at: string;
|
|
58428
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
58429
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
58854
58430
|
} | {
|
|
58855
58431
|
/** Date and time at which Seam created the error. */
|
|
58856
58432
|
created_at: string;
|
|
@@ -59347,6 +58923,12 @@ interface Routes {
|
|
|
59347
58923
|
created_at: string;
|
|
59348
58924
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
59349
58925
|
error_code: 'subscription_required';
|
|
58926
|
+
} | {
|
|
58927
|
+
message: string;
|
|
58928
|
+
is_device_error: true;
|
|
58929
|
+
created_at: string;
|
|
58930
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
58931
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
59350
58932
|
} | {
|
|
59351
58933
|
/** Date and time at which Seam created the error. */
|
|
59352
58934
|
created_at: string;
|
|
@@ -60963,6 +60545,12 @@ interface Routes {
|
|
|
60963
60545
|
created_at: string;
|
|
60964
60546
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
60965
60547
|
error_code: 'subscription_required';
|
|
60548
|
+
} | {
|
|
60549
|
+
message: string;
|
|
60550
|
+
is_device_error: true;
|
|
60551
|
+
created_at: string;
|
|
60552
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
60553
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
60966
60554
|
} | {
|
|
60967
60555
|
/** Date and time at which Seam created the error. */
|
|
60968
60556
|
created_at: string;
|
|
@@ -61440,6 +61028,12 @@ interface Routes {
|
|
|
61440
61028
|
created_at: string;
|
|
61441
61029
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
61442
61030
|
error_code: 'subscription_required';
|
|
61031
|
+
} | {
|
|
61032
|
+
message: string;
|
|
61033
|
+
is_device_error: true;
|
|
61034
|
+
created_at: string;
|
|
61035
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
61036
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
61443
61037
|
} | {
|
|
61444
61038
|
/** Date and time at which Seam created the error. */
|
|
61445
61039
|
created_at: string;
|
|
@@ -61924,6 +61518,12 @@ interface Routes {
|
|
|
61924
61518
|
created_at: string;
|
|
61925
61519
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
61926
61520
|
error_code: 'subscription_required';
|
|
61521
|
+
} | {
|
|
61522
|
+
message: string;
|
|
61523
|
+
is_device_error: true;
|
|
61524
|
+
created_at: string;
|
|
61525
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
61526
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
61927
61527
|
} | {
|
|
61928
61528
|
/** Date and time at which Seam created the error. */
|
|
61929
61529
|
created_at: string;
|
|
@@ -62386,6 +61986,12 @@ interface Routes {
|
|
|
62386
61986
|
created_at: string;
|
|
62387
61987
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
62388
61988
|
error_code: 'subscription_required';
|
|
61989
|
+
} | {
|
|
61990
|
+
message: string;
|
|
61991
|
+
is_device_error: true;
|
|
61992
|
+
created_at: string;
|
|
61993
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
61994
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
62389
61995
|
} | {
|
|
62390
61996
|
/** Date and time at which Seam created the error. */
|
|
62391
61997
|
created_at: string;
|
|
@@ -62881,6 +62487,12 @@ interface Routes {
|
|
|
62881
62487
|
created_at: string;
|
|
62882
62488
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
62883
62489
|
error_code: 'subscription_required';
|
|
62490
|
+
} | {
|
|
62491
|
+
message: string;
|
|
62492
|
+
is_device_error: true;
|
|
62493
|
+
created_at: string;
|
|
62494
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
62495
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
62884
62496
|
} | {
|
|
62885
62497
|
/** Date and time at which Seam created the error. */
|
|
62886
62498
|
created_at: string;
|
|
@@ -64484,6 +64096,12 @@ interface Routes {
|
|
|
64484
64096
|
created_at: string;
|
|
64485
64097
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
64486
64098
|
error_code: 'subscription_required';
|
|
64099
|
+
} | {
|
|
64100
|
+
message: string;
|
|
64101
|
+
is_device_error: true;
|
|
64102
|
+
created_at: string;
|
|
64103
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
64104
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
64487
64105
|
} | {
|
|
64488
64106
|
/** Date and time at which Seam created the error. */
|
|
64489
64107
|
created_at: string;
|
|
@@ -64936,6 +64554,12 @@ interface Routes {
|
|
|
64936
64554
|
created_at: string;
|
|
64937
64555
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
64938
64556
|
error_code: 'subscription_required';
|
|
64557
|
+
} | {
|
|
64558
|
+
message: string;
|
|
64559
|
+
is_device_error: true;
|
|
64560
|
+
created_at: string;
|
|
64561
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
64562
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
64939
64563
|
} | {
|
|
64940
64564
|
/** Date and time at which Seam created the error. */
|
|
64941
64565
|
created_at: string;
|
|
@@ -78192,6 +77816,12 @@ interface Routes {
|
|
|
78192
77816
|
created_at: string;
|
|
78193
77817
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
78194
77818
|
error_code: 'subscription_required';
|
|
77819
|
+
} | {
|
|
77820
|
+
message: string;
|
|
77821
|
+
is_device_error: true;
|
|
77822
|
+
created_at: string;
|
|
77823
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
77824
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
78195
77825
|
} | {
|
|
78196
77826
|
/** Date and time at which Seam created the error. */
|
|
78197
77827
|
created_at: string;
|
|
@@ -79440,6 +79070,12 @@ interface Routes {
|
|
|
79440
79070
|
created_at: string;
|
|
79441
79071
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
79442
79072
|
error_code: 'subscription_required';
|
|
79073
|
+
} | {
|
|
79074
|
+
message: string;
|
|
79075
|
+
is_device_error: true;
|
|
79076
|
+
created_at: string;
|
|
79077
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
79078
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
79443
79079
|
} | {
|
|
79444
79080
|
/** Date and time at which Seam created the error. */
|
|
79445
79081
|
created_at: string;
|
|
@@ -79762,6 +79398,12 @@ interface Routes {
|
|
|
79762
79398
|
created_at: string;
|
|
79763
79399
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
79764
79400
|
error_code: 'subscription_required';
|
|
79401
|
+
} | {
|
|
79402
|
+
message: string;
|
|
79403
|
+
is_device_error: true;
|
|
79404
|
+
created_at: string;
|
|
79405
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
79406
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
79765
79407
|
} | {
|
|
79766
79408
|
/** Date and time at which Seam created the error. */
|
|
79767
79409
|
created_at: string;
|
|
@@ -80103,6 +79745,12 @@ interface Routes {
|
|
|
80103
79745
|
created_at: string;
|
|
80104
79746
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
80105
79747
|
error_code: 'subscription_required';
|
|
79748
|
+
} | {
|
|
79749
|
+
message: string;
|
|
79750
|
+
is_device_error: true;
|
|
79751
|
+
created_at: string;
|
|
79752
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
79753
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
80106
79754
|
} | {
|
|
80107
79755
|
/** Date and time at which Seam created the error. */
|
|
80108
79756
|
created_at: string;
|
|
@@ -84243,6 +83891,12 @@ interface Routes {
|
|
|
84243
83891
|
created_at: string;
|
|
84244
83892
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
84245
83893
|
error_code: 'subscription_required';
|
|
83894
|
+
} | {
|
|
83895
|
+
message: string;
|
|
83896
|
+
is_device_error: true;
|
|
83897
|
+
created_at: string;
|
|
83898
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83899
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
84246
83900
|
} | {
|
|
84247
83901
|
/** Date and time at which Seam created the error. */
|
|
84248
83902
|
created_at: string;
|
|
@@ -85447,6 +85101,12 @@ interface Routes {
|
|
|
85447
85101
|
created_at: string;
|
|
85448
85102
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
85449
85103
|
error_code: 'subscription_required';
|
|
85104
|
+
} | {
|
|
85105
|
+
message: string;
|
|
85106
|
+
is_device_error: true;
|
|
85107
|
+
created_at: string;
|
|
85108
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
85109
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
85450
85110
|
} | {
|
|
85451
85111
|
/** Date and time at which Seam created the error. */
|
|
85452
85112
|
created_at: string;
|
|
@@ -86695,6 +86355,12 @@ interface Routes {
|
|
|
86695
86355
|
created_at: string;
|
|
86696
86356
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
86697
86357
|
error_code: 'subscription_required';
|
|
86358
|
+
} | {
|
|
86359
|
+
message: string;
|
|
86360
|
+
is_device_error: true;
|
|
86361
|
+
created_at: string;
|
|
86362
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
86363
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
86698
86364
|
} | {
|
|
86699
86365
|
/** Date and time at which Seam created the error. */
|
|
86700
86366
|
created_at: string;
|
|
@@ -87898,6 +87564,12 @@ interface Routes {
|
|
|
87898
87564
|
created_at: string;
|
|
87899
87565
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
87900
87566
|
error_code: 'subscription_required';
|
|
87567
|
+
} | {
|
|
87568
|
+
message: string;
|
|
87569
|
+
is_device_error: true;
|
|
87570
|
+
created_at: string;
|
|
87571
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
87572
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
87901
87573
|
} | {
|
|
87902
87574
|
/** Date and time at which Seam created the error. */
|
|
87903
87575
|
created_at: string;
|
|
@@ -93651,6 +93323,12 @@ interface Routes {
|
|
|
93651
93323
|
created_at: string;
|
|
93652
93324
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
93653
93325
|
error_code: 'subscription_required';
|
|
93326
|
+
} | {
|
|
93327
|
+
message: string;
|
|
93328
|
+
is_device_error: true;
|
|
93329
|
+
created_at: string;
|
|
93330
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
93331
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
93654
93332
|
} | {
|
|
93655
93333
|
/** Date and time at which Seam created the error. */
|
|
93656
93334
|
created_at: string;
|
|
@@ -94854,6 +94532,12 @@ interface Routes {
|
|
|
94854
94532
|
created_at: string;
|
|
94855
94533
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
94856
94534
|
error_code: 'subscription_required';
|
|
94535
|
+
} | {
|
|
94536
|
+
message: string;
|
|
94537
|
+
is_device_error: true;
|
|
94538
|
+
created_at: string;
|
|
94539
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
94540
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
94857
94541
|
} | {
|
|
94858
94542
|
/** Date and time at which Seam created the error. */
|
|
94859
94543
|
created_at: string;
|
|
@@ -104076,6 +103760,12 @@ interface Routes {
|
|
|
104076
103760
|
created_at: string;
|
|
104077
103761
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
104078
103762
|
error_code: 'subscription_required';
|
|
103763
|
+
} | {
|
|
103764
|
+
message: string;
|
|
103765
|
+
is_device_error: true;
|
|
103766
|
+
created_at: string;
|
|
103767
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
103768
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
104079
103769
|
} | {
|
|
104080
103770
|
/** Date and time at which Seam created the error. */
|
|
104081
103771
|
created_at: string;
|
|
@@ -107572,6 +107262,12 @@ interface Routes {
|
|
|
107572
107262
|
created_at: string;
|
|
107573
107263
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107574
107264
|
error_code: 'subscription_required';
|
|
107265
|
+
} | {
|
|
107266
|
+
message: string;
|
|
107267
|
+
is_device_error: true;
|
|
107268
|
+
created_at: string;
|
|
107269
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107270
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
107575
107271
|
} | {
|
|
107576
107272
|
/** Date and time at which Seam created the error. */
|
|
107577
107273
|
created_at: string;
|
|
@@ -108775,6 +108471,12 @@ interface Routes {
|
|
|
108775
108471
|
created_at: string;
|
|
108776
108472
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
108777
108473
|
error_code: 'subscription_required';
|
|
108474
|
+
} | {
|
|
108475
|
+
message: string;
|
|
108476
|
+
is_device_error: true;
|
|
108477
|
+
created_at: string;
|
|
108478
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
108479
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
108778
108480
|
} | {
|
|
108779
108481
|
/** Date and time at which Seam created the error. */
|
|
108780
108482
|
created_at: string;
|
|
@@ -115690,6 +115392,12 @@ interface Routes {
|
|
|
115690
115392
|
created_at: string;
|
|
115691
115393
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
115692
115394
|
error_code: 'subscription_required';
|
|
115395
|
+
} | {
|
|
115396
|
+
message: string;
|
|
115397
|
+
is_device_error: true;
|
|
115398
|
+
created_at: string;
|
|
115399
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
115400
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
115693
115401
|
} | {
|
|
115694
115402
|
/** Date and time at which Seam created the error. */
|
|
115695
115403
|
created_at: string;
|
|
@@ -116895,6 +116603,12 @@ interface Routes {
|
|
|
116895
116603
|
created_at: string;
|
|
116896
116604
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
116897
116605
|
error_code: 'subscription_required';
|
|
116606
|
+
} | {
|
|
116607
|
+
message: string;
|
|
116608
|
+
is_device_error: true;
|
|
116609
|
+
created_at: string;
|
|
116610
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
116611
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
116898
116612
|
} | {
|
|
116899
116613
|
/** Date and time at which Seam created the error. */
|
|
116900
116614
|
created_at: string;
|