@seamapi/types 1.950.0 → 1.952.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 +120 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +299 -6
- package/dist/index.cjs +120 -6
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +49 -4
- package/lib/seam/connect/models/acs/acs-entrance.js +7 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/salto.d.ts +2 -2
- package/lib/seam/connect/models/devices/device.d.ts +58 -0
- package/lib/seam/connect/models/devices/device.js +11 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +100 -18
- package/lib/seam/connect/openapi.js +98 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +219 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +10 -0
- package/src/lib/seam/connect/models/devices/device.ts +12 -0
- package/src/lib/seam/connect/openapi.ts +114 -2
- package/src/lib/seam/connect/route-types.ts +250 -0
package/dist/connect.d.cts
CHANGED
|
@@ -5489,6 +5489,19 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
5489
5489
|
message: string;
|
|
5490
5490
|
created_at: string;
|
|
5491
5491
|
warning_code: "salto_ks_privacy_mode";
|
|
5492
|
+
}>, z.ZodObject<{
|
|
5493
|
+
created_at: z.ZodString;
|
|
5494
|
+
message: z.ZodString;
|
|
5495
|
+
} & {
|
|
5496
|
+
warning_code: z.ZodLiteral<"privacy_mode">;
|
|
5497
|
+
}, "strip", z.ZodTypeAny, {
|
|
5498
|
+
message: string;
|
|
5499
|
+
created_at: string;
|
|
5500
|
+
warning_code: "privacy_mode";
|
|
5501
|
+
}, {
|
|
5502
|
+
message: string;
|
|
5503
|
+
created_at: string;
|
|
5504
|
+
warning_code: "privacy_mode";
|
|
5492
5505
|
}>]>, "many">;
|
|
5493
5506
|
latch_metadata: z.ZodOptional<z.ZodObject<{
|
|
5494
5507
|
accessibility_type: z.ZodString;
|
|
@@ -5561,19 +5574,19 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
5561
5574
|
battery_level: string;
|
|
5562
5575
|
locked_state: string;
|
|
5563
5576
|
door_name: string;
|
|
5577
|
+
privacy_mode?: boolean | undefined;
|
|
5564
5578
|
online?: boolean | undefined;
|
|
5565
5579
|
left_open_alarm?: boolean | undefined;
|
|
5566
5580
|
intrusion_alarm?: boolean | undefined;
|
|
5567
|
-
privacy_mode?: boolean | undefined;
|
|
5568
5581
|
}, {
|
|
5569
5582
|
lock_type: string;
|
|
5570
5583
|
battery_level: string;
|
|
5571
5584
|
locked_state: string;
|
|
5572
5585
|
door_name: string;
|
|
5586
|
+
privacy_mode?: boolean | undefined;
|
|
5573
5587
|
online?: boolean | undefined;
|
|
5574
5588
|
left_open_alarm?: boolean | undefined;
|
|
5575
5589
|
intrusion_alarm?: boolean | undefined;
|
|
5576
|
-
privacy_mode?: boolean | undefined;
|
|
5577
5590
|
}>>;
|
|
5578
5591
|
dormakaba_community_metadata: z.ZodOptional<z.ZodObject<{
|
|
5579
5592
|
access_point_profile: z.ZodString;
|
|
@@ -5699,6 +5712,10 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
5699
5712
|
message: string;
|
|
5700
5713
|
created_at: string;
|
|
5701
5714
|
warning_code: "salto_ks_privacy_mode";
|
|
5715
|
+
} | {
|
|
5716
|
+
message: string;
|
|
5717
|
+
created_at: string;
|
|
5718
|
+
warning_code: "privacy_mode";
|
|
5702
5719
|
})[];
|
|
5703
5720
|
space_ids: string[];
|
|
5704
5721
|
acs_entrance_id: string;
|
|
@@ -5708,10 +5725,10 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
5708
5725
|
battery_level: string;
|
|
5709
5726
|
locked_state: string;
|
|
5710
5727
|
door_name: string;
|
|
5728
|
+
privacy_mode?: boolean | undefined;
|
|
5711
5729
|
online?: boolean | undefined;
|
|
5712
5730
|
left_open_alarm?: boolean | undefined;
|
|
5713
5731
|
intrusion_alarm?: boolean | undefined;
|
|
5714
|
-
privacy_mode?: boolean | undefined;
|
|
5715
5732
|
} | undefined;
|
|
5716
5733
|
avigilon_alta_metadata?: {
|
|
5717
5734
|
site_id: number;
|
|
@@ -5797,6 +5814,10 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
5797
5814
|
message: string;
|
|
5798
5815
|
created_at: string;
|
|
5799
5816
|
warning_code: "salto_ks_privacy_mode";
|
|
5817
|
+
} | {
|
|
5818
|
+
message: string;
|
|
5819
|
+
created_at: string;
|
|
5820
|
+
warning_code: "privacy_mode";
|
|
5800
5821
|
})[];
|
|
5801
5822
|
space_ids: string[];
|
|
5802
5823
|
acs_entrance_id: string;
|
|
@@ -5806,10 +5827,10 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
5806
5827
|
battery_level: string;
|
|
5807
5828
|
locked_state: string;
|
|
5808
5829
|
door_name: string;
|
|
5830
|
+
privacy_mode?: boolean | undefined;
|
|
5809
5831
|
online?: boolean | undefined;
|
|
5810
5832
|
left_open_alarm?: boolean | undefined;
|
|
5811
5833
|
intrusion_alarm?: boolean | undefined;
|
|
5812
|
-
privacy_mode?: boolean | undefined;
|
|
5813
5834
|
} | undefined;
|
|
5814
5835
|
avigilon_alta_metadata?: {
|
|
5815
5836
|
site_id: number;
|
|
@@ -14457,6 +14478,19 @@ declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObje
|
|
|
14457
14478
|
}>, z.ZodObject<{
|
|
14458
14479
|
message: z.ZodString;
|
|
14459
14480
|
created_at: z.ZodString;
|
|
14481
|
+
} & {
|
|
14482
|
+
warning_code: z.ZodLiteral<"privacy_mode">;
|
|
14483
|
+
}, "strip", z.ZodTypeAny, {
|
|
14484
|
+
message: string;
|
|
14485
|
+
created_at: string;
|
|
14486
|
+
warning_code: "privacy_mode";
|
|
14487
|
+
}, {
|
|
14488
|
+
message: string;
|
|
14489
|
+
created_at: string;
|
|
14490
|
+
warning_code: "privacy_mode";
|
|
14491
|
+
}>, z.ZodObject<{
|
|
14492
|
+
message: z.ZodString;
|
|
14493
|
+
created_at: z.ZodString;
|
|
14460
14494
|
} & {
|
|
14461
14495
|
warning_code: z.ZodLiteral<"salto_ks_subscription_limit_almost_reached">;
|
|
14462
14496
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -17812,6 +17846,19 @@ declare const device: z.ZodObject<{
|
|
|
17812
17846
|
}>, z.ZodObject<{
|
|
17813
17847
|
message: z.ZodString;
|
|
17814
17848
|
created_at: z.ZodString;
|
|
17849
|
+
} & {
|
|
17850
|
+
warning_code: z.ZodLiteral<"privacy_mode">;
|
|
17851
|
+
}, "strip", z.ZodTypeAny, {
|
|
17852
|
+
message: string;
|
|
17853
|
+
created_at: string;
|
|
17854
|
+
warning_code: "privacy_mode";
|
|
17855
|
+
}, {
|
|
17856
|
+
message: string;
|
|
17857
|
+
created_at: string;
|
|
17858
|
+
warning_code: "privacy_mode";
|
|
17859
|
+
}>, z.ZodObject<{
|
|
17860
|
+
message: z.ZodString;
|
|
17861
|
+
created_at: z.ZodString;
|
|
17815
17862
|
} & {
|
|
17816
17863
|
warning_code: z.ZodLiteral<"salto_ks_subscription_limit_almost_reached">;
|
|
17817
17864
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -18197,6 +18244,10 @@ declare const device: z.ZodObject<{
|
|
|
18197
18244
|
message: string;
|
|
18198
18245
|
created_at: string;
|
|
18199
18246
|
warning_code: "salto_ks_privacy_mode";
|
|
18247
|
+
} | {
|
|
18248
|
+
message: string;
|
|
18249
|
+
created_at: string;
|
|
18250
|
+
warning_code: "privacy_mode";
|
|
18200
18251
|
} | {
|
|
18201
18252
|
message: string;
|
|
18202
18253
|
created_at: string;
|
|
@@ -18997,6 +19048,10 @@ declare const device: z.ZodObject<{
|
|
|
18997
19048
|
message: string;
|
|
18998
19049
|
created_at: string;
|
|
18999
19050
|
warning_code: "salto_ks_privacy_mode";
|
|
19051
|
+
} | {
|
|
19052
|
+
message: string;
|
|
19053
|
+
created_at: string;
|
|
19054
|
+
warning_code: "privacy_mode";
|
|
19000
19055
|
} | {
|
|
19001
19056
|
message: string;
|
|
19002
19057
|
created_at: string;
|
|
@@ -22965,6 +23020,19 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
22965
23020
|
}>, z.ZodObject<{
|
|
22966
23021
|
message: z.ZodString;
|
|
22967
23022
|
created_at: z.ZodString;
|
|
23023
|
+
} & {
|
|
23024
|
+
warning_code: z.ZodLiteral<"privacy_mode">;
|
|
23025
|
+
}, "strip", z.ZodTypeAny, {
|
|
23026
|
+
message: string;
|
|
23027
|
+
created_at: string;
|
|
23028
|
+
warning_code: "privacy_mode";
|
|
23029
|
+
}, {
|
|
23030
|
+
message: string;
|
|
23031
|
+
created_at: string;
|
|
23032
|
+
warning_code: "privacy_mode";
|
|
23033
|
+
}>, z.ZodObject<{
|
|
23034
|
+
message: z.ZodString;
|
|
23035
|
+
created_at: z.ZodString;
|
|
22968
23036
|
} & {
|
|
22969
23037
|
warning_code: z.ZodLiteral<"salto_ks_subscription_limit_almost_reached">;
|
|
22970
23038
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -23506,6 +23574,10 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23506
23574
|
message: string;
|
|
23507
23575
|
created_at: string;
|
|
23508
23576
|
warning_code: "salto_ks_privacy_mode";
|
|
23577
|
+
} | {
|
|
23578
|
+
message: string;
|
|
23579
|
+
created_at: string;
|
|
23580
|
+
warning_code: "privacy_mode";
|
|
23509
23581
|
} | {
|
|
23510
23582
|
message: string;
|
|
23511
23583
|
created_at: string;
|
|
@@ -23795,6 +23867,10 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23795
23867
|
message: string;
|
|
23796
23868
|
created_at: string;
|
|
23797
23869
|
warning_code: "salto_ks_privacy_mode";
|
|
23870
|
+
} | {
|
|
23871
|
+
message: string;
|
|
23872
|
+
created_at: string;
|
|
23873
|
+
warning_code: "privacy_mode";
|
|
23798
23874
|
} | {
|
|
23799
23875
|
message: string;
|
|
23800
23876
|
created_at: string;
|
|
@@ -43056,6 +43132,13 @@ type Routes = {
|
|
|
43056
43132
|
created_at: string;
|
|
43057
43133
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43058
43134
|
warning_code: 'salto_ks_privacy_mode';
|
|
43135
|
+
} | {
|
|
43136
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43137
|
+
message: string;
|
|
43138
|
+
/** Date and time at which Seam created the warning. */
|
|
43139
|
+
created_at: string;
|
|
43140
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43141
|
+
warning_code: 'privacy_mode';
|
|
43059
43142
|
} | {
|
|
43060
43143
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43061
43144
|
message: string;
|
|
@@ -43284,6 +43367,13 @@ type Routes = {
|
|
|
43284
43367
|
message: string;
|
|
43285
43368
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43286
43369
|
warning_code: 'salto_ks_privacy_mode';
|
|
43370
|
+
} | {
|
|
43371
|
+
/** Date and time at which Seam created the warning. */
|
|
43372
|
+
created_at: string;
|
|
43373
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43374
|
+
message: string;
|
|
43375
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43376
|
+
warning_code: 'privacy_mode';
|
|
43287
43377
|
})[];
|
|
43288
43378
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
43289
43379
|
latch_metadata?: {
|
|
@@ -49787,6 +49877,13 @@ type Routes = {
|
|
|
49787
49877
|
created_at: string;
|
|
49788
49878
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
49789
49879
|
warning_code: 'salto_ks_privacy_mode';
|
|
49880
|
+
} | {
|
|
49881
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
49882
|
+
message: string;
|
|
49883
|
+
/** Date and time at which Seam created the warning. */
|
|
49884
|
+
created_at: string;
|
|
49885
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
49886
|
+
warning_code: 'privacy_mode';
|
|
49790
49887
|
} | {
|
|
49791
49888
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
49792
49889
|
message: string;
|
|
@@ -50015,6 +50112,13 @@ type Routes = {
|
|
|
50015
50112
|
message: string;
|
|
50016
50113
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
50017
50114
|
warning_code: 'salto_ks_privacy_mode';
|
|
50115
|
+
} | {
|
|
50116
|
+
/** Date and time at which Seam created the warning. */
|
|
50117
|
+
created_at: string;
|
|
50118
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
50119
|
+
message: string;
|
|
50120
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
50121
|
+
warning_code: 'privacy_mode';
|
|
50018
50122
|
})[];
|
|
50019
50123
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
50020
50124
|
latch_metadata?: {
|
|
@@ -53162,6 +53266,13 @@ type Routes = {
|
|
|
53162
53266
|
message: string;
|
|
53163
53267
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53164
53268
|
warning_code: 'salto_ks_privacy_mode';
|
|
53269
|
+
} | {
|
|
53270
|
+
/** Date and time at which Seam created the warning. */
|
|
53271
|
+
created_at: string;
|
|
53272
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
53273
|
+
message: string;
|
|
53274
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53275
|
+
warning_code: 'privacy_mode';
|
|
53165
53276
|
})[];
|
|
53166
53277
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
53167
53278
|
latch_metadata?: {
|
|
@@ -54928,6 +55039,13 @@ type Routes = {
|
|
|
54928
55039
|
message: string;
|
|
54929
55040
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54930
55041
|
warning_code: 'salto_ks_privacy_mode';
|
|
55042
|
+
} | {
|
|
55043
|
+
/** Date and time at which Seam created the warning. */
|
|
55044
|
+
created_at: string;
|
|
55045
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
55046
|
+
message: string;
|
|
55047
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55048
|
+
warning_code: 'privacy_mode';
|
|
54931
55049
|
})[];
|
|
54932
55050
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
54933
55051
|
latch_metadata?: {
|
|
@@ -60997,6 +61115,13 @@ type Routes = {
|
|
|
60997
61115
|
message: string;
|
|
60998
61116
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
60999
61117
|
warning_code: 'salto_ks_privacy_mode';
|
|
61118
|
+
} | {
|
|
61119
|
+
/** Date and time at which Seam created the warning. */
|
|
61120
|
+
created_at: string;
|
|
61121
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
61122
|
+
message: string;
|
|
61123
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61124
|
+
warning_code: 'privacy_mode';
|
|
61000
61125
|
})[];
|
|
61001
61126
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
61002
61127
|
latch_metadata?: {
|
|
@@ -61227,6 +61352,13 @@ type Routes = {
|
|
|
61227
61352
|
message: string;
|
|
61228
61353
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61229
61354
|
warning_code: 'salto_ks_privacy_mode';
|
|
61355
|
+
} | {
|
|
61356
|
+
/** Date and time at which Seam created the warning. */
|
|
61357
|
+
created_at: string;
|
|
61358
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
61359
|
+
message: string;
|
|
61360
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
61361
|
+
warning_code: 'privacy_mode';
|
|
61230
61362
|
})[];
|
|
61231
61363
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
61232
61364
|
latch_metadata?: {
|
|
@@ -64656,6 +64788,13 @@ type Routes = {
|
|
|
64656
64788
|
message: string;
|
|
64657
64789
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64658
64790
|
warning_code: 'salto_ks_privacy_mode';
|
|
64791
|
+
} | {
|
|
64792
|
+
/** Date and time at which Seam created the warning. */
|
|
64793
|
+
created_at: string;
|
|
64794
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
64795
|
+
message: string;
|
|
64796
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
64797
|
+
warning_code: 'privacy_mode';
|
|
64659
64798
|
})[];
|
|
64660
64799
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
64661
64800
|
latch_metadata?: {
|
|
@@ -72290,6 +72429,13 @@ type Routes = {
|
|
|
72290
72429
|
created_at: string;
|
|
72291
72430
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72292
72431
|
warning_code: 'salto_ks_privacy_mode';
|
|
72432
|
+
} | {
|
|
72433
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
72434
|
+
message: string;
|
|
72435
|
+
/** Date and time at which Seam created the warning. */
|
|
72436
|
+
created_at: string;
|
|
72437
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72438
|
+
warning_code: 'privacy_mode';
|
|
72293
72439
|
} | {
|
|
72294
72440
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
72295
72441
|
message: string;
|
|
@@ -73815,6 +73961,13 @@ type Routes = {
|
|
|
73815
73961
|
created_at: string;
|
|
73816
73962
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
73817
73963
|
warning_code: 'salto_ks_privacy_mode';
|
|
73964
|
+
} | {
|
|
73965
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
73966
|
+
message: string;
|
|
73967
|
+
/** Date and time at which Seam created the warning. */
|
|
73968
|
+
created_at: string;
|
|
73969
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
73970
|
+
warning_code: 'privacy_mode';
|
|
73818
73971
|
} | {
|
|
73819
73972
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
73820
73973
|
message: string;
|
|
@@ -74464,6 +74617,13 @@ type Routes = {
|
|
|
74464
74617
|
created_at: string;
|
|
74465
74618
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74466
74619
|
warning_code: 'salto_ks_privacy_mode';
|
|
74620
|
+
} | {
|
|
74621
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
74622
|
+
message: string;
|
|
74623
|
+
/** Date and time at which Seam created the warning. */
|
|
74624
|
+
created_at: string;
|
|
74625
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74626
|
+
warning_code: 'privacy_mode';
|
|
74467
74627
|
} | {
|
|
74468
74628
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
74469
74629
|
message: string;
|
|
@@ -75015,6 +75175,13 @@ type Routes = {
|
|
|
75015
75175
|
created_at: string;
|
|
75016
75176
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
75017
75177
|
warning_code: 'salto_ks_privacy_mode';
|
|
75178
|
+
} | {
|
|
75179
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
75180
|
+
message: string;
|
|
75181
|
+
/** Date and time at which Seam created the warning. */
|
|
75182
|
+
created_at: string;
|
|
75183
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
75184
|
+
warning_code: 'privacy_mode';
|
|
75018
75185
|
} | {
|
|
75019
75186
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
75020
75187
|
message: string;
|
|
@@ -84865,6 +85032,13 @@ type Routes = {
|
|
|
84865
85032
|
created_at: string;
|
|
84866
85033
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84867
85034
|
warning_code: 'salto_ks_privacy_mode';
|
|
85035
|
+
} | {
|
|
85036
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
85037
|
+
message: string;
|
|
85038
|
+
/** Date and time at which Seam created the warning. */
|
|
85039
|
+
created_at: string;
|
|
85040
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
85041
|
+
warning_code: 'privacy_mode';
|
|
84868
85042
|
} | {
|
|
84869
85043
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
84870
85044
|
message: string;
|
|
@@ -86340,6 +86514,13 @@ type Routes = {
|
|
|
86340
86514
|
created_at: string;
|
|
86341
86515
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
86342
86516
|
warning_code: 'salto_ks_privacy_mode';
|
|
86517
|
+
} | {
|
|
86518
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
86519
|
+
message: string;
|
|
86520
|
+
/** Date and time at which Seam created the warning. */
|
|
86521
|
+
created_at: string;
|
|
86522
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
86523
|
+
warning_code: 'privacy_mode';
|
|
86343
86524
|
} | {
|
|
86344
86525
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
86345
86526
|
message: string;
|
|
@@ -87865,6 +88046,13 @@ type Routes = {
|
|
|
87865
88046
|
created_at: string;
|
|
87866
88047
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
87867
88048
|
warning_code: 'salto_ks_privacy_mode';
|
|
88049
|
+
} | {
|
|
88050
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
88051
|
+
message: string;
|
|
88052
|
+
/** Date and time at which Seam created the warning. */
|
|
88053
|
+
created_at: string;
|
|
88054
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88055
|
+
warning_code: 'privacy_mode';
|
|
87868
88056
|
} | {
|
|
87869
88057
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
87870
88058
|
message: string;
|
|
@@ -89339,6 +89527,13 @@ type Routes = {
|
|
|
89339
89527
|
created_at: string;
|
|
89340
89528
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89341
89529
|
warning_code: 'salto_ks_privacy_mode';
|
|
89530
|
+
} | {
|
|
89531
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
89532
|
+
message: string;
|
|
89533
|
+
/** Date and time at which Seam created the warning. */
|
|
89534
|
+
created_at: string;
|
|
89535
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89536
|
+
warning_code: 'privacy_mode';
|
|
89342
89537
|
} | {
|
|
89343
89538
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
89344
89539
|
message: string;
|
|
@@ -97590,6 +97785,13 @@ type Routes = {
|
|
|
97590
97785
|
created_at: string;
|
|
97591
97786
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
97592
97787
|
warning_code: 'salto_ks_privacy_mode';
|
|
97788
|
+
} | {
|
|
97789
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
97790
|
+
message: string;
|
|
97791
|
+
/** Date and time at which Seam created the warning. */
|
|
97792
|
+
created_at: string;
|
|
97793
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
97794
|
+
warning_code: 'privacy_mode';
|
|
97593
97795
|
} | {
|
|
97594
97796
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
97595
97797
|
message: string;
|
|
@@ -99064,6 +99266,13 @@ type Routes = {
|
|
|
99064
99266
|
created_at: string;
|
|
99065
99267
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
99066
99268
|
warning_code: 'salto_ks_privacy_mode';
|
|
99269
|
+
} | {
|
|
99270
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
99271
|
+
message: string;
|
|
99272
|
+
/** Date and time at which Seam created the warning. */
|
|
99273
|
+
created_at: string;
|
|
99274
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
99275
|
+
warning_code: 'privacy_mode';
|
|
99067
99276
|
} | {
|
|
99068
99277
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
99069
99278
|
message: string;
|
|
@@ -105547,14 +105756,14 @@ type Routes = {
|
|
|
105547
105756
|
jsonBody: {};
|
|
105548
105757
|
commonParams: {
|
|
105549
105758
|
/** Name of the workspace feature flag to update. */
|
|
105550
|
-
feature_flag_name: 'RESERVATION_LEGACY' | 'EXPERIMENTAL_DASHBOARD_API_ENABLED' | 'ICAL_CONNECTOR' | 'VISIONLINE_SERIALIZE_BRIDGE_REQUESTS' | 'SALTO_KS_ENTRANCES_ONLY_FOR_SPACES' | 'MANAGE_DEVICES_CONFIRMATION_MODAL' | 'RECLAIM_ORPHANED_BACKUP_ACCESS_CODES' | 'LYNX_MIGRATION_ENABLED';
|
|
105759
|
+
feature_flag_name: 'RESERVATION_LEGACY' | 'EXPERIMENTAL_DASHBOARD_API_ENABLED' | 'ICAL_CONNECTOR' | 'VISIONLINE_SERIALIZE_BRIDGE_REQUESTS' | 'SALTO_KS_ENTRANCES_ONLY_FOR_SPACES' | 'MANAGE_DEVICES_CONFIRMATION_MODAL' | 'RECLAIM_ORPHANED_BACKUP_ACCESS_CODES' | 'LYNX_MIGRATION_ENABLED' | 'AURORA_CUSTOMER_FILTER_ENABLED';
|
|
105551
105760
|
/** Whether the feature flag should be enabled for the workspace. */
|
|
105552
105761
|
enabled: boolean;
|
|
105553
105762
|
};
|
|
105554
105763
|
formData: {};
|
|
105555
105764
|
jsonResponse: {
|
|
105556
105765
|
feature_flag: {
|
|
105557
|
-
feature_flag_name: 'RESERVATION_LEGACY' | 'EXPERIMENTAL_DASHBOARD_API_ENABLED' | 'ICAL_CONNECTOR' | 'VISIONLINE_SERIALIZE_BRIDGE_REQUESTS' | 'SALTO_KS_ENTRANCES_ONLY_FOR_SPACES' | 'MANAGE_DEVICES_CONFIRMATION_MODAL' | 'RECLAIM_ORPHANED_BACKUP_ACCESS_CODES' | 'LYNX_MIGRATION_ENABLED';
|
|
105766
|
+
feature_flag_name: 'RESERVATION_LEGACY' | 'EXPERIMENTAL_DASHBOARD_API_ENABLED' | 'ICAL_CONNECTOR' | 'VISIONLINE_SERIALIZE_BRIDGE_REQUESTS' | 'SALTO_KS_ENTRANCES_ONLY_FOR_SPACES' | 'MANAGE_DEVICES_CONFIRMATION_MODAL' | 'RECLAIM_ORPHANED_BACKUP_ACCESS_CODES' | 'LYNX_MIGRATION_ENABLED' | 'AURORA_CUSTOMER_FILTER_ENABLED';
|
|
105558
105767
|
enabled: boolean;
|
|
105559
105768
|
};
|
|
105560
105769
|
};
|
|
@@ -113156,6 +113365,13 @@ type Routes = {
|
|
|
113156
113365
|
message: string;
|
|
113157
113366
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
113158
113367
|
warning_code: 'salto_ks_privacy_mode';
|
|
113368
|
+
} | {
|
|
113369
|
+
/** Date and time at which Seam created the warning. */
|
|
113370
|
+
created_at: string;
|
|
113371
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
113372
|
+
message: string;
|
|
113373
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
113374
|
+
warning_code: 'privacy_mode';
|
|
113159
113375
|
})[];
|
|
113160
113376
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
113161
113377
|
latch_metadata?: {
|
|
@@ -114950,6 +115166,13 @@ type Routes = {
|
|
|
114950
115166
|
created_at: string;
|
|
114951
115167
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
114952
115168
|
warning_code: 'salto_ks_privacy_mode';
|
|
115169
|
+
} | {
|
|
115170
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
115171
|
+
message: string;
|
|
115172
|
+
/** Date and time at which Seam created the warning. */
|
|
115173
|
+
created_at: string;
|
|
115174
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
115175
|
+
warning_code: 'privacy_mode';
|
|
114953
115176
|
} | {
|
|
114954
115177
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
114955
115178
|
message: string;
|
|
@@ -115178,6 +115401,13 @@ type Routes = {
|
|
|
115178
115401
|
message: string;
|
|
115179
115402
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
115180
115403
|
warning_code: 'salto_ks_privacy_mode';
|
|
115404
|
+
} | {
|
|
115405
|
+
/** Date and time at which Seam created the warning. */
|
|
115406
|
+
created_at: string;
|
|
115407
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
115408
|
+
message: string;
|
|
115409
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
115410
|
+
warning_code: 'privacy_mode';
|
|
115181
115411
|
})[];
|
|
115182
115412
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
115183
115413
|
latch_metadata?: {
|
|
@@ -122432,6 +122662,13 @@ type Routes = {
|
|
|
122432
122662
|
created_at: string;
|
|
122433
122663
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
122434
122664
|
warning_code: 'salto_ks_privacy_mode';
|
|
122665
|
+
} | {
|
|
122666
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
122667
|
+
message: string;
|
|
122668
|
+
/** Date and time at which Seam created the warning. */
|
|
122669
|
+
created_at: string;
|
|
122670
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
122671
|
+
warning_code: 'privacy_mode';
|
|
122435
122672
|
} | {
|
|
122436
122673
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
122437
122674
|
message: string;
|
|
@@ -127333,6 +127570,13 @@ type Routes = {
|
|
|
127333
127570
|
created_at: string;
|
|
127334
127571
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127335
127572
|
warning_code: 'salto_ks_privacy_mode';
|
|
127573
|
+
} | {
|
|
127574
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
127575
|
+
message: string;
|
|
127576
|
+
/** Date and time at which Seam created the warning. */
|
|
127577
|
+
created_at: string;
|
|
127578
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127579
|
+
warning_code: 'privacy_mode';
|
|
127336
127580
|
} | {
|
|
127337
127581
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
127338
127582
|
message: string;
|
|
@@ -128807,6 +129051,13 @@ type Routes = {
|
|
|
128807
129051
|
created_at: string;
|
|
128808
129052
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128809
129053
|
warning_code: 'salto_ks_privacy_mode';
|
|
129054
|
+
} | {
|
|
129055
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
129056
|
+
message: string;
|
|
129057
|
+
/** Date and time at which Seam created the warning. */
|
|
129058
|
+
created_at: string;
|
|
129059
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129060
|
+
warning_code: 'privacy_mode';
|
|
128810
129061
|
} | {
|
|
128811
129062
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
128812
129063
|
message: string;
|
|
@@ -137997,6 +138248,13 @@ type Routes = {
|
|
|
137997
138248
|
created_at: string;
|
|
137998
138249
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
137999
138250
|
warning_code: 'salto_ks_privacy_mode';
|
|
138251
|
+
} | {
|
|
138252
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
138253
|
+
message: string;
|
|
138254
|
+
/** Date and time at which Seam created the warning. */
|
|
138255
|
+
created_at: string;
|
|
138256
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
138257
|
+
warning_code: 'privacy_mode';
|
|
138000
138258
|
} | {
|
|
138001
138259
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
138002
138260
|
message: string;
|
|
@@ -139473,6 +139731,13 @@ type Routes = {
|
|
|
139473
139731
|
created_at: string;
|
|
139474
139732
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
139475
139733
|
warning_code: 'salto_ks_privacy_mode';
|
|
139734
|
+
} | {
|
|
139735
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
139736
|
+
message: string;
|
|
139737
|
+
/** Date and time at which Seam created the warning. */
|
|
139738
|
+
created_at: string;
|
|
139739
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
139740
|
+
warning_code: 'privacy_mode';
|
|
139476
139741
|
} | {
|
|
139477
139742
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
139478
139743
|
message: string;
|
|
@@ -139715,6 +139980,13 @@ type Routes = {
|
|
|
139715
139980
|
message: string;
|
|
139716
139981
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
139717
139982
|
warning_code: 'salto_ks_privacy_mode';
|
|
139983
|
+
} | {
|
|
139984
|
+
/** Date and time at which Seam created the warning. */
|
|
139985
|
+
created_at: string;
|
|
139986
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
139987
|
+
message: string;
|
|
139988
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
139989
|
+
warning_code: 'privacy_mode';
|
|
139718
139990
|
})[];
|
|
139719
139991
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
139720
139992
|
latch_metadata?: {
|
|
@@ -142204,6 +142476,13 @@ type Routes = {
|
|
|
142204
142476
|
created_at: string;
|
|
142205
142477
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
142206
142478
|
warning_code: 'salto_ks_privacy_mode';
|
|
142479
|
+
} | {
|
|
142480
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
142481
|
+
message: string;
|
|
142482
|
+
/** Date and time at which Seam created the warning. */
|
|
142483
|
+
created_at: string;
|
|
142484
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
142485
|
+
warning_code: 'privacy_mode';
|
|
142207
142486
|
} | {
|
|
142208
142487
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
142209
142488
|
message: string;
|
|
@@ -142432,6 +142711,13 @@ type Routes = {
|
|
|
142432
142711
|
message: string;
|
|
142433
142712
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
142434
142713
|
warning_code: 'salto_ks_privacy_mode';
|
|
142714
|
+
} | {
|
|
142715
|
+
/** Date and time at which Seam created the warning. */
|
|
142716
|
+
created_at: string;
|
|
142717
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
142718
|
+
message: string;
|
|
142719
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
142720
|
+
warning_code: 'privacy_mode';
|
|
142435
142721
|
})[];
|
|
142436
142722
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
142437
142723
|
latch_metadata?: {
|
|
@@ -145520,6 +145806,13 @@ type Routes = {
|
|
|
145520
145806
|
created_at: string;
|
|
145521
145807
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
145522
145808
|
warning_code: 'salto_ks_privacy_mode';
|
|
145809
|
+
} | {
|
|
145810
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
145811
|
+
message: string;
|
|
145812
|
+
/** Date and time at which Seam created the warning. */
|
|
145813
|
+
created_at: string;
|
|
145814
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
145815
|
+
warning_code: 'privacy_mode';
|
|
145523
145816
|
} | {
|
|
145524
145817
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
145525
145818
|
message: string;
|