windmill-cli 1.686.0 → 1.687.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.
Files changed (2) hide show
  1. package/esm/main.js +17 -2
  2. package/package.json +1 -1
package/esm/main.js CHANGED
@@ -11812,7 +11812,7 @@ var init_OpenAPI = __esm(() => {
11812
11812
  PASSWORD: undefined,
11813
11813
  TOKEN: getEnv2("WM_TOKEN"),
11814
11814
  USERNAME: undefined,
11815
- VERSION: "1.686.0",
11815
+ VERSION: "1.687.0",
11816
11816
  WITH_CREDENTIALS: true,
11817
11817
  interceptors: {
11818
11818
  request: new Interceptors,
@@ -12335,6 +12335,7 @@ __export(exports_services_gen, {
12335
12335
  listGoogleDriveFiles: () => listGoogleDriveFiles,
12336
12336
  listGoogleCalendars: () => listGoogleCalendars,
12337
12337
  listGlobalSettings: () => listGlobalSettings,
12338
+ listGithubRepos: () => listGithubRepos,
12338
12339
  listGitRepoFiles: () => listGitRepoFiles,
12339
12340
  listGcpTriggers: () => listGcpTriggers,
12340
12341
  listFolders: () => listFolders,
@@ -12379,6 +12380,7 @@ __export(exports_services_gen, {
12379
12380
  leaveInstance: () => leaveInstance,
12380
12381
  isValidPostgresConfiguration: () => isValidPostgresConfiguration,
12381
12382
  isSmtpConfigured: () => isSmtpConfigured,
12383
+ isPasswordLoginDisabled: () => isPasswordLoginDisabled,
12382
12384
  isOwnerOfPath: () => isOwnerOfPath,
12383
12385
  isDomainAllowed: () => isDomainAllowed,
12384
12386
  isDefaultTagsPerWorkspace: () => isDefaultTagsPerWorkspace,
@@ -12867,6 +12869,11 @@ var backendVersion = () => {
12867
12869
  method: "GET",
12868
12870
  url: "/auth/is_smtp_configured"
12869
12871
  });
12872
+ }, isPasswordLoginDisabled = () => {
12873
+ return request(OpenAPI, {
12874
+ method: "GET",
12875
+ url: "/auth/is_password_login_disabled"
12876
+ });
12870
12877
  }, requestPasswordReset = (data2) => {
12871
12878
  return request(OpenAPI, {
12872
12879
  method: "POST",
@@ -18125,6 +18132,14 @@ var backendVersion = () => {
18125
18132
  workspace: data2.workspace
18126
18133
  }
18127
18134
  });
18135
+ }, listGithubRepos = (data2) => {
18136
+ return request(OpenAPI, {
18137
+ method: "GET",
18138
+ url: "/w/{workspace}/native_triggers/github/repos",
18139
+ path: {
18140
+ workspace: data2.workspace
18141
+ }
18142
+ });
18128
18143
  }, nativeTriggerWebhook = (data2) => {
18129
18144
  return request(OpenAPI, {
18130
18145
  method: "POST",
@@ -85445,7 +85460,7 @@ var config_default = command35;
85445
85460
 
85446
85461
  // src/main.ts
85447
85462
  await init_context();
85448
- var VERSION = "1.686.0";
85463
+ var VERSION = "1.687.0";
85449
85464
  async function checkVersionSafe(cmd) {
85450
85465
  const mainCommand = cmd.getMainCommand();
85451
85466
  const upgradeCommand = mainCommand.getCommand("upgrade");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "windmill-cli",
3
- "version": "1.686.0",
3
+ "version": "1.687.0",
4
4
  "description": "CLI for Windmill",
5
5
  "license": "Apache 2.0",
6
6
  "type": "module",