fjall 0.89.5 → 0.94.0
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/LICENSE +50 -21
- package/bin/.bundled +3 -0
- package/bin/.metafile.json +39155 -0
- package/bin/assets/generators/account/files/infrastructure.ts +17 -0
- package/bin/assets/generators/account/generator.d.ts +8 -0
- package/bin/assets/generators/account/generator.js +2 -0
- package/bin/assets/generators/account/index.d.ts +1 -0
- package/bin/assets/generators/account/index.js +1 -0
- package/bin/assets/generators/application/generator.d.ts +4 -0
- package/bin/assets/generators/application/generator.js +28 -0
- package/bin/assets/generators/application/index.d.ts +1 -0
- package/bin/assets/generators/application/index.js +1 -0
- package/bin/assets/generators/cdn/generator.d.ts +4 -0
- package/bin/assets/generators/cdn/generator.js +4 -0
- package/bin/assets/generators/cdn/index.d.ts +1 -0
- package/bin/assets/generators/cdn/index.js +1 -0
- package/bin/assets/generators/compute/computeIntegrationHelpers.d.ts +134 -0
- package/bin/assets/generators/compute/computeIntegrationHelpers.js +1 -0
- package/bin/assets/generators/compute/generator.d.ts +4 -0
- package/bin/assets/generators/compute/generator.js +1 -0
- package/bin/assets/generators/compute/index.d.ts +1 -0
- package/bin/assets/generators/compute/index.js +1 -0
- package/bin/assets/generators/compute/service/generator.d.ts +4 -0
- package/bin/assets/generators/compute/service/generator.js +1 -0
- package/bin/assets/generators/compute/service/index.d.ts +1 -0
- package/bin/assets/generators/compute/service/index.js +1 -0
- package/bin/assets/generators/database/databaseIntegrationTestUtils.d.ts +134 -0
- package/bin/assets/generators/database/databaseIntegrationTestUtils.js +1 -0
- package/bin/assets/generators/database/generator.d.ts +4 -0
- package/bin/assets/generators/database/generator.js +1 -0
- package/bin/assets/generators/database/index.d.ts +1 -0
- package/bin/assets/generators/database/index.js +1 -0
- package/bin/assets/generators/database/proxy/generator.d.ts +4 -0
- package/bin/assets/generators/database/proxy/generator.js +1 -0
- package/bin/assets/generators/database/proxy/index.d.ts +1 -0
- package/bin/assets/generators/database/proxy/index.js +1 -0
- package/bin/assets/generators/domain/files/infrastructure.ts.ejs +22 -0
- package/bin/assets/generators/domain/files/zone.bind.ejs +14 -0
- package/bin/assets/generators/domain/generator.d.ts +10 -0
- package/bin/assets/generators/domain/generator.js +2 -0
- package/bin/assets/generators/domain/index.d.ts +1 -0
- package/bin/assets/generators/domain/index.js +1 -0
- package/bin/assets/generators/messaging/index.d.ts +1 -0
- package/bin/assets/generators/messaging/index.js +0 -0
- package/bin/assets/generators/network/generator.d.ts +4 -0
- package/bin/assets/generators/network/generator.js +1 -0
- package/bin/assets/generators/network/index.d.ts +1 -0
- package/bin/assets/generators/network/index.js +1 -0
- package/bin/assets/generators/organisation/files/account/infrastructure.ts +25 -0
- package/bin/assets/generators/organisation/files/organisation/infrastructure.ts +46 -0
- package/bin/assets/generators/organisation/files/platform/infrastructure.ts +16 -0
- package/bin/assets/generators/organisation/generator.d.ts +4 -0
- package/bin/assets/generators/organisation/generator.js +2 -0
- package/bin/assets/generators/organisation/index.d.ts +1 -0
- package/bin/assets/generators/organisation/index.js +1 -0
- package/bin/assets/generators/shared/files/cdk.context.json +3 -0
- package/bin/assets/generators/shared/files/cdk.json +55 -0
- package/bin/assets/generators/shared/files/package.json +15 -0
- package/bin/assets/generators/shared/files/tsconfig.json +23 -0
- package/bin/assets/generators/storage/index.d.ts +1 -0
- package/bin/assets/generators/storage/index.js +1 -0
- package/bin/assets/generators/storage/s3/generator.d.ts +4 -0
- package/bin/assets/generators/storage/s3/generator.js +1 -0
- package/bin/assets/generators/tunnel/generator.d.ts +4 -0
- package/bin/assets/generators/tunnel/generator.js +1 -0
- package/bin/assets/generators/tunnel/index.d.ts +1 -0
- package/bin/assets/generators/tunnel/index.js +1 -0
- package/bin/assets/generators/utils/ast/astCodeModification.d.ts +23 -0
- package/bin/assets/generators/utils/ast/astCodeModification.js +1 -0
- package/bin/assets/generators/utils/ast/astDomainRewriter.d.ts +65 -0
- package/bin/assets/generators/utils/ast/astDomainRewriter.js +1 -0
- package/bin/assets/generators/utils/ast/astSurgicalModification.d.ts +2 -0
- package/bin/assets/generators/utils/ast/astSurgicalModification.js +1 -0
- package/bin/assets/generators/utils/ast/index.d.ts +3 -0
- package/bin/assets/generators/utils/ast/index.js +1 -0
- package/bin/assets/generators/utils/copySharedFiles.d.ts +10 -0
- package/bin/assets/generators/utils/copySharedFiles.js +1 -0
- package/bin/assets/generators/utils/index.d.ts +8 -0
- package/bin/assets/generators/utils/index.js +1 -0
- package/bin/assets/generators/utils/integrationTestUtils.d.ts +129 -0
- package/bin/assets/generators/utils/integrationTestUtils.js +2 -0
- package/bin/assets/generators/utils/mockTree.d.ts +30 -0
- package/bin/assets/generators/utils/mockTree.js +1 -0
- package/bin/assets/generators/utils/planning/generatorHelpers.d.ts +35 -0
- package/bin/assets/generators/utils/planning/generatorHelpers.js +2 -0
- package/bin/assets/generators/utils/planning/index.d.ts +1 -0
- package/bin/assets/generators/utils/planning/index.js +1 -0
- package/bin/assets/generators/utils/prompts.d.ts +4 -0
- package/bin/assets/generators/utils/prompts.js +6 -0
- package/bin/assets/generators/utils/renderEjs.d.ts +24 -0
- package/bin/assets/generators/utils/renderEjs.js +1 -0
- package/bin/assets/generators/utils/resources/connectionHelpers.d.ts +19 -0
- package/bin/assets/generators/utils/resources/connectionHelpers.js +1 -0
- package/bin/assets/generators/utils/resources/index.d.ts +4 -0
- package/bin/assets/generators/utils/resources/index.js +1 -0
- package/bin/assets/generators/utils/resources/promptValidation.d.ts +42 -0
- package/bin/assets/generators/utils/resources/promptValidation.js +1 -0
- package/bin/assets/generators/utils/resources/resourceDetection.d.ts +12 -0
- package/bin/assets/generators/utils/resources/resourceDetection.js +1 -0
- package/bin/assets/generators/utils/resources/resourceNaming.d.ts +6 -0
- package/bin/assets/generators/utils/resources/resourceNaming.js +1 -0
- package/bin/assets/generators/utils/tree.d.ts +25 -0
- package/bin/assets/generators/utils/tree.js +1 -0
- package/bin/assets/proto/buildkit.proto +126 -0
- package/bin/assets/proto/proto/buildkit.proto +126 -0
- package/bin/fjall.bundle.js +1138 -0
- package/bin/fjall.js +5 -1
- package/package.json +43 -6
package/LICENSE
CHANGED
|
@@ -1,21 +1,50 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 Fjall
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
to
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
1
|
+
Fjall Proprietary Software Licence
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Fjall. All rights reserved.
|
|
4
|
+
|
|
5
|
+
This software, including all source, object, bundled, and minified forms
|
|
6
|
+
("the Software"), is the proprietary and confidential property of Fjall.
|
|
7
|
+
|
|
8
|
+
1. Permitted Use. Subject to the terms of this Licence, Fjall grants you
|
|
9
|
+
a non-exclusive, non-transferable, revocable licence to install the
|
|
10
|
+
Software via the npm registry and to execute it solely for the purpose
|
|
11
|
+
of deploying, operating, and managing your own applications and
|
|
12
|
+
infrastructure on cloud providers.
|
|
13
|
+
|
|
14
|
+
2. Restrictions. You may NOT, and may not permit any third party to:
|
|
15
|
+
(a) copy, redistribute, sublicense, sell, rent, lease, or otherwise
|
|
16
|
+
transfer the Software;
|
|
17
|
+
(b) modify, adapt, translate, or create derivative works of the Software;
|
|
18
|
+
(c) reverse engineer, decompile, disassemble, deminify, or otherwise
|
|
19
|
+
attempt to derive the source code, structure, or organisation of
|
|
20
|
+
the Software, except to the minimum extent expressly permitted by
|
|
21
|
+
applicable mandatory law;
|
|
22
|
+
(d) use the Software, or any portion of it, to develop, train, or
|
|
23
|
+
improve any product or service that competes with Fjall;
|
|
24
|
+
(e) remove, alter, or obscure any proprietary notices contained in
|
|
25
|
+
the Software;
|
|
26
|
+
(f) publish, share, or otherwise disclose the Software or its contents
|
|
27
|
+
to any third party.
|
|
28
|
+
|
|
29
|
+
3. Ownership. All right, title, and interest in and to the Software,
|
|
30
|
+
including all intellectual property rights, remain with Fjall. No
|
|
31
|
+
rights are granted except as expressly set out in this Licence.
|
|
32
|
+
|
|
33
|
+
4. Termination. This Licence terminates automatically if you breach any
|
|
34
|
+
of its terms. Upon termination you must cease all use of the Software
|
|
35
|
+
and destroy all copies in your possession.
|
|
36
|
+
|
|
37
|
+
5. Disclaimer of Warranty. THE SOFTWARE IS PROVIDED "AS IS" WITHOUT
|
|
38
|
+
WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION
|
|
39
|
+
THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,
|
|
40
|
+
AND NON-INFRINGEMENT.
|
|
41
|
+
|
|
42
|
+
6. Limitation of Liability. IN NO EVENT SHALL FJALL BE LIABLE FOR ANY
|
|
43
|
+
INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES
|
|
44
|
+
ARISING OUT OF OR RELATED TO THE SOFTWARE, EVEN IF ADVISED OF THE
|
|
45
|
+
POSSIBILITY OF SUCH DAMAGES.
|
|
46
|
+
|
|
47
|
+
7. Governing Law. This Licence is governed by the laws of England and
|
|
48
|
+
Wales, without regard to conflict of laws principles.
|
|
49
|
+
|
|
50
|
+
For commercial licensing enquiries, contact: contact@fjall.io
|
package/bin/.bundled
ADDED