waldur-js-client 7.9.2-dev.3 → 7.9.2-dev.5
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 +49 -1
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -12983,6 +12983,14 @@ export type ResourceRenewRequest = {
|
|
|
12983
12983
|
limits?: {
|
|
12984
12984
|
[key: string]: number;
|
|
12985
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;
|
|
12986
12994
|
};
|
|
12987
12995
|
export type ResourceReportRequest = {
|
|
12988
12996
|
report: Array<ReportSectionRequest>;
|
|
@@ -13194,7 +13202,7 @@ export type RobotAccountRequest = {
|
|
|
13194
13202
|
keys?: unknown;
|
|
13195
13203
|
responsible_user?: string | null;
|
|
13196
13204
|
};
|
|
13197
|
-
export type RobotAccountStates =
|
|
13205
|
+
export type RobotAccountStates = 'Requested' | 'Creating' | 'OK' | 'Requested deletion' | 'Deleted' | 'Error';
|
|
13198
13206
|
export type RoleDescription = {
|
|
13199
13207
|
description?: string;
|
|
13200
13208
|
/**
|
|
@@ -15587,6 +15595,46 @@ export type OfferingThumbnailRequestForm = {
|
|
|
15587
15595
|
export type OfferingThumbnailRequestMultipart = {
|
|
15588
15596
|
thumbnail: Blob | File;
|
|
15589
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
|
+
};
|
|
15590
15638
|
export type ScreenshotRequestForm = {
|
|
15591
15639
|
name: string;
|
|
15592
15640
|
description?: string;
|