@codemation/host 1.0.0 → 1.0.2
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 +31 -0
- package/dist/{AppConfigFactory-BPp02HMv.js → AppConfigFactory-C4OXGOs2.js} +16 -7
- package/dist/{AppConfigFactory-BPp02HMv.js.map → AppConfigFactory-C4OXGOs2.js.map} +1 -1
- package/dist/{AppConfigFactory-PFmDg5Sg.d.ts → AppConfigFactory-D3k-R3Ch.d.ts} +338 -6
- package/dist/{AppContainerFactory-Cr3JeVmg.js → AppContainerFactory-CKRDz8kQ.js} +409 -92
- package/dist/AppContainerFactory-CKRDz8kQ.js.map +1 -0
- package/dist/{CodemationAppContext-DP_-56c6.d.ts → CodemationAppContext-YgJRUHWF.d.ts} +2 -2
- package/dist/{CodemationAuthoring.types-zJ2t73Bn.d.ts → CodemationAuthoring.types-lUdxXYq-.d.ts} +7 -6
- package/dist/{CodemationConfigNormalizer-B8RGUwAe.d.ts → CodemationConfigNormalizer-BWBp7mFB.d.ts} +2 -2
- package/dist/{CodemationConsumerConfigLoader-C_QVwcI3.d.ts → CodemationConsumerConfigLoader-Bka3v6lh.d.ts} +2 -2
- package/dist/{CodemationPluginListMerger-Bgn1CIX9.d.ts → CodemationPluginListMerger-Oz-GAkxz.d.ts} +17 -5
- package/dist/{CredentialServices-95DPogx-.d.ts → CredentialServices-CKXPg5xu.d.ts} +3 -3
- package/dist/{PublicFrontendBootstrapFactory-C_iLgPV-.d.ts → PublicFrontendBootstrapFactory-DkQoSYDo.d.ts} +2 -2
- package/dist/authoring.d.ts +3 -3
- package/dist/consumer.d.ts +4 -4
- package/dist/credentials.d.ts +3 -3
- package/dist/devServerSidecar.d.ts +1 -1
- package/dist/{index-W4eSjdCM.d.ts → index-BxIc_L4D.d.ts} +233 -151
- package/dist/index.d.ts +11 -11
- package/dist/index.js +4 -4
- package/dist/nextServer.d.ts +7 -7
- package/dist/nextServer.js +2 -2
- package/dist/{persistenceServer-_pqP_0nw.d.ts → persistenceServer-BLG7_6B5.d.ts} +2 -2
- package/dist/{persistenceServer-CA0_q0D7.js → persistenceServer-KyHL0u01.js} +2 -2
- package/dist/{persistenceServer-CA0_q0D7.js.map → persistenceServer-KyHL0u01.js.map} +1 -1
- package/dist/persistenceServer.d.ts +5 -5
- package/dist/persistenceServer.js +2 -2
- package/dist/{server-Q5uwa6iR.d.ts → server-B0SD6Nvk.d.ts} +5 -5
- package/dist/{server-BE4PLhcb.js → server-CMUVhYIc.js} +3 -3
- package/dist/{server-BE4PLhcb.js.map → server-CMUVhYIc.js.map} +1 -1
- package/dist/server.d.ts +8 -8
- package/dist/server.js +4 -4
- package/package.json +5 -5
- package/prisma/migrations/20260430120000_telemetry_iteration_identity/migration.sql +17 -0
- package/prisma/migrations/20260430130000_execution_instance_iteration_identity/migration.sql +11 -0
- package/prisma/migrations.sqlite/20260430120000_telemetry_iteration_identity/migration.sql +14 -0
- package/prisma/migrations.sqlite/20260430130000_execution_instance_iteration_identity/migration.sql +10 -0
- package/prisma/schema.postgresql.prisma +12 -0
- package/prisma/schema.sqlite.prisma +12 -0
- package/src/application/contracts/IterationCostContracts.ts +11 -0
- package/src/application/queries/GetIterationCostQuery.ts +14 -0
- package/src/application/queries/GetIterationCostQueryHandler.ts +92 -0
- package/src/application/queries/GetWorkflowRunDetailQueryHandler.ts +44 -2
- package/src/application/queries/RunIterationProjectionFactory.ts +123 -0
- package/src/application/queries/WorkflowQueryHandlers.ts +1 -0
- package/src/application/telemetry/OtelExecutionTelemetry.types.ts +3 -0
- package/src/application/telemetry/RunEventBusTelemetryReporter.ts +7 -0
- package/src/application/telemetry/StoredNodeExecutionTelemetry.ts +14 -0
- package/src/application/telemetry/StoredTelemetrySpanScope.ts +90 -1
- package/src/bootstrap/AppContainerFactory.ts +5 -0
- package/src/domain/telemetry/TelemetryContracts.ts +12 -0
- package/src/infrastructure/persistence/InMemoryTelemetryMetricPointStore.ts +3 -0
- package/src/infrastructure/persistence/InMemoryTelemetrySpanStore.ts +3 -0
- package/src/infrastructure/persistence/InMemoryWorkflowRunRepository.ts +23 -0
- package/src/infrastructure/persistence/PrismaTelemetryMetricPointStore.ts +9 -0
- package/src/infrastructure/persistence/PrismaTelemetrySpanStore.ts +6 -0
- package/src/infrastructure/persistence/PrismaWorkflowRunRepository.ts +12 -0
- package/src/infrastructure/persistence/generated/prisma-postgresql-client/edge.js +15 -6
- package/src/infrastructure/persistence/generated/prisma-postgresql-client/index-browser.js +11 -2
- package/src/infrastructure/persistence/generated/prisma-postgresql-client/index.d.ts +343 -5
- package/src/infrastructure/persistence/generated/prisma-postgresql-client/index.js +15 -6
- package/src/infrastructure/persistence/generated/prisma-postgresql-client/package.json +1 -1
- package/src/infrastructure/persistence/generated/prisma-postgresql-client/schema.prisma +12 -0
- package/src/infrastructure/persistence/generated/prisma-sqlite-client/edge.js +15 -6
- package/src/infrastructure/persistence/generated/prisma-sqlite-client/index-browser.js +11 -2
- package/src/infrastructure/persistence/generated/prisma-sqlite-client/index.d.ts +343 -5
- package/src/infrastructure/persistence/generated/prisma-sqlite-client/index.js +15 -6
- package/src/infrastructure/persistence/generated/prisma-sqlite-client/package.json +1 -1
- package/src/infrastructure/persistence/generated/prisma-sqlite-client/schema.prisma +12 -0
- package/dist/AppContainerFactory-Cr3JeVmg.js.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as EngineExecutionLimitsPolicyConfig, I as WorkflowDefinition, U as Container, W as TypeToken, l as AnyCredentialType } from "./index-
|
|
1
|
+
import { G as EngineExecutionLimitsPolicyConfig, I as WorkflowDefinition, U as Container, W as TypeToken, l as AnyCredentialType } from "./index-BxIc_L4D.js";
|
|
2
2
|
import { a as CodemationAuthConfig, n as CodemationLogConfig, t as CodemationWhitelabelConfig, u as LoggerFactory } from "./CodemationWhitelabelConfig-D5rYcLlj.js";
|
|
3
3
|
|
|
4
4
|
//#region src/presentation/config/CodemationClassToken.d.ts
|
|
@@ -177,4 +177,4 @@ interface CodemationAppContext extends CodemationRegistrationContextBase {
|
|
|
177
177
|
}
|
|
178
178
|
//#endregion
|
|
179
179
|
export { CodemationContainerRegistration as C, CodemationWorkflowDiscovery as S, CodemationEngineExecutionLimitsConfig as _, AppPluginLoadSummary as a, CodemationSchedulerConfig as b, CodemationPluginContext as c, CodemationAppSchedulerConfig as d, CodemationAppSchedulerKind as f, CodemationDatabaseKind as g, CodemationDatabaseConfig as h, AppPersistenceConfig as i, CodemationPluginPackageMetadata as l, CodemationConfig as m, CodemationRegistrationContextBase as n, CodemationPlugin as o, CodemationApplicationRuntimeConfig as p, AppConfig as r, CodemationPluginConfig as s, CodemationAppContext as t, CodemationAppDefinition as u, CodemationEventBusConfig as v, CodemationClassToken as w, CodemationSchedulerKind as x, CodemationEventBusKind as y };
|
|
180
|
-
//# sourceMappingURL=CodemationAppContext-
|
|
180
|
+
//# sourceMappingURL=CodemationAppContext-YgJRUHWF.d.ts.map
|
package/dist/{CodemationAuthoring.types-zJ2t73Bn.d.ts → CodemationAuthoring.types-lUdxXYq-.d.ts}
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as Items, F as RunnableNodeOutputJson, I as WorkflowDefinition, J as ChainCursor, P as RunnableNodeConfig, W as TypeToken, Y as AnyRunnableNodeConfig, a as ChatModelConfig, c as DefinedNodeConfigInput, g as CredentialJsonRecord, i as AgentMessageConfig, k as Item, l as AnyCredentialType, o as ToolConfig, r as AgentGuardrailConfig, s as DefinedNode, z as NodeExecutionContext } from "./index-
|
|
2
|
-
import { c as CodemationPluginContext, m as CodemationConfig, o as CodemationPlugin, t as CodemationAppContext } from "./CodemationAppContext-
|
|
1
|
+
import { A as Items, F as RunnableNodeOutputJson, I as WorkflowDefinition, J as ChainCursor, P as RunnableNodeConfig, W as TypeToken, Y as AnyRunnableNodeConfig, a as ChatModelConfig, c as DefinedNodeConfigInput, g as CredentialJsonRecord, i as AgentMessageConfig, k as Item, l as AnyCredentialType, o as ToolConfig, r as AgentGuardrailConfig, s as DefinedNode, z as NodeExecutionContext } from "./index-BxIc_L4D.js";
|
|
2
|
+
import { c as CodemationPluginContext, m as CodemationConfig, o as CodemationPlugin, t as CodemationAppContext } from "./CodemationAppContext-YgJRUHWF.js";
|
|
3
3
|
import { t as CodemationWhitelabelConfig } from "./CodemationWhitelabelConfig-D5rYcLlj.js";
|
|
4
4
|
import { ZodType, z } from "zod";
|
|
5
5
|
import "ai";
|
|
@@ -15,7 +15,7 @@ declare class Aggregate<TIn = unknown, TOut = unknown> implements RunnableNodeCo
|
|
|
15
15
|
readonly hint: "local";
|
|
16
16
|
};
|
|
17
17
|
readonly keepBinaries: true;
|
|
18
|
-
readonly icon: "
|
|
18
|
+
readonly icon: "builtin:aggregate-rows";
|
|
19
19
|
constructor(name: string, aggregate: (items: Items<TIn>, ctx: NodeExecutionContext<Aggregate<TIn, TOut>>) => TOut | Promise<TOut>, id?: string | undefined);
|
|
20
20
|
}
|
|
21
21
|
//#endregion
|
|
@@ -43,7 +43,7 @@ declare class If<TInputJson = unknown> implements RunnableNodeConfig<TInputJson,
|
|
|
43
43
|
readonly execution: {
|
|
44
44
|
readonly hint: "local";
|
|
45
45
|
};
|
|
46
|
-
readonly icon: "lucide:split";
|
|
46
|
+
readonly icon: "lucide:split@rot=90";
|
|
47
47
|
readonly declaredOutputPorts: readonly ["true", "false"];
|
|
48
48
|
constructor(name: string, predicate: (item: Item<TInputJson>, index: number, items: Items<TInputJson>, ctx: NodeExecutionContext<If<TInputJson>>) => boolean, id?: string | undefined);
|
|
49
49
|
}
|
|
@@ -88,7 +88,7 @@ declare class Split<TIn = unknown, TElem = unknown> implements RunnableNodeConfi
|
|
|
88
88
|
* Mirrors {@link MapData}'s empty-output behavior.
|
|
89
89
|
*/
|
|
90
90
|
readonly continueWhenEmptyOutput: true;
|
|
91
|
-
readonly icon: "
|
|
91
|
+
readonly icon: "builtin:split-rows";
|
|
92
92
|
constructor(name: string, getElements: (item: Item<TIn>, ctx: NodeExecutionContext<Split<TIn, TElem>>) => readonly TElem[], id?: string | undefined);
|
|
93
93
|
}
|
|
94
94
|
//#endregion
|
|
@@ -108,6 +108,7 @@ declare class MapData<TInputJson = unknown, TOutputJson = unknown> implements Ru
|
|
|
108
108
|
};
|
|
109
109
|
/** Zero mapped items should still allow downstream nodes to run. */
|
|
110
110
|
readonly continueWhenEmptyOutput: true;
|
|
111
|
+
readonly icon: "lucide:square-pen";
|
|
111
112
|
readonly keepBinaries: boolean;
|
|
112
113
|
constructor(name: string, map: (item: Item<TInputJson>, ctx: NodeExecutionContext<MapData<TInputJson, TOutputJson>>) => TOutputJson, options?: MapDataOptions);
|
|
113
114
|
get id(): string | undefined;
|
|
@@ -260,4 +261,4 @@ declare function definePlugin(options: DefinePluginOptions): CodemationPlugin &
|
|
|
260
261
|
}>;
|
|
261
262
|
//#endregion
|
|
262
263
|
export { defineCodemationApp as a, FriendlyCodemationExecutionConfig as i, DefinePluginOptions as n, definePlugin as o, FriendlyCodemationDatabaseConfig as r, workflow as s, DefineCodemationAppOptions as t };
|
|
263
|
-
//# sourceMappingURL=CodemationAuthoring.types-
|
|
264
|
+
//# sourceMappingURL=CodemationAuthoring.types-lUdxXYq-.d.ts.map
|
package/dist/{CodemationConfigNormalizer-B8RGUwAe.d.ts → CodemationConfigNormalizer-BWBp7mFB.d.ts}
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { C as CodemationContainerRegistration, m as CodemationConfig } from "./CodemationAppContext-
|
|
1
|
+
import { C as CodemationContainerRegistration, m as CodemationConfig } from "./CodemationAppContext-YgJRUHWF.js";
|
|
2
2
|
|
|
3
3
|
//#region src/presentation/config/CodemationConfigNormalizer.d.ts
|
|
4
4
|
type NormalizedCodemationConfig = CodemationConfig & Readonly<{
|
|
@@ -6,4 +6,4 @@ type NormalizedCodemationConfig = CodemationConfig & Readonly<{
|
|
|
6
6
|
}>;
|
|
7
7
|
//#endregion
|
|
8
8
|
export { NormalizedCodemationConfig as t };
|
|
9
|
-
//# sourceMappingURL=CodemationConfigNormalizer-
|
|
9
|
+
//# sourceMappingURL=CodemationConfigNormalizer-BWBp7mFB.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as NormalizedCodemationConfig } from "./CodemationConfigNormalizer-
|
|
1
|
+
import { t as NormalizedCodemationConfig } from "./CodemationConfigNormalizer-BWBp7mFB.js";
|
|
2
2
|
|
|
3
3
|
//#region src/presentation/server/CodemationConsumerAppResolver.d.ts
|
|
4
4
|
type CodemationConsumerApp = Readonly<{
|
|
@@ -63,4 +63,4 @@ declare class CodemationConsumerConfigLoader {
|
|
|
63
63
|
}
|
|
64
64
|
//#endregion
|
|
65
65
|
export { CodemationConsumerAppResolver as i, CodemationConsumerConfigResolution as n, CodemationConsumerApp as r, CodemationConsumerConfigLoader as t };
|
|
66
|
-
//# sourceMappingURL=CodemationConsumerConfigLoader-
|
|
66
|
+
//# sourceMappingURL=CodemationConsumerConfigLoader-Bka3v6lh.d.ts.map
|
package/dist/{CodemationPluginListMerger-Bgn1CIX9.d.ts → CodemationPluginListMerger-Oz-GAkxz.d.ts}
RENAMED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { $ as
|
|
2
|
-
import { C as CodemationContainerRegistration, l as CodemationPluginPackageMetadata, o as CodemationPlugin, r as AppConfig } from "./CodemationAppContext-
|
|
1
|
+
import { $ as TelemetryArtifactAttachment, B as NodeExecutionRequestHandler, H as WorkflowRepository, I as WorkflowDefinition, K as RunEvent, L as WorkflowId, M as RunId, Q as WorkflowRunDetailDto, R as BinaryStorage, U as Container, V as NodeExecutionScheduler, W as TypeToken, X as WorkflowActivationPolicy, at as RunPruneCandidate, et as TelemetryAttributes, it as RunCurrentState, j as PersistedRunPolicySnapshot, l as AnyCredentialType, n as Engine, nt as TelemetrySpanEventRecord, ot as RunSummary, q as RunEventBus, rt as PersistedRunState, st as Clock, tt as TelemetryMetricRecord } from "./index-BxIc_L4D.js";
|
|
2
|
+
import { C as CodemationContainerRegistration, l as CodemationPluginPackageMetadata, o as CodemationPlugin, r as AppConfig } from "./CodemationAppContext-YgJRUHWF.js";
|
|
3
3
|
import { a as CodemationAuthConfig, l as Logger, t as CodemationWhitelabelConfig, u as LoggerFactory } from "./CodemationWhitelabelConfig-D5rYcLlj.js";
|
|
4
4
|
import { t as LogLevelPolicy } from "./LogLevelPolicy-CkiJAH75.js";
|
|
5
|
-
import { t as CredentialStore } from "./CredentialServices-
|
|
6
|
-
import { n as PrismaMigrationDeployer, r as PrismaDatabaseClient } from "./AppConfigFactory-
|
|
5
|
+
import { t as CredentialStore } from "./CredentialServices-CKXPg5xu.js";
|
|
6
|
+
import { n as PrismaMigrationDeployer, r as PrismaDatabaseClient } from "./AppConfigFactory-D3k-R3Ch.js";
|
|
7
7
|
import "reflect-metadata";
|
|
8
8
|
import { Hono } from "hono";
|
|
9
9
|
|
|
@@ -197,6 +197,9 @@ interface TelemetrySpanRecord {
|
|
|
197
197
|
readonly attributes?: TelemetryAttributes;
|
|
198
198
|
readonly events?: ReadonlyArray<TelemetrySpanEventRecord>;
|
|
199
199
|
readonly retentionExpiresAt?: string;
|
|
200
|
+
readonly iterationId?: string;
|
|
201
|
+
readonly itemIndex?: number;
|
|
202
|
+
readonly parentInvocationId?: string;
|
|
200
203
|
}
|
|
201
204
|
interface TelemetrySpanUpsert {
|
|
202
205
|
readonly traceId: string;
|
|
@@ -220,6 +223,9 @@ interface TelemetrySpanUpsert {
|
|
|
220
223
|
readonly attributes?: TelemetryAttributes;
|
|
221
224
|
readonly events?: ReadonlyArray<TelemetrySpanEventRecord>;
|
|
222
225
|
readonly retentionExpiresAt?: string;
|
|
226
|
+
readonly iterationId?: string;
|
|
227
|
+
readonly itemIndex?: number;
|
|
228
|
+
readonly parentInvocationId?: string;
|
|
223
229
|
}
|
|
224
230
|
interface TelemetryArtifactRecord {
|
|
225
231
|
readonly artifactId: string;
|
|
@@ -268,6 +274,9 @@ interface TelemetryMetricPointRecord {
|
|
|
268
274
|
readonly modelName?: string;
|
|
269
275
|
readonly dimensions?: TelemetryAttributes;
|
|
270
276
|
readonly retentionExpiresAt?: string;
|
|
277
|
+
readonly iterationId?: string;
|
|
278
|
+
readonly itemIndex?: number;
|
|
279
|
+
readonly parentInvocationId?: string;
|
|
271
280
|
}
|
|
272
281
|
interface TelemetryMetricPointWrite extends TelemetryMetricRecord {
|
|
273
282
|
readonly traceId?: string;
|
|
@@ -282,6 +291,9 @@ interface TelemetryMetricPointWrite extends TelemetryMetricRecord {
|
|
|
282
291
|
readonly nodeRole?: string;
|
|
283
292
|
readonly modelName?: string;
|
|
284
293
|
readonly retentionExpiresAt?: string;
|
|
294
|
+
readonly iterationId?: string;
|
|
295
|
+
readonly itemIndex?: number;
|
|
296
|
+
readonly parentInvocationId?: string;
|
|
285
297
|
}
|
|
286
298
|
interface TelemetrySpanListQuery {
|
|
287
299
|
readonly traceId?: string;
|
|
@@ -671,4 +683,4 @@ declare class CodemationPluginListMerger {
|
|
|
671
683
|
}
|
|
672
684
|
//#endregion
|
|
673
685
|
export { Command as S, AppContainerFactory as _, WorkflowDebuggerOverlayRepository as a, Query as b, FrontendRuntime as c, LogLevelPolicyFactory as d, logLevelPolicyFactory as f, AppContainerLifecycle as g, DatabaseMigrations as h, HonoApiRouteRegistrar as i, WorkflowRunRetentionPruneScheduler as l, WorkflowRunRepository as m, CodemationBootstrapRequest as n, SessionVerifier as o, LogFilter as p, ApplicationTokens as r, WorkerRuntime as s, CodemationPluginListMerger as t, ServerLoggerFactory as u, WorkflowWebsocketServer as v, CommandBus as x, QueryBus as y };
|
|
674
|
-
//# sourceMappingURL=CodemationPluginListMerger-
|
|
686
|
+
//# sourceMappingURL=CodemationPluginListMerger-Oz-GAkxz.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { C as CredentialType, E as CredentialTypeRegistry, H as WorkflowRepository, I as WorkflowDefinition, S as CredentialSetupStatus, T as CredentialTypeId, _ as CredentialMaterialSourceKind, d as CredentialBindingKey, f as CredentialFieldSchema, g as CredentialJsonRecord, h as CredentialInstanceRecord, l as AnyCredentialType, m as CredentialInstanceId, p as CredentialHealth, u as CredentialBinding, v as CredentialOAuth2AuthDefinition, w as CredentialTypeDefinition, x as CredentialSessionService, y as CredentialRequirement } from "./index-
|
|
2
|
-
import { r as AppConfig } from "./CodemationAppContext-
|
|
1
|
+
import { C as CredentialType, E as CredentialTypeRegistry, H as WorkflowRepository, I as WorkflowDefinition, S as CredentialSetupStatus, T as CredentialTypeId, _ as CredentialMaterialSourceKind, d as CredentialBindingKey, f as CredentialFieldSchema, g as CredentialJsonRecord, h as CredentialInstanceRecord, l as AnyCredentialType, m as CredentialInstanceId, p as CredentialHealth, u as CredentialBinding, v as CredentialOAuth2AuthDefinition, w as CredentialTypeDefinition, x as CredentialSessionService, y as CredentialRequirement } from "./index-BxIc_L4D.js";
|
|
2
|
+
import { r as AppConfig } from "./CodemationAppContext-YgJRUHWF.js";
|
|
3
3
|
|
|
4
4
|
//#region src/domain/credentials/CredentialTypeRegistryImpl.d.ts
|
|
5
5
|
declare class CredentialTypeRegistryImpl implements CredentialTypeRegistry {
|
|
@@ -298,4 +298,4 @@ type MutableCredentialSessionService = CredentialSessionService & Readonly<{
|
|
|
298
298
|
}>;
|
|
299
299
|
//#endregion
|
|
300
300
|
export { CredentialInstanceService as a, CredentialSecretCipher as c, CredentialBindingService as i, CredentialFieldEnvOverlayService as l, CredentialType$1 as n, CredentialOAuth2ScopeResolver as o, CredentialRuntimeMaterialService as r, CredentialMaterialResolver as s, CredentialStore as t, CredentialTypeRegistryImpl as u };
|
|
301
|
-
//# sourceMappingURL=CredentialServices-
|
|
301
|
+
//# sourceMappingURL=CredentialServices-CKXPg5xu.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as AppConfig } from "./CodemationAppContext-
|
|
1
|
+
import { r as AppConfig } from "./CodemationAppContext-YgJRUHWF.js";
|
|
2
2
|
import { a as CodemationAuthConfig } from "./CodemationWhitelabelConfig-D5rYcLlj.js";
|
|
3
3
|
import { a as CodemationFrontendAuthSnapshot, n as InternalAuthBootstrap, r as FrontendAppConfig, t as PublicFrontendBootstrap } from "./PublicFrontendBootstrap-ci0Vwxrb.js";
|
|
4
4
|
|
|
@@ -90,4 +90,4 @@ declare class PublicFrontendBootstrapFactory {
|
|
|
90
90
|
}
|
|
91
91
|
//#endregion
|
|
92
92
|
export { WorkflowDto as a, CodemationFrontendAuthSnapshotFactory as i, InternalAuthBootstrapFactory as n, WorkflowSummary as o, FrontendAppConfigFactory as r, PublicFrontendBootstrapFactory as t };
|
|
93
|
-
//# sourceMappingURL=PublicFrontendBootstrapFactory-
|
|
93
|
+
//# sourceMappingURL=PublicFrontendBootstrapFactory-DkQoSYDo.d.ts.map
|
package/dist/authoring.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import "./index-
|
|
2
|
-
import { a as defineCodemationApp, i as FriendlyCodemationExecutionConfig, n as DefinePluginOptions, o as definePlugin, r as FriendlyCodemationDatabaseConfig, s as workflow, t as DefineCodemationAppOptions } from "./CodemationAuthoring.types-
|
|
3
|
-
import { _ as CodemationEngineExecutionLimitsConfig, b as CodemationSchedulerConfig, c as CodemationPluginContext, d as CodemationAppSchedulerConfig, f as CodemationAppSchedulerKind, g as CodemationDatabaseKind, h as CodemationDatabaseConfig, m as CodemationConfig, n as CodemationRegistrationContextBase, o as CodemationPlugin, p as CodemationApplicationRuntimeConfig, s as CodemationPluginConfig, t as CodemationAppContext, u as CodemationAppDefinition, v as CodemationEventBusConfig, x as CodemationSchedulerKind, y as CodemationEventBusKind } from "./CodemationAppContext-
|
|
1
|
+
import "./index-BxIc_L4D.js";
|
|
2
|
+
import { a as defineCodemationApp, i as FriendlyCodemationExecutionConfig, n as DefinePluginOptions, o as definePlugin, r as FriendlyCodemationDatabaseConfig, s as workflow, t as DefineCodemationAppOptions } from "./CodemationAuthoring.types-lUdxXYq-.js";
|
|
3
|
+
import { _ as CodemationEngineExecutionLimitsConfig, b as CodemationSchedulerConfig, c as CodemationPluginContext, d as CodemationAppSchedulerConfig, f as CodemationAppSchedulerKind, g as CodemationDatabaseKind, h as CodemationDatabaseConfig, m as CodemationConfig, n as CodemationRegistrationContextBase, o as CodemationPlugin, p as CodemationApplicationRuntimeConfig, s as CodemationPluginConfig, t as CodemationAppContext, u as CodemationAppDefinition, v as CodemationEventBusConfig, x as CodemationSchedulerKind, y as CodemationEventBusKind } from "./CodemationAppContext-YgJRUHWF.js";
|
|
4
4
|
import "./CodemationWhitelabelConfig-D5rYcLlj.js";
|
|
5
5
|
export { type CodemationAppContext, type CodemationAppDefinition, type CodemationAppSchedulerConfig, type CodemationAppSchedulerKind, type CodemationApplicationRuntimeConfig, type CodemationConfig, type CodemationDatabaseConfig, type CodemationDatabaseKind, type CodemationEngineExecutionLimitsConfig, type CodemationEventBusConfig, type CodemationEventBusKind, type CodemationPlugin, type CodemationPluginConfig, type CodemationPluginContext, type CodemationRegistrationContextBase, type CodemationSchedulerConfig, type CodemationSchedulerKind, type DefineCodemationAppOptions, type DefinePluginOptions, type FriendlyCodemationDatabaseConfig, type FriendlyCodemationExecutionConfig, defineCodemationApp, definePlugin, workflow };
|
package/dist/consumer.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import "./index-
|
|
2
|
-
import "./CodemationAppContext-
|
|
1
|
+
import "./index-BxIc_L4D.js";
|
|
2
|
+
import "./CodemationAppContext-YgJRUHWF.js";
|
|
3
3
|
import "./CodemationWhitelabelConfig-D5rYcLlj.js";
|
|
4
|
-
import "./CodemationConfigNormalizer-
|
|
5
|
-
import { i as CodemationConsumerAppResolver, n as CodemationConsumerConfigResolution, r as CodemationConsumerApp, t as CodemationConsumerConfigLoader } from "./CodemationConsumerConfigLoader-
|
|
4
|
+
import "./CodemationConfigNormalizer-BWBp7mFB.js";
|
|
5
|
+
import { i as CodemationConsumerAppResolver, n as CodemationConsumerConfigResolution, r as CodemationConsumerApp, t as CodemationConsumerConfigLoader } from "./CodemationConsumerConfigLoader-Bka3v6lh.js";
|
|
6
6
|
export { type CodemationConsumerApp, CodemationConsumerAppResolver, CodemationConsumerConfigLoader, type CodemationConsumerConfigResolution };
|
package/dist/credentials.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { b as CredentialSessionFactoryArgs, l as AnyCredentialType, p as CredentialHealth } from "./index-
|
|
2
|
-
import "./CodemationAppContext-
|
|
1
|
+
import { b as CredentialSessionFactoryArgs, l as AnyCredentialType, p as CredentialHealth } from "./index-BxIc_L4D.js";
|
|
2
|
+
import "./CodemationAppContext-YgJRUHWF.js";
|
|
3
3
|
import "./CodemationWhitelabelConfig-D5rYcLlj.js";
|
|
4
|
-
import { a as CredentialInstanceService, i as CredentialBindingService, n as CredentialType } from "./CredentialServices-
|
|
4
|
+
import { a as CredentialInstanceService, i as CredentialBindingService, n as CredentialType } from "./CredentialServices-CKXPg5xu.js";
|
|
5
5
|
|
|
6
6
|
//#region src/infrastructure/credentials/OpenAiApiKeyCredentialShapes.types.d.ts
|
|
7
7
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { I as WorkflowDefinition, U as Container } from "./index-
|
|
1
|
+
import { I as WorkflowDefinition, U as Container } from "./index-BxIc_L4D.js";
|
|
2
2
|
|
|
3
3
|
//#region src/presentation/server/CodemationTsyringeParamInfoReader.d.ts
|
|
4
4
|
declare class CodemationTsyringeParamInfoReader {
|