@codemation/host 0.0.16 → 0.0.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 +11 -0
- package/LICENSE +37 -0
- package/dist/{AppConfigFactory-D_ReOKfV.d.ts → AppConfigFactory-Co4STjwt.d.ts} +3 -3
- package/dist/{AppConfigFactory-JjNqYnGg.js → AppConfigFactory-DxoZ4v8r.js} +2 -3
- package/dist/AppConfigFactory-DxoZ4v8r.js.map +1 -0
- package/dist/{AppContainerFactory-_dnF0VOf.js → AppContainerFactory-z9aUDFiJ.js} +5 -2
- package/dist/AppContainerFactory-z9aUDFiJ.js.map +1 -0
- package/dist/{CodemationConfig-u80ZoIrc.d.ts → CodemationConfig-COs4GcOE.d.ts} +4 -4
- package/dist/{CodemationConfigNormalizer-DCt0mPPz.d.ts → CodemationConfigNormalizer-B7w1JA_2.d.ts} +2 -2
- package/dist/{CodemationConsumerConfigLoader-LGrCspIx.js → CodemationConsumerConfigLoader-C_ISRrpI.js} +11 -4
- package/dist/CodemationConsumerConfigLoader-C_ISRrpI.js.map +1 -0
- package/dist/{CodemationConsumerConfigLoader-C8iscLBJ.d.ts → CodemationConsumerConfigLoader-OlXKw-us.d.ts} +4 -2
- package/dist/{CodemationPluginListMerger-ZY3R_kTo.d.ts → CodemationPluginListMerger-_ZIiOQxB.d.ts} +5 -5
- package/dist/{CredentialServices-Uo1jxSYB.d.ts → CredentialServices-D3VTczpC.d.ts} +3 -3
- package/dist/{PublicFrontendBootstrapFactory-BA65IXL4.d.ts → PublicFrontendBootstrapFactory-CE4oGogq.d.ts} +2 -2
- package/dist/consumer.d.ts +4 -4
- package/dist/consumer.js +1 -1
- package/dist/credentials.d.ts +3 -3
- package/dist/devServerSidecar.d.ts +1 -1
- package/dist/{index-CkiptHb-.d.ts → index-DbYzycTC.d.ts} +215 -71
- package/dist/index.d.ts +116 -11
- package/dist/index.js +92 -6
- package/dist/index.js.map +1 -0
- package/dist/nextServer.d.ts +7 -7
- package/dist/nextServer.js +2 -2
- package/dist/{persistenceServer-J2teHIIg.js → persistenceServer-C4L1uMKn.js} +2 -2
- package/dist/{persistenceServer-J2teHIIg.js.map → persistenceServer-C4L1uMKn.js.map} +1 -1
- package/dist/{persistenceServer-BKbOs-TQ.d.ts → persistenceServer-Cr-zCuEr.d.ts} +2 -2
- package/dist/persistenceServer.d.ts +5 -5
- package/dist/persistenceServer.js +2 -2
- package/dist/{server-CbcnGZHm.d.ts → server-B6k53aZj.d.ts} +5 -5
- package/dist/{server-CVC7QBwT.js → server-DDVXr7BN.js} +4 -4
- package/dist/{server-CVC7QBwT.js.map → server-DDVXr7BN.js.map} +1 -1
- package/dist/server.d.ts +8 -8
- package/dist/server.js +5 -5
- package/package.json +9 -6
- package/playwright.scaffolded-dev.config.ts +46 -0
- package/src/index.ts +9 -1
- package/src/presentation/config/CodemationAuthoring.types.ts +169 -0
- package/src/presentation/config/CodemationPlugin.ts +1 -0
- package/src/presentation/frontend/CodemationFrontendAuthSnapshotFactory.ts +7 -0
- package/src/presentation/server/CodemationConsumerConfigLoader.ts +12 -3
- package/dist/AppConfigFactory-JjNqYnGg.js.map +0 -1
- package/dist/AppContainerFactory-_dnF0VOf.js.map +0 -1
- package/dist/CodemationConsumerConfigLoader-LGrCspIx.js.map +0 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# @codemation/host
|
|
2
|
+
|
|
3
|
+
## 0.0.18
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f0c6878: Introduce Changesets, a single CI status check for branch protection, and the Codemation pre-stable license across published packages.
|
|
8
|
+
- Updated dependencies [f0c6878]
|
|
9
|
+
- @codemation/core@0.0.18
|
|
10
|
+
- @codemation/core-nodes@0.0.18
|
|
11
|
+
- @codemation/eventbus-redis@0.0.18
|
package/LICENSE
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
Codemation Pre-Stable License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Made Relevant B.V. All rights reserved.
|
|
4
|
+
|
|
5
|
+
1. Definitions
|
|
6
|
+
|
|
7
|
+
"Software" means the Codemation source code, documentation, and artifacts in this repository and any published npm packages in the Codemation monorepo.
|
|
8
|
+
|
|
9
|
+
"Stable Version" means the first published release of the package `@codemation/core` on the public npm registry with version 1.0.0 or higher.
|
|
10
|
+
|
|
11
|
+
2. Permitted use (before Stable Version)
|
|
12
|
+
|
|
13
|
+
Until a Stable Version exists, you may use, copy, modify, and distribute the Software only for non-commercial purposes, including personal learning, research, evaluation, and internal use within your organization that does not charge third parties for access to the Software or a product or service whose primary value is the Software.
|
|
14
|
+
|
|
15
|
+
3. Restrictions (before Stable Version)
|
|
16
|
+
|
|
17
|
+
Until a Stable Version exists, you must not:
|
|
18
|
+
|
|
19
|
+
a) Sell, rent, lease, or sublicense the Software or a derivative work for a fee;
|
|
20
|
+
|
|
21
|
+
b) Offer the Software or a derivative work as part of a paid product or service (including hosting, support, or consulting) where the Software is a material part of the offering;
|
|
22
|
+
|
|
23
|
+
c) Use the Software or a derivative work primarily to generate revenue or commercial advantage for you or others.
|
|
24
|
+
|
|
25
|
+
These restrictions apply to all versions published before a Stable Version, even if a later Stable Version is released under different terms.
|
|
26
|
+
|
|
27
|
+
4. After Stable Version
|
|
28
|
+
|
|
29
|
+
The maintainers may publish a Stable Version under different license terms. If they do, those terms apply only to that Stable Version and subsequent releases they designate; they do not automatically apply to earlier pre-stable versions.
|
|
30
|
+
|
|
31
|
+
5. No warranty
|
|
32
|
+
|
|
33
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
34
|
+
|
|
35
|
+
6. Third-party components
|
|
36
|
+
|
|
37
|
+
The Software may include third-party components under their own licenses. Those licenses govern those components.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { _ as AppPersistenceConfig, g as AppConfig } from "./CodemationConfig-
|
|
2
|
-
import { t as NormalizedCodemationConfig } from "./CodemationConfigNormalizer-
|
|
1
|
+
import { _ as AppPersistenceConfig, g as AppConfig } from "./CodemationConfig-COs4GcOE.js";
|
|
2
|
+
import { t as NormalizedCodemationConfig } from "./CodemationConfigNormalizer-B7w1JA_2.js";
|
|
3
3
|
import { AnyNull, AnyNullClass, DbNull, DbNullClass, Decimal, JsonNull, JsonNullClass, NullTypes as NullTypes$1, ObjectEnumValue, PrismaClientInitializationError, PrismaClientKnownRequestError, PrismaClientRustPanicError, PrismaClientUnknownRequestError, PrismaClientValidationError, RawValue, Sql, Value, empty, isAnyNull, isDbNull, isJsonNull, isObjectEnumValue, join, raw, sql as sqltag } from "@prisma/client-runtime-utils";
|
|
4
4
|
|
|
5
5
|
//#region src/infrastructure/persistence/generated/prisma-client/runtime/client.d.ts
|
|
@@ -22015,4 +22015,4 @@ declare class AppConfigFactory {
|
|
|
22015
22015
|
}
|
|
22016
22016
|
//#endregion
|
|
22017
22017
|
export { PrismaMigrationDeployer as n, PrismaClient as r, AppConfigFactory as t };
|
|
22018
|
-
//# sourceMappingURL=AppConfigFactory-
|
|
22018
|
+
//# sourceMappingURL=AppConfigFactory-Co4STjwt.d.ts.map
|
|
@@ -8168,7 +8168,6 @@ PrismaMigrationDeployer = __decorate([injectable()], PrismaMigrationDeployer);
|
|
|
8168
8168
|
|
|
8169
8169
|
//#endregion
|
|
8170
8170
|
//#region src/presentation/config/CodemationPlugin.ts
|
|
8171
|
-
const definePlugin = (config$1) => config$1;
|
|
8172
8171
|
var CodemationPluginPackageMetadata = class CodemationPluginPackageMetadata {
|
|
8173
8172
|
static packageNameSymbol = Symbol.for("@codemation/plugin-package-name");
|
|
8174
8173
|
attachPackageName(plugin, packageName) {
|
|
@@ -8305,5 +8304,5 @@ var AppConfigFactory = class {
|
|
|
8305
8304
|
};
|
|
8306
8305
|
|
|
8307
8306
|
//#endregion
|
|
8308
|
-
export { require_client as
|
|
8309
|
-
//# sourceMappingURL=AppConfigFactory-
|
|
8307
|
+
export { require_client as i, CodemationPluginPackageMetadata as n, PrismaMigrationDeployer as r, AppConfigFactory as t };
|
|
8308
|
+
//# sourceMappingURL=AppConfigFactory-DxoZ4v8r.js.map
|