waldur-js-client 1.0.4-dev.61 → 1.0.4-dev.62
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 +7 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1874,6 +1874,8 @@ export type CustomerServiceAccount = {
|
|
|
1874
1874
|
email?: string;
|
|
1875
1875
|
readonly expiresAt: string | null;
|
|
1876
1876
|
customer: string;
|
|
1877
|
+
readonly customer_uuid: string;
|
|
1878
|
+
readonly customer_name: string;
|
|
1877
1879
|
};
|
|
1878
1880
|
export type CustomerServiceAccountRequest = {
|
|
1879
1881
|
username?: string;
|
|
@@ -6709,6 +6711,11 @@ export type ProjectServiceAccount = {
|
|
|
6709
6711
|
email?: string;
|
|
6710
6712
|
readonly expiresAt: string | null;
|
|
6711
6713
|
project: string;
|
|
6714
|
+
readonly project_uuid: string;
|
|
6715
|
+
readonly project_name: string;
|
|
6716
|
+
readonly customer_uuid: string;
|
|
6717
|
+
readonly customer_name: string;
|
|
6718
|
+
readonly customer_abbreviation: string;
|
|
6712
6719
|
};
|
|
6713
6720
|
export type ProjectServiceAccountRequest = {
|
|
6714
6721
|
username?: string;
|