windmill-cli 1.568.0 → 1.570.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/esm/gen/core/OpenAPI.js +1 -1
- package/esm/gen/services.gen.js +66 -0
- package/esm/src/main.js +1 -1
- package/package.json +1 -1
- package/types/gen/services.gen.d.ts +34 -1
- package/types/gen/services.gen.d.ts.map +1 -1
- package/types/gen/types.gen.d.ts +35 -0
- package/types/gen/types.gen.d.ts.map +1 -1
- package/types/src/main.d.ts +1 -1
- package/types/windmill-utils-internal/src/gen/types.gen.d.ts +35 -0
- package/types/windmill-utils-internal/src/gen/types.gen.d.ts.map +1 -1
package/types/src/main.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ import { pull as hubPull } from "./commands/hub/hub.js";
|
|
|
22
22
|
import { pull, push } from "./commands/sync/sync.js";
|
|
23
23
|
import { add as workspaceAdd } from "./commands/workspace/workspace.js";
|
|
24
24
|
export { flow, app, script, workspace, resource, resourceType, user, variable, hub, folder, schedule, trigger, sync, gitsyncSettings, instance, dev, hubPull, pull, push, workspaceAdd, };
|
|
25
|
-
export declare const VERSION = "1.
|
|
25
|
+
export declare const VERSION = "1.570.0";
|
|
26
26
|
export declare const WM_FORK_PREFIX = "wm-fork";
|
|
27
27
|
declare const command: Command<{
|
|
28
28
|
workspace?: (import("../deps/jsr.io/@windmill-labs/cliffy-command/1.0.0-rc.5/mod.js").StringType & string) | undefined;
|
|
@@ -1801,6 +1801,7 @@ export type GlobalUserInfo = {
|
|
|
1801
1801
|
company?: string;
|
|
1802
1802
|
username?: string;
|
|
1803
1803
|
operator_only?: boolean;
|
|
1804
|
+
first_time_user: boolean;
|
|
1804
1805
|
};
|
|
1805
1806
|
export type login_type = 'password' | 'github';
|
|
1806
1807
|
export type Flow = OpenFlow & FlowMetadata & {
|
|
@@ -2685,6 +2686,13 @@ export type GlobalUsersOverwriteData = {
|
|
|
2685
2686
|
};
|
|
2686
2687
|
export type GlobalUsersOverwriteResponse = (string);
|
|
2687
2688
|
export type GlobalUsersExportResponse = (Array<ExportedUser>);
|
|
2689
|
+
export type SubmitOnboardingDataData = {
|
|
2690
|
+
requestBody: {
|
|
2691
|
+
touch_point?: string;
|
|
2692
|
+
use_case?: string;
|
|
2693
|
+
};
|
|
2694
|
+
};
|
|
2695
|
+
export type SubmitOnboardingDataResponse = (string);
|
|
2688
2696
|
export type DeleteUserData = {
|
|
2689
2697
|
username: string;
|
|
2690
2698
|
workspace: string;
|
|
@@ -3085,6 +3093,8 @@ export type GetSettingsResponse = ({
|
|
|
3085
3093
|
slack_name?: string;
|
|
3086
3094
|
slack_team_id?: string;
|
|
3087
3095
|
slack_command_script?: string;
|
|
3096
|
+
slack_oauth_client_id?: string;
|
|
3097
|
+
slack_oauth_client_secret?: string;
|
|
3088
3098
|
teams_team_id?: string;
|
|
3089
3099
|
teams_command_script?: string;
|
|
3090
3100
|
teams_team_name?: string;
|
|
@@ -3173,6 +3183,31 @@ export type EditSlackCommandData = {
|
|
|
3173
3183
|
workspace: string;
|
|
3174
3184
|
};
|
|
3175
3185
|
export type EditSlackCommandResponse = (string);
|
|
3186
|
+
export type GetWorkspaceSlackOauthConfigData = {
|
|
3187
|
+
workspace: string;
|
|
3188
|
+
};
|
|
3189
|
+
export type GetWorkspaceSlackOauthConfigResponse = ({
|
|
3190
|
+
slack_oauth_client_id?: (string) | null;
|
|
3191
|
+
/**
|
|
3192
|
+
* Masked with *** if set
|
|
3193
|
+
*/
|
|
3194
|
+
slack_oauth_client_secret?: (string) | null;
|
|
3195
|
+
});
|
|
3196
|
+
export type SetWorkspaceSlackOauthConfigData = {
|
|
3197
|
+
/**
|
|
3198
|
+
* Slack OAuth Configuration
|
|
3199
|
+
*/
|
|
3200
|
+
requestBody: {
|
|
3201
|
+
slack_oauth_client_id: string;
|
|
3202
|
+
slack_oauth_client_secret: string;
|
|
3203
|
+
};
|
|
3204
|
+
workspace: string;
|
|
3205
|
+
};
|
|
3206
|
+
export type SetWorkspaceSlackOauthConfigResponse = (string);
|
|
3207
|
+
export type DeleteWorkspaceSlackOauthConfigData = {
|
|
3208
|
+
workspace: string;
|
|
3209
|
+
};
|
|
3210
|
+
export type DeleteWorkspaceSlackOauthConfigResponse = (string);
|
|
3176
3211
|
export type EditTeamsCommandData = {
|
|
3177
3212
|
/**
|
|
3178
3213
|
* WorkspaceInvite
|