@syncbridge/kafka 0.4.15 → 0.4.17

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.
@@ -36,6 +36,8 @@ export declare class KafkaVariables {
36
36
  requestTimeout: number;
37
37
  enforceRequestTimeout: boolean;
38
38
  retry: KafkaRetryVariables;
39
+ sasl_enabled: boolean;
39
40
  sasl: KafkaSaslVariables;
41
+ tls_enabled: boolean;
40
42
  tsl: TcpClientComponent.TlsVariables;
41
43
  }
@@ -148,6 +148,7 @@ __decorate([
148
148
  type: VariableType.String,
149
149
  isArray: true,
150
150
  required: true,
151
+ index: 100,
151
152
  }),
152
153
  __metadata("design:type", Array)
153
154
  ], KafkaVariables.prototype, "brokers", void 0);
@@ -156,6 +157,7 @@ __decorate([
156
157
  label: 'Client id',
157
158
  description: 'A logical identifier of an application. Can be used by brokers to apply ' +
158
159
  'quotas or trace requests to a specific application',
160
+ index: 101,
159
161
  }),
160
162
  __metadata("design:type", String)
161
163
  ], KafkaVariables.prototype, "clientId", void 0);
@@ -164,6 +166,7 @@ __decorate([
164
166
  label: 'Connect timeout',
165
167
  description: 'Time in milliseconds to wait for a successful connection',
166
168
  default: 10000,
169
+ index: 102,
167
170
  }),
168
171
  __metadata("design:type", Number)
169
172
  ], KafkaVariables.prototype, "connectTimeout", void 0);
@@ -172,6 +175,7 @@ __decorate([
172
175
  label: 'Authentication timeout',
173
176
  description: 'Timeout in ms for authentication requests',
174
177
  default: 10000,
178
+ index: 103,
175
179
  }),
176
180
  __metadata("design:type", Number)
177
181
  ], KafkaVariables.prototype, "authenticationTimeout", void 0);
@@ -180,6 +184,7 @@ __decorate([
180
184
  label: 'Reauthentication threshold',
181
185
  description: 'Threshold in milliseconds to reauthenticate',
182
186
  default: 10000,
187
+ index: 104,
183
188
  }),
184
189
  __metadata("design:type", Number)
185
190
  ], KafkaVariables.prototype, "reauthenticationThreshold", void 0);
@@ -188,6 +193,7 @@ __decorate([
188
193
  label: 'Request timeout',
189
194
  description: 'Time in milliseconds to wait for a successful request',
190
195
  default: 30000,
196
+ index: 105,
191
197
  }),
192
198
  __metadata("design:type", Number)
193
199
  ], KafkaVariables.prototype, "requestTimeout", void 0);
@@ -196,6 +202,7 @@ __decorate([
196
202
  label: 'Enforce request timeout',
197
203
  description: 'Determines if the request timeout should be enforced',
198
204
  default: true,
205
+ index: 106,
199
206
  }),
200
207
  __metadata("design:type", Boolean)
201
208
  ], KafkaVariables.prototype, "enforceRequestTimeout", void 0);
@@ -206,6 +213,12 @@ __decorate([
206
213
  }),
207
214
  __metadata("design:type", KafkaRetryVariables)
208
215
  ], KafkaVariables.prototype, "retry", void 0);
216
+ __decorate([
217
+ DefineVariable({
218
+ label: 'SASL Enabled',
219
+ }),
220
+ __metadata("design:type", Boolean)
221
+ ], KafkaVariables.prototype, "sasl_enabled", void 0);
209
222
  __decorate([
210
223
  DefineVariable({
211
224
  label: 'SASL',
@@ -213,6 +226,12 @@ __decorate([
213
226
  }),
214
227
  __metadata("design:type", KafkaSaslVariables)
215
228
  ], KafkaVariables.prototype, "sasl", void 0);
229
+ __decorate([
230
+ DefineVariable({
231
+ label: 'TLS Enabled',
232
+ }),
233
+ __metadata("design:type", Boolean)
234
+ ], KafkaVariables.prototype, "tls_enabled", void 0);
216
235
  __decorate([
217
236
  DefineVariable({
218
237
  label: 'TSL',
package/constants.js CHANGED
@@ -1,4 +1,4 @@
1
- export const version = '0.4.15';
1
+ export const version = '0.4.17';
2
2
  export const noOp = () => undefined;
3
3
  export const panatesAuthor = {
4
4
  name: 'Panates Technology AS',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syncbridge/kafka",
3
- "version": "0.4.15",
3
+ "version": "0.4.17",
4
4
  "description": "SyncBridge Kafka connection components",
5
5
  "author": "Panates Inc",
6
6
  "license": "UNLICENSED",
@@ -11,9 +11,9 @@
11
11
  "oracledb": "^6.10.0"
12
12
  },
13
13
  "peerDependencies": {
14
- "@syncbridge/common": "^0.5.9",
15
- "@syncbridge/builtins": "^0.4.15",
16
- "@syncbridge/net": "^0.4.15",
14
+ "@syncbridge/common": "^0.5.11",
15
+ "@syncbridge/builtins": "^0.4.17",
16
+ "@syncbridge/net": "^0.4.17",
17
17
  "@sqb/builder": ">=4.19.6 <5",
18
18
  "@sqb/connect": ">=4.19.6 <5"
19
19
  },