waldur-js-client 8.0.8-dev.23 → 8.0.8-dev.24
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 +42 -8
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -21628,6 +21628,10 @@ export type ResourceUpdateLimitsRequest = {
|
|
|
21628
21628
|
[key: string]: number;
|
|
21629
21629
|
};
|
|
21630
21630
|
request_comment?: string | null;
|
|
21631
|
+
/**
|
|
21632
|
+
* Optional PDF attachment for the limit update request.
|
|
21633
|
+
*/
|
|
21634
|
+
attachment?: Blob | File;
|
|
21631
21635
|
};
|
|
21632
21636
|
export type ResourceUpdateRequest = {
|
|
21633
21637
|
name: string;
|
|
@@ -26691,6 +26695,26 @@ export type ResourceRenewRequestMultipart = {
|
|
|
26691
26695
|
*/
|
|
26692
26696
|
attachment?: Blob | File;
|
|
26693
26697
|
};
|
|
26698
|
+
export type ResourceUpdateLimitsRequestForm = {
|
|
26699
|
+
limits: {
|
|
26700
|
+
[key: string]: number;
|
|
26701
|
+
};
|
|
26702
|
+
request_comment?: string | null;
|
|
26703
|
+
/**
|
|
26704
|
+
* Optional PDF attachment for the limit update request.
|
|
26705
|
+
*/
|
|
26706
|
+
attachment?: Blob | File;
|
|
26707
|
+
};
|
|
26708
|
+
export type ResourceUpdateLimitsRequestMultipart = {
|
|
26709
|
+
limits: {
|
|
26710
|
+
[key: string]: number;
|
|
26711
|
+
};
|
|
26712
|
+
request_comment?: string | null;
|
|
26713
|
+
/**
|
|
26714
|
+
* Optional PDF attachment for the limit update request.
|
|
26715
|
+
*/
|
|
26716
|
+
attachment?: Blob | File;
|
|
26717
|
+
};
|
|
26694
26718
|
export type ScreenshotRequestForm = {
|
|
26695
26719
|
name: string;
|
|
26696
26720
|
description?: string;
|
|
@@ -39034,14 +39058,15 @@ export type HooksListData = {
|
|
|
39034
39058
|
body?: never;
|
|
39035
39059
|
path?: never;
|
|
39036
39060
|
query?: {
|
|
39061
|
+
author_email?: string;
|
|
39037
39062
|
/**
|
|
39038
|
-
*
|
|
39063
|
+
* User full name contains
|
|
39039
39064
|
*/
|
|
39065
|
+
author_fullname?: string;
|
|
39066
|
+
author_username?: string;
|
|
39040
39067
|
author_uuid?: string;
|
|
39041
|
-
/**
|
|
39042
|
-
* Filter by active status.
|
|
39043
|
-
*/
|
|
39044
39068
|
is_active?: boolean;
|
|
39069
|
+
last_published?: string;
|
|
39045
39070
|
/**
|
|
39046
39071
|
* A page number within the paginated result set.
|
|
39047
39072
|
*/
|
|
@@ -39050,6 +39075,10 @@ export type HooksListData = {
|
|
|
39050
39075
|
* Number of results to return per page.
|
|
39051
39076
|
*/
|
|
39052
39077
|
page_size?: number;
|
|
39078
|
+
/**
|
|
39079
|
+
* Filter by author name, username and email
|
|
39080
|
+
*/
|
|
39081
|
+
query?: string;
|
|
39053
39082
|
};
|
|
39054
39083
|
url: '/api/hooks/';
|
|
39055
39084
|
};
|
|
@@ -39063,14 +39092,15 @@ export type HooksCountData = {
|
|
|
39063
39092
|
body?: never;
|
|
39064
39093
|
path?: never;
|
|
39065
39094
|
query?: {
|
|
39095
|
+
author_email?: string;
|
|
39066
39096
|
/**
|
|
39067
|
-
*
|
|
39097
|
+
* User full name contains
|
|
39068
39098
|
*/
|
|
39099
|
+
author_fullname?: string;
|
|
39100
|
+
author_username?: string;
|
|
39069
39101
|
author_uuid?: string;
|
|
39070
|
-
/**
|
|
39071
|
-
* Filter by active status.
|
|
39072
|
-
*/
|
|
39073
39102
|
is_active?: boolean;
|
|
39103
|
+
last_published?: string;
|
|
39074
39104
|
/**
|
|
39075
39105
|
* A page number within the paginated result set.
|
|
39076
39106
|
*/
|
|
@@ -39079,6 +39109,10 @@ export type HooksCountData = {
|
|
|
39079
39109
|
* Number of results to return per page.
|
|
39080
39110
|
*/
|
|
39081
39111
|
page_size?: number;
|
|
39112
|
+
/**
|
|
39113
|
+
* Filter by author name, username and email
|
|
39114
|
+
*/
|
|
39115
|
+
query?: string;
|
|
39082
39116
|
};
|
|
39083
39117
|
url: '/api/hooks/';
|
|
39084
39118
|
};
|