@bitblit/ratchet-epsilon-common 4.0.183-alpha → 4.0.184-alpha
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/lib/background/background-dynamo-log-table-handler.d.ts +11 -0
- package/lib/background/background-entry.d.ts +4 -0
- package/lib/background/background-execution-event-type.d.ts +7 -0
- package/lib/background/background-execution-event.d.ts +8 -0
- package/lib/background/background-execution-listener.d.ts +5 -0
- package/lib/background/background-handler.d.ts +29 -0
- package/lib/background/background-http-adapter-handler.d.ts +22 -0
- package/lib/background/background-meta-response-internal.d.ts +5 -0
- package/lib/background/background-process-handling.d.ts +4 -0
- package/lib/background/background-process-log-table-entry.d.ts +11 -0
- package/lib/background/background-queue-response-internal.d.ts +8 -0
- package/lib/background/background-validator.d.ts +17 -0
- package/lib/background/epsilon-background-process-error.d.ts +30 -0
- package/lib/background/internal-background-entry.d.ts +7 -0
- package/lib/background/manager/abstract-background-manager.d.ts +19 -0
- package/lib/background/manager/aws-sqs-sns-background-manager.d.ts +23 -0
- package/lib/background/manager/background-manager-like.d.ts +17 -0
- package/lib/background/manager/background-manager.spec.d.ts +1 -0
- package/lib/background/manager/single-thread-local-background-manager.d.ts +15 -0
- package/lib/background/s3-background-transaction-logger.d.ts +17 -0
- package/lib/build/ratchet-epsilon-common-info.d.ts +5 -0
- package/lib/built-in/background/echo-processor.d.ts +7 -0
- package/lib/built-in/background/log-and-enqueue-echo-processor.d.ts +6 -0
- package/lib/built-in/background/log-message-background-error-processor.d.ts +5 -0
- package/lib/built-in/background/no-op-processor.d.ts +6 -0
- package/lib/built-in/background/retry-processor.d.ts +16 -0
- package/lib/built-in/background/sample-delay-processor.d.ts +6 -0
- package/lib/built-in/background/sample-input-validated-processor-data.d.ts +4 -0
- package/lib/built-in/background/sample-input-validated-processor.d.ts +8 -0
- package/lib/built-in/built-in-trace-id-generators.d.ts +5 -0
- package/lib/built-in/daemon/daemon-authorizer-function.d.ts +5 -0
- package/lib/built-in/daemon/daemon-config.d.ts +8 -0
- package/lib/built-in/daemon/daemon-group-selection-function.d.ts +4 -0
- package/lib/built-in/daemon/daemon-handler.d.ts +16 -0
- package/lib/built-in/daemon/daemon-process-state-list.d.ts +5 -0
- package/lib/built-in/http/apollo/apollo-util.d.ts +10 -0
- package/lib/built-in/http/apollo/default-epsilon-apollo-context.d.ts +10 -0
- package/lib/built-in/http/apollo/epsilon-apollo-cors-method.d.ts +5 -0
- package/lib/built-in/http/apollo/epsilon-lambda-apollo-context-function-argument.d.ts +5 -0
- package/lib/built-in/http/apollo/epsilon-lambda-apollo-options.d.ts +8 -0
- package/lib/built-in/http/apollo-filter.d.ts +10 -0
- package/lib/built-in/http/built-in-auth-filters.d.ts +9 -0
- package/lib/built-in/http/built-in-authorizers.d.ts +8 -0
- package/lib/built-in/http/built-in-filters.d.ts +25 -0
- package/lib/built-in/http/built-in-handlers.d.ts +9 -0
- package/lib/built-in/http/log-level-manipulation-filter.d.ts +6 -0
- package/lib/built-in/http/run-handler-as-filter.d.ts +12 -0
- package/lib/built-in/http/run-handler-as-filter.spec.d.ts +1 -0
- package/lib/cli/ratchet-cli-handler.d.ts +6 -0
- package/lib/cli/run-background-process-from-command-line.d.ts +3 -0
- package/lib/config/background/background-aws-config.d.ts +7 -0
- package/lib/config/background/background-config.d.ts +14 -0
- package/lib/config/background/background-error-processor.d.ts +4 -0
- package/lib/config/background/background-processor.d.ts +6 -0
- package/lib/config/background/background-transaction-log.d.ts +8 -0
- package/lib/config/background/background-transaction-logger.d.ts +5 -0
- package/lib/config/cron/abstract-cron-entry.d.ts +12 -0
- package/lib/config/cron/cron-background-entry.d.ts +6 -0
- package/lib/config/cron/cron-config.d.ts +6 -0
- package/lib/config/dynamo-db-config.d.ts +5 -0
- package/lib/config/epsilon-config.d.ts +21 -0
- package/lib/config/epsilon-lambda-event-handler.d.ts +7 -0
- package/lib/config/epsilon-logger-config.d.ts +13 -0
- package/lib/config/generic-aws-event-handler-function.d.ts +3 -0
- package/lib/config/http/authorizer-function.d.ts +6 -0
- package/lib/config/http/epsilon-authorization-context.d.ts +5 -0
- package/lib/config/http/extended-api-gateway-event.d.ts +7 -0
- package/lib/config/http/filter-chain-context.d.ts +14 -0
- package/lib/config/http/filter-function.d.ts +4 -0
- package/lib/config/http/handler-function.d.ts +5 -0
- package/lib/config/http/http-config.d.ts +15 -0
- package/lib/config/http/http-processing-config.d.ts +11 -0
- package/lib/config/http/mapped-http-processing-config.d.ts +7 -0
- package/lib/config/http/null-returned-object-handling.d.ts +5 -0
- package/lib/config/inter-api/inter-api-aws-config.d.ts +5 -0
- package/lib/config/inter-api/inter-api-config.d.ts +6 -0
- package/lib/config/inter-api/inter-api-process-mapping.d.ts +6 -0
- package/lib/config/logging-trace-id-generator.d.ts +4 -0
- package/lib/config/open-api/open-api-document-components.d.ts +4 -0
- package/lib/config/open-api/open-api-document-path.d.ts +2 -0
- package/lib/config/open-api/open-api-document.d.ts +6 -0
- package/lib/config/s3-config.d.ts +6 -0
- package/lib/config/sns-config.d.ts +5 -0
- package/lib/http/auth/api-gateway-adapter-authentication-handler.d.ts +8 -0
- package/lib/http/auth/auth0-web-token-manipulator.d.ts +13 -0
- package/lib/http/auth/basic-auth-token.d.ts +4 -0
- package/lib/http/auth/google-web-token-manipulator.d.ts +14 -0
- package/lib/http/auth/google-web-token-manipulator.spec.d.ts +1 -0
- package/lib/http/auth/jwt-ratchet-local-web-token-manipulator.d.ts +11 -0
- package/lib/http/auth/local-web-token-manipulator.d.ts +19 -0
- package/lib/http/auth/local-web-token-manipulator.spec.d.ts +1 -0
- package/lib/http/auth/web-token-manipulator.d.ts +4 -0
- package/lib/http/error/bad-gateway.d.ts +5 -0
- package/lib/http/error/bad-request-error.d.ts +5 -0
- package/lib/http/error/conflict-error.d.ts +5 -0
- package/lib/http/error/epsilon-http-error.d.ts +41 -0
- package/lib/http/error/epsilon-http-error.spec.d.ts +1 -0
- package/lib/http/error/forbidden-error.d.ts +5 -0
- package/lib/http/error/gateway-timeout.d.ts +5 -0
- package/lib/http/error/method-not-allowed-error.d.ts +5 -0
- package/lib/http/error/misconfigured-error.d.ts +5 -0
- package/lib/http/error/not-found-error.d.ts +5 -0
- package/lib/http/error/not-implemented.d.ts +5 -0
- package/lib/http/error/request-timeout-error.d.ts +5 -0
- package/lib/http/error/service-unavailable.d.ts +5 -0
- package/lib/http/error/too-many-requests-error.d.ts +5 -0
- package/lib/http/error/unauthorized-error.d.ts +5 -0
- package/lib/http/event-util.d.ts +27 -0
- package/lib/http/event-util.spec.d.ts +1 -0
- package/lib/http/response-util.d.ts +11 -0
- package/lib/http/response-util.spec.d.ts +1 -0
- package/lib/http/route/epsilon-router.d.ts +8 -0
- package/lib/http/route/extended-auth-response-context.d.ts +6 -0
- package/lib/http/route/route-mapping.d.ts +12 -0
- package/lib/http/route/route-validator-config.d.ts +5 -0
- package/lib/http/route/router-util.d.ts +23 -0
- package/lib/http/route/router-util.spec.d.ts +1 -0
- package/lib/http/web-handler.d.ts +23 -0
- package/lib/http/web-handler.spec.d.ts +1 -0
- package/lib/http/web-v2-handler.d.ts +10 -0
- package/lib/index.mjs +1 -1
- package/lib/inter-api/inter-api-entry.d.ts +7 -0
- package/lib/inter-api/inter-api-util.d.ts +10 -0
- package/lib/inter-api/inter-api-util.spec.d.ts +1 -0
- package/lib/lambda-event-handler/cron-epsilon-lambda-event-handler.d.ts +14 -0
- package/lib/lambda-event-handler/cron-epsilon-lambda-event-handler.spec.d.ts +1 -0
- package/lib/lambda-event-handler/dynamo-epsilon-lambda-event-handler.d.ts +11 -0
- package/lib/lambda-event-handler/generic-sns-epsilon-lambda-event-handler.d.ts +10 -0
- package/lib/lambda-event-handler/inter-api-epsilon-lambda-event-handler.d.ts +10 -0
- package/lib/lambda-event-handler/s3-epsilon-lambda-event-handler.d.ts +10 -0
- package/lib/open-api-util/open-api-doc-modifications.d.ts +8 -0
- package/lib/open-api-util/open-api-doc-modifier.d.ts +7 -0
- package/lib/open-api-util/open-api-doc-modifier.spec.d.ts +1 -0
- package/lib/open-api-util/yaml-combiner.d.ts +3 -0
- package/lib/open-api-util/yaml-combiner.spec.d.ts +1 -0
- package/lib/sample/sample-server-components.d.ts +10 -0
- package/lib/sample/sample-server-static-files.d.ts +5 -0
- package/lib/sample/test-error-server.d.ts +11 -0
- package/lib/util/aws-util.d.ts +8 -0
- package/lib/util/context-util.d.ts +34 -0
- package/lib/util/cron-util.d.ts +11 -0
- package/lib/util/cron-util.spec.d.ts +1 -0
- package/lib/util/epsilon-config-parser.d.ts +14 -0
- package/package.json +8 -8
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { EpsilonLambdaEventHandler } from '../config/epsilon-lambda-event-handler.js';
|
|
2
|
+
import { Context, ProxyResult, ScheduledEvent } from 'aws-lambda';
|
|
3
|
+
import { EpsilonInstance } from '../epsilon-instance.js';
|
|
4
|
+
import { CronConfig } from '../config/cron/cron-config.js';
|
|
5
|
+
import { BackgroundHandler } from '../background/background-handler.js';
|
|
6
|
+
import { BackgroundManagerLike } from '../background/manager/background-manager-like.js';
|
|
7
|
+
export declare class CronEpsilonLambdaEventHandler implements EpsilonLambdaEventHandler<ScheduledEvent> {
|
|
8
|
+
private _epsilon;
|
|
9
|
+
constructor(_epsilon: EpsilonInstance);
|
|
10
|
+
extractLabel(evt: ScheduledEvent, context: Context): string;
|
|
11
|
+
handlesEvent(evt: any): boolean;
|
|
12
|
+
processEvent(evt: ScheduledEvent, context: Context): Promise<ProxyResult>;
|
|
13
|
+
static processCronEvent(evt: ScheduledEvent, cronConfig: CronConfig, backgroundManager: BackgroundManagerLike, background: BackgroundHandler): Promise<boolean>;
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { EpsilonLambdaEventHandler } from '../config/epsilon-lambda-event-handler.js';
|
|
2
|
+
import { Context, DynamoDBStreamEvent, ProxyResult } from 'aws-lambda';
|
|
3
|
+
import { EpsilonInstance } from '../epsilon-instance.js';
|
|
4
|
+
export declare class DynamoEpsilonLambdaEventHandler implements EpsilonLambdaEventHandler<DynamoDBStreamEvent> {
|
|
5
|
+
private _epsilon;
|
|
6
|
+
constructor(_epsilon: EpsilonInstance);
|
|
7
|
+
extractLabel(evt: DynamoDBStreamEvent, context: Context): string;
|
|
8
|
+
handlesEvent(evt: any): boolean;
|
|
9
|
+
processEvent(evt: DynamoDBStreamEvent, context: Context): Promise<ProxyResult>;
|
|
10
|
+
processUncaughtError(event: DynamoDBStreamEvent, context: Context, err: any): Promise<ProxyResult>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { EpsilonLambdaEventHandler } from '../config/epsilon-lambda-event-handler.js';
|
|
2
|
+
import { Context, ProxyResult, SNSEvent } from 'aws-lambda';
|
|
3
|
+
import { EpsilonInstance } from '../epsilon-instance.js';
|
|
4
|
+
export declare class GenericSnsEpsilonLambdaEventHandler implements EpsilonLambdaEventHandler<SNSEvent> {
|
|
5
|
+
private _epsilon;
|
|
6
|
+
constructor(_epsilon: EpsilonInstance);
|
|
7
|
+
extractLabel(evt: SNSEvent, context: Context): string;
|
|
8
|
+
handlesEvent(evt: any): boolean;
|
|
9
|
+
processEvent(evt: SNSEvent, context: Context): Promise<ProxyResult>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { EpsilonLambdaEventHandler } from '../config/epsilon-lambda-event-handler.js';
|
|
2
|
+
import { Context, ProxyResult, SNSEvent } from 'aws-lambda';
|
|
3
|
+
import { EpsilonInstance } from '../epsilon-instance.js';
|
|
4
|
+
export declare class InterApiEpsilonLambdaEventHandler implements EpsilonLambdaEventHandler<SNSEvent> {
|
|
5
|
+
private _epsilon;
|
|
6
|
+
constructor(_epsilon: EpsilonInstance);
|
|
7
|
+
extractLabel(evt: SNSEvent, context: Context): string;
|
|
8
|
+
handlesEvent(evt: any): boolean;
|
|
9
|
+
processEvent(evt: SNSEvent, context: Context): Promise<ProxyResult>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { EpsilonLambdaEventHandler } from '../config/epsilon-lambda-event-handler.js';
|
|
2
|
+
import { Context, ProxyResult, S3Event } from 'aws-lambda';
|
|
3
|
+
import { EpsilonInstance } from '../epsilon-instance.js';
|
|
4
|
+
export declare class S3EpsilonLambdaEventHandler implements EpsilonLambdaEventHandler<S3Event> {
|
|
5
|
+
private _epsilon;
|
|
6
|
+
constructor(_epsilon: EpsilonInstance);
|
|
7
|
+
extractLabel(evt: S3Event, context: Context): string;
|
|
8
|
+
handlesEvent(evt: any): boolean;
|
|
9
|
+
processEvent(evt: S3Event, context: Context): Promise<ProxyResult>;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ApolloServer } from '@apollo/server';
|
|
2
|
+
import { EpsilonGlobalHandler } from '../epsilon-global-handler.js';
|
|
3
|
+
import { EpsilonConfig } from '../config/epsilon-config.js';
|
|
4
|
+
export declare class SampleServerComponents {
|
|
5
|
+
private constructor();
|
|
6
|
+
static createSampleApollo(): Promise<ApolloServer>;
|
|
7
|
+
static createSampleEpsilonConfig(label: string): Promise<EpsilonConfig>;
|
|
8
|
+
static createSampleEpsilonGlobalHandler(label: string): Promise<EpsilonGlobalHandler>;
|
|
9
|
+
static createSampleBatchOnlyEpsilonGlobalHandler(label: string): Promise<EpsilonGlobalHandler>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="node" resolution-mode="require"/>
|
|
2
|
+
import { IncomingMessage, ServerResponse } from 'http';
|
|
3
|
+
export declare class TestErrorServer {
|
|
4
|
+
private port;
|
|
5
|
+
private server;
|
|
6
|
+
private aborted;
|
|
7
|
+
constructor(port?: number);
|
|
8
|
+
runServer(): Promise<boolean>;
|
|
9
|
+
requestHandler(request: IncomingMessage, response: ServerResponse): Promise<any>;
|
|
10
|
+
static runFromCliArgs(args: string[]): Promise<void>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { APIGatewayEvent, APIGatewayEventRequestContextV2, APIGatewayEventRequestContextWithAuthorizer, APIGatewayProxyEventV2 } from 'aws-lambda';
|
|
2
|
+
export declare class AwsUtil {
|
|
3
|
+
static apiGatewayV2ToApiGatewayV1(srcEvt: APIGatewayProxyEventV2): APIGatewayEvent;
|
|
4
|
+
static apiGatewayV2RequestContextToApiGatewayV1RequestContext(srcEvt: APIGatewayEventRequestContextV2): APIGatewayEventRequestContextWithAuthorizer<any>;
|
|
5
|
+
static findInMap<T>(toFind: string, map: Map<string, T>): T;
|
|
6
|
+
static matchExact(r: any, str: any): boolean;
|
|
7
|
+
static resolvePotentialFunctionToResult<T>(src: any, def: T): T;
|
|
8
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { Context, ProxyResult } from 'aws-lambda';
|
|
2
|
+
import { EpsilonInstance } from '../epsilon-instance.js';
|
|
3
|
+
import { InternalBackgroundEntry } from '../background/internal-background-entry.js';
|
|
4
|
+
import { InterApiEntry } from '../inter-api/inter-api-entry.js';
|
|
5
|
+
export declare class ContextUtil {
|
|
6
|
+
private static CURRENT_EPSILON_REFERENCE;
|
|
7
|
+
private static CURRENT_CONTEXT;
|
|
8
|
+
private static CURRENT_EVENT;
|
|
9
|
+
private static CURRENT_LOG_VARS;
|
|
10
|
+
private static CURRENT_PROCESS_LABEL;
|
|
11
|
+
private static CURRENT_OVERRIDE_TRACE_ID;
|
|
12
|
+
private static CURRENT_OVERRIDE_TRACE_DEPTH;
|
|
13
|
+
private constructor();
|
|
14
|
+
static initContext(epsilon: EpsilonInstance, evt: any, ctx: Context, processLabel: string): void;
|
|
15
|
+
static clearContext(): void;
|
|
16
|
+
static setOverrideTrace(traceId: string, traceDepth: number): void;
|
|
17
|
+
static setOverrideTraceFromInternalBackgroundEntry(entry: InternalBackgroundEntry<any>): void;
|
|
18
|
+
static setOverrideTraceFromInterApiEntry(interApiEntry: InterApiEntry<any>): void;
|
|
19
|
+
static addHeadersToRecord(input: Record<string, any>, depthOffset?: number): void;
|
|
20
|
+
static addTraceToProxyResult(pr: ProxyResult): void;
|
|
21
|
+
static addTraceToHttpRequestInit(ri: RequestInit): void;
|
|
22
|
+
static setProcessLabel(processLabel: string): void;
|
|
23
|
+
static currentRequestId(): string;
|
|
24
|
+
static defaultedCurrentRequestId(defaultValueIfMissing?: string): string;
|
|
25
|
+
static remainingTimeMS(): number;
|
|
26
|
+
static currentProcessLabel(): string;
|
|
27
|
+
private static traceHeaderName;
|
|
28
|
+
private static traceDepthHeaderName;
|
|
29
|
+
static currentTraceId(): string;
|
|
30
|
+
static currentTraceDepth(): number;
|
|
31
|
+
static addLogVariable(name: string, val: string | number | boolean): void;
|
|
32
|
+
static fetchLogVariable(name: string): string | number | boolean;
|
|
33
|
+
static fetchLogVariables(): Record<string, string | number | boolean>;
|
|
34
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ScheduledEvent } from 'aws-lambda';
|
|
2
|
+
import { AbstractCronEntry } from '../config/cron/abstract-cron-entry.js';
|
|
3
|
+
import { CronConfig } from '../config/cron/cron-config.js';
|
|
4
|
+
export declare class CronUtil {
|
|
5
|
+
static everyNMinuteFilter(n: number): number[];
|
|
6
|
+
static everyNDaysOfYearFilter(n: number): number[];
|
|
7
|
+
static everyNElementFilter(n: number, m: number): number[];
|
|
8
|
+
static numberMatchesFilter(num: number, filter: number[]): boolean;
|
|
9
|
+
static eventMatchesEntry(event: ScheduledEvent, entry: AbstractCronEntry, cfg: CronConfig, testTimeEpochMS?: number): boolean;
|
|
10
|
+
static cronEntryName(entry: AbstractCronEntry, idx?: number): string;
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ModelValidator } from '@bitblit/ratchet-misc';
|
|
2
|
+
import { OpenApiDocument } from '../config/open-api/open-api-document.js';
|
|
3
|
+
import { EpsilonConfig } from '../config/epsilon-config.js';
|
|
4
|
+
import { EpsilonInstance } from '../epsilon-instance.js';
|
|
5
|
+
import { EpsilonGlobalHandler } from '../epsilon-global-handler.js';
|
|
6
|
+
import { BackgroundManagerLike } from '../background/manager/background-manager-like.js';
|
|
7
|
+
export declare class EpsilonConfigParser {
|
|
8
|
+
constructor();
|
|
9
|
+
static epsilonConfigToEpsilonGlobalHandler(config: EpsilonConfig, backgroundManager?: BackgroundManagerLike): EpsilonGlobalHandler;
|
|
10
|
+
static epsilonConfigToEpsilonInstance(config: EpsilonConfig, backgroundManager?: BackgroundManagerLike): EpsilonInstance;
|
|
11
|
+
static parseOpenApiDocument(yamlString: string): OpenApiDocument;
|
|
12
|
+
static openApiDocToValidator(doc: OpenApiDocument): ModelValidator;
|
|
13
|
+
static validateGlobalConfig(config: EpsilonConfig): void;
|
|
14
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitblit/ratchet-epsilon-common",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.184-alpha",
|
|
4
4
|
"description": "Tiny adapter to simplify building API gateway Lambda APIS",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"bin": {
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"module": "./lib/index.mjs",
|
|
11
11
|
"types": "./lib/index.d.ts",
|
|
12
12
|
"files": [
|
|
13
|
-
"lib
|
|
14
|
-
"bin
|
|
13
|
+
"lib/**",
|
|
14
|
+
"bin/**"
|
|
15
15
|
],
|
|
16
16
|
"exports": {
|
|
17
17
|
".": {
|
|
@@ -68,10 +68,10 @@
|
|
|
68
68
|
"@aws-sdk/client-sqs": "3.357.0",
|
|
69
69
|
"@aws-sdk/types": "3.357.0",
|
|
70
70
|
"@aws-sdk/util-waiter": "3.357.0",
|
|
71
|
-
"@bitblit/ratchet-aws": "4.0.
|
|
72
|
-
"@bitblit/ratchet-common": "4.0.
|
|
73
|
-
"@bitblit/ratchet-misc": "4.0.
|
|
74
|
-
"@bitblit/ratchet-node-only": "4.0.
|
|
71
|
+
"@bitblit/ratchet-aws": "4.0.184-alpha",
|
|
72
|
+
"@bitblit/ratchet-common": "4.0.184-alpha",
|
|
73
|
+
"@bitblit/ratchet-misc": "4.0.184-alpha",
|
|
74
|
+
"@bitblit/ratchet-node-only": "4.0.184-alpha",
|
|
75
75
|
"clear": "0.1.0",
|
|
76
76
|
"commander": "11.0.0",
|
|
77
77
|
"cross-fetch": "4.0.0",
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
},
|
|
119
119
|
"devDependencies": {
|
|
120
120
|
"@apollo/server": "4.7.5",
|
|
121
|
-
"@bitblit/ratchet-jest": "4.0.
|
|
121
|
+
"@bitblit/ratchet-jest": "4.0.184-alpha",
|
|
122
122
|
"@types/aws-lambda": "8.10.119",
|
|
123
123
|
"aws-sdk-client-mock": "3.0.0",
|
|
124
124
|
"graphql": "16.7.1",
|