@seamapi/types 1.639.0 → 1.641.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 +69 -24
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +219 -40
- package/dist/index.cjs +69 -24
- 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 +106 -26
- package/lib/seam/connect/models/customer/customer-portal.d.ts +14 -0
- package/lib/seam/connect/models/customer/customer-portal.js +5 -0
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/models/customization-profiles/customization-profile.d.ts +46 -2
- package/lib/seam/connect/models/customization-profiles/customization-profile.js +8 -0
- package/lib/seam/connect/models/customization-profiles/customization-profile.js.map +1 -1
- package/lib/seam/connect/models/instant-keys/instant-key.d.ts +4 -4
- package/lib/seam/connect/models/partner/magic-link.d.ts +0 -5
- package/lib/seam/connect/models/partner/magic-link.js +0 -4
- package/lib/seam/connect/models/partner/magic-link.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +85 -6
- package/lib/seam/connect/openapi.js +53 -12
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +48 -10
- package/lib/seam/connect/schemas.d.ts +1 -1
- package/lib/seam/connect/schemas.js +1 -1
- package/lib/seam/connect/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +1 -1
- package/src/lib/seam/connect/model-types.ts +0 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +5 -0
- package/src/lib/seam/connect/models/customization-profiles/customization-profile.ts +10 -0
- package/src/lib/seam/connect/models/partner/magic-link.ts +0 -7
- package/src/lib/seam/connect/openapi.ts +56 -12
- package/src/lib/seam/connect/route-types.ts +65 -26
- package/src/lib/seam/connect/schemas.ts +0 -1
package/dist/connect.d.cts
CHANGED
|
@@ -28079,13 +28079,13 @@ declare const batch: z.ZodObject<{
|
|
|
28079
28079
|
secondary_color: z.ZodOptional<z.ZodString>;
|
|
28080
28080
|
logo_url: z.ZodOptional<z.ZodString>;
|
|
28081
28081
|
}, "strip", z.ZodTypeAny, {
|
|
28082
|
-
logo_url?: string | undefined;
|
|
28083
28082
|
primary_color?: string | undefined;
|
|
28084
28083
|
secondary_color?: string | undefined;
|
|
28085
|
-
}, {
|
|
28086
28084
|
logo_url?: string | undefined;
|
|
28085
|
+
}, {
|
|
28087
28086
|
primary_color?: string | undefined;
|
|
28088
28087
|
secondary_color?: string | undefined;
|
|
28088
|
+
logo_url?: string | undefined;
|
|
28089
28089
|
}>>;
|
|
28090
28090
|
}, "strip", z.ZodTypeAny, {
|
|
28091
28091
|
workspace_id: string;
|
|
@@ -28097,9 +28097,9 @@ declare const batch: z.ZodObject<{
|
|
|
28097
28097
|
instant_key_id: string;
|
|
28098
28098
|
customization_profile_id?: string | undefined;
|
|
28099
28099
|
customization?: {
|
|
28100
|
-
logo_url?: string | undefined;
|
|
28101
28100
|
primary_color?: string | undefined;
|
|
28102
28101
|
secondary_color?: string | undefined;
|
|
28102
|
+
logo_url?: string | undefined;
|
|
28103
28103
|
} | undefined;
|
|
28104
28104
|
}, {
|
|
28105
28105
|
workspace_id: string;
|
|
@@ -28111,9 +28111,9 @@ declare const batch: z.ZodObject<{
|
|
|
28111
28111
|
instant_key_id: string;
|
|
28112
28112
|
customization_profile_id?: string | undefined;
|
|
28113
28113
|
customization?: {
|
|
28114
|
-
logo_url?: string | undefined;
|
|
28115
28114
|
primary_color?: string | undefined;
|
|
28116
28115
|
secondary_color?: string | undefined;
|
|
28116
|
+
logo_url?: string | undefined;
|
|
28117
28117
|
} | undefined;
|
|
28118
28118
|
}>, "many">>;
|
|
28119
28119
|
access_codes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -31270,22 +31270,50 @@ declare const batch: z.ZodObject<{
|
|
|
31270
31270
|
logo_url: z.ZodOptional<z.ZodString>;
|
|
31271
31271
|
primary_color: z.ZodOptional<z.ZodString>;
|
|
31272
31272
|
secondary_color: z.ZodOptional<z.ZodString>;
|
|
31273
|
+
customer_portal_theme: z.ZodOptional<z.ZodObject<{
|
|
31274
|
+
primary_color: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
31275
|
+
primary_foreground_color: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
31276
|
+
secondary_color: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
31277
|
+
secondary_foreground_color: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
31278
|
+
}, "strip", z.ZodTypeAny, {
|
|
31279
|
+
primary_color?: string | undefined;
|
|
31280
|
+
primary_foreground_color?: string | undefined;
|
|
31281
|
+
secondary_color?: string | undefined;
|
|
31282
|
+
secondary_foreground_color?: string | undefined;
|
|
31283
|
+
}, {
|
|
31284
|
+
primary_color?: string | undefined;
|
|
31285
|
+
primary_foreground_color?: string | undefined;
|
|
31286
|
+
secondary_color?: string | undefined;
|
|
31287
|
+
secondary_foreground_color?: string | undefined;
|
|
31288
|
+
}>>;
|
|
31273
31289
|
}, "strip", z.ZodTypeAny, {
|
|
31274
31290
|
name: string | null;
|
|
31275
31291
|
workspace_id: string;
|
|
31276
31292
|
created_at: string;
|
|
31277
31293
|
customization_profile_id: string;
|
|
31278
|
-
logo_url?: string | undefined;
|
|
31279
31294
|
primary_color?: string | undefined;
|
|
31280
31295
|
secondary_color?: string | undefined;
|
|
31296
|
+
logo_url?: string | undefined;
|
|
31297
|
+
customer_portal_theme?: {
|
|
31298
|
+
primary_color?: string | undefined;
|
|
31299
|
+
primary_foreground_color?: string | undefined;
|
|
31300
|
+
secondary_color?: string | undefined;
|
|
31301
|
+
secondary_foreground_color?: string | undefined;
|
|
31302
|
+
} | undefined;
|
|
31281
31303
|
}, {
|
|
31282
31304
|
name: string | null;
|
|
31283
31305
|
workspace_id: string;
|
|
31284
31306
|
created_at: string;
|
|
31285
31307
|
customization_profile_id: string;
|
|
31286
|
-
logo_url?: string | undefined;
|
|
31287
31308
|
primary_color?: string | undefined;
|
|
31288
31309
|
secondary_color?: string | undefined;
|
|
31310
|
+
logo_url?: string | undefined;
|
|
31311
|
+
customer_portal_theme?: {
|
|
31312
|
+
primary_color?: string | undefined;
|
|
31313
|
+
primary_foreground_color?: string | undefined;
|
|
31314
|
+
secondary_color?: string | undefined;
|
|
31315
|
+
secondary_foreground_color?: string | undefined;
|
|
31316
|
+
} | undefined;
|
|
31289
31317
|
}>, "many">>;
|
|
31290
31318
|
}, "strip", z.ZodTypeAny, {
|
|
31291
31319
|
batch_type: "spaces" | "access_grants" | "access_methods" | "workspaces";
|
|
@@ -32217,9 +32245,9 @@ declare const batch: z.ZodObject<{
|
|
|
32217
32245
|
instant_key_id: string;
|
|
32218
32246
|
customization_profile_id?: string | undefined;
|
|
32219
32247
|
customization?: {
|
|
32220
|
-
logo_url?: string | undefined;
|
|
32221
32248
|
primary_color?: string | undefined;
|
|
32222
32249
|
secondary_color?: string | undefined;
|
|
32250
|
+
logo_url?: string | undefined;
|
|
32223
32251
|
} | undefined;
|
|
32224
32252
|
}[] | undefined;
|
|
32225
32253
|
client_sessions?: {
|
|
@@ -35232,9 +35260,15 @@ declare const batch: z.ZodObject<{
|
|
|
35232
35260
|
workspace_id: string;
|
|
35233
35261
|
created_at: string;
|
|
35234
35262
|
customization_profile_id: string;
|
|
35235
|
-
logo_url?: string | undefined;
|
|
35236
35263
|
primary_color?: string | undefined;
|
|
35237
35264
|
secondary_color?: string | undefined;
|
|
35265
|
+
logo_url?: string | undefined;
|
|
35266
|
+
customer_portal_theme?: {
|
|
35267
|
+
primary_color?: string | undefined;
|
|
35268
|
+
primary_foreground_color?: string | undefined;
|
|
35269
|
+
secondary_color?: string | undefined;
|
|
35270
|
+
secondary_foreground_color?: string | undefined;
|
|
35271
|
+
} | undefined;
|
|
35238
35272
|
}[] | undefined;
|
|
35239
35273
|
}, {
|
|
35240
35274
|
batch_type: "spaces" | "access_grants" | "access_methods" | "workspaces";
|
|
@@ -36166,9 +36200,9 @@ declare const batch: z.ZodObject<{
|
|
|
36166
36200
|
instant_key_id: string;
|
|
36167
36201
|
customization_profile_id?: string | undefined;
|
|
36168
36202
|
customization?: {
|
|
36169
|
-
logo_url?: string | undefined;
|
|
36170
36203
|
primary_color?: string | undefined;
|
|
36171
36204
|
secondary_color?: string | undefined;
|
|
36205
|
+
logo_url?: string | undefined;
|
|
36172
36206
|
} | undefined;
|
|
36173
36207
|
}[] | undefined;
|
|
36174
36208
|
client_sessions?: {
|
|
@@ -39181,9 +39215,15 @@ declare const batch: z.ZodObject<{
|
|
|
39181
39215
|
workspace_id: string;
|
|
39182
39216
|
created_at: string;
|
|
39183
39217
|
customization_profile_id: string;
|
|
39184
|
-
logo_url?: string | undefined;
|
|
39185
39218
|
primary_color?: string | undefined;
|
|
39186
39219
|
secondary_color?: string | undefined;
|
|
39220
|
+
logo_url?: string | undefined;
|
|
39221
|
+
customer_portal_theme?: {
|
|
39222
|
+
primary_color?: string | undefined;
|
|
39223
|
+
primary_foreground_color?: string | undefined;
|
|
39224
|
+
secondary_color?: string | undefined;
|
|
39225
|
+
secondary_foreground_color?: string | undefined;
|
|
39226
|
+
} | undefined;
|
|
39187
39227
|
}[] | undefined;
|
|
39188
39228
|
}>;
|
|
39189
39229
|
type Batch = z.infer<typeof batch>;
|
|
@@ -40070,22 +40110,50 @@ declare const customization_profile: z.ZodObject<{
|
|
|
40070
40110
|
logo_url: z.ZodOptional<z.ZodString>;
|
|
40071
40111
|
primary_color: z.ZodOptional<z.ZodString>;
|
|
40072
40112
|
secondary_color: z.ZodOptional<z.ZodString>;
|
|
40113
|
+
customer_portal_theme: z.ZodOptional<z.ZodObject<{
|
|
40114
|
+
primary_color: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
40115
|
+
primary_foreground_color: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
40116
|
+
secondary_color: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
40117
|
+
secondary_foreground_color: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
40118
|
+
}, "strip", z.ZodTypeAny, {
|
|
40119
|
+
primary_color?: string | undefined;
|
|
40120
|
+
primary_foreground_color?: string | undefined;
|
|
40121
|
+
secondary_color?: string | undefined;
|
|
40122
|
+
secondary_foreground_color?: string | undefined;
|
|
40123
|
+
}, {
|
|
40124
|
+
primary_color?: string | undefined;
|
|
40125
|
+
primary_foreground_color?: string | undefined;
|
|
40126
|
+
secondary_color?: string | undefined;
|
|
40127
|
+
secondary_foreground_color?: string | undefined;
|
|
40128
|
+
}>>;
|
|
40073
40129
|
}, "strip", z.ZodTypeAny, {
|
|
40074
40130
|
name: string | null;
|
|
40075
40131
|
workspace_id: string;
|
|
40076
40132
|
created_at: string;
|
|
40077
40133
|
customization_profile_id: string;
|
|
40078
|
-
logo_url?: string | undefined;
|
|
40079
40134
|
primary_color?: string | undefined;
|
|
40080
40135
|
secondary_color?: string | undefined;
|
|
40136
|
+
logo_url?: string | undefined;
|
|
40137
|
+
customer_portal_theme?: {
|
|
40138
|
+
primary_color?: string | undefined;
|
|
40139
|
+
primary_foreground_color?: string | undefined;
|
|
40140
|
+
secondary_color?: string | undefined;
|
|
40141
|
+
secondary_foreground_color?: string | undefined;
|
|
40142
|
+
} | undefined;
|
|
40081
40143
|
}, {
|
|
40082
40144
|
name: string | null;
|
|
40083
40145
|
workspace_id: string;
|
|
40084
40146
|
created_at: string;
|
|
40085
40147
|
customization_profile_id: string;
|
|
40086
|
-
logo_url?: string | undefined;
|
|
40087
40148
|
primary_color?: string | undefined;
|
|
40088
40149
|
secondary_color?: string | undefined;
|
|
40150
|
+
logo_url?: string | undefined;
|
|
40151
|
+
customer_portal_theme?: {
|
|
40152
|
+
primary_color?: string | undefined;
|
|
40153
|
+
primary_foreground_color?: string | undefined;
|
|
40154
|
+
secondary_color?: string | undefined;
|
|
40155
|
+
secondary_foreground_color?: string | undefined;
|
|
40156
|
+
} | undefined;
|
|
40089
40157
|
}>;
|
|
40090
40158
|
type CustomizationProfile = z.infer<typeof customization_profile>;
|
|
40091
40159
|
|
|
@@ -51440,13 +51508,13 @@ declare const instant_key: z.ZodObject<{
|
|
|
51440
51508
|
secondary_color: z.ZodOptional<z.ZodString>;
|
|
51441
51509
|
logo_url: z.ZodOptional<z.ZodString>;
|
|
51442
51510
|
}, "strip", z.ZodTypeAny, {
|
|
51443
|
-
logo_url?: string | undefined;
|
|
51444
51511
|
primary_color?: string | undefined;
|
|
51445
51512
|
secondary_color?: string | undefined;
|
|
51446
|
-
}, {
|
|
51447
51513
|
logo_url?: string | undefined;
|
|
51514
|
+
}, {
|
|
51448
51515
|
primary_color?: string | undefined;
|
|
51449
51516
|
secondary_color?: string | undefined;
|
|
51517
|
+
logo_url?: string | undefined;
|
|
51450
51518
|
}>>;
|
|
51451
51519
|
}, "strip", z.ZodTypeAny, {
|
|
51452
51520
|
workspace_id: string;
|
|
@@ -51458,9 +51526,9 @@ declare const instant_key: z.ZodObject<{
|
|
|
51458
51526
|
instant_key_id: string;
|
|
51459
51527
|
customization_profile_id?: string | undefined;
|
|
51460
51528
|
customization?: {
|
|
51461
|
-
logo_url?: string | undefined;
|
|
51462
51529
|
primary_color?: string | undefined;
|
|
51463
51530
|
secondary_color?: string | undefined;
|
|
51531
|
+
logo_url?: string | undefined;
|
|
51464
51532
|
} | undefined;
|
|
51465
51533
|
}, {
|
|
51466
51534
|
workspace_id: string;
|
|
@@ -51472,9 +51540,9 @@ declare const instant_key: z.ZodObject<{
|
|
|
51472
51540
|
instant_key_id: string;
|
|
51473
51541
|
customization_profile_id?: string | undefined;
|
|
51474
51542
|
customization?: {
|
|
51475
|
-
logo_url?: string | undefined;
|
|
51476
51543
|
primary_color?: string | undefined;
|
|
51477
51544
|
secondary_color?: string | undefined;
|
|
51545
|
+
logo_url?: string | undefined;
|
|
51478
51546
|
} | undefined;
|
|
51479
51547
|
}>;
|
|
51480
51548
|
type InstantKey = z.infer<typeof instant_key>;
|
|
@@ -51521,11 +51589,8 @@ declare const pagination: z.ZodObject<{
|
|
|
51521
51589
|
}>;
|
|
51522
51590
|
type Pagination = z.infer<typeof pagination>;
|
|
51523
51591
|
|
|
51524
|
-
declare const building_block_type: z.ZodEnum<["connect_accounts", "manage_devices", "organize_spaces", "console"]>;
|
|
51525
|
-
type BuildingBlockType = z.infer<typeof building_block_type>;
|
|
51526
51592
|
declare const magic_link: z.ZodObject<{
|
|
51527
51593
|
url: z.ZodString;
|
|
51528
|
-
building_block_type: z.ZodEnum<["connect_accounts", "manage_devices", "organize_spaces", "console"]>;
|
|
51529
51594
|
customer_key: z.ZodString;
|
|
51530
51595
|
expires_at: z.ZodString;
|
|
51531
51596
|
workspace_id: z.ZodString;
|
|
@@ -51536,14 +51601,12 @@ declare const magic_link: z.ZodObject<{
|
|
|
51536
51601
|
customer_key: string;
|
|
51537
51602
|
expires_at: string;
|
|
51538
51603
|
url: string;
|
|
51539
|
-
building_block_type: "manage_devices" | "connect_accounts" | "organize_spaces" | "console";
|
|
51540
51604
|
}, {
|
|
51541
51605
|
workspace_id: string;
|
|
51542
51606
|
created_at: string;
|
|
51543
51607
|
customer_key: string;
|
|
51544
51608
|
expires_at: string;
|
|
51545
51609
|
url: string;
|
|
51546
|
-
building_block_type: "manage_devices" | "connect_accounts" | "organize_spaces" | "console";
|
|
51547
51610
|
}>;
|
|
51548
51611
|
type MagicLink = z.infer<typeof magic_link>;
|
|
51549
51612
|
|
|
@@ -51980,7 +52043,6 @@ declare const schemas_action_attempt: typeof action_attempt;
|
|
|
51980
52043
|
declare const schemas_batch: typeof batch;
|
|
51981
52044
|
declare const schemas_bridge: typeof bridge;
|
|
51982
52045
|
declare const schemas_bridge_client_session: typeof bridge_client_session;
|
|
51983
|
-
declare const schemas_building_block_type: typeof building_block_type;
|
|
51984
52046
|
declare const schemas_client_session: typeof client_session;
|
|
51985
52047
|
declare const schemas_common_failed_action_attempt: typeof common_failed_action_attempt;
|
|
51986
52048
|
declare const schemas_common_pending_action_attempt: typeof common_pending_action_attempt;
|
|
@@ -52009,7 +52071,7 @@ declare const schemas_user_identity: typeof user_identity;
|
|
|
52009
52071
|
declare const schemas_webhook: typeof webhook;
|
|
52010
52072
|
declare const schemas_workspace: typeof workspace;
|
|
52011
52073
|
declare namespace schemas {
|
|
52012
|
-
export { schemas_access_code as access_code, schemas_acs_access_group as acs_access_group, schemas_acs_credential as acs_credential, schemas_acs_encoder as acs_encoder, schemas_acs_entrance as acs_entrance, schemas_acs_system as acs_system, schemas_acs_user as acs_user, schemas_action_attempt as action_attempt, schemas_batch as batch, schemas_bridge as bridge, schemas_bridge_client_session as bridge_client_session,
|
|
52074
|
+
export { schemas_access_code as access_code, schemas_acs_access_group as acs_access_group, schemas_acs_credential as acs_credential, schemas_acs_encoder as acs_encoder, schemas_acs_entrance as acs_entrance, schemas_acs_system as acs_system, schemas_acs_user as acs_user, schemas_action_attempt as action_attempt, schemas_batch as batch, schemas_bridge as bridge, schemas_bridge_client_session as bridge_client_session, schemas_client_session as client_session, schemas_common_failed_action_attempt as common_failed_action_attempt, schemas_common_pending_action_attempt as common_pending_action_attempt, schemas_common_succeeded_action_attempt as common_succeeded_action_attempt, schemas_connect_webview as connect_webview, schemas_connected_account as connected_account, schemas_custom_metadata as custom_metadata, schemas_customization_profile as customization_profile, schemas_device as device, schemas_device_provider as device_provider, schemas_instant_key as instant_key, schemas_magic_link as magic_link, schemas_noise_threshold as noise_threshold, schemas_pagination as pagination, schemas_seam_event as seam_event, schemas_staff_member_resource as staff_member_resource, schemas_thermostat_daily_program as thermostat_daily_program, schemas_thermostat_schedule as thermostat_schedule, schemas_thermostat_weekly_program as thermostat_weekly_program, schemas_unmanaged_access_code as unmanaged_access_code, schemas_unmanaged_acs_access_group as unmanaged_acs_access_group, schemas_unmanaged_acs_credential as unmanaged_acs_credential, schemas_unmanaged_acs_user as unmanaged_acs_user, schemas_unmanaged_device as unmanaged_device, schemas_user_identity as user_identity, schemas_webhook as webhook, schemas_workspace as workspace };
|
|
52013
52075
|
}
|
|
52014
52076
|
|
|
52015
52077
|
declare const _default: {
|
|
@@ -56429,6 +56491,23 @@ declare const _default: {
|
|
|
56429
56491
|
format: string;
|
|
56430
56492
|
type: string;
|
|
56431
56493
|
};
|
|
56494
|
+
customer_portal_theme: {
|
|
56495
|
+
properties: {
|
|
56496
|
+
primary_color: {
|
|
56497
|
+
type: string;
|
|
56498
|
+
};
|
|
56499
|
+
primary_foreground_color: {
|
|
56500
|
+
type: string;
|
|
56501
|
+
};
|
|
56502
|
+
secondary_color: {
|
|
56503
|
+
type: string;
|
|
56504
|
+
};
|
|
56505
|
+
secondary_foreground_color: {
|
|
56506
|
+
type: string;
|
|
56507
|
+
};
|
|
56508
|
+
};
|
|
56509
|
+
type: string;
|
|
56510
|
+
};
|
|
56432
56511
|
customization_profile_id: {
|
|
56433
56512
|
format: string;
|
|
56434
56513
|
type: string;
|
|
@@ -63544,11 +63623,6 @@ declare const _default: {
|
|
|
63544
63623
|
magic_link: {
|
|
63545
63624
|
description: string;
|
|
63546
63625
|
properties: {
|
|
63547
|
-
building_block_type: {
|
|
63548
|
-
description: string;
|
|
63549
|
-
enum: string[];
|
|
63550
|
-
type: string;
|
|
63551
|
-
};
|
|
63552
63626
|
created_at: {
|
|
63553
63627
|
description: string;
|
|
63554
63628
|
format: string;
|
|
@@ -84334,6 +84408,11 @@ declare const _default: {
|
|
|
84334
84408
|
description: string;
|
|
84335
84409
|
type: string;
|
|
84336
84410
|
};
|
|
84411
|
+
customization_profile_id: {
|
|
84412
|
+
description: string;
|
|
84413
|
+
format: string;
|
|
84414
|
+
type: string;
|
|
84415
|
+
};
|
|
84337
84416
|
exclude: {
|
|
84338
84417
|
default: boolean;
|
|
84339
84418
|
description: string;
|
|
@@ -96637,6 +96716,11 @@ declare const _default: {
|
|
|
96637
96716
|
description: string;
|
|
96638
96717
|
type: string;
|
|
96639
96718
|
};
|
|
96719
|
+
customization_profile_id: {
|
|
96720
|
+
description: string;
|
|
96721
|
+
format: string;
|
|
96722
|
+
type: string;
|
|
96723
|
+
};
|
|
96640
96724
|
exclude: {
|
|
96641
96725
|
default: boolean;
|
|
96642
96726
|
description: string;
|
|
@@ -97033,6 +97117,11 @@ declare const _default: {
|
|
|
97033
97117
|
description: string;
|
|
97034
97118
|
type: string;
|
|
97035
97119
|
};
|
|
97120
|
+
customization_profile_id: {
|
|
97121
|
+
description: string;
|
|
97122
|
+
format: string;
|
|
97123
|
+
type: string;
|
|
97124
|
+
};
|
|
97036
97125
|
exclude: {
|
|
97037
97126
|
default: boolean;
|
|
97038
97127
|
description: string;
|
|
@@ -109708,6 +109797,23 @@ declare const _default: {
|
|
|
109708
109797
|
'application/json': {
|
|
109709
109798
|
schema: {
|
|
109710
109799
|
properties: {
|
|
109800
|
+
customer_portal_theme: {
|
|
109801
|
+
properties: {
|
|
109802
|
+
primary_color: {
|
|
109803
|
+
type: string;
|
|
109804
|
+
};
|
|
109805
|
+
primary_foreground_color: {
|
|
109806
|
+
type: string;
|
|
109807
|
+
};
|
|
109808
|
+
secondary_color: {
|
|
109809
|
+
type: string;
|
|
109810
|
+
};
|
|
109811
|
+
secondary_foreground_color: {
|
|
109812
|
+
type: string;
|
|
109813
|
+
};
|
|
109814
|
+
};
|
|
109815
|
+
type: string;
|
|
109816
|
+
};
|
|
109711
109817
|
name: {
|
|
109712
109818
|
default: null;
|
|
109713
109819
|
nullable: boolean;
|
|
@@ -109720,7 +109826,6 @@ declare const _default: {
|
|
|
109720
109826
|
type: string;
|
|
109721
109827
|
};
|
|
109722
109828
|
};
|
|
109723
|
-
required: string[];
|
|
109724
109829
|
type: string;
|
|
109725
109830
|
};
|
|
109726
109831
|
};
|
|
@@ -110091,6 +110196,24 @@ declare const _default: {
|
|
|
110091
110196
|
'application/json': {
|
|
110092
110197
|
schema: {
|
|
110093
110198
|
properties: {
|
|
110199
|
+
customer_portal_theme: {
|
|
110200
|
+
nullable: boolean;
|
|
110201
|
+
properties: {
|
|
110202
|
+
primary_color: {
|
|
110203
|
+
type: string;
|
|
110204
|
+
};
|
|
110205
|
+
primary_foreground_color: {
|
|
110206
|
+
type: string;
|
|
110207
|
+
};
|
|
110208
|
+
secondary_color: {
|
|
110209
|
+
type: string;
|
|
110210
|
+
};
|
|
110211
|
+
secondary_foreground_color: {
|
|
110212
|
+
type: string;
|
|
110213
|
+
};
|
|
110214
|
+
};
|
|
110215
|
+
type: string;
|
|
110216
|
+
};
|
|
110094
110217
|
customization_profile_id: {
|
|
110095
110218
|
format: string;
|
|
110096
110219
|
type: string;
|
|
@@ -110173,6 +110296,24 @@ declare const _default: {
|
|
|
110173
110296
|
'application/json': {
|
|
110174
110297
|
schema: {
|
|
110175
110298
|
properties: {
|
|
110299
|
+
customer_portal_theme: {
|
|
110300
|
+
nullable: boolean;
|
|
110301
|
+
properties: {
|
|
110302
|
+
primary_color: {
|
|
110303
|
+
type: string;
|
|
110304
|
+
};
|
|
110305
|
+
primary_foreground_color: {
|
|
110306
|
+
type: string;
|
|
110307
|
+
};
|
|
110308
|
+
secondary_color: {
|
|
110309
|
+
type: string;
|
|
110310
|
+
};
|
|
110311
|
+
secondary_foreground_color: {
|
|
110312
|
+
type: string;
|
|
110313
|
+
};
|
|
110314
|
+
};
|
|
110315
|
+
type: string;
|
|
110316
|
+
};
|
|
110176
110317
|
customization_profile_id: {
|
|
110177
110318
|
format: string;
|
|
110178
110319
|
type: string;
|
|
@@ -132053,6 +132194,12 @@ type Routes = {
|
|
|
132053
132194
|
logo_url?: string | undefined;
|
|
132054
132195
|
primary_color?: string | undefined;
|
|
132055
132196
|
secondary_color?: string | undefined;
|
|
132197
|
+
customer_portal_theme?: {
|
|
132198
|
+
primary_color?: string | undefined;
|
|
132199
|
+
primary_foreground_color?: string | undefined;
|
|
132200
|
+
secondary_color?: string | undefined;
|
|
132201
|
+
secondary_foreground_color?: string | undefined;
|
|
132202
|
+
} | undefined;
|
|
132056
132203
|
}[] | undefined;
|
|
132057
132204
|
};
|
|
132058
132205
|
};
|
|
@@ -143196,6 +143343,8 @@ type Routes = {
|
|
|
143196
143343
|
configure?: {
|
|
143197
143344
|
/** Whether to exclude this feature from the portal. */
|
|
143198
143345
|
exclude?: boolean;
|
|
143346
|
+
/** The ID of the customization profile to use for the portal. */
|
|
143347
|
+
customization_profile_id?: string | undefined;
|
|
143199
143348
|
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
143200
143349
|
allow_access_automation_rule_customization?: boolean;
|
|
143201
143350
|
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
|
@@ -170893,6 +171042,8 @@ type Routes = {
|
|
|
170893
171042
|
configure?: {
|
|
170894
171043
|
/** Whether to exclude this feature from the portal. */
|
|
170895
171044
|
exclude?: boolean;
|
|
171045
|
+
/** The ID of the customization profile to use for the portal. */
|
|
171046
|
+
customization_profile_id?: string | undefined;
|
|
170896
171047
|
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
170897
171048
|
allow_access_automation_rule_customization?: boolean;
|
|
170898
171049
|
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
|
@@ -189419,8 +189570,6 @@ type Routes = {
|
|
|
189419
189570
|
magic_link: {
|
|
189420
189571
|
/** URL for the magic link. */
|
|
189421
189572
|
url: string;
|
|
189422
|
-
/** Type of partner building block. */
|
|
189423
|
-
building_block_type: 'connect_accounts' | 'manage_devices' | 'organize_spaces' | 'console';
|
|
189424
189573
|
/** Customer key for the magic link. */
|
|
189425
189574
|
customer_key: string;
|
|
189426
189575
|
/** Date and time at which the magic link expires. */
|
|
@@ -189460,8 +189609,6 @@ type Routes = {
|
|
|
189460
189609
|
magic_link: {
|
|
189461
189610
|
/** URL for the magic link. */
|
|
189462
189611
|
url: string;
|
|
189463
|
-
/** Type of partner building block. */
|
|
189464
|
-
building_block_type: 'connect_accounts' | 'manage_devices' | 'organize_spaces' | 'console';
|
|
189465
189612
|
/** Customer key for the magic link. */
|
|
189466
189613
|
customer_key: string;
|
|
189467
189614
|
/** Date and time at which the magic link expires. */
|
|
@@ -189492,8 +189639,6 @@ type Routes = {
|
|
|
189492
189639
|
magic_link: {
|
|
189493
189640
|
/** URL for the magic link. */
|
|
189494
189641
|
url: string;
|
|
189495
|
-
/** Type of partner building block. */
|
|
189496
|
-
building_block_type: 'connect_accounts' | 'manage_devices' | 'organize_spaces' | 'console';
|
|
189497
189642
|
/** Customer key for the magic link. */
|
|
189498
189643
|
customer_key: string;
|
|
189499
189644
|
/** Date and time at which the magic link expires. */
|
|
@@ -189531,8 +189676,6 @@ type Routes = {
|
|
|
189531
189676
|
magic_link: {
|
|
189532
189677
|
/** URL for the magic link. */
|
|
189533
189678
|
url: string;
|
|
189534
|
-
/** Type of partner building block. */
|
|
189535
|
-
building_block_type: 'connect_accounts' | 'manage_devices' | 'organize_spaces' | 'console';
|
|
189536
189679
|
/** Customer key for the magic link. */
|
|
189537
189680
|
customer_key: string;
|
|
189538
189681
|
/** Date and time at which the magic link expires. */
|
|
@@ -193126,8 +193269,14 @@ type Routes = {
|
|
|
193126
193269
|
queryParams: {};
|
|
193127
193270
|
jsonBody: {
|
|
193128
193271
|
name?: string | null;
|
|
193129
|
-
primary_color
|
|
193130
|
-
secondary_color
|
|
193272
|
+
primary_color?: string | undefined;
|
|
193273
|
+
secondary_color?: string | undefined;
|
|
193274
|
+
customer_portal_theme?: {
|
|
193275
|
+
primary_color?: string | undefined;
|
|
193276
|
+
primary_foreground_color?: string | undefined;
|
|
193277
|
+
secondary_color?: string | undefined;
|
|
193278
|
+
secondary_foreground_color?: string | undefined;
|
|
193279
|
+
} | undefined;
|
|
193131
193280
|
};
|
|
193132
193281
|
commonParams: {};
|
|
193133
193282
|
formData: {};
|
|
@@ -193141,6 +193290,12 @@ type Routes = {
|
|
|
193141
193290
|
logo_url?: string | undefined;
|
|
193142
193291
|
primary_color?: string | undefined;
|
|
193143
193292
|
secondary_color?: string | undefined;
|
|
193293
|
+
customer_portal_theme?: {
|
|
193294
|
+
primary_color?: string | undefined;
|
|
193295
|
+
primary_foreground_color?: string | undefined;
|
|
193296
|
+
secondary_color?: string | undefined;
|
|
193297
|
+
secondary_foreground_color?: string | undefined;
|
|
193298
|
+
} | undefined;
|
|
193144
193299
|
};
|
|
193145
193300
|
};
|
|
193146
193301
|
};
|
|
@@ -193163,6 +193318,12 @@ type Routes = {
|
|
|
193163
193318
|
logo_url?: string | undefined;
|
|
193164
193319
|
primary_color?: string | undefined;
|
|
193165
193320
|
secondary_color?: string | undefined;
|
|
193321
|
+
customer_portal_theme?: {
|
|
193322
|
+
primary_color?: string | undefined;
|
|
193323
|
+
primary_foreground_color?: string | undefined;
|
|
193324
|
+
secondary_color?: string | undefined;
|
|
193325
|
+
secondary_foreground_color?: string | undefined;
|
|
193326
|
+
} | undefined;
|
|
193166
193327
|
};
|
|
193167
193328
|
};
|
|
193168
193329
|
};
|
|
@@ -193185,6 +193346,12 @@ type Routes = {
|
|
|
193185
193346
|
logo_url?: string | undefined;
|
|
193186
193347
|
primary_color?: string | undefined;
|
|
193187
193348
|
secondary_color?: string | undefined;
|
|
193349
|
+
customer_portal_theme?: {
|
|
193350
|
+
primary_color?: string | undefined;
|
|
193351
|
+
primary_foreground_color?: string | undefined;
|
|
193352
|
+
secondary_color?: string | undefined;
|
|
193353
|
+
secondary_foreground_color?: string | undefined;
|
|
193354
|
+
} | undefined;
|
|
193188
193355
|
}[];
|
|
193189
193356
|
};
|
|
193190
193357
|
};
|
|
@@ -193197,6 +193364,12 @@ type Routes = {
|
|
|
193197
193364
|
name?: (string | undefined) | null;
|
|
193198
193365
|
primary_color?: string | undefined;
|
|
193199
193366
|
secondary_color?: string | undefined;
|
|
193367
|
+
customer_portal_theme?: ({
|
|
193368
|
+
primary_color?: string | undefined;
|
|
193369
|
+
primary_foreground_color?: string | undefined;
|
|
193370
|
+
secondary_color?: string | undefined;
|
|
193371
|
+
secondary_foreground_color?: string | undefined;
|
|
193372
|
+
} | undefined) | null;
|
|
193200
193373
|
};
|
|
193201
193374
|
commonParams: {};
|
|
193202
193375
|
formData: {};
|
|
@@ -200384,6 +200557,12 @@ type Routes = {
|
|
|
200384
200557
|
logo_url?: string | undefined;
|
|
200385
200558
|
primary_color?: string | undefined;
|
|
200386
200559
|
secondary_color?: string | undefined;
|
|
200560
|
+
customer_portal_theme?: {
|
|
200561
|
+
primary_color?: string | undefined;
|
|
200562
|
+
primary_foreground_color?: string | undefined;
|
|
200563
|
+
secondary_color?: string | undefined;
|
|
200564
|
+
secondary_foreground_color?: string | undefined;
|
|
200565
|
+
} | undefined;
|
|
200387
200566
|
}[] | undefined;
|
|
200388
200567
|
};
|
|
200389
200568
|
};
|
|
@@ -201772,4 +201951,4 @@ type RouteRequestParams<Path extends keyof Routes> = Routes[Path]['queryParams']
|
|
|
201772
201951
|
|
|
201773
201952
|
declare const routes: {};
|
|
201774
201953
|
|
|
201775
|
-
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
|
|
201954
|
+
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 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 };
|