waldur-js-client 7.9.6-dev.13 → 7.9.6-dev.15
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 +26 -2
- 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;
|
|
@@ -10954,6 +10960,10 @@ export type PatchedProtectedCallRequest = {
|
|
|
10954
10960
|
* Compliance checklist that proposals must complete before submission
|
|
10955
10961
|
*/
|
|
10956
10962
|
compliance_checklist?: string | null;
|
|
10963
|
+
/**
|
|
10964
|
+
* Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
|
|
10965
|
+
*/
|
|
10966
|
+
proposal_slug_template?: string | null;
|
|
10957
10967
|
};
|
|
10958
10968
|
export type PatchedProtectedRoundRequest = {
|
|
10959
10969
|
start_time?: string;
|
|
@@ -12403,6 +12413,10 @@ export type ProtectedCall = {
|
|
|
12403
12413
|
*/
|
|
12404
12414
|
compliance_checklist?: string | null;
|
|
12405
12415
|
readonly compliance_checklist_name?: string;
|
|
12416
|
+
/**
|
|
12417
|
+
* Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
|
|
12418
|
+
*/
|
|
12419
|
+
proposal_slug_template?: string | null;
|
|
12406
12420
|
};
|
|
12407
12421
|
export type ProtectedCallRequest = {
|
|
12408
12422
|
/**
|
|
@@ -12429,6 +12443,10 @@ export type ProtectedCallRequest = {
|
|
|
12429
12443
|
* Compliance checklist that proposals must complete before submission
|
|
12430
12444
|
*/
|
|
12431
12445
|
compliance_checklist?: string | null;
|
|
12446
|
+
/**
|
|
12447
|
+
* Template for proposal slugs. Supports: {call_slug}, {round_slug}, {org_slug}, {year}, {month}, {counter}, {counter_padded}. Default: {round_slug}-{counter_padded}
|
|
12448
|
+
*/
|
|
12449
|
+
proposal_slug_template?: string | null;
|
|
12432
12450
|
};
|
|
12433
12451
|
export type ProtectedProposalList = {
|
|
12434
12452
|
readonly uuid: string;
|
|
@@ -18013,6 +18031,9 @@ export type ConstanceSettingsRequestForm = {
|
|
|
18013
18031
|
SIDEBAR_STYLE?: string;
|
|
18014
18032
|
SITE_LOGO?: (Blob | File) | null;
|
|
18015
18033
|
LOGIN_LOGO?: (Blob | File) | null;
|
|
18034
|
+
LOGIN_LOGO_MULTILINGUAL?: {
|
|
18035
|
+
[key: string]: (Blob | File) | null;
|
|
18036
|
+
};
|
|
18016
18037
|
FAVICON?: (Blob | File) | null;
|
|
18017
18038
|
OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
|
|
18018
18039
|
WALDUR_SUPPORT_ENABLED?: boolean;
|
|
@@ -18185,6 +18206,9 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
18185
18206
|
SIDEBAR_STYLE?: string;
|
|
18186
18207
|
SITE_LOGO?: (Blob | File) | null;
|
|
18187
18208
|
LOGIN_LOGO?: (Blob | File) | null;
|
|
18209
|
+
LOGIN_LOGO_MULTILINGUAL?: {
|
|
18210
|
+
[key: string]: (Blob | File) | null;
|
|
18211
|
+
};
|
|
18188
18212
|
FAVICON?: (Blob | File) | null;
|
|
18189
18213
|
OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
|
|
18190
18214
|
WALDUR_SUPPORT_ENABLED?: boolean;
|
|
@@ -51888,7 +51912,7 @@ export type ProposalProtectedCallsListData = {
|
|
|
51888
51912
|
customer?: string;
|
|
51889
51913
|
customer_keyword?: string;
|
|
51890
51914
|
customer_uuid?: string;
|
|
51891
|
-
field?: Array<'backend_id' | 'compliance_checklist' | 'compliance_checklist_name' | 'created' | 'created_by' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'reference_code' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
51915
|
+
field?: Array<'backend_id' | 'compliance_checklist' | 'compliance_checklist_name' | 'created' | 'created_by' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'proposal_slug_template' | 'reference_code' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
51892
51916
|
has_active_round?: boolean;
|
|
51893
51917
|
name?: string;
|
|
51894
51918
|
/**
|
|
@@ -51981,7 +52005,7 @@ export type ProposalProtectedCallsRetrieveData = {
|
|
|
51981
52005
|
uuid: string;
|
|
51982
52006
|
};
|
|
51983
52007
|
query?: {
|
|
51984
|
-
field?: Array<'backend_id' | 'compliance_checklist' | 'compliance_checklist_name' | 'created' | 'created_by' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'reference_code' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
52008
|
+
field?: Array<'backend_id' | 'compliance_checklist' | 'compliance_checklist_name' | 'created' | 'created_by' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'proposal_slug_template' | 'reference_code' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
51985
52009
|
};
|
|
51986
52010
|
url: '/api/proposal-protected-calls/{uuid}/';
|
|
51987
52011
|
};
|