@liip/liipgpt 2.5.3 → 2.6.1
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/button/liipgpt-button.iife.js +5 -5
- package/chat/liipgpt-chat.iife.js +34 -34
- package/config/index.cjs +3 -1
- package/config/index.d.ts +16 -0
- package/config/index.js +3 -1
- package/configurator/_app/env.js +1 -1
- package/configurator/_app/immutable/chunks/{DLxdoDhR.js → 0A6a-Oen.js} +21 -21
- package/configurator/_app/immutable/chunks/B0jaEcsT.js +1 -0
- package/configurator/_app/immutable/chunks/{CL3atIlV.js → B3jBMS6G.js} +1 -1
- package/configurator/_app/immutable/chunks/{BbgP8uyW.js → Bp7nV9v3.js} +1 -1
- package/configurator/_app/immutable/chunks/{DfXVvzbI.js → Carjelbg.js} +1 -1
- package/configurator/_app/immutable/chunks/{B-KsaaAH.js → G_rjVM0p.js} +1 -1
- package/configurator/_app/immutable/chunks/{G73YkWSR.js → VPh9UxyL.js} +1 -1
- package/configurator/_app/immutable/chunks/{CW-6PVWW.js → ZXGg3ezU.js} +1 -1
- package/configurator/_app/immutable/chunks/{Dl1JCgAN.js → v1VchEkS.js} +1 -1
- package/configurator/_app/immutable/entry/{app.DZvxIZjg.js → app.CpHfhl-E.js} +2 -2
- package/configurator/_app/immutable/entry/start.zSbGktLy.js +1 -0
- package/configurator/_app/immutable/nodes/{0.ByWoHaKL.js → 0.Cic9VhlA.js} +1 -1
- package/configurator/_app/immutable/nodes/{1.ExHBvsxI.js → 1.Bj0kR7fh.js} +1 -1
- package/configurator/_app/immutable/nodes/{2.D0qzJpo_.js → 2.CFuUsGi-.js} +3 -3
- package/configurator/_app/immutable/nodes/{3.trEBTDkz.js → 3.C7NenYsU.js} +1 -1
- package/configurator/_app/version.json +1 -1
- package/configurator/index.html +6 -6
- package/configurator/sidebar.html +6 -6
- package/index.cjs +7 -2
- package/index.d.ts +36 -0
- package/index.js +7 -2
- package/package.json +1 -1
- package/configurator/_app/immutable/chunks/3BR1cIvz.js +0 -1
- package/configurator/_app/immutable/entry/start.B5-5I-bD.js +0 -1
package/config/index.cjs
CHANGED
|
@@ -4271,7 +4271,9 @@ var translationSchema = exports_external.object({
|
|
|
4271
4271
|
classificationTitle: exports_external.string(),
|
|
4272
4272
|
selectLanguage: exports_external.string(),
|
|
4273
4273
|
lightMode: exports_external.string(),
|
|
4274
|
-
darkMode: exports_external.string()
|
|
4274
|
+
darkMode: exports_external.string(),
|
|
4275
|
+
termsTitle: exports_external.string().optional(),
|
|
4276
|
+
termsContent: exports_external.string().optional()
|
|
4275
4277
|
});
|
|
4276
4278
|
var allLanguages = ["en", "de", "fr", "it"];
|
|
4277
4279
|
var languagesSchema = exports_external.enum(allLanguages);
|
package/config/index.d.ts
CHANGED
|
@@ -2437,6 +2437,8 @@ declare const translationSchema: z.ZodObject<{
|
|
|
2437
2437
|
selectLanguage: z.ZodString;
|
|
2438
2438
|
lightMode: z.ZodString;
|
|
2439
2439
|
darkMode: z.ZodString;
|
|
2440
|
+
termsTitle: z.ZodOptional<z.ZodString>;
|
|
2441
|
+
termsContent: z.ZodOptional<z.ZodString>;
|
|
2440
2442
|
}, "strip", z.ZodTypeAny, {
|
|
2441
2443
|
predefinedQuestions: string;
|
|
2442
2444
|
introductionTitle: string;
|
|
@@ -2484,6 +2486,8 @@ declare const translationSchema: z.ZodObject<{
|
|
|
2484
2486
|
openButtonTitle?: string | undefined;
|
|
2485
2487
|
openButtonDescription?: string | undefined;
|
|
2486
2488
|
aboutThisChat?: string | undefined;
|
|
2489
|
+
termsTitle?: string | undefined;
|
|
2490
|
+
termsContent?: string | undefined;
|
|
2487
2491
|
}, {
|
|
2488
2492
|
predefinedQuestions: string;
|
|
2489
2493
|
introductionTitle: string;
|
|
@@ -2531,6 +2535,8 @@ declare const translationSchema: z.ZodObject<{
|
|
|
2531
2535
|
openButtonTitle?: string | undefined;
|
|
2532
2536
|
openButtonDescription?: string | undefined;
|
|
2533
2537
|
aboutThisChat?: string | undefined;
|
|
2538
|
+
termsTitle?: string | undefined;
|
|
2539
|
+
termsContent?: string | undefined;
|
|
2534
2540
|
}>;
|
|
2535
2541
|
declare const languagesSchema: z.ZodEnum<[
|
|
2536
2542
|
"en",
|
|
@@ -8574,6 +8580,8 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
8574
8580
|
selectLanguage: z.ZodOptional<z.ZodString>;
|
|
8575
8581
|
lightMode: z.ZodOptional<z.ZodString>;
|
|
8576
8582
|
darkMode: z.ZodOptional<z.ZodString>;
|
|
8583
|
+
termsTitle: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8584
|
+
termsContent: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8577
8585
|
}, "strip", z.ZodTypeAny, {
|
|
8578
8586
|
predefinedQuestions?: string | undefined;
|
|
8579
8587
|
introductionTitle?: string | undefined;
|
|
@@ -8621,6 +8629,8 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
8621
8629
|
selectLanguage?: string | undefined;
|
|
8622
8630
|
lightMode?: string | undefined;
|
|
8623
8631
|
darkMode?: string | undefined;
|
|
8632
|
+
termsTitle?: string | undefined;
|
|
8633
|
+
termsContent?: string | undefined;
|
|
8624
8634
|
}, {
|
|
8625
8635
|
predefinedQuestions?: string | undefined;
|
|
8626
8636
|
introductionTitle?: string | undefined;
|
|
@@ -8668,6 +8678,8 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
8668
8678
|
selectLanguage?: string | undefined;
|
|
8669
8679
|
lightMode?: string | undefined;
|
|
8670
8680
|
darkMode?: string | undefined;
|
|
8681
|
+
termsTitle?: string | undefined;
|
|
8682
|
+
termsContent?: string | undefined;
|
|
8671
8683
|
}>>>;
|
|
8672
8684
|
buttonHref: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8673
8685
|
addQueryToUrlParams: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -9126,6 +9138,8 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
9126
9138
|
selectLanguage?: string | undefined;
|
|
9127
9139
|
lightMode?: string | undefined;
|
|
9128
9140
|
darkMode?: string | undefined;
|
|
9141
|
+
termsTitle?: string | undefined;
|
|
9142
|
+
termsContent?: string | undefined;
|
|
9129
9143
|
}>> | undefined;
|
|
9130
9144
|
buttonHref?: string | undefined;
|
|
9131
9145
|
addQueryToUrlParams?: boolean | undefined;
|
|
@@ -9579,6 +9593,8 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
9579
9593
|
selectLanguage?: string | undefined;
|
|
9580
9594
|
lightMode?: string | undefined;
|
|
9581
9595
|
darkMode?: string | undefined;
|
|
9596
|
+
termsTitle?: string | undefined;
|
|
9597
|
+
termsContent?: string | undefined;
|
|
9582
9598
|
}>> | undefined;
|
|
9583
9599
|
buttonHref?: string | undefined;
|
|
9584
9600
|
addQueryToUrlParams?: boolean | undefined;
|
package/config/index.js
CHANGED
|
@@ -4247,7 +4247,9 @@ var translationSchema = exports_external.object({
|
|
|
4247
4247
|
classificationTitle: exports_external.string(),
|
|
4248
4248
|
selectLanguage: exports_external.string(),
|
|
4249
4249
|
lightMode: exports_external.string(),
|
|
4250
|
-
darkMode: exports_external.string()
|
|
4250
|
+
darkMode: exports_external.string(),
|
|
4251
|
+
termsTitle: exports_external.string().optional(),
|
|
4252
|
+
termsContent: exports_external.string().optional()
|
|
4251
4253
|
});
|
|
4252
4254
|
var allLanguages = ["en", "de", "fr", "it"];
|
|
4253
4255
|
var languagesSchema = exports_external.enum(allLanguages);
|
package/configurator/_app/env.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const env={"PUBLIC_API_URL":"https://liipgpt.api.dev.genai.liip.ch/liipgpt","PUBLIC_CI_COMMIT_TAG":"2.
|
|
1
|
+
export const env={"PUBLIC_API_URL":"https://liipgpt.api.dev.genai.liip.ch/liipgpt","PUBLIC_CI_COMMIT_TAG":"2.6.1"}
|