waldur-js-client 7.7.10-dev.3 → 7.7.10-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 +10 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -3774,6 +3774,10 @@ export type MergedPluginOptions = {
|
|
|
3774
3774
|
* Required user role in a project for provisioning of resources
|
|
3775
3775
|
*/
|
|
3776
3776
|
required_team_role_for_provisioning?: string;
|
|
3777
|
+
/**
|
|
3778
|
+
* If set to True, orders will support comments and metadata
|
|
3779
|
+
*/
|
|
3780
|
+
order_supports_comments_and_metadata?: boolean;
|
|
3777
3781
|
/**
|
|
3778
3782
|
* If set, it will be used as a default MTU for the first network in a tenant
|
|
3779
3783
|
*/
|
|
@@ -3920,6 +3924,10 @@ export type MergedPluginOptionsRequest = {
|
|
|
3920
3924
|
* Required user role in a project for provisioning of resources
|
|
3921
3925
|
*/
|
|
3922
3926
|
required_team_role_for_provisioning?: string;
|
|
3927
|
+
/**
|
|
3928
|
+
* If set to True, orders will support comments and metadata
|
|
3929
|
+
*/
|
|
3930
|
+
order_supports_comments_and_metadata?: boolean;
|
|
3923
3931
|
/**
|
|
3924
3932
|
* If set, it will be used as a default MTU for the first network in a tenant
|
|
3925
3933
|
*/
|
|
@@ -10736,6 +10744,8 @@ export type ResourceUpdateLimitsRequest = {
|
|
|
10736
10744
|
limits: {
|
|
10737
10745
|
[key: string]: number;
|
|
10738
10746
|
};
|
|
10747
|
+
request_comment?: string | null;
|
|
10748
|
+
attachment?: (Blob | File) | null;
|
|
10739
10749
|
};
|
|
10740
10750
|
export type ResourceUpdateRequest = {
|
|
10741
10751
|
name: string;
|