windmill-cli 1.568.0 → 1.569.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 +51 -0
- package/esm/src/main.js +1 -1
- package/package.json +1 -1
- package/types/gen/services.gen.d.ts +26 -1
- package/types/gen/services.gen.d.ts.map +1 -1
- package/types/gen/types.gen.d.ts +27 -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 +27 -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.569.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;
|
|
@@ -3085,6 +3085,8 @@ export type GetSettingsResponse = ({
|
|
|
3085
3085
|
slack_name?: string;
|
|
3086
3086
|
slack_team_id?: string;
|
|
3087
3087
|
slack_command_script?: string;
|
|
3088
|
+
slack_oauth_client_id?: string;
|
|
3089
|
+
slack_oauth_client_secret?: string;
|
|
3088
3090
|
teams_team_id?: string;
|
|
3089
3091
|
teams_command_script?: string;
|
|
3090
3092
|
teams_team_name?: string;
|
|
@@ -3173,6 +3175,31 @@ export type EditSlackCommandData = {
|
|
|
3173
3175
|
workspace: string;
|
|
3174
3176
|
};
|
|
3175
3177
|
export type EditSlackCommandResponse = (string);
|
|
3178
|
+
export type GetWorkspaceSlackOauthConfigData = {
|
|
3179
|
+
workspace: string;
|
|
3180
|
+
};
|
|
3181
|
+
export type GetWorkspaceSlackOauthConfigResponse = ({
|
|
3182
|
+
slack_oauth_client_id?: (string) | null;
|
|
3183
|
+
/**
|
|
3184
|
+
* Masked with *** if set
|
|
3185
|
+
*/
|
|
3186
|
+
slack_oauth_client_secret?: (string) | null;
|
|
3187
|
+
});
|
|
3188
|
+
export type SetWorkspaceSlackOauthConfigData = {
|
|
3189
|
+
/**
|
|
3190
|
+
* Slack OAuth Configuration
|
|
3191
|
+
*/
|
|
3192
|
+
requestBody: {
|
|
3193
|
+
slack_oauth_client_id: string;
|
|
3194
|
+
slack_oauth_client_secret: string;
|
|
3195
|
+
};
|
|
3196
|
+
workspace: string;
|
|
3197
|
+
};
|
|
3198
|
+
export type SetWorkspaceSlackOauthConfigResponse = (string);
|
|
3199
|
+
export type DeleteWorkspaceSlackOauthConfigData = {
|
|
3200
|
+
workspace: string;
|
|
3201
|
+
};
|
|
3202
|
+
export type DeleteWorkspaceSlackOauthConfigResponse = (string);
|
|
3176
3203
|
export type EditTeamsCommandData = {
|
|
3177
3204
|
/**
|
|
3178
3205
|
* WorkspaceInvite
|