@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/index.d.cts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { AccessCode, AccessCodeError, AccessCodeWarning, AccessGrant, AccessMethod, AcsAccessGroup, AcsCredential, AcsEncoder, AcsEntrance, AcsSystem, AcsUser, ActionAttempt, Batch, Bridge, BuildingBlockType, ClientSession, ClimatePreset, ConnectWebview, ConnectedAccount, ConnectedAccountError, ConnectedAccountWarning, CustomMetadata, Device, DeviceError, DeviceProvider, DeviceWarning, InstantKey, MagicLink, NoiseThreshold, Pagination, RouteRequestBody, RouteRequestParams, RouteResponse, Routes, SeamEvent, SeamEventType, Space, ThermostatDailyProgram, ThermostatSchedule, ThermostatWeeklyProgram, UnmanagedAccessCode, UnmanagedDevice, UserIdentity, Webhook, Workspace, openapi, routes, schemas } from './connect.cjs';
|
|
1
|
+
export { AccessCode, AccessCodeError, AccessCodeWarning, AccessGrant, AccessMethod, AcsAccessGroup, AcsCredential, AcsEncoder, AcsEntrance, AcsSystem, AcsUser, ActionAttempt, Batch, Bridge, BuildingBlockType, ClientSession, ClimatePreset, ConnectWebview, ConnectedAccount, ConnectedAccountError, ConnectedAccountWarning, CustomMetadata, CustomizationProfile, Device, DeviceError, DeviceProvider, DeviceWarning, InstantKey, MagicLink, NoiseThreshold, Pagination, RouteRequestBody, RouteRequestParams, RouteResponse, Routes, SeamEvent, SeamEventType, Space, ThermostatDailyProgram, ThermostatSchedule, ThermostatWeeklyProgram, UnmanagedAccessCode, UnmanagedDevice, UserIdentity, Webhook, Workspace, openapi, routes, schemas } from './connect.cjs';
|
|
2
2
|
import 'zod';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type { AccessCode, AccessCodeError, AccessCodeWarning, AccessGrant, AccessMethod, AcsAccessGroup, AcsCredential, AcsEncoder, AcsEntrance, AcsSystem, AcsUser, ActionAttempt, Batch, Bridge, BuildingBlockType, ClientSession, ClimatePreset, ConnectedAccount, ConnectedAccountError, ConnectedAccountWarning, ConnectWebview, CustomMetadata, Device, DeviceError, DeviceProvider, DeviceWarning, InstantKey, MagicLink, NoiseThreshold, Pagination, SeamEvent, SeamEventType, Space, ThermostatDailyProgram, ThermostatSchedule, ThermostatWeeklyProgram, UnmanagedAccessCode, UnmanagedDevice, UserIdentity, Webhook, Workspace, } from './models/index.js';
|
|
1
|
+
export type { AccessCode, AccessCodeError, AccessCodeWarning, AccessGrant, AccessMethod, AcsAccessGroup, AcsCredential, AcsEncoder, AcsEntrance, AcsSystem, AcsUser, ActionAttempt, Batch, Bridge, BuildingBlockType, ClientSession, ClimatePreset, ConnectedAccount, ConnectedAccountError, ConnectedAccountWarning, ConnectWebview, CustomizationProfile, CustomMetadata, Device, DeviceError, DeviceProvider, DeviceWarning, InstantKey, MagicLink, NoiseThreshold, Pagination, SeamEvent, SeamEventType, Space, ThermostatDailyProgram, ThermostatSchedule, ThermostatWeeklyProgram, UnmanagedAccessCode, UnmanagedDevice, UserIdentity, Webhook, Workspace, } from './models/index.js';
|
|
@@ -37623,13 +37623,13 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
37623
37623
|
secondary_color: z.ZodOptional<z.ZodString>;
|
|
37624
37624
|
logo_url: z.ZodOptional<z.ZodString>;
|
|
37625
37625
|
}, "strip", z.ZodTypeAny, {
|
|
37626
|
+
logo_url?: string | undefined;
|
|
37626
37627
|
primary_color?: string | undefined;
|
|
37627
37628
|
secondary_color?: string | undefined;
|
|
37628
|
-
logo_url?: string | undefined;
|
|
37629
37629
|
}, {
|
|
37630
|
+
logo_url?: string | undefined;
|
|
37630
37631
|
primary_color?: string | undefined;
|
|
37631
37632
|
secondary_color?: string | undefined;
|
|
37632
|
-
logo_url?: string | undefined;
|
|
37633
37633
|
}>>;
|
|
37634
37634
|
}, "strip", z.ZodTypeAny, {
|
|
37635
37635
|
workspace_id: string;
|
|
@@ -37641,9 +37641,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
37641
37641
|
instant_key_id: string;
|
|
37642
37642
|
customization_profile_id?: string | undefined;
|
|
37643
37643
|
customization?: {
|
|
37644
|
+
logo_url?: string | undefined;
|
|
37644
37645
|
primary_color?: string | undefined;
|
|
37645
37646
|
secondary_color?: string | undefined;
|
|
37646
|
-
logo_url?: string | undefined;
|
|
37647
37647
|
} | undefined;
|
|
37648
37648
|
}, {
|
|
37649
37649
|
workspace_id: string;
|
|
@@ -37655,9 +37655,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
37655
37655
|
instant_key_id: string;
|
|
37656
37656
|
customization_profile_id?: string | undefined;
|
|
37657
37657
|
customization?: {
|
|
37658
|
+
logo_url?: string | undefined;
|
|
37658
37659
|
primary_color?: string | undefined;
|
|
37659
37660
|
secondary_color?: string | undefined;
|
|
37660
|
-
logo_url?: string | undefined;
|
|
37661
37661
|
} | undefined;
|
|
37662
37662
|
}>, "many">>;
|
|
37663
37663
|
access_codes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -40810,6 +40810,31 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
40810
40810
|
noise_threshold_decibels: number;
|
|
40811
40811
|
noise_threshold_nrs?: number | undefined;
|
|
40812
40812
|
}>, "many">>;
|
|
40813
|
+
customization_profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
40814
|
+
workspace_id: z.ZodString;
|
|
40815
|
+
name: z.ZodNullable<z.ZodString>;
|
|
40816
|
+
customization_profile_id: z.ZodString;
|
|
40817
|
+
created_at: z.ZodString;
|
|
40818
|
+
logo_url: z.ZodOptional<z.ZodString>;
|
|
40819
|
+
primary_color: z.ZodOptional<z.ZodString>;
|
|
40820
|
+
secondary_color: z.ZodOptional<z.ZodString>;
|
|
40821
|
+
}, "strip", z.ZodTypeAny, {
|
|
40822
|
+
name: string | null;
|
|
40823
|
+
workspace_id: string;
|
|
40824
|
+
created_at: string;
|
|
40825
|
+
customization_profile_id: string;
|
|
40826
|
+
logo_url?: string | undefined;
|
|
40827
|
+
primary_color?: string | undefined;
|
|
40828
|
+
secondary_color?: string | undefined;
|
|
40829
|
+
}, {
|
|
40830
|
+
name: string | null;
|
|
40831
|
+
workspace_id: string;
|
|
40832
|
+
created_at: string;
|
|
40833
|
+
customization_profile_id: string;
|
|
40834
|
+
logo_url?: string | undefined;
|
|
40835
|
+
primary_color?: string | undefined;
|
|
40836
|
+
secondary_color?: string | undefined;
|
|
40837
|
+
}>, "many">>;
|
|
40813
40838
|
}, "strip", z.ZodTypeAny, {
|
|
40814
40839
|
batch_type: "workspaces";
|
|
40815
40840
|
thermostat_daily_programs?: {
|
|
@@ -44103,9 +44128,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
44103
44128
|
instant_key_id: string;
|
|
44104
44129
|
customization_profile_id?: string | undefined;
|
|
44105
44130
|
customization?: {
|
|
44131
|
+
logo_url?: string | undefined;
|
|
44106
44132
|
primary_color?: string | undefined;
|
|
44107
44133
|
secondary_color?: string | undefined;
|
|
44108
|
-
logo_url?: string | undefined;
|
|
44109
44134
|
} | undefined;
|
|
44110
44135
|
}[] | undefined;
|
|
44111
44136
|
access_codes?: {
|
|
@@ -44724,6 +44749,15 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
44724
44749
|
noise_threshold_decibels: number;
|
|
44725
44750
|
noise_threshold_nrs?: number | undefined;
|
|
44726
44751
|
}[] | undefined;
|
|
44752
|
+
customization_profiles?: {
|
|
44753
|
+
name: string | null;
|
|
44754
|
+
workspace_id: string;
|
|
44755
|
+
created_at: string;
|
|
44756
|
+
customization_profile_id: string;
|
|
44757
|
+
logo_url?: string | undefined;
|
|
44758
|
+
primary_color?: string | undefined;
|
|
44759
|
+
secondary_color?: string | undefined;
|
|
44760
|
+
}[] | undefined;
|
|
44727
44761
|
}, {
|
|
44728
44762
|
batch_type: "workspaces";
|
|
44729
44763
|
thermostat_daily_programs?: {
|
|
@@ -48017,9 +48051,9 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
48017
48051
|
instant_key_id: string;
|
|
48018
48052
|
customization_profile_id?: string | undefined;
|
|
48019
48053
|
customization?: {
|
|
48054
|
+
logo_url?: string | undefined;
|
|
48020
48055
|
primary_color?: string | undefined;
|
|
48021
48056
|
secondary_color?: string | undefined;
|
|
48022
|
-
logo_url?: string | undefined;
|
|
48023
48057
|
} | undefined;
|
|
48024
48058
|
}[] | undefined;
|
|
48025
48059
|
access_codes?: {
|
|
@@ -48638,6 +48672,15 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
48638
48672
|
noise_threshold_decibels: number;
|
|
48639
48673
|
noise_threshold_nrs?: number | undefined;
|
|
48640
48674
|
}[] | undefined;
|
|
48675
|
+
customization_profiles?: {
|
|
48676
|
+
name: string | null;
|
|
48677
|
+
workspace_id: string;
|
|
48678
|
+
created_at: string;
|
|
48679
|
+
customization_profile_id: string;
|
|
48680
|
+
logo_url?: string | undefined;
|
|
48681
|
+
primary_color?: string | undefined;
|
|
48682
|
+
secondary_color?: string | undefined;
|
|
48683
|
+
}[] | undefined;
|
|
48641
48684
|
}>;
|
|
48642
48685
|
export declare const batch: z.ZodObject<{
|
|
48643
48686
|
batch_type: z.ZodEnum<["workspaces", "spaces", "access_grants", "access_methods"]>;
|
|
@@ -65971,13 +66014,13 @@ export declare const batch: z.ZodObject<{
|
|
|
65971
66014
|
secondary_color: z.ZodOptional<z.ZodString>;
|
|
65972
66015
|
logo_url: z.ZodOptional<z.ZodString>;
|
|
65973
66016
|
}, "strip", z.ZodTypeAny, {
|
|
66017
|
+
logo_url?: string | undefined;
|
|
65974
66018
|
primary_color?: string | undefined;
|
|
65975
66019
|
secondary_color?: string | undefined;
|
|
65976
|
-
logo_url?: string | undefined;
|
|
65977
66020
|
}, {
|
|
66021
|
+
logo_url?: string | undefined;
|
|
65978
66022
|
primary_color?: string | undefined;
|
|
65979
66023
|
secondary_color?: string | undefined;
|
|
65980
|
-
logo_url?: string | undefined;
|
|
65981
66024
|
}>>;
|
|
65982
66025
|
}, "strip", z.ZodTypeAny, {
|
|
65983
66026
|
workspace_id: string;
|
|
@@ -65989,9 +66032,9 @@ export declare const batch: z.ZodObject<{
|
|
|
65989
66032
|
instant_key_id: string;
|
|
65990
66033
|
customization_profile_id?: string | undefined;
|
|
65991
66034
|
customization?: {
|
|
66035
|
+
logo_url?: string | undefined;
|
|
65992
66036
|
primary_color?: string | undefined;
|
|
65993
66037
|
secondary_color?: string | undefined;
|
|
65994
|
-
logo_url?: string | undefined;
|
|
65995
66038
|
} | undefined;
|
|
65996
66039
|
}, {
|
|
65997
66040
|
workspace_id: string;
|
|
@@ -66003,9 +66046,9 @@ export declare const batch: z.ZodObject<{
|
|
|
66003
66046
|
instant_key_id: string;
|
|
66004
66047
|
customization_profile_id?: string | undefined;
|
|
66005
66048
|
customization?: {
|
|
66049
|
+
logo_url?: string | undefined;
|
|
66006
66050
|
primary_color?: string | undefined;
|
|
66007
66051
|
secondary_color?: string | undefined;
|
|
66008
|
-
logo_url?: string | undefined;
|
|
66009
66052
|
} | undefined;
|
|
66010
66053
|
}>, "many">>;
|
|
66011
66054
|
access_codes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -69158,6 +69201,31 @@ export declare const batch: z.ZodObject<{
|
|
|
69158
69201
|
noise_threshold_decibels: number;
|
|
69159
69202
|
noise_threshold_nrs?: number | undefined;
|
|
69160
69203
|
}>, "many">>;
|
|
69204
|
+
customization_profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
69205
|
+
workspace_id: z.ZodString;
|
|
69206
|
+
name: z.ZodNullable<z.ZodString>;
|
|
69207
|
+
customization_profile_id: z.ZodString;
|
|
69208
|
+
created_at: z.ZodString;
|
|
69209
|
+
logo_url: z.ZodOptional<z.ZodString>;
|
|
69210
|
+
primary_color: z.ZodOptional<z.ZodString>;
|
|
69211
|
+
secondary_color: z.ZodOptional<z.ZodString>;
|
|
69212
|
+
}, "strip", z.ZodTypeAny, {
|
|
69213
|
+
name: string | null;
|
|
69214
|
+
workspace_id: string;
|
|
69215
|
+
created_at: string;
|
|
69216
|
+
customization_profile_id: string;
|
|
69217
|
+
logo_url?: string | undefined;
|
|
69218
|
+
primary_color?: string | undefined;
|
|
69219
|
+
secondary_color?: string | undefined;
|
|
69220
|
+
}, {
|
|
69221
|
+
name: string | null;
|
|
69222
|
+
workspace_id: string;
|
|
69223
|
+
created_at: string;
|
|
69224
|
+
customization_profile_id: string;
|
|
69225
|
+
logo_url?: string | undefined;
|
|
69226
|
+
primary_color?: string | undefined;
|
|
69227
|
+
secondary_color?: string | undefined;
|
|
69228
|
+
}>, "many">>;
|
|
69161
69229
|
}, "strip", z.ZodTypeAny, {
|
|
69162
69230
|
batch_type: "spaces" | "access_grants" | "access_methods" | "workspaces";
|
|
69163
69231
|
thermostat_daily_programs?: {
|
|
@@ -72380,9 +72448,9 @@ export declare const batch: z.ZodObject<{
|
|
|
72380
72448
|
instant_key_id: string;
|
|
72381
72449
|
customization_profile_id?: string | undefined;
|
|
72382
72450
|
customization?: {
|
|
72451
|
+
logo_url?: string | undefined;
|
|
72383
72452
|
primary_color?: string | undefined;
|
|
72384
72453
|
secondary_color?: string | undefined;
|
|
72385
|
-
logo_url?: string | undefined;
|
|
72386
72454
|
} | undefined;
|
|
72387
72455
|
}[] | undefined;
|
|
72388
72456
|
access_codes?: {
|
|
@@ -73001,6 +73069,15 @@ export declare const batch: z.ZodObject<{
|
|
|
73001
73069
|
noise_threshold_decibels: number;
|
|
73002
73070
|
noise_threshold_nrs?: number | undefined;
|
|
73003
73071
|
}[] | undefined;
|
|
73072
|
+
customization_profiles?: {
|
|
73073
|
+
name: string | null;
|
|
73074
|
+
workspace_id: string;
|
|
73075
|
+
created_at: string;
|
|
73076
|
+
customization_profile_id: string;
|
|
73077
|
+
logo_url?: string | undefined;
|
|
73078
|
+
primary_color?: string | undefined;
|
|
73079
|
+
secondary_color?: string | undefined;
|
|
73080
|
+
}[] | undefined;
|
|
73004
73081
|
}, {
|
|
73005
73082
|
batch_type: "spaces" | "access_grants" | "access_methods" | "workspaces";
|
|
73006
73083
|
thermostat_daily_programs?: {
|
|
@@ -76223,9 +76300,9 @@ export declare const batch: z.ZodObject<{
|
|
|
76223
76300
|
instant_key_id: string;
|
|
76224
76301
|
customization_profile_id?: string | undefined;
|
|
76225
76302
|
customization?: {
|
|
76303
|
+
logo_url?: string | undefined;
|
|
76226
76304
|
primary_color?: string | undefined;
|
|
76227
76305
|
secondary_color?: string | undefined;
|
|
76228
|
-
logo_url?: string | undefined;
|
|
76229
76306
|
} | undefined;
|
|
76230
76307
|
}[] | undefined;
|
|
76231
76308
|
access_codes?: {
|
|
@@ -76844,6 +76921,15 @@ export declare const batch: z.ZodObject<{
|
|
|
76844
76921
|
noise_threshold_decibels: number;
|
|
76845
76922
|
noise_threshold_nrs?: number | undefined;
|
|
76846
76923
|
}[] | undefined;
|
|
76924
|
+
customization_profiles?: {
|
|
76925
|
+
name: string | null;
|
|
76926
|
+
workspace_id: string;
|
|
76927
|
+
created_at: string;
|
|
76928
|
+
customization_profile_id: string;
|
|
76929
|
+
logo_url?: string | undefined;
|
|
76930
|
+
primary_color?: string | undefined;
|
|
76931
|
+
secondary_color?: string | undefined;
|
|
76932
|
+
}[] | undefined;
|
|
76847
76933
|
}>;
|
|
76848
76934
|
export type WorkspacesBatch = z.infer<typeof workspaces_batch>;
|
|
76849
76935
|
export type Batch = z.infer<typeof batch>;
|
|
@@ -11,6 +11,7 @@ import { action_attempt } from './action-attempts/action-attempt.js';
|
|
|
11
11
|
import { client_session } from './client-sessions/client-session.js';
|
|
12
12
|
import { connect_webview } from './connect-webviews/connect-webview.js';
|
|
13
13
|
import { connected_account } from './connected-accounts/index.js';
|
|
14
|
+
import { customization_profile } from './customization-profiles/index.js';
|
|
14
15
|
import { device } from './devices/index.js';
|
|
15
16
|
import { unmanaged_device } from './devices/unmanaged-device.js';
|
|
16
17
|
import { seam_event } from './events/seam-event.js';
|
|
@@ -76,6 +77,7 @@ export const workspaces_batch = z
|
|
|
76
77
|
thermostat_daily_programs: thermostat_daily_program.array().optional(),
|
|
77
78
|
thermostat_schedules: thermostat_schedule.array().optional(),
|
|
78
79
|
noise_thresholds: noise_threshold.array().optional(),
|
|
80
|
+
customization_profiles: customization_profile.array().optional(),
|
|
79
81
|
})
|
|
80
82
|
.describe('A batch of workspace resources.');
|
|
81
83
|
export const batch = z
|
|
@@ -112,6 +114,7 @@ export const batch = z
|
|
|
112
114
|
thermostat_daily_programs: thermostat_daily_program.array().optional(),
|
|
113
115
|
thermostat_schedules: thermostat_schedule.array().optional(),
|
|
114
116
|
noise_thresholds: noise_threshold.array().optional(),
|
|
117
|
+
customization_profiles: customization_profile.array().optional(),
|
|
115
118
|
})
|
|
116
119
|
.describe('A batch of workspace resources.');
|
|
117
120
|
//# 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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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"
|
|
1
|
+
{"version":3,"file":"customization-profile.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customization-profiles/customization-profile.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,wBAAwB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC3C,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACrC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACvC,CAAC,CAAC,QAAQ,CAAC;;;;;;;CAOX,CAAC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './customization-profile.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customization-profiles/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAA"}
|
|
@@ -13,7 +13,7 @@ export * from './customer/access-grant-resources.js';
|
|
|
13
13
|
export * from './customer/index.js';
|
|
14
14
|
export * from './customer/location-resources.js';
|
|
15
15
|
export * from './customer/user-identity-resources.js';
|
|
16
|
-
export * from './
|
|
16
|
+
export * from './customization-profiles/index.js';
|
|
17
17
|
export * from './devices/index.js';
|
|
18
18
|
export * from './events/index.js';
|
|
19
19
|
export * from './instant-keys/index.js';
|
|
@@ -13,7 +13,7 @@ export * from './customer/access-grant-resources.js';
|
|
|
13
13
|
export * from './customer/index.js';
|
|
14
14
|
export * from './customer/location-resources.js';
|
|
15
15
|
export * from './customer/user-identity-resources.js';
|
|
16
|
-
export * from './
|
|
16
|
+
export * from './customization-profiles/index.js';
|
|
17
17
|
export * from './devices/index.js';
|
|
18
18
|
export * from './events/index.js';
|
|
19
19
|
export * from './instant-keys/index.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,0BAA0B,CAAA;AACxC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,4BAA4B,CAAA;AAC1C,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,oBAAoB,CAAA;AAClC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,6BAA6B,CAAA;AAC3C,cAAc,+BAA+B,CAAA;AAC7C,cAAc,sBAAsB,CAAA;AACpC,cAAc,sCAAsC,CAAA;AACpD,cAAc,qBAAqB,CAAA;AACnC,cAAc,kCAAkC,CAAA;AAChD,cAAc,uCAAuC,CAAA;AACrD,cAAc,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,0BAA0B,CAAA;AACxC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,4BAA4B,CAAA;AAC1C,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,oBAAoB,CAAA;AAClC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,6BAA6B,CAAA;AAC3C,cAAc,+BAA+B,CAAA;AAC7C,cAAc,sBAAsB,CAAA;AACpC,cAAc,sCAAsC,CAAA;AACpD,cAAc,qBAAqB,CAAA;AACnC,cAAc,kCAAkC,CAAA;AAChD,cAAc,uCAAuC,CAAA;AACrD,cAAc,mCAAmC,CAAA;AACjD,cAAc,oBAAoB,CAAA;AAClC,cAAc,mBAAmB,CAAA;AACjC,cAAc,yBAAyB,CAAA;AACvC,cAAc,0BAA0B,CAAA;AACxC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,oBAAoB,CAAA;AAClC,cAAc,mBAAmB,CAAA;AACjC,cAAc,mBAAmB,CAAA;AACjC,cAAc,0BAA0B,CAAA;AACxC,cAAc,mBAAmB,CAAA;AACjC,cAAc,wBAAwB,CAAA;AACtC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,qBAAqB,CAAA;AACnC,cAAc,uBAAuB,CAAA"}
|
|
@@ -13,13 +13,13 @@ export declare const instant_key: z.ZodObject<{
|
|
|
13
13
|
secondary_color: z.ZodOptional<z.ZodString>;
|
|
14
14
|
logo_url: z.ZodOptional<z.ZodString>;
|
|
15
15
|
}, "strip", z.ZodTypeAny, {
|
|
16
|
+
logo_url?: string | undefined;
|
|
16
17
|
primary_color?: string | undefined;
|
|
17
18
|
secondary_color?: string | undefined;
|
|
18
|
-
logo_url?: string | undefined;
|
|
19
19
|
}, {
|
|
20
|
+
logo_url?: string | undefined;
|
|
20
21
|
primary_color?: string | undefined;
|
|
21
22
|
secondary_color?: string | undefined;
|
|
22
|
-
logo_url?: string | undefined;
|
|
23
23
|
}>>;
|
|
24
24
|
}, "strip", z.ZodTypeAny, {
|
|
25
25
|
workspace_id: string;
|
|
@@ -31,9 +31,9 @@ export declare const instant_key: z.ZodObject<{
|
|
|
31
31
|
instant_key_id: string;
|
|
32
32
|
customization_profile_id?: string | undefined;
|
|
33
33
|
customization?: {
|
|
34
|
+
logo_url?: string | undefined;
|
|
34
35
|
primary_color?: string | undefined;
|
|
35
36
|
secondary_color?: string | undefined;
|
|
36
|
-
logo_url?: string | undefined;
|
|
37
37
|
} | undefined;
|
|
38
38
|
}, {
|
|
39
39
|
workspace_id: string;
|
|
@@ -45,9 +45,9 @@ export declare const instant_key: z.ZodObject<{
|
|
|
45
45
|
instant_key_id: string;
|
|
46
46
|
customization_profile_id?: string | undefined;
|
|
47
47
|
customization?: {
|
|
48
|
+
logo_url?: string | undefined;
|
|
48
49
|
primary_color?: string | undefined;
|
|
49
50
|
secondary_color?: string | undefined;
|
|
50
|
-
logo_url?: string | undefined;
|
|
51
51
|
} | undefined;
|
|
52
52
|
}>;
|
|
53
53
|
export type InstantKey = z.infer<typeof instant_key>;
|
|
@@ -18269,6 +18269,12 @@ declare const _default: {
|
|
|
18269
18269
|
};
|
|
18270
18270
|
type: string;
|
|
18271
18271
|
};
|
|
18272
|
+
customization_profiles: {
|
|
18273
|
+
items: {
|
|
18274
|
+
$ref: string;
|
|
18275
|
+
};
|
|
18276
|
+
type: string;
|
|
18277
|
+
};
|
|
18272
18278
|
devices: {
|
|
18273
18279
|
items: {
|
|
18274
18280
|
$ref: string;
|
|
@@ -18520,6 +18526,12 @@ declare const _default: {
|
|
|
18520
18526
|
};
|
|
18521
18527
|
type: string;
|
|
18522
18528
|
};
|
|
18529
|
+
customization_profiles: {
|
|
18530
|
+
items: {
|
|
18531
|
+
$ref: string;
|
|
18532
|
+
};
|
|
18533
|
+
type: string;
|
|
18534
|
+
};
|
|
18523
18535
|
devices: {
|
|
18524
18536
|
items: {
|
|
18525
18537
|
$ref: string;
|
|
@@ -48711,6 +48723,12 @@ declare const _default: {
|
|
|
48711
48723
|
};
|
|
48712
48724
|
type: string;
|
|
48713
48725
|
};
|
|
48726
|
+
customization_profiles: {
|
|
48727
|
+
items: {
|
|
48728
|
+
$ref: string;
|
|
48729
|
+
};
|
|
48730
|
+
type: string;
|
|
48731
|
+
};
|
|
48714
48732
|
devices: {
|
|
48715
48733
|
items: {
|
|
48716
48734
|
$ref: string;
|
|
@@ -48944,6 +48962,12 @@ declare const _default: {
|
|
|
48944
48962
|
};
|
|
48945
48963
|
type: string;
|
|
48946
48964
|
};
|
|
48965
|
+
customization_profiles: {
|
|
48966
|
+
items: {
|
|
48967
|
+
$ref: string;
|
|
48968
|
+
};
|
|
48969
|
+
type: string;
|
|
48970
|
+
};
|
|
48947
48971
|
devices: {
|
|
48948
48972
|
items: {
|
|
48949
48973
|
$ref: string;
|
|
@@ -26406,6 +26406,12 @@ export default {
|
|
|
26406
26406
|
},
|
|
26407
26407
|
type: 'array',
|
|
26408
26408
|
},
|
|
26409
|
+
customization_profiles: {
|
|
26410
|
+
items: {
|
|
26411
|
+
$ref: '#/components/schemas/customization_profile',
|
|
26412
|
+
},
|
|
26413
|
+
type: 'array',
|
|
26414
|
+
},
|
|
26409
26415
|
devices: {
|
|
26410
26416
|
items: { $ref: '#/components/schemas/device' },
|
|
26411
26417
|
type: 'array',
|
|
@@ -26619,6 +26625,12 @@ export default {
|
|
|
26619
26625
|
},
|
|
26620
26626
|
type: 'array',
|
|
26621
26627
|
},
|
|
26628
|
+
customization_profiles: {
|
|
26629
|
+
items: {
|
|
26630
|
+
$ref: '#/components/schemas/customization_profile',
|
|
26631
|
+
},
|
|
26632
|
+
type: 'array',
|
|
26633
|
+
},
|
|
26622
26634
|
devices: {
|
|
26623
26635
|
items: { $ref: '#/components/schemas/device' },
|
|
26624
26636
|
type: 'array',
|
|
@@ -52527,6 +52539,12 @@ export default {
|
|
|
52527
52539
|
},
|
|
52528
52540
|
type: 'array',
|
|
52529
52541
|
},
|
|
52542
|
+
customization_profiles: {
|
|
52543
|
+
items: {
|
|
52544
|
+
$ref: '#/components/schemas/customization_profile',
|
|
52545
|
+
},
|
|
52546
|
+
type: 'array',
|
|
52547
|
+
},
|
|
52530
52548
|
devices: {
|
|
52531
52549
|
items: { $ref: '#/components/schemas/device' },
|
|
52532
52550
|
type: 'array',
|
|
@@ -52720,6 +52738,12 @@ export default {
|
|
|
52720
52738
|
},
|
|
52721
52739
|
type: 'array',
|
|
52722
52740
|
},
|
|
52741
|
+
customization_profiles: {
|
|
52742
|
+
items: {
|
|
52743
|
+
$ref: '#/components/schemas/customization_profile',
|
|
52744
|
+
},
|
|
52745
|
+
type: 'array',
|
|
52746
|
+
},
|
|
52723
52747
|
devices: {
|
|
52724
52748
|
items: { $ref: '#/components/schemas/device' },
|
|
52725
52749
|
type: 'array',
|