waldur-js-client 1.0.4-dev.91 → 1.0.4-dev.92
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 +47 -5
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -6261,6 +6261,14 @@ export type PatchedProtectedCallRequest = {
|
|
|
6261
6261
|
fixed_duration_in_days?: number | null;
|
|
6262
6262
|
backend_id?: string;
|
|
6263
6263
|
external_url?: string | null;
|
|
6264
|
+
/**
|
|
6265
|
+
* Whether proposal submitters can see reviewer identities
|
|
6266
|
+
*/
|
|
6267
|
+
reviewer_identity_visible_to_submitters?: boolean;
|
|
6268
|
+
/**
|
|
6269
|
+
* Whether proposal submitters can see review comments and scores
|
|
6270
|
+
*/
|
|
6271
|
+
reviews_visible_to_submitters?: boolean;
|
|
6264
6272
|
created_by?: string | null;
|
|
6265
6273
|
reference_code?: string;
|
|
6266
6274
|
default_project_role?: string;
|
|
@@ -6950,6 +6958,11 @@ export type ProposalReview = {
|
|
|
6950
6958
|
reviewer: string;
|
|
6951
6959
|
readonly reviewer_full_name: string;
|
|
6952
6960
|
readonly reviewer_uuid: string;
|
|
6961
|
+
/**
|
|
6962
|
+
* Generate an anonymous reviewer identifier like 'Reviewer 1', 'Reviewer 2'.
|
|
6963
|
+
* Returns None if the review is not associated with a proposal.
|
|
6964
|
+
*/
|
|
6965
|
+
readonly anonymous_reviewer_name: string;
|
|
6953
6966
|
state: ProposalReviewStateEnum;
|
|
6954
6967
|
readonly review_end_date: string;
|
|
6955
6968
|
summary_score?: number;
|
|
@@ -7021,6 +7034,14 @@ export type ProtectedCall = {
|
|
|
7021
7034
|
fixed_duration_in_days?: number | null;
|
|
7022
7035
|
backend_id?: string;
|
|
7023
7036
|
external_url?: string | null;
|
|
7037
|
+
/**
|
|
7038
|
+
* Whether proposal submitters can see reviewer identities
|
|
7039
|
+
*/
|
|
7040
|
+
reviewer_identity_visible_to_submitters?: boolean;
|
|
7041
|
+
/**
|
|
7042
|
+
* Whether proposal submitters can see review comments and scores
|
|
7043
|
+
*/
|
|
7044
|
+
reviews_visible_to_submitters?: boolean;
|
|
7024
7045
|
created_by?: string | null;
|
|
7025
7046
|
reference_code?: string;
|
|
7026
7047
|
default_project_role?: string;
|
|
@@ -7034,6 +7055,14 @@ export type ProtectedCallRequest = {
|
|
|
7034
7055
|
fixed_duration_in_days?: number | null;
|
|
7035
7056
|
backend_id?: string;
|
|
7036
7057
|
external_url?: string | null;
|
|
7058
|
+
/**
|
|
7059
|
+
* Whether proposal submitters can see reviewer identities
|
|
7060
|
+
*/
|
|
7061
|
+
reviewer_identity_visible_to_submitters?: boolean;
|
|
7062
|
+
/**
|
|
7063
|
+
* Whether proposal submitters can see review comments and scores
|
|
7064
|
+
*/
|
|
7065
|
+
reviews_visible_to_submitters?: boolean;
|
|
7037
7066
|
created_by?: string | null;
|
|
7038
7067
|
reference_code?: string;
|
|
7039
7068
|
default_project_role?: string;
|
|
@@ -7042,7 +7071,12 @@ export type ProtectedProposalList = {
|
|
|
7042
7071
|
readonly uuid: string;
|
|
7043
7072
|
name: string;
|
|
7044
7073
|
state: ProposalStates;
|
|
7045
|
-
|
|
7074
|
+
/**
|
|
7075
|
+
* Return serialized reviews based on user permissions and visibility settings.
|
|
7076
|
+
* - Staff, call managers, and reviewers see all reviews.
|
|
7077
|
+
* - Submitters see submitted reviews if visibility is enabled.
|
|
7078
|
+
*/
|
|
7079
|
+
readonly reviews: Array<unknown>;
|
|
7046
7080
|
readonly approved_by_name: string;
|
|
7047
7081
|
readonly created_by_name: string;
|
|
7048
7082
|
readonly created: string;
|
|
@@ -7355,6 +7389,14 @@ export type PublicCall = {
|
|
|
7355
7389
|
readonly fixed_duration_in_days?: number | null;
|
|
7356
7390
|
backend_id?: string;
|
|
7357
7391
|
external_url?: string | null;
|
|
7392
|
+
/**
|
|
7393
|
+
* Whether proposal submitters can see reviewer identities. If False, reviewers appear as 'Reviewer 1', 'Reviewer 2', etc.
|
|
7394
|
+
*/
|
|
7395
|
+
reviewer_identity_visible_to_submitters?: boolean;
|
|
7396
|
+
/**
|
|
7397
|
+
* Whether proposal submitters can see review comments and scores. If False, submitters only see final approval/rejection status.
|
|
7398
|
+
*/
|
|
7399
|
+
reviews_visible_to_submitters?: boolean;
|
|
7358
7400
|
};
|
|
7359
7401
|
export type PublicOfferingDetails = {
|
|
7360
7402
|
readonly url?: string;
|
|
@@ -24413,7 +24455,7 @@ export type ProposalProtectedCallsListData = {
|
|
|
24413
24455
|
customer?: string;
|
|
24414
24456
|
customer_keyword?: string;
|
|
24415
24457
|
customer_uuid?: string;
|
|
24416
|
-
field?: Array<'backend_id' | 'created' | 'created_by' | 'customer_name' | 'customer_uuid' | 'default_project_role' | 'default_project_role_description' | 'default_project_role_name' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'name' | 'offerings' | 'reference_code' | 'resource_templates' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
24458
|
+
field?: Array<'backend_id' | 'created' | 'created_by' | 'customer_name' | 'customer_uuid' | 'default_project_role' | 'default_project_role_description' | 'default_project_role_name' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'name' | 'offerings' | 'reference_code' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
24417
24459
|
has_active_round?: boolean;
|
|
24418
24460
|
name?: string;
|
|
24419
24461
|
/**
|
|
@@ -24471,7 +24513,7 @@ export type ProposalProtectedCallsRetrieveData = {
|
|
|
24471
24513
|
uuid: string;
|
|
24472
24514
|
};
|
|
24473
24515
|
query?: {
|
|
24474
|
-
field?: Array<'backend_id' | 'created' | 'created_by' | 'customer_name' | 'customer_uuid' | 'default_project_role' | 'default_project_role_description' | 'default_project_role_name' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'name' | 'offerings' | 'reference_code' | 'resource_templates' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
24516
|
+
field?: Array<'backend_id' | 'created' | 'created_by' | 'customer_name' | 'customer_uuid' | 'default_project_role' | 'default_project_role_description' | 'default_project_role_name' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'name' | 'offerings' | 'reference_code' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
24475
24517
|
};
|
|
24476
24518
|
url: '/api/proposal-protected-calls/{uuid}/';
|
|
24477
24519
|
};
|
|
@@ -24942,7 +24984,7 @@ export type ProposalPublicCallsListData = {
|
|
|
24942
24984
|
customer?: string;
|
|
24943
24985
|
customer_keyword?: string;
|
|
24944
24986
|
customer_uuid?: string;
|
|
24945
|
-
field?: Array<'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'name' | 'offerings' | 'resource_templates' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
24987
|
+
field?: Array<'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'name' | 'offerings' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
24946
24988
|
has_active_round?: boolean;
|
|
24947
24989
|
name?: string;
|
|
24948
24990
|
/**
|
|
@@ -24975,7 +25017,7 @@ export type ProposalPublicCallsRetrieveData = {
|
|
|
24975
25017
|
uuid: string;
|
|
24976
25018
|
};
|
|
24977
25019
|
query?: {
|
|
24978
|
-
field?: Array<'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'name' | 'offerings' | 'resource_templates' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
25020
|
+
field?: Array<'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'manager' | 'name' | 'offerings' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid'>;
|
|
24979
25021
|
};
|
|
24980
25022
|
url: '/api/proposal-public-calls/{uuid}/';
|
|
24981
25023
|
};
|