waldur-js-client 7.8.2-dev.5 → 7.8.2-dev.6
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 +7 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1095,6 +1095,7 @@ export type CallResourceTemplateRequest = {
|
|
|
1095
1095
|
export type CallRound = {
|
|
1096
1096
|
readonly url: string;
|
|
1097
1097
|
readonly uuid: string;
|
|
1098
|
+
slug?: string;
|
|
1098
1099
|
start_time: string;
|
|
1099
1100
|
cutoff_time: string;
|
|
1100
1101
|
readonly call_uuid: string;
|
|
@@ -4637,6 +4638,7 @@ export type NestedRoleRequest = {
|
|
|
4637
4638
|
};
|
|
4638
4639
|
export type NestedRound = {
|
|
4639
4640
|
readonly uuid?: string;
|
|
4641
|
+
slug?: string;
|
|
4640
4642
|
readonly name?: string;
|
|
4641
4643
|
start_time?: string;
|
|
4642
4644
|
cutoff_time?: string;
|
|
@@ -4650,6 +4652,7 @@ export type NestedRound = {
|
|
|
4650
4652
|
minimum_number_of_reviewers?: number | null;
|
|
4651
4653
|
};
|
|
4652
4654
|
export type NestedRoundRequest = {
|
|
4655
|
+
slug?: string;
|
|
4653
4656
|
start_time: string;
|
|
4654
4657
|
cutoff_time: string;
|
|
4655
4658
|
review_strategy?: ReviewStrategyEnum;
|
|
@@ -8788,6 +8791,7 @@ export type ProjectsUsagesGroupedByOecd = {
|
|
|
8788
8791
|
export type Proposal = {
|
|
8789
8792
|
readonly uuid: string;
|
|
8790
8793
|
readonly url: string;
|
|
8794
|
+
readonly slug: string;
|
|
8791
8795
|
name: string;
|
|
8792
8796
|
description?: string;
|
|
8793
8797
|
readonly project_name: string;
|
|
@@ -8995,6 +8999,7 @@ export type ProtectedCallRequest = {
|
|
|
8995
8999
|
};
|
|
8996
9000
|
export type ProtectedProposalList = {
|
|
8997
9001
|
readonly uuid: string;
|
|
9002
|
+
slug: string;
|
|
8998
9003
|
name: string;
|
|
8999
9004
|
state: ProposalStates;
|
|
9000
9005
|
/**
|
|
@@ -9008,10 +9013,12 @@ export type ProtectedProposalList = {
|
|
|
9008
9013
|
readonly created: string;
|
|
9009
9014
|
};
|
|
9010
9015
|
export type ProtectedProposalListRequest = {
|
|
9016
|
+
slug: string;
|
|
9011
9017
|
name: string;
|
|
9012
9018
|
};
|
|
9013
9019
|
export type ProtectedRound = {
|
|
9014
9020
|
readonly uuid: string;
|
|
9021
|
+
readonly slug: string;
|
|
9015
9022
|
readonly name: string;
|
|
9016
9023
|
start_time: string;
|
|
9017
9024
|
cutoff_time: string;
|