@bluepic/embed 0.4.0-next.101 → 0.4.0-next.103
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/bluepic-embed.iife.js +87 -87
- package/dist/bluepic-embed.umd.js +87 -87
- package/dist/embed/embed.d.ts +159 -199
- package/dist/main.cjs +75 -75
- package/dist/main.mjs +13431 -13140
- package/dist/style.css +1 -1
- package/dist/util/cloudflareImages.d.ts +8 -1
- package/dist/util/gallery.d.ts +82 -18
- package/dist/util/useTheme.d.ts +431 -1
- package/package.json +5 -4
package/dist/embed/embed.d.ts
CHANGED
|
@@ -22,39 +22,7 @@ export declare class BluepicEmbed extends EventTarget {
|
|
|
22
22
|
readonly bridge: FieldsBridge;
|
|
23
23
|
readonly showBackBtn: boolean;
|
|
24
24
|
readonly branding: boolean;
|
|
25
|
-
readonly exportOptions: z.infer<
|
|
26
|
-
bluepicBranding: z.ZodBoolean;
|
|
27
|
-
layout: z.ZodEnum<{
|
|
28
|
-
stack: "stack";
|
|
29
|
-
gallery: "gallery";
|
|
30
|
-
"selection:horizontal": "selection:horizontal";
|
|
31
|
-
"selection:vertical": "selection:vertical";
|
|
32
|
-
}>;
|
|
33
|
-
logo: z.ZodOptional<z.ZodString>;
|
|
34
|
-
title: z.ZodOptional<z.ZodString>;
|
|
35
|
-
allowPanAndZoom: z.ZodBoolean;
|
|
36
|
-
customStyle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
37
|
-
sortByCategories: z.ZodBoolean;
|
|
38
|
-
captions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
39
|
-
categories: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
40
|
-
export: z.ZodObject<{
|
|
41
|
-
linkedInOAuth: z.ZodBoolean;
|
|
42
|
-
trackLinks: z.ZodOptional<z.ZodBoolean>;
|
|
43
|
-
socialConnections: z.ZodObject<{
|
|
44
|
-
instagram: z.ZodOptional<z.ZodBoolean>;
|
|
45
|
-
facebook: z.ZodOptional<z.ZodBoolean>;
|
|
46
|
-
linkedin: z.ZodOptional<z.ZodBoolean>;
|
|
47
|
-
mail: z.ZodOptional<z.ZodBoolean>;
|
|
48
|
-
whatsapp: z.ZodOptional<z.ZodBoolean>;
|
|
49
|
-
x: z.ZodOptional<z.ZodBoolean>;
|
|
50
|
-
}, z.core.$strip>;
|
|
51
|
-
actionalConnections: z.ZodObject<{
|
|
52
|
-
download: z.ZodOptional<z.ZodBoolean>;
|
|
53
|
-
webhook: z.ZodOptional<z.ZodString>;
|
|
54
|
-
redirect: z.ZodOptional<z.ZodString>;
|
|
55
|
-
}, z.core.$strip>;
|
|
56
|
-
}, z.core.$strip>;
|
|
57
|
-
}, z.core.$strip>>;
|
|
25
|
+
readonly exportOptions: z.infer<typeof Studio.campaignConfigSchema>["export"];
|
|
58
26
|
readonly apiBaseUrl: string;
|
|
59
27
|
readonly env: "prod" | "dev";
|
|
60
28
|
readonly templateId: string;
|
|
@@ -122,39 +90,7 @@ export declare class BluepicEmbed extends EventTarget {
|
|
|
122
90
|
bridge: FieldsBridge;
|
|
123
91
|
showBackBtn: boolean;
|
|
124
92
|
branding: boolean;
|
|
125
|
-
exportOptions: z.infer<
|
|
126
|
-
bluepicBranding: z.ZodBoolean;
|
|
127
|
-
layout: z.ZodEnum<{
|
|
128
|
-
stack: "stack";
|
|
129
|
-
gallery: "gallery";
|
|
130
|
-
"selection:horizontal": "selection:horizontal";
|
|
131
|
-
"selection:vertical": "selection:vertical";
|
|
132
|
-
}>;
|
|
133
|
-
logo: z.ZodOptional<z.ZodString>;
|
|
134
|
-
title: z.ZodOptional<z.ZodString>;
|
|
135
|
-
allowPanAndZoom: z.ZodBoolean;
|
|
136
|
-
customStyle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
137
|
-
sortByCategories: z.ZodBoolean;
|
|
138
|
-
captions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
139
|
-
categories: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
140
|
-
export: z.ZodObject<{
|
|
141
|
-
linkedInOAuth: z.ZodBoolean;
|
|
142
|
-
trackLinks: z.ZodOptional<z.ZodBoolean>;
|
|
143
|
-
socialConnections: z.ZodObject<{
|
|
144
|
-
instagram: z.ZodOptional<z.ZodBoolean>;
|
|
145
|
-
facebook: z.ZodOptional<z.ZodBoolean>;
|
|
146
|
-
linkedin: z.ZodOptional<z.ZodBoolean>;
|
|
147
|
-
mail: z.ZodOptional<z.ZodBoolean>;
|
|
148
|
-
whatsapp: z.ZodOptional<z.ZodBoolean>;
|
|
149
|
-
x: z.ZodOptional<z.ZodBoolean>;
|
|
150
|
-
}, z.core.$strip>;
|
|
151
|
-
actionalConnections: z.ZodObject<{
|
|
152
|
-
download: z.ZodOptional<z.ZodBoolean>;
|
|
153
|
-
webhook: z.ZodOptional<z.ZodString>;
|
|
154
|
-
redirect: z.ZodOptional<z.ZodString>;
|
|
155
|
-
}, z.core.$strip>;
|
|
156
|
-
}, z.core.$strip>;
|
|
157
|
-
}, z.core.$strip>>;
|
|
93
|
+
exportOptions: z.infer<typeof Studio.campaignConfigSchema>["export"];
|
|
158
94
|
apiBaseUrl: string;
|
|
159
95
|
env: "prod" | "dev";
|
|
160
96
|
templateId: string;
|
|
@@ -2947,39 +2883,7 @@ export declare class BluepicEmbed extends EventTarget {
|
|
|
2947
2883
|
bridge: FieldsBridge;
|
|
2948
2884
|
showBackBtn: boolean;
|
|
2949
2885
|
branding: boolean;
|
|
2950
|
-
exportOptions: z.infer<
|
|
2951
|
-
bluepicBranding: z.ZodBoolean;
|
|
2952
|
-
layout: z.ZodEnum<{
|
|
2953
|
-
stack: "stack";
|
|
2954
|
-
gallery: "gallery";
|
|
2955
|
-
"selection:horizontal": "selection:horizontal";
|
|
2956
|
-
"selection:vertical": "selection:vertical";
|
|
2957
|
-
}>;
|
|
2958
|
-
logo: z.ZodOptional<z.ZodString>;
|
|
2959
|
-
title: z.ZodOptional<z.ZodString>;
|
|
2960
|
-
allowPanAndZoom: z.ZodBoolean;
|
|
2961
|
-
customStyle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2962
|
-
sortByCategories: z.ZodBoolean;
|
|
2963
|
-
captions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2964
|
-
categories: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2965
|
-
export: z.ZodObject<{
|
|
2966
|
-
linkedInOAuth: z.ZodBoolean;
|
|
2967
|
-
trackLinks: z.ZodOptional<z.ZodBoolean>;
|
|
2968
|
-
socialConnections: z.ZodObject<{
|
|
2969
|
-
instagram: z.ZodOptional<z.ZodBoolean>;
|
|
2970
|
-
facebook: z.ZodOptional<z.ZodBoolean>;
|
|
2971
|
-
linkedin: z.ZodOptional<z.ZodBoolean>;
|
|
2972
|
-
mail: z.ZodOptional<z.ZodBoolean>;
|
|
2973
|
-
whatsapp: z.ZodOptional<z.ZodBoolean>;
|
|
2974
|
-
x: z.ZodOptional<z.ZodBoolean>;
|
|
2975
|
-
}, z.core.$strip>;
|
|
2976
|
-
actionalConnections: z.ZodObject<{
|
|
2977
|
-
download: z.ZodOptional<z.ZodBoolean>;
|
|
2978
|
-
webhook: z.ZodOptional<z.ZodString>;
|
|
2979
|
-
redirect: z.ZodOptional<z.ZodString>;
|
|
2980
|
-
}, z.core.$strip>;
|
|
2981
|
-
}, z.core.$strip>;
|
|
2982
|
-
}, z.core.$strip>>;
|
|
2886
|
+
exportOptions: z.infer<typeof Studio.campaignConfigSchema>["export"];
|
|
2983
2887
|
apiBaseUrl: string;
|
|
2984
2888
|
env: "prod" | "dev";
|
|
2985
2889
|
templateId: string;
|
|
@@ -4384,39 +4288,7 @@ export declare class BluepicEmbed extends EventTarget {
|
|
|
4384
4288
|
readonly bridge: FieldsBridge;
|
|
4385
4289
|
readonly showBackBtn: boolean;
|
|
4386
4290
|
readonly branding: boolean;
|
|
4387
|
-
readonly exportOptions: z.infer<
|
|
4388
|
-
bluepicBranding: z.ZodBoolean;
|
|
4389
|
-
layout: z.ZodEnum<{
|
|
4390
|
-
stack: "stack";
|
|
4391
|
-
gallery: "gallery";
|
|
4392
|
-
"selection:horizontal": "selection:horizontal";
|
|
4393
|
-
"selection:vertical": "selection:vertical";
|
|
4394
|
-
}>;
|
|
4395
|
-
logo: z.ZodOptional<z.ZodString>;
|
|
4396
|
-
title: z.ZodOptional<z.ZodString>;
|
|
4397
|
-
allowPanAndZoom: z.ZodBoolean;
|
|
4398
|
-
customStyle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4399
|
-
sortByCategories: z.ZodBoolean;
|
|
4400
|
-
captions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4401
|
-
categories: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4402
|
-
export: z.ZodObject<{
|
|
4403
|
-
linkedInOAuth: z.ZodBoolean;
|
|
4404
|
-
trackLinks: z.ZodOptional<z.ZodBoolean>;
|
|
4405
|
-
socialConnections: z.ZodObject<{
|
|
4406
|
-
instagram: z.ZodOptional<z.ZodBoolean>;
|
|
4407
|
-
facebook: z.ZodOptional<z.ZodBoolean>;
|
|
4408
|
-
linkedin: z.ZodOptional<z.ZodBoolean>;
|
|
4409
|
-
mail: z.ZodOptional<z.ZodBoolean>;
|
|
4410
|
-
whatsapp: z.ZodOptional<z.ZodBoolean>;
|
|
4411
|
-
x: z.ZodOptional<z.ZodBoolean>;
|
|
4412
|
-
}, z.core.$strip>;
|
|
4413
|
-
actionalConnections: z.ZodObject<{
|
|
4414
|
-
download: z.ZodOptional<z.ZodBoolean>;
|
|
4415
|
-
webhook: z.ZodOptional<z.ZodString>;
|
|
4416
|
-
redirect: z.ZodOptional<z.ZodString>;
|
|
4417
|
-
}, z.core.$strip>;
|
|
4418
|
-
}, z.core.$strip>;
|
|
4419
|
-
}, z.core.$strip>>;
|
|
4291
|
+
readonly exportOptions: z.infer<typeof Studio.campaignConfigSchema>["export"];
|
|
4420
4292
|
readonly apiBaseUrl: string;
|
|
4421
4293
|
readonly env: "prod" | "dev";
|
|
4422
4294
|
readonly templateId: string;
|
|
@@ -4484,39 +4356,7 @@ export declare class BluepicEmbed extends EventTarget {
|
|
|
4484
4356
|
bridge: FieldsBridge;
|
|
4485
4357
|
showBackBtn: boolean;
|
|
4486
4358
|
branding: boolean;
|
|
4487
|
-
exportOptions: z.infer<
|
|
4488
|
-
bluepicBranding: z.ZodBoolean;
|
|
4489
|
-
layout: z.ZodEnum<{
|
|
4490
|
-
stack: "stack";
|
|
4491
|
-
gallery: "gallery";
|
|
4492
|
-
"selection:horizontal": "selection:horizontal";
|
|
4493
|
-
"selection:vertical": "selection:vertical";
|
|
4494
|
-
}>;
|
|
4495
|
-
logo: z.ZodOptional<z.ZodString>;
|
|
4496
|
-
title: z.ZodOptional<z.ZodString>;
|
|
4497
|
-
allowPanAndZoom: z.ZodBoolean;
|
|
4498
|
-
customStyle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4499
|
-
sortByCategories: z.ZodBoolean;
|
|
4500
|
-
captions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4501
|
-
categories: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4502
|
-
export: z.ZodObject<{
|
|
4503
|
-
linkedInOAuth: z.ZodBoolean;
|
|
4504
|
-
trackLinks: z.ZodOptional<z.ZodBoolean>;
|
|
4505
|
-
socialConnections: z.ZodObject<{
|
|
4506
|
-
instagram: z.ZodOptional<z.ZodBoolean>;
|
|
4507
|
-
facebook: z.ZodOptional<z.ZodBoolean>;
|
|
4508
|
-
linkedin: z.ZodOptional<z.ZodBoolean>;
|
|
4509
|
-
mail: z.ZodOptional<z.ZodBoolean>;
|
|
4510
|
-
whatsapp: z.ZodOptional<z.ZodBoolean>;
|
|
4511
|
-
x: z.ZodOptional<z.ZodBoolean>;
|
|
4512
|
-
}, z.core.$strip>;
|
|
4513
|
-
actionalConnections: z.ZodObject<{
|
|
4514
|
-
download: z.ZodOptional<z.ZodBoolean>;
|
|
4515
|
-
webhook: z.ZodOptional<z.ZodString>;
|
|
4516
|
-
redirect: z.ZodOptional<z.ZodString>;
|
|
4517
|
-
}, z.core.$strip>;
|
|
4518
|
-
}, z.core.$strip>;
|
|
4519
|
-
}, z.core.$strip>>;
|
|
4359
|
+
exportOptions: z.infer<typeof Studio.campaignConfigSchema>["export"];
|
|
4520
4360
|
apiBaseUrl: string;
|
|
4521
4361
|
env: "prod" | "dev";
|
|
4522
4362
|
templateId: string;
|
|
@@ -7309,39 +7149,7 @@ export declare class BluepicEmbed extends EventTarget {
|
|
|
7309
7149
|
bridge: FieldsBridge;
|
|
7310
7150
|
showBackBtn: boolean;
|
|
7311
7151
|
branding: boolean;
|
|
7312
|
-
exportOptions: z.infer<
|
|
7313
|
-
bluepicBranding: z.ZodBoolean;
|
|
7314
|
-
layout: z.ZodEnum<{
|
|
7315
|
-
stack: "stack";
|
|
7316
|
-
gallery: "gallery";
|
|
7317
|
-
"selection:horizontal": "selection:horizontal";
|
|
7318
|
-
"selection:vertical": "selection:vertical";
|
|
7319
|
-
}>;
|
|
7320
|
-
logo: z.ZodOptional<z.ZodString>;
|
|
7321
|
-
title: z.ZodOptional<z.ZodString>;
|
|
7322
|
-
allowPanAndZoom: z.ZodBoolean;
|
|
7323
|
-
customStyle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
7324
|
-
sortByCategories: z.ZodBoolean;
|
|
7325
|
-
captions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
7326
|
-
categories: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
7327
|
-
export: z.ZodObject<{
|
|
7328
|
-
linkedInOAuth: z.ZodBoolean;
|
|
7329
|
-
trackLinks: z.ZodOptional<z.ZodBoolean>;
|
|
7330
|
-
socialConnections: z.ZodObject<{
|
|
7331
|
-
instagram: z.ZodOptional<z.ZodBoolean>;
|
|
7332
|
-
facebook: z.ZodOptional<z.ZodBoolean>;
|
|
7333
|
-
linkedin: z.ZodOptional<z.ZodBoolean>;
|
|
7334
|
-
mail: z.ZodOptional<z.ZodBoolean>;
|
|
7335
|
-
whatsapp: z.ZodOptional<z.ZodBoolean>;
|
|
7336
|
-
x: z.ZodOptional<z.ZodBoolean>;
|
|
7337
|
-
}, z.core.$strip>;
|
|
7338
|
-
actionalConnections: z.ZodObject<{
|
|
7339
|
-
download: z.ZodOptional<z.ZodBoolean>;
|
|
7340
|
-
webhook: z.ZodOptional<z.ZodString>;
|
|
7341
|
-
redirect: z.ZodOptional<z.ZodString>;
|
|
7342
|
-
}, z.core.$strip>;
|
|
7343
|
-
}, z.core.$strip>;
|
|
7344
|
-
}, z.core.$strip>>;
|
|
7152
|
+
exportOptions: z.infer<typeof Studio.campaignConfigSchema>["export"];
|
|
7345
7153
|
apiBaseUrl: string;
|
|
7346
7154
|
env: "prod" | "dev";
|
|
7347
7155
|
templateId: string;
|
|
@@ -8741,7 +8549,159 @@ export declare class BluepicEmbed extends EventTarget {
|
|
|
8741
8549
|
serial: Ref<Template.Serial | undefined, Template.Serial | undefined>;
|
|
8742
8550
|
preview: Ref<string | undefined, string | undefined>;
|
|
8743
8551
|
templateName: Ref<string, string>;
|
|
8744
|
-
campaign: Ref<
|
|
8552
|
+
campaign: Ref<{
|
|
8553
|
+
id: number;
|
|
8554
|
+
uid: string;
|
|
8555
|
+
userId: string;
|
|
8556
|
+
name: string;
|
|
8557
|
+
type: "template" | "email" | "widget" | "team" | "web" | "batch" | "api";
|
|
8558
|
+
active: boolean;
|
|
8559
|
+
private: boolean;
|
|
8560
|
+
password: string | null;
|
|
8561
|
+
customSlug: string | null;
|
|
8562
|
+
customDomain: string | null;
|
|
8563
|
+
sharedWithOrganizations: number[];
|
|
8564
|
+
exportActions: {
|
|
8565
|
+
trigger: "user-gesture" | "onupdate";
|
|
8566
|
+
label: string;
|
|
8567
|
+
download: boolean;
|
|
8568
|
+
renderFormat?: "svg" | "none" | "png" | "jpeg" | "pdf" | "gif" | "idml" | undefined;
|
|
8569
|
+
successMessage?: string | undefined;
|
|
8570
|
+
webhook?: string | undefined;
|
|
8571
|
+
redirect?: string | undefined;
|
|
8572
|
+
}[];
|
|
8573
|
+
templates: string[];
|
|
8574
|
+
config: {
|
|
8575
|
+
bluepicBranding: boolean;
|
|
8576
|
+
layout: "stack" | "gallery" | "selection:horizontal" | "selection:vertical";
|
|
8577
|
+
allowPanAndZoom: boolean;
|
|
8578
|
+
sortByCategories: boolean;
|
|
8579
|
+
export: {
|
|
8580
|
+
linkedInOAuth: boolean;
|
|
8581
|
+
socialConnections: {
|
|
8582
|
+
instagram?: boolean | undefined;
|
|
8583
|
+
facebook?: boolean | undefined;
|
|
8584
|
+
linkedin?: boolean | undefined;
|
|
8585
|
+
mail?: boolean | undefined;
|
|
8586
|
+
whatsapp?: boolean | undefined;
|
|
8587
|
+
x?: boolean | undefined;
|
|
8588
|
+
};
|
|
8589
|
+
actionalConnections: {
|
|
8590
|
+
download?: boolean | undefined;
|
|
8591
|
+
webhook?: string | undefined;
|
|
8592
|
+
redirect?: string | undefined;
|
|
8593
|
+
};
|
|
8594
|
+
trackLinks?: boolean | undefined;
|
|
8595
|
+
};
|
|
8596
|
+
logo?: string | undefined;
|
|
8597
|
+
title?: string | undefined;
|
|
8598
|
+
customStyle?: Record<string, string> | undefined;
|
|
8599
|
+
categoryOrder?: string[] | undefined;
|
|
8600
|
+
captions?: Record<string, string> | undefined;
|
|
8601
|
+
categories?: Record<string, string> | undefined;
|
|
8602
|
+
};
|
|
8603
|
+
landingPage: {
|
|
8604
|
+
headerTitle?: string | undefined;
|
|
8605
|
+
headerColor?: string | undefined;
|
|
8606
|
+
headerImage?: string | undefined;
|
|
8607
|
+
headerHtml?: string | undefined;
|
|
8608
|
+
backgroundColor?: string | undefined;
|
|
8609
|
+
backgroundImage?: string | undefined;
|
|
8610
|
+
bodyTitle?: string | undefined;
|
|
8611
|
+
bodySubtitle?: string | undefined;
|
|
8612
|
+
bodyHtml?: string | undefined;
|
|
8613
|
+
customPrivacy?: string | undefined;
|
|
8614
|
+
customImprint?: string | undefined;
|
|
8615
|
+
pageLayout?: "scroll" | "flex" | undefined;
|
|
8616
|
+
} | null;
|
|
8617
|
+
emailCampaign: Record<string, any> | null;
|
|
8618
|
+
thumbnail: string | null;
|
|
8619
|
+
createdAt: string;
|
|
8620
|
+
updatedAt: string;
|
|
8621
|
+
pinnedBy: string[];
|
|
8622
|
+
assets?: {
|
|
8623
|
+
assetId: string;
|
|
8624
|
+
category?: string | null | undefined;
|
|
8625
|
+
title?: string | null | undefined;
|
|
8626
|
+
description?: string | null | undefined;
|
|
8627
|
+
}[] | undefined;
|
|
8628
|
+
} | undefined, {
|
|
8629
|
+
id: number;
|
|
8630
|
+
uid: string;
|
|
8631
|
+
userId: string;
|
|
8632
|
+
name: string;
|
|
8633
|
+
type: "template" | "email" | "widget" | "team" | "web" | "batch" | "api";
|
|
8634
|
+
active: boolean;
|
|
8635
|
+
private: boolean;
|
|
8636
|
+
password: string | null;
|
|
8637
|
+
customSlug: string | null;
|
|
8638
|
+
customDomain: string | null;
|
|
8639
|
+
sharedWithOrganizations: number[];
|
|
8640
|
+
exportActions: {
|
|
8641
|
+
trigger: "user-gesture" | "onupdate";
|
|
8642
|
+
label: string;
|
|
8643
|
+
download: boolean;
|
|
8644
|
+
renderFormat?: "svg" | "none" | "png" | "jpeg" | "pdf" | "gif" | "idml" | undefined;
|
|
8645
|
+
successMessage?: string | undefined;
|
|
8646
|
+
webhook?: string | undefined;
|
|
8647
|
+
redirect?: string | undefined;
|
|
8648
|
+
}[];
|
|
8649
|
+
templates: string[];
|
|
8650
|
+
config: {
|
|
8651
|
+
bluepicBranding: boolean;
|
|
8652
|
+
layout: "stack" | "gallery" | "selection:horizontal" | "selection:vertical";
|
|
8653
|
+
allowPanAndZoom: boolean;
|
|
8654
|
+
sortByCategories: boolean;
|
|
8655
|
+
export: {
|
|
8656
|
+
linkedInOAuth: boolean;
|
|
8657
|
+
socialConnections: {
|
|
8658
|
+
instagram?: boolean | undefined;
|
|
8659
|
+
facebook?: boolean | undefined;
|
|
8660
|
+
linkedin?: boolean | undefined;
|
|
8661
|
+
mail?: boolean | undefined;
|
|
8662
|
+
whatsapp?: boolean | undefined;
|
|
8663
|
+
x?: boolean | undefined;
|
|
8664
|
+
};
|
|
8665
|
+
actionalConnections: {
|
|
8666
|
+
download?: boolean | undefined;
|
|
8667
|
+
webhook?: string | undefined;
|
|
8668
|
+
redirect?: string | undefined;
|
|
8669
|
+
};
|
|
8670
|
+
trackLinks?: boolean | undefined;
|
|
8671
|
+
};
|
|
8672
|
+
logo?: string | undefined;
|
|
8673
|
+
title?: string | undefined;
|
|
8674
|
+
customStyle?: Record<string, string> | undefined;
|
|
8675
|
+
categoryOrder?: string[] | undefined;
|
|
8676
|
+
captions?: Record<string, string> | undefined;
|
|
8677
|
+
categories?: Record<string, string> | undefined;
|
|
8678
|
+
};
|
|
8679
|
+
landingPage: {
|
|
8680
|
+
headerTitle?: string | undefined;
|
|
8681
|
+
headerColor?: string | undefined;
|
|
8682
|
+
headerImage?: string | undefined;
|
|
8683
|
+
headerHtml?: string | undefined;
|
|
8684
|
+
backgroundColor?: string | undefined;
|
|
8685
|
+
backgroundImage?: string | undefined;
|
|
8686
|
+
bodyTitle?: string | undefined;
|
|
8687
|
+
bodySubtitle?: string | undefined;
|
|
8688
|
+
bodyHtml?: string | undefined;
|
|
8689
|
+
customPrivacy?: string | undefined;
|
|
8690
|
+
customImprint?: string | undefined;
|
|
8691
|
+
pageLayout?: "scroll" | "flex" | undefined;
|
|
8692
|
+
} | null;
|
|
8693
|
+
emailCampaign: Record<string, any> | null;
|
|
8694
|
+
thumbnail: string | null;
|
|
8695
|
+
createdAt: string;
|
|
8696
|
+
updatedAt: string;
|
|
8697
|
+
pinnedBy: string[];
|
|
8698
|
+
assets?: {
|
|
8699
|
+
assetId: string;
|
|
8700
|
+
category?: string | null | undefined;
|
|
8701
|
+
title?: string | null | undefined;
|
|
8702
|
+
description?: string | null | undefined;
|
|
8703
|
+
}[] | undefined;
|
|
8704
|
+
} | undefined>;
|
|
8745
8705
|
bxCoreVersion: Ref<string | undefined, string | undefined>;
|
|
8746
8706
|
allowPanAndZoom: Ref<boolean, boolean>;
|
|
8747
8707
|
branding: Ref<boolean, boolean>;
|