waldur-js-client 7.9.6-dev.14 → 7.9.6-dev.16
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 +27 -15
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -10960,6 +10960,10 @@ export type PatchedProtectedCallRequest = {
|
|
|
10960
10960
|
* Compliance checklist that proposals must complete before submission
|
|
10961
10961
|
*/
|
|
10962
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;
|
|
10963
10967
|
};
|
|
10964
10968
|
export type PatchedProtectedRoundRequest = {
|
|
10965
10969
|
start_time?: string;
|
|
@@ -11001,11 +11005,11 @@ export type PatchedQuestionAdminRequest = {
|
|
|
11001
11005
|
question_type?: QuestionTypeEnum;
|
|
11002
11006
|
order?: number;
|
|
11003
11007
|
/**
|
|
11004
|
-
* Minimum value allowed for NUMBER type questions
|
|
11008
|
+
* Minimum value allowed for NUMBER, YEAR, and RATING type questions
|
|
11005
11009
|
*/
|
|
11006
11010
|
min_value?: string | null;
|
|
11007
11011
|
/**
|
|
11008
|
-
* Maximum value allowed for NUMBER type questions
|
|
11012
|
+
* Maximum value allowed for NUMBER, YEAR, and RATING type questions
|
|
11009
11013
|
*/
|
|
11010
11014
|
max_value?: string | null;
|
|
11011
11015
|
/**
|
|
@@ -12409,6 +12413,10 @@ export type ProtectedCall = {
|
|
|
12409
12413
|
*/
|
|
12410
12414
|
compliance_checklist?: string | null;
|
|
12411
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;
|
|
12412
12420
|
};
|
|
12413
12421
|
export type ProtectedCallRequest = {
|
|
12414
12422
|
/**
|
|
@@ -12435,6 +12443,10 @@ export type ProtectedCallRequest = {
|
|
|
12435
12443
|
* Compliance checklist that proposals must complete before submission
|
|
12436
12444
|
*/
|
|
12437
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;
|
|
12438
12450
|
};
|
|
12439
12451
|
export type ProtectedProposalList = {
|
|
12440
12452
|
readonly uuid: string;
|
|
@@ -12984,11 +12996,11 @@ export type Question = {
|
|
|
12984
12996
|
question_type?: QuestionTypeEnum;
|
|
12985
12997
|
order?: number;
|
|
12986
12998
|
/**
|
|
12987
|
-
* Minimum value allowed for NUMBER type questions
|
|
12999
|
+
* Minimum value allowed for NUMBER, YEAR, and RATING type questions
|
|
12988
13000
|
*/
|
|
12989
13001
|
min_value?: string | null;
|
|
12990
13002
|
/**
|
|
12991
|
-
* Maximum value allowed for NUMBER type questions
|
|
13003
|
+
* Maximum value allowed for NUMBER, YEAR, and RATING type questions
|
|
12992
13004
|
*/
|
|
12993
13005
|
max_value?: string | null;
|
|
12994
13006
|
/**
|
|
@@ -13048,11 +13060,11 @@ export type QuestionAdmin = {
|
|
|
13048
13060
|
question_type?: QuestionTypeEnum;
|
|
13049
13061
|
order?: number;
|
|
13050
13062
|
/**
|
|
13051
|
-
* Minimum value allowed for NUMBER type questions
|
|
13063
|
+
* Minimum value allowed for NUMBER, YEAR, and RATING type questions
|
|
13052
13064
|
*/
|
|
13053
13065
|
min_value?: string | null;
|
|
13054
13066
|
/**
|
|
13055
|
-
* Maximum value allowed for NUMBER type questions
|
|
13067
|
+
* Maximum value allowed for NUMBER, YEAR, and RATING type questions
|
|
13056
13068
|
*/
|
|
13057
13069
|
max_value?: string | null;
|
|
13058
13070
|
/**
|
|
@@ -13114,11 +13126,11 @@ export type QuestionAdminRequest = {
|
|
|
13114
13126
|
question_type?: QuestionTypeEnum;
|
|
13115
13127
|
order?: number;
|
|
13116
13128
|
/**
|
|
13117
|
-
* Minimum value allowed for NUMBER type questions
|
|
13129
|
+
* Minimum value allowed for NUMBER, YEAR, and RATING type questions
|
|
13118
13130
|
*/
|
|
13119
13131
|
min_value?: string | null;
|
|
13120
13132
|
/**
|
|
13121
|
-
* Maximum value allowed for NUMBER type questions
|
|
13133
|
+
* Maximum value allowed for NUMBER, YEAR, and RATING type questions
|
|
13122
13134
|
*/
|
|
13123
13135
|
max_value?: string | null;
|
|
13124
13136
|
/**
|
|
@@ -13233,7 +13245,7 @@ export type QuestionOptionsAdminRequest = {
|
|
|
13233
13245
|
order?: number;
|
|
13234
13246
|
question: string;
|
|
13235
13247
|
};
|
|
13236
|
-
export type QuestionTypeEnum = 'boolean' | 'single_select' | 'multi_select' | 'text_input' | 'text_area' | 'number' | 'date' | 'file' | 'multiple_files';
|
|
13248
|
+
export type QuestionTypeEnum = 'boolean' | 'single_select' | 'multi_select' | 'text_input' | 'text_area' | 'number' | 'date' | 'file' | 'multiple_files' | 'phone_number' | 'year' | 'email' | 'url' | 'country' | 'rating' | 'datetime';
|
|
13237
13249
|
export type QuestionWithAnswer = {
|
|
13238
13250
|
readonly uuid: string;
|
|
13239
13251
|
readonly description: string;
|
|
@@ -13249,11 +13261,11 @@ export type QuestionWithAnswer = {
|
|
|
13249
13261
|
} | null;
|
|
13250
13262
|
readonly question_options: Array<unknown> | null;
|
|
13251
13263
|
/**
|
|
13252
|
-
* Minimum value allowed for NUMBER type questions
|
|
13264
|
+
* Minimum value allowed for NUMBER, YEAR, and RATING type questions
|
|
13253
13265
|
*/
|
|
13254
13266
|
readonly min_value: string | null;
|
|
13255
13267
|
/**
|
|
13256
|
-
* Maximum value allowed for NUMBER type questions
|
|
13268
|
+
* Maximum value allowed for NUMBER, YEAR, and RATING type questions
|
|
13257
13269
|
*/
|
|
13258
13270
|
readonly max_value: string | null;
|
|
13259
13271
|
/**
|
|
@@ -13288,11 +13300,11 @@ export type QuestionWithAnswerReviewer = {
|
|
|
13288
13300
|
} | null;
|
|
13289
13301
|
readonly question_options: Array<unknown> | null;
|
|
13290
13302
|
/**
|
|
13291
|
-
* Minimum value allowed for NUMBER type questions
|
|
13303
|
+
* Minimum value allowed for NUMBER, YEAR, and RATING type questions
|
|
13292
13304
|
*/
|
|
13293
13305
|
readonly min_value: string | null;
|
|
13294
13306
|
/**
|
|
13295
|
-
* Maximum value allowed for NUMBER type questions
|
|
13307
|
+
* Maximum value allowed for NUMBER, YEAR, and RATING type questions
|
|
13296
13308
|
*/
|
|
13297
13309
|
readonly max_value: string | null;
|
|
13298
13310
|
/**
|
|
@@ -51900,7 +51912,7 @@ export type ProposalProtectedCallsListData = {
|
|
|
51900
51912
|
customer?: string;
|
|
51901
51913
|
customer_keyword?: string;
|
|
51902
51914
|
customer_uuid?: string;
|
|
51903
|
-
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'>;
|
|
51904
51916
|
has_active_round?: boolean;
|
|
51905
51917
|
name?: string;
|
|
51906
51918
|
/**
|
|
@@ -51993,7 +52005,7 @@ export type ProposalProtectedCallsRetrieveData = {
|
|
|
51993
52005
|
uuid: string;
|
|
51994
52006
|
};
|
|
51995
52007
|
query?: {
|
|
51996
|
-
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'>;
|
|
51997
52009
|
};
|
|
51998
52010
|
url: '/api/proposal-protected-calls/{uuid}/';
|
|
51999
52011
|
};
|