windmill-client 1.493.2 → 1.493.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/core/OpenAPI.js +1 -1
- package/dist/types.gen.d.ts +8 -0
- package/package.json +1 -1
package/dist/core/OpenAPI.js
CHANGED
package/dist/types.gen.d.ts
CHANGED
|
@@ -1900,6 +1900,10 @@ export type CreateUserGloballyData = {
|
|
|
1900
1900
|
super_admin: boolean;
|
|
1901
1901
|
name?: string;
|
|
1902
1902
|
company?: string;
|
|
1903
|
+
/**
|
|
1904
|
+
* Skip sending email notifications to the user
|
|
1905
|
+
*/
|
|
1906
|
+
skip_email?: boolean;
|
|
1903
1907
|
};
|
|
1904
1908
|
};
|
|
1905
1909
|
export type CreateUserGloballyResponse = string;
|
|
@@ -7179,6 +7183,10 @@ export type $OpenApiTs = {
|
|
|
7179
7183
|
super_admin: boolean;
|
|
7180
7184
|
name?: string;
|
|
7181
7185
|
company?: string;
|
|
7186
|
+
/**
|
|
7187
|
+
* Skip sending email notifications to the user
|
|
7188
|
+
*/
|
|
7189
|
+
skip_email?: boolean;
|
|
7182
7190
|
};
|
|
7183
7191
|
};
|
|
7184
7192
|
res: {
|