@geekmidas/constructs 2.0.0 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/dist/{HonoEndpointAdaptor-BnG87BVG.d.mts → HonoEndpointAdaptor-C3AdQ0xS.d.mts} +3 -3
  3. package/dist/{HonoEndpointAdaptor-BnG87BVG.d.mts.map → HonoEndpointAdaptor-C3AdQ0xS.d.mts.map} +1 -1
  4. package/dist/{HonoEndpointAdaptor-BuyXynoH.d.cts → HonoEndpointAdaptor-vI3LPiyu.d.cts} +3 -3
  5. package/dist/{HonoEndpointAdaptor-BuyXynoH.d.cts.map → HonoEndpointAdaptor-vI3LPiyu.d.cts.map} +1 -1
  6. package/dist/adaptors/aws.d.mts +1 -1
  7. package/dist/adaptors/hono.d.cts +1 -1
  8. package/dist/adaptors/hono.d.mts +2 -2
  9. package/dist/adaptors/testing.d.mts +1 -1
  10. package/dist/crons/Cron.d.mts +1 -1
  11. package/dist/crons/CronBuilder.d.mts +1 -1
  12. package/dist/crons/index.d.cts +4 -4
  13. package/dist/crons/index.d.mts +1 -1
  14. package/dist/endpoints/AmazonApiGatewayEndpointAdaptor.d.mts +1 -1
  15. package/dist/endpoints/AmazonApiGatewayV1EndpointAdaptor.d.mts +1 -1
  16. package/dist/endpoints/AmazonApiGatewayV2EndpointAdaptor.d.mts +1 -1
  17. package/dist/endpoints/Endpoint.d.mts +1 -1
  18. package/dist/endpoints/EndpointBuilder.d.mts +1 -1
  19. package/dist/endpoints/EndpointFactory.d.mts +1 -1
  20. package/dist/endpoints/HonoEndpointAdaptor.d.cts +1 -1
  21. package/dist/endpoints/HonoEndpointAdaptor.d.mts +2 -2
  22. package/dist/endpoints/TestEndpointAdaptor.d.mts +1 -1
  23. package/dist/endpoints/audit.d.mts +1 -1
  24. package/dist/endpoints/helpers.d.mts +1 -1
  25. package/dist/endpoints/index.d.cts +2 -2
  26. package/dist/endpoints/index.d.mts +3 -3
  27. package/dist/endpoints/lazyAccessors.d.mts +1 -1
  28. package/dist/endpoints/processAudits.d.mts +1 -1
  29. package/dist/endpoints/rls.d.mts +1 -1
  30. package/dist/functions/index.d.mts +1 -1
  31. package/dist/index-DQo_Csy7.d.mts +12 -0
  32. package/dist/{index-CtMNRkV7.d.mts.map → index-DQo_Csy7.d.mts.map} +1 -1
  33. package/dist/subscribers/index.d.cts +2 -2
  34. package/dist/subscribers/index.d.cts.map +1 -1
  35. package/package.json +9 -9
  36. package/dist/index-CtMNRkV7.d.mts +0 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @geekmidas/constructs
2
2
 
3
+ ## 3.0.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`be4f7a9`](https://github.com/geekmidas/toolbox/commit/be4f7a9bd5de7f08adbca582916d6902e0c24de2)]:
8
+ - @geekmidas/cache@1.1.0
9
+ - @geekmidas/audit@2.0.0
10
+ - @geekmidas/rate-limit@2.0.0
11
+
3
12
  ## 2.0.0
4
13
 
5
14
  ### Patch Changes
@@ -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 hono_types3 from "hono/types";
10
+ import * as hono_types6 from "hono/types";
11
11
 
12
12
  //#region src/endpoints/HonoEndpointAdaptor.d.ts
13
13
  interface HonoEndpointOptions {
@@ -38,7 +38,7 @@ declare class HonoEndpoint<TRoute extends string, TMethod extends HttpMethod, TI
38
38
  * This method is kept for backward compatibility but does nothing.
39
39
  */
40
40
  static applyEventMiddleware(_app: Hono, _serviceDiscovery: ServiceDiscovery<any>): void;
41
- static fromRoutes<TLogger extends Logger, TServices extends Service[]>(routes: string[], envParser: EnvironmentParser<{}>, app: Hono<hono_types3.BlankEnv, hono_types3.BlankSchema, "/"> | undefined, _logger: TLogger, cwd?: string, options?: HonoEndpointOptions): Promise<Hono>;
41
+ static fromRoutes<TLogger extends Logger, TServices extends Service[]>(routes: string[], envParser: EnvironmentParser<{}>, app: Hono<hono_types6.BlankEnv, hono_types6.BlankSchema, "/"> | undefined, _logger: TLogger, cwd?: string, options?: HonoEndpointOptions): Promise<Hono>;
42
42
  static addRoutes<TServices extends Service[] = [], TLogger extends Logger = Logger>(endpoints: Endpoint<string, HttpMethod, any, any, TServices, TLogger>[], serviceDiscovery: ServiceDiscovery<ServiceRecord<TServices>>, app: Hono, options?: HonoEndpointOptions): void;
43
43
  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>>, app: Hono): void;
44
44
  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;
@@ -47,4 +47,4 @@ declare class HonoEndpoint<TRoute extends string, TMethod extends HttpMethod, TI
47
47
 
48
48
  //#endregion
49
49
  export { HonoEndpoint, HonoEndpointOptions };
50
- //# sourceMappingURL=HonoEndpointAdaptor-BnG87BVG.d.mts.map
50
+ //# sourceMappingURL=HonoEndpointAdaptor-C3AdQ0xS.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"HonoEndpointAdaptor-BnG87BVG.d.mts","names":[],"sources":["../src/endpoints/HonoEndpointAdaptor.ts"],"sourcesContent":[],"mappings":";;;;;;;;;;;;UAqCiB,mBAAA;;;AAAjB;AAqEA;;EAAyB,QAER,CAAA,EAAA,MAAA,GAAA,KAAA;EAAU;;;EAGD,cACT,CAAA,EAAA;IAAS,KAAA,CAAA,EAAA,MAAA;IAED,OAAA,CAAA,EAAA,MAAA;IAEF,WAAA,CAAA,EAAA,MAAA;EAAY,CAAA;;AAWhC,cArBU,YAqBV,CAAA,eAAA,MAAA,EAAA,gBAnBc,UAmBd,EAAA,eAlBa,eAkBb,GAAA,CAAA,CAAA,EAAA,mBAjBiB,gBAiBjB,GAAA,SAAA,GAAA,SAAA,EAAA,kBAhBgB,OAgBhB,EAAA,GAAA,EAAA,EAAA,gBAfc,MAed,GAfuB,MAevB,EAAA,WAAA,OAAA,EAAA,wBAbsB,cAatB,CAAA,GAAA,CAAA,GAAA,SAAA,GAAA,SAAA,EAAA,mCAAA,MAAA,GAAA,MAAA,EAAA,sBAXoB,YAWpB,GAAA,SAAA,GAAA,SAAA,EAAA,iCAAA,MAAA,GAAA,MAAA,EAAA,qBATmB,eASnB,CAAA,MAAA,EAAA,OAAA,CAAA,GATsD,eAStD,CAAA,MAAA,EAAA,OAAA,CAAA,EAAA,YAAA,SAAA,EAAA,6BAAA,MAAA,GAAA,MAAA,CAAA,CAAA;EAAM,iBACN,QAAA;EAAO,WACP,CAAA,QAAA,EAH0B,QAG1B,CAFA,MAEA,EADA,OACA,EAAA,MAAA,EACA,UADA,EAEA,SAFA,EAGA,OAHA,EAIA,QAJA,EAKA,eALA,EAMA,0BANA,EAOA,aAPA,EAQA,wBARA,EASA,YATA,EAUA,SAVA,EAWA,oBAXA,CAAA;EAAM,OACN,KAAA,EAAA,OAAA;EAAU,OACV,QAAA,CAAA,UAe8B,gBAf9B,CAAA,CAAA,CAAA,EAgBE,OAhBF,CAAA,GAAA,EAAA,MAAA,EAAA,CAAA,CAAA,CAAA,EAAA,IAAA,EAAA,OAAA,EAAA,MAAA,CAAA,EAkBQ,CAlBR,CAAA,EAkBS,OAlBT,CAAA,OAAA,CAAA;EAAS,QACT,CAAA,gBAAA,EAgCiB,gBAhCjB,CAgCkC,aAhClC,CAgCgD,SAhChD,CAAA,CAAA,EAAA,GAAA,EAiCI,IAjCJ,CAAA,EAAA,IAAA;EAAO;;;;;EAKiB,OACxB,oBAAA,CAAA,IAAA,EAsCK,IAtCL,EAAA,iBAAA,EAuCkB,gBAvClB,CAAA,GAAA,CAAA,CAAA,EAAA,IAAA;EAAY,OACZ,UAAA,CAAA,gBA4CsC,MA5CtC,EAAA,kBA4CgE,OA5ChE,EAAA,CAAA,CAAA,MAAA,EAAA,MAAA,EAAA,EAAA,SAAA,EA8CU,iBA9CV,CAAA,CAAA,CAAA,CAAA,EAAA,GAAA,EA+CE,IA/CF,CA8C2B,WAAA,CACzB,QAAA,EAAA,WAAA,CAAA,WAAA,EA/CF,GAAA,CAAA,GAAA,SAAA,EAAA,OAAA,EAgDQ,OAhDR,EAAA,GAAA,CAAA,EAAA,MAAA,EAAA,OAAA,CAAA,EAkDS,mBAlDT,CAAA,EAmDC,OAnDD,CAmDS,IAnDT,CAAA;EAAS,OACT,SAAA,CAAA,kBA6DiB,OA7DjB,EAAA,GAAA,EAAA,EAAA,gBA8De,MA9Df,GA8DwB,MA9DxB,CAAA,CAAA,SAAA,EAgEU,QAhEV,CAAA,MAAA,EAgE2B,UAhE3B,EAAA,GAAA,EAAA,GAAA,EAgEiD,SAhEjD,EAgE4D,OAhE5D,CAAA,EAAA,EAAA,gBAAA,EAiEiB,gBAjEjB,CAiEkC,aAjElC,CAiEgD,SAjEhD,CAAA,CAAA,EAAA,GAAA,EAkEI,IAlEJ,EAAA,OAAA,CAAA,EAmES,mBAnET,CAAA,EAAA,IAAA;EAAoB,OAdM,QAAA,CAAA,eAAA,MAAA,EAAA,gBA2IX,UA3IW,EAAA,eA4IZ,eA5IY,GAAA,CAAA,CAAA,EAAA,mBA6IR,gBA7IQ,GAAA,SAAA,GAAA,SAAA,EAAA,kBA8IT,OA9IS,EAAA,GAAA,EAAA,EAAA,gBA+IX,MA/IW,GA+IF,MA/IE,EAAA,WAAA,OAAA,EAAA,wBAiJH,cAjJG,CAAA,GAAA,CAAA,GAAA,SAAA,GAAA,SAAA,EAAA,mCAAA,MAAA,GAAA,MAAA,EAAA,sBAmJL,YAnJK,GAAA,SAAA,GAAA,SAAA,EAAA,iCAAA,MAAA,GAAA,MAAA,EAAA,qBAqJN,eArJM,CAAA,MAAA,EAAA,OAAA,CAAA,GAqJ6B,eArJ7B,CAAA,MAAA,EAAA,OAAA,CAAA,EAAA,YAAA,SAAA,EAAA,6BAAA,MAAA,GAAA,MAAA,CAAA,CAAA,QAAA,EA4JjB,QA5JiB,CA6J1B,MA7J0B,EA8J1B,OA9J0B,EA+J1B,MA/J0B,EAgK1B,UAhK0B,EAiK1B,SAjK0B,EAkK1B,OAlK0B,EAmK1B,QAnK0B,EAoK1B,eApK0B,EAqK1B,0BArK0B,EAsK1B,aAtK0B,EAuK1B,wBAvK0B,EAwK1B,YAxK0B,EAyK1B,SAzK0B,EA0K1B,oBA1K0B,CAAA,EAAA,gBAAA,EA4KT,gBA5KS,CA4KQ,aA5KR,CA4KsB,SA5KtB,CAAA,CAAA,EAAA,GAAA,EA6KtB,IA7KsB,CAAA,EAAA,IAAA;EAAQ,OAoBJ,YAAA,CAAA,kBA0db,OA1da,EAAA,GAAA,EAAA,EAAA,gBA2df,MA3de,GA2dN,MA3dM,CAAA,CAAA,SAAA,EA6dpB,QA7doB,CAAA,MAAA,EA6dH,UA7dG,EAAA,GAAA,EAAA,GAAA,EA6dmB,SA7dnB,EA6d8B,OA7d9B,CAAA,EAAA,EAAA,GAAA,EA8d1B,IA9d0B,EAAA,QAAA,EAAA,MAAA,EAAA,cAAA,CAAA,EAged,mBAhec,CAAA,gBAAA,CAAA,CAAA,EAAA,IAAA"}
1
+ {"version":3,"file":"HonoEndpointAdaptor-C3AdQ0xS.d.mts","names":[],"sources":["../src/endpoints/HonoEndpointAdaptor.ts"],"sourcesContent":[],"mappings":"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"}
@@ -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 hono_types9 from "hono/types";
9
+ import * as hono_types3 from "hono/types";
10
10
  import { Context, Hono } from "hono";
11
11
 
12
12
  //#region src/endpoints/HonoEndpointAdaptor.d.ts
@@ -38,7 +38,7 @@ declare class HonoEndpoint<TRoute extends string, TMethod extends HttpMethod, TI
38
38
  * This method is kept for backward compatibility but does nothing.
39
39
  */
40
40
  static applyEventMiddleware(_app: Hono, _serviceDiscovery: ServiceDiscovery<any>): void;
41
- static fromRoutes<TLogger extends Logger, TServices extends Service[]>(routes: string[], envParser: EnvironmentParser<{}>, app: Hono<hono_types9.BlankEnv, hono_types9.BlankSchema, "/"> | undefined, _logger: TLogger, cwd?: string, options?: HonoEndpointOptions): Promise<Hono>;
41
+ static fromRoutes<TLogger extends Logger, TServices extends Service[]>(routes: string[], envParser: EnvironmentParser<{}>, app: Hono<hono_types3.BlankEnv, hono_types3.BlankSchema, "/"> | undefined, _logger: TLogger, cwd?: string, options?: HonoEndpointOptions): Promise<Hono>;
42
42
  static addRoutes<TServices extends Service[] = [], TLogger extends Logger = Logger>(endpoints: Endpoint<string, HttpMethod, any, any, TServices, TLogger>[], serviceDiscovery: ServiceDiscovery<ServiceRecord<TServices>>, app: Hono, options?: HonoEndpointOptions): void;
43
43
  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>>, app: Hono): void;
44
44
  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;
@@ -47,4 +47,4 @@ declare class HonoEndpoint<TRoute extends string, TMethod extends HttpMethod, TI
47
47
 
48
48
  //#endregion
49
49
  export { HonoEndpoint, HonoEndpointOptions };
50
- //# sourceMappingURL=HonoEndpointAdaptor-BuyXynoH.d.cts.map
50
+ //# sourceMappingURL=HonoEndpointAdaptor-vI3LPiyu.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"HonoEndpointAdaptor-BuyXynoH.d.cts","names":[],"sources":["../src/endpoints/HonoEndpointAdaptor.ts"],"sourcesContent":[],"mappings":"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"}
1
+ {"version":3,"file":"HonoEndpointAdaptor-vI3LPiyu.d.cts","names":[],"sources":["../src/endpoints/HonoEndpointAdaptor.ts"],"sourcesContent":[],"mappings":"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"}
@@ -4,7 +4,7 @@ import "../telemetry-C-kNOW3C.mjs";
4
4
  import "../BaseFunctionBuilder-CsvFjzA8.mjs";
5
5
  import "../Function-CZw1DRQ6.mjs";
6
6
  import "../FunctionBuilder-m5BNA2Ap.mjs";
7
- import "../index-CtMNRkV7.mjs";
7
+ import "../index-DQo_Csy7.mjs";
8
8
  import "../Authorizer-DBsrDTuf.mjs";
9
9
  import "../Endpoint-BiPM0glm.mjs";
10
10
  import "../AmazonApiGatewayEndpointAdaptor-CQSZArI6.mjs";
@@ -6,5 +6,5 @@ import "../FunctionBuilder-D_7f5MfS.cjs";
6
6
  import "../index-BnoOaBQV.cjs";
7
7
  import "../Authorizer-DWtwC8we.cjs";
8
8
  import "../Endpoint-C9N6CmvB.cjs";
9
- import { HonoEndpoint } from "../HonoEndpointAdaptor-BuyXynoH.cjs";
9
+ import { HonoEndpoint } from "../HonoEndpointAdaptor-vI3LPiyu.cjs";
10
10
  export { HonoEndpoint };
@@ -3,8 +3,8 @@ import "../types-aFmq5cKh.mjs";
3
3
  import "../BaseFunctionBuilder-CsvFjzA8.mjs";
4
4
  import "../Function-CZw1DRQ6.mjs";
5
5
  import "../FunctionBuilder-m5BNA2Ap.mjs";
6
- import "../index-CtMNRkV7.mjs";
6
+ import "../index-DQo_Csy7.mjs";
7
7
  import "../Authorizer-DBsrDTuf.mjs";
8
8
  import "../Endpoint-BiPM0glm.mjs";
9
- import { HonoEndpoint } from "../HonoEndpointAdaptor-BnG87BVG.mjs";
9
+ import { HonoEndpoint } from "../HonoEndpointAdaptor-C3AdQ0xS.mjs";
10
10
  export { HonoEndpoint };
@@ -3,7 +3,7 @@ import "../types-aFmq5cKh.mjs";
3
3
  import "../BaseFunctionBuilder-CsvFjzA8.mjs";
4
4
  import "../Function-CZw1DRQ6.mjs";
5
5
  import "../FunctionBuilder-m5BNA2Ap.mjs";
6
- import "../index-CtMNRkV7.mjs";
6
+ import "../index-DQo_Csy7.mjs";
7
7
  import "../Authorizer-DBsrDTuf.mjs";
8
8
  import "../Endpoint-BiPM0glm.mjs";
9
9
  import "../Subscriber-BgB3RRxb.mjs";
@@ -2,6 +2,6 @@ import "../Construct-C2SyofdS.mjs";
2
2
  import "../BaseFunctionBuilder-CsvFjzA8.mjs";
3
3
  import "../Function-CZw1DRQ6.mjs";
4
4
  import "../FunctionBuilder-m5BNA2Ap.mjs";
5
- import "../index-CtMNRkV7.mjs";
5
+ import "../index-DQo_Csy7.mjs";
6
6
  import { Cron, CronExpression, RateExpression, ScheduleExpression } from "../Cron-CWxjO2Fg.mjs";
7
7
  export { Cron, CronExpression, RateExpression, ScheduleExpression };
@@ -2,7 +2,7 @@ import "../Construct-C2SyofdS.mjs";
2
2
  import "../BaseFunctionBuilder-CsvFjzA8.mjs";
3
3
  import "../Function-CZw1DRQ6.mjs";
4
4
  import "../FunctionBuilder-m5BNA2Ap.mjs";
5
- import "../index-CtMNRkV7.mjs";
5
+ import "../index-DQo_Csy7.mjs";
6
6
  import "../Cron-CWxjO2Fg.mjs";
7
7
  import { CronBuilder } from "../CronBuilder-DJnXbDGK.mjs";
8
8
  export { CronBuilder };
@@ -5,12 +5,12 @@ import "../FunctionBuilder-D_7f5MfS.cjs";
5
5
  import "../index-BnoOaBQV.cjs";
6
6
  import { Cron, CronExpression, RateExpression, ScheduleExpression } from "../Cron-BDxW6fYg.cjs";
7
7
  import { CronBuilder } from "../CronBuilder-CginrW3H.cjs";
8
- import * as _geekmidas_logger4 from "@geekmidas/logger";
9
- import * as _geekmidas_services3 from "@geekmidas/services";
10
- import * as _geekmidas_schema2 from "@geekmidas/schema";
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<_geekmidas_schema2.ComposableStandardSchema, _geekmidas_services3.Service<string, unknown>[], _geekmidas_logger4.Logger, undefined, undefined, string, undefined, string>;
13
+ declare const c: CronBuilder<_geekmidas_schema0.ComposableStandardSchema, _geekmidas_services1.Service<string, unknown>[], _geekmidas_logger2.Logger, undefined, undefined, string, undefined, string>;
14
14
  //# sourceMappingURL=index.d.ts.map
15
15
 
16
16
  //#endregion
@@ -2,7 +2,7 @@ import "../Construct-C2SyofdS.mjs";
2
2
  import "../BaseFunctionBuilder-CsvFjzA8.mjs";
3
3
  import "../Function-CZw1DRQ6.mjs";
4
4
  import "../FunctionBuilder-m5BNA2Ap.mjs";
5
- import "../index-CtMNRkV7.mjs";
5
+ import "../index-DQo_Csy7.mjs";
6
6
  import { Cron, CronExpression, RateExpression, ScheduleExpression } from "../Cron-CWxjO2Fg.mjs";
7
7
  import { CronBuilder } from "../CronBuilder-DJnXbDGK.mjs";
8
8
  import * as _geekmidas_services1 from "@geekmidas/services";
@@ -4,7 +4,7 @@ import "../telemetry-C-kNOW3C.mjs";
4
4
  import "../BaseFunctionBuilder-CsvFjzA8.mjs";
5
5
  import "../Function-CZw1DRQ6.mjs";
6
6
  import "../FunctionBuilder-m5BNA2Ap.mjs";
7
- import "../index-CtMNRkV7.mjs";
7
+ import "../index-DQo_Csy7.mjs";
8
8
  import "../Authorizer-DBsrDTuf.mjs";
9
9
  import "../Endpoint-BiPM0glm.mjs";
10
10
  import { AmazonApiGatewayEndpoint, AmazonApiGatewayEndpointHandlerResponse, AmazonApiGatewayEndpointOptions, AmazonApiGatewayV1EndpointHandler, AmazonApiGatewayV2EndpointHandler, Event, GetInputResponse, HandlerEvent, LoggerContext, TelescopeIntegration } from "../AmazonApiGatewayEndpointAdaptor-CQSZArI6.mjs";
@@ -4,7 +4,7 @@ import "../telemetry-C-kNOW3C.mjs";
4
4
  import "../BaseFunctionBuilder-CsvFjzA8.mjs";
5
5
  import "../Function-CZw1DRQ6.mjs";
6
6
  import "../FunctionBuilder-m5BNA2Ap.mjs";
7
- import "../index-CtMNRkV7.mjs";
7
+ import "../index-DQo_Csy7.mjs";
8
8
  import "../Authorizer-DBsrDTuf.mjs";
9
9
  import "../Endpoint-BiPM0glm.mjs";
10
10
  import "../AmazonApiGatewayEndpointAdaptor-CQSZArI6.mjs";
@@ -4,7 +4,7 @@ import "../telemetry-C-kNOW3C.mjs";
4
4
  import "../BaseFunctionBuilder-CsvFjzA8.mjs";
5
5
  import "../Function-CZw1DRQ6.mjs";
6
6
  import "../FunctionBuilder-m5BNA2Ap.mjs";
7
- import "../index-CtMNRkV7.mjs";
7
+ import "../index-DQo_Csy7.mjs";
8
8
  import "../Authorizer-DBsrDTuf.mjs";
9
9
  import "../Endpoint-BiPM0glm.mjs";
10
10
  import { AmazonApiGatewayEndpointOptions } from "../AmazonApiGatewayEndpointAdaptor-CQSZArI6.mjs";
@@ -3,7 +3,7 @@ import "../types-aFmq5cKh.mjs";
3
3
  import "../BaseFunctionBuilder-CsvFjzA8.mjs";
4
4
  import "../Function-CZw1DRQ6.mjs";
5
5
  import "../FunctionBuilder-m5BNA2Ap.mjs";
6
- import "../index-CtMNRkV7.mjs";
6
+ import "../index-DQo_Csy7.mjs";
7
7
  import "../Authorizer-DBsrDTuf.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-BiPM0glm.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-aFmq5cKh.mjs";
3
3
  import "../BaseFunctionBuilder-CsvFjzA8.mjs";
4
4
  import "../Function-CZw1DRQ6.mjs";
5
5
  import "../FunctionBuilder-m5BNA2Ap.mjs";
6
- import "../index-CtMNRkV7.mjs";
6
+ import "../index-DQo_Csy7.mjs";
7
7
  import "../Authorizer-DBsrDTuf.mjs";
8
8
  import "../Endpoint-BiPM0glm.mjs";
9
9
  import { EndpointBuilder } from "../EndpointBuilder-B0Aj5jbB.mjs";
@@ -3,7 +3,7 @@ import "../types-aFmq5cKh.mjs";
3
3
  import "../BaseFunctionBuilder-CsvFjzA8.mjs";
4
4
  import "../Function-CZw1DRQ6.mjs";
5
5
  import "../FunctionBuilder-m5BNA2Ap.mjs";
6
- import "../index-CtMNRkV7.mjs";
6
+ import "../index-DQo_Csy7.mjs";
7
7
  import { SecurityScheme } from "../Authorizer-DBsrDTuf.mjs";
8
8
  import "../Endpoint-BiPM0glm.mjs";
9
9
  import "../EndpointBuilder-B0Aj5jbB.mjs";
@@ -6,5 +6,5 @@ import "../FunctionBuilder-D_7f5MfS.cjs";
6
6
  import "../index-BnoOaBQV.cjs";
7
7
  import "../Authorizer-DWtwC8we.cjs";
8
8
  import "../Endpoint-C9N6CmvB.cjs";
9
- import { HonoEndpoint, HonoEndpointOptions } from "../HonoEndpointAdaptor-BuyXynoH.cjs";
9
+ import { HonoEndpoint, HonoEndpointOptions } from "../HonoEndpointAdaptor-vI3LPiyu.cjs";
10
10
  export { HonoEndpoint, HonoEndpointOptions };
@@ -3,8 +3,8 @@ import "../types-aFmq5cKh.mjs";
3
3
  import "../BaseFunctionBuilder-CsvFjzA8.mjs";
4
4
  import "../Function-CZw1DRQ6.mjs";
5
5
  import "../FunctionBuilder-m5BNA2Ap.mjs";
6
- import "../index-CtMNRkV7.mjs";
6
+ import "../index-DQo_Csy7.mjs";
7
7
  import "../Authorizer-DBsrDTuf.mjs";
8
8
  import "../Endpoint-BiPM0glm.mjs";
9
- import { HonoEndpoint, HonoEndpointOptions } from "../HonoEndpointAdaptor-BnG87BVG.mjs";
9
+ import { HonoEndpoint, HonoEndpointOptions } from "../HonoEndpointAdaptor-C3AdQ0xS.mjs";
10
10
  export { HonoEndpoint, HonoEndpointOptions };
@@ -3,7 +3,7 @@ import "../types-aFmq5cKh.mjs";
3
3
  import "../BaseFunctionBuilder-CsvFjzA8.mjs";
4
4
  import "../Function-CZw1DRQ6.mjs";
5
5
  import "../FunctionBuilder-m5BNA2Ap.mjs";
6
- import "../index-CtMNRkV7.mjs";
6
+ import "../index-DQo_Csy7.mjs";
7
7
  import "../Authorizer-DBsrDTuf.mjs";
8
8
  import "../Endpoint-BiPM0glm.mjs";
9
9
  import { TestEndpointAdaptor, TestHttpResponse, TestRequestAdaptor } from "../TestEndpointAdaptor-qSWV8dpS.mjs";
@@ -3,7 +3,7 @@ import "../types-aFmq5cKh.mjs";
3
3
  import "../BaseFunctionBuilder-CsvFjzA8.mjs";
4
4
  import "../Function-CZw1DRQ6.mjs";
5
5
  import "../FunctionBuilder-m5BNA2Ap.mjs";
6
- import "../index-CtMNRkV7.mjs";
6
+ import "../index-DQo_Csy7.mjs";
7
7
  import "../Authorizer-DBsrDTuf.mjs";
8
8
  import { ActorExtractor, EndpointAuditorConfig, MappedAudit } from "../Endpoint-BiPM0glm.mjs";
9
9
  export { ActorExtractor, EndpointAuditorConfig, MappedAudit };
@@ -3,7 +3,7 @@ import { HttpMethod } from "../types-aFmq5cKh.mjs";
3
3
  import "../BaseFunctionBuilder-CsvFjzA8.mjs";
4
4
  import "../Function-CZw1DRQ6.mjs";
5
5
  import "../FunctionBuilder-m5BNA2Ap.mjs";
6
- import "../index-CtMNRkV7.mjs";
6
+ import "../index-DQo_Csy7.mjs";
7
7
  import "../Authorizer-DBsrDTuf.mjs";
8
8
  import { Endpoint } from "../Endpoint-BiPM0glm.mjs";
9
9
  import { Service } from "@geekmidas/services";
@@ -10,10 +10,10 @@ import { EndpointBuilder } from "../EndpointBuilder-Bel6RS7W.cjs";
10
10
  import { EndpointFactory } from "../EndpointFactory-CXvakOkn.cjs";
11
11
  import { publishConstructEvents } from "../publisher-BrzPGnm4.cjs";
12
12
  import { createApiGatewayCookies, createApiGatewayHeaders, createHonoCookies, createHonoHeaders, createNoopCookies, createNoopHeaders } from "../lazyAccessors-DdZaA716.cjs";
13
- import * as _geekmidas_logger0 from "@geekmidas/logger";
13
+ import * as _geekmidas_logger8 from "@geekmidas/logger";
14
14
 
15
15
  //#region src/endpoints/index.d.ts
16
- declare const e: EndpointFactory<[], "", _geekmidas_logger0.Logger, unknown, undefined, string, readonly string[], undefined, string, never, undefined, string, Record<string, SecurityScheme>, undefined>;
16
+ declare const e: EndpointFactory<[], "", _geekmidas_logger8.Logger, unknown, undefined, string, readonly string[], undefined, string, never, undefined, string, Record<string, SecurityScheme>, undefined>;
17
17
  //# sourceMappingURL=index.d.ts.map
18
18
 
19
19
  //#endregion
@@ -3,17 +3,17 @@ import "../types-aFmq5cKh.mjs";
3
3
  import "../BaseFunctionBuilder-CsvFjzA8.mjs";
4
4
  import "../Function-CZw1DRQ6.mjs";
5
5
  import "../FunctionBuilder-m5BNA2Ap.mjs";
6
- import "../index-CtMNRkV7.mjs";
6
+ import "../index-DQo_Csy7.mjs";
7
7
  import { Authorizer, BUILT_IN_SECURITY_SCHEMES, BuiltInSecuritySchemeId, OAuthFlow, OAuthFlows, SecurityScheme, createAuthorizer, getSecurityScheme, isBuiltInSecurityScheme } from "../Authorizer-DBsrDTuf.mjs";
8
8
  import { ActorExtractor, Endpoint, EndpointContext, EndpointHandler, EndpointOutput, EndpointSchemas, MappedAudit, RLS_BYPASS, ResponseBuilder, RlsBypass, RlsConfig, RlsContext, RlsContextExtractor } from "../Endpoint-BiPM0glm.mjs";
9
9
  import { EndpointBuilder } from "../EndpointBuilder-B0Aj5jbB.mjs";
10
10
  import { EndpointFactory } from "../EndpointFactory-CWIeWCRG.mjs";
11
11
  import { publishConstructEvents } from "../publisher-CP4gpv-4.mjs";
12
12
  import { createApiGatewayCookies, createApiGatewayHeaders, createHonoCookies, createHonoHeaders, createNoopCookies, createNoopHeaders } from "../lazyAccessors-DXkJpnyX.mjs";
13
- import * as _geekmidas_logger5 from "@geekmidas/logger";
13
+ import * as _geekmidas_logger8 from "@geekmidas/logger";
14
14
 
15
15
  //#region src/endpoints/index.d.ts
16
- declare const e: EndpointFactory<[], "", _geekmidas_logger5.Logger, unknown, undefined, string, readonly string[], undefined, string, never, undefined, string, Record<string, SecurityScheme>, undefined>;
16
+ declare const e: EndpointFactory<[], "", _geekmidas_logger8.Logger, unknown, undefined, string, readonly string[], undefined, string, never, undefined, string, Record<string, SecurityScheme>, undefined>;
17
17
  //# sourceMappingURL=index.d.ts.map
18
18
 
19
19
  //#endregion
@@ -3,7 +3,7 @@ import "../types-aFmq5cKh.mjs";
3
3
  import "../BaseFunctionBuilder-CsvFjzA8.mjs";
4
4
  import "../Function-CZw1DRQ6.mjs";
5
5
  import "../FunctionBuilder-m5BNA2Ap.mjs";
6
- import "../index-CtMNRkV7.mjs";
6
+ import "../index-DQo_Csy7.mjs";
7
7
  import "../Authorizer-DBsrDTuf.mjs";
8
8
  import "../Endpoint-BiPM0glm.mjs";
9
9
  import { createApiGatewayCookies, createApiGatewayHeaders, createCookieHeaderAccessor, createHonoCookies, createHonoHeaders, createNoopCookies, createNoopHeaders, createObjectHeaders } from "../lazyAccessors-DXkJpnyX.mjs";
@@ -3,7 +3,7 @@ import "../types-aFmq5cKh.mjs";
3
3
  import "../BaseFunctionBuilder-CsvFjzA8.mjs";
4
4
  import "../Function-CZw1DRQ6.mjs";
5
5
  import "../FunctionBuilder-m5BNA2Ap.mjs";
6
- import "../index-CtMNRkV7.mjs";
6
+ import "../index-DQo_Csy7.mjs";
7
7
  import "../Authorizer-DBsrDTuf.mjs";
8
8
  import { CookieFn, Endpoint, HeaderFn } from "../Endpoint-BiPM0glm.mjs";
9
9
  import { Service, ServiceDiscovery } from "@geekmidas/services";
@@ -3,7 +3,7 @@ import "../types-aFmq5cKh.mjs";
3
3
  import "../BaseFunctionBuilder-CsvFjzA8.mjs";
4
4
  import "../Function-CZw1DRQ6.mjs";
5
5
  import "../FunctionBuilder-m5BNA2Ap.mjs";
6
- import "../index-CtMNRkV7.mjs";
6
+ import "../index-DQo_Csy7.mjs";
7
7
  import "../Authorizer-DBsrDTuf.mjs";
8
8
  import { RLS_BYPASS, RlsBypass, RlsConfig, RlsContext, RlsContextExtractor } from "../Endpoint-BiPM0glm.mjs";
9
9
  export { RLS_BYPASS, RlsBypass, RlsConfig, RlsContext, RlsContextExtractor };
@@ -2,5 +2,5 @@ import "../Construct-C2SyofdS.mjs";
2
2
  import { BaseFunctionBuilder } from "../BaseFunctionBuilder-CsvFjzA8.mjs";
3
3
  import { Function, FunctionContext, FunctionHandler } from "../Function-CZw1DRQ6.mjs";
4
4
  import { FunctionBuilder } from "../FunctionBuilder-m5BNA2Ap.mjs";
5
- import { f } from "../index-CtMNRkV7.mjs";
5
+ import { f } from "../index-DQo_Csy7.mjs";
6
6
  export { BaseFunctionBuilder, Function, FunctionBuilder, FunctionContext, FunctionHandler, f };
@@ -0,0 +1,12 @@
1
+ import { FunctionBuilder } from "./FunctionBuilder-m5BNA2Ap.mjs";
2
+ import * as _geekmidas_audit5 from "@geekmidas/audit";
3
+ import * as _geekmidas_logger4 from "@geekmidas/logger";
4
+ import * as _geekmidas_schema3 from "@geekmidas/schema";
5
+
6
+ //#region src/functions/index.d.ts
7
+ declare const f: FunctionBuilder<_geekmidas_schema3.ComposableStandardSchema, undefined, [], _geekmidas_logger4.Logger, undefined, string, undefined, string, undefined, string, _geekmidas_audit5.AuditableAction<string, unknown>>;
8
+ //# sourceMappingURL=index.d.ts.map
9
+
10
+ //#endregion
11
+ export { f };
12
+ //# sourceMappingURL=index-DQo_Csy7.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index-CtMNRkV7.d.mts","names":[],"sources":["../src/functions/index.ts"],"sourcesContent":[],"mappings":";;;;;;cAWa,GAAC,gBAAwB,kBAAA,CAAxB,wBAAA,iBAAA,kBAAA,CAAA,MAAA,2DAAA,iBAAA,CAAA"}
1
+ {"version":3,"file":"index-DQo_Csy7.d.mts","names":[],"sources":["../src/functions/index.ts"],"sourcesContent":[],"mappings":";;;;;;cAWa,GAAC,gBAAwB,kBAAA,CAAxB,wBAAA,iBAAA,kBAAA,CAAA,MAAA,2DAAA,iBAAA,CAAA"}
@@ -1,10 +1,10 @@
1
1
  import "../Construct-CX7HyFfT.cjs";
2
2
  import { Subscriber } from "../Subscriber-1rDE7HuM.cjs";
3
3
  import { SubscriberBuilder } from "../SubscriberBuilder-B9uva8fZ.cjs";
4
- import * as _geekmidas_logger8 from "@geekmidas/logger";
4
+ import * as _geekmidas_logger10 from "@geekmidas/logger";
5
5
 
6
6
  //#region src/subscribers/index.d.ts
7
- declare const s: SubscriberBuilder<[], _geekmidas_logger8.Logger, undefined, undefined, string, []>;
7
+ declare const s: SubscriberBuilder<[], _geekmidas_logger10.Logger, undefined, undefined, string, []>;
8
8
  //# sourceMappingURL=index.d.ts.map
9
9
 
10
10
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.cts","names":[],"sources":["../../src/subscribers/index.ts"],"sourcesContent":[],"mappings":";;;;;;cAKa,GAAC,sBAA0B,kBAAA,CAA1B,MAAA"}
1
+ {"version":3,"file":"index.d.cts","names":[],"sources":["../../src/subscribers/index.ts"],"sourcesContent":[],"mappings":";;;;;;cAKa,GAAC,sBAA0B,mBAAA,CAA1B,MAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geekmidas/constructs",
3
- "version": "2.0.0",
3
+ "version": "3.0.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "exports": {
@@ -78,14 +78,14 @@
78
78
  "kysely": "~0.28.8",
79
79
  "pg": "~8.16.3",
80
80
  "zod": "~4.1.13",
81
- "@geekmidas/audit": "^1.0.0",
82
- "@geekmidas/cache": "^1.0.0",
81
+ "@geekmidas/audit": "^2.0.0",
82
+ "@geekmidas/cache": "^1.1.0",
83
83
  "@geekmidas/db": "^1.0.0",
84
84
  "@geekmidas/envkit": "^1.0.3",
85
85
  "@geekmidas/errors": "^1.0.0",
86
86
  "@geekmidas/events": "^1.1.0",
87
87
  "@geekmidas/logger": "^1.0.0",
88
- "@geekmidas/rate-limit": "^1.0.0",
88
+ "@geekmidas/rate-limit": "^2.0.0",
89
89
  "@geekmidas/schema": "^1.0.0",
90
90
  "@geekmidas/services": "^1.0.1",
91
91
  "@geekmidas/testkit": "^1.0.2"
@@ -94,16 +94,16 @@
94
94
  "@middy/core": ">=6.3.1",
95
95
  "@types/aws-lambda": ">=8.10.92",
96
96
  "hono": ">=4.8.2",
97
- "@geekmidas/cache": "^1.0.0",
98
- "@geekmidas/envkit": "^1.0.3",
97
+ "@geekmidas/audit": "^2.0.0",
98
+ "@geekmidas/cache": "^1.1.0",
99
99
  "@geekmidas/db": "^1.0.0",
100
+ "@geekmidas/envkit": "^1.0.3",
100
101
  "@geekmidas/errors": "^1.0.0",
101
102
  "@geekmidas/events": "^1.1.0",
102
103
  "@geekmidas/logger": "^1.0.0",
103
- "@geekmidas/rate-limit": "^1.0.0",
104
+ "@geekmidas/rate-limit": "^2.0.0",
104
105
  "@geekmidas/schema": "^1.0.0",
105
- "@geekmidas/services": "^1.0.1",
106
- "@geekmidas/audit": "^1.0.0"
106
+ "@geekmidas/services": "^1.0.1"
107
107
  },
108
108
  "peerDependenciesMeta": {
109
109
  "@geekmidas/audit": {
@@ -1,12 +0,0 @@
1
- import { FunctionBuilder } from "./FunctionBuilder-m5BNA2Ap.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
- //# sourceMappingURL=index.d.ts.map
9
-
10
- //#endregion
11
- export { f };
12
- //# sourceMappingURL=index-CtMNRkV7.d.mts.map