@geekmidas/constructs 0.0.13 → 0.0.14
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/{EndpointFactory-Cgk1R0oO.d.mts → EndpointFactory-BU_R-9LH.d.mts} +8 -8
- package/dist/{EndpointFactory-Bf9JSWzI.d.cts → EndpointFactory-D0Ql2Ofm.d.cts} +8 -8
- package/dist/{HonoEndpointAdaptor-BDpi32mH.d.mts → HonoEndpointAdaptor-DANYfDu9.d.mts} +3 -3
- package/dist/{HonoEndpointAdaptor-B34kNobH.d.cts → HonoEndpointAdaptor-_uLz8Bak.d.cts} +3 -3
- package/dist/adaptors/aws.d.cts +1 -1
- package/dist/adaptors/aws.d.mts +1 -1
- package/dist/adaptors/hono.d.cts +2 -2
- package/dist/adaptors/hono.d.mts +2 -2
- package/dist/adaptors/testing.d.cts +1 -1
- package/dist/adaptors/testing.d.mts +1 -1
- package/dist/crons/Cron.d.cts +1 -1
- package/dist/crons/Cron.d.mts +1 -1
- package/dist/crons/CronBuilder.d.cts +1 -1
- package/dist/crons/CronBuilder.d.mts +1 -1
- package/dist/crons/index.d.cts +5 -5
- package/dist/crons/index.d.mts +5 -5
- package/dist/endpoints/AmazonApiGatewayEndpointAdaptor.d.cts +1 -1
- package/dist/endpoints/AmazonApiGatewayEndpointAdaptor.d.mts +1 -1
- package/dist/endpoints/AmazonApiGatewayV1EndpointAdaptor.d.cts +1 -1
- package/dist/endpoints/AmazonApiGatewayV1EndpointAdaptor.d.mts +1 -1
- package/dist/endpoints/AmazonApiGatewayV2EndpointAdaptor.d.cts +1 -1
- package/dist/endpoints/AmazonApiGatewayV2EndpointAdaptor.d.mts +1 -1
- package/dist/endpoints/Endpoint.d.cts +1 -1
- package/dist/endpoints/Endpoint.d.mts +1 -1
- package/dist/endpoints/EndpointBuilder.d.cts +1 -1
- package/dist/endpoints/EndpointBuilder.d.mts +1 -1
- package/dist/endpoints/EndpointFactory.d.cts +2 -2
- package/dist/endpoints/EndpointFactory.d.mts +2 -2
- package/dist/endpoints/HonoEndpointAdaptor.d.cts +2 -2
- package/dist/endpoints/HonoEndpointAdaptor.d.mts +2 -2
- package/dist/endpoints/TestEndpointAdaptor.d.cts +1 -1
- package/dist/endpoints/TestEndpointAdaptor.d.mts +1 -1
- package/dist/endpoints/audit.d.cts +1 -1
- package/dist/endpoints/audit.d.mts +1 -1
- package/dist/endpoints/helpers.d.cts +1 -1
- package/dist/endpoints/helpers.d.mts +1 -1
- package/dist/endpoints/index.d.cts +4 -4
- package/dist/endpoints/index.d.mts +4 -4
- package/dist/endpoints/processAudits.d.cts +1 -1
- package/dist/endpoints/processAudits.d.mts +1 -1
- package/dist/functions/index.d.cts +1 -1
- package/dist/functions/index.d.mts +1 -1
- package/dist/index-DRf5AP3P.d.mts +10 -0
- package/dist/index-twsdbZWU.d.cts +10 -0
- package/dist/subscribers/index.d.cts +2 -2
- package/dist/subscribers/index.d.mts +2 -2
- package/package.json +6 -6
- package/dist/index-Bomy7R9z.d.mts +0 -10
- package/dist/index-DRYfZHb3.d.cts +0 -10
|
@@ -2,7 +2,7 @@ import { Authorizer } from "./Authorizer-pmPvIVgv.mjs";
|
|
|
2
2
|
import { AuthorizeFn, SessionFn } from "./Endpoint-Bbs_sFvg.mjs";
|
|
3
3
|
import { EndpointBuilder } from "./EndpointBuilder-Csfyfjd7.mjs";
|
|
4
4
|
import { Service } from "@geekmidas/services";
|
|
5
|
-
import * as
|
|
5
|
+
import * as _geekmidas_audit7 from "@geekmidas/audit";
|
|
6
6
|
import { EventPublisher, MappedEvent } from "@geekmidas/events";
|
|
7
7
|
import { Logger } from "@geekmidas/logger";
|
|
8
8
|
|
|
@@ -35,12 +35,12 @@ declare class EndpointFactory<TServices extends Service[] = [], TBasePath extend
|
|
|
35
35
|
publisher<T extends EventPublisher<any>, TServiceName extends string = string>(publisher: Service<TServiceName, T>): EndpointFactory<TServices, TBasePath, TLogger, TSession, T, TServiceName, TAuthorizers>;
|
|
36
36
|
session<T>(session: SessionFn<TServices, TLogger, T>): EndpointFactory<TServices, TBasePath, TLogger, T, TEventPublisher, TEventPublisherServiceName, TAuthorizers>;
|
|
37
37
|
private createBuilder;
|
|
38
|
-
post<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "POST", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string,
|
|
39
|
-
get<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "GET", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string,
|
|
40
|
-
put<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "PUT", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string,
|
|
41
|
-
delete<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "DELETE", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string,
|
|
42
|
-
patch<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "PATCH", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string,
|
|
43
|
-
options<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "OPTIONS", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string,
|
|
38
|
+
post<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "POST", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string, _geekmidas_audit7.AuditableAction<string, unknown>, undefined, string>;
|
|
39
|
+
get<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "GET", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string, _geekmidas_audit7.AuditableAction<string, unknown>, undefined, string>;
|
|
40
|
+
put<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "PUT", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string, _geekmidas_audit7.AuditableAction<string, unknown>, undefined, string>;
|
|
41
|
+
delete<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "DELETE", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string, _geekmidas_audit7.AuditableAction<string, unknown>, undefined, string>;
|
|
42
|
+
patch<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "PATCH", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string, _geekmidas_audit7.AuditableAction<string, unknown>, undefined, string>;
|
|
43
|
+
options<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "OPTIONS", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string, _geekmidas_audit7.AuditableAction<string, unknown>, undefined, string>;
|
|
44
44
|
}
|
|
45
45
|
type RemoveTrailingSlash<T extends string> = T extends `${infer Rest}/` ? Rest extends '' ? T : Rest : T;
|
|
46
46
|
type JoinPaths<TBasePath extends string, TPath extends string> = RemoveTrailingSlash<TBasePath extends '' ? TPath : TPath extends '' ? TBasePath : TBasePath extends '/' ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest}` ? `${TBasePath}/${Rest}` : `${TBasePath}/${TPath}`>;
|
|
@@ -58,4 +58,4 @@ interface EndpointFactoryOptions<TServices extends Service[] = [], TBasePath ext
|
|
|
58
58
|
declare const e: EndpointFactory<[], "", Logger, unknown, undefined, string, readonly string[]>;
|
|
59
59
|
//#endregion
|
|
60
60
|
export { EndpointFactory, EndpointFactoryOptions, JoinPaths, RemoveTrailingSlash, e };
|
|
61
|
-
//# sourceMappingURL=EndpointFactory-
|
|
61
|
+
//# sourceMappingURL=EndpointFactory-BU_R-9LH.d.mts.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Authorizer } from "./Authorizer-BTmly8ps.cjs";
|
|
2
2
|
import { AuthorizeFn, SessionFn } from "./Endpoint-Bu8Phz6y.cjs";
|
|
3
3
|
import { EndpointBuilder } from "./EndpointBuilder-CPxmF_w7.cjs";
|
|
4
|
-
import * as
|
|
4
|
+
import * as _geekmidas_audit5 from "@geekmidas/audit";
|
|
5
5
|
import { EventPublisher, MappedEvent } from "@geekmidas/events";
|
|
6
6
|
import { Logger } from "@geekmidas/logger";
|
|
7
7
|
import { Service } from "@geekmidas/services";
|
|
@@ -35,12 +35,12 @@ declare class EndpointFactory<TServices extends Service[] = [], TBasePath extend
|
|
|
35
35
|
publisher<T extends EventPublisher<any>, TServiceName extends string = string>(publisher: Service<TServiceName, T>): EndpointFactory<TServices, TBasePath, TLogger, TSession, T, TServiceName, TAuthorizers>;
|
|
36
36
|
session<T>(session: SessionFn<TServices, TLogger, T>): EndpointFactory<TServices, TBasePath, TLogger, T, TEventPublisher, TEventPublisherServiceName, TAuthorizers>;
|
|
37
37
|
private createBuilder;
|
|
38
|
-
post<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "POST", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string,
|
|
39
|
-
get<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "GET", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string,
|
|
40
|
-
put<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "PUT", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string,
|
|
41
|
-
delete<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "DELETE", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string,
|
|
42
|
-
patch<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "PATCH", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string,
|
|
43
|
-
options<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "OPTIONS", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string,
|
|
38
|
+
post<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "POST", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string, _geekmidas_audit5.AuditableAction<string, unknown>, undefined, string>;
|
|
39
|
+
get<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "GET", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string, _geekmidas_audit5.AuditableAction<string, unknown>, undefined, string>;
|
|
40
|
+
put<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "PUT", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string, _geekmidas_audit5.AuditableAction<string, unknown>, undefined, string>;
|
|
41
|
+
delete<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "DELETE", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string, _geekmidas_audit5.AuditableAction<string, unknown>, undefined, string>;
|
|
42
|
+
patch<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "PATCH", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string, _geekmidas_audit5.AuditableAction<string, unknown>, undefined, string>;
|
|
43
|
+
options<TPath extends string>(path: TPath): EndpointBuilder<RemoveTrailingSlash<TBasePath extends "" ? TPath : TPath extends "" ? TBasePath : TBasePath extends "/" ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest_1}` ? `${TBasePath}/${Rest_1}` : `${TBasePath}/${TPath}`>, "OPTIONS", {}, TServices, TLogger, undefined, TSession, TEventPublisher, TEventPublisherServiceName, TAuthorizers, undefined, string, _geekmidas_audit5.AuditableAction<string, unknown>, undefined, string>;
|
|
44
44
|
}
|
|
45
45
|
type RemoveTrailingSlash<T extends string> = T extends `${infer Rest}/` ? Rest extends '' ? T : Rest : T;
|
|
46
46
|
type JoinPaths<TBasePath extends string, TPath extends string> = RemoveTrailingSlash<TBasePath extends '' ? TPath : TPath extends '' ? TBasePath : TBasePath extends '/' ? TPath extends `/${string}` ? TPath : `/${TPath}` : TBasePath extends `${infer Base}/` ? TPath extends `/${infer Rest}` ? `${Base}/${Rest}` : `${Base}/${TPath}` : TPath extends `/${infer Rest}` ? `${TBasePath}/${Rest}` : `${TBasePath}/${TPath}`>;
|
|
@@ -58,4 +58,4 @@ interface EndpointFactoryOptions<TServices extends Service[] = [], TBasePath ext
|
|
|
58
58
|
declare const e: EndpointFactory<[], "", Logger, unknown, undefined, string, readonly string[]>;
|
|
59
59
|
//#endregion
|
|
60
60
|
export { EndpointFactory, EndpointFactoryOptions, JoinPaths, RemoveTrailingSlash, e };
|
|
61
|
-
//# sourceMappingURL=EndpointFactory-
|
|
61
|
+
//# sourceMappingURL=EndpointFactory-D0Ql2Ofm.d.cts.map
|
|
@@ -7,7 +7,7 @@ import { EnvironmentParser } from "@geekmidas/envkit";
|
|
|
7
7
|
import { EventPublisher } from "@geekmidas/events";
|
|
8
8
|
import { Logger } from "@geekmidas/logger";
|
|
9
9
|
import { StandardSchemaV1 } from "@standard-schema/spec";
|
|
10
|
-
import * as
|
|
10
|
+
import * as hono_types4 from "hono/types";
|
|
11
11
|
|
|
12
12
|
//#region src/endpoints/HonoEndpointAdaptor.d.ts
|
|
13
13
|
interface HonoEndpointOptions {
|
|
@@ -33,11 +33,11 @@ declare class HonoEndpoint<TRoute extends string, TMethod extends HttpMethod, TI
|
|
|
33
33
|
static validate<T extends StandardSchemaV1>(c: Context<any, string, {}>, data: unknown, schema?: T): Promise<unknown>;
|
|
34
34
|
addRoute(serviceDiscovery: ServiceDiscovery<ServiceRecord<TServices>, TLogger>, app: Hono): void;
|
|
35
35
|
static applyEventMiddleware(app: Hono, serviceDiscovery: ServiceDiscovery<any, any>): void;
|
|
36
|
-
static fromRoutes<TLogger extends Logger, TServices extends Service[]>(routes: string[], envParser: EnvironmentParser<{}>, app: Hono<
|
|
36
|
+
static fromRoutes<TLogger extends Logger, TServices extends Service[]>(routes: string[], envParser: EnvironmentParser<{}>, app: Hono<hono_types4.BlankEnv, hono_types4.BlankSchema, "/"> | undefined, logger: TLogger, cwd?: string, options?: HonoEndpointOptions): Promise<Hono>;
|
|
37
37
|
static addRoutes<TServices extends Service[] = [], TLogger extends Logger = Logger>(endpoints: Endpoint<string, HttpMethod, any, any, TServices, TLogger>[], serviceDiscovery: ServiceDiscovery<ServiceRecord<TServices>, TLogger>, app: Hono, options?: HonoEndpointOptions): void;
|
|
38
38
|
static addRoute<TRoute extends string, TMethod extends HttpMethod, TInput extends EndpointSchemas = {}, TOutSchema extends StandardSchemaV1 | undefined = undefined, TServices extends Service[] = [], TLogger extends Logger = Logger, TSession = unknown, TEventPublisher extends EventPublisher<any> | undefined = undefined, TEventPublisherServiceName extends string = string, TAuditStorage extends AuditStorage | undefined = undefined, TAuditStorageServiceName extends string = string, TAuditAction extends AuditableAction<string, unknown> = AuditableAction<string, unknown>, TDatabase = undefined, TDatabaseServiceName extends string = string>(endpoint: Endpoint<TRoute, TMethod, TInput, TOutSchema, TServices, TLogger, TSession, TEventPublisher, TEventPublisherServiceName, TAuditStorage, TAuditStorageServiceName, TAuditAction, TDatabase, TDatabaseServiceName>, serviceDiscovery: ServiceDiscovery<ServiceRecord<TServices>, TLogger>, app: Hono): void;
|
|
39
39
|
static addDocsRoute<TServices extends Service[] = [], TLogger extends Logger = Logger>(endpoints: Endpoint<string, HttpMethod, any, any, TServices, TLogger>[], app: Hono, docsPath: string, openApiOptions?: HonoEndpointOptions['openApiOptions']): void;
|
|
40
40
|
}
|
|
41
41
|
//#endregion
|
|
42
42
|
export { HonoEndpoint, HonoEndpointOptions };
|
|
43
|
-
//# sourceMappingURL=HonoEndpointAdaptor-
|
|
43
|
+
//# sourceMappingURL=HonoEndpointAdaptor-DANYfDu9.d.mts.map
|
|
@@ -6,7 +6,7 @@ import { Logger } from "@geekmidas/logger";
|
|
|
6
6
|
import { Service, ServiceDiscovery, ServiceRecord } from "@geekmidas/services";
|
|
7
7
|
import { StandardSchemaV1 } from "@standard-schema/spec";
|
|
8
8
|
import { EnvironmentParser } from "@geekmidas/envkit";
|
|
9
|
-
import * as
|
|
9
|
+
import * as hono_types11 from "hono/types";
|
|
10
10
|
import { Context, Hono } from "hono";
|
|
11
11
|
|
|
12
12
|
//#region src/endpoints/HonoEndpointAdaptor.d.ts
|
|
@@ -33,11 +33,11 @@ declare class HonoEndpoint<TRoute extends string, TMethod extends HttpMethod, TI
|
|
|
33
33
|
static validate<T extends StandardSchemaV1>(c: Context<any, string, {}>, data: unknown, schema?: T): Promise<unknown>;
|
|
34
34
|
addRoute(serviceDiscovery: ServiceDiscovery<ServiceRecord<TServices>, TLogger>, app: Hono): void;
|
|
35
35
|
static applyEventMiddleware(app: Hono, serviceDiscovery: ServiceDiscovery<any, any>): void;
|
|
36
|
-
static fromRoutes<TLogger extends Logger, TServices extends Service[]>(routes: string[], envParser: EnvironmentParser<{}>, app: Hono<
|
|
36
|
+
static fromRoutes<TLogger extends Logger, TServices extends Service[]>(routes: string[], envParser: EnvironmentParser<{}>, app: Hono<hono_types11.BlankEnv, hono_types11.BlankSchema, "/"> | undefined, logger: TLogger, cwd?: string, options?: HonoEndpointOptions): Promise<Hono>;
|
|
37
37
|
static addRoutes<TServices extends Service[] = [], TLogger extends Logger = Logger>(endpoints: Endpoint<string, HttpMethod, any, any, TServices, TLogger>[], serviceDiscovery: ServiceDiscovery<ServiceRecord<TServices>, TLogger>, app: Hono, options?: HonoEndpointOptions): void;
|
|
38
38
|
static addRoute<TRoute extends string, TMethod extends HttpMethod, TInput extends EndpointSchemas = {}, TOutSchema extends StandardSchemaV1 | undefined = undefined, TServices extends Service[] = [], TLogger extends Logger = Logger, TSession = unknown, TEventPublisher extends EventPublisher<any> | undefined = undefined, TEventPublisherServiceName extends string = string, TAuditStorage extends AuditStorage | undefined = undefined, TAuditStorageServiceName extends string = string, TAuditAction extends AuditableAction<string, unknown> = AuditableAction<string, unknown>, TDatabase = undefined, TDatabaseServiceName extends string = string>(endpoint: Endpoint<TRoute, TMethod, TInput, TOutSchema, TServices, TLogger, TSession, TEventPublisher, TEventPublisherServiceName, TAuditStorage, TAuditStorageServiceName, TAuditAction, TDatabase, TDatabaseServiceName>, serviceDiscovery: ServiceDiscovery<ServiceRecord<TServices>, TLogger>, app: Hono): void;
|
|
39
39
|
static addDocsRoute<TServices extends Service[] = [], TLogger extends Logger = Logger>(endpoints: Endpoint<string, HttpMethod, any, any, TServices, TLogger>[], app: Hono, docsPath: string, openApiOptions?: HonoEndpointOptions['openApiOptions']): void;
|
|
40
40
|
}
|
|
41
41
|
//#endregion
|
|
42
42
|
export { HonoEndpoint, HonoEndpointOptions };
|
|
43
|
-
//# sourceMappingURL=HonoEndpointAdaptor-
|
|
43
|
+
//# sourceMappingURL=HonoEndpointAdaptor-_uLz8Bak.d.cts.map
|
package/dist/adaptors/aws.d.cts
CHANGED
|
@@ -3,7 +3,7 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-VI1TB3Mh.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DUZMbEr3.cjs";
|
|
5
5
|
import "../FunctionBuilder-CjVEFTYC.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-twsdbZWU.cjs";
|
|
7
7
|
import "../Authorizer-BTmly8ps.cjs";
|
|
8
8
|
import "../Endpoint-Bu8Phz6y.cjs";
|
|
9
9
|
import "../AmazonApiGatewayEndpointAdaptor-ro0RMLzr.cjs";
|
package/dist/adaptors/aws.d.mts
CHANGED
|
@@ -3,7 +3,7 @@ import "../types-DKf0juBf.mjs";
|
|
|
3
3
|
import "../Function-V9M9UVHp.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CbDnPZpD.mjs";
|
|
5
5
|
import "../FunctionBuilder-D1ofSeMd.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-DRf5AP3P.mjs";
|
|
7
7
|
import "../Authorizer-pmPvIVgv.mjs";
|
|
8
8
|
import "../Endpoint-Bbs_sFvg.mjs";
|
|
9
9
|
import "../AmazonApiGatewayEndpointAdaptor-4hPy5vty.mjs";
|
package/dist/adaptors/hono.d.cts
CHANGED
|
@@ -3,8 +3,8 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-VI1TB3Mh.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DUZMbEr3.cjs";
|
|
5
5
|
import "../FunctionBuilder-CjVEFTYC.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-twsdbZWU.cjs";
|
|
7
7
|
import "../Authorizer-BTmly8ps.cjs";
|
|
8
8
|
import "../Endpoint-Bu8Phz6y.cjs";
|
|
9
|
-
import { HonoEndpoint } from "../HonoEndpointAdaptor-
|
|
9
|
+
import { HonoEndpoint } from "../HonoEndpointAdaptor-_uLz8Bak.cjs";
|
|
10
10
|
export { HonoEndpoint };
|
package/dist/adaptors/hono.d.mts
CHANGED
|
@@ -3,8 +3,8 @@ import "../types-DKf0juBf.mjs";
|
|
|
3
3
|
import "../Function-V9M9UVHp.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CbDnPZpD.mjs";
|
|
5
5
|
import "../FunctionBuilder-D1ofSeMd.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-DRf5AP3P.mjs";
|
|
7
7
|
import "../Authorizer-pmPvIVgv.mjs";
|
|
8
8
|
import "../Endpoint-Bbs_sFvg.mjs";
|
|
9
|
-
import { HonoEndpoint } from "../HonoEndpointAdaptor-
|
|
9
|
+
import { HonoEndpoint } from "../HonoEndpointAdaptor-DANYfDu9.mjs";
|
|
10
10
|
export { HonoEndpoint };
|
|
@@ -3,7 +3,7 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-VI1TB3Mh.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DUZMbEr3.cjs";
|
|
5
5
|
import "../FunctionBuilder-CjVEFTYC.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-twsdbZWU.cjs";
|
|
7
7
|
import "../Authorizer-BTmly8ps.cjs";
|
|
8
8
|
import "../Endpoint-Bu8Phz6y.cjs";
|
|
9
9
|
import { TestEndpointAdaptor } from "../TestEndpointAdaptor-H5To8PH7.cjs";
|
|
@@ -3,7 +3,7 @@ import "../types-DKf0juBf.mjs";
|
|
|
3
3
|
import "../Function-V9M9UVHp.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CbDnPZpD.mjs";
|
|
5
5
|
import "../FunctionBuilder-D1ofSeMd.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-DRf5AP3P.mjs";
|
|
7
7
|
import "../Authorizer-pmPvIVgv.mjs";
|
|
8
8
|
import "../Endpoint-Bbs_sFvg.mjs";
|
|
9
9
|
import { TestEndpointAdaptor } from "../TestEndpointAdaptor-jxn68ayg.mjs";
|
package/dist/crons/Cron.d.cts
CHANGED
|
@@ -2,6 +2,6 @@ import "../Construct-dI_rgdSp.cjs";
|
|
|
2
2
|
import "../Function-VI1TB3Mh.cjs";
|
|
3
3
|
import "../BaseFunctionBuilder-DUZMbEr3.cjs";
|
|
4
4
|
import "../FunctionBuilder-CjVEFTYC.cjs";
|
|
5
|
-
import "../index-
|
|
5
|
+
import "../index-twsdbZWU.cjs";
|
|
6
6
|
import { Cron, CronExpression, RateExpression, ScheduleExpression } from "../Cron-COdfP0Jd.cjs";
|
|
7
7
|
export { Cron, CronExpression, RateExpression, ScheduleExpression };
|
package/dist/crons/Cron.d.mts
CHANGED
|
@@ -2,6 +2,6 @@ import "../Construct-ZPqE0vhn.mjs";
|
|
|
2
2
|
import "../Function-V9M9UVHp.mjs";
|
|
3
3
|
import "../BaseFunctionBuilder-CbDnPZpD.mjs";
|
|
4
4
|
import "../FunctionBuilder-D1ofSeMd.mjs";
|
|
5
|
-
import "../index-
|
|
5
|
+
import "../index-DRf5AP3P.mjs";
|
|
6
6
|
import { Cron, CronExpression, RateExpression, ScheduleExpression } from "../Cron-D8cn_ahj.mjs";
|
|
7
7
|
export { Cron, CronExpression, RateExpression, ScheduleExpression };
|
|
@@ -2,7 +2,7 @@ import "../Construct-dI_rgdSp.cjs";
|
|
|
2
2
|
import "../Function-VI1TB3Mh.cjs";
|
|
3
3
|
import "../BaseFunctionBuilder-DUZMbEr3.cjs";
|
|
4
4
|
import "../FunctionBuilder-CjVEFTYC.cjs";
|
|
5
|
-
import "../index-
|
|
5
|
+
import "../index-twsdbZWU.cjs";
|
|
6
6
|
import "../Cron-COdfP0Jd.cjs";
|
|
7
7
|
import { CronBuilder } from "../CronBuilder-DntF6H3A.cjs";
|
|
8
8
|
export { CronBuilder };
|
|
@@ -2,7 +2,7 @@ import "../Construct-ZPqE0vhn.mjs";
|
|
|
2
2
|
import "../Function-V9M9UVHp.mjs";
|
|
3
3
|
import "../BaseFunctionBuilder-CbDnPZpD.mjs";
|
|
4
4
|
import "../FunctionBuilder-D1ofSeMd.mjs";
|
|
5
|
-
import "../index-
|
|
5
|
+
import "../index-DRf5AP3P.mjs";
|
|
6
6
|
import "../Cron-D8cn_ahj.mjs";
|
|
7
7
|
import { CronBuilder } from "../CronBuilder-DoMnSs_0.mjs";
|
|
8
8
|
export { CronBuilder };
|
package/dist/crons/index.d.cts
CHANGED
|
@@ -2,15 +2,15 @@ import "../Construct-dI_rgdSp.cjs";
|
|
|
2
2
|
import "../Function-VI1TB3Mh.cjs";
|
|
3
3
|
import "../BaseFunctionBuilder-DUZMbEr3.cjs";
|
|
4
4
|
import "../FunctionBuilder-CjVEFTYC.cjs";
|
|
5
|
-
import "../index-
|
|
5
|
+
import "../index-twsdbZWU.cjs";
|
|
6
6
|
import { Cron, CronExpression, RateExpression, ScheduleExpression } from "../Cron-COdfP0Jd.cjs";
|
|
7
7
|
import { CronBuilder } from "../CronBuilder-DntF6H3A.cjs";
|
|
8
|
-
import * as
|
|
9
|
-
import * as
|
|
10
|
-
import * as
|
|
8
|
+
import * as _geekmidas_logger2 from "@geekmidas/logger";
|
|
9
|
+
import * as _geekmidas_services1 from "@geekmidas/services";
|
|
10
|
+
import * as _geekmidas_schema0 from "@geekmidas/schema";
|
|
11
11
|
|
|
12
12
|
//#region src/crons/index.d.ts
|
|
13
|
-
declare const c: CronBuilder<
|
|
13
|
+
declare const c: CronBuilder<_geekmidas_schema0.ComposableStandardSchema, _geekmidas_services1.Service<string, unknown>[], _geekmidas_logger2.Logger, undefined, undefined, string, undefined, string>;
|
|
14
14
|
//#endregion
|
|
15
15
|
export { Cron, CronBuilder, CronExpression, RateExpression, ScheduleExpression, c };
|
|
16
16
|
//# sourceMappingURL=index.d.cts.map
|
package/dist/crons/index.d.mts
CHANGED
|
@@ -2,15 +2,15 @@ import "../Construct-ZPqE0vhn.mjs";
|
|
|
2
2
|
import "../Function-V9M9UVHp.mjs";
|
|
3
3
|
import "../BaseFunctionBuilder-CbDnPZpD.mjs";
|
|
4
4
|
import "../FunctionBuilder-D1ofSeMd.mjs";
|
|
5
|
-
import "../index-
|
|
5
|
+
import "../index-DRf5AP3P.mjs";
|
|
6
6
|
import { Cron, CronExpression, RateExpression, ScheduleExpression } from "../Cron-D8cn_ahj.mjs";
|
|
7
7
|
import { CronBuilder } from "../CronBuilder-DoMnSs_0.mjs";
|
|
8
|
-
import * as
|
|
9
|
-
import * as
|
|
10
|
-
import * as
|
|
8
|
+
import * as _geekmidas_services14 from "@geekmidas/services";
|
|
9
|
+
import * as _geekmidas_logger15 from "@geekmidas/logger";
|
|
10
|
+
import * as _geekmidas_schema13 from "@geekmidas/schema";
|
|
11
11
|
|
|
12
12
|
//#region src/crons/index.d.ts
|
|
13
|
-
declare const c: CronBuilder<
|
|
13
|
+
declare const c: CronBuilder<_geekmidas_schema13.ComposableStandardSchema, _geekmidas_services14.Service<string, unknown>[], _geekmidas_logger15.Logger, undefined, undefined, string, undefined, string>;
|
|
14
14
|
//#endregion
|
|
15
15
|
export { Cron, CronBuilder, CronExpression, RateExpression, ScheduleExpression, c };
|
|
16
16
|
//# sourceMappingURL=index.d.mts.map
|
|
@@ -3,7 +3,7 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-VI1TB3Mh.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DUZMbEr3.cjs";
|
|
5
5
|
import "../FunctionBuilder-CjVEFTYC.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-twsdbZWU.cjs";
|
|
7
7
|
import "../Authorizer-BTmly8ps.cjs";
|
|
8
8
|
import "../Endpoint-Bu8Phz6y.cjs";
|
|
9
9
|
import { AmazonApiGatewayEndpoint, AmazonApiGatewayEndpointHandlerResponse, AmazonApiGatewayV1EndpointHandler, AmazonApiGatewayV2EndpointHandler, Event, GetInputResponse, HandlerEvent, LoggerContext } from "../AmazonApiGatewayEndpointAdaptor-ro0RMLzr.cjs";
|
|
@@ -3,7 +3,7 @@ import "../types-DKf0juBf.mjs";
|
|
|
3
3
|
import "../Function-V9M9UVHp.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CbDnPZpD.mjs";
|
|
5
5
|
import "../FunctionBuilder-D1ofSeMd.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-DRf5AP3P.mjs";
|
|
7
7
|
import "../Authorizer-pmPvIVgv.mjs";
|
|
8
8
|
import "../Endpoint-Bbs_sFvg.mjs";
|
|
9
9
|
import { AmazonApiGatewayEndpoint, AmazonApiGatewayEndpointHandlerResponse, AmazonApiGatewayV1EndpointHandler, AmazonApiGatewayV2EndpointHandler, Event, GetInputResponse, HandlerEvent, LoggerContext } from "../AmazonApiGatewayEndpointAdaptor-4hPy5vty.mjs";
|
|
@@ -3,7 +3,7 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-VI1TB3Mh.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DUZMbEr3.cjs";
|
|
5
5
|
import "../FunctionBuilder-CjVEFTYC.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-twsdbZWU.cjs";
|
|
7
7
|
import "../Authorizer-BTmly8ps.cjs";
|
|
8
8
|
import "../Endpoint-Bu8Phz6y.cjs";
|
|
9
9
|
import "../AmazonApiGatewayEndpointAdaptor-ro0RMLzr.cjs";
|
|
@@ -3,7 +3,7 @@ import "../types-DKf0juBf.mjs";
|
|
|
3
3
|
import "../Function-V9M9UVHp.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CbDnPZpD.mjs";
|
|
5
5
|
import "../FunctionBuilder-D1ofSeMd.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-DRf5AP3P.mjs";
|
|
7
7
|
import "../Authorizer-pmPvIVgv.mjs";
|
|
8
8
|
import "../Endpoint-Bbs_sFvg.mjs";
|
|
9
9
|
import "../AmazonApiGatewayEndpointAdaptor-4hPy5vty.mjs";
|
|
@@ -3,7 +3,7 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-VI1TB3Mh.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DUZMbEr3.cjs";
|
|
5
5
|
import "../FunctionBuilder-CjVEFTYC.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-twsdbZWU.cjs";
|
|
7
7
|
import "../Authorizer-BTmly8ps.cjs";
|
|
8
8
|
import "../Endpoint-Bu8Phz6y.cjs";
|
|
9
9
|
import "../AmazonApiGatewayEndpointAdaptor-ro0RMLzr.cjs";
|
|
@@ -3,7 +3,7 @@ import "../types-DKf0juBf.mjs";
|
|
|
3
3
|
import "../Function-V9M9UVHp.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CbDnPZpD.mjs";
|
|
5
5
|
import "../FunctionBuilder-D1ofSeMd.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-DRf5AP3P.mjs";
|
|
7
7
|
import "../Authorizer-pmPvIVgv.mjs";
|
|
8
8
|
import "../Endpoint-Bbs_sFvg.mjs";
|
|
9
9
|
import "../AmazonApiGatewayEndpointAdaptor-4hPy5vty.mjs";
|
|
@@ -3,7 +3,7 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-VI1TB3Mh.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DUZMbEr3.cjs";
|
|
5
5
|
import "../FunctionBuilder-CjVEFTYC.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-twsdbZWU.cjs";
|
|
7
7
|
import "../Authorizer-BTmly8ps.cjs";
|
|
8
8
|
import { AuthorizeContext, AuthorizeFn, ConvertRouteParams, CookieFn, CookieOptions, Endpoint, EndpointContext, EndpointEvent, EndpointHandler, EndpointHeaders, EndpointInput, EndpointOpenApiSchema, EndpointOptions, EndpointOutput, EndpointSchemas, HeaderFn, MultiHeaderFn, ResponseBuilder, ResponseMetadata, ResponseWithMetadata, SessionContext, SessionFn, SingleHeaderFn, SuccessStatus } from "../Endpoint-Bu8Phz6y.cjs";
|
|
9
9
|
export { AuthorizeContext, AuthorizeFn, ConvertRouteParams, CookieFn, CookieOptions, Endpoint, EndpointContext, EndpointEvent, EndpointHandler, EndpointHeaders, EndpointInput, EndpointOpenApiSchema, EndpointOptions, EndpointOutput, EndpointSchemas, HeaderFn, MultiHeaderFn, ResponseBuilder, ResponseMetadata, ResponseWithMetadata, SessionContext, SessionFn, SingleHeaderFn, SuccessStatus };
|
|
@@ -3,7 +3,7 @@ import "../types-DKf0juBf.mjs";
|
|
|
3
3
|
import "../Function-V9M9UVHp.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CbDnPZpD.mjs";
|
|
5
5
|
import "../FunctionBuilder-D1ofSeMd.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-DRf5AP3P.mjs";
|
|
7
7
|
import "../Authorizer-pmPvIVgv.mjs";
|
|
8
8
|
import { AuthorizeContext, AuthorizeFn, ConvertRouteParams, CookieFn, CookieOptions, Endpoint, EndpointContext, EndpointEvent, EndpointHandler, EndpointHeaders, EndpointInput, EndpointOpenApiSchema, EndpointOptions, EndpointOutput, EndpointSchemas, HeaderFn, MultiHeaderFn, ResponseBuilder, ResponseMetadata, ResponseWithMetadata, SessionContext, SessionFn, SingleHeaderFn, SuccessStatus } from "../Endpoint-Bbs_sFvg.mjs";
|
|
9
9
|
export { AuthorizeContext, AuthorizeFn, ConvertRouteParams, CookieFn, CookieOptions, Endpoint, EndpointContext, EndpointEvent, EndpointHandler, EndpointHeaders, EndpointInput, EndpointOpenApiSchema, EndpointOptions, EndpointOutput, EndpointSchemas, HeaderFn, MultiHeaderFn, ResponseBuilder, ResponseMetadata, ResponseWithMetadata, SessionContext, SessionFn, SingleHeaderFn, SuccessStatus };
|
|
@@ -3,7 +3,7 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-VI1TB3Mh.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DUZMbEr3.cjs";
|
|
5
5
|
import "../FunctionBuilder-CjVEFTYC.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-twsdbZWU.cjs";
|
|
7
7
|
import "../Authorizer-BTmly8ps.cjs";
|
|
8
8
|
import "../Endpoint-Bu8Phz6y.cjs";
|
|
9
9
|
import { EndpointBuilder } from "../EndpointBuilder-CPxmF_w7.cjs";
|
|
@@ -3,7 +3,7 @@ import "../types-DKf0juBf.mjs";
|
|
|
3
3
|
import "../Function-V9M9UVHp.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CbDnPZpD.mjs";
|
|
5
5
|
import "../FunctionBuilder-D1ofSeMd.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-DRf5AP3P.mjs";
|
|
7
7
|
import "../Authorizer-pmPvIVgv.mjs";
|
|
8
8
|
import "../Endpoint-Bbs_sFvg.mjs";
|
|
9
9
|
import { EndpointBuilder } from "../EndpointBuilder-Csfyfjd7.mjs";
|
|
@@ -3,9 +3,9 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-VI1TB3Mh.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DUZMbEr3.cjs";
|
|
5
5
|
import "../FunctionBuilder-CjVEFTYC.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-twsdbZWU.cjs";
|
|
7
7
|
import "../Authorizer-BTmly8ps.cjs";
|
|
8
8
|
import "../Endpoint-Bu8Phz6y.cjs";
|
|
9
9
|
import "../EndpointBuilder-CPxmF_w7.cjs";
|
|
10
|
-
import { EndpointFactory, EndpointFactoryOptions, JoinPaths, RemoveTrailingSlash, e } from "../EndpointFactory-
|
|
10
|
+
import { EndpointFactory, EndpointFactoryOptions, JoinPaths, RemoveTrailingSlash, e } from "../EndpointFactory-D0Ql2Ofm.cjs";
|
|
11
11
|
export { EndpointFactory, EndpointFactoryOptions, JoinPaths, RemoveTrailingSlash, e };
|
|
@@ -3,9 +3,9 @@ import "../types-DKf0juBf.mjs";
|
|
|
3
3
|
import "../Function-V9M9UVHp.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CbDnPZpD.mjs";
|
|
5
5
|
import "../FunctionBuilder-D1ofSeMd.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-DRf5AP3P.mjs";
|
|
7
7
|
import "../Authorizer-pmPvIVgv.mjs";
|
|
8
8
|
import "../Endpoint-Bbs_sFvg.mjs";
|
|
9
9
|
import "../EndpointBuilder-Csfyfjd7.mjs";
|
|
10
|
-
import { EndpointFactory, EndpointFactoryOptions, JoinPaths, RemoveTrailingSlash, e } from "../EndpointFactory-
|
|
10
|
+
import { EndpointFactory, EndpointFactoryOptions, JoinPaths, RemoveTrailingSlash, e } from "../EndpointFactory-BU_R-9LH.mjs";
|
|
11
11
|
export { EndpointFactory, EndpointFactoryOptions, JoinPaths, RemoveTrailingSlash, e };
|
|
@@ -3,8 +3,8 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-VI1TB3Mh.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DUZMbEr3.cjs";
|
|
5
5
|
import "../FunctionBuilder-CjVEFTYC.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-twsdbZWU.cjs";
|
|
7
7
|
import "../Authorizer-BTmly8ps.cjs";
|
|
8
8
|
import "../Endpoint-Bu8Phz6y.cjs";
|
|
9
|
-
import { HonoEndpoint, HonoEndpointOptions } from "../HonoEndpointAdaptor-
|
|
9
|
+
import { HonoEndpoint, HonoEndpointOptions } from "../HonoEndpointAdaptor-_uLz8Bak.cjs";
|
|
10
10
|
export { HonoEndpoint, HonoEndpointOptions };
|
|
@@ -3,8 +3,8 @@ import "../types-DKf0juBf.mjs";
|
|
|
3
3
|
import "../Function-V9M9UVHp.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CbDnPZpD.mjs";
|
|
5
5
|
import "../FunctionBuilder-D1ofSeMd.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-DRf5AP3P.mjs";
|
|
7
7
|
import "../Authorizer-pmPvIVgv.mjs";
|
|
8
8
|
import "../Endpoint-Bbs_sFvg.mjs";
|
|
9
|
-
import { HonoEndpoint, HonoEndpointOptions } from "../HonoEndpointAdaptor-
|
|
9
|
+
import { HonoEndpoint, HonoEndpointOptions } from "../HonoEndpointAdaptor-DANYfDu9.mjs";
|
|
10
10
|
export { HonoEndpoint, HonoEndpointOptions };
|
|
@@ -3,7 +3,7 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-VI1TB3Mh.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DUZMbEr3.cjs";
|
|
5
5
|
import "../FunctionBuilder-CjVEFTYC.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-twsdbZWU.cjs";
|
|
7
7
|
import "../Authorizer-BTmly8ps.cjs";
|
|
8
8
|
import "../Endpoint-Bu8Phz6y.cjs";
|
|
9
9
|
import { TestEndpointAdaptor, TestHttpResponse, TestRequestAdaptor } from "../TestEndpointAdaptor-H5To8PH7.cjs";
|
|
@@ -3,7 +3,7 @@ import "../types-DKf0juBf.mjs";
|
|
|
3
3
|
import "../Function-V9M9UVHp.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CbDnPZpD.mjs";
|
|
5
5
|
import "../FunctionBuilder-D1ofSeMd.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-DRf5AP3P.mjs";
|
|
7
7
|
import "../Authorizer-pmPvIVgv.mjs";
|
|
8
8
|
import "../Endpoint-Bbs_sFvg.mjs";
|
|
9
9
|
import { TestEndpointAdaptor, TestHttpResponse, TestRequestAdaptor } from "../TestEndpointAdaptor-jxn68ayg.mjs";
|
|
@@ -3,7 +3,7 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-VI1TB3Mh.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DUZMbEr3.cjs";
|
|
5
5
|
import "../FunctionBuilder-CjVEFTYC.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-twsdbZWU.cjs";
|
|
7
7
|
import "../Authorizer-BTmly8ps.cjs";
|
|
8
8
|
import { ActorExtractor, EndpointAuditorConfig, MappedAudit } from "../Endpoint-Bu8Phz6y.cjs";
|
|
9
9
|
export { ActorExtractor, EndpointAuditorConfig, MappedAudit };
|
|
@@ -3,7 +3,7 @@ import "../types-DKf0juBf.mjs";
|
|
|
3
3
|
import "../Function-V9M9UVHp.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CbDnPZpD.mjs";
|
|
5
5
|
import "../FunctionBuilder-D1ofSeMd.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-DRf5AP3P.mjs";
|
|
7
7
|
import "../Authorizer-pmPvIVgv.mjs";
|
|
8
8
|
import { ActorExtractor, EndpointAuditorConfig, MappedAudit } from "../Endpoint-Bbs_sFvg.mjs";
|
|
9
9
|
export { ActorExtractor, EndpointAuditorConfig, MappedAudit };
|
|
@@ -3,7 +3,7 @@ import { HttpMethod } from "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-VI1TB3Mh.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DUZMbEr3.cjs";
|
|
5
5
|
import "../FunctionBuilder-CjVEFTYC.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-twsdbZWU.cjs";
|
|
7
7
|
import "../Authorizer-BTmly8ps.cjs";
|
|
8
8
|
import { Endpoint } from "../Endpoint-Bu8Phz6y.cjs";
|
|
9
9
|
import { Service } from "@geekmidas/services";
|
|
@@ -3,7 +3,7 @@ import { HttpMethod } from "../types-DKf0juBf.mjs";
|
|
|
3
3
|
import "../Function-V9M9UVHp.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CbDnPZpD.mjs";
|
|
5
5
|
import "../FunctionBuilder-D1ofSeMd.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-DRf5AP3P.mjs";
|
|
7
7
|
import "../Authorizer-pmPvIVgv.mjs";
|
|
8
8
|
import { Endpoint } from "../Endpoint-Bbs_sFvg.mjs";
|
|
9
9
|
import { Service } from "@geekmidas/services";
|
|
@@ -3,15 +3,15 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-VI1TB3Mh.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DUZMbEr3.cjs";
|
|
5
5
|
import "../FunctionBuilder-CjVEFTYC.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-twsdbZWU.cjs";
|
|
7
7
|
import "../Authorizer-BTmly8ps.cjs";
|
|
8
8
|
import { ActorExtractor, Endpoint, EndpointContext, EndpointHandler, EndpointOutput, EndpointSchemas, MappedAudit } from "../Endpoint-Bu8Phz6y.cjs";
|
|
9
9
|
import { EndpointBuilder } from "../EndpointBuilder-CPxmF_w7.cjs";
|
|
10
|
-
import { EndpointFactory } from "../EndpointFactory-
|
|
11
|
-
import * as
|
|
10
|
+
import { EndpointFactory } from "../EndpointFactory-D0Ql2Ofm.cjs";
|
|
11
|
+
import * as _geekmidas_logger3 from "@geekmidas/logger";
|
|
12
12
|
|
|
13
13
|
//#region src/endpoints/index.d.ts
|
|
14
|
-
declare const e: EndpointFactory<[], "",
|
|
14
|
+
declare const e: EndpointFactory<[], "", _geekmidas_logger3.Logger, unknown, undefined, string, readonly string[]>;
|
|
15
15
|
//#endregion
|
|
16
16
|
export { ActorExtractor, Endpoint, EndpointBuilder, EndpointContext, EndpointFactory, EndpointHandler, EndpointOutput, EndpointSchemas, MappedAudit, e };
|
|
17
17
|
//# sourceMappingURL=index.d.cts.map
|
|
@@ -3,15 +3,15 @@ import "../types-DKf0juBf.mjs";
|
|
|
3
3
|
import "../Function-V9M9UVHp.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CbDnPZpD.mjs";
|
|
5
5
|
import "../FunctionBuilder-D1ofSeMd.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-DRf5AP3P.mjs";
|
|
7
7
|
import "../Authorizer-pmPvIVgv.mjs";
|
|
8
8
|
import { ActorExtractor, Endpoint, EndpointContext, EndpointHandler, EndpointOutput, EndpointSchemas, MappedAudit } from "../Endpoint-Bbs_sFvg.mjs";
|
|
9
9
|
import { EndpointBuilder } from "../EndpointBuilder-Csfyfjd7.mjs";
|
|
10
|
-
import { EndpointFactory } from "../EndpointFactory-
|
|
11
|
-
import * as
|
|
10
|
+
import { EndpointFactory } from "../EndpointFactory-BU_R-9LH.mjs";
|
|
11
|
+
import * as _geekmidas_logger3 from "@geekmidas/logger";
|
|
12
12
|
|
|
13
13
|
//#region src/endpoints/index.d.ts
|
|
14
|
-
declare const e: EndpointFactory<[], "",
|
|
14
|
+
declare const e: EndpointFactory<[], "", _geekmidas_logger3.Logger, unknown, undefined, string, readonly string[]>;
|
|
15
15
|
//#endregion
|
|
16
16
|
export { ActorExtractor, Endpoint, EndpointBuilder, EndpointContext, EndpointFactory, EndpointHandler, EndpointOutput, EndpointSchemas, MappedAudit, e };
|
|
17
17
|
//# sourceMappingURL=index.d.mts.map
|
|
@@ -3,7 +3,7 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-VI1TB3Mh.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DUZMbEr3.cjs";
|
|
5
5
|
import "../FunctionBuilder-CjVEFTYC.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-twsdbZWU.cjs";
|
|
7
7
|
import "../Authorizer-BTmly8ps.cjs";
|
|
8
8
|
import { CookieFn, Endpoint, HeaderFn } from "../Endpoint-Bu8Phz6y.cjs";
|
|
9
9
|
import { AuditStorage, AuditableAction, Auditor } from "@geekmidas/audit";
|
|
@@ -3,7 +3,7 @@ import "../types-DKf0juBf.mjs";
|
|
|
3
3
|
import "../Function-V9M9UVHp.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CbDnPZpD.mjs";
|
|
5
5
|
import "../FunctionBuilder-D1ofSeMd.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-DRf5AP3P.mjs";
|
|
7
7
|
import "../Authorizer-pmPvIVgv.mjs";
|
|
8
8
|
import { CookieFn, Endpoint, HeaderFn } from "../Endpoint-Bbs_sFvg.mjs";
|
|
9
9
|
import { Service, ServiceDiscovery } from "@geekmidas/services";
|
|
@@ -2,5 +2,5 @@ import "../Construct-dI_rgdSp.cjs";
|
|
|
2
2
|
import { Function, FunctionContext, FunctionHandler } from "../Function-VI1TB3Mh.cjs";
|
|
3
3
|
import { BaseFunctionBuilder } from "../BaseFunctionBuilder-DUZMbEr3.cjs";
|
|
4
4
|
import { FunctionBuilder } from "../FunctionBuilder-CjVEFTYC.cjs";
|
|
5
|
-
import { f } from "../index-
|
|
5
|
+
import { f } from "../index-twsdbZWU.cjs";
|
|
6
6
|
export { BaseFunctionBuilder, Function, FunctionBuilder, FunctionContext, FunctionHandler, f };
|
|
@@ -2,5 +2,5 @@ import "../Construct-ZPqE0vhn.mjs";
|
|
|
2
2
|
import { Function, FunctionContext, FunctionHandler } from "../Function-V9M9UVHp.mjs";
|
|
3
3
|
import { BaseFunctionBuilder } from "../BaseFunctionBuilder-CbDnPZpD.mjs";
|
|
4
4
|
import { FunctionBuilder } from "../FunctionBuilder-D1ofSeMd.mjs";
|
|
5
|
-
import { f } from "../index-
|
|
5
|
+
import { f } from "../index-DRf5AP3P.mjs";
|
|
6
6
|
export { BaseFunctionBuilder, Function, FunctionBuilder, FunctionContext, FunctionHandler, f };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FunctionBuilder } from "./FunctionBuilder-D1ofSeMd.mjs";
|
|
2
|
+
import * as _geekmidas_audit2 from "@geekmidas/audit";
|
|
3
|
+
import * as _geekmidas_logger1 from "@geekmidas/logger";
|
|
4
|
+
import * as _geekmidas_schema0 from "@geekmidas/schema";
|
|
5
|
+
|
|
6
|
+
//#region src/functions/index.d.ts
|
|
7
|
+
declare const f: FunctionBuilder<_geekmidas_schema0.ComposableStandardSchema, undefined, [], _geekmidas_logger1.Logger, undefined, string, undefined, string, undefined, string, _geekmidas_audit2.AuditableAction<string, unknown>>;
|
|
8
|
+
//#endregion
|
|
9
|
+
export { f };
|
|
10
|
+
//# sourceMappingURL=index-DRf5AP3P.d.mts.map
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FunctionBuilder } from "./FunctionBuilder-CjVEFTYC.cjs";
|
|
2
|
+
import * as _geekmidas_audit15 from "@geekmidas/audit";
|
|
3
|
+
import * as _geekmidas_logger14 from "@geekmidas/logger";
|
|
4
|
+
import * as _geekmidas_schema13 from "@geekmidas/schema";
|
|
5
|
+
|
|
6
|
+
//#region src/functions/index.d.ts
|
|
7
|
+
declare const f: FunctionBuilder<_geekmidas_schema13.ComposableStandardSchema, undefined, [], _geekmidas_logger14.Logger, undefined, string, undefined, string, undefined, string, _geekmidas_audit15.AuditableAction<string, unknown>>;
|
|
8
|
+
//#endregion
|
|
9
|
+
export { f };
|
|
10
|
+
//# sourceMappingURL=index-twsdbZWU.d.cts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import "../Construct-dI_rgdSp.cjs";
|
|
2
2
|
import { Subscriber } from "../Subscriber-BhzqUzs-.cjs";
|
|
3
3
|
import { SubscriberBuilder } from "../SubscriberBuilder-BCVkp-ga.cjs";
|
|
4
|
-
import * as
|
|
4
|
+
import * as _geekmidas_logger4 from "@geekmidas/logger";
|
|
5
5
|
|
|
6
6
|
//#region src/subscribers/index.d.ts
|
|
7
|
-
declare const s: SubscriberBuilder<[],
|
|
7
|
+
declare const s: SubscriberBuilder<[], _geekmidas_logger4.Logger, undefined, undefined, string, []>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { Subscriber, SubscriberBuilder, s };
|
|
10
10
|
//# sourceMappingURL=index.d.cts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import "../Construct-ZPqE0vhn.mjs";
|
|
2
2
|
import { Subscriber } from "../Subscriber-s6yfjeOc.mjs";
|
|
3
3
|
import { SubscriberBuilder } from "../SubscriberBuilder-aCua5_wA.mjs";
|
|
4
|
-
import * as
|
|
4
|
+
import * as _geekmidas_logger6 from "@geekmidas/logger";
|
|
5
5
|
|
|
6
6
|
//#region src/subscribers/index.d.ts
|
|
7
|
-
declare const s: SubscriberBuilder<[],
|
|
7
|
+
declare const s: SubscriberBuilder<[], _geekmidas_logger6.Logger, undefined, undefined, string, []>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { Subscriber, SubscriberBuilder, s };
|
|
10
10
|
//# sourceMappingURL=index.d.mts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geekmidas/constructs",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.14",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -66,14 +66,14 @@
|
|
|
66
66
|
"lodash.set": "~4.3.2",
|
|
67
67
|
"lodash.uniqby": "~4.7.0",
|
|
68
68
|
"openapi-types": "~12.1.3",
|
|
69
|
-
"@geekmidas/audit": "0.0.
|
|
70
|
-
"@geekmidas/logger": "0.0.1",
|
|
71
|
-
"@geekmidas/events": "0.0.2",
|
|
69
|
+
"@geekmidas/audit": "0.0.4",
|
|
72
70
|
"@geekmidas/errors": "0.0.1",
|
|
73
71
|
"@geekmidas/cache": "0.0.7",
|
|
74
|
-
"@geekmidas/
|
|
72
|
+
"@geekmidas/events": "0.0.2",
|
|
73
|
+
"@geekmidas/services": "0.0.1",
|
|
75
74
|
"@geekmidas/schema": "0.0.2",
|
|
76
|
-
"@geekmidas/
|
|
75
|
+
"@geekmidas/rate-limit": "0.1.0",
|
|
76
|
+
"@geekmidas/logger": "0.0.1"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
79
|
"@types/lodash.compact": "~3.0.9",
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { FunctionBuilder } from "./FunctionBuilder-D1ofSeMd.mjs";
|
|
2
|
-
import * as _geekmidas_audit11 from "@geekmidas/audit";
|
|
3
|
-
import * as _geekmidas_logger10 from "@geekmidas/logger";
|
|
4
|
-
import * as _geekmidas_schema9 from "@geekmidas/schema";
|
|
5
|
-
|
|
6
|
-
//#region src/functions/index.d.ts
|
|
7
|
-
declare const f: FunctionBuilder<_geekmidas_schema9.ComposableStandardSchema, undefined, [], _geekmidas_logger10.Logger, undefined, string, undefined, string, undefined, string, _geekmidas_audit11.AuditableAction<string, unknown>>;
|
|
8
|
-
//#endregion
|
|
9
|
-
export { f };
|
|
10
|
-
//# sourceMappingURL=index-Bomy7R9z.d.mts.map
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { FunctionBuilder } from "./FunctionBuilder-CjVEFTYC.cjs";
|
|
2
|
-
import * as _geekmidas_audit14 from "@geekmidas/audit";
|
|
3
|
-
import * as _geekmidas_logger13 from "@geekmidas/logger";
|
|
4
|
-
import * as _geekmidas_schema12 from "@geekmidas/schema";
|
|
5
|
-
|
|
6
|
-
//#region src/functions/index.d.ts
|
|
7
|
-
declare const f: FunctionBuilder<_geekmidas_schema12.ComposableStandardSchema, undefined, [], _geekmidas_logger13.Logger, undefined, string, undefined, string, undefined, string, _geekmidas_audit14.AuditableAction<string, unknown>>;
|
|
8
|
-
//#endregion
|
|
9
|
-
export { f };
|
|
10
|
-
//# sourceMappingURL=index-DRYfZHb3.d.cts.map
|