@seamapi/types 1.640.0 → 1.642.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 +81 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +229 -19
- package/dist/index.cjs +81 -10
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +106 -26
- package/lib/seam/connect/models/customer/access-grant-resources.js +2 -0
- package/lib/seam/connect/models/customer/access-grant-resources.js.map +1 -1
- 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/openapi.d.ts +97 -1
- package/lib/seam/connect/openapi.js +65 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +48 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +1 -0
- package/src/lib/seam/connect/models/customer/access-grant-resources.ts +2 -0
- 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/openapi.ts +68 -1
- package/src/lib/seam/connect/route-types.ts +65 -2
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>;
|
|
@@ -56423,6 +56491,23 @@ declare const _default: {
|
|
|
56423
56491
|
format: string;
|
|
56424
56492
|
type: string;
|
|
56425
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
|
+
};
|
|
56426
56511
|
customization_profile_id: {
|
|
56427
56512
|
format: string;
|
|
56428
56513
|
type: string;
|
|
@@ -84323,6 +84408,11 @@ declare const _default: {
|
|
|
84323
84408
|
description: string;
|
|
84324
84409
|
type: string;
|
|
84325
84410
|
};
|
|
84411
|
+
customization_profile_id: {
|
|
84412
|
+
description: string;
|
|
84413
|
+
format: string;
|
|
84414
|
+
type: string;
|
|
84415
|
+
};
|
|
84326
84416
|
exclude: {
|
|
84327
84417
|
default: boolean;
|
|
84328
84418
|
description: string;
|
|
@@ -84656,6 +84746,7 @@ declare const _default: {
|
|
|
84656
84746
|
};
|
|
84657
84747
|
ends_at: {
|
|
84658
84748
|
description: string;
|
|
84749
|
+
format: string;
|
|
84659
84750
|
type: string;
|
|
84660
84751
|
};
|
|
84661
84752
|
facility_keys: {
|
|
@@ -84711,6 +84802,7 @@ declare const _default: {
|
|
|
84711
84802
|
};
|
|
84712
84803
|
starts_at: {
|
|
84713
84804
|
description: string;
|
|
84805
|
+
format: string;
|
|
84714
84806
|
type: string;
|
|
84715
84807
|
};
|
|
84716
84808
|
tenant_key: {
|
|
@@ -84763,6 +84855,7 @@ declare const _default: {
|
|
|
84763
84855
|
};
|
|
84764
84856
|
ends_at: {
|
|
84765
84857
|
description: string;
|
|
84858
|
+
format: string;
|
|
84766
84859
|
type: string;
|
|
84767
84860
|
};
|
|
84768
84861
|
facility_keys: {
|
|
@@ -84818,6 +84911,7 @@ declare const _default: {
|
|
|
84818
84911
|
};
|
|
84819
84912
|
starts_at: {
|
|
84820
84913
|
description: string;
|
|
84914
|
+
format: string;
|
|
84821
84915
|
type: string;
|
|
84822
84916
|
};
|
|
84823
84917
|
tenant_key: {
|
|
@@ -85016,6 +85110,7 @@ declare const _default: {
|
|
|
85016
85110
|
};
|
|
85017
85111
|
ends_at: {
|
|
85018
85112
|
description: string;
|
|
85113
|
+
format: string;
|
|
85019
85114
|
type: string;
|
|
85020
85115
|
};
|
|
85021
85116
|
facility_keys: {
|
|
@@ -85076,6 +85171,7 @@ declare const _default: {
|
|
|
85076
85171
|
};
|
|
85077
85172
|
starts_at: {
|
|
85078
85173
|
description: string;
|
|
85174
|
+
format: string;
|
|
85079
85175
|
type: string;
|
|
85080
85176
|
};
|
|
85081
85177
|
tenant_key: {
|
|
@@ -85745,6 +85841,7 @@ declare const _default: {
|
|
|
85745
85841
|
};
|
|
85746
85842
|
ends_at: {
|
|
85747
85843
|
description: string;
|
|
85844
|
+
format: string;
|
|
85748
85845
|
type: string;
|
|
85749
85846
|
};
|
|
85750
85847
|
facility_keys: {
|
|
@@ -85800,6 +85897,7 @@ declare const _default: {
|
|
|
85800
85897
|
};
|
|
85801
85898
|
starts_at: {
|
|
85802
85899
|
description: string;
|
|
85900
|
+
format: string;
|
|
85803
85901
|
type: string;
|
|
85804
85902
|
};
|
|
85805
85903
|
tenant_key: {
|
|
@@ -85852,6 +85950,7 @@ declare const _default: {
|
|
|
85852
85950
|
};
|
|
85853
85951
|
ends_at: {
|
|
85854
85952
|
description: string;
|
|
85953
|
+
format: string;
|
|
85855
85954
|
type: string;
|
|
85856
85955
|
};
|
|
85857
85956
|
facility_keys: {
|
|
@@ -85907,6 +86006,7 @@ declare const _default: {
|
|
|
85907
86006
|
};
|
|
85908
86007
|
starts_at: {
|
|
85909
86008
|
description: string;
|
|
86009
|
+
format: string;
|
|
85910
86010
|
type: string;
|
|
85911
86011
|
};
|
|
85912
86012
|
tenant_key: {
|
|
@@ -86105,6 +86205,7 @@ declare const _default: {
|
|
|
86105
86205
|
};
|
|
86106
86206
|
ends_at: {
|
|
86107
86207
|
description: string;
|
|
86208
|
+
format: string;
|
|
86108
86209
|
type: string;
|
|
86109
86210
|
};
|
|
86110
86211
|
facility_keys: {
|
|
@@ -86165,6 +86266,7 @@ declare const _default: {
|
|
|
86165
86266
|
};
|
|
86166
86267
|
starts_at: {
|
|
86167
86268
|
description: string;
|
|
86269
|
+
format: string;
|
|
86168
86270
|
type: string;
|
|
86169
86271
|
};
|
|
86170
86272
|
tenant_key: {
|
|
@@ -96626,6 +96728,11 @@ declare const _default: {
|
|
|
96626
96728
|
description: string;
|
|
96627
96729
|
type: string;
|
|
96628
96730
|
};
|
|
96731
|
+
customization_profile_id: {
|
|
96732
|
+
description: string;
|
|
96733
|
+
format: string;
|
|
96734
|
+
type: string;
|
|
96735
|
+
};
|
|
96629
96736
|
exclude: {
|
|
96630
96737
|
default: boolean;
|
|
96631
96738
|
description: string;
|
|
@@ -97022,6 +97129,11 @@ declare const _default: {
|
|
|
97022
97129
|
description: string;
|
|
97023
97130
|
type: string;
|
|
97024
97131
|
};
|
|
97132
|
+
customization_profile_id: {
|
|
97133
|
+
description: string;
|
|
97134
|
+
format: string;
|
|
97135
|
+
type: string;
|
|
97136
|
+
};
|
|
97025
97137
|
exclude: {
|
|
97026
97138
|
default: boolean;
|
|
97027
97139
|
description: string;
|
|
@@ -109697,6 +109809,23 @@ declare const _default: {
|
|
|
109697
109809
|
'application/json': {
|
|
109698
109810
|
schema: {
|
|
109699
109811
|
properties: {
|
|
109812
|
+
customer_portal_theme: {
|
|
109813
|
+
properties: {
|
|
109814
|
+
primary_color: {
|
|
109815
|
+
type: string;
|
|
109816
|
+
};
|
|
109817
|
+
primary_foreground_color: {
|
|
109818
|
+
type: string;
|
|
109819
|
+
};
|
|
109820
|
+
secondary_color: {
|
|
109821
|
+
type: string;
|
|
109822
|
+
};
|
|
109823
|
+
secondary_foreground_color: {
|
|
109824
|
+
type: string;
|
|
109825
|
+
};
|
|
109826
|
+
};
|
|
109827
|
+
type: string;
|
|
109828
|
+
};
|
|
109700
109829
|
name: {
|
|
109701
109830
|
default: null;
|
|
109702
109831
|
nullable: boolean;
|
|
@@ -109709,7 +109838,6 @@ declare const _default: {
|
|
|
109709
109838
|
type: string;
|
|
109710
109839
|
};
|
|
109711
109840
|
};
|
|
109712
|
-
required: string[];
|
|
109713
109841
|
type: string;
|
|
109714
109842
|
};
|
|
109715
109843
|
};
|
|
@@ -110080,6 +110208,24 @@ declare const _default: {
|
|
|
110080
110208
|
'application/json': {
|
|
110081
110209
|
schema: {
|
|
110082
110210
|
properties: {
|
|
110211
|
+
customer_portal_theme: {
|
|
110212
|
+
nullable: boolean;
|
|
110213
|
+
properties: {
|
|
110214
|
+
primary_color: {
|
|
110215
|
+
type: string;
|
|
110216
|
+
};
|
|
110217
|
+
primary_foreground_color: {
|
|
110218
|
+
type: string;
|
|
110219
|
+
};
|
|
110220
|
+
secondary_color: {
|
|
110221
|
+
type: string;
|
|
110222
|
+
};
|
|
110223
|
+
secondary_foreground_color: {
|
|
110224
|
+
type: string;
|
|
110225
|
+
};
|
|
110226
|
+
};
|
|
110227
|
+
type: string;
|
|
110228
|
+
};
|
|
110083
110229
|
customization_profile_id: {
|
|
110084
110230
|
format: string;
|
|
110085
110231
|
type: string;
|
|
@@ -110162,6 +110308,24 @@ declare const _default: {
|
|
|
110162
110308
|
'application/json': {
|
|
110163
110309
|
schema: {
|
|
110164
110310
|
properties: {
|
|
110311
|
+
customer_portal_theme: {
|
|
110312
|
+
nullable: boolean;
|
|
110313
|
+
properties: {
|
|
110314
|
+
primary_color: {
|
|
110315
|
+
type: string;
|
|
110316
|
+
};
|
|
110317
|
+
primary_foreground_color: {
|
|
110318
|
+
type: string;
|
|
110319
|
+
};
|
|
110320
|
+
secondary_color: {
|
|
110321
|
+
type: string;
|
|
110322
|
+
};
|
|
110323
|
+
secondary_foreground_color: {
|
|
110324
|
+
type: string;
|
|
110325
|
+
};
|
|
110326
|
+
};
|
|
110327
|
+
type: string;
|
|
110328
|
+
};
|
|
110165
110329
|
customization_profile_id: {
|
|
110166
110330
|
format: string;
|
|
110167
110331
|
type: string;
|
|
@@ -132042,6 +132206,12 @@ type Routes = {
|
|
|
132042
132206
|
logo_url?: string | undefined;
|
|
132043
132207
|
primary_color?: string | undefined;
|
|
132044
132208
|
secondary_color?: string | undefined;
|
|
132209
|
+
customer_portal_theme?: {
|
|
132210
|
+
primary_color?: string | undefined;
|
|
132211
|
+
primary_foreground_color?: string | undefined;
|
|
132212
|
+
secondary_color?: string | undefined;
|
|
132213
|
+
secondary_foreground_color?: string | undefined;
|
|
132214
|
+
} | undefined;
|
|
132045
132215
|
}[] | undefined;
|
|
132046
132216
|
};
|
|
132047
132217
|
};
|
|
@@ -143185,6 +143355,8 @@ type Routes = {
|
|
|
143185
143355
|
configure?: {
|
|
143186
143356
|
/** Whether to exclude this feature from the portal. */
|
|
143187
143357
|
exclude?: boolean;
|
|
143358
|
+
/** The ID of the customization profile to use for the portal. */
|
|
143359
|
+
customization_profile_id?: string | undefined;
|
|
143188
143360
|
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
143189
143361
|
allow_access_automation_rule_customization?: boolean;
|
|
143190
143362
|
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
|
@@ -170882,6 +171054,8 @@ type Routes = {
|
|
|
170882
171054
|
configure?: {
|
|
170883
171055
|
/** Whether to exclude this feature from the portal. */
|
|
170884
171056
|
exclude?: boolean;
|
|
171057
|
+
/** The ID of the customization profile to use for the portal. */
|
|
171058
|
+
customization_profile_id?: string | undefined;
|
|
170885
171059
|
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
170886
171060
|
allow_access_automation_rule_customization?: boolean;
|
|
170887
171061
|
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
|
@@ -193107,8 +193281,14 @@ type Routes = {
|
|
|
193107
193281
|
queryParams: {};
|
|
193108
193282
|
jsonBody: {
|
|
193109
193283
|
name?: string | null;
|
|
193110
|
-
primary_color
|
|
193111
|
-
secondary_color
|
|
193284
|
+
primary_color?: string | undefined;
|
|
193285
|
+
secondary_color?: string | undefined;
|
|
193286
|
+
customer_portal_theme?: {
|
|
193287
|
+
primary_color?: string | undefined;
|
|
193288
|
+
primary_foreground_color?: string | undefined;
|
|
193289
|
+
secondary_color?: string | undefined;
|
|
193290
|
+
secondary_foreground_color?: string | undefined;
|
|
193291
|
+
} | undefined;
|
|
193112
193292
|
};
|
|
193113
193293
|
commonParams: {};
|
|
193114
193294
|
formData: {};
|
|
@@ -193122,6 +193302,12 @@ type Routes = {
|
|
|
193122
193302
|
logo_url?: string | undefined;
|
|
193123
193303
|
primary_color?: string | undefined;
|
|
193124
193304
|
secondary_color?: string | undefined;
|
|
193305
|
+
customer_portal_theme?: {
|
|
193306
|
+
primary_color?: string | undefined;
|
|
193307
|
+
primary_foreground_color?: string | undefined;
|
|
193308
|
+
secondary_color?: string | undefined;
|
|
193309
|
+
secondary_foreground_color?: string | undefined;
|
|
193310
|
+
} | undefined;
|
|
193125
193311
|
};
|
|
193126
193312
|
};
|
|
193127
193313
|
};
|
|
@@ -193144,6 +193330,12 @@ type Routes = {
|
|
|
193144
193330
|
logo_url?: string | undefined;
|
|
193145
193331
|
primary_color?: string | undefined;
|
|
193146
193332
|
secondary_color?: string | undefined;
|
|
193333
|
+
customer_portal_theme?: {
|
|
193334
|
+
primary_color?: string | undefined;
|
|
193335
|
+
primary_foreground_color?: string | undefined;
|
|
193336
|
+
secondary_color?: string | undefined;
|
|
193337
|
+
secondary_foreground_color?: string | undefined;
|
|
193338
|
+
} | undefined;
|
|
193147
193339
|
};
|
|
193148
193340
|
};
|
|
193149
193341
|
};
|
|
@@ -193166,6 +193358,12 @@ type Routes = {
|
|
|
193166
193358
|
logo_url?: string | undefined;
|
|
193167
193359
|
primary_color?: string | undefined;
|
|
193168
193360
|
secondary_color?: string | undefined;
|
|
193361
|
+
customer_portal_theme?: {
|
|
193362
|
+
primary_color?: string | undefined;
|
|
193363
|
+
primary_foreground_color?: string | undefined;
|
|
193364
|
+
secondary_color?: string | undefined;
|
|
193365
|
+
secondary_foreground_color?: string | undefined;
|
|
193366
|
+
} | undefined;
|
|
193169
193367
|
}[];
|
|
193170
193368
|
};
|
|
193171
193369
|
};
|
|
@@ -193178,6 +193376,12 @@ type Routes = {
|
|
|
193178
193376
|
name?: (string | undefined) | null;
|
|
193179
193377
|
primary_color?: string | undefined;
|
|
193180
193378
|
secondary_color?: string | undefined;
|
|
193379
|
+
customer_portal_theme?: ({
|
|
193380
|
+
primary_color?: string | undefined;
|
|
193381
|
+
primary_foreground_color?: string | undefined;
|
|
193382
|
+
secondary_color?: string | undefined;
|
|
193383
|
+
secondary_foreground_color?: string | undefined;
|
|
193384
|
+
} | undefined) | null;
|
|
193181
193385
|
};
|
|
193182
193386
|
commonParams: {};
|
|
193183
193387
|
formData: {};
|
|
@@ -200365,6 +200569,12 @@ type Routes = {
|
|
|
200365
200569
|
logo_url?: string | undefined;
|
|
200366
200570
|
primary_color?: string | undefined;
|
|
200367
200571
|
secondary_color?: string | undefined;
|
|
200572
|
+
customer_portal_theme?: {
|
|
200573
|
+
primary_color?: string | undefined;
|
|
200574
|
+
primary_foreground_color?: string | undefined;
|
|
200575
|
+
secondary_color?: string | undefined;
|
|
200576
|
+
secondary_foreground_color?: string | undefined;
|
|
200577
|
+
} | undefined;
|
|
200368
200578
|
}[] | undefined;
|
|
200369
200579
|
};
|
|
200370
200580
|
};
|