@metarouter/ajs-starter-kit 1.0.35 → 1.0.36

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.
@@ -167,9 +167,22 @@
167
167
  "kafka": {
168
168
  "type": "object",
169
169
  "properties": {
170
+ "batchSize": {
171
+ "type": "number"
172
+ },
170
173
  "brokers": {
171
174
  "type": "string"
172
175
  },
176
+ "compression": {
177
+ "type": "number",
178
+ "description": "0: NONE_UNSPECIFIED; 1: snappy; 2: gzip; 3: uncompressed",
179
+ "enum": [
180
+ 0,
181
+ 1,
182
+ 2,
183
+ 3
184
+ ]
185
+ },
173
186
  "saslPlain": {
174
187
  "type": "object",
175
188
  "properties": {
@@ -180,6 +193,35 @@
180
193
  "type": "string"
181
194
  }
182
195
  },
196
+ "required": [
197
+ "username",
198
+ "password"
199
+ ],
200
+ "additionalProperties": false
201
+ },
202
+ "saslScram": {
203
+ "type": "object",
204
+ "properties": {
205
+ "algorithm": {
206
+ "type": "number",
207
+ "description": "0: NONE_UNSPECIFIED; 1: SHA_256; 2: SHA_512",
208
+ "enum": [
209
+ 0,
210
+ 1,
211
+ 2
212
+ ]
213
+ },
214
+ "password": {
215
+ "type": "string"
216
+ },
217
+ "username": {
218
+ "type": "string"
219
+ }
220
+ },
221
+ "required": [
222
+ "username",
223
+ "password"
224
+ ],
183
225
  "additionalProperties": false
184
226
  },
185
227
  "tls": {
@@ -1 +1 @@
1
- "793518d00e62d120d00e19f3406f8652"
1
+ "265d29af0480a2802474bb6e58f4ae0e"
@@ -1,5 +1,5 @@
1
1
  {
2
- "isDraft": false,
2
+ "isDraft": true,
3
3
  "friendlyName": "Kafka",
4
4
  "description": "Apache Kafka is an open-source distributed event streaming platform used by thousands of companies for high-performance data pipelines, streaming analytics, data integration, and mission-critical applications.",
5
5
  "logo": "https://cdn.metarouter.io/logo.svg",
@@ -18,6 +18,10 @@
18
18
  {
19
19
  "date": "2021-06-28T00:00:00.000Z",
20
20
  "note": "Setting isDraft to false"
21
+ },
22
+ {
23
+ "date": "2022-04-26T00:00:00.000Z",
24
+ "note": "Setting isDraft to true"
21
25
  }
22
26
  ]
23
27
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metarouter/ajs-starter-kit",
3
- "version": "1.0.35",
3
+ "version": "1.0.36",
4
4
  "description": "MetaRouter analytics.js starter kit",
5
5
  "main": "index.js",
6
6
  "scripts": {