@seamapi/types 1.52.1 → 1.53.1
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 +115 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +207 -0
- package/dist/devicedb.cjs +5 -5
- package/dist/devicedb.cjs.map +1 -1
- package/dist/devicedb.d.cts +80 -80
- package/lib/seam/connect/openapi.d.ts +186 -0
- package/lib/seam/connect/openapi.js +114 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +21 -0
- package/lib/seam/connect/unstable/models/acs/system.d.ts +3 -0
- package/lib/seam/connect/unstable/models/acs/system.js +1 -0
- package/lib/seam/connect/unstable/models/acs/system.js.map +1 -1
- package/lib/seam/devicedb/public-models/device-model-v1.d.ts +30 -30
- package/lib/seam/devicedb/public-models/device-model-v1.js +5 -5
- package/lib/seam/devicedb/public-models/device-model-v1.js.map +1 -1
- package/lib/seam/devicedb/route-specs.d.ts +40 -40
- package/lib/seam/devicedb/route-types.d.ts +10 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +114 -0
- package/src/lib/seam/connect/route-types.ts +21 -0
- package/src/lib/seam/connect/unstable/models/acs/system.ts +1 -0
- package/src/lib/seam/devicedb/public-models/device-model-v1.ts +5 -5
- package/src/lib/seam/devicedb/route-types.ts +10 -10
package/dist/devicedb.d.cts
CHANGED
|
@@ -261,9 +261,9 @@ declare const device_model_category_specific_properties: z.ZodDiscriminatedUnion
|
|
|
261
261
|
main_category: z.ZodLiteral<"intercom">;
|
|
262
262
|
physical_properties: z.ZodObject<{
|
|
263
263
|
has_camera: z.ZodBoolean;
|
|
264
|
-
has_rfid_reader: z.ZodBoolean
|
|
265
|
-
has_nfc_reader: z.ZodBoolean
|
|
266
|
-
has_wiegand_interface: z.ZodBoolean
|
|
264
|
+
has_rfid_reader: z.ZodDefault<z.ZodBoolean>;
|
|
265
|
+
has_nfc_reader: z.ZodDefault<z.ZodBoolean>;
|
|
266
|
+
has_wiegand_interface: z.ZodDefault<z.ZodBoolean>;
|
|
267
267
|
}, "strip", z.ZodTypeAny, {
|
|
268
268
|
has_camera: boolean;
|
|
269
269
|
has_rfid_reader: boolean;
|
|
@@ -271,15 +271,15 @@ declare const device_model_category_specific_properties: z.ZodDiscriminatedUnion
|
|
|
271
271
|
has_wiegand_interface: boolean;
|
|
272
272
|
}, {
|
|
273
273
|
has_camera: boolean;
|
|
274
|
-
has_rfid_reader
|
|
275
|
-
has_nfc_reader
|
|
276
|
-
has_wiegand_interface
|
|
274
|
+
has_rfid_reader?: boolean | undefined;
|
|
275
|
+
has_nfc_reader?: boolean | undefined;
|
|
276
|
+
has_wiegand_interface?: boolean | undefined;
|
|
277
277
|
}>;
|
|
278
278
|
software_features: z.ZodObject<{
|
|
279
279
|
can_remotely_unlock: z.ZodBoolean;
|
|
280
280
|
can_program_access_codes: z.ZodBoolean;
|
|
281
|
-
can_unlock_with_face_recognition: z.ZodBoolean
|
|
282
|
-
supports_onvif: z.ZodBoolean
|
|
281
|
+
can_unlock_with_face_recognition: z.ZodDefault<z.ZodBoolean>;
|
|
282
|
+
supports_onvif: z.ZodDefault<z.ZodBoolean>;
|
|
283
283
|
}, "strip", z.ZodTypeAny, {
|
|
284
284
|
can_remotely_unlock: boolean;
|
|
285
285
|
can_program_access_codes: boolean;
|
|
@@ -288,8 +288,8 @@ declare const device_model_category_specific_properties: z.ZodDiscriminatedUnion
|
|
|
288
288
|
}, {
|
|
289
289
|
can_remotely_unlock: boolean;
|
|
290
290
|
can_program_access_codes: boolean;
|
|
291
|
-
can_unlock_with_face_recognition
|
|
292
|
-
supports_onvif
|
|
291
|
+
can_unlock_with_face_recognition?: boolean | undefined;
|
|
292
|
+
supports_onvif?: boolean | undefined;
|
|
293
293
|
}>;
|
|
294
294
|
}, "strip", z.ZodTypeAny, {
|
|
295
295
|
main_category: "intercom";
|
|
@@ -309,15 +309,15 @@ declare const device_model_category_specific_properties: z.ZodDiscriminatedUnion
|
|
|
309
309
|
main_category: "intercom";
|
|
310
310
|
physical_properties: {
|
|
311
311
|
has_camera: boolean;
|
|
312
|
-
has_rfid_reader
|
|
313
|
-
has_nfc_reader
|
|
314
|
-
has_wiegand_interface
|
|
312
|
+
has_rfid_reader?: boolean | undefined;
|
|
313
|
+
has_nfc_reader?: boolean | undefined;
|
|
314
|
+
has_wiegand_interface?: boolean | undefined;
|
|
315
315
|
};
|
|
316
316
|
software_features: {
|
|
317
317
|
can_remotely_unlock: boolean;
|
|
318
318
|
can_program_access_codes: boolean;
|
|
319
|
-
can_unlock_with_face_recognition
|
|
320
|
-
supports_onvif
|
|
319
|
+
can_unlock_with_face_recognition?: boolean | undefined;
|
|
320
|
+
supports_onvif?: boolean | undefined;
|
|
321
321
|
};
|
|
322
322
|
}>, z.ZodObject<{
|
|
323
323
|
main_category: z.ZodLiteral<"accessory">;
|
|
@@ -927,9 +927,9 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
927
927
|
main_category: z.ZodLiteral<"intercom">;
|
|
928
928
|
physical_properties: z.ZodObject<{
|
|
929
929
|
has_camera: z.ZodBoolean;
|
|
930
|
-
has_rfid_reader: z.ZodBoolean
|
|
931
|
-
has_nfc_reader: z.ZodBoolean
|
|
932
|
-
has_wiegand_interface: z.ZodBoolean
|
|
930
|
+
has_rfid_reader: z.ZodDefault<z.ZodBoolean>;
|
|
931
|
+
has_nfc_reader: z.ZodDefault<z.ZodBoolean>;
|
|
932
|
+
has_wiegand_interface: z.ZodDefault<z.ZodBoolean>;
|
|
933
933
|
}, "strip", z.ZodTypeAny, {
|
|
934
934
|
has_camera: boolean;
|
|
935
935
|
has_rfid_reader: boolean;
|
|
@@ -937,15 +937,15 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
937
937
|
has_wiegand_interface: boolean;
|
|
938
938
|
}, {
|
|
939
939
|
has_camera: boolean;
|
|
940
|
-
has_rfid_reader
|
|
941
|
-
has_nfc_reader
|
|
942
|
-
has_wiegand_interface
|
|
940
|
+
has_rfid_reader?: boolean | undefined;
|
|
941
|
+
has_nfc_reader?: boolean | undefined;
|
|
942
|
+
has_wiegand_interface?: boolean | undefined;
|
|
943
943
|
}>;
|
|
944
944
|
software_features: z.ZodObject<{
|
|
945
945
|
can_remotely_unlock: z.ZodBoolean;
|
|
946
946
|
can_program_access_codes: z.ZodBoolean;
|
|
947
|
-
can_unlock_with_face_recognition: z.ZodBoolean
|
|
948
|
-
supports_onvif: z.ZodBoolean
|
|
947
|
+
can_unlock_with_face_recognition: z.ZodDefault<z.ZodBoolean>;
|
|
948
|
+
supports_onvif: z.ZodDefault<z.ZodBoolean>;
|
|
949
949
|
}, "strip", z.ZodTypeAny, {
|
|
950
950
|
can_remotely_unlock: boolean;
|
|
951
951
|
can_program_access_codes: boolean;
|
|
@@ -954,8 +954,8 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
954
954
|
}, {
|
|
955
955
|
can_remotely_unlock: boolean;
|
|
956
956
|
can_program_access_codes: boolean;
|
|
957
|
-
can_unlock_with_face_recognition
|
|
958
|
-
supports_onvif
|
|
957
|
+
can_unlock_with_face_recognition?: boolean | undefined;
|
|
958
|
+
supports_onvif?: boolean | undefined;
|
|
959
959
|
}>;
|
|
960
960
|
}, "strip", z.ZodTypeAny, {
|
|
961
961
|
main_category: "intercom";
|
|
@@ -975,15 +975,15 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
975
975
|
main_category: "intercom";
|
|
976
976
|
physical_properties: {
|
|
977
977
|
has_camera: boolean;
|
|
978
|
-
has_rfid_reader
|
|
979
|
-
has_nfc_reader
|
|
980
|
-
has_wiegand_interface
|
|
978
|
+
has_rfid_reader?: boolean | undefined;
|
|
979
|
+
has_nfc_reader?: boolean | undefined;
|
|
980
|
+
has_wiegand_interface?: boolean | undefined;
|
|
981
981
|
};
|
|
982
982
|
software_features: {
|
|
983
983
|
can_remotely_unlock: boolean;
|
|
984
984
|
can_program_access_codes: boolean;
|
|
985
|
-
can_unlock_with_face_recognition
|
|
986
|
-
supports_onvif
|
|
985
|
+
can_unlock_with_face_recognition?: boolean | undefined;
|
|
986
|
+
supports_onvif?: boolean | undefined;
|
|
987
987
|
};
|
|
988
988
|
}>, z.ZodObject<{
|
|
989
989
|
main_category: z.ZodLiteral<"accessory">;
|
|
@@ -1494,9 +1494,9 @@ declare const routes: {
|
|
|
1494
1494
|
main_category: z.ZodLiteral<"intercom">;
|
|
1495
1495
|
physical_properties: z.ZodObject<{
|
|
1496
1496
|
has_camera: z.ZodBoolean;
|
|
1497
|
-
has_rfid_reader: z.ZodBoolean
|
|
1498
|
-
has_nfc_reader: z.ZodBoolean
|
|
1499
|
-
has_wiegand_interface: z.ZodBoolean
|
|
1497
|
+
has_rfid_reader: z.ZodDefault<z.ZodBoolean>;
|
|
1498
|
+
has_nfc_reader: z.ZodDefault<z.ZodBoolean>;
|
|
1499
|
+
has_wiegand_interface: z.ZodDefault<z.ZodBoolean>;
|
|
1500
1500
|
}, "strip", z.ZodTypeAny, {
|
|
1501
1501
|
has_camera: boolean;
|
|
1502
1502
|
has_rfid_reader: boolean;
|
|
@@ -1504,15 +1504,15 @@ declare const routes: {
|
|
|
1504
1504
|
has_wiegand_interface: boolean;
|
|
1505
1505
|
}, {
|
|
1506
1506
|
has_camera: boolean;
|
|
1507
|
-
has_rfid_reader
|
|
1508
|
-
has_nfc_reader
|
|
1509
|
-
has_wiegand_interface
|
|
1507
|
+
has_rfid_reader?: boolean | undefined;
|
|
1508
|
+
has_nfc_reader?: boolean | undefined;
|
|
1509
|
+
has_wiegand_interface?: boolean | undefined;
|
|
1510
1510
|
}>;
|
|
1511
1511
|
software_features: z.ZodObject<{
|
|
1512
1512
|
can_remotely_unlock: z.ZodBoolean;
|
|
1513
1513
|
can_program_access_codes: z.ZodBoolean;
|
|
1514
|
-
can_unlock_with_face_recognition: z.ZodBoolean
|
|
1515
|
-
supports_onvif: z.ZodBoolean
|
|
1514
|
+
can_unlock_with_face_recognition: z.ZodDefault<z.ZodBoolean>;
|
|
1515
|
+
supports_onvif: z.ZodDefault<z.ZodBoolean>;
|
|
1516
1516
|
}, "strip", z.ZodTypeAny, {
|
|
1517
1517
|
can_remotely_unlock: boolean;
|
|
1518
1518
|
can_program_access_codes: boolean;
|
|
@@ -1521,8 +1521,8 @@ declare const routes: {
|
|
|
1521
1521
|
}, {
|
|
1522
1522
|
can_remotely_unlock: boolean;
|
|
1523
1523
|
can_program_access_codes: boolean;
|
|
1524
|
-
can_unlock_with_face_recognition
|
|
1525
|
-
supports_onvif
|
|
1524
|
+
can_unlock_with_face_recognition?: boolean | undefined;
|
|
1525
|
+
supports_onvif?: boolean | undefined;
|
|
1526
1526
|
}>;
|
|
1527
1527
|
}, "strip", z.ZodTypeAny, {
|
|
1528
1528
|
main_category: "intercom";
|
|
@@ -1542,15 +1542,15 @@ declare const routes: {
|
|
|
1542
1542
|
main_category: "intercom";
|
|
1543
1543
|
physical_properties: {
|
|
1544
1544
|
has_camera: boolean;
|
|
1545
|
-
has_rfid_reader
|
|
1546
|
-
has_nfc_reader
|
|
1547
|
-
has_wiegand_interface
|
|
1545
|
+
has_rfid_reader?: boolean | undefined;
|
|
1546
|
+
has_nfc_reader?: boolean | undefined;
|
|
1547
|
+
has_wiegand_interface?: boolean | undefined;
|
|
1548
1548
|
};
|
|
1549
1549
|
software_features: {
|
|
1550
1550
|
can_remotely_unlock: boolean;
|
|
1551
1551
|
can_program_access_codes: boolean;
|
|
1552
|
-
can_unlock_with_face_recognition
|
|
1553
|
-
supports_onvif
|
|
1552
|
+
can_unlock_with_face_recognition?: boolean | undefined;
|
|
1553
|
+
supports_onvif?: boolean | undefined;
|
|
1554
1554
|
};
|
|
1555
1555
|
}>, z.ZodObject<{
|
|
1556
1556
|
main_category: z.ZodLiteral<"accessory">;
|
|
@@ -2107,15 +2107,15 @@ declare const routes: {
|
|
|
2107
2107
|
main_category: "intercom";
|
|
2108
2108
|
physical_properties: {
|
|
2109
2109
|
has_camera: boolean;
|
|
2110
|
-
has_rfid_reader
|
|
2111
|
-
has_nfc_reader
|
|
2112
|
-
has_wiegand_interface
|
|
2110
|
+
has_rfid_reader?: boolean | undefined;
|
|
2111
|
+
has_nfc_reader?: boolean | undefined;
|
|
2112
|
+
has_wiegand_interface?: boolean | undefined;
|
|
2113
2113
|
};
|
|
2114
2114
|
software_features: {
|
|
2115
2115
|
can_remotely_unlock: boolean;
|
|
2116
2116
|
can_program_access_codes: boolean;
|
|
2117
|
-
can_unlock_with_face_recognition
|
|
2118
|
-
supports_onvif
|
|
2117
|
+
can_unlock_with_face_recognition?: boolean | undefined;
|
|
2118
|
+
supports_onvif?: boolean | undefined;
|
|
2119
2119
|
};
|
|
2120
2120
|
}) | ({
|
|
2121
2121
|
display_name: string;
|
|
@@ -2567,9 +2567,9 @@ declare const routes: {
|
|
|
2567
2567
|
main_category: z.ZodLiteral<"intercom">;
|
|
2568
2568
|
physical_properties: z.ZodObject<{
|
|
2569
2569
|
has_camera: z.ZodBoolean;
|
|
2570
|
-
has_rfid_reader: z.ZodBoolean
|
|
2571
|
-
has_nfc_reader: z.ZodBoolean
|
|
2572
|
-
has_wiegand_interface: z.ZodBoolean
|
|
2570
|
+
has_rfid_reader: z.ZodDefault<z.ZodBoolean>;
|
|
2571
|
+
has_nfc_reader: z.ZodDefault<z.ZodBoolean>;
|
|
2572
|
+
has_wiegand_interface: z.ZodDefault<z.ZodBoolean>;
|
|
2573
2573
|
}, "strip", z.ZodTypeAny, {
|
|
2574
2574
|
has_camera: boolean;
|
|
2575
2575
|
has_rfid_reader: boolean;
|
|
@@ -2577,15 +2577,15 @@ declare const routes: {
|
|
|
2577
2577
|
has_wiegand_interface: boolean;
|
|
2578
2578
|
}, {
|
|
2579
2579
|
has_camera: boolean;
|
|
2580
|
-
has_rfid_reader
|
|
2581
|
-
has_nfc_reader
|
|
2582
|
-
has_wiegand_interface
|
|
2580
|
+
has_rfid_reader?: boolean | undefined;
|
|
2581
|
+
has_nfc_reader?: boolean | undefined;
|
|
2582
|
+
has_wiegand_interface?: boolean | undefined;
|
|
2583
2583
|
}>;
|
|
2584
2584
|
software_features: z.ZodObject<{
|
|
2585
2585
|
can_remotely_unlock: z.ZodBoolean;
|
|
2586
2586
|
can_program_access_codes: z.ZodBoolean;
|
|
2587
|
-
can_unlock_with_face_recognition: z.ZodBoolean
|
|
2588
|
-
supports_onvif: z.ZodBoolean
|
|
2587
|
+
can_unlock_with_face_recognition: z.ZodDefault<z.ZodBoolean>;
|
|
2588
|
+
supports_onvif: z.ZodDefault<z.ZodBoolean>;
|
|
2589
2589
|
}, "strip", z.ZodTypeAny, {
|
|
2590
2590
|
can_remotely_unlock: boolean;
|
|
2591
2591
|
can_program_access_codes: boolean;
|
|
@@ -2594,8 +2594,8 @@ declare const routes: {
|
|
|
2594
2594
|
}, {
|
|
2595
2595
|
can_remotely_unlock: boolean;
|
|
2596
2596
|
can_program_access_codes: boolean;
|
|
2597
|
-
can_unlock_with_face_recognition
|
|
2598
|
-
supports_onvif
|
|
2597
|
+
can_unlock_with_face_recognition?: boolean | undefined;
|
|
2598
|
+
supports_onvif?: boolean | undefined;
|
|
2599
2599
|
}>;
|
|
2600
2600
|
}, "strip", z.ZodTypeAny, {
|
|
2601
2601
|
main_category: "intercom";
|
|
@@ -2615,15 +2615,15 @@ declare const routes: {
|
|
|
2615
2615
|
main_category: "intercom";
|
|
2616
2616
|
physical_properties: {
|
|
2617
2617
|
has_camera: boolean;
|
|
2618
|
-
has_rfid_reader
|
|
2619
|
-
has_nfc_reader
|
|
2620
|
-
has_wiegand_interface
|
|
2618
|
+
has_rfid_reader?: boolean | undefined;
|
|
2619
|
+
has_nfc_reader?: boolean | undefined;
|
|
2620
|
+
has_wiegand_interface?: boolean | undefined;
|
|
2621
2621
|
};
|
|
2622
2622
|
software_features: {
|
|
2623
2623
|
can_remotely_unlock: boolean;
|
|
2624
2624
|
can_program_access_codes: boolean;
|
|
2625
|
-
can_unlock_with_face_recognition
|
|
2626
|
-
supports_onvif
|
|
2625
|
+
can_unlock_with_face_recognition?: boolean | undefined;
|
|
2626
|
+
supports_onvif?: boolean | undefined;
|
|
2627
2627
|
};
|
|
2628
2628
|
}>, z.ZodObject<{
|
|
2629
2629
|
main_category: z.ZodLiteral<"accessory">;
|
|
@@ -2811,15 +2811,15 @@ declare const routes: {
|
|
|
2811
2811
|
main_category: "intercom";
|
|
2812
2812
|
physical_properties: {
|
|
2813
2813
|
has_camera: boolean;
|
|
2814
|
-
has_rfid_reader
|
|
2815
|
-
has_nfc_reader
|
|
2816
|
-
has_wiegand_interface
|
|
2814
|
+
has_rfid_reader?: boolean | undefined;
|
|
2815
|
+
has_nfc_reader?: boolean | undefined;
|
|
2816
|
+
has_wiegand_interface?: boolean | undefined;
|
|
2817
2817
|
};
|
|
2818
2818
|
software_features: {
|
|
2819
2819
|
can_remotely_unlock: boolean;
|
|
2820
2820
|
can_program_access_codes: boolean;
|
|
2821
|
-
can_unlock_with_face_recognition
|
|
2822
|
-
supports_onvif
|
|
2821
|
+
can_unlock_with_face_recognition?: boolean | undefined;
|
|
2822
|
+
supports_onvif?: boolean | undefined;
|
|
2823
2823
|
};
|
|
2824
2824
|
} | {
|
|
2825
2825
|
main_category: "accessory";
|
|
@@ -3096,15 +3096,15 @@ interface Routes {
|
|
|
3096
3096
|
main_category: 'intercom';
|
|
3097
3097
|
physical_properties: {
|
|
3098
3098
|
has_camera: boolean;
|
|
3099
|
-
has_rfid_reader
|
|
3100
|
-
has_nfc_reader
|
|
3101
|
-
has_wiegand_interface
|
|
3099
|
+
has_rfid_reader?: boolean;
|
|
3100
|
+
has_nfc_reader?: boolean;
|
|
3101
|
+
has_wiegand_interface?: boolean;
|
|
3102
3102
|
};
|
|
3103
3103
|
software_features: {
|
|
3104
3104
|
can_remotely_unlock: boolean;
|
|
3105
3105
|
can_program_access_codes: boolean;
|
|
3106
|
-
can_unlock_with_face_recognition
|
|
3107
|
-
supports_onvif
|
|
3106
|
+
can_unlock_with_face_recognition?: boolean;
|
|
3107
|
+
supports_onvif?: boolean;
|
|
3108
3108
|
};
|
|
3109
3109
|
} | {
|
|
3110
3110
|
main_category: 'accessory';
|
|
@@ -3207,15 +3207,15 @@ interface Routes {
|
|
|
3207
3207
|
main_category: 'intercom';
|
|
3208
3208
|
physical_properties: {
|
|
3209
3209
|
has_camera: boolean;
|
|
3210
|
-
has_rfid_reader
|
|
3211
|
-
has_nfc_reader
|
|
3212
|
-
has_wiegand_interface
|
|
3210
|
+
has_rfid_reader?: boolean;
|
|
3211
|
+
has_nfc_reader?: boolean;
|
|
3212
|
+
has_wiegand_interface?: boolean;
|
|
3213
3213
|
};
|
|
3214
3214
|
software_features: {
|
|
3215
3215
|
can_remotely_unlock: boolean;
|
|
3216
3216
|
can_program_access_codes: boolean;
|
|
3217
|
-
can_unlock_with_face_recognition
|
|
3218
|
-
supports_onvif
|
|
3217
|
+
can_unlock_with_face_recognition?: boolean;
|
|
3218
|
+
supports_onvif?: boolean;
|
|
3219
3219
|
};
|
|
3220
3220
|
} | {
|
|
3221
3221
|
main_category: 'accessory';
|
|
@@ -182,6 +182,10 @@ declare const _default: {
|
|
|
182
182
|
description: string;
|
|
183
183
|
type: string;
|
|
184
184
|
};
|
|
185
|
+
workspace_id: {
|
|
186
|
+
format: string;
|
|
187
|
+
type: string;
|
|
188
|
+
};
|
|
185
189
|
};
|
|
186
190
|
required: string[];
|
|
187
191
|
type: string;
|
|
@@ -12412,6 +12416,188 @@ declare const _default: {
|
|
|
12412
12416
|
'x-fern-ignore': boolean;
|
|
12413
12417
|
};
|
|
12414
12418
|
};
|
|
12419
|
+
'/user_identities/list': {
|
|
12420
|
+
get: {
|
|
12421
|
+
operationId: string;
|
|
12422
|
+
responses: {
|
|
12423
|
+
200: {
|
|
12424
|
+
content: {
|
|
12425
|
+
'application/json': {
|
|
12426
|
+
schema: {
|
|
12427
|
+
properties: {
|
|
12428
|
+
ok: {
|
|
12429
|
+
type: string;
|
|
12430
|
+
};
|
|
12431
|
+
user_identities: {
|
|
12432
|
+
items: {
|
|
12433
|
+
properties: {
|
|
12434
|
+
created_at: {
|
|
12435
|
+
format: string;
|
|
12436
|
+
type: string;
|
|
12437
|
+
};
|
|
12438
|
+
email_address: {
|
|
12439
|
+
format: string;
|
|
12440
|
+
nullable: boolean;
|
|
12441
|
+
type: string;
|
|
12442
|
+
};
|
|
12443
|
+
first_name: {
|
|
12444
|
+
nullable: boolean;
|
|
12445
|
+
type: string;
|
|
12446
|
+
};
|
|
12447
|
+
last_name: {
|
|
12448
|
+
nullable: boolean;
|
|
12449
|
+
type: string;
|
|
12450
|
+
};
|
|
12451
|
+
user_identity_id: {
|
|
12452
|
+
format: string;
|
|
12453
|
+
type: string;
|
|
12454
|
+
};
|
|
12455
|
+
user_identity_key: {
|
|
12456
|
+
nullable: boolean;
|
|
12457
|
+
type: string;
|
|
12458
|
+
};
|
|
12459
|
+
workspace_id: {
|
|
12460
|
+
format: string;
|
|
12461
|
+
type: string;
|
|
12462
|
+
};
|
|
12463
|
+
};
|
|
12464
|
+
required: string[];
|
|
12465
|
+
type: string;
|
|
12466
|
+
};
|
|
12467
|
+
type: string;
|
|
12468
|
+
};
|
|
12469
|
+
};
|
|
12470
|
+
required: string[];
|
|
12471
|
+
type: string;
|
|
12472
|
+
};
|
|
12473
|
+
};
|
|
12474
|
+
};
|
|
12475
|
+
description: string;
|
|
12476
|
+
};
|
|
12477
|
+
400: {
|
|
12478
|
+
description: string;
|
|
12479
|
+
};
|
|
12480
|
+
401: {
|
|
12481
|
+
description: string;
|
|
12482
|
+
};
|
|
12483
|
+
};
|
|
12484
|
+
security: ({
|
|
12485
|
+
api_key: never[];
|
|
12486
|
+
client_session?: never;
|
|
12487
|
+
pat_with_workspace?: never;
|
|
12488
|
+
console_session?: never;
|
|
12489
|
+
} | {
|
|
12490
|
+
client_session: never[];
|
|
12491
|
+
api_key?: never;
|
|
12492
|
+
pat_with_workspace?: never;
|
|
12493
|
+
console_session?: never;
|
|
12494
|
+
} | {
|
|
12495
|
+
pat_with_workspace: never[];
|
|
12496
|
+
api_key?: never;
|
|
12497
|
+
client_session?: never;
|
|
12498
|
+
console_session?: never;
|
|
12499
|
+
} | {
|
|
12500
|
+
console_session: never[];
|
|
12501
|
+
api_key?: never;
|
|
12502
|
+
client_session?: never;
|
|
12503
|
+
pat_with_workspace?: never;
|
|
12504
|
+
})[];
|
|
12505
|
+
summary: string;
|
|
12506
|
+
tags: never[];
|
|
12507
|
+
'x-fern-ignore': boolean;
|
|
12508
|
+
};
|
|
12509
|
+
post: {
|
|
12510
|
+
operationId: string;
|
|
12511
|
+
responses: {
|
|
12512
|
+
200: {
|
|
12513
|
+
content: {
|
|
12514
|
+
'application/json': {
|
|
12515
|
+
schema: {
|
|
12516
|
+
properties: {
|
|
12517
|
+
ok: {
|
|
12518
|
+
type: string;
|
|
12519
|
+
};
|
|
12520
|
+
user_identities: {
|
|
12521
|
+
items: {
|
|
12522
|
+
properties: {
|
|
12523
|
+
created_at: {
|
|
12524
|
+
format: string;
|
|
12525
|
+
type: string;
|
|
12526
|
+
};
|
|
12527
|
+
email_address: {
|
|
12528
|
+
format: string;
|
|
12529
|
+
nullable: boolean;
|
|
12530
|
+
type: string;
|
|
12531
|
+
};
|
|
12532
|
+
first_name: {
|
|
12533
|
+
nullable: boolean;
|
|
12534
|
+
type: string;
|
|
12535
|
+
};
|
|
12536
|
+
last_name: {
|
|
12537
|
+
nullable: boolean;
|
|
12538
|
+
type: string;
|
|
12539
|
+
};
|
|
12540
|
+
user_identity_id: {
|
|
12541
|
+
format: string;
|
|
12542
|
+
type: string;
|
|
12543
|
+
};
|
|
12544
|
+
user_identity_key: {
|
|
12545
|
+
nullable: boolean;
|
|
12546
|
+
type: string;
|
|
12547
|
+
};
|
|
12548
|
+
workspace_id: {
|
|
12549
|
+
format: string;
|
|
12550
|
+
type: string;
|
|
12551
|
+
};
|
|
12552
|
+
};
|
|
12553
|
+
required: string[];
|
|
12554
|
+
type: string;
|
|
12555
|
+
};
|
|
12556
|
+
type: string;
|
|
12557
|
+
};
|
|
12558
|
+
};
|
|
12559
|
+
required: string[];
|
|
12560
|
+
type: string;
|
|
12561
|
+
};
|
|
12562
|
+
};
|
|
12563
|
+
};
|
|
12564
|
+
description: string;
|
|
12565
|
+
};
|
|
12566
|
+
400: {
|
|
12567
|
+
description: string;
|
|
12568
|
+
};
|
|
12569
|
+
401: {
|
|
12570
|
+
description: string;
|
|
12571
|
+
};
|
|
12572
|
+
};
|
|
12573
|
+
security: ({
|
|
12574
|
+
api_key: never[];
|
|
12575
|
+
client_session?: never;
|
|
12576
|
+
pat_with_workspace?: never;
|
|
12577
|
+
console_session?: never;
|
|
12578
|
+
} | {
|
|
12579
|
+
client_session: never[];
|
|
12580
|
+
api_key?: never;
|
|
12581
|
+
pat_with_workspace?: never;
|
|
12582
|
+
console_session?: never;
|
|
12583
|
+
} | {
|
|
12584
|
+
pat_with_workspace: never[];
|
|
12585
|
+
api_key?: never;
|
|
12586
|
+
client_session?: never;
|
|
12587
|
+
console_session?: never;
|
|
12588
|
+
} | {
|
|
12589
|
+
console_session: never[];
|
|
12590
|
+
api_key?: never;
|
|
12591
|
+
client_session?: never;
|
|
12592
|
+
pat_with_workspace?: never;
|
|
12593
|
+
})[];
|
|
12594
|
+
summary: string;
|
|
12595
|
+
tags: never[];
|
|
12596
|
+
'x-fern-sdk-group-name': string[];
|
|
12597
|
+
'x-fern-sdk-method-name': string;
|
|
12598
|
+
'x-fern-sdk-return-value': string;
|
|
12599
|
+
};
|
|
12600
|
+
};
|
|
12415
12601
|
'/user_identities/list_accessible_devices': {
|
|
12416
12602
|
post: {
|
|
12417
12603
|
operationId: string;
|