@osdk/foundry-sdk-generator 1.3.16 → 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 +26 -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 +13 -14
package/build/esm/index.js
CHANGED
|
@@ -559,7 +559,7 @@ function isValidSemver(semverString) {
|
|
|
559
559
|
}
|
|
560
560
|
|
|
561
561
|
// src/utils/UserAgent.ts
|
|
562
|
-
var USER_AGENT = `typescript-sdk-generator/${"1.3.
|
|
562
|
+
var USER_AGENT = `typescript-sdk-generator/${"1.3.18"}`;
|
|
563
563
|
async function createRollupBuild(absolutePackagePath, packageName) {
|
|
564
564
|
const inputPath = `${absolutePackagePath}/${packageName}/index.js`;
|
|
565
565
|
const {
|
|
@@ -1444,10 +1444,8 @@ async function cli(args = process.argv) {
|
|
|
1444
1444
|
return createBase().parseAsync(hideBin(args), {}, async (err, argv, output) => {
|
|
1445
1445
|
if (argv.beta) {
|
|
1446
1446
|
consola.warn("Beta flag is set, this feature may not be stable");
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
} = await import('@osdk/main-foundry-sdk-generator');
|
|
1450
|
-
await cli2(args);
|
|
1447
|
+
consola.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.");
|
|
1448
|
+
process.exit(1);
|
|
1451
1449
|
} else {
|
|
1452
1450
|
if (err) {
|
|
1453
1451
|
console.error(output);
|