@executor-js/cli 0.0.2 → 0.1.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/dist/index.js +17 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -9,6 +9,18 @@ import fs from "fs/promises";
|
|
|
9
9
|
import path2 from "path";
|
|
10
10
|
import { Command } from "commander";
|
|
11
11
|
|
|
12
|
+
// ../sdk/src/index.ts
|
|
13
|
+
import { Context as Context2, Effect as Effect14, Layer, Schema as Schema14, Data as Data6, Option as Option2 } from "effect";
|
|
14
|
+
import {
|
|
15
|
+
HttpApi,
|
|
16
|
+
HttpApiBuilder,
|
|
17
|
+
HttpApiClient,
|
|
18
|
+
HttpApiEndpoint,
|
|
19
|
+
HttpApiGroup,
|
|
20
|
+
HttpApiMiddleware,
|
|
21
|
+
HttpApiSchema
|
|
22
|
+
} from "effect/unstable/httpapi";
|
|
23
|
+
|
|
12
24
|
// ../storage-core/src/factory.ts
|
|
13
25
|
import { Effect } from "effect";
|
|
14
26
|
|
|
@@ -689,6 +701,10 @@ var decodeAuthServerMetadata = Schema11.decodeUnknownEffect(
|
|
|
689
701
|
var decodeClientInformation = Schema11.decodeUnknownEffect(
|
|
690
702
|
OAuthClientInformationSchema
|
|
691
703
|
);
|
|
704
|
+
var DcrErrorBody = class extends Data5.TaggedError("DcrErrorBody") {
|
|
705
|
+
};
|
|
706
|
+
var DcrTransport = class extends Data5.TaggedError("DcrTransport") {
|
|
707
|
+
};
|
|
692
708
|
|
|
693
709
|
// ../sdk/src/oauth-service.ts
|
|
694
710
|
var OAuthAuthorizationServerMetadataJson = Schema12.Record(Schema12.String, Schema12.Unknown);
|
|
@@ -1138,7 +1154,7 @@ async function generateAction(opts) {
|
|
|
1138
1154
|
);
|
|
1139
1155
|
process.exit(1);
|
|
1140
1156
|
}
|
|
1141
|
-
const schema = collectSchemas(config.plugins);
|
|
1157
|
+
const schema = collectSchemas(config.plugins());
|
|
1142
1158
|
const result = await generateDrizzleSchema({
|
|
1143
1159
|
schema,
|
|
1144
1160
|
dialect: config.dialect,
|