waldur-js-client 7.9.6-dev.12 → 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.
- package/dist/types.gen.d.ts +24 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -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;
|
|
@@ -11399,6 +11405,10 @@ export type PatchedTemplateRequest = {
|
|
|
11399
11405
|
export type PatchedUserAgreementRequest = {
|
|
11400
11406
|
content?: string;
|
|
11401
11407
|
agreement_type?: AgreementTypeEnum;
|
|
11408
|
+
/**
|
|
11409
|
+
* ISO 639-1 language code (e.g., 'en', 'de', 'et'). Leave empty for the default version.
|
|
11410
|
+
*/
|
|
11411
|
+
language?: string;
|
|
11402
11412
|
};
|
|
11403
11413
|
export type PatchedUserInfoRequest = {
|
|
11404
11414
|
/**
|
|
@@ -16241,12 +16251,20 @@ export type UserAgreement = {
|
|
|
16241
16251
|
readonly uuid: string;
|
|
16242
16252
|
content: string;
|
|
16243
16253
|
agreement_type: AgreementTypeEnum;
|
|
16254
|
+
/**
|
|
16255
|
+
* ISO 639-1 language code (e.g., 'en', 'de', 'et'). Leave empty for the default version.
|
|
16256
|
+
*/
|
|
16257
|
+
language: string;
|
|
16244
16258
|
readonly created: string;
|
|
16245
16259
|
readonly modified: string;
|
|
16246
16260
|
};
|
|
16247
16261
|
export type UserAgreementRequest = {
|
|
16248
16262
|
content: string;
|
|
16249
16263
|
agreement_type: AgreementTypeEnum;
|
|
16264
|
+
/**
|
|
16265
|
+
* ISO 639-1 language code (e.g., 'en', 'de', 'et'). Leave empty for the default version.
|
|
16266
|
+
*/
|
|
16267
|
+
language: string;
|
|
16250
16268
|
};
|
|
16251
16269
|
export type UserAuthMethodCount = {
|
|
16252
16270
|
/**
|
|
@@ -18001,6 +18019,9 @@ export type ConstanceSettingsRequestForm = {
|
|
|
18001
18019
|
SIDEBAR_STYLE?: string;
|
|
18002
18020
|
SITE_LOGO?: (Blob | File) | null;
|
|
18003
18021
|
LOGIN_LOGO?: (Blob | File) | null;
|
|
18022
|
+
LOGIN_LOGO_MULTILINGUAL?: {
|
|
18023
|
+
[key: string]: (Blob | File) | null;
|
|
18024
|
+
};
|
|
18004
18025
|
FAVICON?: (Blob | File) | null;
|
|
18005
18026
|
OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
|
|
18006
18027
|
WALDUR_SUPPORT_ENABLED?: boolean;
|
|
@@ -18173,6 +18194,9 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
18173
18194
|
SIDEBAR_STYLE?: string;
|
|
18174
18195
|
SITE_LOGO?: (Blob | File) | null;
|
|
18175
18196
|
LOGIN_LOGO?: (Blob | File) | null;
|
|
18197
|
+
LOGIN_LOGO_MULTILINGUAL?: {
|
|
18198
|
+
[key: string]: (Blob | File) | null;
|
|
18199
|
+
};
|
|
18176
18200
|
FAVICON?: (Blob | File) | null;
|
|
18177
18201
|
OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
|
|
18178
18202
|
WALDUR_SUPPORT_ENABLED?: boolean;
|