waldur-js-client 7.6.9 → 7.6.10-dev.1

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.
@@ -7051,10 +7051,12 @@ export type PatchedRulePlansRequest = {
7051
7051
  };
7052
7052
  };
7053
7053
  export type PatchedRuleRequest = {
7054
+ name?: string;
7054
7055
  user_affiliations?: Array<string>;
7055
7056
  user_email_patterns?: Array<string>;
7056
7057
  customer?: string;
7057
7058
  project_role?: string | null;
7059
+ project_role_name?: string | null;
7058
7060
  };
7059
7061
  export type PatchedScreenshotRequest = {
7060
7062
  name?: string;
@@ -7895,6 +7897,9 @@ export type ProviderOfferingDetails = {
7895
7897
  backend_metadata?: unknown;
7896
7898
  readonly integration_status?: Array<IntegrationStatus> | null;
7897
7899
  readonly google_calendar_is_public?: boolean | null;
7900
+ /**
7901
+ * Get the Google Calendar link for an offering.
7902
+ */
7898
7903
  readonly google_calendar_link?: string | null;
7899
7904
  };
7900
7905
  export type ProviderOfferingDetailsRequest = {
@@ -8151,6 +8156,9 @@ export type PublicOfferingDetails = {
8151
8156
  readonly parent_name?: string | null;
8152
8157
  backend_metadata?: unknown;
8153
8158
  readonly google_calendar_is_public?: boolean | null;
8159
+ /**
8160
+ * Get the Google Calendar link for an offering.
8161
+ */
8154
8162
  readonly google_calendar_link?: string | null;
8155
8163
  readonly promotion_campaigns?: Array<NestedCampaign>;
8156
8164
  };
@@ -9593,12 +9601,17 @@ export type RoundReviewer = {
9593
9601
  in_review_proposals: number;
9594
9602
  };
9595
9603
  export type Rule = {
9604
+ name: string;
9596
9605
  readonly uuid: string;
9597
9606
  readonly url: string;
9598
9607
  user_affiliations?: Array<string>;
9599
9608
  user_email_patterns?: Array<string>;
9600
9609
  customer: string;
9610
+ readonly customer_name: string;
9611
+ readonly customer_uuid: string;
9601
9612
  project_role?: string | null;
9613
+ project_role_name?: string | null;
9614
+ readonly project_role_description: string;
9602
9615
  readonly plans: Array<string>;
9603
9616
  };
9604
9617
  export type RulePlans = {
@@ -9624,10 +9637,12 @@ export type RulePlansRequest = {
9624
9637
  };
9625
9638
  };
9626
9639
  export type RuleRequest = {
9640
+ name: string;
9627
9641
  user_affiliations?: Array<string>;
9628
9642
  user_email_patterns?: Array<string>;
9629
9643
  customer: string;
9630
9644
  project_role?: string | null;
9645
+ project_role_name?: string | null;
9631
9646
  };
9632
9647
  export type RuntimeStates = {
9633
9648
  readonly value: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.6.9",
3
+ "version": "7.6.10-dev.1",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",