@walkeros/server-destination-aws 3.3.1 → 3.4.0-next-1776749829492

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 CHANGED
@@ -30,8 +30,18 @@ declare namespace env {
30
30
  export { env_push as push, env_simulation as simulation };
31
31
  }
32
32
 
33
+ /**
34
+ * Default firehose push -- client.send(new PutRecordBatchCommand({...}))
35
+ * Records contain the full event JSON-stringified as Buffer Data.
36
+ */
33
37
  declare const firehoseRecord: Flow.StepExample;
38
+ /**
39
+ * Order event -- same pattern, full event serialized in Records[0].Data.
40
+ */
34
41
  declare const orderEvent: Flow.StepExample;
42
+ /**
43
+ * User signup -- full event including user fields is serialized to Firehose.
44
+ */
35
45
  declare const userSignupEvent: Flow.StepExample;
36
46
 
37
47
  declare const step_firehoseRecord: typeof firehoseRecord;
package/dist/dev.d.ts CHANGED
@@ -30,8 +30,18 @@ declare namespace env {
30
30
  export { env_push as push, env_simulation as simulation };
31
31
  }
32
32
 
33
+ /**
34
+ * Default firehose push -- client.send(new PutRecordBatchCommand({...}))
35
+ * Records contain the full event JSON-stringified as Buffer Data.
36
+ */
33
37
  declare const firehoseRecord: Flow.StepExample;
38
+ /**
39
+ * Order event -- same pattern, full event serialized in Records[0].Data.
40
+ */
34
41
  declare const orderEvent: Flow.StepExample;
42
+ /**
43
+ * User signup -- full event including user fields is serialized to Firehose.
44
+ */
35
45
  declare const userSignupEvent: Flow.StepExample;
36
46
 
37
47
  declare const step_firehoseRecord: typeof firehoseRecord;