@geekmidas/constructs 0.2.0 → 0.2.1
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/{HonoEndpointAdaptor-BJh4J-J9.d.cts → HonoEndpointAdaptor-BusUWu1w.d.cts} +3 -3
- package/dist/{HonoEndpointAdaptor-kb1ByjUL.d.mts → HonoEndpointAdaptor-C10W7xCf.d.mts} +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 +1 -1
- 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 +1 -1
- package/dist/endpoints/EndpointFactory.d.mts +1 -1
- 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 +3 -3
- package/dist/endpoints/index.d.mts +1 -1
- package/dist/endpoints/processAudits.d.cts +1 -1
- package/dist/endpoints/processAudits.d.mts +1 -1
- package/dist/endpoints/rls.d.cts +1 -1
- package/dist/endpoints/rls.d.mts +1 -1
- package/dist/functions/index.d.cts +1 -1
- package/dist/functions/index.d.mts +1 -1
- package/dist/index-BtVKIOXm.d.mts +10 -0
- package/dist/index-CqH4_Ieb.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-CFyaRrck.d.mts +0 -10
- package/dist/index-Ceo-GuhJ.d.cts +0 -10
|
@@ -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_types9 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<any>;
|
|
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_types9.BlankEnv, hono_types9.BlankSchema, "/">, 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-BusUWu1w.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_types0 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<any>;
|
|
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_types0.BlankEnv, hono_types0.BlankSchema, "/">, 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-C10W7xCf.d.mts.map
|
package/dist/adaptors/aws.d.cts
CHANGED
|
@@ -3,7 +3,7 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-DHD1V9QW.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DaQA0uKE.cjs";
|
|
5
5
|
import "../FunctionBuilder-FV6r3I7X.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-CqH4_Ieb.cjs";
|
|
7
7
|
import "../Authorizer-CpSUMTIs.cjs";
|
|
8
8
|
import "../Endpoint-CC2RGjkl.cjs";
|
|
9
9
|
import "../AmazonApiGatewayEndpointAdaptor-CbJqLU6I.cjs";
|
package/dist/adaptors/aws.d.mts
CHANGED
|
@@ -3,7 +3,7 @@ import "../types-CScirkHt.mjs";
|
|
|
3
3
|
import "../Function-Vh1t-Qjj.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CoV7J45W.mjs";
|
|
5
5
|
import "../FunctionBuilder-3jsoFffg.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-BtVKIOXm.mjs";
|
|
7
7
|
import "../Authorizer-Cpx59w_q.mjs";
|
|
8
8
|
import "../Endpoint-C5djXyae.mjs";
|
|
9
9
|
import "../AmazonApiGatewayEndpointAdaptor-DC3N7zY_.mjs";
|
package/dist/adaptors/hono.d.cts
CHANGED
|
@@ -3,8 +3,8 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-DHD1V9QW.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DaQA0uKE.cjs";
|
|
5
5
|
import "../FunctionBuilder-FV6r3I7X.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-CqH4_Ieb.cjs";
|
|
7
7
|
import "../Authorizer-CpSUMTIs.cjs";
|
|
8
8
|
import "../Endpoint-CC2RGjkl.cjs";
|
|
9
|
-
import { HonoEndpoint } from "../HonoEndpointAdaptor-
|
|
9
|
+
import { HonoEndpoint } from "../HonoEndpointAdaptor-BusUWu1w.cjs";
|
|
10
10
|
export { HonoEndpoint };
|
package/dist/adaptors/hono.d.mts
CHANGED
|
@@ -3,8 +3,8 @@ import "../types-CScirkHt.mjs";
|
|
|
3
3
|
import "../Function-Vh1t-Qjj.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CoV7J45W.mjs";
|
|
5
5
|
import "../FunctionBuilder-3jsoFffg.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-BtVKIOXm.mjs";
|
|
7
7
|
import "../Authorizer-Cpx59w_q.mjs";
|
|
8
8
|
import "../Endpoint-C5djXyae.mjs";
|
|
9
|
-
import { HonoEndpoint } from "../HonoEndpointAdaptor-
|
|
9
|
+
import { HonoEndpoint } from "../HonoEndpointAdaptor-C10W7xCf.mjs";
|
|
10
10
|
export { HonoEndpoint };
|
|
@@ -3,7 +3,7 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-DHD1V9QW.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DaQA0uKE.cjs";
|
|
5
5
|
import "../FunctionBuilder-FV6r3I7X.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-CqH4_Ieb.cjs";
|
|
7
7
|
import "../Authorizer-CpSUMTIs.cjs";
|
|
8
8
|
import "../Endpoint-CC2RGjkl.cjs";
|
|
9
9
|
import { TestEndpointAdaptor } from "../TestEndpointAdaptor-Bm0UjDtV.cjs";
|
|
@@ -3,7 +3,7 @@ import "../types-CScirkHt.mjs";
|
|
|
3
3
|
import "../Function-Vh1t-Qjj.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CoV7J45W.mjs";
|
|
5
5
|
import "../FunctionBuilder-3jsoFffg.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-BtVKIOXm.mjs";
|
|
7
7
|
import "../Authorizer-Cpx59w_q.mjs";
|
|
8
8
|
import "../Endpoint-C5djXyae.mjs";
|
|
9
9
|
import { TestEndpointAdaptor } from "../TestEndpointAdaptor-5-unBV8O.mjs";
|
package/dist/crons/Cron.d.cts
CHANGED
|
@@ -2,6 +2,6 @@ import "../Construct-Dkd8Kvc9.cjs";
|
|
|
2
2
|
import "../Function-DHD1V9QW.cjs";
|
|
3
3
|
import "../BaseFunctionBuilder-DaQA0uKE.cjs";
|
|
4
4
|
import "../FunctionBuilder-FV6r3I7X.cjs";
|
|
5
|
-
import "../index-
|
|
5
|
+
import "../index-CqH4_Ieb.cjs";
|
|
6
6
|
import { Cron, CronExpression, RateExpression, ScheduleExpression } from "../Cron-7VPR2cNR.cjs";
|
|
7
7
|
export { Cron, CronExpression, RateExpression, ScheduleExpression };
|
package/dist/crons/Cron.d.mts
CHANGED
|
@@ -2,6 +2,6 @@ import "../Construct-jBKqb-Zi.mjs";
|
|
|
2
2
|
import "../Function-Vh1t-Qjj.mjs";
|
|
3
3
|
import "../BaseFunctionBuilder-CoV7J45W.mjs";
|
|
4
4
|
import "../FunctionBuilder-3jsoFffg.mjs";
|
|
5
|
-
import "../index-
|
|
5
|
+
import "../index-BtVKIOXm.mjs";
|
|
6
6
|
import { Cron, CronExpression, RateExpression, ScheduleExpression } from "../Cron-JZkp_fHy.mjs";
|
|
7
7
|
export { Cron, CronExpression, RateExpression, ScheduleExpression };
|
|
@@ -2,7 +2,7 @@ import "../Construct-Dkd8Kvc9.cjs";
|
|
|
2
2
|
import "../Function-DHD1V9QW.cjs";
|
|
3
3
|
import "../BaseFunctionBuilder-DaQA0uKE.cjs";
|
|
4
4
|
import "../FunctionBuilder-FV6r3I7X.cjs";
|
|
5
|
-
import "../index-
|
|
5
|
+
import "../index-CqH4_Ieb.cjs";
|
|
6
6
|
import "../Cron-7VPR2cNR.cjs";
|
|
7
7
|
import { CronBuilder } from "../CronBuilder-290th4zF.cjs";
|
|
8
8
|
export { CronBuilder };
|
|
@@ -2,7 +2,7 @@ import "../Construct-jBKqb-Zi.mjs";
|
|
|
2
2
|
import "../Function-Vh1t-Qjj.mjs";
|
|
3
3
|
import "../BaseFunctionBuilder-CoV7J45W.mjs";
|
|
4
4
|
import "../FunctionBuilder-3jsoFffg.mjs";
|
|
5
|
-
import "../index-
|
|
5
|
+
import "../index-BtVKIOXm.mjs";
|
|
6
6
|
import "../Cron-JZkp_fHy.mjs";
|
|
7
7
|
import { CronBuilder } from "../CronBuilder-BmFDO0Dm.mjs";
|
|
8
8
|
export { CronBuilder };
|
package/dist/crons/index.d.cts
CHANGED
|
@@ -2,7 +2,7 @@ import "../Construct-Dkd8Kvc9.cjs";
|
|
|
2
2
|
import "../Function-DHD1V9QW.cjs";
|
|
3
3
|
import "../BaseFunctionBuilder-DaQA0uKE.cjs";
|
|
4
4
|
import "../FunctionBuilder-FV6r3I7X.cjs";
|
|
5
|
-
import "../index-
|
|
5
|
+
import "../index-CqH4_Ieb.cjs";
|
|
6
6
|
import { Cron, CronExpression, RateExpression, ScheduleExpression } from "../Cron-7VPR2cNR.cjs";
|
|
7
7
|
import { CronBuilder } from "../CronBuilder-290th4zF.cjs";
|
|
8
8
|
import * as _geekmidas_logger4 from "@geekmidas/logger";
|
package/dist/crons/index.d.mts
CHANGED
|
@@ -2,15 +2,15 @@ import "../Construct-jBKqb-Zi.mjs";
|
|
|
2
2
|
import "../Function-Vh1t-Qjj.mjs";
|
|
3
3
|
import "../BaseFunctionBuilder-CoV7J45W.mjs";
|
|
4
4
|
import "../FunctionBuilder-3jsoFffg.mjs";
|
|
5
|
-
import "../index-
|
|
5
|
+
import "../index-BtVKIOXm.mjs";
|
|
6
6
|
import { Cron, CronExpression, RateExpression, ScheduleExpression } from "../Cron-JZkp_fHy.mjs";
|
|
7
7
|
import { CronBuilder } from "../CronBuilder-BmFDO0Dm.mjs";
|
|
8
|
-
import * as
|
|
9
|
-
import * as
|
|
10
|
-
import * as
|
|
8
|
+
import * as _geekmidas_services3 from "@geekmidas/services";
|
|
9
|
+
import * as _geekmidas_logger4 from "@geekmidas/logger";
|
|
10
|
+
import * as _geekmidas_schema2 from "@geekmidas/schema";
|
|
11
11
|
|
|
12
12
|
//#region src/crons/index.d.ts
|
|
13
|
-
declare const c: CronBuilder<
|
|
13
|
+
declare const c: CronBuilder<_geekmidas_schema2.ComposableStandardSchema, _geekmidas_services3.Service<string, unknown>[], _geekmidas_logger4.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-DHD1V9QW.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DaQA0uKE.cjs";
|
|
5
5
|
import "../FunctionBuilder-FV6r3I7X.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-CqH4_Ieb.cjs";
|
|
7
7
|
import "../Authorizer-CpSUMTIs.cjs";
|
|
8
8
|
import "../Endpoint-CC2RGjkl.cjs";
|
|
9
9
|
import { AmazonApiGatewayEndpoint, AmazonApiGatewayEndpointHandlerResponse, AmazonApiGatewayV1EndpointHandler, AmazonApiGatewayV2EndpointHandler, Event, GetInputResponse, HandlerEvent, LoggerContext } from "../AmazonApiGatewayEndpointAdaptor-CbJqLU6I.cjs";
|
|
@@ -3,7 +3,7 @@ import "../types-CScirkHt.mjs";
|
|
|
3
3
|
import "../Function-Vh1t-Qjj.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CoV7J45W.mjs";
|
|
5
5
|
import "../FunctionBuilder-3jsoFffg.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-BtVKIOXm.mjs";
|
|
7
7
|
import "../Authorizer-Cpx59w_q.mjs";
|
|
8
8
|
import "../Endpoint-C5djXyae.mjs";
|
|
9
9
|
import { AmazonApiGatewayEndpoint, AmazonApiGatewayEndpointHandlerResponse, AmazonApiGatewayV1EndpointHandler, AmazonApiGatewayV2EndpointHandler, Event, GetInputResponse, HandlerEvent, LoggerContext } from "../AmazonApiGatewayEndpointAdaptor-DC3N7zY_.mjs";
|
|
@@ -3,7 +3,7 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-DHD1V9QW.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DaQA0uKE.cjs";
|
|
5
5
|
import "../FunctionBuilder-FV6r3I7X.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-CqH4_Ieb.cjs";
|
|
7
7
|
import "../Authorizer-CpSUMTIs.cjs";
|
|
8
8
|
import "../Endpoint-CC2RGjkl.cjs";
|
|
9
9
|
import "../AmazonApiGatewayEndpointAdaptor-CbJqLU6I.cjs";
|
|
@@ -3,7 +3,7 @@ import "../types-CScirkHt.mjs";
|
|
|
3
3
|
import "../Function-Vh1t-Qjj.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CoV7J45W.mjs";
|
|
5
5
|
import "../FunctionBuilder-3jsoFffg.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-BtVKIOXm.mjs";
|
|
7
7
|
import "../Authorizer-Cpx59w_q.mjs";
|
|
8
8
|
import "../Endpoint-C5djXyae.mjs";
|
|
9
9
|
import "../AmazonApiGatewayEndpointAdaptor-DC3N7zY_.mjs";
|
|
@@ -3,7 +3,7 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-DHD1V9QW.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DaQA0uKE.cjs";
|
|
5
5
|
import "../FunctionBuilder-FV6r3I7X.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-CqH4_Ieb.cjs";
|
|
7
7
|
import "../Authorizer-CpSUMTIs.cjs";
|
|
8
8
|
import "../Endpoint-CC2RGjkl.cjs";
|
|
9
9
|
import "../AmazonApiGatewayEndpointAdaptor-CbJqLU6I.cjs";
|
|
@@ -3,7 +3,7 @@ import "../types-CScirkHt.mjs";
|
|
|
3
3
|
import "../Function-Vh1t-Qjj.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CoV7J45W.mjs";
|
|
5
5
|
import "../FunctionBuilder-3jsoFffg.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-BtVKIOXm.mjs";
|
|
7
7
|
import "../Authorizer-Cpx59w_q.mjs";
|
|
8
8
|
import "../Endpoint-C5djXyae.mjs";
|
|
9
9
|
import "../AmazonApiGatewayEndpointAdaptor-DC3N7zY_.mjs";
|
|
@@ -3,7 +3,7 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-DHD1V9QW.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DaQA0uKE.cjs";
|
|
5
5
|
import "../FunctionBuilder-FV6r3I7X.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-CqH4_Ieb.cjs";
|
|
7
7
|
import "../Authorizer-CpSUMTIs.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-CC2RGjkl.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-CScirkHt.mjs";
|
|
|
3
3
|
import "../Function-Vh1t-Qjj.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CoV7J45W.mjs";
|
|
5
5
|
import "../FunctionBuilder-3jsoFffg.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-BtVKIOXm.mjs";
|
|
7
7
|
import "../Authorizer-Cpx59w_q.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-C5djXyae.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-DHD1V9QW.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DaQA0uKE.cjs";
|
|
5
5
|
import "../FunctionBuilder-FV6r3I7X.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-CqH4_Ieb.cjs";
|
|
7
7
|
import "../Authorizer-CpSUMTIs.cjs";
|
|
8
8
|
import "../Endpoint-CC2RGjkl.cjs";
|
|
9
9
|
import { EndpointBuilder } from "../EndpointBuilder-vXk6eIJk.cjs";
|
|
@@ -3,7 +3,7 @@ import "../types-CScirkHt.mjs";
|
|
|
3
3
|
import "../Function-Vh1t-Qjj.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CoV7J45W.mjs";
|
|
5
5
|
import "../FunctionBuilder-3jsoFffg.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-BtVKIOXm.mjs";
|
|
7
7
|
import "../Authorizer-Cpx59w_q.mjs";
|
|
8
8
|
import "../Endpoint-C5djXyae.mjs";
|
|
9
9
|
import { EndpointBuilder } from "../EndpointBuilder-CD8LkBda.mjs";
|
|
@@ -3,7 +3,7 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-DHD1V9QW.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DaQA0uKE.cjs";
|
|
5
5
|
import "../FunctionBuilder-FV6r3I7X.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-CqH4_Ieb.cjs";
|
|
7
7
|
import "../Authorizer-CpSUMTIs.cjs";
|
|
8
8
|
import "../Endpoint-CC2RGjkl.cjs";
|
|
9
9
|
import "../EndpointBuilder-vXk6eIJk.cjs";
|
|
@@ -3,7 +3,7 @@ import "../types-CScirkHt.mjs";
|
|
|
3
3
|
import "../Function-Vh1t-Qjj.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CoV7J45W.mjs";
|
|
5
5
|
import "../FunctionBuilder-3jsoFffg.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-BtVKIOXm.mjs";
|
|
7
7
|
import "../Authorizer-Cpx59w_q.mjs";
|
|
8
8
|
import "../Endpoint-C5djXyae.mjs";
|
|
9
9
|
import "../EndpointBuilder-CD8LkBda.mjs";
|
|
@@ -3,8 +3,8 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-DHD1V9QW.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DaQA0uKE.cjs";
|
|
5
5
|
import "../FunctionBuilder-FV6r3I7X.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-CqH4_Ieb.cjs";
|
|
7
7
|
import "../Authorizer-CpSUMTIs.cjs";
|
|
8
8
|
import "../Endpoint-CC2RGjkl.cjs";
|
|
9
|
-
import { HonoEndpoint, HonoEndpointOptions } from "../HonoEndpointAdaptor-
|
|
9
|
+
import { HonoEndpoint, HonoEndpointOptions } from "../HonoEndpointAdaptor-BusUWu1w.cjs";
|
|
10
10
|
export { HonoEndpoint, HonoEndpointOptions };
|
|
@@ -3,8 +3,8 @@ import "../types-CScirkHt.mjs";
|
|
|
3
3
|
import "../Function-Vh1t-Qjj.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CoV7J45W.mjs";
|
|
5
5
|
import "../FunctionBuilder-3jsoFffg.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-BtVKIOXm.mjs";
|
|
7
7
|
import "../Authorizer-Cpx59w_q.mjs";
|
|
8
8
|
import "../Endpoint-C5djXyae.mjs";
|
|
9
|
-
import { HonoEndpoint, HonoEndpointOptions } from "../HonoEndpointAdaptor-
|
|
9
|
+
import { HonoEndpoint, HonoEndpointOptions } from "../HonoEndpointAdaptor-C10W7xCf.mjs";
|
|
10
10
|
export { HonoEndpoint, HonoEndpointOptions };
|
|
@@ -3,7 +3,7 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-DHD1V9QW.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DaQA0uKE.cjs";
|
|
5
5
|
import "../FunctionBuilder-FV6r3I7X.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-CqH4_Ieb.cjs";
|
|
7
7
|
import "../Authorizer-CpSUMTIs.cjs";
|
|
8
8
|
import "../Endpoint-CC2RGjkl.cjs";
|
|
9
9
|
import { TestEndpointAdaptor, TestHttpResponse, TestRequestAdaptor } from "../TestEndpointAdaptor-Bm0UjDtV.cjs";
|
|
@@ -3,7 +3,7 @@ import "../types-CScirkHt.mjs";
|
|
|
3
3
|
import "../Function-Vh1t-Qjj.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CoV7J45W.mjs";
|
|
5
5
|
import "../FunctionBuilder-3jsoFffg.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-BtVKIOXm.mjs";
|
|
7
7
|
import "../Authorizer-Cpx59w_q.mjs";
|
|
8
8
|
import "../Endpoint-C5djXyae.mjs";
|
|
9
9
|
import { TestEndpointAdaptor, TestHttpResponse, TestRequestAdaptor } from "../TestEndpointAdaptor-5-unBV8O.mjs";
|
|
@@ -3,7 +3,7 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-DHD1V9QW.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DaQA0uKE.cjs";
|
|
5
5
|
import "../FunctionBuilder-FV6r3I7X.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-CqH4_Ieb.cjs";
|
|
7
7
|
import "../Authorizer-CpSUMTIs.cjs";
|
|
8
8
|
import { ActorExtractor, EndpointAuditorConfig, MappedAudit } from "../Endpoint-CC2RGjkl.cjs";
|
|
9
9
|
export { ActorExtractor, EndpointAuditorConfig, MappedAudit };
|
|
@@ -3,7 +3,7 @@ import "../types-CScirkHt.mjs";
|
|
|
3
3
|
import "../Function-Vh1t-Qjj.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CoV7J45W.mjs";
|
|
5
5
|
import "../FunctionBuilder-3jsoFffg.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-BtVKIOXm.mjs";
|
|
7
7
|
import "../Authorizer-Cpx59w_q.mjs";
|
|
8
8
|
import { ActorExtractor, EndpointAuditorConfig, MappedAudit } from "../Endpoint-C5djXyae.mjs";
|
|
9
9
|
export { ActorExtractor, EndpointAuditorConfig, MappedAudit };
|
|
@@ -3,7 +3,7 @@ import { HttpMethod } from "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-DHD1V9QW.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DaQA0uKE.cjs";
|
|
5
5
|
import "../FunctionBuilder-FV6r3I7X.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-CqH4_Ieb.cjs";
|
|
7
7
|
import "../Authorizer-CpSUMTIs.cjs";
|
|
8
8
|
import { Endpoint } from "../Endpoint-CC2RGjkl.cjs";
|
|
9
9
|
import { Service } from "@geekmidas/services";
|
|
@@ -3,7 +3,7 @@ import { HttpMethod } from "../types-CScirkHt.mjs";
|
|
|
3
3
|
import "../Function-Vh1t-Qjj.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CoV7J45W.mjs";
|
|
5
5
|
import "../FunctionBuilder-3jsoFffg.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-BtVKIOXm.mjs";
|
|
7
7
|
import "../Authorizer-Cpx59w_q.mjs";
|
|
8
8
|
import { Endpoint } from "../Endpoint-C5djXyae.mjs";
|
|
9
9
|
import { Service } from "@geekmidas/services";
|
|
@@ -3,15 +3,15 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-DHD1V9QW.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DaQA0uKE.cjs";
|
|
5
5
|
import "../FunctionBuilder-FV6r3I7X.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-CqH4_Ieb.cjs";
|
|
7
7
|
import { SecurityScheme } from "../Authorizer-CpSUMTIs.cjs";
|
|
8
8
|
import { ActorExtractor, Endpoint, EndpointContext, EndpointHandler, EndpointOutput, EndpointSchemas, MappedAudit, RLS_BYPASS, RlsBypass, RlsConfig, RlsContext, RlsContextExtractor } from "../Endpoint-CC2RGjkl.cjs";
|
|
9
9
|
import { EndpointBuilder } from "../EndpointBuilder-vXk6eIJk.cjs";
|
|
10
10
|
import { EndpointFactory } from "../EndpointFactory-3g-7Rznt.cjs";
|
|
11
|
-
import * as
|
|
11
|
+
import * as _geekmidas_logger0 from "@geekmidas/logger";
|
|
12
12
|
|
|
13
13
|
//#region src/endpoints/index.d.ts
|
|
14
|
-
declare const e: EndpointFactory<[], "",
|
|
14
|
+
declare const e: EndpointFactory<[], "", _geekmidas_logger0.Logger, unknown, undefined, string, readonly string[], undefined, string, never, undefined, string, Record<string, SecurityScheme>, undefined>;
|
|
15
15
|
//#endregion
|
|
16
16
|
export { ActorExtractor, Endpoint, EndpointBuilder, EndpointContext, EndpointFactory, EndpointHandler, EndpointOutput, EndpointSchemas, MappedAudit, RLS_BYPASS, RlsBypass, RlsConfig, RlsContext, RlsContextExtractor, e };
|
|
17
17
|
//# sourceMappingURL=index.d.cts.map
|
|
@@ -3,7 +3,7 @@ import "../types-CScirkHt.mjs";
|
|
|
3
3
|
import "../Function-Vh1t-Qjj.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CoV7J45W.mjs";
|
|
5
5
|
import "../FunctionBuilder-3jsoFffg.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-BtVKIOXm.mjs";
|
|
7
7
|
import { SecurityScheme } from "../Authorizer-Cpx59w_q.mjs";
|
|
8
8
|
import { ActorExtractor, Endpoint, EndpointContext, EndpointHandler, EndpointOutput, EndpointSchemas, MappedAudit, RLS_BYPASS, RlsBypass, RlsConfig, RlsContext, RlsContextExtractor } from "../Endpoint-C5djXyae.mjs";
|
|
9
9
|
import { EndpointBuilder } from "../EndpointBuilder-CD8LkBda.mjs";
|
|
@@ -3,7 +3,7 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-DHD1V9QW.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DaQA0uKE.cjs";
|
|
5
5
|
import "../FunctionBuilder-FV6r3I7X.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-CqH4_Ieb.cjs";
|
|
7
7
|
import "../Authorizer-CpSUMTIs.cjs";
|
|
8
8
|
import { CookieFn, Endpoint, HeaderFn } from "../Endpoint-CC2RGjkl.cjs";
|
|
9
9
|
import { AuditStorage, AuditableAction, Auditor } from "@geekmidas/audit";
|
|
@@ -3,7 +3,7 @@ import "../types-CScirkHt.mjs";
|
|
|
3
3
|
import "../Function-Vh1t-Qjj.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CoV7J45W.mjs";
|
|
5
5
|
import "../FunctionBuilder-3jsoFffg.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-BtVKIOXm.mjs";
|
|
7
7
|
import "../Authorizer-Cpx59w_q.mjs";
|
|
8
8
|
import { CookieFn, Endpoint, HeaderFn } from "../Endpoint-C5djXyae.mjs";
|
|
9
9
|
import { Service, ServiceDiscovery } from "@geekmidas/services";
|
package/dist/endpoints/rls.d.cts
CHANGED
|
@@ -3,7 +3,7 @@ import "../types-Bp9ysFXd.cjs";
|
|
|
3
3
|
import "../Function-DHD1V9QW.cjs";
|
|
4
4
|
import "../BaseFunctionBuilder-DaQA0uKE.cjs";
|
|
5
5
|
import "../FunctionBuilder-FV6r3I7X.cjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-CqH4_Ieb.cjs";
|
|
7
7
|
import "../Authorizer-CpSUMTIs.cjs";
|
|
8
8
|
import { RLS_BYPASS, RlsBypass, RlsConfig, RlsContext, RlsContextExtractor } from "../Endpoint-CC2RGjkl.cjs";
|
|
9
9
|
export { RLS_BYPASS, RlsBypass, RlsConfig, RlsContext, RlsContextExtractor };
|
package/dist/endpoints/rls.d.mts
CHANGED
|
@@ -3,7 +3,7 @@ import "../types-CScirkHt.mjs";
|
|
|
3
3
|
import "../Function-Vh1t-Qjj.mjs";
|
|
4
4
|
import "../BaseFunctionBuilder-CoV7J45W.mjs";
|
|
5
5
|
import "../FunctionBuilder-3jsoFffg.mjs";
|
|
6
|
-
import "../index-
|
|
6
|
+
import "../index-BtVKIOXm.mjs";
|
|
7
7
|
import "../Authorizer-Cpx59w_q.mjs";
|
|
8
8
|
import { RLS_BYPASS, RlsBypass, RlsConfig, RlsContext, RlsContextExtractor } from "../Endpoint-C5djXyae.mjs";
|
|
9
9
|
export { RLS_BYPASS, RlsBypass, RlsConfig, RlsContext, RlsContextExtractor };
|
|
@@ -2,5 +2,5 @@ import "../Construct-Dkd8Kvc9.cjs";
|
|
|
2
2
|
import { Function, FunctionContext, FunctionHandler } from "../Function-DHD1V9QW.cjs";
|
|
3
3
|
import { BaseFunctionBuilder } from "../BaseFunctionBuilder-DaQA0uKE.cjs";
|
|
4
4
|
import { FunctionBuilder } from "../FunctionBuilder-FV6r3I7X.cjs";
|
|
5
|
-
import { f } from "../index-
|
|
5
|
+
import { f } from "../index-CqH4_Ieb.cjs";
|
|
6
6
|
export { BaseFunctionBuilder, Function, FunctionBuilder, FunctionContext, FunctionHandler, f };
|
|
@@ -2,5 +2,5 @@ import "../Construct-jBKqb-Zi.mjs";
|
|
|
2
2
|
import { Function, FunctionContext, FunctionHandler } from "../Function-Vh1t-Qjj.mjs";
|
|
3
3
|
import { BaseFunctionBuilder } from "../BaseFunctionBuilder-CoV7J45W.mjs";
|
|
4
4
|
import { FunctionBuilder } from "../FunctionBuilder-3jsoFffg.mjs";
|
|
5
|
-
import { f } from "../index-
|
|
5
|
+
import { f } from "../index-BtVKIOXm.mjs";
|
|
6
6
|
export { BaseFunctionBuilder, Function, FunctionBuilder, FunctionContext, FunctionHandler, f };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FunctionBuilder } from "./FunctionBuilder-3jsoFffg.mjs";
|
|
2
|
+
import * as _geekmidas_audit10 from "@geekmidas/audit";
|
|
3
|
+
import * as _geekmidas_logger9 from "@geekmidas/logger";
|
|
4
|
+
import * as _geekmidas_schema8 from "@geekmidas/schema";
|
|
5
|
+
|
|
6
|
+
//#region src/functions/index.d.ts
|
|
7
|
+
declare const f: FunctionBuilder<_geekmidas_schema8.ComposableStandardSchema, undefined, [], _geekmidas_logger9.Logger, undefined, string, undefined, string, undefined, string, _geekmidas_audit10.AuditableAction<string, unknown>>;
|
|
8
|
+
//#endregion
|
|
9
|
+
export { f };
|
|
10
|
+
//# sourceMappingURL=index-BtVKIOXm.d.mts.map
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FunctionBuilder } from "./FunctionBuilder-FV6r3I7X.cjs";
|
|
2
|
+
import * as _geekmidas_audit7 from "@geekmidas/audit";
|
|
3
|
+
import * as _geekmidas_logger6 from "@geekmidas/logger";
|
|
4
|
+
import * as _geekmidas_schema5 from "@geekmidas/schema";
|
|
5
|
+
|
|
6
|
+
//#region src/functions/index.d.ts
|
|
7
|
+
declare const f: FunctionBuilder<_geekmidas_schema5.ComposableStandardSchema, undefined, [], _geekmidas_logger6.Logger, undefined, string, undefined, string, undefined, string, _geekmidas_audit7.AuditableAction<string, unknown>>;
|
|
8
|
+
//#endregion
|
|
9
|
+
export { f };
|
|
10
|
+
//# sourceMappingURL=index-CqH4_Ieb.d.cts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import "../Construct-Dkd8Kvc9.cjs";
|
|
2
2
|
import { Subscriber } from "../Subscriber-DMSzvO_J.cjs";
|
|
3
3
|
import { SubscriberBuilder } from "../SubscriberBuilder-BxJM3Hz_.cjs";
|
|
4
|
-
import * as
|
|
4
|
+
import * as _geekmidas_logger8 from "@geekmidas/logger";
|
|
5
5
|
|
|
6
6
|
//#region src/subscribers/index.d.ts
|
|
7
|
-
declare const s: SubscriberBuilder<[],
|
|
7
|
+
declare const s: SubscriberBuilder<[], _geekmidas_logger8.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-jBKqb-Zi.mjs";
|
|
2
2
|
import { Subscriber } from "../Subscriber-aNr1qkxR.mjs";
|
|
3
3
|
import { SubscriberBuilder } from "../SubscriberBuilder-CWS4tdbp.mjs";
|
|
4
|
-
import * as
|
|
4
|
+
import * as _geekmidas_logger7 from "@geekmidas/logger";
|
|
5
5
|
|
|
6
6
|
//#region src/subscribers/index.d.ts
|
|
7
|
-
declare const s: SubscriberBuilder<[],
|
|
7
|
+
declare const s: SubscriberBuilder<[], _geekmidas_logger7.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.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -66,15 +66,15 @@
|
|
|
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.8",
|
|
70
69
|
"@geekmidas/cache": "0.0.7",
|
|
71
|
-
"@geekmidas/
|
|
70
|
+
"@geekmidas/audit": "0.0.8",
|
|
71
|
+
"@geekmidas/events": "0.0.2",
|
|
72
72
|
"@geekmidas/errors": "0.0.1",
|
|
73
|
+
"@geekmidas/db": "0.1.0",
|
|
73
74
|
"@geekmidas/logger": "0.0.1",
|
|
74
75
|
"@geekmidas/rate-limit": "0.1.0",
|
|
75
|
-
"@geekmidas/
|
|
76
|
-
"@geekmidas/schema": "0.0.
|
|
77
|
-
"@geekmidas/services": "0.0.1"
|
|
76
|
+
"@geekmidas/services": "0.0.1",
|
|
77
|
+
"@geekmidas/schema": "0.0.3"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
80
|
"@types/lodash.compact": "~3.0.9",
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { FunctionBuilder } from "./FunctionBuilder-3jsoFffg.mjs";
|
|
2
|
-
import * as _geekmidas_audit9 from "@geekmidas/audit";
|
|
3
|
-
import * as _geekmidas_logger8 from "@geekmidas/logger";
|
|
4
|
-
import * as _geekmidas_schema7 from "@geekmidas/schema";
|
|
5
|
-
|
|
6
|
-
//#region src/functions/index.d.ts
|
|
7
|
-
declare const f: FunctionBuilder<_geekmidas_schema7.ComposableStandardSchema, undefined, [], _geekmidas_logger8.Logger, undefined, string, undefined, string, undefined, string, _geekmidas_audit9.AuditableAction<string, unknown>>;
|
|
8
|
-
//#endregion
|
|
9
|
-
export { f };
|
|
10
|
-
//# sourceMappingURL=index-CFyaRrck.d.mts.map
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { FunctionBuilder } from "./FunctionBuilder-FV6r3I7X.cjs";
|
|
2
|
-
import * as _geekmidas_audit9 from "@geekmidas/audit";
|
|
3
|
-
import * as _geekmidas_logger8 from "@geekmidas/logger";
|
|
4
|
-
import * as _geekmidas_schema7 from "@geekmidas/schema";
|
|
5
|
-
|
|
6
|
-
//#region src/functions/index.d.ts
|
|
7
|
-
declare const f: FunctionBuilder<_geekmidas_schema7.ComposableStandardSchema, undefined, [], _geekmidas_logger8.Logger, undefined, string, undefined, string, undefined, string, _geekmidas_audit9.AuditableAction<string, unknown>>;
|
|
8
|
-
//#endregion
|
|
9
|
-
export { f };
|
|
10
|
-
//# sourceMappingURL=index-Ceo-GuhJ.d.cts.map
|