@storm-software/terraform-tools 0.47.0 → 0.47.1

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 +11 -0
  2. package/dist/chunk-EL25IDXP.mjs +93 -0
  3. package/dist/chunk-ILC773N2.js +93 -0
  4. package/dist/{chunk-CKOFQEPW.mjs → chunk-W4CCHPMY.mjs} +576 -0
  5. package/dist/{chunk-NFRDTYPD.js → chunk-YLTIJRR5.js} +576 -0
  6. package/dist/executors.d.mts +0 -1
  7. package/dist/executors.d.ts +0 -1
  8. package/dist/executors.js +1 -1
  9. package/dist/executors.mjs +1 -1
  10. package/dist/generators.js +2 -2
  11. package/dist/generators.mjs +1 -1
  12. package/dist/index.d.mts +2 -1
  13. package/dist/index.d.ts +2 -1
  14. package/dist/index.js +8 -4
  15. package/dist/index.mjs +7 -3
  16. package/dist/src/base/base-terraform-executor.untyped.js +4 -91
  17. package/dist/src/base/base-terraform-executor.untyped.mjs +3 -90
  18. package/dist/src/base/index.d.mts +2 -1
  19. package/dist/src/base/index.d.ts +2 -1
  20. package/dist/src/base/index.js +6 -2
  21. package/dist/src/base/index.mjs +5 -1
  22. package/dist/src/base/terraform-executor.d.mts +97 -1
  23. package/dist/src/base/terraform-executor.d.ts +97 -1
  24. package/dist/src/executors/apply/executor.d.mts +0 -1
  25. package/dist/src/executors/apply/executor.d.ts +0 -1
  26. package/dist/src/executors/destroy/executor.d.mts +0 -1
  27. package/dist/src/executors/destroy/executor.d.ts +0 -1
  28. package/dist/src/executors/plan/executor.d.mts +0 -1
  29. package/dist/src/executors/plan/executor.d.ts +0 -1
  30. package/dist/src/generators/init/init.js +2 -2
  31. package/dist/src/generators/init/init.mjs +1 -1
  32. package/dist/tsup.config.js +5 -1
  33. package/dist/tsup.config.mjs +5 -1
  34. package/package.json +1 -1
  35. package/dist/src/base/base-terraform-executor.schema.d.d.mts +0 -98
  36. package/dist/src/base/base-terraform-executor.schema.d.d.ts +0 -98
  37. package/dist/src/base/base-terraform-executor.schema.d.js +0 -1
  38. package/dist/src/base/base-terraform-executor.schema.d.mjs +0 -1
  39. /package/dist/{chunk-ORW4ATBO.mjs → chunk-CA7S5MOH.mjs} +0 -0
  40. /package/dist/{chunk-JYICRHOG.js → chunk-GUQOEBFW.js} +0 -0
@@ -3311,6 +3311,582 @@ var _version = require('nx/src/command-line/release/version');
3311
3311
  var _utils = require('nx/src/tasks-runner/utils');
3312
3312
  var _semver3 = require('semver');
3313
3313
 
3314
+ // ../workspace-tools/src/base/base-executor.untyped.ts
3315
+ var _untyped = require('untyped');
3316
+ var base_executor_untyped_default = _untyped.defineUntypedSchema.call(void 0, {
3317
+ $schema: {
3318
+ id: "baseExecutor",
3319
+ title: "Base Executor",
3320
+ description: "A base type definition for an executor schema"
3321
+ },
3322
+ outputPath: {
3323
+ $schema: {
3324
+ title: "Output Path",
3325
+ type: "string",
3326
+ format: "path",
3327
+ description: "The output path for the build"
3328
+ },
3329
+ $default: "dist/{projectRoot}"
3330
+ }
3331
+ });
3332
+
3333
+ // ../workspace-tools/src/base/base-generator.untyped.ts
3334
+
3335
+ var base_generator_untyped_default = _untyped.defineUntypedSchema.call(void 0, {
3336
+ $schema: {
3337
+ id: "BaseGeneratorSchema",
3338
+ title: "Base Generator",
3339
+ description: "A type definition for the base Generator schema"
3340
+ },
3341
+ directory: {
3342
+ $schema: {
3343
+ title: "Directory",
3344
+ type: "string",
3345
+ description: "The directory to create the library in"
3346
+ }
3347
+ }
3348
+ });
3349
+
3350
+ // ../workspace-tools/src/base/cargo-base-executor.untyped.ts
3351
+
3352
+ var cargo_base_executor_untyped_default = _untyped.defineUntypedSchema.call(void 0, {
3353
+ ...base_executor_untyped_default,
3354
+ $schema: {
3355
+ id: "cargoBaseExecutor",
3356
+ title: "Cargo Base Executor",
3357
+ description: "A base type definition for a Cargo/rust related executor schema"
3358
+ },
3359
+ package: {
3360
+ $schema: {
3361
+ title: "Cargo.toml Path",
3362
+ type: "string",
3363
+ format: "path",
3364
+ description: "The path to the Cargo.toml file"
3365
+ },
3366
+ $default: "{projectRoot}/Cargo.toml"
3367
+ },
3368
+ toolchain: {
3369
+ $schema: {
3370
+ title: "Toolchain",
3371
+ description: "The type of toolchain to use for the build",
3372
+ enum: [
3373
+ "stable",
3374
+ "beta",
3375
+ "nightly"
3376
+ ],
3377
+ default: "stable"
3378
+ },
3379
+ $default: "stable"
3380
+ },
3381
+ target: {
3382
+ $schema: {
3383
+ title: "Target",
3384
+ type: "string",
3385
+ description: "The target to build"
3386
+ }
3387
+ },
3388
+ allTargets: {
3389
+ $schema: {
3390
+ title: "All Targets",
3391
+ type: "boolean",
3392
+ description: "Build all targets"
3393
+ }
3394
+ },
3395
+ profile: {
3396
+ $schema: {
3397
+ title: "Profile",
3398
+ type: "string",
3399
+ description: "The profile to build"
3400
+ }
3401
+ },
3402
+ release: {
3403
+ $schema: {
3404
+ title: "Release",
3405
+ type: "boolean",
3406
+ description: "Build in release mode"
3407
+ }
3408
+ },
3409
+ features: {
3410
+ $schema: {
3411
+ title: "Features",
3412
+ type: "string",
3413
+ description: "The features to build",
3414
+ oneOf: [
3415
+ {
3416
+ type: "string"
3417
+ },
3418
+ {
3419
+ type: "array",
3420
+ items: {
3421
+ type: "string"
3422
+ }
3423
+ }
3424
+ ]
3425
+ }
3426
+ },
3427
+ allFeatures: {
3428
+ $schema: {
3429
+ title: "All Features",
3430
+ type: "boolean",
3431
+ description: "Build all features"
3432
+ }
3433
+ }
3434
+ });
3435
+
3436
+ // ../workspace-tools/src/base/typescript-build-executor.untyped.ts
3437
+
3438
+ var typescript_build_executor_untyped_default = _untyped.defineUntypedSchema.call(void 0, {
3439
+ ...base_executor_untyped_default,
3440
+ $schema: {
3441
+ id: "TypeScriptBuildExecutorSchema",
3442
+ title: "TypeScript Build Executor",
3443
+ description: "A type definition for the base TypeScript build executor schema",
3444
+ required: [
3445
+ "entry",
3446
+ "tsconfig"
3447
+ ]
3448
+ },
3449
+ entry: {
3450
+ $schema: {
3451
+ title: "Entry File(s)",
3452
+ format: "path",
3453
+ type: "array",
3454
+ description: "The entry file or files to build",
3455
+ items: {
3456
+ type: "string"
3457
+ }
3458
+ },
3459
+ $default: [
3460
+ "{sourceRoot}/index.ts"
3461
+ ]
3462
+ },
3463
+ tsconfig: {
3464
+ $schema: {
3465
+ title: "TSConfig Path",
3466
+ type: "string",
3467
+ format: "path",
3468
+ description: "The path to the tsconfig file"
3469
+ },
3470
+ $default: "{projectRoot}/tsconfig.json"
3471
+ },
3472
+ bundle: {
3473
+ $schema: {
3474
+ title: "Bundle",
3475
+ type: "boolean",
3476
+ description: "Bundle the output"
3477
+ },
3478
+ $default: false
3479
+ },
3480
+ minify: {
3481
+ $schema: {
3482
+ title: "Minify",
3483
+ type: "boolean",
3484
+ description: "Minify the output"
3485
+ },
3486
+ $default: false
3487
+ },
3488
+ debug: {
3489
+ $schema: {
3490
+ title: "Debug",
3491
+ type: "boolean",
3492
+ description: "Debug the output"
3493
+ },
3494
+ $default: false
3495
+ },
3496
+ sourcemap: {
3497
+ $schema: {
3498
+ title: "Sourcemap",
3499
+ type: "boolean",
3500
+ description: "Generate a sourcemap"
3501
+ },
3502
+ $default: false
3503
+ },
3504
+ silent: {
3505
+ $schema: {
3506
+ title: "Silent",
3507
+ type: "boolean",
3508
+ description: "Should the build run silently - only report errors back to the user"
3509
+ },
3510
+ $default: false
3511
+ },
3512
+ target: {
3513
+ $schema: {
3514
+ title: "Target",
3515
+ type: "string",
3516
+ description: "The target to build",
3517
+ enum: [
3518
+ "es3",
3519
+ "es5",
3520
+ "es6",
3521
+ "es2015",
3522
+ "es2016",
3523
+ "es2017",
3524
+ "es2018",
3525
+ "es2019",
3526
+ "es2020",
3527
+ "es2021",
3528
+ "es2022",
3529
+ "es2023",
3530
+ "es2024",
3531
+ "esnext",
3532
+ "node12",
3533
+ "node14",
3534
+ "node16",
3535
+ "node18",
3536
+ "node20",
3537
+ "node22",
3538
+ "browser",
3539
+ "chrome58",
3540
+ "chrome59",
3541
+ "chrome60"
3542
+ ]
3543
+ },
3544
+ $default: "esnext",
3545
+ $resolve: /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (val = "esnext") => val.toLowerCase(), "$resolve")
3546
+ },
3547
+ format: {
3548
+ $schema: {
3549
+ title: "Format",
3550
+ type: "array",
3551
+ description: "The format to build",
3552
+ items: {
3553
+ type: "string",
3554
+ enum: [
3555
+ "cjs",
3556
+ "esm",
3557
+ "iife"
3558
+ ]
3559
+ }
3560
+ },
3561
+ $resolve: /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (val = [
3562
+ "cjs",
3563
+ "esm"
3564
+ ]) => [].concat(val), "$resolve")
3565
+ },
3566
+ platform: {
3567
+ $schema: {
3568
+ title: "Platform",
3569
+ type: "string",
3570
+ description: "The platform to build",
3571
+ enum: [
3572
+ "neutral",
3573
+ "node",
3574
+ "browser"
3575
+ ]
3576
+ },
3577
+ $default: "neutral"
3578
+ },
3579
+ external: {
3580
+ $schema: {
3581
+ title: "External",
3582
+ type: "array",
3583
+ description: "The external dependencies"
3584
+ },
3585
+ $resolve: /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (val = []) => [].concat(val), "$resolve")
3586
+ },
3587
+ define: {
3588
+ $schema: {
3589
+ title: "Define",
3590
+ type: "object",
3591
+ tsType: "Record<string, string>",
3592
+ description: "The define values"
3593
+ },
3594
+ $resolve: /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (val = {}) => val, "$resolve"),
3595
+ $default: {}
3596
+ },
3597
+ env: {
3598
+ $schema: {
3599
+ title: "Environment Variables",
3600
+ type: "object",
3601
+ tsType: "Record<string, string>",
3602
+ description: "The environment variable values"
3603
+ },
3604
+ $resolve: /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (val = {}) => val, "$resolve"),
3605
+ $default: {}
3606
+ }
3607
+ });
3608
+
3609
+ // ../workspace-tools/src/base/typescript-library-generator.untyped.ts
3610
+
3611
+ var typescript_library_generator_untyped_default = _untyped.defineUntypedSchema.call(void 0, {
3612
+ ...base_generator_untyped_default,
3613
+ $schema: {
3614
+ id: "TypeScriptLibraryGeneratorSchema",
3615
+ title: "TypeScript Library Generator",
3616
+ description: "A type definition for the base TypeScript Library Generator schema",
3617
+ required: [
3618
+ "directory",
3619
+ "name"
3620
+ ]
3621
+ },
3622
+ name: {
3623
+ $schema: {
3624
+ title: "Name",
3625
+ type: "string",
3626
+ description: "The name of the library"
3627
+ }
3628
+ },
3629
+ description: {
3630
+ $schema: {
3631
+ title: "Description",
3632
+ type: "string",
3633
+ description: "The description of the library"
3634
+ }
3635
+ },
3636
+ buildExecutor: {
3637
+ $schema: {
3638
+ title: "Build Executor",
3639
+ type: "string",
3640
+ description: "The executor to use for building the library"
3641
+ },
3642
+ $default: "@storm-software/workspace-tools:unbuild"
3643
+ },
3644
+ platform: {
3645
+ $schema: {
3646
+ title: "Platform",
3647
+ type: "string",
3648
+ description: "The platform to target with the library",
3649
+ enum: [
3650
+ "neutral",
3651
+ "node",
3652
+ "browser"
3653
+ ]
3654
+ },
3655
+ $default: "neutral"
3656
+ },
3657
+ devDependencies: {
3658
+ $schema: {
3659
+ title: "Dev Dependencies",
3660
+ type: "object",
3661
+ description: "The dev dependencies to install"
3662
+ }
3663
+ },
3664
+ dependencies: {
3665
+ $schema: {
3666
+ title: "Dependencies",
3667
+ type: "object",
3668
+ description: "The dependencies to install"
3669
+ }
3670
+ },
3671
+ peerDependencies: {
3672
+ $schema: {
3673
+ title: "Peer Dependencies",
3674
+ type: "object",
3675
+ description: "The peer dependencies to install"
3676
+ }
3677
+ },
3678
+ peerDependenciesMeta: {
3679
+ $schema: {
3680
+ title: "Peer Dependencies Meta",
3681
+ type: "object",
3682
+ description: "The peer dependencies meta"
3683
+ }
3684
+ },
3685
+ tags: {
3686
+ $schema: {
3687
+ title: "Tags",
3688
+ type: "string",
3689
+ description: "The tags for the library"
3690
+ }
3691
+ },
3692
+ tsconfigOptions: {
3693
+ $schema: {
3694
+ title: "TypeScript Config (tsconfig.json) Options",
3695
+ type: "object",
3696
+ description: "The TypeScript configuration options"
3697
+ }
3698
+ },
3699
+ skipFormat: {
3700
+ $schema: {
3701
+ title: "Skip Format",
3702
+ type: "boolean",
3703
+ description: "Skip formatting"
3704
+ }
3705
+ },
3706
+ skipTsConfig: {
3707
+ $schema: {
3708
+ title: "Skip TsConfig",
3709
+ type: "boolean",
3710
+ description: "Skip TypeScript configuration"
3711
+ }
3712
+ },
3713
+ skipPackageJson: {
3714
+ $schema: {
3715
+ title: "Skip Package Json",
3716
+ type: "boolean",
3717
+ description: "Skip package.json"
3718
+ }
3719
+ },
3720
+ includeBabelRc: {
3721
+ $schema: {
3722
+ title: "Include Babel Rc",
3723
+ type: "boolean",
3724
+ description: "Include Babel configuration"
3725
+ }
3726
+ },
3727
+ unitTestRunner: {
3728
+ $schema: {
3729
+ title: "Unit Test Runner",
3730
+ type: "string",
3731
+ enum: [
3732
+ "jest",
3733
+ "vitest",
3734
+ "none"
3735
+ ],
3736
+ description: "The unit test runner to use"
3737
+ }
3738
+ },
3739
+ linter: {
3740
+ $schema: {
3741
+ title: "Linter",
3742
+ type: "string",
3743
+ description: "The linter to use"
3744
+ }
3745
+ },
3746
+ testEnvironment: {
3747
+ $schema: {
3748
+ title: "Test Environment",
3749
+ type: "string",
3750
+ enum: [
3751
+ "jsdom",
3752
+ "node"
3753
+ ],
3754
+ description: "The test environment to use"
3755
+ }
3756
+ },
3757
+ importPath: {
3758
+ $schema: {
3759
+ title: "Import Path",
3760
+ type: "string",
3761
+ description: "The import path for the library"
3762
+ }
3763
+ },
3764
+ js: {
3765
+ $schema: {
3766
+ title: "JavaScript",
3767
+ type: "boolean",
3768
+ description: "Use JavaScript instead of TypeScript"
3769
+ }
3770
+ },
3771
+ pascalCaseFiles: {
3772
+ $schema: {
3773
+ title: "Pascal Case Files",
3774
+ type: "boolean",
3775
+ description: "Use PascalCase for file names"
3776
+ }
3777
+ },
3778
+ strict: {
3779
+ $schema: {
3780
+ title: "Strict",
3781
+ type: "boolean",
3782
+ description: "Enable strict mode"
3783
+ }
3784
+ },
3785
+ publishable: {
3786
+ $schema: {
3787
+ title: "Publishable",
3788
+ type: "boolean",
3789
+ description: "Make the library publishable"
3790
+ }
3791
+ },
3792
+ buildable: {
3793
+ $schema: {
3794
+ title: "Buildable",
3795
+ type: "boolean",
3796
+ description: "Make the library buildable"
3797
+ }
3798
+ },
3799
+ setParserOptionsProject: {
3800
+ $schema: {
3801
+ title: "Set Parser Options Project",
3802
+ type: "boolean",
3803
+ description: "Set parser options project"
3804
+ }
3805
+ },
3806
+ config: {
3807
+ $schema: {
3808
+ title: "Config",
3809
+ type: "string",
3810
+ enum: [
3811
+ "workspace",
3812
+ "project",
3813
+ "npm-scripts"
3814
+ ],
3815
+ description: "The configuration type"
3816
+ }
3817
+ },
3818
+ compiler: {
3819
+ $schema: {
3820
+ title: "Compiler",
3821
+ type: "string",
3822
+ description: "The compiler to use"
3823
+ }
3824
+ },
3825
+ bundler: {
3826
+ $schema: {
3827
+ title: "Bundler",
3828
+ type: "string",
3829
+ description: "The bundler to use"
3830
+ }
3831
+ },
3832
+ skipTypeCheck: {
3833
+ $schema: {
3834
+ title: "Skip Type Check",
3835
+ type: "boolean",
3836
+ description: "Skip type checking"
3837
+ }
3838
+ },
3839
+ minimal: {
3840
+ $schema: {
3841
+ title: "Minimal",
3842
+ type: "boolean",
3843
+ description: "Create a minimal library"
3844
+ }
3845
+ },
3846
+ rootProject: {
3847
+ $schema: {
3848
+ title: "Root Project",
3849
+ type: "boolean",
3850
+ description: "Create a root project"
3851
+ }
3852
+ },
3853
+ simpleName: {
3854
+ $schema: {
3855
+ title: "Simple Name",
3856
+ type: "boolean",
3857
+ description: "Use a simple name for the library"
3858
+ }
3859
+ },
3860
+ addPlugin: {
3861
+ $schema: {
3862
+ title: "Add Plugin",
3863
+ type: "boolean",
3864
+ description: "Add a plugin to the library"
3865
+ }
3866
+ },
3867
+ useProjectJson: {
3868
+ $schema: {
3869
+ title: "Use Project Json",
3870
+ type: "boolean",
3871
+ description: "Use project.json"
3872
+ }
3873
+ },
3874
+ skipWorkspacesWarning: {
3875
+ $schema: {
3876
+ title: "Skip Workspaces Warning",
3877
+ type: "boolean",
3878
+ description: "Skip workspaces warning"
3879
+ }
3880
+ },
3881
+ useTscExecutor: {
3882
+ $schema: {
3883
+ title: "Use Tsc Executor",
3884
+ type: "boolean",
3885
+ description: "Use TSC executor"
3886
+ }
3887
+ }
3888
+ });
3889
+
3314
3890
  // ../workspace-tools/src/utils/create-cli-options.ts
3315
3891
 
3316
3892
 
@@ -4,7 +4,6 @@ import '@nx/devkit';
4
4
  import 'zod';
5
5
  import '@storm-software/workspace-tools/base/base-executor.schema.d';
6
6
  import '@storm-software/workspace-tools/types';
7
- import './src/base/base-terraform-executor.schema.d.mjs';
8
7
 
9
8
  type ApplyExecutorSchema = Required<
10
9
  Pick<TerraformExecutorSchema, "planFile" | "autoApproval">
@@ -4,7 +4,6 @@ import '@nx/devkit';
4
4
  import 'zod';
5
5
  import '@storm-software/workspace-tools/base/base-executor.schema.d';
6
6
  import '@storm-software/workspace-tools/types';
7
- import './src/base/base-terraform-executor.schema.d.js';
8
7
 
9
8
  type ApplyExecutorSchema = Required<
10
9
  Pick<TerraformExecutorSchema, "planFile" | "autoApproval">
package/dist/executors.js CHANGED
@@ -1,8 +1,8 @@
1
1
  "use strict";require('./chunk-E7SPQEPH.js');
2
- require('./chunk-SCRXKTPS.js');
3
2
  require('./chunk-53WQJQ5K.js');
4
3
  require('./chunk-MW3JRZ4N.js');
5
4
  require('./chunk-SIQ2JL7E.js');
5
+ require('./chunk-SCRXKTPS.js');
6
6
  require('./chunk-AOTMRUKU.js');
7
7
  require('./chunk-JNBNKAGF.js');
8
8
  require('./chunk-3GQAWCBQ.js');
@@ -1,8 +1,8 @@
1
1
  import "./chunk-HYHKZPRR.mjs";
2
- import "./chunk-463AGI5I.mjs";
3
2
  import "./chunk-6GLEQENV.mjs";
4
3
  import "./chunk-EAPOMBKY.mjs";
5
4
  import "./chunk-NEISKBUA.mjs";
5
+ import "./chunk-463AGI5I.mjs";
6
6
  import "./chunk-WKVEHDC2.mjs";
7
7
  import "./chunk-SH7NPG4K.mjs";
8
8
  import "./chunk-XUV4U54K.mjs";
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-N2YKXZ5R.js');
2
2
 
3
3
 
4
- var _chunkNFRDTYPDjs = require('./chunk-NFRDTYPD.js');
4
+ var _chunkYLTIJRR5js = require('./chunk-YLTIJRR5.js');
5
5
  require('./chunk-JNBNKAGF.js');
6
6
  require('./chunk-3GQAWCBQ.js');
7
7
 
8
8
 
9
- exports.initGenerator = _chunkNFRDTYPDjs.initGenerator;
9
+ exports.initGenerator = _chunkYLTIJRR5js.initGenerator;
@@ -1,7 +1,7 @@
1
1
  import "./chunk-23KFTIT2.mjs";
2
2
  import {
3
3
  initGenerator
4
- } from "./chunk-CKOFQEPW.mjs";
4
+ } from "./chunk-W4CCHPMY.mjs";
5
5
  import "./chunk-SH7NPG4K.mjs";
6
6
  import "./chunk-XUV4U54K.mjs";
7
7
  export {
package/dist/index.d.mts CHANGED
@@ -1,9 +1,10 @@
1
+ export { default as baseTerraformExecutorSchema } from './src/base/base-terraform-executor.untyped.mjs';
1
2
  export { NormalizedTerraformExecutorOptions, TerraformExecutorSchema, withTerraformExecutor } from './src/base/terraform-executor.mjs';
2
3
  export { ApplyExecutorSchema, DestroyExecutorSchema, PlanExecutorSchema } from './executors.mjs';
3
4
  export { O as OutputExecutorSchema } from './schema.d-DRCBZob5.mjs';
4
5
  export { InitGeneratorSchema, initGenerator } from './generators.mjs';
6
+ import 'untyped';
5
7
  import '@nx/devkit';
6
8
  import 'zod';
7
9
  import '@storm-software/workspace-tools/base/base-executor.schema.d';
8
10
  import '@storm-software/workspace-tools/types';
9
- import './src/base/base-terraform-executor.schema.d.mjs';
package/dist/index.d.ts CHANGED
@@ -1,9 +1,10 @@
1
+ export { default as baseTerraformExecutorSchema } from './src/base/base-terraform-executor.untyped.js';
1
2
  export { NormalizedTerraformExecutorOptions, TerraformExecutorSchema, withTerraformExecutor } from './src/base/terraform-executor.js';
2
3
  export { ApplyExecutorSchema, DestroyExecutorSchema, PlanExecutorSchema } from './executors.js';
3
4
  export { O as OutputExecutorSchema } from './schema.d-DRCBZob5.js';
4
5
  export { InitGeneratorSchema, initGenerator } from './generators.js';
6
+ import 'untyped';
5
7
  import '@nx/devkit';
6
8
  import 'zod';
7
9
  import '@storm-software/workspace-tools/base/base-executor.schema.d';
8
10
  import '@storm-software/workspace-tools/types';
9
- import './src/base/base-terraform-executor.schema.d.js';
package/dist/index.js CHANGED
@@ -1,13 +1,16 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-E7SPQEPH.js');
2
- require('./chunk-SCRXKTPS.js');
3
2
  require('./chunk-53WQJQ5K.js');
4
3
  require('./chunk-MW3JRZ4N.js');
5
4
  require('./chunk-SIQ2JL7E.js');
6
5
  require('./chunk-N2YKXZ5R.js');
7
6
 
8
7
 
9
- var _chunkNFRDTYPDjs = require('./chunk-NFRDTYPD.js');
10
- require('./chunk-JYICRHOG.js');
8
+ var _chunkYLTIJRR5js = require('./chunk-YLTIJRR5.js');
9
+ require('./chunk-GUQOEBFW.js');
10
+
11
+
12
+ var _chunkILC773N2js = require('./chunk-ILC773N2.js');
13
+ require('./chunk-SCRXKTPS.js');
11
14
 
12
15
 
13
16
  var _chunkAOTMRUKUjs = require('./chunk-AOTMRUKU.js');
@@ -16,4 +19,5 @@ require('./chunk-3GQAWCBQ.js');
16
19
 
17
20
 
18
21
 
19
- exports.initGenerator = _chunkNFRDTYPDjs.initGenerator; exports.withTerraformExecutor = _chunkAOTMRUKUjs.withTerraformExecutor;
22
+
23
+ exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.initGenerator = _chunkYLTIJRR5js.initGenerator; exports.withTerraformExecutor = _chunkAOTMRUKUjs.withTerraformExecutor;