waldur-js-client 8.0.9-dev.2 → 8.0.9-dev.3
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 +12 -1
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -25689,7 +25689,7 @@ export type UserAuthToken = {
|
|
|
25689
25689
|
};
|
|
25690
25690
|
export type UserChecklistCompletion = {
|
|
25691
25691
|
readonly uuid: string;
|
|
25692
|
-
offering_user:
|
|
25692
|
+
offering_user: UserChecklistCompletionOfferingUser | null;
|
|
25693
25693
|
readonly offering_user_uuid: string | null;
|
|
25694
25694
|
readonly offering_name: string | null;
|
|
25695
25695
|
readonly offering_uuid: string | null;
|
|
@@ -25720,6 +25720,17 @@ export type UserChecklistCompletion = {
|
|
|
25720
25720
|
readonly created: string;
|
|
25721
25721
|
readonly modified: string;
|
|
25722
25722
|
};
|
|
25723
|
+
export type UserChecklistCompletionOfferingUser = {
|
|
25724
|
+
readonly uuid: string;
|
|
25725
|
+
username?: string | null;
|
|
25726
|
+
readonly user_full_name: string;
|
|
25727
|
+
readonly user_email: string;
|
|
25728
|
+
readonly state: string;
|
|
25729
|
+
/**
|
|
25730
|
+
* Signal to service if the user account is restricted or not
|
|
25731
|
+
*/
|
|
25732
|
+
is_restricted?: boolean;
|
|
25733
|
+
};
|
|
25723
25734
|
export type UserConsentInfo = {
|
|
25724
25735
|
readonly uuid: string;
|
|
25725
25736
|
readonly version: string;
|