@seamapi/types 1.497.0 → 1.499.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 +88 -28
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +174 -0
- package/dist/index.cjs +88 -28
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +86 -0
- package/lib/seam/connect/models/batch.js +3 -0
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +86 -0
- package/lib/seam/connect/openapi.js +60 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +45 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/batch.ts +3 -0
- package/src/lib/seam/connect/openapi.ts +63 -2
- package/src/lib/seam/connect/route-types.ts +49 -0
|
@@ -40785,6 +40785,31 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
40785
40785
|
max_override_period_minutes?: number | null | undefined;
|
|
40786
40786
|
is_override_allowed?: boolean | undefined;
|
|
40787
40787
|
}>, "many">>;
|
|
40788
|
+
noise_thresholds: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
40789
|
+
noise_threshold_id: z.ZodString;
|
|
40790
|
+
device_id: z.ZodString;
|
|
40791
|
+
name: z.ZodString;
|
|
40792
|
+
noise_threshold_nrs: z.ZodOptional<z.ZodNumber>;
|
|
40793
|
+
starts_daily_at: z.ZodString;
|
|
40794
|
+
ends_daily_at: z.ZodString;
|
|
40795
|
+
noise_threshold_decibels: z.ZodNumber;
|
|
40796
|
+
}, "strip", z.ZodTypeAny, {
|
|
40797
|
+
name: string;
|
|
40798
|
+
device_id: string;
|
|
40799
|
+
noise_threshold_id: string;
|
|
40800
|
+
starts_daily_at: string;
|
|
40801
|
+
ends_daily_at: string;
|
|
40802
|
+
noise_threshold_decibels: number;
|
|
40803
|
+
noise_threshold_nrs?: number | undefined;
|
|
40804
|
+
}, {
|
|
40805
|
+
name: string;
|
|
40806
|
+
device_id: string;
|
|
40807
|
+
noise_threshold_id: string;
|
|
40808
|
+
starts_daily_at: string;
|
|
40809
|
+
ends_daily_at: string;
|
|
40810
|
+
noise_threshold_decibels: number;
|
|
40811
|
+
noise_threshold_nrs?: number | undefined;
|
|
40812
|
+
}>, "many">>;
|
|
40788
40813
|
}, "strip", z.ZodTypeAny, {
|
|
40789
40814
|
batch_type: "workspaces";
|
|
40790
40815
|
thermostat_daily_programs?: {
|
|
@@ -44690,6 +44715,15 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
44690
44715
|
max_override_period_minutes?: number | null | undefined;
|
|
44691
44716
|
is_override_allowed?: boolean | undefined;
|
|
44692
44717
|
}[] | undefined;
|
|
44718
|
+
noise_thresholds?: {
|
|
44719
|
+
name: string;
|
|
44720
|
+
device_id: string;
|
|
44721
|
+
noise_threshold_id: string;
|
|
44722
|
+
starts_daily_at: string;
|
|
44723
|
+
ends_daily_at: string;
|
|
44724
|
+
noise_threshold_decibels: number;
|
|
44725
|
+
noise_threshold_nrs?: number | undefined;
|
|
44726
|
+
}[] | undefined;
|
|
44693
44727
|
}, {
|
|
44694
44728
|
batch_type: "workspaces";
|
|
44695
44729
|
thermostat_daily_programs?: {
|
|
@@ -48595,6 +48629,15 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
48595
48629
|
max_override_period_minutes?: number | null | undefined;
|
|
48596
48630
|
is_override_allowed?: boolean | undefined;
|
|
48597
48631
|
}[] | undefined;
|
|
48632
|
+
noise_thresholds?: {
|
|
48633
|
+
name: string;
|
|
48634
|
+
device_id: string;
|
|
48635
|
+
noise_threshold_id: string;
|
|
48636
|
+
starts_daily_at: string;
|
|
48637
|
+
ends_daily_at: string;
|
|
48638
|
+
noise_threshold_decibels: number;
|
|
48639
|
+
noise_threshold_nrs?: number | undefined;
|
|
48640
|
+
}[] | undefined;
|
|
48598
48641
|
}>;
|
|
48599
48642
|
export declare const batch: z.ZodObject<{
|
|
48600
48643
|
batch_type: z.ZodEnum<["workspaces", "spaces", "access_grants", "access_methods"]>;
|
|
@@ -69090,6 +69133,31 @@ export declare const batch: z.ZodObject<{
|
|
|
69090
69133
|
max_override_period_minutes?: number | null | undefined;
|
|
69091
69134
|
is_override_allowed?: boolean | undefined;
|
|
69092
69135
|
}>, "many">>;
|
|
69136
|
+
noise_thresholds: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
69137
|
+
noise_threshold_id: z.ZodString;
|
|
69138
|
+
device_id: z.ZodString;
|
|
69139
|
+
name: z.ZodString;
|
|
69140
|
+
noise_threshold_nrs: z.ZodOptional<z.ZodNumber>;
|
|
69141
|
+
starts_daily_at: z.ZodString;
|
|
69142
|
+
ends_daily_at: z.ZodString;
|
|
69143
|
+
noise_threshold_decibels: z.ZodNumber;
|
|
69144
|
+
}, "strip", z.ZodTypeAny, {
|
|
69145
|
+
name: string;
|
|
69146
|
+
device_id: string;
|
|
69147
|
+
noise_threshold_id: string;
|
|
69148
|
+
starts_daily_at: string;
|
|
69149
|
+
ends_daily_at: string;
|
|
69150
|
+
noise_threshold_decibels: number;
|
|
69151
|
+
noise_threshold_nrs?: number | undefined;
|
|
69152
|
+
}, {
|
|
69153
|
+
name: string;
|
|
69154
|
+
device_id: string;
|
|
69155
|
+
noise_threshold_id: string;
|
|
69156
|
+
starts_daily_at: string;
|
|
69157
|
+
ends_daily_at: string;
|
|
69158
|
+
noise_threshold_decibels: number;
|
|
69159
|
+
noise_threshold_nrs?: number | undefined;
|
|
69160
|
+
}>, "many">>;
|
|
69093
69161
|
}, "strip", z.ZodTypeAny, {
|
|
69094
69162
|
batch_type: "spaces" | "access_grants" | "access_methods" | "workspaces";
|
|
69095
69163
|
thermostat_daily_programs?: {
|
|
@@ -72924,6 +72992,15 @@ export declare const batch: z.ZodObject<{
|
|
|
72924
72992
|
max_override_period_minutes?: number | null | undefined;
|
|
72925
72993
|
is_override_allowed?: boolean | undefined;
|
|
72926
72994
|
}[] | undefined;
|
|
72995
|
+
noise_thresholds?: {
|
|
72996
|
+
name: string;
|
|
72997
|
+
device_id: string;
|
|
72998
|
+
noise_threshold_id: string;
|
|
72999
|
+
starts_daily_at: string;
|
|
73000
|
+
ends_daily_at: string;
|
|
73001
|
+
noise_threshold_decibels: number;
|
|
73002
|
+
noise_threshold_nrs?: number | undefined;
|
|
73003
|
+
}[] | undefined;
|
|
72927
73004
|
}, {
|
|
72928
73005
|
batch_type: "spaces" | "access_grants" | "access_methods" | "workspaces";
|
|
72929
73006
|
thermostat_daily_programs?: {
|
|
@@ -76758,6 +76835,15 @@ export declare const batch: z.ZodObject<{
|
|
|
76758
76835
|
max_override_period_minutes?: number | null | undefined;
|
|
76759
76836
|
is_override_allowed?: boolean | undefined;
|
|
76760
76837
|
}[] | undefined;
|
|
76838
|
+
noise_thresholds?: {
|
|
76839
|
+
name: string;
|
|
76840
|
+
device_id: string;
|
|
76841
|
+
noise_threshold_id: string;
|
|
76842
|
+
starts_daily_at: string;
|
|
76843
|
+
ends_daily_at: string;
|
|
76844
|
+
noise_threshold_decibels: number;
|
|
76845
|
+
noise_threshold_nrs?: number | undefined;
|
|
76846
|
+
}[] | undefined;
|
|
76761
76847
|
}>;
|
|
76762
76848
|
export type WorkspacesBatch = z.infer<typeof workspaces_batch>;
|
|
76763
76849
|
export type Batch = z.infer<typeof batch>;
|
|
@@ -15,6 +15,7 @@ import { device } from './devices/index.js';
|
|
|
15
15
|
import { unmanaged_device } from './devices/unmanaged-device.js';
|
|
16
16
|
import { seam_event } from './events/seam-event.js';
|
|
17
17
|
import { instant_key } from './instant-keys/instant-key.js';
|
|
18
|
+
import { noise_threshold } from './noise-sensors/noise-threshold.js';
|
|
18
19
|
import { space } from './spaces/index.js';
|
|
19
20
|
import { thermostat_daily_program, thermostat_schedule, } from './thermostats/index.js';
|
|
20
21
|
import { user_identity } from './user-identities/index.js';
|
|
@@ -74,6 +75,7 @@ export const workspaces_batch = z
|
|
|
74
75
|
unmanaged_access_codes: unmanaged_access_code.array().optional(),
|
|
75
76
|
thermostat_daily_programs: thermostat_daily_program.array().optional(),
|
|
76
77
|
thermostat_schedules: thermostat_schedule.array().optional(),
|
|
78
|
+
noise_thresholds: noise_threshold.array().optional(),
|
|
77
79
|
})
|
|
78
80
|
.describe('A batch of workspace resources.');
|
|
79
81
|
export const batch = z
|
|
@@ -109,6 +111,7 @@ export const batch = z
|
|
|
109
111
|
unmanaged_access_codes: unmanaged_access_code.array().optional(),
|
|
110
112
|
thermostat_daily_programs: thermostat_daily_program.array().optional(),
|
|
111
113
|
thermostat_schedules: thermostat_schedule.array().optional(),
|
|
114
|
+
noise_thresholds: noise_threshold.array().optional(),
|
|
112
115
|
})
|
|
113
116
|
.describe('A batch of workspace resources.');
|
|
114
117
|
//# sourceMappingURL=batch.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"batch.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/models/batch.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"batch.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/models/batch.ts"],"names":[],"mappings":"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"}
|
|
@@ -18251,6 +18251,12 @@ declare const _default: {
|
|
|
18251
18251
|
};
|
|
18252
18252
|
type: string;
|
|
18253
18253
|
};
|
|
18254
|
+
noise_thresholds: {
|
|
18255
|
+
items: {
|
|
18256
|
+
$ref: string;
|
|
18257
|
+
};
|
|
18258
|
+
type: string;
|
|
18259
|
+
};
|
|
18254
18260
|
spaces: {
|
|
18255
18261
|
items: {
|
|
18256
18262
|
$ref: string;
|
|
@@ -18496,6 +18502,12 @@ declare const _default: {
|
|
|
18496
18502
|
};
|
|
18497
18503
|
type: string;
|
|
18498
18504
|
};
|
|
18505
|
+
noise_thresholds: {
|
|
18506
|
+
items: {
|
|
18507
|
+
$ref: string;
|
|
18508
|
+
};
|
|
18509
|
+
type: string;
|
|
18510
|
+
};
|
|
18499
18511
|
spaces: {
|
|
18500
18512
|
items: {
|
|
18501
18513
|
$ref: string;
|
|
@@ -22866,6 +22878,9 @@ declare const _default: {
|
|
|
22866
22878
|
'x-deprecated'?: never;
|
|
22867
22879
|
items?: never;
|
|
22868
22880
|
minLength?: never;
|
|
22881
|
+
default?: never;
|
|
22882
|
+
exclusiveMinimum?: never;
|
|
22883
|
+
minimum?: never;
|
|
22869
22884
|
};
|
|
22870
22885
|
} | {
|
|
22871
22886
|
in: string;
|
|
@@ -22879,6 +22894,9 @@ declare const _default: {
|
|
|
22879
22894
|
description?: never;
|
|
22880
22895
|
items?: never;
|
|
22881
22896
|
minLength?: never;
|
|
22897
|
+
default?: never;
|
|
22898
|
+
exclusiveMinimum?: never;
|
|
22899
|
+
minimum?: never;
|
|
22882
22900
|
};
|
|
22883
22901
|
} | {
|
|
22884
22902
|
in: string;
|
|
@@ -22895,6 +22913,9 @@ declare const _default: {
|
|
|
22895
22913
|
nullable?: never;
|
|
22896
22914
|
'x-deprecated'?: never;
|
|
22897
22915
|
minLength?: never;
|
|
22916
|
+
default?: never;
|
|
22917
|
+
exclusiveMinimum?: never;
|
|
22918
|
+
minimum?: never;
|
|
22898
22919
|
};
|
|
22899
22920
|
} | {
|
|
22900
22921
|
in: string;
|
|
@@ -22908,6 +22929,41 @@ declare const _default: {
|
|
|
22908
22929
|
nullable?: never;
|
|
22909
22930
|
'x-deprecated'?: never;
|
|
22910
22931
|
items?: never;
|
|
22932
|
+
default?: never;
|
|
22933
|
+
exclusiveMinimum?: never;
|
|
22934
|
+
minimum?: never;
|
|
22935
|
+
};
|
|
22936
|
+
} | {
|
|
22937
|
+
in: string;
|
|
22938
|
+
name: string;
|
|
22939
|
+
schema: {
|
|
22940
|
+
default: number;
|
|
22941
|
+
description: string;
|
|
22942
|
+
exclusiveMinimum: boolean;
|
|
22943
|
+
minimum: number;
|
|
22944
|
+
type: string;
|
|
22945
|
+
format?: never;
|
|
22946
|
+
deprecated?: never;
|
|
22947
|
+
nullable?: never;
|
|
22948
|
+
'x-deprecated'?: never;
|
|
22949
|
+
items?: never;
|
|
22950
|
+
minLength?: never;
|
|
22951
|
+
};
|
|
22952
|
+
} | {
|
|
22953
|
+
in: string;
|
|
22954
|
+
name: string;
|
|
22955
|
+
schema: {
|
|
22956
|
+
description: string;
|
|
22957
|
+
nullable: boolean;
|
|
22958
|
+
type: string;
|
|
22959
|
+
format?: never;
|
|
22960
|
+
deprecated?: never;
|
|
22961
|
+
'x-deprecated'?: never;
|
|
22962
|
+
items?: never;
|
|
22963
|
+
minLength?: never;
|
|
22964
|
+
default?: never;
|
|
22965
|
+
exclusiveMinimum?: never;
|
|
22966
|
+
minimum?: never;
|
|
22911
22967
|
};
|
|
22912
22968
|
})[];
|
|
22913
22969
|
responses: {
|
|
@@ -22925,6 +22981,9 @@ declare const _default: {
|
|
|
22925
22981
|
ok: {
|
|
22926
22982
|
type: string;
|
|
22927
22983
|
};
|
|
22984
|
+
pagination: {
|
|
22985
|
+
$ref: string;
|
|
22986
|
+
};
|
|
22928
22987
|
};
|
|
22929
22988
|
required: string[];
|
|
22930
22989
|
type: string;
|
|
@@ -23020,6 +23079,13 @@ declare const _default: {
|
|
|
23020
23079
|
format: string;
|
|
23021
23080
|
type: string;
|
|
23022
23081
|
};
|
|
23082
|
+
limit: {
|
|
23083
|
+
default: number;
|
|
23084
|
+
description: string;
|
|
23085
|
+
exclusiveMinimum: boolean;
|
|
23086
|
+
minimum: number;
|
|
23087
|
+
type: string;
|
|
23088
|
+
};
|
|
23023
23089
|
location_id: {
|
|
23024
23090
|
deprecated: boolean;
|
|
23025
23091
|
format: string;
|
|
@@ -23027,6 +23093,11 @@ declare const _default: {
|
|
|
23027
23093
|
type: string;
|
|
23028
23094
|
'x-deprecated': string;
|
|
23029
23095
|
};
|
|
23096
|
+
page_cursor: {
|
|
23097
|
+
description: string;
|
|
23098
|
+
nullable: boolean;
|
|
23099
|
+
type: string;
|
|
23100
|
+
};
|
|
23030
23101
|
search: {
|
|
23031
23102
|
description: string;
|
|
23032
23103
|
minLength: number;
|
|
@@ -23058,6 +23129,9 @@ declare const _default: {
|
|
|
23058
23129
|
ok: {
|
|
23059
23130
|
type: string;
|
|
23060
23131
|
};
|
|
23132
|
+
pagination: {
|
|
23133
|
+
$ref: string;
|
|
23134
|
+
};
|
|
23061
23135
|
};
|
|
23062
23136
|
required: string[];
|
|
23063
23137
|
type: string;
|
|
@@ -48784,6 +48858,12 @@ declare const _default: {
|
|
|
48784
48858
|
};
|
|
48785
48859
|
type: string;
|
|
48786
48860
|
};
|
|
48861
|
+
noise_thresholds: {
|
|
48862
|
+
items: {
|
|
48863
|
+
$ref: string;
|
|
48864
|
+
};
|
|
48865
|
+
type: string;
|
|
48866
|
+
};
|
|
48787
48867
|
spaces: {
|
|
48788
48868
|
items: {
|
|
48789
48869
|
$ref: string;
|
|
@@ -49011,6 +49091,12 @@ declare const _default: {
|
|
|
49011
49091
|
};
|
|
49012
49092
|
type: string;
|
|
49013
49093
|
};
|
|
49094
|
+
noise_thresholds: {
|
|
49095
|
+
items: {
|
|
49096
|
+
$ref: string;
|
|
49097
|
+
};
|
|
49098
|
+
type: string;
|
|
49099
|
+
};
|
|
49014
49100
|
spaces: {
|
|
49015
49101
|
items: {
|
|
49016
49102
|
$ref: string;
|
|
@@ -26396,6 +26396,12 @@ export default {
|
|
|
26396
26396
|
items: { $ref: '#/components/schemas/instant_key' },
|
|
26397
26397
|
type: 'array',
|
|
26398
26398
|
},
|
|
26399
|
+
noise_thresholds: {
|
|
26400
|
+
items: {
|
|
26401
|
+
$ref: '#/components/schemas/noise_threshold',
|
|
26402
|
+
},
|
|
26403
|
+
type: 'array',
|
|
26404
|
+
},
|
|
26399
26405
|
spaces: {
|
|
26400
26406
|
items: { $ref: '#/components/schemas/space' },
|
|
26401
26407
|
type: 'array',
|
|
@@ -26603,6 +26609,12 @@ export default {
|
|
|
26603
26609
|
items: { $ref: '#/components/schemas/instant_key' },
|
|
26604
26610
|
type: 'array',
|
|
26605
26611
|
},
|
|
26612
|
+
noise_thresholds: {
|
|
26613
|
+
items: {
|
|
26614
|
+
$ref: '#/components/schemas/noise_threshold',
|
|
26615
|
+
},
|
|
26616
|
+
type: 'array',
|
|
26617
|
+
},
|
|
26606
26618
|
spaces: {
|
|
26607
26619
|
items: { $ref: '#/components/schemas/space' },
|
|
26608
26620
|
type: 'array',
|
|
@@ -30256,6 +30268,26 @@ export default {
|
|
|
30256
30268
|
type: 'string',
|
|
30257
30269
|
},
|
|
30258
30270
|
},
|
|
30271
|
+
{
|
|
30272
|
+
in: 'query',
|
|
30273
|
+
name: 'limit',
|
|
30274
|
+
schema: {
|
|
30275
|
+
default: 900,
|
|
30276
|
+
description: 'Maximum number of records to return per page.',
|
|
30277
|
+
exclusiveMinimum: true,
|
|
30278
|
+
minimum: 0,
|
|
30279
|
+
type: 'integer',
|
|
30280
|
+
},
|
|
30281
|
+
},
|
|
30282
|
+
{
|
|
30283
|
+
in: 'query',
|
|
30284
|
+
name: 'page_cursor',
|
|
30285
|
+
schema: {
|
|
30286
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
30287
|
+
nullable: true,
|
|
30288
|
+
type: 'string',
|
|
30289
|
+
},
|
|
30290
|
+
},
|
|
30259
30291
|
],
|
|
30260
30292
|
responses: {
|
|
30261
30293
|
200: {
|
|
@@ -30268,8 +30300,9 @@ export default {
|
|
|
30268
30300
|
type: 'array',
|
|
30269
30301
|
},
|
|
30270
30302
|
ok: { type: 'boolean' },
|
|
30303
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
30271
30304
|
},
|
|
30272
|
-
required: ['acs_entrances', 'ok'],
|
|
30305
|
+
required: ['acs_entrances', 'pagination', 'ok'],
|
|
30273
30306
|
type: 'object',
|
|
30274
30307
|
},
|
|
30275
30308
|
},
|
|
@@ -30332,6 +30365,13 @@ export default {
|
|
|
30332
30365
|
format: 'uuid',
|
|
30333
30366
|
type: 'string',
|
|
30334
30367
|
},
|
|
30368
|
+
limit: {
|
|
30369
|
+
default: 900,
|
|
30370
|
+
description: 'Maximum number of records to return per page.',
|
|
30371
|
+
exclusiveMinimum: true,
|
|
30372
|
+
minimum: 0,
|
|
30373
|
+
type: 'integer',
|
|
30374
|
+
},
|
|
30335
30375
|
location_id: {
|
|
30336
30376
|
deprecated: true,
|
|
30337
30377
|
format: 'uuid',
|
|
@@ -30339,6 +30379,11 @@ export default {
|
|
|
30339
30379
|
type: 'string',
|
|
30340
30380
|
'x-deprecated': 'Use `space_id`.',
|
|
30341
30381
|
},
|
|
30382
|
+
page_cursor: {
|
|
30383
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
30384
|
+
nullable: true,
|
|
30385
|
+
type: 'string',
|
|
30386
|
+
},
|
|
30342
30387
|
search: {
|
|
30343
30388
|
description: 'String for which to search. Filters returned entrances to include all records that satisfy a partial match using `display_name`.',
|
|
30344
30389
|
minLength: 1,
|
|
@@ -30366,8 +30411,9 @@ export default {
|
|
|
30366
30411
|
type: 'array',
|
|
30367
30412
|
},
|
|
30368
30413
|
ok: { type: 'boolean' },
|
|
30414
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
30369
30415
|
},
|
|
30370
|
-
required: ['acs_entrances', 'ok'],
|
|
30416
|
+
required: ['acs_entrances', 'pagination', 'ok'],
|
|
30371
30417
|
type: 'object',
|
|
30372
30418
|
},
|
|
30373
30419
|
},
|
|
@@ -52581,6 +52627,12 @@ export default {
|
|
|
52581
52627
|
items: { $ref: '#/components/schemas/instant_key' },
|
|
52582
52628
|
type: 'array',
|
|
52583
52629
|
},
|
|
52630
|
+
noise_thresholds: {
|
|
52631
|
+
items: {
|
|
52632
|
+
$ref: '#/components/schemas/noise_threshold',
|
|
52633
|
+
},
|
|
52634
|
+
type: 'array',
|
|
52635
|
+
},
|
|
52584
52636
|
spaces: {
|
|
52585
52637
|
items: { $ref: '#/components/schemas/space' },
|
|
52586
52638
|
type: 'array',
|
|
@@ -52768,6 +52820,12 @@ export default {
|
|
|
52768
52820
|
items: { $ref: '#/components/schemas/instant_key' },
|
|
52769
52821
|
type: 'array',
|
|
52770
52822
|
},
|
|
52823
|
+
noise_thresholds: {
|
|
52824
|
+
items: {
|
|
52825
|
+
$ref: '#/components/schemas/noise_threshold',
|
|
52826
|
+
},
|
|
52827
|
+
type: 'array',
|
|
52828
|
+
},
|
|
52771
52829
|
spaces: {
|
|
52772
52830
|
items: { $ref: '#/components/schemas/space' },
|
|
52773
52831
|
type: 'array',
|