waldur-js-client 7.8.2-dev.5 → 7.8.2-dev.7

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.
@@ -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;
@@ -8871,6 +8875,7 @@ export type ProposalReview = {
8871
8875
  proposal: string;
8872
8876
  readonly proposal_name: string;
8873
8877
  readonly proposal_uuid: string;
8878
+ readonly proposal_slug: string;
8874
8879
  reviewer: string;
8875
8880
  readonly reviewer_full_name: string;
8876
8881
  readonly reviewer_uuid: string;
@@ -8886,10 +8891,12 @@ export type ProposalReview = {
8886
8891
  summary_private_comment?: string;
8887
8892
  readonly round_uuid: string;
8888
8893
  readonly round_name: string;
8894
+ readonly round_slug: string;
8889
8895
  readonly round_cutoff_time: string;
8890
8896
  readonly round_start_time: string;
8891
8897
  readonly call_name: string;
8892
8898
  readonly call_uuid: string;
8899
+ readonly call_slug: string;
8893
8900
  readonly call_managing_organisation_uuid: string;
8894
8901
  comment_project_title?: string | null;
8895
8902
  comment_project_summary?: string | null;
@@ -8995,6 +9002,7 @@ export type ProtectedCallRequest = {
8995
9002
  };
8996
9003
  export type ProtectedProposalList = {
8997
9004
  readonly uuid: string;
9005
+ slug: string;
8998
9006
  name: string;
8999
9007
  state: ProposalStates;
9000
9008
  /**
@@ -9008,10 +9016,12 @@ export type ProtectedProposalList = {
9008
9016
  readonly created: string;
9009
9017
  };
9010
9018
  export type ProtectedProposalListRequest = {
9019
+ slug: string;
9011
9020
  name: string;
9012
9021
  };
9013
9022
  export type ProtectedRound = {
9014
9023
  readonly uuid: string;
9024
+ readonly slug: string;
9015
9025
  readonly name: string;
9016
9026
  start_time: string;
9017
9027
  cutoff_time: string;
@@ -36262,7 +36272,7 @@ export type ProposalProposalsListData = {
36262
36272
  *
36263
36273
  *
36264
36274
  */
36265
- o?: Array<'-created' | '-round__call__name' | '-round__cutoff_time' | '-round__start_time' | '-state' | 'created' | 'round__call__name' | 'round__cutoff_time' | 'round__start_time' | 'state'>;
36275
+ o?: Array<'-created' | '-round__call__name' | '-round__cutoff_time' | '-round__start_time' | '-slug' | '-state' | 'created' | 'round__call__name' | 'round__cutoff_time' | 'round__start_time' | 'slug' | 'state'>;
36266
36276
  organization_uuid?: string;
36267
36277
  /**
36268
36278
  * A page number within the paginated result set.
@@ -36292,7 +36302,7 @@ export type ProposalProposalsCountData = {
36292
36302
  *
36293
36303
  *
36294
36304
  */
36295
- o?: Array<'-created' | '-round__call__name' | '-round__cutoff_time' | '-round__start_time' | '-state' | 'created' | 'round__call__name' | 'round__cutoff_time' | 'round__start_time' | 'state'>;
36305
+ o?: Array<'-created' | '-round__call__name' | '-round__cutoff_time' | '-round__start_time' | '-slug' | '-state' | 'created' | 'round__call__name' | 'round__cutoff_time' | 'round__start_time' | 'slug' | 'state'>;
36296
36306
  organization_uuid?: string;
36297
36307
  /**
36298
36308
  * A page number within the paginated result set.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.8.2-dev.5",
3
+ "version": "7.8.2-dev.7",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",