waldur-js-client 8.0.7-dev.12 → 8.0.7-dev.13
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/sdk.gen.js +1 -5
- package/dist/types.gen.d.ts +11 -10
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -34874,11 +34874,7 @@ export const projectEndDateChangeRequestsCancel = (options) => {
|
|
|
34874
34874
|
}
|
|
34875
34875
|
],
|
|
34876
34876
|
url: '/api/project-end-date-change-requests/{uuid}/cancel/',
|
|
34877
|
-
...options
|
|
34878
|
-
headers: {
|
|
34879
|
-
'Content-Type': 'application/json',
|
|
34880
|
-
...options.headers
|
|
34881
|
-
}
|
|
34877
|
+
...options
|
|
34882
34878
|
});
|
|
34883
34879
|
};
|
|
34884
34880
|
/**
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -17581,6 +17581,10 @@ export type ProjectEndDateChangeRequest = {
|
|
|
17581
17581
|
* The requested new end date for the project
|
|
17582
17582
|
*/
|
|
17583
17583
|
requested_end_date: string;
|
|
17584
|
+
/**
|
|
17585
|
+
* Optional comment from the requester
|
|
17586
|
+
*/
|
|
17587
|
+
comment?: string | null;
|
|
17584
17588
|
readonly created: string;
|
|
17585
17589
|
readonly created_by_uuid: string | null;
|
|
17586
17590
|
readonly created_by_full_name: string | null;
|
|
@@ -17601,6 +17605,10 @@ export type ProjectEndDateChangeRequestCreate = {
|
|
|
17601
17605
|
* The requested new end date for the project
|
|
17602
17606
|
*/
|
|
17603
17607
|
requested_end_date: string;
|
|
17608
|
+
/**
|
|
17609
|
+
* Optional comment from the requester
|
|
17610
|
+
*/
|
|
17611
|
+
comment?: string | null;
|
|
17604
17612
|
readonly uuid: string;
|
|
17605
17613
|
readonly state: string;
|
|
17606
17614
|
};
|
|
@@ -17610,17 +17618,10 @@ export type ProjectEndDateChangeRequestCreateRequest = {
|
|
|
17610
17618
|
* The requested new end date for the project
|
|
17611
17619
|
*/
|
|
17612
17620
|
requested_end_date: string;
|
|
17613
|
-
};
|
|
17614
|
-
export type ProjectEndDateChangeRequestRequest = {
|
|
17615
|
-
project: string;
|
|
17616
17621
|
/**
|
|
17617
|
-
*
|
|
17622
|
+
* Optional comment from the requester
|
|
17618
17623
|
*/
|
|
17619
|
-
|
|
17620
|
-
/**
|
|
17621
|
-
* Optional comment provided during review
|
|
17622
|
-
*/
|
|
17623
|
-
review_comment?: string | null;
|
|
17624
|
+
comment?: string | null;
|
|
17624
17625
|
};
|
|
17625
17626
|
export type ProjectEstimatedCostPolicy = {
|
|
17626
17627
|
readonly uuid: string;
|
|
@@ -67548,7 +67549,7 @@ export type ProjectEndDateChangeRequestsApproveResponses = {
|
|
|
67548
67549
|
200: unknown;
|
|
67549
67550
|
};
|
|
67550
67551
|
export type ProjectEndDateChangeRequestsCancelData = {
|
|
67551
|
-
body
|
|
67552
|
+
body?: never;
|
|
67552
67553
|
path: {
|
|
67553
67554
|
uuid: string;
|
|
67554
67555
|
};
|