waldur-js-client 7.9.2-dev.2 → 7.9.2-dev.4

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.
@@ -4412,6 +4412,10 @@ export type MergedPluginOptions = {
4412
4412
  * Slurm account name generation policy
4413
4413
  */
4414
4414
  account_name_generation_policy?: AccountNameGenerationPolicyEnum | NullEnum | null;
4415
+ /**
4416
+ * If set to False, an order requires manual provider approval
4417
+ */
4418
+ auto_approve_marketplace_script?: boolean;
4415
4419
  /**
4416
4420
  * Defines if backend_id should be shown more prominently by the UI
4417
4421
  */
@@ -4606,6 +4610,10 @@ export type MergedPluginOptionsRequest = {
4606
4610
  * Slurm account name generation policy
4607
4611
  */
4608
4612
  account_name_generation_policy?: AccountNameGenerationPolicyEnum | NullEnum | null;
4613
+ /**
4614
+ * If set to False, an order requires manual provider approval
4615
+ */
4616
+ auto_approve_marketplace_script?: boolean;
4609
4617
  /**
4610
4618
  * Defines if backend_id should be shown more prominently by the UI
4611
4619
  */
@@ -12975,6 +12983,14 @@ export type ResourceRenewRequest = {
12975
12983
  limits?: {
12976
12984
  [key: string]: number;
12977
12985
  };
12986
+ /**
12987
+ * Optional comment for the renewal request.
12988
+ */
12989
+ request_comment?: string;
12990
+ /**
12991
+ * Optional PDF attachment for the renewal request.
12992
+ */
12993
+ attachment?: Blob | File;
12978
12994
  };
12979
12995
  export type ResourceReportRequest = {
12980
12996
  report: Array<ReportSectionRequest>;
@@ -15579,6 +15595,46 @@ export type OfferingThumbnailRequestForm = {
15579
15595
  export type OfferingThumbnailRequestMultipart = {
15580
15596
  thumbnail: Blob | File;
15581
15597
  };
15598
+ export type ResourceRenewRequestForm = {
15599
+ /**
15600
+ * Number of months to extend the subscription by.
15601
+ */
15602
+ extension_months: number;
15603
+ /**
15604
+ * Optional new limits for the resource. Supports upgrades only.
15605
+ */
15606
+ limits?: {
15607
+ [key: string]: number;
15608
+ };
15609
+ /**
15610
+ * Optional comment for the renewal request.
15611
+ */
15612
+ request_comment?: string;
15613
+ /**
15614
+ * Optional PDF attachment for the renewal request.
15615
+ */
15616
+ attachment?: Blob | File;
15617
+ };
15618
+ export type ResourceRenewRequestMultipart = {
15619
+ /**
15620
+ * Number of months to extend the subscription by.
15621
+ */
15622
+ extension_months: number;
15623
+ /**
15624
+ * Optional new limits for the resource. Supports upgrades only.
15625
+ */
15626
+ limits?: {
15627
+ [key: string]: number;
15628
+ };
15629
+ /**
15630
+ * Optional comment for the renewal request.
15631
+ */
15632
+ request_comment?: string;
15633
+ /**
15634
+ * Optional PDF attachment for the renewal request.
15635
+ */
15636
+ attachment?: Blob | File;
15637
+ };
15582
15638
  export type ScreenshotRequestForm = {
15583
15639
  name: string;
15584
15640
  description?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.9.2-dev.2",
3
+ "version": "7.9.2-dev.4",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",