@opentap/runner-client 2.29.3-alpha.1.1.13971301220 → 2.29.3

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.
@@ -249,11 +249,5 @@ export declare class BaseClient {
249
249
  * @returns {Promise<string[]>}
250
250
  */
251
251
  settingsPackageTypes(): Promise<string[]>;
252
- /**
253
- * Dispatches a request with the given subject and returns a Promise of type T
254
- * @param subject The subject to send the request to
255
- * @returns Promise<T> The response from the request
256
- */
257
- dispatchRequest<T>(subject: string): Promise<T>;
258
252
  }
259
253
  export {};
@@ -682,18 +682,6 @@ var BaseClient = /** @class */ (function () {
682
682
  BaseClient.prototype.settingsPackageTypes = function () {
683
683
  return this.request('SettingsPackageTypes').then(this.success()).catch(this.error());
684
684
  };
685
- /**
686
- * Dispatches a request with the given subject and returns a Promise of type T
687
- * @param subject The subject to send the request to
688
- * @returns Promise<T> The response from the request
689
- */
690
- BaseClient.prototype.dispatchRequest = function (subject) {
691
- return __awaiter(this, void 0, void 0, function () {
692
- return __generator(this, function (_a) {
693
- return [2 /*return*/, this.request(subject, undefined, { fullSubject: true })];
694
- });
695
- });
696
- };
697
685
  return BaseClient;
698
686
  }());
699
687
  exports.BaseClient = BaseClient;
@@ -249,11 +249,5 @@ export declare class BaseClient {
249
249
  * @returns {Promise<string[]>}
250
250
  */
251
251
  settingsPackageTypes(): Promise<string[]>;
252
- /**
253
- * Dispatches a request with the given subject and returns a Promise of type T
254
- * @param subject The subject to send the request to
255
- * @returns Promise<T> The response from the request
256
- */
257
- dispatchRequest<T>(subject: string): Promise<T>;
258
252
  }
259
253
  export {};
@@ -606,14 +606,4 @@ export class BaseClient {
606
606
  settingsPackageTypes() {
607
607
  return this.request('SettingsPackageTypes').then(this.success()).catch(this.error());
608
608
  }
609
- /**
610
- * Dispatches a request with the given subject and returns a Promise of type T
611
- * @param subject The subject to send the request to
612
- * @returns Promise<T> The response from the request
613
- */
614
- dispatchRequest(subject) {
615
- return __awaiter(this, void 0, void 0, function* () {
616
- return this.request(subject, undefined, { fullSubject: true });
617
- });
618
- }
619
609
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opentap/runner-client",
3
- "version": "2.29.3-alpha.1.1.13971301220",
3
+ "version": "2.29.3",
4
4
  "description": "This is the web client for the OpenTAP Runner.",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/mjs/index.js",