@osdk/cli 0.24.2-beta.2 → 0.24.2

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 (40) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/build/browser/{chunk-LX6TVWKQ.js → chunk-3J7TN5BV.js} +3 -3
  3. package/build/browser/{chunk-LX6TVWKQ.js.map → chunk-3J7TN5BV.js.map} +1 -1
  4. package/build/{esm/handleGenerate-BYKD4FQH.js → browser/handleGenerate-FRYQNME6.js} +290 -267
  5. package/build/browser/handleGenerate-FRYQNME6.js.map +1 -0
  6. package/build/browser/index.js +22 -11
  7. package/build/browser/index.js.map +1 -1
  8. package/build/browser/{siteDeployCommand-ZAJT2N4Q.js → siteDeployCommand-AWCT7E2D.js} +3 -3
  9. package/build/browser/{siteDeployCommand-ZAJT2N4Q.js.map → siteDeployCommand-AWCT7E2D.js.map} +1 -1
  10. package/build/browser/{versionDeleteCommand-FAPLHQDP.js → versionDeleteCommand-E26A27RI.js} +3 -3
  11. package/build/browser/{versionDeleteCommand-FAPLHQDP.js.map → versionDeleteCommand-E26A27RI.js.map} +1 -1
  12. package/build/{esm/versionGetCommand-C745GXKF.js → browser/versionGetCommand-CJ6LQCQ3.js} +3 -3
  13. package/build/browser/{versionGetCommand-C745GXKF.js.map → versionGetCommand-CJ6LQCQ3.js.map} +1 -1
  14. package/build/{esm/versionListCommand-TTBR4UKO.js → browser/versionListCommand-SKKEM3IX.js} +3 -3
  15. package/build/browser/{versionListCommand-TTBR4UKO.js.map → versionListCommand-SKKEM3IX.js.map} +1 -1
  16. package/build/{esm/versionSetCommand-S4GBWVYA.js → browser/versionSetCommand-RT74GY73.js} +3 -3
  17. package/build/browser/{versionSetCommand-S4GBWVYA.js.map → versionSetCommand-RT74GY73.js.map} +1 -1
  18. package/build/browser/{versionUnsetCommand-4U5FZ7PH.js → versionUnsetCommand-KEXKQTCY.js} +3 -3
  19. package/build/browser/{versionUnsetCommand-4U5FZ7PH.js.map → versionUnsetCommand-KEXKQTCY.js.map} +1 -1
  20. package/build/esm/{chunk-LX6TVWKQ.js → chunk-3J7TN5BV.js} +3 -3
  21. package/build/esm/{chunk-LX6TVWKQ.js.map → chunk-3J7TN5BV.js.map} +1 -1
  22. package/build/{browser/handleGenerate-BYKD4FQH.js → esm/handleGenerate-FRYQNME6.js} +290 -267
  23. package/build/esm/handleGenerate-FRYQNME6.js.map +1 -0
  24. package/build/esm/index.js +22 -11
  25. package/build/esm/index.js.map +1 -1
  26. package/build/esm/{siteDeployCommand-ZAJT2N4Q.js → siteDeployCommand-AWCT7E2D.js} +3 -3
  27. package/build/esm/{siteDeployCommand-ZAJT2N4Q.js.map → siteDeployCommand-AWCT7E2D.js.map} +1 -1
  28. package/build/esm/{versionDeleteCommand-FAPLHQDP.js → versionDeleteCommand-E26A27RI.js} +3 -3
  29. package/build/esm/{versionDeleteCommand-FAPLHQDP.js.map → versionDeleteCommand-E26A27RI.js.map} +1 -1
  30. package/build/{browser/versionGetCommand-C745GXKF.js → esm/versionGetCommand-CJ6LQCQ3.js} +3 -3
  31. package/build/esm/{versionGetCommand-C745GXKF.js.map → versionGetCommand-CJ6LQCQ3.js.map} +1 -1
  32. package/build/{browser/versionListCommand-TTBR4UKO.js → esm/versionListCommand-SKKEM3IX.js} +3 -3
  33. package/build/esm/{versionListCommand-TTBR4UKO.js.map → versionListCommand-SKKEM3IX.js.map} +1 -1
  34. package/build/{browser/versionSetCommand-S4GBWVYA.js → esm/versionSetCommand-RT74GY73.js} +3 -3
  35. package/build/esm/{versionSetCommand-S4GBWVYA.js.map → versionSetCommand-RT74GY73.js.map} +1 -1
  36. package/build/esm/{versionUnsetCommand-4U5FZ7PH.js → versionUnsetCommand-KEXKQTCY.js} +3 -3
  37. package/build/esm/{versionUnsetCommand-4U5FZ7PH.js.map → versionUnsetCommand-KEXKQTCY.js.map} +1 -1
  38. package/package.json +4 -4
  39. package/build/browser/handleGenerate-BYKD4FQH.js.map +0 -1
  40. package/build/esm/handleGenerate-BYKD4FQH.js.map +0 -1
@@ -91,10 +91,21 @@ var generateCommand = {
91
91
  type: "boolean",
92
92
  default: false
93
93
  },
94
- ontologyApiNamespace: {
95
- type: "string"
94
+ externalObjects: {
95
+ type: "string",
96
+ coerce: (value) => {
97
+ const map = /* @__PURE__ */ new Map();
98
+ if (value) {
99
+ for (const entry of value.split(",")) {
100
+ const [api, ns] = entry.split(":");
101
+ map.set(api, ns);
102
+ }
103
+ }
104
+ return map;
105
+ },
106
+ default: ""
96
107
  },
97
- apiNamespaceMap: {
108
+ externalInterfaces: {
98
109
  type: "string",
99
110
  coerce: (value) => {
100
111
  const map = /* @__PURE__ */ new Map();
@@ -125,7 +136,7 @@ var generateCommand = {
125
136
  });
126
137
  },
127
138
  handler: async (args) => {
128
- const command10 = await import('./handleGenerate-BYKD4FQH.js');
139
+ const command10 = await import('./handleGenerate-FRYQNME6.js');
129
140
  await command10.handleGenerate(args);
130
141
  }
131
142
  };
@@ -369,7 +380,7 @@ var command2 = {
369
380
  }).middleware((args) => logDeployCommandConfigFileOverride(args, siteConfig));
370
381
  },
371
382
  handler: async (args) => {
372
- const command10 = await import('./siteDeployCommand-ZAJT2N4Q.js');
383
+ const command10 = await import('./siteDeployCommand-AWCT7E2D.js');
373
384
  const {
374
385
  version,
375
386
  autoVersion,
@@ -419,7 +430,7 @@ var command3 = {
419
430
  }).group(["yes"], "Delete Options");
420
431
  },
421
432
  handler: async (args) => {
422
- const command10 = await import('./versionDeleteCommand-FAPLHQDP.js');
433
+ const command10 = await import('./versionDeleteCommand-E26A27RI.js');
423
434
  await command10.default(args);
424
435
  }
425
436
  };
@@ -434,7 +445,7 @@ var command4 = {
434
445
  return argv;
435
446
  },
436
447
  handler: async (args) => {
437
- const command10 = await import('./versionGetCommand-C745GXKF.js');
448
+ const command10 = await import('./versionGetCommand-CJ6LQCQ3.js');
438
449
  await command10.default(args);
439
450
  }
440
451
  };
@@ -449,7 +460,7 @@ var command5 = {
449
460
  return argv;
450
461
  },
451
462
  handler: async (args) => {
452
- const command10 = await import('./versionListCommand-TTBR4UKO.js');
463
+ const command10 = await import('./versionListCommand-SKKEM3IX.js');
453
464
  await command10.default(args);
454
465
  }
455
466
  };
@@ -468,7 +479,7 @@ var command6 = {
468
479
  });
469
480
  },
470
481
  handler: async (args) => {
471
- const command10 = await import('./versionSetCommand-S4GBWVYA.js');
482
+ const command10 = await import('./versionSetCommand-RT74GY73.js');
472
483
  await command10.default(args);
473
484
  }
474
485
  };
@@ -487,7 +498,7 @@ var command7 = {
487
498
  }).group(["yes"], "Unset Options");
488
499
  },
489
500
  handler: async (args) => {
490
- const command10 = await import('./versionUnsetCommand-4U5FZ7PH.js');
501
+ const command10 = await import('./versionUnsetCommand-KEXKQTCY.js');
491
502
  await command10.default(args);
492
503
  }
493
504
  };
@@ -572,7 +583,7 @@ async function logConfigFileMiddleware() {
572
583
 
573
584
  // src/cli.ts
574
585
  async function cli2(args = process.argv) {
575
- consola.info(`Palantir OSDK CLI ${"0.24.2-beta.2"}
586
+ consola.info(`Palantir OSDK CLI ${"0.24.2"}
576
587
  `);
577
588
  const base = getYargsBase(args);
578
589
  try {
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/index.ts","../../src/cli.ts","../../../cli.cmd.typescript/build/esm/index.js","../../../cli.cmd.typescript/build/esm/cli.js","../../../cli.cmd.typescript/build/esm/generate/generate.js","../../../cli.cmd.typescript/build/esm/typescriptCommand.js","../../src/commands/auth/index.ts","../../src/commands/auth/login/index.ts","../../src/commands/site/index.ts","../../src/util/configLoader.ts","../../src/util/config.ts","../../src/commands/site/deploy/index.ts","../../src/commands/site/deploy/logDeployCommandConfigFileOverride.ts","../../src/commands/site/logSiteCommandConfigFileOverride.ts","../../src/commands/site/version/index.ts","../../src/commands/site/version/delete/index.ts","../../src/commands/site/version/get/index.ts","../../src/commands/site/version/list/index.ts","../../src/commands/site/version/set/index.ts","../../src/commands/site/version/unset/index.ts","../../src/yargs/logConfigFileMiddleware.ts"],"names":["command","fsPromises","consola","autoVersion","application","foundryUrl","cli"],"mappings":"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","file":"index.js","sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport { cli } from \"./cli.js\";","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport typescript from \"@osdk/cli.cmd.typescript\";\nimport { ExitProcessError, getYargsBase } from \"@osdk/cli.common\";\nimport { consola } from \"consola\";\nimport auth from \"./commands/auth/index.js\";\nimport site from \"./commands/site/index.js\";\nimport { logConfigFileMiddleware } from \"./yargs/logConfigFileMiddleware.js\";\nexport async function cli(args = process.argv) {\n consola.info(`Palantir OSDK CLI ${process.env.PACKAGE_VERSION}\\n`);\n const base = getYargsBase(args);\n\n // Special handling where failures happen before yargs does its error handling within .fail\n try {\n return await base.middleware(logConfigFileMiddleware).command(site).command({\n command: \"unstable\",\n aliases: [\"experimental\"],\n describe: \"Unstable commands\",\n builder: async argv => {\n return argv.command(typescript).command(auth).demandCommand();\n },\n handler: _args => {}\n }).parseAsync();\n } catch (err) {\n if (err instanceof ExitProcessError) {\n consola.error(err);\n }\n }\n}","/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport { cli } from \"./cli.js\";\nexport { typescriptCommand as default } from \"./typescriptCommand.js\";","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { ExitProcessError, getYargsBase } from \"@osdk/cli.common\";\nimport { consola } from \"consola\";\nimport { generateCommand } from \"./generate/generate.js\";\nexport async function cli(args = process.argv) {\n consola.info(`Palantir OSDK CLI ${\"0.6.2-beta.2\"}\\n`);\n const base = getYargsBase(args);\n // Special handling where failures happen before yargs does its error handling within .fail\n try {\n return await base.command(generateCommand).parseAsync();\n } catch (err) {\n if (err instanceof ExitProcessError) {\n consola.error(err);\n }\n }\n}","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { isValidSemver, YargsCheckError } from \"@osdk/cli.common\";\nexport const generateCommand = {\n command: \"generate\",\n describe: \"Generate TypeScript SDK from ontology\",\n builder: argv => {\n return argv.options({\n outDir: {\n type: \"string\",\n description: \"Where to place the generated files\",\n demandOption: true\n },\n ontologyPath: {\n description: \"Path to the ontology wire json\",\n type: \"string\",\n demandOption: false,\n conflicts: [\"foundryUrl\", \"clientId\"]\n },\n foundryUrl: {\n description: \"URL for the foundry stack that contains the ontology\",\n type: \"string\",\n demandOption: false,\n conflicts: \"ontologyPath\",\n implies: \"clientId\",\n alias: \"stack\" // for backwards compatibility\n },\n clientId: {\n description: \"OAuth client ID for application\",\n type: \"string\",\n demandOption: false,\n conflicts: \"ontologyPath\",\n implies: \"foundryUrl\"\n },\n ontologyRid: {\n description: \"Limit requests to this ontology rid only\",\n type: \"string\",\n demandOption: false\n },\n ontologyWritePath: {\n description: \"Path to write the ontology wire json\",\n type: \"string\",\n demandOption: false,\n conflicts: [\"ontologyPath\"]\n },\n beta: {\n type: \"boolean\",\n description: \"Should generate beta sdk\",\n demandOption: false\n },\n packageType: {\n default: \"commonjs\",\n choices: [\"commonjs\", \"module\"]\n },\n version: {\n type: \"string\",\n description: \"Version of the generated code, or 'dev'\",\n demandOption: true\n },\n packageName: {\n type: \"string\",\n description: \"Name of the package to generate\"\n },\n asPackage: {\n type: \"boolean\",\n description: \"Generate as a package (makes a package.json and co)\"\n },\n clean: {\n type: \"boolean\",\n description: \"Clean the output directory before generating\"\n },\n internal: {\n type: \"boolean\",\n default: false\n },\n ontologyApiNamespace: {\n type: \"string\"\n },\n apiNamespaceMap: {\n type: \"string\",\n coerce: value => {\n const map = new Map();\n if (value) {\n for (const entry of value.split(\",\")) {\n const [api, ns] = entry.split(\":\");\n map.set(api, ns);\n }\n }\n return map;\n },\n default: \"\"\n }\n }).group([\"ontologyPath\", \"outDir\", \"version\"], \"Generate from a local file\").group([\"foundryUrl\", \"clientId\", \"outDir\", \"ontologyWritePath\", \"version\"], \"OR Generate from Foundry\").group([\"packageName\", \"as\"], \"Package generation options\").check(args => {\n if (!args.ontologyPath && !args.foundryUrl) {\n throw new YargsCheckError(\"Must specify either ontologyPath or foundryUrl and clientId\");\n }\n if (args.version !== \"dev\" && !isValidSemver(args.version)) {\n throw new YargsCheckError(\"Version must be 'dev' or a valid semver version\");\n }\n if (args.asPackage && !args.packageName) {\n throw new YargsCheckError(\"Must specify packageName when generating as a package\");\n }\n if (args.asPackage && !args.version) {\n throw new YargsCheckError(\"Must specify version when generating as a package\");\n }\n return true;\n });\n },\n handler: async args => {\n const command = await import(\"./handleGenerate.mjs\");\n await command.handleGenerate(args);\n }\n};","/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { generateCommand } from \"./generate/generate.js\";\nexport const typescriptCommand = {\n command: \"typescript\",\n describe: \"Manage code\",\n builder: argv => {\n return argv.command(generateCommand).demandCommand();\n },\n handler: async () => {}\n};","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport login from \"./login/index.js\";\nconst auth = {\n command: \"auth\",\n describe: \"Manage your session\",\n builder: argv => {\n return argv.options({\n foundryUrl: {\n type: \"string\",\n demandOption: true,\n alias: \"baseUrl\",\n // for backwards compatibility\n describe: \"URL for the Foundry stack\"\n }\n }).command(login).demandCommand();\n },\n handler: async args => {}\n};\nexport default auth;","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport const command = {\n command: \"login\",\n describe: \"Authenticate with an application ID\",\n builder: argv => {\n return argv.option(\"clientId\", {\n alias: \"applicationId\",\n // for backwards compatibility\n type: \"string\",\n demandOption: true,\n describe: \"OAuth client ID for application\"\n });\n },\n handler: async args => {\n const command = await import(\"@osdk/cli.common/loginFlow\");\n await command.default(args);\n }\n};\nexport default command;","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { YargsCheckError } from \"@osdk/cli.common\";\nimport configLoader from \"../../util/configLoader.js\";\nimport deploy from \"./deploy/index.js\";\nimport { logSiteCommandConfigFileOverride } from \"./logSiteCommandConfigFileOverride.js\";\nimport version from \"./version/index.js\";\nconst command = {\n command: \"site\",\n describe: \"Manage your site\",\n builder: async argv => {\n const config = await configLoader();\n const application = config?.foundryConfig.site.application;\n const foundryUrl = config?.foundryConfig.foundryUrl;\n return argv.options({\n application: {\n type: \"string\",\n coerce: application => application,\n ...(application ? {\n default: application\n } : {\n demandOption: true\n }),\n description: \"Application resource identifier (rid)\"\n },\n foundryUrl: {\n coerce: foundryUrl => foundryUrl.replace(/\\/$/, \"\"),\n type: \"string\",\n ...(foundryUrl ? {\n default: foundryUrl\n } : {\n demandOption: true\n }),\n description: \"URL for the Foundry stack\"\n },\n token: {\n type: \"string\",\n conflicts: \"tokenFile\",\n description: \"Foundry API token\"\n },\n tokenFile: {\n type: \"string\",\n conflicts: \"token\",\n description: \"Path to file containing Foundry API token\"\n }\n }).group([\"application\", \"foundryUrl\", \"token\", \"tokenFile\"], \"Common Options\").command(version).command(deploy).check(args => {\n if (!args.foundryUrl.startsWith(\"https://\")) {\n throw new YargsCheckError(\"foundryUrl must start with https://\");\n }\n return true;\n }).middleware(args => logSiteCommandConfigFileOverride(args, config?.foundryConfig)).demandCommand();\n },\n handler: async args => {}\n};\nexport default command;","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { loadFoundryConfig } from \"./config.js\";\nlet configPromise = undefined;\nfunction getConfig() {\n if (configPromise == null) {\n configPromise = loadFoundryConfig();\n }\n return configPromise;\n}\nexport default getConfig;","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ExitProcessError } from \"@osdk/cli.common\";\nimport { promises as fsPromises } from \"node:fs\";\nimport { extname } from \"node:path\";\nconst CONFIG_FILE_NAMES = [\"foundry.config.json\"];\nconst CONFIG_FILE_SCHEMA = {\n type: \"object\",\n properties: {\n foundryUrl: {\n type: \"string\"\n },\n site: {\n type: \"object\",\n properties: {\n application: {\n type: \"string\"\n },\n directory: {\n type: \"string\"\n },\n autoVersion: {\n type: \"object\",\n nullable: true,\n oneOf: [{\n properties: {\n type: {\n const: \"git-describe\",\n type: \"string\"\n },\n tagPrefix: {\n type: \"string\",\n nullable: true\n }\n }\n }],\n required: [\"type\"]\n }\n },\n required: [\"application\", \"directory\"]\n }\n },\n required: [\"foundryUrl\", \"site\"],\n additionalProperties: false\n};\n\n/**\n * Asynchronously loads a configuration file. Looks for any of the CONFIG_FILE_NAMES in the current directory going up to the root directory.\n * @returns A promise that resolves to the configuration JSON object, or undefined if not found.\n * @throws Will throw an error if the configuration file is found but cannot be read or parsed.\n */\nexport async function loadFoundryConfig() {\n const ajvModule = await import(\"ajv\");\n const Ajv = ajvModule.default.default; // https://github.com/ajv-validator/ajv/issues/2132\n const ajv = new Ajv({\n allErrors: true\n });\n const validate = ajv.compile(CONFIG_FILE_SCHEMA);\n const {\n findUp\n } = await import(\"find-up\");\n const configFilePath = await findUp(CONFIG_FILE_NAMES);\n if (configFilePath) {\n let foundryConfig;\n try {\n const fileContent = await fsPromises.readFile(configFilePath, \"utf-8\");\n foundryConfig = parseConfigFile(fileContent, configFilePath);\n } catch (error) {\n throw new ExitProcessError(2, `Couldn't read or parse config file ${configFilePath}. Error: ${error}`);\n }\n if (!validate(foundryConfig)) {\n throw new ExitProcessError(2, `The configuration file does not match the expected schema: ${ajv.errorsText(validate.errors)}`);\n }\n return {\n foundryConfig,\n configFilePath\n };\n }\n return undefined;\n}\nfunction parseConfigFile(fileContent, configFilePath) {\n const extension = extname(configFilePath);\n switch (extension) {\n case \".json\":\n return JSON.parse(fileContent);\n default:\n throw new ExitProcessError(2, `Unsupported file extension: ${extension} for config file.`);\n }\n}","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { isValidSemver, YargsCheckError } from \"@osdk/cli.common\";\nimport configLoader from \"../../../util/configLoader.js\";\nimport { logDeployCommandConfigFileOverride } from \"./logDeployCommandConfigFileOverride.js\";\nconst command = {\n command: \"deploy\",\n describe: \"Deploy a new site version\",\n builder: async argv => {\n const config = await configLoader();\n const siteConfig = config?.foundryConfig.site;\n const directory = siteConfig?.directory;\n const autoVersion = siteConfig?.autoVersion;\n const gitTagPrefix = autoVersion?.tagPrefix;\n return argv.options({\n directory: {\n type: \"string\",\n description: \"Directory containing site files\",\n ...(directory ? {\n default: directory\n } : {\n demandOption: true\n })\n },\n uploadOnly: {\n type: \"boolean\",\n description: \"Upload new site version only without setting as live\",\n default: false\n },\n version: {\n type: \"string\",\n description: \"New version of site to deploy\",\n ...(autoVersion == null ? {\n conflicts: \"autoVersion\"\n } : {})\n },\n autoVersion: {\n coerce: autoVersion => autoVersion,\n type: \"string\",\n choices: [\"git-describe\"],\n description: \"Enable auto versioning\",\n ...(autoVersion != null ? {\n default: autoVersion.type\n } : {\n conflicts: \"version\"\n })\n },\n gitTagPrefix: {\n type: \"string\",\n description: \"Prefix to match git tags on when 'git-describe' auto versioning is used. If not provided, all tags are matched and the prefix 'v' is stripped if present.\",\n ...(gitTagPrefix ? {\n default: gitTagPrefix\n } : {})\n }\n }).group([\"directory\", \"version\", \"uploadOnly\"], \"Deploy Options\").group([\"autoVersion\", \"gitTagPrefix\"], \"Auto Version Options\").check(args => {\n // This is required because we can't use demandOption with conflicts. conflicts protects us against the case where both are provided.\n // So this case is for when nothing is provided.\n if (autoVersion == null && args.autoVersion == null && args.version == null) {\n throw new YargsCheckError(\"One of --version or --autoVersion must be specified\");\n }\n if (args.version != null && !isValidSemver(args.version)) {\n throw new YargsCheckError(`--version \"${args.version}\" must be a valid SemVer string`);\n }\n const autoVersionType = args.autoVersion ?? autoVersion;\n if (autoVersionType !== \"git-describe\") {\n throw new YargsCheckError(`Only 'git-describe' is supported for autoVersion`);\n }\n const gitTagPrefixValue = args.gitTagPrefix ?? gitTagPrefix;\n // Future proofing for when we support other autoVersion types\n if (gitTagPrefixValue != null && autoVersionType !== \"git-describe\") {\n throw new YargsCheckError(`--gitTagPrefix is only supported when --autoVersion=git-describe`);\n }\n return true;\n }).middleware(args => logDeployCommandConfigFileOverride(args, siteConfig));\n },\n handler: async args => {\n const command = await import(\"./siteDeployCommand.mjs\");\n const {\n version,\n autoVersion,\n gitTagPrefix,\n ...restArgs\n } = args;\n const selectedVersion = args.version != null ? args.version : {\n type: args.autoVersion,\n tagPrefix: args.gitTagPrefix\n };\n await command.default({\n ...restArgs,\n selectedVersion\n });\n }\n};\nexport default command;","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { consola } from \"consola\";\nexport async function logDeployCommandConfigFileOverride(args, config) {\n if (config?.autoVersion != null && args.autoVersion !== config?.autoVersion.type) {\n consola.debug(`Overriding \"autoVersion\" from config file with ${args.autoVersion}`);\n }\n if (config?.directory != null && args.directory !== config?.directory) {\n consola.debug(`Overriding \"directory\" from config file with ${args.directory}`);\n }\n if (config?.autoVersion?.tagPrefix != null && args.gitTagPrefix != null && args.gitTagPrefix !== config?.autoVersion.tagPrefix) {\n consola.debug(`Overriding \"gitTagPrefix\" from config file with ${args.gitTagPrefix}`);\n }\n}","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { consola } from \"consola\";\nexport async function logSiteCommandConfigFileOverride(args, config) {\n if (config?.site.application != null && args.application !== config.site.application) {\n consola.debug(`Overriding \"application\" from config file with ${args.application}`);\n }\n if (config?.foundryUrl != null && args.foundryUrl !== config.foundryUrl) {\n consola.debug(`Overriding \"foundryUrl\" from config file with ${args.foundryUrl}`);\n }\n}","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport deleteCmd from \"./delete/index.js\";\nimport get from \"./get/index.js\";\nimport list from \"./list/index.js\";\nimport set from \"./set/index.js\";\nimport unset from \"./unset/index.js\";\nconst command = {\n command: \"version\",\n describe: \"Manage site versions\",\n builder: argv => {\n return argv.command(list).command(get).command(set).command(unset).command(deleteCmd).demandCommand();\n },\n handler: async args => {}\n};\nexport default command;","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nconst command = {\n command: \"delete <version>\",\n describe: \"Delete site version\",\n builder: argv => {\n return argv.positional(\"version\", {\n type: \"string\",\n demandOption: true,\n description: \"Version to set as live\"\n }).option(\"yes\", {\n alias: \"y\",\n type: \"boolean\",\n description: \"Automatically confirm destructive changes\"\n }).group([\"yes\"], \"Delete Options\");\n },\n handler: async args => {\n const command = await import(\"./versionDeleteCommand.mjs\");\n await command.default(args);\n }\n};\nexport default command;","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nconst command = {\n command: \"get\",\n describe: \"Get live site version\",\n builder: argv => {\n return argv;\n },\n handler: async args => {\n const command = await import(\"./versionGetCommand.mjs\");\n await command.default(args);\n }\n};\nexport default command;","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nconst command = {\n command: \"list\",\n describe: \"List site versions\",\n builder: argv => {\n return argv;\n },\n handler: async args => {\n const command = await import(\"./versionListCommand.mjs\");\n await command.default(args);\n }\n};\nexport default command;","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nconst command = {\n command: \"set <version>\",\n describe: \"Set live site version\",\n builder: argv => {\n return argv.positional(\"version\", {\n type: \"string\",\n demandOption: true,\n description: \"Version to set as live\"\n });\n },\n handler: async args => {\n const command = await import(\"./versionSetCommand.mjs\");\n await command.default(args);\n }\n};\nexport default command;","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nconst command = {\n command: \"unset\",\n describe: \"Clear live site version\",\n builder: argv => {\n return argv.option(\"yes\", {\n alias: \"y\",\n type: \"boolean\",\n description: \"Automatically confirm destructive changes\"\n }).group([\"yes\"], \"Unset Options\");\n },\n handler: async args => {\n const command = await import(\"./versionUnsetCommand.mjs\");\n await command.default(args);\n }\n};\nexport default command;","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { consola } from \"consola\";\nimport getConfig from \"../util/configLoader.js\";\nlet firstTime = true;\nexport async function logConfigFileMiddleware() {\n if (firstTime) {\n firstTime = false;\n const config = getConfig();\n const configFilePath = (await config)?.configFilePath;\n if (configFilePath) {\n consola.debug(`Using configuration from file: \"${configFilePath}\"`);\n }\n }\n}"]}
1
+ {"version":3,"sources":["../../src/index.ts","../../src/cli.ts","../../../cli.cmd.typescript/build/esm/index.js","../../../cli.cmd.typescript/build/esm/cli.js","../../../cli.cmd.typescript/build/esm/generate/generate.js","../../../cli.cmd.typescript/build/esm/typescriptCommand.js","../../src/commands/auth/index.ts","../../src/commands/auth/login/index.ts","../../src/commands/site/index.ts","../../src/util/configLoader.ts","../../src/util/config.ts","../../src/commands/site/deploy/index.ts","../../src/commands/site/deploy/logDeployCommandConfigFileOverride.ts","../../src/commands/site/logSiteCommandConfigFileOverride.ts","../../src/commands/site/version/index.ts","../../src/commands/site/version/delete/index.ts","../../src/commands/site/version/get/index.ts","../../src/commands/site/version/list/index.ts","../../src/commands/site/version/set/index.ts","../../src/commands/site/version/unset/index.ts","../../src/yargs/logConfigFileMiddleware.ts"],"names":["command","fsPromises","consola","autoVersion","application","foundryUrl","cli"],"mappings":"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","file":"index.js","sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport { cli } from \"./cli.js\";","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport typescript from \"@osdk/cli.cmd.typescript\";\nimport { ExitProcessError, getYargsBase } from \"@osdk/cli.common\";\nimport { consola } from \"consola\";\nimport auth from \"./commands/auth/index.js\";\nimport site from \"./commands/site/index.js\";\nimport { logConfigFileMiddleware } from \"./yargs/logConfigFileMiddleware.js\";\nexport async function cli(args = process.argv) {\n consola.info(`Palantir OSDK CLI ${process.env.PACKAGE_VERSION}\\n`);\n const base = getYargsBase(args);\n\n // Special handling where failures happen before yargs does its error handling within .fail\n try {\n return await base.middleware(logConfigFileMiddleware).command(site).command({\n command: \"unstable\",\n aliases: [\"experimental\"],\n describe: \"Unstable commands\",\n builder: async argv => {\n return argv.command(typescript).command(auth).demandCommand();\n },\n handler: _args => {}\n }).parseAsync();\n } catch (err) {\n if (err instanceof ExitProcessError) {\n consola.error(err);\n }\n }\n}","/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport { cli } from \"./cli.js\";\nexport { typescriptCommand as default } from \"./typescriptCommand.js\";","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { ExitProcessError, getYargsBase } from \"@osdk/cli.common\";\nimport { consola } from \"consola\";\nimport { generateCommand } from \"./generate/generate.js\";\nexport async function cli(args = process.argv) {\n consola.info(`Palantir OSDK CLI ${\"0.6.2\"}\\n`);\n const base = getYargsBase(args);\n // Special handling where failures happen before yargs does its error handling within .fail\n try {\n return await base.command(generateCommand).parseAsync();\n } catch (err) {\n if (err instanceof ExitProcessError) {\n consola.error(err);\n }\n }\n}","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { isValidSemver, YargsCheckError } from \"@osdk/cli.common\";\nexport const generateCommand = {\n command: \"generate\",\n describe: \"Generate TypeScript SDK from ontology\",\n builder: argv => {\n return argv.options({\n outDir: {\n type: \"string\",\n description: \"Where to place the generated files\",\n demandOption: true\n },\n ontologyPath: {\n description: \"Path to the ontology wire json\",\n type: \"string\",\n demandOption: false,\n conflicts: [\"foundryUrl\", \"clientId\"]\n },\n foundryUrl: {\n description: \"URL for the foundry stack that contains the ontology\",\n type: \"string\",\n demandOption: false,\n conflicts: \"ontologyPath\",\n implies: \"clientId\",\n alias: \"stack\" // for backwards compatibility\n },\n clientId: {\n description: \"OAuth client ID for application\",\n type: \"string\",\n demandOption: false,\n conflicts: \"ontologyPath\",\n implies: \"foundryUrl\"\n },\n ontologyRid: {\n description: \"Limit requests to this ontology rid only\",\n type: \"string\",\n demandOption: false\n },\n ontologyWritePath: {\n description: \"Path to write the ontology wire json\",\n type: \"string\",\n demandOption: false,\n conflicts: [\"ontologyPath\"]\n },\n beta: {\n type: \"boolean\",\n description: \"Should generate beta sdk\",\n demandOption: false\n },\n packageType: {\n default: \"commonjs\",\n choices: [\"commonjs\", \"module\"]\n },\n version: {\n type: \"string\",\n description: \"Version of the generated code, or 'dev'\",\n demandOption: true\n },\n packageName: {\n type: \"string\",\n description: \"Name of the package to generate\"\n },\n asPackage: {\n type: \"boolean\",\n description: \"Generate as a package (makes a package.json and co)\"\n },\n clean: {\n type: \"boolean\",\n description: \"Clean the output directory before generating\"\n },\n internal: {\n type: \"boolean\",\n default: false\n },\n externalObjects: {\n type: \"string\",\n coerce: value => {\n const map = new Map();\n if (value) {\n for (const entry of value.split(\",\")) {\n const [api, ns] = entry.split(\":\");\n map.set(api, ns);\n }\n }\n return map;\n },\n default: \"\"\n },\n externalInterfaces: {\n type: \"string\",\n coerce: value => {\n const map = new Map();\n if (value) {\n for (const entry of value.split(\",\")) {\n const [api, ns] = entry.split(\":\");\n map.set(api, ns);\n }\n }\n return map;\n },\n default: \"\"\n }\n }).group([\"ontologyPath\", \"outDir\", \"version\"], \"Generate from a local file\").group([\"foundryUrl\", \"clientId\", \"outDir\", \"ontologyWritePath\", \"version\"], \"OR Generate from Foundry\").group([\"packageName\", \"as\"], \"Package generation options\").check(args => {\n if (!args.ontologyPath && !args.foundryUrl) {\n throw new YargsCheckError(\"Must specify either ontologyPath or foundryUrl and clientId\");\n }\n if (args.version !== \"dev\" && !isValidSemver(args.version)) {\n throw new YargsCheckError(\"Version must be 'dev' or a valid semver version\");\n }\n if (args.asPackage && !args.packageName) {\n throw new YargsCheckError(\"Must specify packageName when generating as a package\");\n }\n if (args.asPackage && !args.version) {\n throw new YargsCheckError(\"Must specify version when generating as a package\");\n }\n return true;\n });\n },\n handler: async args => {\n const command = await import(\"./handleGenerate.mjs\");\n await command.handleGenerate(args);\n }\n};","/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { generateCommand } from \"./generate/generate.js\";\nexport const typescriptCommand = {\n command: \"typescript\",\n describe: \"Manage code\",\n builder: argv => {\n return argv.command(generateCommand).demandCommand();\n },\n handler: async () => {}\n};","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport login from \"./login/index.js\";\nconst auth = {\n command: \"auth\",\n describe: \"Manage your session\",\n builder: argv => {\n return argv.options({\n foundryUrl: {\n type: \"string\",\n demandOption: true,\n alias: \"baseUrl\",\n // for backwards compatibility\n describe: \"URL for the Foundry stack\"\n }\n }).command(login).demandCommand();\n },\n handler: async args => {}\n};\nexport default auth;","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport const command = {\n command: \"login\",\n describe: \"Authenticate with an application ID\",\n builder: argv => {\n return argv.option(\"clientId\", {\n alias: \"applicationId\",\n // for backwards compatibility\n type: \"string\",\n demandOption: true,\n describe: \"OAuth client ID for application\"\n });\n },\n handler: async args => {\n const command = await import(\"@osdk/cli.common/loginFlow\");\n await command.default(args);\n }\n};\nexport default command;","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { YargsCheckError } from \"@osdk/cli.common\";\nimport configLoader from \"../../util/configLoader.js\";\nimport deploy from \"./deploy/index.js\";\nimport { logSiteCommandConfigFileOverride } from \"./logSiteCommandConfigFileOverride.js\";\nimport version from \"./version/index.js\";\nconst command = {\n command: \"site\",\n describe: \"Manage your site\",\n builder: async argv => {\n const config = await configLoader();\n const application = config?.foundryConfig.site.application;\n const foundryUrl = config?.foundryConfig.foundryUrl;\n return argv.options({\n application: {\n type: \"string\",\n coerce: application => application,\n ...(application ? {\n default: application\n } : {\n demandOption: true\n }),\n description: \"Application resource identifier (rid)\"\n },\n foundryUrl: {\n coerce: foundryUrl => foundryUrl.replace(/\\/$/, \"\"),\n type: \"string\",\n ...(foundryUrl ? {\n default: foundryUrl\n } : {\n demandOption: true\n }),\n description: \"URL for the Foundry stack\"\n },\n token: {\n type: \"string\",\n conflicts: \"tokenFile\",\n description: \"Foundry API token\"\n },\n tokenFile: {\n type: \"string\",\n conflicts: \"token\",\n description: \"Path to file containing Foundry API token\"\n }\n }).group([\"application\", \"foundryUrl\", \"token\", \"tokenFile\"], \"Common Options\").command(version).command(deploy).check(args => {\n if (!args.foundryUrl.startsWith(\"https://\")) {\n throw new YargsCheckError(\"foundryUrl must start with https://\");\n }\n return true;\n }).middleware(args => logSiteCommandConfigFileOverride(args, config?.foundryConfig)).demandCommand();\n },\n handler: async args => {}\n};\nexport default command;","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { loadFoundryConfig } from \"./config.js\";\nlet configPromise = undefined;\nfunction getConfig() {\n if (configPromise == null) {\n configPromise = loadFoundryConfig();\n }\n return configPromise;\n}\nexport default getConfig;","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ExitProcessError } from \"@osdk/cli.common\";\nimport { promises as fsPromises } from \"node:fs\";\nimport { extname } from \"node:path\";\nconst CONFIG_FILE_NAMES = [\"foundry.config.json\"];\nconst CONFIG_FILE_SCHEMA = {\n type: \"object\",\n properties: {\n foundryUrl: {\n type: \"string\"\n },\n site: {\n type: \"object\",\n properties: {\n application: {\n type: \"string\"\n },\n directory: {\n type: \"string\"\n },\n autoVersion: {\n type: \"object\",\n nullable: true,\n oneOf: [{\n properties: {\n type: {\n const: \"git-describe\",\n type: \"string\"\n },\n tagPrefix: {\n type: \"string\",\n nullable: true\n }\n }\n }],\n required: [\"type\"]\n }\n },\n required: [\"application\", \"directory\"]\n }\n },\n required: [\"foundryUrl\", \"site\"],\n additionalProperties: false\n};\n\n/**\n * Asynchronously loads a configuration file. Looks for any of the CONFIG_FILE_NAMES in the current directory going up to the root directory.\n * @returns A promise that resolves to the configuration JSON object, or undefined if not found.\n * @throws Will throw an error if the configuration file is found but cannot be read or parsed.\n */\nexport async function loadFoundryConfig() {\n const ajvModule = await import(\"ajv\");\n const Ajv = ajvModule.default.default; // https://github.com/ajv-validator/ajv/issues/2132\n const ajv = new Ajv({\n allErrors: true\n });\n const validate = ajv.compile(CONFIG_FILE_SCHEMA);\n const {\n findUp\n } = await import(\"find-up\");\n const configFilePath = await findUp(CONFIG_FILE_NAMES);\n if (configFilePath) {\n let foundryConfig;\n try {\n const fileContent = await fsPromises.readFile(configFilePath, \"utf-8\");\n foundryConfig = parseConfigFile(fileContent, configFilePath);\n } catch (error) {\n throw new ExitProcessError(2, `Couldn't read or parse config file ${configFilePath}. Error: ${error}`);\n }\n if (!validate(foundryConfig)) {\n throw new ExitProcessError(2, `The configuration file does not match the expected schema: ${ajv.errorsText(validate.errors)}`);\n }\n return {\n foundryConfig,\n configFilePath\n };\n }\n return undefined;\n}\nfunction parseConfigFile(fileContent, configFilePath) {\n const extension = extname(configFilePath);\n switch (extension) {\n case \".json\":\n return JSON.parse(fileContent);\n default:\n throw new ExitProcessError(2, `Unsupported file extension: ${extension} for config file.`);\n }\n}","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { isValidSemver, YargsCheckError } from \"@osdk/cli.common\";\nimport configLoader from \"../../../util/configLoader.js\";\nimport { logDeployCommandConfigFileOverride } from \"./logDeployCommandConfigFileOverride.js\";\nconst command = {\n command: \"deploy\",\n describe: \"Deploy a new site version\",\n builder: async argv => {\n const config = await configLoader();\n const siteConfig = config?.foundryConfig.site;\n const directory = siteConfig?.directory;\n const autoVersion = siteConfig?.autoVersion;\n const gitTagPrefix = autoVersion?.tagPrefix;\n return argv.options({\n directory: {\n type: \"string\",\n description: \"Directory containing site files\",\n ...(directory ? {\n default: directory\n } : {\n demandOption: true\n })\n },\n uploadOnly: {\n type: \"boolean\",\n description: \"Upload new site version only without setting as live\",\n default: false\n },\n version: {\n type: \"string\",\n description: \"New version of site to deploy\",\n ...(autoVersion == null ? {\n conflicts: \"autoVersion\"\n } : {})\n },\n autoVersion: {\n coerce: autoVersion => autoVersion,\n type: \"string\",\n choices: [\"git-describe\"],\n description: \"Enable auto versioning\",\n ...(autoVersion != null ? {\n default: autoVersion.type\n } : {\n conflicts: \"version\"\n })\n },\n gitTagPrefix: {\n type: \"string\",\n description: \"Prefix to match git tags on when 'git-describe' auto versioning is used. If not provided, all tags are matched and the prefix 'v' is stripped if present.\",\n ...(gitTagPrefix ? {\n default: gitTagPrefix\n } : {})\n }\n }).group([\"directory\", \"version\", \"uploadOnly\"], \"Deploy Options\").group([\"autoVersion\", \"gitTagPrefix\"], \"Auto Version Options\").check(args => {\n // This is required because we can't use demandOption with conflicts. conflicts protects us against the case where both are provided.\n // So this case is for when nothing is provided.\n if (autoVersion == null && args.autoVersion == null && args.version == null) {\n throw new YargsCheckError(\"One of --version or --autoVersion must be specified\");\n }\n if (args.version != null && !isValidSemver(args.version)) {\n throw new YargsCheckError(`--version \"${args.version}\" must be a valid SemVer string`);\n }\n const autoVersionType = args.autoVersion ?? autoVersion;\n if (autoVersionType !== \"git-describe\") {\n throw new YargsCheckError(`Only 'git-describe' is supported for autoVersion`);\n }\n const gitTagPrefixValue = args.gitTagPrefix ?? gitTagPrefix;\n // Future proofing for when we support other autoVersion types\n if (gitTagPrefixValue != null && autoVersionType !== \"git-describe\") {\n throw new YargsCheckError(`--gitTagPrefix is only supported when --autoVersion=git-describe`);\n }\n return true;\n }).middleware(args => logDeployCommandConfigFileOverride(args, siteConfig));\n },\n handler: async args => {\n const command = await import(\"./siteDeployCommand.mjs\");\n const {\n version,\n autoVersion,\n gitTagPrefix,\n ...restArgs\n } = args;\n const selectedVersion = args.version != null ? args.version : {\n type: args.autoVersion,\n tagPrefix: args.gitTagPrefix\n };\n await command.default({\n ...restArgs,\n selectedVersion\n });\n }\n};\nexport default command;","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { consola } from \"consola\";\nexport async function logDeployCommandConfigFileOverride(args, config) {\n if (config?.autoVersion != null && args.autoVersion !== config?.autoVersion.type) {\n consola.debug(`Overriding \"autoVersion\" from config file with ${args.autoVersion}`);\n }\n if (config?.directory != null && args.directory !== config?.directory) {\n consola.debug(`Overriding \"directory\" from config file with ${args.directory}`);\n }\n if (config?.autoVersion?.tagPrefix != null && args.gitTagPrefix != null && args.gitTagPrefix !== config?.autoVersion.tagPrefix) {\n consola.debug(`Overriding \"gitTagPrefix\" from config file with ${args.gitTagPrefix}`);\n }\n}","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { consola } from \"consola\";\nexport async function logSiteCommandConfigFileOverride(args, config) {\n if (config?.site.application != null && args.application !== config.site.application) {\n consola.debug(`Overriding \"application\" from config file with ${args.application}`);\n }\n if (config?.foundryUrl != null && args.foundryUrl !== config.foundryUrl) {\n consola.debug(`Overriding \"foundryUrl\" from config file with ${args.foundryUrl}`);\n }\n}","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport deleteCmd from \"./delete/index.js\";\nimport get from \"./get/index.js\";\nimport list from \"./list/index.js\";\nimport set from \"./set/index.js\";\nimport unset from \"./unset/index.js\";\nconst command = {\n command: \"version\",\n describe: \"Manage site versions\",\n builder: argv => {\n return argv.command(list).command(get).command(set).command(unset).command(deleteCmd).demandCommand();\n },\n handler: async args => {}\n};\nexport default command;","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nconst command = {\n command: \"delete <version>\",\n describe: \"Delete site version\",\n builder: argv => {\n return argv.positional(\"version\", {\n type: \"string\",\n demandOption: true,\n description: \"Version to set as live\"\n }).option(\"yes\", {\n alias: \"y\",\n type: \"boolean\",\n description: \"Automatically confirm destructive changes\"\n }).group([\"yes\"], \"Delete Options\");\n },\n handler: async args => {\n const command = await import(\"./versionDeleteCommand.mjs\");\n await command.default(args);\n }\n};\nexport default command;","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nconst command = {\n command: \"get\",\n describe: \"Get live site version\",\n builder: argv => {\n return argv;\n },\n handler: async args => {\n const command = await import(\"./versionGetCommand.mjs\");\n await command.default(args);\n }\n};\nexport default command;","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nconst command = {\n command: \"list\",\n describe: \"List site versions\",\n builder: argv => {\n return argv;\n },\n handler: async args => {\n const command = await import(\"./versionListCommand.mjs\");\n await command.default(args);\n }\n};\nexport default command;","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nconst command = {\n command: \"set <version>\",\n describe: \"Set live site version\",\n builder: argv => {\n return argv.positional(\"version\", {\n type: \"string\",\n demandOption: true,\n description: \"Version to set as live\"\n });\n },\n handler: async args => {\n const command = await import(\"./versionSetCommand.mjs\");\n await command.default(args);\n }\n};\nexport default command;","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nconst command = {\n command: \"unset\",\n describe: \"Clear live site version\",\n builder: argv => {\n return argv.option(\"yes\", {\n alias: \"y\",\n type: \"boolean\",\n description: \"Automatically confirm destructive changes\"\n }).group([\"yes\"], \"Unset Options\");\n },\n handler: async args => {\n const command = await import(\"./versionUnsetCommand.mjs\");\n await command.default(args);\n }\n};\nexport default command;","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { consola } from \"consola\";\nimport getConfig from \"../util/configLoader.js\";\nlet firstTime = true;\nexport async function logConfigFileMiddleware() {\n if (firstTime) {\n firstTime = false;\n const config = getConfig();\n const configFilePath = (await config)?.configFilePath;\n if (configFilePath) {\n consola.debug(`Using configuration from file: \"${configFilePath}\"`);\n }\n }\n}"]}
@@ -1,4 +1,4 @@
1
- import { loadToken, createInternalClientContext, third_party_applications_exports } from './chunk-LX6TVWKQ.js';
1
+ import { loadToken, createInternalClientContext, third_party_applications_exports } from './chunk-3J7TN5BV.js';
2
2
  import './chunk-WZFTMUBP.js';
3
3
  import { ExitProcessError, isValidSemver } from './chunk-Q2H7XAS4.js';
4
4
  import { init_esm_shims } from './chunk-DAYFZSC6.js';
@@ -137,5 +137,5 @@ ${colorize("green", link)}`,
137
137
  }
138
138
 
139
139
  export { siteDeployCommand as default };
140
- //# sourceMappingURL=siteDeployCommand-ZAJT2N4Q.js.map
141
- //# sourceMappingURL=siteDeployCommand-ZAJT2N4Q.js.map
140
+ //# sourceMappingURL=siteDeployCommand-AWCT7E2D.js.map
141
+ //# sourceMappingURL=siteDeployCommand-AWCT7E2D.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/commands/site/deploy/siteDeployCommand.mts","../../src/util/autoVersion.ts"],"names":[],"mappings":"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","file":"siteDeployCommand-ZAJT2N4Q.js","sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { consola } from \"consola\";\nimport { createInternalClientContext, thirdPartyApplications } from \"#net\";\nimport { ExitProcessError } from \"@osdk/cli.common\";\nimport archiver from \"archiver\";\nimport { colorize } from \"consola/utils\";\nimport * as fs from \"node:fs\";\nimport path from \"node:path\";\nimport { Readable } from \"node:stream\";\nimport { autoVersion as findAutoVersion } from \"../../../util/autoVersion.js\";\nimport { loadToken } from \"../../../util/token.js\";\nexport default async function siteDeployCommand({\n selectedVersion,\n application,\n foundryUrl,\n uploadOnly,\n directory,\n token,\n tokenFile\n}) {\n const loadedToken = await loadToken(token, tokenFile);\n const tokenProvider = () => loadedToken;\n const clientCtx = createInternalClientContext(foundryUrl, tokenProvider);\n let siteVersion;\n if (typeof selectedVersion === \"string\") {\n siteVersion = selectedVersion;\n } else {\n siteVersion = await findAutoVersion(selectedVersion.tagPrefix);\n consola.info(`Auto version inferred next version to be: ${siteVersion}`);\n }\n consola.debug(`Using directory for site files: \"${path.resolve(directory)}`);\n const stat = await fs.promises.stat(directory);\n if (!stat.isDirectory()) {\n throw new ExitProcessError(2, \"Specified path exists but is not a directory\");\n }\n consola.start(\"Zipping site files\");\n const archive = archiver(\"zip\").directory(directory, false);\n logArchiveStats(archive);\n consola.start(\"Uploading site files\");\n await Promise.all([thirdPartyApplications.uploadVersion(clientCtx, application, siteVersion, Readable.toWeb(archive) // This cast is because the dom fetch doesn't align type wise with streams\n ), archive.finalize()]);\n consola.success(\"Upload complete\");\n if (!uploadOnly) {\n const website = await thirdPartyApplications.deployWebsite(clientCtx, application, {\n version: siteVersion\n });\n consola.success(`Deployed ${siteVersion} successfully`);\n const domain = website.subdomains[0];\n if (domain != null) {\n logSiteLink(\"View live site:\", `https://${domain}`);\n }\n } else {\n const website = await thirdPartyApplications.getWebsite(clientCtx, application);\n const domain = website?.subdomains[0];\n consola.debug(\"Upload only mode enabled, skipping deployment\");\n if (domain != null) {\n logSiteLink(\"Preview link:\", `https://${domain}/.system/preview?previewVersion=${siteVersion}`);\n }\n }\n}\nfunction logArchiveStats(archive) {\n let archiveStats = {\n fileCount: 0,\n bytes: 0\n };\n archive.on(\"progress\", progress => {\n archiveStats = {\n fileCount: progress.entries.total,\n bytes: progress.fs.totalBytes\n };\n });\n archive.on(\"finish\", () => {\n consola.debug(`Zipped ${archiveStats.fileCount} files and ${archiveStats.bytes} bytes`);\n });\n}\nfunction logSiteLink(title, link) {\n consola.box({\n message: `${title}\\n\\n${colorize(\"green\", link)}`,\n style: {\n padding: 2,\n borderColor: \"green\",\n borderStyle: \"rounded\"\n }\n });\n}","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ExitProcessError, isValidSemver } from \"@osdk/cli.common\";\nimport { exec } from \"node:child_process\";\nimport { promisify } from \"node:util\";\n\n/**\n * Gets the version string using git describe. If the @param tagPrefix is empty, git describe will return the\n * latest tag (without any filtering) and if the tag starts with \"v\", it will be removed.\n * @param tagPrefix The prefix to use for matching against tags. Defaults to an empty string.\n * @returns A promise that resolves to the version string.\n * @throws An error if the version string is not SemVer compliant or if the version cannot be determined.\n */\nexport async function autoVersion(tagPrefix = \"\") {\n const [matchPrefix, prefixRegex] = tagPrefix !== \"\" ? [tagPrefix, new RegExp(`^${tagPrefix}`)] : [undefined, new RegExp(`^v?`)];\n const gitVersion = await gitDescribe(matchPrefix);\n const version = gitVersion.trim().replace(prefixRegex, \"\");\n if (!isValidSemver(version)) {\n throw new ExitProcessError(2, `The version string ${version} is not SemVer compliant.`);\n }\n return version;\n}\nasync function gitDescribe(matchPrefix) {\n let gitVersion;\n try {\n const execAsync = promisify(exec);\n const {\n stdout\n } = await execAsync(`git describe --tags --first-parent --dirty${matchPrefix != null ? ` --match=\"${matchPrefix}*\"` : \"\"}`, {\n encoding: \"utf8\"\n });\n gitVersion = stdout;\n } catch (error) {\n if (error instanceof Error) {\n const errorMessage = error.message.toLowerCase();\n if (errorMessage.includes(\"not recognized\") || errorMessage.includes(\"command not found\") || errorMessage.includes(\"no such file or directory\")) {\n throw new ExitProcessError(2, \"Unable to determine auto version using git-describe as git is not installed or found in the PATH.\", `You can set up git and try again or supply a --version option to set the version manually`);\n }\n if (errorMessage.includes(\"fatal: not a git repository\")) {\n throw new ExitProcessError(2, `Unable to determine auto version using git-describe as the current directory is not a git repository.`, `You can run the command in a git repository and try again or supply a --version option to set the version manually`);\n }\n if (errorMessage.includes(\"fatal: no names found, cannot describe anything.\")) {\n throw new ExitProcessError(2, `Unable to determine auto version using git-describe as no matching tags were found.`, `You can create a tag matching the configured tag prefix and try again or supply a --version option to set the version manually`);\n }\n }\n throw new ExitProcessError(2, `Unable to determine auto version using git-describe: ${error}.`, `You can supply a --version option to set the version manually`);\n }\n return gitVersion;\n}"]}
1
+ {"version":3,"sources":["../../src/commands/site/deploy/siteDeployCommand.mts","../../src/util/autoVersion.ts"],"names":[],"mappings":"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","file":"siteDeployCommand-AWCT7E2D.js","sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { consola } from \"consola\";\nimport { createInternalClientContext, thirdPartyApplications } from \"#net\";\nimport { ExitProcessError } from \"@osdk/cli.common\";\nimport archiver from \"archiver\";\nimport { colorize } from \"consola/utils\";\nimport * as fs from \"node:fs\";\nimport path from \"node:path\";\nimport { Readable } from \"node:stream\";\nimport { autoVersion as findAutoVersion } from \"../../../util/autoVersion.js\";\nimport { loadToken } from \"../../../util/token.js\";\nexport default async function siteDeployCommand({\n selectedVersion,\n application,\n foundryUrl,\n uploadOnly,\n directory,\n token,\n tokenFile\n}) {\n const loadedToken = await loadToken(token, tokenFile);\n const tokenProvider = () => loadedToken;\n const clientCtx = createInternalClientContext(foundryUrl, tokenProvider);\n let siteVersion;\n if (typeof selectedVersion === \"string\") {\n siteVersion = selectedVersion;\n } else {\n siteVersion = await findAutoVersion(selectedVersion.tagPrefix);\n consola.info(`Auto version inferred next version to be: ${siteVersion}`);\n }\n consola.debug(`Using directory for site files: \"${path.resolve(directory)}`);\n const stat = await fs.promises.stat(directory);\n if (!stat.isDirectory()) {\n throw new ExitProcessError(2, \"Specified path exists but is not a directory\");\n }\n consola.start(\"Zipping site files\");\n const archive = archiver(\"zip\").directory(directory, false);\n logArchiveStats(archive);\n consola.start(\"Uploading site files\");\n await Promise.all([thirdPartyApplications.uploadVersion(clientCtx, application, siteVersion, Readable.toWeb(archive) // This cast is because the dom fetch doesn't align type wise with streams\n ), archive.finalize()]);\n consola.success(\"Upload complete\");\n if (!uploadOnly) {\n const website = await thirdPartyApplications.deployWebsite(clientCtx, application, {\n version: siteVersion\n });\n consola.success(`Deployed ${siteVersion} successfully`);\n const domain = website.subdomains[0];\n if (domain != null) {\n logSiteLink(\"View live site:\", `https://${domain}`);\n }\n } else {\n const website = await thirdPartyApplications.getWebsite(clientCtx, application);\n const domain = website?.subdomains[0];\n consola.debug(\"Upload only mode enabled, skipping deployment\");\n if (domain != null) {\n logSiteLink(\"Preview link:\", `https://${domain}/.system/preview?previewVersion=${siteVersion}`);\n }\n }\n}\nfunction logArchiveStats(archive) {\n let archiveStats = {\n fileCount: 0,\n bytes: 0\n };\n archive.on(\"progress\", progress => {\n archiveStats = {\n fileCount: progress.entries.total,\n bytes: progress.fs.totalBytes\n };\n });\n archive.on(\"finish\", () => {\n consola.debug(`Zipped ${archiveStats.fileCount} files and ${archiveStats.bytes} bytes`);\n });\n}\nfunction logSiteLink(title, link) {\n consola.box({\n message: `${title}\\n\\n${colorize(\"green\", link)}`,\n style: {\n padding: 2,\n borderColor: \"green\",\n borderStyle: \"rounded\"\n }\n });\n}","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ExitProcessError, isValidSemver } from \"@osdk/cli.common\";\nimport { exec } from \"node:child_process\";\nimport { promisify } from \"node:util\";\n\n/**\n * Gets the version string using git describe. If the @param tagPrefix is empty, git describe will return the\n * latest tag (without any filtering) and if the tag starts with \"v\", it will be removed.\n * @param tagPrefix The prefix to use for matching against tags. Defaults to an empty string.\n * @returns A promise that resolves to the version string.\n * @throws An error if the version string is not SemVer compliant or if the version cannot be determined.\n */\nexport async function autoVersion(tagPrefix = \"\") {\n const [matchPrefix, prefixRegex] = tagPrefix !== \"\" ? [tagPrefix, new RegExp(`^${tagPrefix}`)] : [undefined, new RegExp(`^v?`)];\n const gitVersion = await gitDescribe(matchPrefix);\n const version = gitVersion.trim().replace(prefixRegex, \"\");\n if (!isValidSemver(version)) {\n throw new ExitProcessError(2, `The version string ${version} is not SemVer compliant.`);\n }\n return version;\n}\nasync function gitDescribe(matchPrefix) {\n let gitVersion;\n try {\n const execAsync = promisify(exec);\n const {\n stdout\n } = await execAsync(`git describe --tags --first-parent --dirty${matchPrefix != null ? ` --match=\"${matchPrefix}*\"` : \"\"}`, {\n encoding: \"utf8\"\n });\n gitVersion = stdout;\n } catch (error) {\n if (error instanceof Error) {\n const errorMessage = error.message.toLowerCase();\n if (errorMessage.includes(\"not recognized\") || errorMessage.includes(\"command not found\") || errorMessage.includes(\"no such file or directory\")) {\n throw new ExitProcessError(2, \"Unable to determine auto version using git-describe as git is not installed or found in the PATH.\", `You can set up git and try again or supply a --version option to set the version manually`);\n }\n if (errorMessage.includes(\"fatal: not a git repository\")) {\n throw new ExitProcessError(2, `Unable to determine auto version using git-describe as the current directory is not a git repository.`, `You can run the command in a git repository and try again or supply a --version option to set the version manually`);\n }\n if (errorMessage.includes(\"fatal: no names found, cannot describe anything.\")) {\n throw new ExitProcessError(2, `Unable to determine auto version using git-describe as no matching tags were found.`, `You can create a tag matching the configured tag prefix and try again or supply a --version option to set the version manually`);\n }\n }\n throw new ExitProcessError(2, `Unable to determine auto version using git-describe: ${error}.`, `You can supply a --version option to set the version manually`);\n }\n return gitVersion;\n}"]}
@@ -1,5 +1,5 @@
1
1
  import { handlePromptCancel } from './chunk-5AQYUXAY.js';
2
- import { loadToken, createInternalClientContext, third_party_applications_exports } from './chunk-LX6TVWKQ.js';
2
+ import { loadToken, createInternalClientContext, third_party_applications_exports } from './chunk-3J7TN5BV.js';
3
3
  import './chunk-WZFTMUBP.js';
4
4
  import './chunk-Q2H7XAS4.js';
5
5
  import { init_esm_shims } from './chunk-DAYFZSC6.js';
@@ -32,5 +32,5 @@ ${colorize("bold", "This action cannot be undone.")}`, {
32
32
  }
33
33
 
34
34
  export { versionDeleteCommand as default };
35
- //# sourceMappingURL=versionDeleteCommand-FAPLHQDP.js.map
36
- //# sourceMappingURL=versionDeleteCommand-FAPLHQDP.js.map
35
+ //# sourceMappingURL=versionDeleteCommand-E26A27RI.js.map
36
+ //# sourceMappingURL=versionDeleteCommand-E26A27RI.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/commands/site/version/delete/versionDeleteCommand.mts"],"names":[],"mappings":";;;;;;;;;AAAA,cAAA,EAAA,CAAA;AAqBA,eAAO,oBAA4C,CAAA;AAAA,EACjD,OAAA;AAAA,EACA,GAAA;AAAA,EACA,WAAA;AAAA,EACA,UAAA;AAAA,EACA,KAAA;AAAA,EACA,SAAA;AACF,CAAG,EAAA;AACD,EAAA,IAAI,CAAC,GAAK,EAAA;AACR,IAAA,MAAM,SAAY,GAAA,MAAM,OAAQ,CAAA,MAAA,CAAO,+CAA+C,OAAO,CAAA;AAAA,EAAM,QAAS,CAAA,MAAA,EAAQ,+BAA+B,CAAC,CAAI,CAAA,EAAA;AAAA,MACtJ,IAAM,EAAA,SAAA;AAAA,KACP,CAAA,CAAA;AACD,IAAA,kBAAA,CAAmB,SAAS,CAAA,CAAA;AAAA,GAC9B;AACA,EAAQ,OAAA,CAAA,KAAA,CAAM,CAAoB,iBAAA,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AAC3C,EAAA,MAAM,WAAc,GAAA,MAAM,SAAU,CAAA,KAAA,EAAO,SAAS,CAAA,CAAA;AACpD,EAAA,MAAM,gBAAgB,MAAM,WAAA,CAAA;AAC5B,EAAM,MAAA,SAAA,GAAY,2BAA4B,CAAA,UAAA,EAAY,aAAa,CAAA,CAAA;AACvE,EAAA,MAAM,gCAAuB,CAAA,aAAA,CAAc,SAAW,EAAA,WAAA,EAAa,OAAO,CAAA,CAAA;AAC1E,EAAQ,OAAA,CAAA,OAAA,CAAQ,CAAmB,gBAAA,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AAC9C","file":"versionDeleteCommand-FAPLHQDP.js","sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createInternalClientContext, thirdPartyApplications } from \"#net\";\nimport { consola } from \"consola\";\nimport { colorize } from \"consola/utils\";\nimport { handlePromptCancel } from \"../../../../consola/handlePromptCancel.js\";\nimport { loadToken } from \"../../../../util/token.js\";\nexport default async function versionDeleteCommand({\n version,\n yes,\n application,\n foundryUrl,\n token,\n tokenFile\n}) {\n if (!yes) {\n const confirmed = await consola.prompt(`Are you sure you want to delete the version ${version}?\\n${colorize(\"bold\", \"This action cannot be undone.\")}`, {\n type: \"confirm\"\n });\n handlePromptCancel(confirmed);\n }\n consola.start(`Deleting version ${version}`);\n const loadedToken = await loadToken(token, tokenFile);\n const tokenProvider = () => loadedToken;\n const clientCtx = createInternalClientContext(foundryUrl, tokenProvider);\n await thirdPartyApplications.deleteVersion(clientCtx, application, version);\n consola.success(`Deleted version ${version}`);\n}"]}
1
+ {"version":3,"sources":["../../src/commands/site/version/delete/versionDeleteCommand.mts"],"names":[],"mappings":";;;;;;;;;AAAA,cAAA,EAAA,CAAA;AAqBA,eAAO,oBAA4C,CAAA;AAAA,EACjD,OAAA;AAAA,EACA,GAAA;AAAA,EACA,WAAA;AAAA,EACA,UAAA;AAAA,EACA,KAAA;AAAA,EACA,SAAA;AACF,CAAG,EAAA;AACD,EAAA,IAAI,CAAC,GAAK,EAAA;AACR,IAAA,MAAM,SAAY,GAAA,MAAM,OAAQ,CAAA,MAAA,CAAO,+CAA+C,OAAO,CAAA;AAAA,EAAM,QAAS,CAAA,MAAA,EAAQ,+BAA+B,CAAC,CAAI,CAAA,EAAA;AAAA,MACtJ,IAAM,EAAA,SAAA;AAAA,KACP,CAAA,CAAA;AACD,IAAA,kBAAA,CAAmB,SAAS,CAAA,CAAA;AAAA,GAC9B;AACA,EAAQ,OAAA,CAAA,KAAA,CAAM,CAAoB,iBAAA,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AAC3C,EAAA,MAAM,WAAc,GAAA,MAAM,SAAU,CAAA,KAAA,EAAO,SAAS,CAAA,CAAA;AACpD,EAAA,MAAM,gBAAgB,MAAM,WAAA,CAAA;AAC5B,EAAM,MAAA,SAAA,GAAY,2BAA4B,CAAA,UAAA,EAAY,aAAa,CAAA,CAAA;AACvE,EAAA,MAAM,gCAAuB,CAAA,aAAA,CAAc,SAAW,EAAA,WAAA,EAAa,OAAO,CAAA,CAAA;AAC1E,EAAQ,OAAA,CAAA,OAAA,CAAQ,CAAmB,gBAAA,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AAC9C","file":"versionDeleteCommand-E26A27RI.js","sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createInternalClientContext, thirdPartyApplications } from \"#net\";\nimport { consola } from \"consola\";\nimport { colorize } from \"consola/utils\";\nimport { handlePromptCancel } from \"../../../../consola/handlePromptCancel.js\";\nimport { loadToken } from \"../../../../util/token.js\";\nexport default async function versionDeleteCommand({\n version,\n yes,\n application,\n foundryUrl,\n token,\n tokenFile\n}) {\n if (!yes) {\n const confirmed = await consola.prompt(`Are you sure you want to delete the version ${version}?\\n${colorize(\"bold\", \"This action cannot be undone.\")}`, {\n type: \"confirm\"\n });\n handlePromptCancel(confirmed);\n }\n consola.start(`Deleting version ${version}`);\n const loadedToken = await loadToken(token, tokenFile);\n const tokenProvider = () => loadedToken;\n const clientCtx = createInternalClientContext(foundryUrl, tokenProvider);\n await thirdPartyApplications.deleteVersion(clientCtx, application, version);\n consola.success(`Deleted version ${version}`);\n}"]}
@@ -1,4 +1,4 @@
1
- import { loadToken, createInternalClientContext, third_party_applications_exports } from './chunk-LX6TVWKQ.js';
1
+ import { loadToken, createInternalClientContext, third_party_applications_exports } from './chunk-3J7TN5BV.js';
2
2
  import './chunk-WZFTMUBP.js';
3
3
  import './chunk-Q2H7XAS4.js';
4
4
  import { init_esm_shims } from './chunk-DAYFZSC6.js';
@@ -26,5 +26,5 @@ async function versionGetCommand({
26
26
  }
27
27
 
28
28
  export { versionGetCommand as default };
29
- //# sourceMappingURL=versionGetCommand-C745GXKF.js.map
30
- //# sourceMappingURL=versionGetCommand-C745GXKF.js.map
29
+ //# sourceMappingURL=versionGetCommand-CJ6LQCQ3.js.map
30
+ //# sourceMappingURL=versionGetCommand-CJ6LQCQ3.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/commands/site/version/get/versionGetCommand.mts"],"names":[],"mappings":";;;;;;;AAAA,cAAA,EAAA,CAAA;AAmBA,eAAO,iBAAyC,CAAA;AAAA,EAC9C,UAAA;AAAA,EACA,WAAA;AAAA,EACA,KAAA;AAAA,EACA,SAAA;AACF,CAAG,EAAA;AACD,EAAA,MAAM,WAAc,GAAA,MAAM,SAAU,CAAA,KAAA,EAAO,SAAS,CAAA,CAAA;AACpD,EAAA,MAAM,gBAAgB,MAAM,WAAA,CAAA;AAC5B,EAAM,MAAA,SAAA,GAAY,2BAA4B,CAAA,UAAA,EAAY,aAAa,CAAA,CAAA;AACvE,EAAA,OAAA,CAAQ,MAAM,sBAAsB,CAAA,CAAA;AACpC,EAAA,MAAM,OAAU,GAAA,MAAM,gCAAuB,CAAA,UAAA,CAAW,WAAW,WAAW,CAAA,CAAA;AAC9E,EAAA,MAAM,kBAAkB,OAAS,EAAA,eAAA,CAAA;AACjC,EAAA,IAAI,CAAC,eAAiB,EAAA;AACpB,IAAA,OAAA,CAAQ,KAAK,0BAA0B,CAAA,CAAA;AAAA,GAClC,MAAA;AACL,IAAQ,OAAA,CAAA,OAAA,CAAQ,CAAwB,qBAAA,EAAA,eAAe,CAAE,CAAA,CAAA,CAAA;AAAA,GAC3D;AACF","file":"versionGetCommand-C745GXKF.js","sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createInternalClientContext, thirdPartyApplications } from \"#net\";\nimport { consola } from \"consola\";\nimport { loadToken } from \"../../../../util/token.js\";\nexport default async function versionGetCommand({\n foundryUrl,\n application,\n token,\n tokenFile\n}) {\n const loadedToken = await loadToken(token, tokenFile);\n const tokenProvider = () => loadedToken;\n const clientCtx = createInternalClientContext(foundryUrl, tokenProvider);\n consola.start(\"Getting live version\");\n const website = await thirdPartyApplications.getWebsite(clientCtx, application);\n const deployedVersion = website?.deployedVersion;\n if (!deployedVersion) {\n consola.info(\"No live site version set\");\n } else {\n consola.success(`Live site version is ${deployedVersion}`);\n }\n}"]}
1
+ {"version":3,"sources":["../../src/commands/site/version/get/versionGetCommand.mts"],"names":[],"mappings":";;;;;;;AAAA,cAAA,EAAA,CAAA;AAmBA,eAAO,iBAAyC,CAAA;AAAA,EAC9C,UAAA;AAAA,EACA,WAAA;AAAA,EACA,KAAA;AAAA,EACA,SAAA;AACF,CAAG,EAAA;AACD,EAAA,MAAM,WAAc,GAAA,MAAM,SAAU,CAAA,KAAA,EAAO,SAAS,CAAA,CAAA;AACpD,EAAA,MAAM,gBAAgB,MAAM,WAAA,CAAA;AAC5B,EAAM,MAAA,SAAA,GAAY,2BAA4B,CAAA,UAAA,EAAY,aAAa,CAAA,CAAA;AACvE,EAAA,OAAA,CAAQ,MAAM,sBAAsB,CAAA,CAAA;AACpC,EAAA,MAAM,OAAU,GAAA,MAAM,gCAAuB,CAAA,UAAA,CAAW,WAAW,WAAW,CAAA,CAAA;AAC9E,EAAA,MAAM,kBAAkB,OAAS,EAAA,eAAA,CAAA;AACjC,EAAA,IAAI,CAAC,eAAiB,EAAA;AACpB,IAAA,OAAA,CAAQ,KAAK,0BAA0B,CAAA,CAAA;AAAA,GAClC,MAAA;AACL,IAAQ,OAAA,CAAA,OAAA,CAAQ,CAAwB,qBAAA,EAAA,eAAe,CAAE,CAAA,CAAA,CAAA;AAAA,GAC3D;AACF","file":"versionGetCommand-CJ6LQCQ3.js","sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createInternalClientContext, thirdPartyApplications } from \"#net\";\nimport { consola } from \"consola\";\nimport { loadToken } from \"../../../../util/token.js\";\nexport default async function versionGetCommand({\n foundryUrl,\n application,\n token,\n tokenFile\n}) {\n const loadedToken = await loadToken(token, tokenFile);\n const tokenProvider = () => loadedToken;\n const clientCtx = createInternalClientContext(foundryUrl, tokenProvider);\n consola.start(\"Getting live version\");\n const website = await thirdPartyApplications.getWebsite(clientCtx, application);\n const deployedVersion = website?.deployedVersion;\n if (!deployedVersion) {\n consola.info(\"No live site version set\");\n } else {\n consola.success(`Live site version is ${deployedVersion}`);\n }\n}"]}
@@ -1,4 +1,4 @@
1
- import { loadToken, createInternalClientContext, third_party_applications_exports } from './chunk-LX6TVWKQ.js';
1
+ import { loadToken, createInternalClientContext, third_party_applications_exports } from './chunk-3J7TN5BV.js';
2
2
  import './chunk-WZFTMUBP.js';
3
3
  import './chunk-Q2H7XAS4.js';
4
4
  import { init_esm_shims } from './chunk-DAYFZSC6.js';
@@ -31,5 +31,5 @@ async function versionListCommand({
31
31
  }
32
32
 
33
33
  export { versionListCommand as default };
34
- //# sourceMappingURL=versionListCommand-TTBR4UKO.js.map
35
- //# sourceMappingURL=versionListCommand-TTBR4UKO.js.map
34
+ //# sourceMappingURL=versionListCommand-SKKEM3IX.js.map
35
+ //# sourceMappingURL=versionListCommand-SKKEM3IX.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/commands/site/version/list/versionListCommand.mts"],"names":[],"mappings":";;;;;;;;AAAA,cAAA,EAAA,CAAA;AAoBA,eAAO,kBAA0C,CAAA;AAAA,EAC/C,UAAA;AAAA,EACA,WAAA;AAAA,EACA,KAAA;AAAA,EACA,SAAA;AACF,CAAG,EAAA;AACD,EAAA,MAAM,WAAc,GAAA,MAAM,SAAU,CAAA,KAAA,EAAO,SAAS,CAAA,CAAA;AACpD,EAAA,MAAM,gBAAgB,MAAM,WAAA,CAAA;AAC5B,EAAM,MAAA,SAAA,GAAY,2BAA4B,CAAA,UAAA,EAAY,aAAa,CAAA,CAAA;AACvE,EAAA,OAAA,CAAQ,MAAM,sCAAsC,CAAA,CAAA;AACpD,EAAA,MAAM,CAAC,QAAU,EAAA,OAAO,IAAI,MAAM,OAAA,CAAQ,IAAI,CAAC,gCAAA,CAAuB,YAAa,CAAA,SAAA,EAAW,WAAW,CAAG,EAAA,gCAAA,CAAuB,WAAW,SAAW,EAAA,WAAW,CAAC,CAAC,CAAA,CAAA;AACtK,EAAI,IAAA,QAAA,CAAS,IAAK,CAAA,MAAA,KAAW,CAAG,EAAA;AAC9B,IAAA,OAAA,CAAQ,KAAK,wBAAwB,CAAA,CAAA;AACrC,IAAA,OAAA;AAAA,GACF;AACA,EAAA,OAAA,CAAQ,QAAQ,iBAAiB,CAAA,CAAA;AACjC,EAAM,MAAA,MAAA,GAAS,MAAM,OAAO,QAAQ,CAAA,CAAA;AACpC,EAAA,MAAM,iBAAiB,MAAO,CAAA,KAAA,CAAM,QAAS,CAAA,IAAA,CAAK,IAAI,CAAK,CAAA,KAAA,CAAA,CAAE,OAAO,CAAA,CAAE,OAAO,CAAK,CAAA,KAAA,MAAA,CAAO,KAAM,CAAA,CAAC,CAAC,CAAC,CAAA,CAAA;AAClG,EAAA,KAAA,MAAW,WAAW,cAAgB,EAAA;AACpC,IAAA,OAAA,CAAQ,GAAI,CAAA,CAAA,MAAA,EAAS,OAAO,CAAA,EAAG,SAAS,eAAmB,IAAA,OAAA,KAAY,OAAS,EAAA,eAAA,GAAkB,QAAS,CAAA,OAAA,EAAS,CAAa,WAAA,CAAA,CAAA,GAAI,EAAE,CAAE,CAAA,CAAA,CAAA;AAAA,GAC3I;AACF","file":"versionListCommand-TTBR4UKO.js","sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createInternalClientContext, thirdPartyApplications } from \"#net\";\nimport { consola } from \"consola\";\nimport { colorize } from \"consola/utils\";\nimport { loadToken } from \"../../../../util/token.js\";\nexport default async function versionListCommand({\n foundryUrl,\n application,\n token,\n tokenFile\n}) {\n const loadedToken = await loadToken(token, tokenFile);\n const tokenProvider = () => loadedToken;\n const clientCtx = createInternalClientContext(foundryUrl, tokenProvider);\n consola.start(\"Fetching versions & deployed version\");\n const [versions, website] = await Promise.all([thirdPartyApplications.listVersions(clientCtx, application), thirdPartyApplications.getWebsite(clientCtx, application)]);\n if (versions.data.length === 0) {\n consola.info(\"No site versions found\");\n return;\n }\n consola.success(\"Found versions:\");\n const semver = await import(\"semver\");\n const sortedVersions = semver.rsort(versions.data.map(v => v.version).filter(v => semver.valid(v)));\n for (const version of sortedVersions) {\n consola.log(` - ${version}${website?.deployedVersion && version === website?.deployedVersion ? colorize(\"green\", ` (deployed)`) : \"\"}`);\n }\n}"]}
1
+ {"version":3,"sources":["../../src/commands/site/version/list/versionListCommand.mts"],"names":[],"mappings":";;;;;;;;AAAA,cAAA,EAAA,CAAA;AAoBA,eAAO,kBAA0C,CAAA;AAAA,EAC/C,UAAA;AAAA,EACA,WAAA;AAAA,EACA,KAAA;AAAA,EACA,SAAA;AACF,CAAG,EAAA;AACD,EAAA,MAAM,WAAc,GAAA,MAAM,SAAU,CAAA,KAAA,EAAO,SAAS,CAAA,CAAA;AACpD,EAAA,MAAM,gBAAgB,MAAM,WAAA,CAAA;AAC5B,EAAM,MAAA,SAAA,GAAY,2BAA4B,CAAA,UAAA,EAAY,aAAa,CAAA,CAAA;AACvE,EAAA,OAAA,CAAQ,MAAM,sCAAsC,CAAA,CAAA;AACpD,EAAA,MAAM,CAAC,QAAU,EAAA,OAAO,IAAI,MAAM,OAAA,CAAQ,IAAI,CAAC,gCAAA,CAAuB,YAAa,CAAA,SAAA,EAAW,WAAW,CAAG,EAAA,gCAAA,CAAuB,WAAW,SAAW,EAAA,WAAW,CAAC,CAAC,CAAA,CAAA;AACtK,EAAI,IAAA,QAAA,CAAS,IAAK,CAAA,MAAA,KAAW,CAAG,EAAA;AAC9B,IAAA,OAAA,CAAQ,KAAK,wBAAwB,CAAA,CAAA;AACrC,IAAA,OAAA;AAAA,GACF;AACA,EAAA,OAAA,CAAQ,QAAQ,iBAAiB,CAAA,CAAA;AACjC,EAAM,MAAA,MAAA,GAAS,MAAM,OAAO,QAAQ,CAAA,CAAA;AACpC,EAAA,MAAM,iBAAiB,MAAO,CAAA,KAAA,CAAM,QAAS,CAAA,IAAA,CAAK,IAAI,CAAK,CAAA,KAAA,CAAA,CAAE,OAAO,CAAA,CAAE,OAAO,CAAK,CAAA,KAAA,MAAA,CAAO,KAAM,CAAA,CAAC,CAAC,CAAC,CAAA,CAAA;AAClG,EAAA,KAAA,MAAW,WAAW,cAAgB,EAAA;AACpC,IAAA,OAAA,CAAQ,GAAI,CAAA,CAAA,MAAA,EAAS,OAAO,CAAA,EAAG,SAAS,eAAmB,IAAA,OAAA,KAAY,OAAS,EAAA,eAAA,GAAkB,QAAS,CAAA,OAAA,EAAS,CAAa,WAAA,CAAA,CAAA,GAAI,EAAE,CAAE,CAAA,CAAA,CAAA;AAAA,GAC3I;AACF","file":"versionListCommand-SKKEM3IX.js","sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createInternalClientContext, thirdPartyApplications } from \"#net\";\nimport { consola } from \"consola\";\nimport { colorize } from \"consola/utils\";\nimport { loadToken } from \"../../../../util/token.js\";\nexport default async function versionListCommand({\n foundryUrl,\n application,\n token,\n tokenFile\n}) {\n const loadedToken = await loadToken(token, tokenFile);\n const tokenProvider = () => loadedToken;\n const clientCtx = createInternalClientContext(foundryUrl, tokenProvider);\n consola.start(\"Fetching versions & deployed version\");\n const [versions, website] = await Promise.all([thirdPartyApplications.listVersions(clientCtx, application), thirdPartyApplications.getWebsite(clientCtx, application)]);\n if (versions.data.length === 0) {\n consola.info(\"No site versions found\");\n return;\n }\n consola.success(\"Found versions:\");\n const semver = await import(\"semver\");\n const sortedVersions = semver.rsort(versions.data.map(v => v.version).filter(v => semver.valid(v)));\n for (const version of sortedVersions) {\n consola.log(` - ${version}${website?.deployedVersion && version === website?.deployedVersion ? colorize(\"green\", ` (deployed)`) : \"\"}`);\n }\n}"]}
@@ -1,4 +1,4 @@
1
- import { loadToken, createInternalClientContext, third_party_applications_exports } from './chunk-LX6TVWKQ.js';
1
+ import { loadToken, createInternalClientContext, third_party_applications_exports } from './chunk-3J7TN5BV.js';
2
2
  import './chunk-WZFTMUBP.js';
3
3
  import './chunk-Q2H7XAS4.js';
4
4
  import { init_esm_shims } from './chunk-DAYFZSC6.js';
@@ -26,5 +26,5 @@ async function versionSetCommand({
26
26
  }
27
27
 
28
28
  export { versionSetCommand as default };
29
- //# sourceMappingURL=versionSetCommand-S4GBWVYA.js.map
30
- //# sourceMappingURL=versionSetCommand-S4GBWVYA.js.map
29
+ //# sourceMappingURL=versionSetCommand-RT74GY73.js.map
30
+ //# sourceMappingURL=versionSetCommand-RT74GY73.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/commands/site/version/set/versionSetCommand.mts"],"names":[],"mappings":";;;;;;;AAAA,cAAA,EAAA,CAAA;AAmBA,eAAO,iBAAyC,CAAA;AAAA,EAC9C,OAAA;AAAA,EACA,WAAA;AAAA,EACA,UAAA;AAAA,EACA,KAAA;AAAA,EACA,SAAA;AACF,CAAG,EAAA;AACD,EAAA,OAAA,CAAQ,MAAM,CAAsB,oBAAA,CAAA,CAAA,CAAA;AACpC,EAAA,MAAM,WAAc,GAAA,MAAM,SAAU,CAAA,KAAA,EAAO,SAAS,CAAA,CAAA;AACpD,EAAA,MAAM,gBAAgB,MAAM,WAAA,CAAA;AAC5B,EAAM,MAAA,SAAA,GAAY,2BAA4B,CAAA,UAAA,EAAY,aAAa,CAAA,CAAA;AACvE,EAAA,IAAI,OAAS,EAAA;AACX,IAAM,MAAA,gCAAA,CAAuB,aAAc,CAAA,SAAA,EAAW,WAAa,EAAA;AAAA,MACjE,OAAA;AAAA,KACD,CAAA,CAAA;AAAA,GACH;AACA,EAAQ,OAAA,CAAA,OAAA,CAAQ,CAAuB,oBAAA,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AAClD","file":"versionSetCommand-S4GBWVYA.js","sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { consola } from \"consola\";\nimport { createInternalClientContext, thirdPartyApplications } from \"#net\";\nimport { loadToken } from \"../../../../util/token.js\";\nexport default async function versionSetCommand({\n version,\n application,\n foundryUrl,\n token,\n tokenFile\n}) {\n consola.start(`Setting live version`);\n const loadedToken = await loadToken(token, tokenFile);\n const tokenProvider = () => loadedToken;\n const clientCtx = createInternalClientContext(foundryUrl, tokenProvider);\n if (version) {\n await thirdPartyApplications.deployWebsite(clientCtx, application, {\n version\n });\n }\n consola.success(`Set live version to ${version}`);\n}"]}
1
+ {"version":3,"sources":["../../src/commands/site/version/set/versionSetCommand.mts"],"names":[],"mappings":";;;;;;;AAAA,cAAA,EAAA,CAAA;AAmBA,eAAO,iBAAyC,CAAA;AAAA,EAC9C,OAAA;AAAA,EACA,WAAA;AAAA,EACA,UAAA;AAAA,EACA,KAAA;AAAA,EACA,SAAA;AACF,CAAG,EAAA;AACD,EAAA,OAAA,CAAQ,MAAM,CAAsB,oBAAA,CAAA,CAAA,CAAA;AACpC,EAAA,MAAM,WAAc,GAAA,MAAM,SAAU,CAAA,KAAA,EAAO,SAAS,CAAA,CAAA;AACpD,EAAA,MAAM,gBAAgB,MAAM,WAAA,CAAA;AAC5B,EAAM,MAAA,SAAA,GAAY,2BAA4B,CAAA,UAAA,EAAY,aAAa,CAAA,CAAA;AACvE,EAAA,IAAI,OAAS,EAAA;AACX,IAAM,MAAA,gCAAA,CAAuB,aAAc,CAAA,SAAA,EAAW,WAAa,EAAA;AAAA,MACjE,OAAA;AAAA,KACD,CAAA,CAAA;AAAA,GACH;AACA,EAAQ,OAAA,CAAA,OAAA,CAAQ,CAAuB,oBAAA,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AAClD","file":"versionSetCommand-RT74GY73.js","sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { consola } from \"consola\";\nimport { createInternalClientContext, thirdPartyApplications } from \"#net\";\nimport { loadToken } from \"../../../../util/token.js\";\nexport default async function versionSetCommand({\n version,\n application,\n foundryUrl,\n token,\n tokenFile\n}) {\n consola.start(`Setting live version`);\n const loadedToken = await loadToken(token, tokenFile);\n const tokenProvider = () => loadedToken;\n const clientCtx = createInternalClientContext(foundryUrl, tokenProvider);\n if (version) {\n await thirdPartyApplications.deployWebsite(clientCtx, application, {\n version\n });\n }\n consola.success(`Set live version to ${version}`);\n}"]}
@@ -1,5 +1,5 @@
1
1
  import { handlePromptCancel } from './chunk-5AQYUXAY.js';
2
- import { loadToken, createInternalClientContext, third_party_applications_exports } from './chunk-LX6TVWKQ.js';
2
+ import { loadToken, createInternalClientContext, third_party_applications_exports } from './chunk-3J7TN5BV.js';
3
3
  import './chunk-WZFTMUBP.js';
4
4
  import './chunk-Q2H7XAS4.js';
5
5
  import { init_esm_shims } from './chunk-DAYFZSC6.js';
@@ -31,5 +31,5 @@ ${colorize("bold", "Your site will no longer be accessible until a new live site
31
31
  }
32
32
 
33
33
  export { versionUnsetCommand as default };
34
- //# sourceMappingURL=versionUnsetCommand-4U5FZ7PH.js.map
35
- //# sourceMappingURL=versionUnsetCommand-4U5FZ7PH.js.map
34
+ //# sourceMappingURL=versionUnsetCommand-KEXKQTCY.js.map
35
+ //# sourceMappingURL=versionUnsetCommand-KEXKQTCY.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/commands/site/version/unset/versionUnsetCommand.mts"],"names":[],"mappings":";;;;;;;;;AAAA,cAAA,EAAA,CAAA;AAqBA,eAAO,mBAA2C,CAAA;AAAA,EAChD,GAAA;AAAA,EACA,WAAA;AAAA,EACA,UAAA;AAAA,EACA,KAAA;AAAA,EACA,SAAA;AACF,CAAG,EAAA;AACD,EAAA,IAAI,CAAC,GAAK,EAAA;AACR,IAAM,MAAA,SAAA,GAAY,MAAM,OAAA,CAAQ,MAAO,CAAA,CAAA;AAAA,EAA0D,QAAS,CAAA,MAAA,EAAQ,8EAA8E,CAAC,CAAI,CAAA,EAAA;AAAA,MACnM,IAAM,EAAA,SAAA;AAAA,KACP,CAAA,CAAA;AACD,IAAA,kBAAA,CAAmB,SAAS,CAAA,CAAA;AAAA,GAC9B;AACA,EAAA,MAAM,WAAc,GAAA,MAAM,SAAU,CAAA,KAAA,EAAO,SAAS,CAAA,CAAA;AACpD,EAAA,MAAM,gBAAgB,MAAM,WAAA,CAAA;AAC5B,EAAM,MAAA,SAAA,GAAY,2BAA4B,CAAA,UAAA,EAAY,aAAa,CAAA,CAAA;AACvE,EAAA,OAAA,CAAQ,MAAM,4BAA4B,CAAA,CAAA;AAC1C,EAAM,MAAA,gCAAA,CAAuB,eAAgB,CAAA,SAAA,EAAW,WAAW,CAAA,CAAA;AACnE,EAAA,OAAA,CAAQ,QAAQ,2BAA2B,CAAA,CAAA;AAC7C","file":"versionUnsetCommand-4U5FZ7PH.js","sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { consola } from \"consola\";\nimport { createInternalClientContext, thirdPartyApplications } from \"#net\";\nimport { colorize } from \"consola/utils\";\nimport { handlePromptCancel } from \"../../../../consola/handlePromptCancel.js\";\nimport { loadToken } from \"../../../../util/token.js\";\nexport default async function versionUnsetCommand({\n yes,\n application,\n foundryUrl,\n token,\n tokenFile\n}) {\n if (!yes) {\n const confirmed = await consola.prompt(`Are you sure you want to clear the live site version?\\n${colorize(\"bold\", \"Your site will no longer be accessible until a new live site version is set.\")}`, {\n type: \"confirm\"\n });\n handlePromptCancel(confirmed);\n }\n const loadedToken = await loadToken(token, tokenFile);\n const tokenProvider = () => loadedToken;\n const clientCtx = createInternalClientContext(foundryUrl, tokenProvider);\n consola.start(\"Clearing live site version\");\n await thirdPartyApplications.undeployWebsite(clientCtx, application);\n consola.success(\"Cleared live site version\");\n}"]}
1
+ {"version":3,"sources":["../../src/commands/site/version/unset/versionUnsetCommand.mts"],"names":[],"mappings":";;;;;;;;;AAAA,cAAA,EAAA,CAAA;AAqBA,eAAO,mBAA2C,CAAA;AAAA,EAChD,GAAA;AAAA,EACA,WAAA;AAAA,EACA,UAAA;AAAA,EACA,KAAA;AAAA,EACA,SAAA;AACF,CAAG,EAAA;AACD,EAAA,IAAI,CAAC,GAAK,EAAA;AACR,IAAM,MAAA,SAAA,GAAY,MAAM,OAAA,CAAQ,MAAO,CAAA,CAAA;AAAA,EAA0D,QAAS,CAAA,MAAA,EAAQ,8EAA8E,CAAC,CAAI,CAAA,EAAA;AAAA,MACnM,IAAM,EAAA,SAAA;AAAA,KACP,CAAA,CAAA;AACD,IAAA,kBAAA,CAAmB,SAAS,CAAA,CAAA;AAAA,GAC9B;AACA,EAAA,MAAM,WAAc,GAAA,MAAM,SAAU,CAAA,KAAA,EAAO,SAAS,CAAA,CAAA;AACpD,EAAA,MAAM,gBAAgB,MAAM,WAAA,CAAA;AAC5B,EAAM,MAAA,SAAA,GAAY,2BAA4B,CAAA,UAAA,EAAY,aAAa,CAAA,CAAA;AACvE,EAAA,OAAA,CAAQ,MAAM,4BAA4B,CAAA,CAAA;AAC1C,EAAM,MAAA,gCAAA,CAAuB,eAAgB,CAAA,SAAA,EAAW,WAAW,CAAA,CAAA;AACnE,EAAA,OAAA,CAAQ,QAAQ,2BAA2B,CAAA,CAAA;AAC7C","file":"versionUnsetCommand-KEXKQTCY.js","sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { consola } from \"consola\";\nimport { createInternalClientContext, thirdPartyApplications } from \"#net\";\nimport { colorize } from \"consola/utils\";\nimport { handlePromptCancel } from \"../../../../consola/handlePromptCancel.js\";\nimport { loadToken } from \"../../../../util/token.js\";\nexport default async function versionUnsetCommand({\n yes,\n application,\n foundryUrl,\n token,\n tokenFile\n}) {\n if (!yes) {\n const confirmed = await consola.prompt(`Are you sure you want to clear the live site version?\\n${colorize(\"bold\", \"Your site will no longer be accessible until a new live site version is set.\")}`, {\n type: \"confirm\"\n });\n handlePromptCancel(confirmed);\n }\n const loadedToken = await loadToken(token, tokenFile);\n const tokenProvider = () => loadedToken;\n const clientCtx = createInternalClientContext(foundryUrl, tokenProvider);\n consola.start(\"Clearing live site version\");\n await thirdPartyApplications.undeployWebsite(clientCtx, application);\n consola.success(\"Cleared live site version\");\n}"]}