attlaz-client 1.34.1 → 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 +2 -0
- package/dist/Client.js +3 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/dist/Client.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { OAuthClientToken } from './Http/OAuthClientToken.js';
|
|
2
|
+
import { RunnerEndpoint } from './Service/RunnerEndpoint.js';
|
|
2
3
|
import { AdapterEndpoint } from './Service/AdapterEndpoint.js';
|
|
3
4
|
import { ProjectEnvironmentEndpoint } from './Service/ProjectEnvironmentEndpoint.js';
|
|
4
5
|
import { ProjectEndpoint } from './Service/ProjectEndpoint.js';
|
|
@@ -69,6 +70,7 @@ export declare class Client {
|
|
|
69
70
|
getTriggerEndpoint(): TriggerEndpoint;
|
|
70
71
|
getUserEndpoint(): UserEndpoint;
|
|
71
72
|
getWorkspaceMemberEndpoint(): WorkspaceMemberEndpoint;
|
|
73
|
+
getRunnerEndpoint(): RunnerEndpoint;
|
|
72
74
|
getSourcesAccountEndpoint(): SourcesAccountEndpoint;
|
|
73
75
|
getLanguageEndpoint(): PlatformLanguageEndpoint;
|
|
74
76
|
getStorageEndpoint(): StorageEndpoint;
|
package/dist/Client.js
CHANGED
|
@@ -181,6 +181,9 @@ export class Client {
|
|
|
181
181
|
getWorkspaceMemberEndpoint() {
|
|
182
182
|
return this.getEndpoint('member', this.Store.WorkspaceMemberEndpoint);
|
|
183
183
|
}
|
|
184
|
+
getRunnerEndpoint() {
|
|
185
|
+
return this.getEndpoint('worker', this.Store.RunnerEndpoint);
|
|
186
|
+
}
|
|
184
187
|
getSourcesAccountEndpoint() {
|
|
185
188
|
return this.getEndpoint('sources-account', this.Store.SourcesAccountEndpoint);
|
|
186
189
|
}
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "1.34.
|
|
1
|
+
export declare const VERSION = "1.34.1";
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "1.34.
|
|
1
|
+
export const VERSION = "1.34.1";
|