waldur-js-client 7.7.6 → 7.7.7-dev.0
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
|
@@ -2651,6 +2651,10 @@ export type GroupInvitation = {
|
|
|
2651
2651
|
readonly created: string;
|
|
2652
2652
|
readonly expires: string;
|
|
2653
2653
|
readonly is_active: boolean;
|
|
2654
|
+
/**
|
|
2655
|
+
* Allow non-authenticated users to see and accept this invitation. Only staff can create public invitations.
|
|
2656
|
+
*/
|
|
2657
|
+
is_public?: boolean;
|
|
2654
2658
|
/**
|
|
2655
2659
|
* Create project and grant project permissions instead of customer permissions
|
|
2656
2660
|
*/
|
|
@@ -2662,10 +2666,15 @@ export type GroupInvitation = {
|
|
|
2662
2666
|
project_role?: string | null;
|
|
2663
2667
|
user_affiliations?: unknown;
|
|
2664
2668
|
user_email_patterns?: unknown;
|
|
2669
|
+
readonly scope_image: string | null;
|
|
2665
2670
|
};
|
|
2666
2671
|
export type GroupInvitationRequest = {
|
|
2667
2672
|
role: string;
|
|
2668
2673
|
scope: string;
|
|
2674
|
+
/**
|
|
2675
|
+
* Allow non-authenticated users to see and accept this invitation. Only staff can create public invitations.
|
|
2676
|
+
*/
|
|
2677
|
+
is_public?: boolean;
|
|
2669
2678
|
/**
|
|
2670
2679
|
* Create project and grant project permissions instead of customer permissions
|
|
2671
2680
|
*/
|