@tamasha/kafka-schema-validation 1.0.0 → 1.0.1
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/customerEvents.d.ts +14 -0
- package/dist/customerEvents.d.ts.map +1 -0
- package/dist/customerEvents.js +27 -0
- package/dist/customerEvents.js.map +1 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare const CUSTOMER_EVENTS_TOPIC: "customer";
|
|
2
|
+
export declare const customerEventsSchema: import("./base").TopicSchema<{
|
|
3
|
+
profile_update: import("./base").ActionSchema<{
|
|
4
|
+
action: "profile_update";
|
|
5
|
+
event_id: string;
|
|
6
|
+
user_id: number;
|
|
7
|
+
timestamp: number;
|
|
8
|
+
properties: {
|
|
9
|
+
app_version: number;
|
|
10
|
+
fcm_token: string;
|
|
11
|
+
};
|
|
12
|
+
}>;
|
|
13
|
+
}>;
|
|
14
|
+
//# sourceMappingURL=customerEvents.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"customerEvents.d.ts","sourceRoot":"","sources":["../src/customerEvents.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,qBAAqB,EAAG,UAAmB,CAAC;AAEzD,eAAO,MAAM,oBAAoB;;gBAKb,gBAAgB;kBACd,MAAM;iBACP,MAAM;mBACJ,MAAM;oBACL;YACR,WAAW,EAAE,MAAM,CAAC;YACpB,SAAS,EAAE,MAAM,CAAC;SACrB;;EAiBX,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.customerEventsSchema = exports.CUSTOMER_EVENTS_TOPIC = void 0;
|
|
4
|
+
const base_1 = require("./base");
|
|
5
|
+
exports.CUSTOMER_EVENTS_TOPIC = "customer";
|
|
6
|
+
exports.customerEventsSchema = (0, base_1.defineTopic)({
|
|
7
|
+
actionField: "action",
|
|
8
|
+
partitionField: "user_id",
|
|
9
|
+
actions: {
|
|
10
|
+
profile_update: (0, base_1.defineAction)({
|
|
11
|
+
fields: {
|
|
12
|
+
"action": { type: "string", literal: 'profile_update' },
|
|
13
|
+
"event_id": { type: "string" },
|
|
14
|
+
"user_id": { type: "number" },
|
|
15
|
+
"timestamp": { type: "number" },
|
|
16
|
+
"properties": {
|
|
17
|
+
type: "object",
|
|
18
|
+
fields: {
|
|
19
|
+
app_version: { type: "number" },
|
|
20
|
+
fcm_token: { type: "string" },
|
|
21
|
+
},
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
}),
|
|
25
|
+
},
|
|
26
|
+
});
|
|
27
|
+
//# sourceMappingURL=customerEvents.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"customerEvents.js","sourceRoot":"","sources":["../src/customerEvents.ts"],"names":[],"mappings":";;;AAAA,iCAAmD;AAEtC,QAAA,qBAAqB,GAAG,UAAmB,CAAC;AAE5C,QAAA,oBAAoB,GAAG,IAAA,kBAAW,EAAC;IAC5C,WAAW,EAAE,QAAQ;IACrB,cAAc,EAAE,SAAS;IACzB,OAAO,EAAE;QACL,cAAc,EAAE,IAAA,mBAAY,EASzB;YACC,MAAM,EAAE;gBACJ,QAAQ,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,OAAO,EAAE,gBAAgB,EAAE;gBACvD,UAAU,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;gBAC9B,SAAS,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;gBAC7B,WAAW,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;gBAC/B,YAAY,EAAE;oBACV,IAAI,EAAE,QAAQ;oBACd,MAAM,EAAE;wBACJ,WAAW,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;wBAC/B,SAAS,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE;qBAChC;iBACJ;aACJ;SACJ,CAAC;KACL;CACJ,CAAC,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -4,12 +4,14 @@ import { orderEventsSchema } from "./orderEvents";
|
|
|
4
4
|
import { walletEventsSchema } from "./walletEvents";
|
|
5
5
|
import { callEventsSchema } from "./callEvents";
|
|
6
6
|
import { audienceUpdateSchema } from "./audienceEvents";
|
|
7
|
+
import { customerEventsSchema } from "./customerEvents";
|
|
7
8
|
export { defineAction, defineTopic, defineTopicSchemas, TopicSchemaRegistry, type PrimitiveType, type FieldRule, type ActionSchema, type TopicSchema, type TopicSchemas, type ActionPayload, type TopicActionPayloadMap, type TopicMessage, type TopicMessageMap, } from "./base";
|
|
8
9
|
export { USER_EVENTS_TOPIC, userEventsSchema } from "./userEvents";
|
|
9
10
|
export { ORDER_EVENTS_TOPIC, orderEventsSchema } from "./orderEvents";
|
|
10
11
|
export { WALLET_EVENT_TOPIC, walletEventsSchema } from "./walletEvents";
|
|
11
12
|
export { CALL_EVENT_TOPIC, callEventsSchema } from "./callEvents";
|
|
12
13
|
export { AUDIENCE_UPDATE_TOPIC, audienceUpdateSchema } from "./audienceEvents";
|
|
14
|
+
export { CUSTOMER_EVENTS_TOPIC, customerEventsSchema } from "./customerEvents";
|
|
13
15
|
export declare const DEFAULT_TOPIC_SCHEMAS: {
|
|
14
16
|
readonly "user-events": import("./base").TopicSchema<{
|
|
15
17
|
login: import("./base").ActionSchema<{
|
|
@@ -136,6 +138,18 @@ export declare const DEFAULT_TOPIC_SCHEMAS: {
|
|
|
136
138
|
properties?: object;
|
|
137
139
|
}>;
|
|
138
140
|
}>;
|
|
141
|
+
readonly customer: import("./base").TopicSchema<{
|
|
142
|
+
profile_update: import("./base").ActionSchema<{
|
|
143
|
+
action: "profile_update";
|
|
144
|
+
event_id: string;
|
|
145
|
+
user_id: number;
|
|
146
|
+
timestamp: number;
|
|
147
|
+
properties: {
|
|
148
|
+
app_version: number;
|
|
149
|
+
fcm_token: string;
|
|
150
|
+
};
|
|
151
|
+
}>;
|
|
152
|
+
}>;
|
|
139
153
|
};
|
|
140
154
|
export type DefaultTopicSchemas = typeof DEFAULT_TOPIC_SCHEMAS;
|
|
141
155
|
export type UserEventPayloads = TopicActionPayloadMap<typeof userEventsSchema>;
|
|
@@ -148,6 +162,8 @@ export type CallEventPayloads = TopicActionPayloadMap<typeof callEventsSchema>;
|
|
|
148
162
|
export type CallEventMessage = TopicMessage<typeof callEventsSchema>;
|
|
149
163
|
export type AudienceEventPayloads = TopicActionPayloadMap<typeof audienceUpdateSchema>;
|
|
150
164
|
export type AudienceEventMessage = TopicMessage<typeof audienceUpdateSchema>;
|
|
165
|
+
export type CustomerEventPayloads = TopicActionPayloadMap<typeof customerEventsSchema>;
|
|
166
|
+
export type CustomerEventMessage = TopicMessage<typeof customerEventsSchema>;
|
|
151
167
|
export type DefaultTopicActionPayloads<Topic extends keyof DefaultTopicSchemas> = TopicActionPayloadMap<DefaultTopicSchemas[Topic]>;
|
|
152
168
|
export type DefaultTopicMessageMap = TopicMessageMap<DefaultTopicSchemas>;
|
|
153
169
|
export type KafkaEventMessage = DefaultTopicMessageMap[keyof DefaultTopicMessageMap];
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAsB,qBAAqB,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAC;AAClG,OAAO,EAAqB,gBAAgB,EAAE,MAAM,cAAc,CAAC;AACnE,OAAO,EAAsB,iBAAiB,EAAE,MAAM,eAAe,CAAC;AACtE,OAAO,EAAsB,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AACxE,OAAO,EAAoB,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAClE,OAAO,EAAyB,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AAG/E,OAAO,EACH,YAAY,EACZ,WAAW,EACX,kBAAkB,EAClB,mBAAmB,EACnB,KAAK,aAAa,EAClB,KAAK,SAAS,EACd,KAAK,YAAY,EACjB,KAAK,WAAW,EAChB,KAAK,YAAY,EACjB,KAAK,aAAa,EAClB,KAAK,qBAAqB,EAC1B,KAAK,YAAY,EACjB,KAAK,eAAe,GACvB,MAAM,QAAQ,CAAC;AAGhB,OAAO,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AACnE,OAAO,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AACtE,OAAO,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AACxE,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAClE,OAAO,EAAE,qBAAqB,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AAG/E,eAAO,MAAM,qBAAqB;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DEFAULT_TOPIC_SCHEMAS = exports.audienceUpdateSchema = exports.AUDIENCE_UPDATE_TOPIC = exports.callEventsSchema = exports.CALL_EVENT_TOPIC = exports.walletEventsSchema = exports.WALLET_EVENT_TOPIC = exports.orderEventsSchema = exports.ORDER_EVENTS_TOPIC = exports.userEventsSchema = exports.USER_EVENTS_TOPIC = exports.TopicSchemaRegistry = exports.defineTopicSchemas = exports.defineTopic = exports.defineAction = void 0;
|
|
3
|
+
exports.DEFAULT_TOPIC_SCHEMAS = exports.customerEventsSchema = exports.CUSTOMER_EVENTS_TOPIC = exports.audienceUpdateSchema = exports.AUDIENCE_UPDATE_TOPIC = exports.callEventsSchema = exports.CALL_EVENT_TOPIC = exports.walletEventsSchema = exports.WALLET_EVENT_TOPIC = exports.orderEventsSchema = exports.ORDER_EVENTS_TOPIC = exports.userEventsSchema = exports.USER_EVENTS_TOPIC = exports.TopicSchemaRegistry = exports.defineTopicSchemas = exports.defineTopic = exports.defineAction = void 0;
|
|
4
4
|
const base_1 = require("./base");
|
|
5
5
|
const userEvents_1 = require("./userEvents");
|
|
6
6
|
const orderEvents_1 = require("./orderEvents");
|
|
7
7
|
const walletEvents_1 = require("./walletEvents");
|
|
8
8
|
const callEvents_1 = require("./callEvents");
|
|
9
9
|
const audienceEvents_1 = require("./audienceEvents");
|
|
10
|
+
const customerEvents_1 = require("./customerEvents");
|
|
10
11
|
// Re-export base types and classes
|
|
11
12
|
var base_2 = require("./base");
|
|
12
13
|
Object.defineProperty(exports, "defineAction", { enumerable: true, get: function () { return base_2.defineAction; } });
|
|
@@ -29,6 +30,9 @@ Object.defineProperty(exports, "callEventsSchema", { enumerable: true, get: func
|
|
|
29
30
|
var audienceEvents_2 = require("./audienceEvents");
|
|
30
31
|
Object.defineProperty(exports, "AUDIENCE_UPDATE_TOPIC", { enumerable: true, get: function () { return audienceEvents_2.AUDIENCE_UPDATE_TOPIC; } });
|
|
31
32
|
Object.defineProperty(exports, "audienceUpdateSchema", { enumerable: true, get: function () { return audienceEvents_2.audienceUpdateSchema; } });
|
|
33
|
+
var customerEvents_2 = require("./customerEvents");
|
|
34
|
+
Object.defineProperty(exports, "CUSTOMER_EVENTS_TOPIC", { enumerable: true, get: function () { return customerEvents_2.CUSTOMER_EVENTS_TOPIC; } });
|
|
35
|
+
Object.defineProperty(exports, "customerEventsSchema", { enumerable: true, get: function () { return customerEvents_2.customerEventsSchema; } });
|
|
32
36
|
// Default topic schemas registry
|
|
33
37
|
exports.DEFAULT_TOPIC_SCHEMAS = (0, base_1.defineTopicSchemas)({
|
|
34
38
|
[userEvents_1.USER_EVENTS_TOPIC]: userEvents_1.userEventsSchema,
|
|
@@ -36,5 +40,6 @@ exports.DEFAULT_TOPIC_SCHEMAS = (0, base_1.defineTopicSchemas)({
|
|
|
36
40
|
[walletEvents_1.WALLET_EVENT_TOPIC]: walletEvents_1.walletEventsSchema,
|
|
37
41
|
[callEvents_1.CALL_EVENT_TOPIC]: callEvents_1.callEventsSchema,
|
|
38
42
|
[audienceEvents_1.AUDIENCE_UPDATE_TOPIC]: audienceEvents_1.audienceUpdateSchema,
|
|
43
|
+
[customerEvents_1.CUSTOMER_EVENTS_TOPIC]: customerEvents_1.customerEventsSchema,
|
|
39
44
|
});
|
|
40
45
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,iCAAkG;AAClG,6CAAmE;AACnE,+CAAsE;AACtE,iDAAwE;AACxE,6CAAkE;AAClE,qDAA+E;AAE/E,mCAAmC;AACnC,+BAcgB;AAbZ,oGAAA,YAAY,OAAA;AACZ,mGAAA,WAAW,OAAA;AACX,0GAAA,kBAAkB,OAAA;AAClB,2GAAA,mBAAmB,OAAA;AAYvB,wCAAwC;AACxC,2CAAmE;AAA1D,+GAAA,iBAAiB,OAAA;AAAE,8GAAA,gBAAgB,OAAA;AAC5C,6CAAsE;AAA7D,iHAAA,kBAAkB,OAAA;AAAE,gHAAA,iBAAiB,OAAA;AAC9C,+CAAwE;AAA/D,kHAAA,kBAAkB,OAAA;AAAE,kHAAA,kBAAkB,OAAA;AAC/C,2CAAkE;AAAzD,8GAAA,gBAAgB,OAAA;AAAE,8GAAA,gBAAgB,OAAA;AAC3C,mDAA+E;AAAtE,uHAAA,qBAAqB,OAAA;AAAE,sHAAA,oBAAoB,OAAA;AAEpD,iCAAiC;AACpB,QAAA,qBAAqB,GAAG,IAAA,yBAAkB,EAAC;IACpD,CAAC,8BAAiB,CAAC,EAAE,6BAAgB;IACrC,CAAC,gCAAkB,CAAC,EAAE,+BAAiB;IACvC,CAAC,iCAAkB,CAAC,EAAE,iCAAkB;IACxC,CAAC,6BAAgB,CAAC,EAAE,6BAAgB;IACpC,CAAC,sCAAqB,CAAC,EAAE,qCAAoB;CACvC,CAAC,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,iCAAkG;AAClG,6CAAmE;AACnE,+CAAsE;AACtE,iDAAwE;AACxE,6CAAkE;AAClE,qDAA+E;AAC/E,qDAA+E;AAE/E,mCAAmC;AACnC,+BAcgB;AAbZ,oGAAA,YAAY,OAAA;AACZ,mGAAA,WAAW,OAAA;AACX,0GAAA,kBAAkB,OAAA;AAClB,2GAAA,mBAAmB,OAAA;AAYvB,wCAAwC;AACxC,2CAAmE;AAA1D,+GAAA,iBAAiB,OAAA;AAAE,8GAAA,gBAAgB,OAAA;AAC5C,6CAAsE;AAA7D,iHAAA,kBAAkB,OAAA;AAAE,gHAAA,iBAAiB,OAAA;AAC9C,+CAAwE;AAA/D,kHAAA,kBAAkB,OAAA;AAAE,kHAAA,kBAAkB,OAAA;AAC/C,2CAAkE;AAAzD,8GAAA,gBAAgB,OAAA;AAAE,8GAAA,gBAAgB,OAAA;AAC3C,mDAA+E;AAAtE,uHAAA,qBAAqB,OAAA;AAAE,sHAAA,oBAAoB,OAAA;AACpD,mDAA+E;AAAtE,uHAAA,qBAAqB,OAAA;AAAE,sHAAA,oBAAoB,OAAA;AAEpD,iCAAiC;AACpB,QAAA,qBAAqB,GAAG,IAAA,yBAAkB,EAAC;IACpD,CAAC,8BAAiB,CAAC,EAAE,6BAAgB;IACrC,CAAC,gCAAkB,CAAC,EAAE,+BAAiB;IACvC,CAAC,iCAAkB,CAAC,EAAE,iCAAkB;IACxC,CAAC,6BAAgB,CAAC,EAAE,6BAAgB;IACpC,CAAC,sCAAqB,CAAC,EAAE,qCAAoB;IAC7C,CAAC,sCAAqB,CAAC,EAAE,qCAAoB;CACvC,CAAC,CAAC"}
|