stepzen 0.34.0-beta.6 → 0.34.0-experimental.1a30182

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 (58) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +1 -1
  3. package/lib/commands/delete.js +1 -1
  4. package/lib/commands/deploy.js +1 -1
  5. package/lib/commands/import/curl.js +1 -1
  6. package/lib/commands/import/graphql.js +1 -1
  7. package/lib/commands/import/index.js +1 -1
  8. package/lib/commands/import/mysql.js +1 -1
  9. package/lib/commands/import/openapi.js +1 -1
  10. package/lib/commands/import/postgresql.js +1 -1
  11. package/lib/commands/import/presto.js +1 -1
  12. package/lib/commands/import/snowflake.js +1 -1
  13. package/lib/commands/init.js +1 -1
  14. package/lib/commands/lint.js +1 -1
  15. package/lib/commands/list.js +1 -1
  16. package/lib/commands/login.js +1 -1
  17. package/lib/commands/logout.js +1 -1
  18. package/lib/commands/request.js +1 -1
  19. package/lib/commands/service.js +1 -1
  20. package/lib/commands/start.js +1 -1
  21. package/lib/commands/transpile.js +1 -1
  22. package/lib/commands/upload.js +1 -1
  23. package/lib/commands/validate.js +1 -1
  24. package/lib/commands/whoami.js +1 -1
  25. package/lib/generate/curl2sdl.js +1 -1
  26. package/lib/generate/flags.js +1 -1
  27. package/lib/generate/graphql2sdl.js +1 -1
  28. package/lib/generate/helpers.js +1 -1
  29. package/lib/generate/import-command.js +1 -1
  30. package/lib/generate/openapi2sdl.js +1 -1
  31. package/lib/generate/questions.js +1 -1
  32. package/lib/generate/sql2sdl.js +1 -1
  33. package/lib/hooks/init/version.js +1 -1
  34. package/lib/hooks/prerun/check-upgrade.js +1 -1
  35. package/lib/hooks/prerun/ensure-config-file.js +1 -1
  36. package/lib/hooks/prerun/ensure-permissions.js +1 -1
  37. package/lib/index.js +1 -1
  38. package/lib/shared/actions.js +1 -1
  39. package/lib/shared/configuration.js +1 -1
  40. package/lib/shared/constants.js +1 -1
  41. package/lib/shared/curl-parser.js +1 -1
  42. package/lib/shared/docker.js +1 -1
  43. package/lib/shared/errors.js +1 -1
  44. package/lib/shared/header-params-parser.js +1 -1
  45. package/lib/shared/header.js +1 -1
  46. package/lib/shared/inquirer.js +1 -1
  47. package/lib/shared/moniker.js +1 -1
  48. package/lib/shared/path-params-parser.js +1 -1
  49. package/lib/shared/request-variables-parser.js +1 -1
  50. package/lib/shared/rmtemp.js +1 -1
  51. package/lib/shared/stepzen-sdk.js +1 -1
  52. package/lib/shared/url-helpers.js +1 -1
  53. package/lib/shared/utils.js +1 -1
  54. package/lib/shared/validation.js +1 -1
  55. package/lib/shared/workspace.js +1 -1
  56. package/lib/shared/zen-command.js +1 -1
  57. package/oclif.manifest.json +1 -1
  58. package/package.json +6 -6
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright IBM Corp. 2020, 2023
3
+ Copyright IBM Corp. 2020, 2024
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -30,7 +30,7 @@ $ npm install -g stepzen
30
30
  $ stepzen COMMAND
31
31
  running command...
32
32
  $ stepzen (--version|-v)
33
- stepzen/0.34.0-beta.6 linux-x64 node-v18.19.0
33
+ stepzen/0.34.0-experimental.1a30182 linux-x64 node-v18.19.0
34
34
  $ stepzen --help [COMMAND]
35
35
  USAGE
36
36
  $ stepzen COMMAND
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const chalk = require("chalk");
5
5
  const core_1 = require("@oclif/core");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  // This file contains the code for the `stepzen deploy` command.
5
5
  const core_1 = require("@oclif/core");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const core_1 = require("@oclif/core");
5
5
  const errors_1 = require("@oclif/core/lib/errors");
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- // Copyright IBM Corp. 2020, 2023
3
+ // Copyright IBM Corp. 2020, 2024
4
4
  const core_1 = require("@oclif/core");
5
5
  const chalk = require("chalk");
6
6
  const graphql2sdl_1 = require("../../generate/graphql2sdl");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const core_1 = require("@oclif/core");
5
5
  const errors_1 = require("@oclif/core/lib/errors");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const core_1 = require("@oclif/core");
5
5
  const errors_1 = require("@oclif/core/lib/errors");
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- // Copyright IBM Corp. 2020, 2023
3
+ // Copyright IBM Corp. 2020, 2024
4
4
  const core_1 = require("@oclif/core");
5
5
  const chalk = require("chalk");
6
6
  const fs = require("fs");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const core_1 = require("@oclif/core");
5
5
  const errors_1 = require("@oclif/core/lib/errors");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const core_1 = require("@oclif/core");
5
5
  const errors_1 = require("@oclif/core/lib/errors");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const core_1 = require("@oclif/core");
5
5
  const errors_1 = require("@oclif/core/lib/errors");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const core_1 = require("@oclif/core");
5
5
  const workspace_1 = require("../shared/workspace");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const core_1 = require("@oclif/core");
5
5
  const transpiler_1 = require("@stepzen/transpiler");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const chalk = require("chalk");
5
5
  const debug = require("debug");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.getServiceInstanceForDomain = void 0;
5
5
  // This file contains the code for the `stepzen login` command.
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  // This file contains the code for the `stepzen logout` command.
5
5
  // The logout command removes the entry in the login file.
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  // This file contains the code for the `stepzen request` command.
5
5
  // The request command sends a GraphQL request to the StepZen endpoint
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const core_1 = require("@oclif/core");
5
5
  const errors_1 = require("@oclif/core/lib/errors");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const chalk = require("chalk");
5
5
  const chokidar = require("chokidar");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const chalk = require("chalk");
5
5
  const core_1 = require("@oclif/core");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  // This file contains the code for the `stepzen upload` command.
5
5
  // The upload command transfers resources on your local file system
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const chalk = require("chalk");
5
5
  const core_1 = require("@oclif/core");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const core_1 = require("@oclif/core");
5
5
  const chalk = require("chalk");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.makeDuplicateParamsMessage = exports.compileParameterList = exports.curl2sdl = void 0;
5
5
  const chalk = require("chalk");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.ImportFlags = void 0;
5
5
  const core_1 = require("@oclif/core");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.graphql2sdl = void 0;
5
5
  const constants_1 = require("../shared/constants");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.parseHeaderFlags = exports.writeSdlAndConfig = exports.queryIntrospectionService = void 0;
5
5
  const errors_1 = require("@oclif/core/lib/errors");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.ImportCommandBase = void 0;
5
5
  const core_1 = require("@oclif/core");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.openapi2sdl = void 0;
5
5
  const constants_1 = require("../shared/constants");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.ImportQuestions = void 0;
5
5
  const chalk = require("chalk");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.sql2sdl = void 0;
5
5
  const constants_1 = require("../shared/constants");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const core_1 = require("@oclif/core");
5
5
  const zen_command_1 = require("../../shared/zen-command");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.maybeCheckForUpdates = exports.checkForDockerUpdate = exports.checkForNpmUpdate = exports.shouldCheckForUpdates = exports.compareMajorVersions = void 0;
5
5
  const chalk = require("chalk");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const path = require("path");
5
5
  const debug = require("debug");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const fs = require("fs");
5
5
  const path = require("path");
package/lib/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.run = void 0;
5
5
  var core_1 = require("@oclif/core");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.upload = exports.list = exports.deploy = void 0;
5
5
  const configuration_1 = require("./configuration");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.getStepZenDockerImage = exports.fetchCurrentDockerImageInfo = exports.removeCredentialsAndServiceFromConfigFile = exports.writeCredentialsAndServiceToConfigFile = exports.writeConfiguration = exports.readConfiguration = exports.importConfiguration = exports.ensureValidConfiguration = void 0;
5
5
  // This file contains methods for managing configuration
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.getDBIntrospectionUrl = exports.getIntrospectionUrl = exports.getZenServDomain = exports.getZenServUrl = exports.getZenCtl2Url = exports.getZenCtlUrl = exports.getZenServUrlTemplate = exports.getZenCtlUrlTemplate = exports.getDeploymentType = exports.ENABLE_PRESTO_IMPORT = exports.DETECT_NAME_CONFLICTS = exports.STEPZEN_DISCORD_URL = exports.STEPZEN_AUTODB_DSN = exports.STEPZEN_AUTODB_PASSWORD = exports.STEPZEN_AUTODB_USER = exports.STEPZEN_AUTODB_DATABASE = exports.STEPZEN_AUTODB_IMAGE = exports.STEPZEN_AUTODB_CONTAINER_NAME = exports.STEPZEN_CONTAINER_NAME = exports.STEPZEN_CONTAINER_NETWORK = exports.DEFAULT_STEPZEN_DOCKER_TAG = exports.DEFAULT_STEPZEN_DOCKER_IMAGE = exports.DEFAULT_STEPZEN_DBINTROSPECTION_SERVER_URL = exports.DEFAULT_STEPZEN_JSON2SDL_SERVER_URL = exports.DBINTROSPECTION_URL_PATH = exports.INTROSPECTION_URL_PATH = exports.ZENCTL2_PUBLIC_ACCOUNT_URL = exports.ZENCTL2_URL = exports.ADMIN_ACCOUNT_URL = exports.ADMIN_UPLOAD_URL = exports.ADMIN_LIST_URL = exports.ADMIN_DEPLOY_URL = exports.DEFAULT_STEPZEN_SERVER_URL = exports.STEPZEN_HISTORY_FILE = exports.STEPZEN_HISTORY_DIRECTORY = exports.STEPZEN_LOCAL_CONFIG_FILE = exports.DEFAULT_STEPZEN_DEPLOYMENT_TYPE = exports.STEPZEN_CONFIG_FILE = exports.STEPZEN_LAST_UPDATE_CHECK_TIMESTAMP = exports.STEPZEN_CONFIG_DIRECTORY = void 0;
5
5
  // This file contains constants and all magic strings
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.parseCurlArgv = void 0;
5
5
  const constants_1 = require("./constants");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.getDockerImageVersions = exports.getGarDockerImageDigest = exports.getGarManifestUrl = exports.getLocalDockerImageDigest = exports.exec = void 0;
5
5
  const chalk = require("chalk");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.UPGRADE_CHECK_ERROR = exports.PERMANENT_STEPZEN_ERROR = exports.formatTemporaryErrorMessage = void 0;
5
5
  const constants_1 = require("./constants");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.makeHeaders = exports.parseHeaderParam = void 0;
5
5
  const chalk = require("chalk");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.parseHeader = exports.HEADER_REGEX = void 0;
5
5
  // Based on the definition of a `token` at
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.overrideDefaults = exports.prompt = exports.writeLastAnswers = exports.clearHistoryKey = exports.historyKey = void 0;
4
- // Copyright IBM Corp. 2020, 2023
4
+ // Copyright IBM Corp. 2020, 2024
5
5
  const crypto = require("crypto");
6
6
  const debug = require("debug");
7
7
  const fs = require("fs");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.getRandomDescriptor = exports.getRandomAnimal = void 0;
5
5
  const lodash_1 = require("lodash");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.parsePathParamsPattern = exports.formatPatternDiffWithPath = void 0;
5
5
  const chalk = require("chalk");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.parseRequestVariables = exports.parseVariableValue = void 0;
5
5
  const chalk = require("chalk");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.rmtemp = void 0;
5
5
  const fs = require("fs");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.tryZenCtl2ThenZenCtl1 = exports.hasSdkInterfaceV2 = exports.getSdkInterfaceV1 = exports.getStepzen2SDK = exports.getStepzen1SDK = void 0;
5
5
  const errors_1 = require("@oclif/core/lib/errors");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.getPortFromUrl = exports.isLocalhost = exports.parseHost = exports.appendPathnameIfEmpty = void 0;
5
5
  const errors_1 = require("@oclif/core/lib/errors");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.probeEndpoint = exports.getTimeout = exports.prependEachLine = exports.rewriteLocalhostToHostGatewayInURL = exports.rewriteLocalhostToHostGateway = exports.maskPasswordInDsn = exports.parseSnowflakeAccountId = exports.formatEndpointInfo = exports.hasWebDashboard = exports.getFeatureFlag = exports.maskStepZenKey = exports.validateEndpoint = exports.getStepZenExtensions = exports.workspaceRelative = exports.homeRelative = exports.getDirectory = void 0;
5
5
  const errors_1 = require("@oclif/core/lib/errors");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.validateSchema = exports.validateConfigurationset = void 0;
5
5
  const errors_1 = require("@oclif/core/lib/errors");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.initWorkspace = exports.getWorkspace = exports.guessSchemaRoot = exports.generateWorkspaceName = exports.validateWorkspaceName = void 0;
5
5
  const errors_1 = require("@oclif/core/lib/errors");
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- // Copyright IBM Corp. 2020, 2023
2
+ // Copyright IBM Corp. 2020, 2024
3
3
  var _a;
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
5
  exports.ZenCommand = void 0;
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.34.0-beta.6",
2
+ "version": "0.34.0-experimental.1a30182",
3
3
  "commands": {
4
4
  "delete": {
5
5
  "id": "delete",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "stepzen",
3
3
  "description": "The StepZen CLI",
4
- "version": "0.34.0-beta.6",
4
+ "version": "0.34.0-experimental.1a30182",
5
5
  "license": "MIT",
6
6
  "author": "Darren Waddell <darren@stepzen.com>",
7
7
  "contributors": [
@@ -30,10 +30,10 @@
30
30
  "@oclif/plugin-help": "5.2.4",
31
31
  "@oclif/plugin-version": "1.2.1",
32
32
  "@soluble/dsn-parser": "^1.7.5",
33
- "@stepzen/fetch": "0.34.0-beta.6",
34
- "@stepzen/graphiql-proxy": "0.34.0-beta.6",
35
- "@stepzen/sdk": "0.34.0-beta.6",
36
- "@stepzen/transpiler": "0.34.0-beta.6",
33
+ "@stepzen/fetch": "0.34.0-experimental.1a30182",
34
+ "@stepzen/graphiql-proxy": "0.34.0-experimental.1a30182",
35
+ "@stepzen/sdk": "0.34.0-experimental.1a30182",
36
+ "@stepzen/transpiler": "0.34.0-experimental.1a30182",
37
37
  "chalk": "^4.1.2",
38
38
  "chokidar": "^3.5.3",
39
39
  "compare-versions": "^5.0.3",
@@ -143,5 +143,5 @@
143
143
  }
144
144
  }
145
145
  },
146
- "gitHead": "4698d6408ecb1a661eec518c692b9e04cb7d844a"
146
+ "gitHead": "1a301828f696c57b545f166296036cdce30cd97d"
147
147
  }