@osdk/foundry-sdk-generator 1.3.17 → 1.3.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -0
- package/build/browser/index.js +3 -5
- package/build/browser/index.js.map +1 -1
- package/build/cjs/index.cjs +3 -5
- package/build/cjs/index.cjs.map +1 -1
- package/build/esm/index.js +3 -5
- package/build/esm/index.js.map +1 -1
- package/package.json +14 -15
package/build/cjs/index.cjs
CHANGED
|
@@ -587,7 +587,7 @@ function isValidSemver(semverString) {
|
|
|
587
587
|
}
|
|
588
588
|
|
|
589
589
|
// src/utils/UserAgent.ts
|
|
590
|
-
var USER_AGENT = `typescript-sdk-generator/${"1.3.
|
|
590
|
+
var USER_AGENT = `typescript-sdk-generator/${"1.3.18"}`;
|
|
591
591
|
async function createRollupBuild(absolutePackagePath, packageName) {
|
|
592
592
|
const inputPath = `${absolutePackagePath}/${packageName}/index.js`;
|
|
593
593
|
const {
|
|
@@ -1472,10 +1472,8 @@ async function cli(args = process.argv) {
|
|
|
1472
1472
|
return createBase().parseAsync(helpers.hideBin(args), {}, async (err, argv, output) => {
|
|
1473
1473
|
if (argv.beta) {
|
|
1474
1474
|
consola__default.default.warn("Beta flag is set, this feature may not be stable");
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
} = await import('@osdk/main-foundry-sdk-generator');
|
|
1478
|
-
await cli2(args);
|
|
1475
|
+
consola__default.default.error("Generating with the --beta flag is no longer supported on 1.3.x. Please use @osdk/foundry-sdk-generator 2.x to use beta features.");
|
|
1476
|
+
process.exit(1);
|
|
1479
1477
|
} else {
|
|
1480
1478
|
if (err) {
|
|
1481
1479
|
console.error(output);
|