waldur-js-client 1.0.4-dev.90 → 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 +48 -5
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -5130,6 +5130,7 @@ export type OpenStackSecurityGroup = {
|
|
|
5130
5130
|
export type OpenStackSecurityGroupRequest = {
|
|
5131
5131
|
name: string;
|
|
5132
5132
|
description?: string;
|
|
5133
|
+
rules: Array<OpenStackSecurityGroupRuleCreateRequest>;
|
|
5133
5134
|
};
|
|
5134
5135
|
export type OpenStackSecurityGroupRuleCreate = {
|
|
5135
5136
|
ethertype?: EthertypeEnum;
|
|
@@ -6260,6 +6261,14 @@ export type PatchedProtectedCallRequest = {
|
|
|
6260
6261
|
fixed_duration_in_days?: number | null;
|
|
6261
6262
|
backend_id?: string;
|
|
6262
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;
|
|
6263
6272
|
created_by?: string | null;
|
|
6264
6273
|
reference_code?: string;
|
|
6265
6274
|
default_project_role?: string;
|
|
@@ -6949,6 +6958,11 @@ export type ProposalReview = {
|
|
|
6949
6958
|
reviewer: string;
|
|
6950
6959
|
readonly reviewer_full_name: string;
|
|
6951
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;
|
|
6952
6966
|
state: ProposalReviewStateEnum;
|
|
6953
6967
|
readonly review_end_date: string;
|
|
6954
6968
|
summary_score?: number;
|
|
@@ -7020,6 +7034,14 @@ export type ProtectedCall = {
|
|
|
7020
7034
|
fixed_duration_in_days?: number | null;
|
|
7021
7035
|
backend_id?: string;
|
|
7022
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;
|
|
7023
7045
|
created_by?: string | null;
|
|
7024
7046
|
reference_code?: string;
|
|
7025
7047
|
default_project_role?: string;
|
|
@@ -7033,6 +7055,14 @@ export type ProtectedCallRequest = {
|
|
|
7033
7055
|
fixed_duration_in_days?: number | null;
|
|
7034
7056
|
backend_id?: string;
|
|
7035
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;
|
|
7036
7066
|
created_by?: string | null;
|
|
7037
7067
|
reference_code?: string;
|
|
7038
7068
|
default_project_role?: string;
|
|
@@ -7041,7 +7071,12 @@ export type ProtectedProposalList = {
|
|
|
7041
7071
|
readonly uuid: string;
|
|
7042
7072
|
name: string;
|
|
7043
7073
|
state: ProposalStates;
|
|
7044
|
-
|
|
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>;
|
|
7045
7080
|
readonly approved_by_name: string;
|
|
7046
7081
|
readonly created_by_name: string;
|
|
7047
7082
|
readonly created: string;
|
|
@@ -7354,6 +7389,14 @@ export type PublicCall = {
|
|
|
7354
7389
|
readonly fixed_duration_in_days?: number | null;
|
|
7355
7390
|
backend_id?: string;
|
|
7356
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;
|
|
7357
7400
|
};
|
|
7358
7401
|
export type PublicOfferingDetails = {
|
|
7359
7402
|
readonly url?: string;
|
|
@@ -24412,7 +24455,7 @@ export type ProposalProtectedCallsListData = {
|
|
|
24412
24455
|
customer?: string;
|
|
24413
24456
|
customer_keyword?: string;
|
|
24414
24457
|
customer_uuid?: string;
|
|
24415
|
-
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'>;
|
|
24416
24459
|
has_active_round?: boolean;
|
|
24417
24460
|
name?: string;
|
|
24418
24461
|
/**
|
|
@@ -24470,7 +24513,7 @@ export type ProposalProtectedCallsRetrieveData = {
|
|
|
24470
24513
|
uuid: string;
|
|
24471
24514
|
};
|
|
24472
24515
|
query?: {
|
|
24473
|
-
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'>;
|
|
24474
24517
|
};
|
|
24475
24518
|
url: '/api/proposal-protected-calls/{uuid}/';
|
|
24476
24519
|
};
|
|
@@ -24941,7 +24984,7 @@ export type ProposalPublicCallsListData = {
|
|
|
24941
24984
|
customer?: string;
|
|
24942
24985
|
customer_keyword?: string;
|
|
24943
24986
|
customer_uuid?: string;
|
|
24944
|
-
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'>;
|
|
24945
24988
|
has_active_round?: boolean;
|
|
24946
24989
|
name?: string;
|
|
24947
24990
|
/**
|
|
@@ -24974,7 +25017,7 @@ export type ProposalPublicCallsRetrieveData = {
|
|
|
24974
25017
|
uuid: string;
|
|
24975
25018
|
};
|
|
24976
25019
|
query?: {
|
|
24977
|
-
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'>;
|
|
24978
25021
|
};
|
|
24979
25022
|
url: '/api/proposal-public-calls/{uuid}/';
|
|
24980
25023
|
};
|