waldur-js-client 7.6.10-dev.0 → 7.6.10-dev.1
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 +9 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -7051,10 +7051,12 @@ export type PatchedRulePlansRequest = {
|
|
|
7051
7051
|
};
|
|
7052
7052
|
};
|
|
7053
7053
|
export type PatchedRuleRequest = {
|
|
7054
|
+
name?: string;
|
|
7054
7055
|
user_affiliations?: Array<string>;
|
|
7055
7056
|
user_email_patterns?: Array<string>;
|
|
7056
7057
|
customer?: string;
|
|
7057
7058
|
project_role?: string | null;
|
|
7059
|
+
project_role_name?: string | null;
|
|
7058
7060
|
};
|
|
7059
7061
|
export type PatchedScreenshotRequest = {
|
|
7060
7062
|
name?: string;
|
|
@@ -9599,12 +9601,17 @@ export type RoundReviewer = {
|
|
|
9599
9601
|
in_review_proposals: number;
|
|
9600
9602
|
};
|
|
9601
9603
|
export type Rule = {
|
|
9604
|
+
name: string;
|
|
9602
9605
|
readonly uuid: string;
|
|
9603
9606
|
readonly url: string;
|
|
9604
9607
|
user_affiliations?: Array<string>;
|
|
9605
9608
|
user_email_patterns?: Array<string>;
|
|
9606
9609
|
customer: string;
|
|
9610
|
+
readonly customer_name: string;
|
|
9611
|
+
readonly customer_uuid: string;
|
|
9607
9612
|
project_role?: string | null;
|
|
9613
|
+
project_role_name?: string | null;
|
|
9614
|
+
readonly project_role_description: string;
|
|
9608
9615
|
readonly plans: Array<string>;
|
|
9609
9616
|
};
|
|
9610
9617
|
export type RulePlans = {
|
|
@@ -9630,10 +9637,12 @@ export type RulePlansRequest = {
|
|
|
9630
9637
|
};
|
|
9631
9638
|
};
|
|
9632
9639
|
export type RuleRequest = {
|
|
9640
|
+
name: string;
|
|
9633
9641
|
user_affiliations?: Array<string>;
|
|
9634
9642
|
user_email_patterns?: Array<string>;
|
|
9635
9643
|
customer: string;
|
|
9636
9644
|
project_role?: string | null;
|
|
9645
|
+
project_role_name?: string | null;
|
|
9637
9646
|
};
|
|
9638
9647
|
export type RuntimeStates = {
|
|
9639
9648
|
readonly value: string;
|