@bitblit/ratchet-aws-node-only 4.0.99-alpha → 4.0.103-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/{dist/types → lib}/athena/alb-athena-log-ratchet.d.ts +2 -2
- package/{dist/es → lib}/athena/alb-athena-log-ratchet.js +55 -52
- package/lib/athena/alb-athena-log-ratchet.spec.d.ts +1 -0
- package/lib/athena/alb-athena-log-ratchet.spec.js +25 -0
- package/{dist/es → lib}/athena/athena-ratchet.js +9 -6
- package/lib/athena/athena-ratchet.spec.d.ts +1 -0
- package/lib/athena/athena-ratchet.spec.js +27 -0
- package/{dist/types → lib}/build/ratchet-aws-node-only-info.d.ts +1 -1
- package/{dist/types → lib}/cli/dynamo-exporter.d.ts +2 -2
- package/{dist/es → lib}/cli/dynamo-exporter.js +4 -4
- package/{dist/types → lib}/cli/ratchet-cli-handler.d.ts +2 -2
- package/{dist/es → lib}/cli/ratchet-cli-handler.js +4 -4
- package/{dist/es → lib}/cli/site-uploader/site-uploader.js +5 -2
- package/{dist/es → lib}/cli/start-instance-and-ssh.js +8 -2
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/lib/mail/inbound/email-to-db-insert-processor.d.ts +10 -0
- package/lib/mail/inbound/email-to-db-insert-processor.js +89 -0
- package/lib/mail/inbound/inbound-email-ratchet.d.ts +10 -0
- package/{dist/es → lib}/mail/inbound/inbound-email-ratchet.js +16 -24
- package/lib/mail/inbound/inbound-email-ratchet.spec.d.ts +1 -0
- package/lib/mail/inbound/inbound-email-ratchet.spec.js +18 -0
- package/lib/mail/inbound/parsed-email-processor.d.ts +5 -0
- package/lib/mail/inbound/parsed-email-processor.js +1 -0
- package/lib/mail/inbound/sample-email-processor.d.ts +6 -0
- package/lib/mail/inbound/sample-email-processor.js +8 -0
- package/package.json +12 -14
- package/dist/cjs/athena/alb-athena-log-ratchet.js +0 -158
- package/dist/cjs/athena/athena-ratchet.js +0 -159
- package/dist/cjs/build/ratchet-aws-node-only-info.js +0 -18
- package/dist/cjs/cli/dynamo-exporter.js +0 -81
- package/dist/cjs/cli/ratchet-cli-handler.js +0 -19
- package/dist/cjs/cli/site-uploader/site-uploader.js +0 -117
- package/dist/cjs/cli/start-instance-and-ssh.js +0 -67
- package/dist/cjs/index.js +0 -11
- package/dist/cjs/mail/inbound/inbound-email-ratchet.js +0 -54
- package/dist/es/index.js +0 -8
- package/dist/tsconfig.cjs.tsbuildinfo +0 -1
- package/dist/tsconfig.es.tsbuildinfo +0 -1
- package/dist/tsconfig.types.tsbuildinfo +0 -1
- package/dist/types/index.d.ts +0 -11
- package/dist/types/mail/inbound/inbound-email-ratchet.d.ts +0 -18
- /package/{includes → bin}/cli.js +0 -0
- /package/{dist/types → lib}/athena/athena-ratchet.d.ts +0 -0
- /package/{dist/es → lib}/build/ratchet-aws-node-only-info.js +0 -0
- /package/{dist/types → lib}/cli/site-uploader/site-uploader.d.ts +0 -0
- /package/{dist/types → lib}/cli/start-instance-and-ssh.d.ts +0 -0
package/dist/types/index.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file Automatically generated by barrelsby.
|
|
3
|
-
*/
|
|
4
|
-
export * from './athena/alb-athena-log-ratchet';
|
|
5
|
-
export * from './athena/athena-ratchet';
|
|
6
|
-
export * from './build/ratchet-aws-node-only-info';
|
|
7
|
-
export * from './cli/dynamo-exporter';
|
|
8
|
-
export * from './cli/ratchet-cli-handler';
|
|
9
|
-
export * from './cli/start-instance-and-ssh';
|
|
10
|
-
export * from './cli/site-uploader/site-uploader';
|
|
11
|
-
export * from './mail/inbound/inbound-email-ratchet';
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
/// <reference types="node" />
|
|
3
|
-
import { Readable, ReadableOptions } from 'stream';
|
|
4
|
-
import { S3CacheRatchet } from '@bitblit/ratchet-aws';
|
|
5
|
-
/**
|
|
6
|
-
* Service for handling inbound emails
|
|
7
|
-
*/
|
|
8
|
-
export declare class InboundEmailRatchet {
|
|
9
|
-
private cache;
|
|
10
|
-
constructor(cache: S3CacheRatchet);
|
|
11
|
-
processEmailFromS3(key: string): Promise<boolean>;
|
|
12
|
-
processEmailFromBuffer(buf: Buffer): Promise<boolean>;
|
|
13
|
-
}
|
|
14
|
-
export declare class MultiStream extends Readable {
|
|
15
|
-
_object: any;
|
|
16
|
-
constructor(object: any, options?: ReadableOptions);
|
|
17
|
-
_read(): void;
|
|
18
|
-
}
|
/package/{includes → bin}/cli.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|