@seamapi/types 1.500.0 → 1.501.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 +44 -18
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +99 -13
- package/dist/index.cjs +44 -18
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/lib/seam/connect/model-types.d.ts +1 -1
- package/lib/seam/connect/models/batch.d.ts +98 -12
- package/lib/seam/connect/models/batch.js +3 -0
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/models/{customization_profiles/customization_profile.js → customization-profiles/customization-profile.js} +1 -1
- package/lib/seam/connect/models/{customization_profiles/customization_profile.js.map → customization-profiles/customization-profile.js.map} +1 -1
- package/lib/seam/connect/models/customization-profiles/index.d.ts +1 -0
- package/lib/seam/connect/models/customization-profiles/index.js +2 -0
- package/lib/seam/connect/models/customization-profiles/index.js.map +1 -0
- package/lib/seam/connect/models/index.d.ts +1 -1
- package/lib/seam/connect/models/index.js +1 -1
- package/lib/seam/connect/models/index.js.map +1 -1
- package/lib/seam/connect/models/instant-keys/instant-key.d.ts +4 -4
- package/lib/seam/connect/openapi.d.ts +24 -0
- package/lib/seam/connect/openapi.js +24 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +18 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/model-types.ts +1 -0
- package/src/lib/seam/connect/models/batch.ts +3 -0
- package/src/lib/seam/connect/models/customization-profiles/index.ts +1 -0
- package/src/lib/seam/connect/models/index.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +24 -0
- package/src/lib/seam/connect/route-types.ts +22 -0
- package/lib/seam/connect/models/{customization_profiles/customization_profile.d.ts → customization-profiles/customization-profile.d.ts} +2 -2
- /package/src/lib/seam/connect/models/{customization_profiles/customization_profile.ts → customization-profiles/customization-profile.ts} +0 -0
package/dist/connect.d.cts
CHANGED
|
@@ -27494,13 +27494,13 @@ declare const batch: z.ZodObject<{
|
|
|
27494
27494
|
secondary_color: z.ZodOptional<z.ZodString>;
|
|
27495
27495
|
logo_url: z.ZodOptional<z.ZodString>;
|
|
27496
27496
|
}, "strip", z.ZodTypeAny, {
|
|
27497
|
+
logo_url?: string | undefined;
|
|
27497
27498
|
primary_color?: string | undefined;
|
|
27498
27499
|
secondary_color?: string | undefined;
|
|
27499
|
-
logo_url?: string | undefined;
|
|
27500
27500
|
}, {
|
|
27501
|
+
logo_url?: string | undefined;
|
|
27501
27502
|
primary_color?: string | undefined;
|
|
27502
27503
|
secondary_color?: string | undefined;
|
|
27503
|
-
logo_url?: string | undefined;
|
|
27504
27504
|
}>>;
|
|
27505
27505
|
}, "strip", z.ZodTypeAny, {
|
|
27506
27506
|
workspace_id: string;
|
|
@@ -27512,9 +27512,9 @@ declare const batch: z.ZodObject<{
|
|
|
27512
27512
|
instant_key_id: string;
|
|
27513
27513
|
customization_profile_id?: string | undefined;
|
|
27514
27514
|
customization?: {
|
|
27515
|
+
logo_url?: string | undefined;
|
|
27515
27516
|
primary_color?: string | undefined;
|
|
27516
27517
|
secondary_color?: string | undefined;
|
|
27517
|
-
logo_url?: string | undefined;
|
|
27518
27518
|
} | undefined;
|
|
27519
27519
|
}, {
|
|
27520
27520
|
workspace_id: string;
|
|
@@ -27526,9 +27526,9 @@ declare const batch: z.ZodObject<{
|
|
|
27526
27526
|
instant_key_id: string;
|
|
27527
27527
|
customization_profile_id?: string | undefined;
|
|
27528
27528
|
customization?: {
|
|
27529
|
+
logo_url?: string | undefined;
|
|
27529
27530
|
primary_color?: string | undefined;
|
|
27530
27531
|
secondary_color?: string | undefined;
|
|
27531
|
-
logo_url?: string | undefined;
|
|
27532
27532
|
} | undefined;
|
|
27533
27533
|
}>, "many">>;
|
|
27534
27534
|
access_codes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -30681,6 +30681,31 @@ declare const batch: z.ZodObject<{
|
|
|
30681
30681
|
noise_threshold_decibels: number;
|
|
30682
30682
|
noise_threshold_nrs?: number | undefined;
|
|
30683
30683
|
}>, "many">>;
|
|
30684
|
+
customization_profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
30685
|
+
workspace_id: z.ZodString;
|
|
30686
|
+
name: z.ZodNullable<z.ZodString>;
|
|
30687
|
+
customization_profile_id: z.ZodString;
|
|
30688
|
+
created_at: z.ZodString;
|
|
30689
|
+
logo_url: z.ZodOptional<z.ZodString>;
|
|
30690
|
+
primary_color: z.ZodOptional<z.ZodString>;
|
|
30691
|
+
secondary_color: z.ZodOptional<z.ZodString>;
|
|
30692
|
+
}, "strip", z.ZodTypeAny, {
|
|
30693
|
+
name: string | null;
|
|
30694
|
+
workspace_id: string;
|
|
30695
|
+
created_at: string;
|
|
30696
|
+
customization_profile_id: string;
|
|
30697
|
+
logo_url?: string | undefined;
|
|
30698
|
+
primary_color?: string | undefined;
|
|
30699
|
+
secondary_color?: string | undefined;
|
|
30700
|
+
}, {
|
|
30701
|
+
name: string | null;
|
|
30702
|
+
workspace_id: string;
|
|
30703
|
+
created_at: string;
|
|
30704
|
+
customization_profile_id: string;
|
|
30705
|
+
logo_url?: string | undefined;
|
|
30706
|
+
primary_color?: string | undefined;
|
|
30707
|
+
secondary_color?: string | undefined;
|
|
30708
|
+
}>, "many">>;
|
|
30684
30709
|
}, "strip", z.ZodTypeAny, {
|
|
30685
30710
|
batch_type: "spaces" | "access_grants" | "access_methods" | "workspaces";
|
|
30686
30711
|
thermostat_daily_programs?: {
|
|
@@ -33903,9 +33928,9 @@ declare const batch: z.ZodObject<{
|
|
|
33903
33928
|
instant_key_id: string;
|
|
33904
33929
|
customization_profile_id?: string | undefined;
|
|
33905
33930
|
customization?: {
|
|
33931
|
+
logo_url?: string | undefined;
|
|
33906
33932
|
primary_color?: string | undefined;
|
|
33907
33933
|
secondary_color?: string | undefined;
|
|
33908
|
-
logo_url?: string | undefined;
|
|
33909
33934
|
} | undefined;
|
|
33910
33935
|
}[] | undefined;
|
|
33911
33936
|
access_codes?: {
|
|
@@ -34524,6 +34549,15 @@ declare const batch: z.ZodObject<{
|
|
|
34524
34549
|
noise_threshold_decibels: number;
|
|
34525
34550
|
noise_threshold_nrs?: number | undefined;
|
|
34526
34551
|
}[] | undefined;
|
|
34552
|
+
customization_profiles?: {
|
|
34553
|
+
name: string | null;
|
|
34554
|
+
workspace_id: string;
|
|
34555
|
+
created_at: string;
|
|
34556
|
+
customization_profile_id: string;
|
|
34557
|
+
logo_url?: string | undefined;
|
|
34558
|
+
primary_color?: string | undefined;
|
|
34559
|
+
secondary_color?: string | undefined;
|
|
34560
|
+
}[] | undefined;
|
|
34527
34561
|
}, {
|
|
34528
34562
|
batch_type: "spaces" | "access_grants" | "access_methods" | "workspaces";
|
|
34529
34563
|
thermostat_daily_programs?: {
|
|
@@ -37746,9 +37780,9 @@ declare const batch: z.ZodObject<{
|
|
|
37746
37780
|
instant_key_id: string;
|
|
37747
37781
|
customization_profile_id?: string | undefined;
|
|
37748
37782
|
customization?: {
|
|
37783
|
+
logo_url?: string | undefined;
|
|
37749
37784
|
primary_color?: string | undefined;
|
|
37750
37785
|
secondary_color?: string | undefined;
|
|
37751
|
-
logo_url?: string | undefined;
|
|
37752
37786
|
} | undefined;
|
|
37753
37787
|
}[] | undefined;
|
|
37754
37788
|
access_codes?: {
|
|
@@ -38367,6 +38401,15 @@ declare const batch: z.ZodObject<{
|
|
|
38367
38401
|
noise_threshold_decibels: number;
|
|
38368
38402
|
noise_threshold_nrs?: number | undefined;
|
|
38369
38403
|
}[] | undefined;
|
|
38404
|
+
customization_profiles?: {
|
|
38405
|
+
name: string | null;
|
|
38406
|
+
workspace_id: string;
|
|
38407
|
+
created_at: string;
|
|
38408
|
+
customization_profile_id: string;
|
|
38409
|
+
logo_url?: string | undefined;
|
|
38410
|
+
primary_color?: string | undefined;
|
|
38411
|
+
secondary_color?: string | undefined;
|
|
38412
|
+
}[] | undefined;
|
|
38370
38413
|
}>;
|
|
38371
38414
|
type Batch = z.infer<typeof batch>;
|
|
38372
38415
|
|
|
@@ -39225,18 +39268,19 @@ declare const customization_profile: z.ZodObject<{
|
|
|
39225
39268
|
workspace_id: string;
|
|
39226
39269
|
created_at: string;
|
|
39227
39270
|
customization_profile_id: string;
|
|
39271
|
+
logo_url?: string | undefined;
|
|
39228
39272
|
primary_color?: string | undefined;
|
|
39229
39273
|
secondary_color?: string | undefined;
|
|
39230
|
-
logo_url?: string | undefined;
|
|
39231
39274
|
}, {
|
|
39232
39275
|
name: string | null;
|
|
39233
39276
|
workspace_id: string;
|
|
39234
39277
|
created_at: string;
|
|
39235
39278
|
customization_profile_id: string;
|
|
39279
|
+
logo_url?: string | undefined;
|
|
39236
39280
|
primary_color?: string | undefined;
|
|
39237
39281
|
secondary_color?: string | undefined;
|
|
39238
|
-
logo_url?: string | undefined;
|
|
39239
39282
|
}>;
|
|
39283
|
+
type CustomizationProfile = z.infer<typeof customization_profile>;
|
|
39240
39284
|
|
|
39241
39285
|
declare const device_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<{
|
|
39242
39286
|
message: z.ZodString;
|
|
@@ -50347,13 +50391,13 @@ declare const instant_key: z.ZodObject<{
|
|
|
50347
50391
|
secondary_color: z.ZodOptional<z.ZodString>;
|
|
50348
50392
|
logo_url: z.ZodOptional<z.ZodString>;
|
|
50349
50393
|
}, "strip", z.ZodTypeAny, {
|
|
50394
|
+
logo_url?: string | undefined;
|
|
50350
50395
|
primary_color?: string | undefined;
|
|
50351
50396
|
secondary_color?: string | undefined;
|
|
50352
|
-
logo_url?: string | undefined;
|
|
50353
50397
|
}, {
|
|
50398
|
+
logo_url?: string | undefined;
|
|
50354
50399
|
primary_color?: string | undefined;
|
|
50355
50400
|
secondary_color?: string | undefined;
|
|
50356
|
-
logo_url?: string | undefined;
|
|
50357
50401
|
}>>;
|
|
50358
50402
|
}, "strip", z.ZodTypeAny, {
|
|
50359
50403
|
workspace_id: string;
|
|
@@ -50365,9 +50409,9 @@ declare const instant_key: z.ZodObject<{
|
|
|
50365
50409
|
instant_key_id: string;
|
|
50366
50410
|
customization_profile_id?: string | undefined;
|
|
50367
50411
|
customization?: {
|
|
50412
|
+
logo_url?: string | undefined;
|
|
50368
50413
|
primary_color?: string | undefined;
|
|
50369
50414
|
secondary_color?: string | undefined;
|
|
50370
|
-
logo_url?: string | undefined;
|
|
50371
50415
|
} | undefined;
|
|
50372
50416
|
}, {
|
|
50373
50417
|
workspace_id: string;
|
|
@@ -50379,9 +50423,9 @@ declare const instant_key: z.ZodObject<{
|
|
|
50379
50423
|
instant_key_id: string;
|
|
50380
50424
|
customization_profile_id?: string | undefined;
|
|
50381
50425
|
customization?: {
|
|
50426
|
+
logo_url?: string | undefined;
|
|
50382
50427
|
primary_color?: string | undefined;
|
|
50383
50428
|
secondary_color?: string | undefined;
|
|
50384
|
-
logo_url?: string | undefined;
|
|
50385
50429
|
} | undefined;
|
|
50386
50430
|
}>;
|
|
50387
50431
|
type InstantKey = z.infer<typeof instant_key>;
|
|
@@ -69177,6 +69221,12 @@ declare const _default: {
|
|
|
69177
69221
|
};
|
|
69178
69222
|
type: string;
|
|
69179
69223
|
};
|
|
69224
|
+
customization_profiles: {
|
|
69225
|
+
items: {
|
|
69226
|
+
$ref: string;
|
|
69227
|
+
};
|
|
69228
|
+
type: string;
|
|
69229
|
+
};
|
|
69180
69230
|
devices: {
|
|
69181
69231
|
items: {
|
|
69182
69232
|
$ref: string;
|
|
@@ -69428,6 +69478,12 @@ declare const _default: {
|
|
|
69428
69478
|
};
|
|
69429
69479
|
type: string;
|
|
69430
69480
|
};
|
|
69481
|
+
customization_profiles: {
|
|
69482
|
+
items: {
|
|
69483
|
+
$ref: string;
|
|
69484
|
+
};
|
|
69485
|
+
type: string;
|
|
69486
|
+
};
|
|
69431
69487
|
devices: {
|
|
69432
69488
|
items: {
|
|
69433
69489
|
$ref: string;
|
|
@@ -99619,6 +99675,12 @@ declare const _default: {
|
|
|
99619
99675
|
};
|
|
99620
99676
|
type: string;
|
|
99621
99677
|
};
|
|
99678
|
+
customization_profiles: {
|
|
99679
|
+
items: {
|
|
99680
|
+
$ref: string;
|
|
99681
|
+
};
|
|
99682
|
+
type: string;
|
|
99683
|
+
};
|
|
99622
99684
|
devices: {
|
|
99623
99685
|
items: {
|
|
99624
99686
|
$ref: string;
|
|
@@ -99852,6 +99914,12 @@ declare const _default: {
|
|
|
99852
99914
|
};
|
|
99853
99915
|
type: string;
|
|
99854
99916
|
};
|
|
99917
|
+
customization_profiles: {
|
|
99918
|
+
items: {
|
|
99919
|
+
$ref: string;
|
|
99920
|
+
};
|
|
99921
|
+
type: string;
|
|
99922
|
+
};
|
|
99855
99923
|
devices: {
|
|
99856
99924
|
items: {
|
|
99857
99925
|
$ref: string;
|
|
@@ -120689,6 +120757,15 @@ type Routes = {
|
|
|
120689
120757
|
/** Noise level in decibels for the noise threshold. */
|
|
120690
120758
|
noise_threshold_decibels: number;
|
|
120691
120759
|
}[] | undefined;
|
|
120760
|
+
customization_profiles?: {
|
|
120761
|
+
workspace_id: string;
|
|
120762
|
+
name: string | null;
|
|
120763
|
+
customization_profile_id: string;
|
|
120764
|
+
created_at: string;
|
|
120765
|
+
logo_url?: string | undefined;
|
|
120766
|
+
primary_color?: string | undefined;
|
|
120767
|
+
secondary_color?: string | undefined;
|
|
120768
|
+
}[] | undefined;
|
|
120692
120769
|
};
|
|
120693
120770
|
};
|
|
120694
120771
|
};
|
|
@@ -186655,6 +186732,15 @@ type Routes = {
|
|
|
186655
186732
|
/** Noise level in decibels for the noise threshold. */
|
|
186656
186733
|
noise_threshold_decibels: number;
|
|
186657
186734
|
}[] | undefined;
|
|
186735
|
+
customization_profiles?: {
|
|
186736
|
+
workspace_id: string;
|
|
186737
|
+
name: string | null;
|
|
186738
|
+
customization_profile_id: string;
|
|
186739
|
+
created_at: string;
|
|
186740
|
+
logo_url?: string | undefined;
|
|
186741
|
+
primary_color?: string | undefined;
|
|
186742
|
+
secondary_color?: string | undefined;
|
|
186743
|
+
}[] | undefined;
|
|
186658
186744
|
};
|
|
186659
186745
|
};
|
|
186660
186746
|
};
|
|
@@ -188022,4 +188108,4 @@ type RouteRequestParams<Path extends keyof Routes> = Routes[Path]['queryParams']
|
|
|
188022
188108
|
|
|
188023
188109
|
declare const routes: {};
|
|
188024
188110
|
|
|
188025
|
-
export { type AccessCode, type AccessCodeError, type AccessCodeWarning, type AccessGrant, type AccessMethod, type AcsAccessGroup, type AcsCredential, type AcsEncoder, type AcsEntrance, type AcsSystem, type AcsUser, type ActionAttempt, type Batch, type Bridge, type BuildingBlockType, type ClientSession, type ClimatePreset, type ConnectWebview, type ConnectedAccount, type ConnectedAccountError, type ConnectedAccountWarning, type CustomMetadata, type Device, type DeviceError, type DeviceProvider, type DeviceWarning, type InstantKey, type MagicLink, type NoiseThreshold, type Pagination, type RouteRequestBody, type RouteRequestParams, type RouteResponse, type Routes, type SeamEvent, type SeamEventType, type Space, type ThermostatDailyProgram, type ThermostatSchedule, type ThermostatWeeklyProgram, type UnmanagedAccessCode, type UnmanagedDevice, type UserIdentity, type Webhook, type Workspace, _default as openapi, routes, schemas };
|
|
188111
|
+
export { type AccessCode, type AccessCodeError, type AccessCodeWarning, type AccessGrant, type AccessMethod, type AcsAccessGroup, type AcsCredential, type AcsEncoder, type AcsEntrance, type AcsSystem, type AcsUser, type ActionAttempt, type Batch, type Bridge, type BuildingBlockType, type ClientSession, type ClimatePreset, type ConnectWebview, type ConnectedAccount, type ConnectedAccountError, type ConnectedAccountWarning, type CustomMetadata, type CustomizationProfile, type Device, type DeviceError, type DeviceProvider, type DeviceWarning, type InstantKey, type MagicLink, type NoiseThreshold, type Pagination, type RouteRequestBody, type RouteRequestParams, type RouteResponse, type Routes, type SeamEvent, type SeamEventType, type Space, type ThermostatDailyProgram, type ThermostatSchedule, type ThermostatWeeklyProgram, type UnmanagedAccessCode, type UnmanagedDevice, type UserIdentity, type Webhook, type Workspace, _default as openapi, routes, schemas };
|
package/dist/index.cjs
CHANGED
|
@@ -4020,6 +4020,22 @@ var connect_webview = zod.z.object({
|
|
|
4020
4020
|
|
|
4021
4021
|
To list all providers within a category, use \`/devices/list_device_providers\` with the desired \`provider_category\` filter. To list all provider keys, use \`/devices/list_device_providers\` with no filters.
|
|
4022
4022
|
`);
|
|
4023
|
+
var customization_profile = zod.z.object({
|
|
4024
|
+
workspace_id: zod.z.string().uuid(),
|
|
4025
|
+
name: zod.z.string().nullable(),
|
|
4026
|
+
customization_profile_id: zod.z.string().uuid(),
|
|
4027
|
+
created_at: zod.z.string().datetime(),
|
|
4028
|
+
logo_url: zod.z.string().url().optional(),
|
|
4029
|
+
primary_color: zod.z.string().optional(),
|
|
4030
|
+
secondary_color: zod.z.string().optional()
|
|
4031
|
+
}).describe(`
|
|
4032
|
+
---
|
|
4033
|
+
title: Customization Profile
|
|
4034
|
+
undocumented: Unreleased.
|
|
4035
|
+
route_path: /workspaces/customization_profiles
|
|
4036
|
+
---
|
|
4037
|
+
A customization profile.
|
|
4038
|
+
`);
|
|
4023
4039
|
var common_event = zod.z.object({
|
|
4024
4040
|
event_id: zod.z.string().uuid().describe("ID of the event."),
|
|
4025
4041
|
workspace_id: zod.z.string().uuid().describe(
|
|
@@ -5364,7 +5380,8 @@ zod.z.object({
|
|
|
5364
5380
|
unmanaged_access_codes: unmanaged_access_code.array().optional(),
|
|
5365
5381
|
thermostat_daily_programs: thermostat_daily_program.array().optional(),
|
|
5366
5382
|
thermostat_schedules: thermostat_schedule.array().optional(),
|
|
5367
|
-
noise_thresholds: noise_threshold.array().optional()
|
|
5383
|
+
noise_thresholds: noise_threshold.array().optional(),
|
|
5384
|
+
customization_profiles: customization_profile.array().optional()
|
|
5368
5385
|
}).describe("A batch of workspace resources.");
|
|
5369
5386
|
var batch = zod.z.object({
|
|
5370
5387
|
batch_type: zod.z.enum([
|
|
@@ -5398,7 +5415,8 @@ var batch = zod.z.object({
|
|
|
5398
5415
|
unmanaged_access_codes: unmanaged_access_code.array().optional(),
|
|
5399
5416
|
thermostat_daily_programs: thermostat_daily_program.array().optional(),
|
|
5400
5417
|
thermostat_schedules: thermostat_schedule.array().optional(),
|
|
5401
|
-
noise_thresholds: noise_threshold.array().optional()
|
|
5418
|
+
noise_thresholds: noise_threshold.array().optional(),
|
|
5419
|
+
customization_profiles: customization_profile.array().optional()
|
|
5402
5420
|
}).describe("A batch of workspace resources.");
|
|
5403
5421
|
var bridge = zod.z.object({
|
|
5404
5422
|
bridge_id: zod.z.string().uuid().describe("ID of Seam Bridge."),
|
|
@@ -5477,22 +5495,6 @@ var bridge_client_session = zod.z.object({
|
|
|
5477
5495
|
---
|
|
5478
5496
|
Represents a [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge) client session.
|
|
5479
5497
|
`);
|
|
5480
|
-
var customization_profile = zod.z.object({
|
|
5481
|
-
workspace_id: zod.z.string().uuid(),
|
|
5482
|
-
name: zod.z.string().nullable(),
|
|
5483
|
-
customization_profile_id: zod.z.string().uuid(),
|
|
5484
|
-
created_at: zod.z.string().datetime(),
|
|
5485
|
-
logo_url: zod.z.string().url().optional(),
|
|
5486
|
-
primary_color: zod.z.string().optional(),
|
|
5487
|
-
secondary_color: zod.z.string().optional()
|
|
5488
|
-
}).describe(`
|
|
5489
|
-
---
|
|
5490
|
-
title: Customization Profile
|
|
5491
|
-
undocumented: Unreleased.
|
|
5492
|
-
route_path: /workspaces/customization_profiles
|
|
5493
|
-
---
|
|
5494
|
-
A customization profile.
|
|
5495
|
-
`);
|
|
5496
5498
|
var pagination = zod.z.object({
|
|
5497
5499
|
next_page_cursor: zod.z.string().base64().nullable().describe(
|
|
5498
5500
|
"Opaque value that can be used to select the next page of results via the `page_cursor` parameter."
|
|
@@ -31952,6 +31954,12 @@ var openapi_default = {
|
|
|
31952
31954
|
},
|
|
31953
31955
|
type: "array"
|
|
31954
31956
|
},
|
|
31957
|
+
customization_profiles: {
|
|
31958
|
+
items: {
|
|
31959
|
+
$ref: "#/components/schemas/customization_profile"
|
|
31960
|
+
},
|
|
31961
|
+
type: "array"
|
|
31962
|
+
},
|
|
31955
31963
|
devices: {
|
|
31956
31964
|
items: { $ref: "#/components/schemas/device" },
|
|
31957
31965
|
type: "array"
|
|
@@ -32165,6 +32173,12 @@ var openapi_default = {
|
|
|
32165
32173
|
},
|
|
32166
32174
|
type: "array"
|
|
32167
32175
|
},
|
|
32176
|
+
customization_profiles: {
|
|
32177
|
+
items: {
|
|
32178
|
+
$ref: "#/components/schemas/customization_profile"
|
|
32179
|
+
},
|
|
32180
|
+
type: "array"
|
|
32181
|
+
},
|
|
32168
32182
|
devices: {
|
|
32169
32183
|
items: { $ref: "#/components/schemas/device" },
|
|
32170
32184
|
type: "array"
|
|
@@ -58073,6 +58087,12 @@ var openapi_default = {
|
|
|
58073
58087
|
},
|
|
58074
58088
|
type: "array"
|
|
58075
58089
|
},
|
|
58090
|
+
customization_profiles: {
|
|
58091
|
+
items: {
|
|
58092
|
+
$ref: "#/components/schemas/customization_profile"
|
|
58093
|
+
},
|
|
58094
|
+
type: "array"
|
|
58095
|
+
},
|
|
58076
58096
|
devices: {
|
|
58077
58097
|
items: { $ref: "#/components/schemas/device" },
|
|
58078
58098
|
type: "array"
|
|
@@ -58266,6 +58286,12 @@ var openapi_default = {
|
|
|
58266
58286
|
},
|
|
58267
58287
|
type: "array"
|
|
58268
58288
|
},
|
|
58289
|
+
customization_profiles: {
|
|
58290
|
+
items: {
|
|
58291
|
+
$ref: "#/components/schemas/customization_profile"
|
|
58292
|
+
},
|
|
58293
|
+
type: "array"
|
|
58294
|
+
},
|
|
58269
58295
|
devices: {
|
|
58270
58296
|
items: { $ref: "#/components/schemas/device" },
|
|
58271
58297
|
type: "array"
|