@opentap/runner-client 2.31.0 → 2.31.1-alpha.1.1.14041514897
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/cjs/BaseClient.d.ts +3 -1
- package/dist/cjs/BaseClient.js +2 -1
- package/dist/cjs/SystemClient.d.ts +2 -1
- package/dist/cjs/SystemClient.js +4 -3
- package/dist/mjs/BaseClient.d.ts +3 -1
- package/dist/mjs/BaseClient.js +2 -2
- package/dist/mjs/SystemClient.d.ts +2 -1
- package/dist/mjs/SystemClient.js +4 -3
- package/package.json +1 -1
package/dist/cjs/BaseClient.d.ts
CHANGED
|
@@ -60,7 +60,9 @@ export declare class BaseClient {
|
|
|
60
60
|
* @param options Subscription options
|
|
61
61
|
* @returns Subscription object
|
|
62
62
|
*/
|
|
63
|
-
protected subscribe(subject: string, options
|
|
63
|
+
protected subscribe(subject: string, options?: SubscriptionOptions & {
|
|
64
|
+
fullSubject?: boolean;
|
|
65
|
+
}): Subscription;
|
|
64
66
|
/**
|
|
65
67
|
* Subscribes to given subject.
|
|
66
68
|
* @param subject The subject to subscribe
|
package/dist/cjs/BaseClient.js
CHANGED
|
@@ -266,13 +266,14 @@ var BaseClient = /** @class */ (function () {
|
|
|
266
266
|
* @returns Subscription object
|
|
267
267
|
*/
|
|
268
268
|
BaseClient.prototype.subscribe = function (subject, options) {
|
|
269
|
+
if (options === void 0) { options = {}; }
|
|
269
270
|
if (!subject)
|
|
270
271
|
throw Error('Subject is not defined!');
|
|
271
272
|
if (!this.connection)
|
|
272
273
|
throw Error('Connection is not up yet! Please try again later!');
|
|
273
274
|
if (this.connection.isClosed())
|
|
274
275
|
throw Error('Connection has been closed! Please reconnect!');
|
|
275
|
-
var natsSubject = "".concat(this.baseSubject, ".").concat(subject);
|
|
276
|
+
var natsSubject = options.fullSubject ? subject : "".concat(this.baseSubject, ".").concat(subject);
|
|
276
277
|
return this.connection.subscribe(natsSubject, options);
|
|
277
278
|
};
|
|
278
279
|
/**
|
|
@@ -62,9 +62,10 @@ export declare class SystemClient extends BaseClient {
|
|
|
62
62
|
/**
|
|
63
63
|
* Subscribe to the asset update events for the given Runner ID.
|
|
64
64
|
* Wildcard can be used to receive all asset update events.
|
|
65
|
+
* @param {string} realm
|
|
65
66
|
* @param {string} runnerId
|
|
66
67
|
* @param {(error:ErrorResponse|null,message:AssetUpdatedEvent|null)=>void} listener
|
|
67
68
|
* @param {SubscriptionOptions} options?
|
|
68
69
|
*/
|
|
69
|
-
subscribeAssetUpdatedEvents(runnerId: string, listener: (error: ErrorResponse | null, message: AssetUpdatedEvent | null) => void, options?: SubscriptionOptions): Subscription;
|
|
70
|
+
subscribeAssetUpdatedEvents(realm: string, runnerId: string, listener: (error: ErrorResponse | null, message: AssetUpdatedEvent | null) => void, options?: SubscriptionOptions): Subscription;
|
|
70
71
|
}
|
package/dist/cjs/SystemClient.js
CHANGED
|
@@ -195,14 +195,15 @@ var SystemClient = /** @class */ (function (_super) {
|
|
|
195
195
|
/**
|
|
196
196
|
* Subscribe to the asset update events for the given Runner ID.
|
|
197
197
|
* Wildcard can be used to receive all asset update events.
|
|
198
|
+
* @param {string} realm
|
|
198
199
|
* @param {string} runnerId
|
|
199
200
|
* @param {(error:ErrorResponse|null,message:AssetUpdatedEvent|null)=>void} listener
|
|
200
201
|
* @param {SubscriptionOptions} options?
|
|
201
202
|
*/
|
|
202
|
-
SystemClient.prototype.subscribeAssetUpdatedEvents = function (runnerId, listener, options) {
|
|
203
|
+
SystemClient.prototype.subscribeAssetUpdatedEvents = function (realm, runnerId, listener, options) {
|
|
203
204
|
var _this = this;
|
|
204
|
-
var subject = "OpenTap.RunnerRegistry.".concat(runnerId, ".Events.AssetsUpdated");
|
|
205
|
-
return this.subscribe(subject, __assign(__assign({}, options), { callback: function (error, message) {
|
|
205
|
+
var subject = "Realm.".concat(realm, ".OpenTap.RunnerRegistry.").concat(runnerId, ".Events.AssetsUpdated");
|
|
206
|
+
return this.subscribe(subject, __assign(__assign({}, options), { fullSubject: true, callback: function (error, message) {
|
|
206
207
|
if (error) {
|
|
207
208
|
listener(_this.natsErrorHandler(error, subject), null);
|
|
208
209
|
return;
|
package/dist/mjs/BaseClient.d.ts
CHANGED
|
@@ -60,7 +60,9 @@ export declare class BaseClient {
|
|
|
60
60
|
* @param options Subscription options
|
|
61
61
|
* @returns Subscription object
|
|
62
62
|
*/
|
|
63
|
-
protected subscribe(subject: string, options
|
|
63
|
+
protected subscribe(subject: string, options?: SubscriptionOptions & {
|
|
64
|
+
fullSubject?: boolean;
|
|
65
|
+
}): Subscription;
|
|
64
66
|
/**
|
|
65
67
|
* Subscribes to given subject.
|
|
66
68
|
* @param subject The subject to subscribe
|
package/dist/mjs/BaseClient.js
CHANGED
|
@@ -219,14 +219,14 @@ export class BaseClient {
|
|
|
219
219
|
* @param options Subscription options
|
|
220
220
|
* @returns Subscription object
|
|
221
221
|
*/
|
|
222
|
-
subscribe(subject, options) {
|
|
222
|
+
subscribe(subject, options = {}) {
|
|
223
223
|
if (!subject)
|
|
224
224
|
throw Error('Subject is not defined!');
|
|
225
225
|
if (!this.connection)
|
|
226
226
|
throw Error('Connection is not up yet! Please try again later!');
|
|
227
227
|
if (this.connection.isClosed())
|
|
228
228
|
throw Error('Connection has been closed! Please reconnect!');
|
|
229
|
-
const natsSubject = `${this.baseSubject}.${subject}`;
|
|
229
|
+
const natsSubject = options.fullSubject ? subject : `${this.baseSubject}.${subject}`;
|
|
230
230
|
return this.connection.subscribe(natsSubject, options);
|
|
231
231
|
}
|
|
232
232
|
/**
|
|
@@ -62,9 +62,10 @@ export declare class SystemClient extends BaseClient {
|
|
|
62
62
|
/**
|
|
63
63
|
* Subscribe to the asset update events for the given Runner ID.
|
|
64
64
|
* Wildcard can be used to receive all asset update events.
|
|
65
|
+
* @param {string} realm
|
|
65
66
|
* @param {string} runnerId
|
|
66
67
|
* @param {(error:ErrorResponse|null,message:AssetUpdatedEvent|null)=>void} listener
|
|
67
68
|
* @param {SubscriptionOptions} options?
|
|
68
69
|
*/
|
|
69
|
-
subscribeAssetUpdatedEvents(runnerId: string, listener: (error: ErrorResponse | null, message: AssetUpdatedEvent | null) => void, options?: SubscriptionOptions): Subscription;
|
|
70
|
+
subscribeAssetUpdatedEvents(realm: string, runnerId: string, listener: (error: ErrorResponse | null, message: AssetUpdatedEvent | null) => void, options?: SubscriptionOptions): Subscription;
|
|
70
71
|
}
|
package/dist/mjs/SystemClient.js
CHANGED
|
@@ -159,13 +159,14 @@ export class SystemClient extends BaseClient {
|
|
|
159
159
|
/**
|
|
160
160
|
* Subscribe to the asset update events for the given Runner ID.
|
|
161
161
|
* Wildcard can be used to receive all asset update events.
|
|
162
|
+
* @param {string} realm
|
|
162
163
|
* @param {string} runnerId
|
|
163
164
|
* @param {(error:ErrorResponse|null,message:AssetUpdatedEvent|null)=>void} listener
|
|
164
165
|
* @param {SubscriptionOptions} options?
|
|
165
166
|
*/
|
|
166
|
-
subscribeAssetUpdatedEvents(runnerId, listener, options) {
|
|
167
|
-
const subject = `OpenTap.RunnerRegistry.${runnerId}.Events.AssetsUpdated`;
|
|
168
|
-
return this.subscribe(subject, Object.assign(Object.assign({}, options), { callback: (error, message) => {
|
|
167
|
+
subscribeAssetUpdatedEvents(realm, runnerId, listener, options) {
|
|
168
|
+
const subject = `Realm.${realm}.OpenTap.RunnerRegistry.${runnerId}.Events.AssetsUpdated`;
|
|
169
|
+
return this.subscribe(subject, Object.assign(Object.assign({}, options), { fullSubject: true, callback: (error, message) => {
|
|
169
170
|
if (error) {
|
|
170
171
|
listener(this.natsErrorHandler(error, subject), null);
|
|
171
172
|
return;
|
package/package.json
CHANGED