attlaz-client 1.34.0 → 1.34.2

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/Client.d.ts CHANGED
@@ -70,7 +70,7 @@ export declare class Client {
70
70
  getTriggerEndpoint(): TriggerEndpoint;
71
71
  getUserEndpoint(): UserEndpoint;
72
72
  getWorkspaceMemberEndpoint(): WorkspaceMemberEndpoint;
73
- getWorkerEndpoint(): RunnerEndpoint;
73
+ getRunnerEndpoint(): RunnerEndpoint;
74
74
  getSourcesAccountEndpoint(): SourcesAccountEndpoint;
75
75
  getLanguageEndpoint(): PlatformLanguageEndpoint;
76
76
  getStorageEndpoint(): StorageEndpoint;
package/dist/Client.js CHANGED
@@ -181,8 +181,8 @@ export class Client {
181
181
  getWorkspaceMemberEndpoint() {
182
182
  return this.getEndpoint('member', this.Store.WorkspaceMemberEndpoint);
183
183
  }
184
- getWorkerEndpoint() {
185
- return this.getEndpoint('worker', this.Store.WorkerEndpoint);
184
+ getRunnerEndpoint() {
185
+ return this.getEndpoint('worker', this.Store.RunnerEndpoint);
186
186
  }
187
187
  getSourcesAccountEndpoint() {
188
188
  return this.getEndpoint('sources-account', this.Store.SourcesAccountEndpoint);
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const VERSION = "1.33.1";
1
+ export declare const VERSION = "1.34.1";
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const VERSION = "1.33.1";
1
+ export const VERSION = "1.34.1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "attlaz-client",
3
- "version": "1.34.0",
3
+ "version": "1.34.2",
4
4
  "description": "Javascript Client to access Attlaz API",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",