@seamapi/types 1.498.0 → 1.500.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 +77 -139
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +140 -170
- package/dist/index.cjs +77 -139
- 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 +65 -170
- package/lib/seam/connect/openapi.js +51 -115
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +32 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/batch.ts +3 -0
- package/src/lib/seam/connect/openapi.ts +51 -115
- package/src/lib/seam/connect/route-types.ts +36 -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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"}
|
|
@@ -4257,6 +4257,42 @@ declare const _default: {
|
|
|
4257
4257
|
type: string;
|
|
4258
4258
|
'x-route-path': string;
|
|
4259
4259
|
};
|
|
4260
|
+
customization_profile: {
|
|
4261
|
+
description: string;
|
|
4262
|
+
properties: {
|
|
4263
|
+
created_at: {
|
|
4264
|
+
format: string;
|
|
4265
|
+
type: string;
|
|
4266
|
+
};
|
|
4267
|
+
customization_profile_id: {
|
|
4268
|
+
format: string;
|
|
4269
|
+
type: string;
|
|
4270
|
+
};
|
|
4271
|
+
logo_url: {
|
|
4272
|
+
format: string;
|
|
4273
|
+
type: string;
|
|
4274
|
+
};
|
|
4275
|
+
name: {
|
|
4276
|
+
nullable: boolean;
|
|
4277
|
+
type: string;
|
|
4278
|
+
};
|
|
4279
|
+
primary_color: {
|
|
4280
|
+
type: string;
|
|
4281
|
+
};
|
|
4282
|
+
secondary_color: {
|
|
4283
|
+
type: string;
|
|
4284
|
+
};
|
|
4285
|
+
workspace_id: {
|
|
4286
|
+
format: string;
|
|
4287
|
+
type: string;
|
|
4288
|
+
};
|
|
4289
|
+
};
|
|
4290
|
+
required: string[];
|
|
4291
|
+
type: string;
|
|
4292
|
+
'x-route-path': string;
|
|
4293
|
+
'x-title': string;
|
|
4294
|
+
'x-undocumented': string;
|
|
4295
|
+
};
|
|
4260
4296
|
device: {
|
|
4261
4297
|
description: string;
|
|
4262
4298
|
properties: {
|
|
@@ -18251,6 +18287,12 @@ declare const _default: {
|
|
|
18251
18287
|
};
|
|
18252
18288
|
type: string;
|
|
18253
18289
|
};
|
|
18290
|
+
noise_thresholds: {
|
|
18291
|
+
items: {
|
|
18292
|
+
$ref: string;
|
|
18293
|
+
};
|
|
18294
|
+
type: string;
|
|
18295
|
+
};
|
|
18254
18296
|
spaces: {
|
|
18255
18297
|
items: {
|
|
18256
18298
|
$ref: string;
|
|
@@ -18496,6 +18538,12 @@ declare const _default: {
|
|
|
18496
18538
|
};
|
|
18497
18539
|
type: string;
|
|
18498
18540
|
};
|
|
18541
|
+
noise_thresholds: {
|
|
18542
|
+
items: {
|
|
18543
|
+
$ref: string;
|
|
18544
|
+
};
|
|
18545
|
+
type: string;
|
|
18546
|
+
};
|
|
18499
18547
|
spaces: {
|
|
18500
18548
|
items: {
|
|
18501
18549
|
$ref: string;
|
|
@@ -48015,40 +48063,7 @@ declare const _default: {
|
|
|
48015
48063
|
schema: {
|
|
48016
48064
|
properties: {
|
|
48017
48065
|
customization_profile: {
|
|
48018
|
-
|
|
48019
|
-
properties: {
|
|
48020
|
-
created_at: {
|
|
48021
|
-
format: string;
|
|
48022
|
-
type: string;
|
|
48023
|
-
};
|
|
48024
|
-
customization_profile_id: {
|
|
48025
|
-
format: string;
|
|
48026
|
-
type: string;
|
|
48027
|
-
};
|
|
48028
|
-
logo_url: {
|
|
48029
|
-
format: string;
|
|
48030
|
-
type: string;
|
|
48031
|
-
};
|
|
48032
|
-
name: {
|
|
48033
|
-
nullable: boolean;
|
|
48034
|
-
type: string;
|
|
48035
|
-
};
|
|
48036
|
-
primary_color: {
|
|
48037
|
-
type: string;
|
|
48038
|
-
};
|
|
48039
|
-
secondary_color: {
|
|
48040
|
-
type: string;
|
|
48041
|
-
};
|
|
48042
|
-
workspace_id: {
|
|
48043
|
-
format: string;
|
|
48044
|
-
type: string;
|
|
48045
|
-
};
|
|
48046
|
-
};
|
|
48047
|
-
required: string[];
|
|
48048
|
-
type: string;
|
|
48049
|
-
'x-route-path': string;
|
|
48050
|
-
'x-title': string;
|
|
48051
|
-
'x-undocumented': string;
|
|
48066
|
+
$ref: string;
|
|
48052
48067
|
};
|
|
48053
48068
|
ok: {
|
|
48054
48069
|
type: string;
|
|
@@ -48119,40 +48134,7 @@ declare const _default: {
|
|
|
48119
48134
|
schema: {
|
|
48120
48135
|
properties: {
|
|
48121
48136
|
customization_profile: {
|
|
48122
|
-
|
|
48123
|
-
properties: {
|
|
48124
|
-
created_at: {
|
|
48125
|
-
format: string;
|
|
48126
|
-
type: string;
|
|
48127
|
-
};
|
|
48128
|
-
customization_profile_id: {
|
|
48129
|
-
format: string;
|
|
48130
|
-
type: string;
|
|
48131
|
-
};
|
|
48132
|
-
logo_url: {
|
|
48133
|
-
format: string;
|
|
48134
|
-
type: string;
|
|
48135
|
-
};
|
|
48136
|
-
name: {
|
|
48137
|
-
nullable: boolean;
|
|
48138
|
-
type: string;
|
|
48139
|
-
};
|
|
48140
|
-
primary_color: {
|
|
48141
|
-
type: string;
|
|
48142
|
-
};
|
|
48143
|
-
secondary_color: {
|
|
48144
|
-
type: string;
|
|
48145
|
-
};
|
|
48146
|
-
workspace_id: {
|
|
48147
|
-
format: string;
|
|
48148
|
-
type: string;
|
|
48149
|
-
};
|
|
48150
|
-
};
|
|
48151
|
-
required: string[];
|
|
48152
|
-
type: string;
|
|
48153
|
-
'x-route-path': string;
|
|
48154
|
-
'x-title': string;
|
|
48155
|
-
'x-undocumented': string;
|
|
48137
|
+
$ref: string;
|
|
48156
48138
|
};
|
|
48157
48139
|
ok: {
|
|
48158
48140
|
type: string;
|
|
@@ -48228,40 +48210,7 @@ declare const _default: {
|
|
|
48228
48210
|
schema: {
|
|
48229
48211
|
properties: {
|
|
48230
48212
|
customization_profile: {
|
|
48231
|
-
|
|
48232
|
-
properties: {
|
|
48233
|
-
created_at: {
|
|
48234
|
-
format: string;
|
|
48235
|
-
type: string;
|
|
48236
|
-
};
|
|
48237
|
-
customization_profile_id: {
|
|
48238
|
-
format: string;
|
|
48239
|
-
type: string;
|
|
48240
|
-
};
|
|
48241
|
-
logo_url: {
|
|
48242
|
-
format: string;
|
|
48243
|
-
type: string;
|
|
48244
|
-
};
|
|
48245
|
-
name: {
|
|
48246
|
-
nullable: boolean;
|
|
48247
|
-
type: string;
|
|
48248
|
-
};
|
|
48249
|
-
primary_color: {
|
|
48250
|
-
type: string;
|
|
48251
|
-
};
|
|
48252
|
-
secondary_color: {
|
|
48253
|
-
type: string;
|
|
48254
|
-
};
|
|
48255
|
-
workspace_id: {
|
|
48256
|
-
format: string;
|
|
48257
|
-
type: string;
|
|
48258
|
-
};
|
|
48259
|
-
};
|
|
48260
|
-
required: string[];
|
|
48261
|
-
type: string;
|
|
48262
|
-
'x-route-path': string;
|
|
48263
|
-
'x-title': string;
|
|
48264
|
-
'x-undocumented': string;
|
|
48213
|
+
$ref: string;
|
|
48265
48214
|
};
|
|
48266
48215
|
ok: {
|
|
48267
48216
|
type: string;
|
|
@@ -48324,40 +48273,7 @@ declare const _default: {
|
|
|
48324
48273
|
properties: {
|
|
48325
48274
|
customization_profiles: {
|
|
48326
48275
|
items: {
|
|
48327
|
-
|
|
48328
|
-
properties: {
|
|
48329
|
-
created_at: {
|
|
48330
|
-
format: string;
|
|
48331
|
-
type: string;
|
|
48332
|
-
};
|
|
48333
|
-
customization_profile_id: {
|
|
48334
|
-
format: string;
|
|
48335
|
-
type: string;
|
|
48336
|
-
};
|
|
48337
|
-
logo_url: {
|
|
48338
|
-
format: string;
|
|
48339
|
-
type: string;
|
|
48340
|
-
};
|
|
48341
|
-
name: {
|
|
48342
|
-
nullable: boolean;
|
|
48343
|
-
type: string;
|
|
48344
|
-
};
|
|
48345
|
-
primary_color: {
|
|
48346
|
-
type: string;
|
|
48347
|
-
};
|
|
48348
|
-
secondary_color: {
|
|
48349
|
-
type: string;
|
|
48350
|
-
};
|
|
48351
|
-
workspace_id: {
|
|
48352
|
-
format: string;
|
|
48353
|
-
type: string;
|
|
48354
|
-
};
|
|
48355
|
-
};
|
|
48356
|
-
required: string[];
|
|
48357
|
-
type: string;
|
|
48358
|
-
'x-route-path': string;
|
|
48359
|
-
'x-title': string;
|
|
48360
|
-
'x-undocumented': string;
|
|
48276
|
+
$ref: string;
|
|
48361
48277
|
};
|
|
48362
48278
|
type: string;
|
|
48363
48279
|
};
|
|
@@ -48420,40 +48336,7 @@ declare const _default: {
|
|
|
48420
48336
|
properties: {
|
|
48421
48337
|
customization_profiles: {
|
|
48422
48338
|
items: {
|
|
48423
|
-
|
|
48424
|
-
properties: {
|
|
48425
|
-
created_at: {
|
|
48426
|
-
format: string;
|
|
48427
|
-
type: string;
|
|
48428
|
-
};
|
|
48429
|
-
customization_profile_id: {
|
|
48430
|
-
format: string;
|
|
48431
|
-
type: string;
|
|
48432
|
-
};
|
|
48433
|
-
logo_url: {
|
|
48434
|
-
format: string;
|
|
48435
|
-
type: string;
|
|
48436
|
-
};
|
|
48437
|
-
name: {
|
|
48438
|
-
nullable: boolean;
|
|
48439
|
-
type: string;
|
|
48440
|
-
};
|
|
48441
|
-
primary_color: {
|
|
48442
|
-
type: string;
|
|
48443
|
-
};
|
|
48444
|
-
secondary_color: {
|
|
48445
|
-
type: string;
|
|
48446
|
-
};
|
|
48447
|
-
workspace_id: {
|
|
48448
|
-
format: string;
|
|
48449
|
-
type: string;
|
|
48450
|
-
};
|
|
48451
|
-
};
|
|
48452
|
-
required: string[];
|
|
48453
|
-
type: string;
|
|
48454
|
-
'x-route-path': string;
|
|
48455
|
-
'x-title': string;
|
|
48456
|
-
'x-undocumented': string;
|
|
48339
|
+
$ref: string;
|
|
48457
48340
|
};
|
|
48458
48341
|
type: string;
|
|
48459
48342
|
};
|
|
@@ -48846,6 +48729,12 @@ declare const _default: {
|
|
|
48846
48729
|
};
|
|
48847
48730
|
type: string;
|
|
48848
48731
|
};
|
|
48732
|
+
noise_thresholds: {
|
|
48733
|
+
items: {
|
|
48734
|
+
$ref: string;
|
|
48735
|
+
};
|
|
48736
|
+
type: string;
|
|
48737
|
+
};
|
|
48849
48738
|
spaces: {
|
|
48850
48739
|
items: {
|
|
48851
48740
|
$ref: string;
|
|
@@ -49073,6 +48962,12 @@ declare const _default: {
|
|
|
49073
48962
|
};
|
|
49074
48963
|
type: string;
|
|
49075
48964
|
};
|
|
48965
|
+
noise_thresholds: {
|
|
48966
|
+
items: {
|
|
48967
|
+
$ref: string;
|
|
48968
|
+
};
|
|
48969
|
+
type: string;
|
|
48970
|
+
};
|
|
49076
48971
|
spaces: {
|
|
49077
48972
|
items: {
|
|
49078
48973
|
$ref: string;
|