waldur-js-client 7.9.6-dev.13 → 7.9.6-dev.14

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.
@@ -2236,6 +2236,9 @@ export type ConstanceSettings = {
2236
2236
  SIDEBAR_STYLE?: string;
2237
2237
  SITE_LOGO?: string | null;
2238
2238
  LOGIN_LOGO?: string | null;
2239
+ LOGIN_LOGO_MULTILINGUAL?: {
2240
+ [key: string]: string | null;
2241
+ };
2239
2242
  FAVICON?: string | null;
2240
2243
  OFFERING_LOGO_PLACEHOLDER?: string | null;
2241
2244
  WALDUR_SUPPORT_ENABLED?: boolean;
@@ -2408,6 +2411,9 @@ export type ConstanceSettingsRequest = {
2408
2411
  SIDEBAR_STYLE?: string;
2409
2412
  SITE_LOGO?: (Blob | File) | null;
2410
2413
  LOGIN_LOGO?: (Blob | File) | null;
2414
+ LOGIN_LOGO_MULTILINGUAL?: {
2415
+ [key: string]: (Blob | File) | null;
2416
+ };
2411
2417
  FAVICON?: (Blob | File) | null;
2412
2418
  OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
2413
2419
  WALDUR_SUPPORT_ENABLED?: boolean;
@@ -18013,6 +18019,9 @@ export type ConstanceSettingsRequestForm = {
18013
18019
  SIDEBAR_STYLE?: string;
18014
18020
  SITE_LOGO?: (Blob | File) | null;
18015
18021
  LOGIN_LOGO?: (Blob | File) | null;
18022
+ LOGIN_LOGO_MULTILINGUAL?: {
18023
+ [key: string]: (Blob | File) | null;
18024
+ };
18016
18025
  FAVICON?: (Blob | File) | null;
18017
18026
  OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
18018
18027
  WALDUR_SUPPORT_ENABLED?: boolean;
@@ -18185,6 +18194,9 @@ export type ConstanceSettingsRequestMultipart = {
18185
18194
  SIDEBAR_STYLE?: string;
18186
18195
  SITE_LOGO?: (Blob | File) | null;
18187
18196
  LOGIN_LOGO?: (Blob | File) | null;
18197
+ LOGIN_LOGO_MULTILINGUAL?: {
18198
+ [key: string]: (Blob | File) | null;
18199
+ };
18188
18200
  FAVICON?: (Blob | File) | null;
18189
18201
  OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
18190
18202
  WALDUR_SUPPORT_ENABLED?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.9.6-dev.13",
3
+ "version": "7.9.6-dev.14",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",