@walkeros/server-destination-aws 0.3.1 → 0.4.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.
- package/dist/dev.d.mts +39 -0
- package/dist/dev.d.ts +39 -0
- package/dist/dev.js +1 -0
- package/dist/dev.js.map +1 -0
- package/dist/dev.mjs +1 -0
- package/dist/dev.mjs.map +1 -0
- package/dist/index.d.mts +24 -81
- package/dist/index.d.ts +24 -81
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/schemas.js +1 -1
- package/dist/schemas.js.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/schemas.mjs.map +1 -1
- package/package.json +6 -6
package/dist/dev.d.mts
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import * as _walkeros_core_dev from '@walkeros/core/dev';
|
|
2
|
+
import { DestinationServer } from '@walkeros/server-core';
|
|
3
|
+
import { FirehoseClient, PutRecordBatchCommand } from '@aws-sdk/client-firehose';
|
|
4
|
+
|
|
5
|
+
declare const schemas: {
|
|
6
|
+
settings: _walkeros_core_dev.JSONSchema;
|
|
7
|
+
mapping: _walkeros_core_dev.JSONSchema;
|
|
8
|
+
firehose: _walkeros_core_dev.JSONSchema;
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
declare const schemas$1_schemas: typeof schemas;
|
|
12
|
+
declare namespace schemas$1 {
|
|
13
|
+
export { schemas$1_schemas as schemas };
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
interface Env extends DestinationServer.Env {
|
|
17
|
+
AWS: {
|
|
18
|
+
FirehoseClient: typeof FirehoseClient;
|
|
19
|
+
PutRecordBatchCommand: typeof PutRecordBatchCommand;
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
declare const push: Env;
|
|
24
|
+
|
|
25
|
+
declare const env_push: typeof push;
|
|
26
|
+
declare namespace env {
|
|
27
|
+
export { env_push as push };
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
declare const index$1_env: typeof env;
|
|
31
|
+
declare namespace index$1 {
|
|
32
|
+
export { index$1_env as env };
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
declare namespace index {
|
|
36
|
+
export { index$1 as firehose };
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export { index as examples, schemas$1 as schemas };
|
package/dist/dev.d.ts
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import * as _walkeros_core_dev from '@walkeros/core/dev';
|
|
2
|
+
import { DestinationServer } from '@walkeros/server-core';
|
|
3
|
+
import { FirehoseClient, PutRecordBatchCommand } from '@aws-sdk/client-firehose';
|
|
4
|
+
|
|
5
|
+
declare const schemas: {
|
|
6
|
+
settings: _walkeros_core_dev.JSONSchema;
|
|
7
|
+
mapping: _walkeros_core_dev.JSONSchema;
|
|
8
|
+
firehose: _walkeros_core_dev.JSONSchema;
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
declare const schemas$1_schemas: typeof schemas;
|
|
12
|
+
declare namespace schemas$1 {
|
|
13
|
+
export { schemas$1_schemas as schemas };
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
interface Env extends DestinationServer.Env {
|
|
17
|
+
AWS: {
|
|
18
|
+
FirehoseClient: typeof FirehoseClient;
|
|
19
|
+
PutRecordBatchCommand: typeof PutRecordBatchCommand;
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
declare const push: Env;
|
|
24
|
+
|
|
25
|
+
declare const env_push: typeof push;
|
|
26
|
+
declare namespace env {
|
|
27
|
+
export { env_push as push };
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
declare const index$1_env: typeof env;
|
|
31
|
+
declare namespace index$1 {
|
|
32
|
+
export { index$1_env as env };
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
declare namespace index {
|
|
36
|
+
export { index$1 as firehose };
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export { index as examples, schemas$1 as schemas };
|