@devopness/sdk-js 2.22.0 → 2.23.0
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/README.md +2 -2
- package/dist/DevopnessApiClient.d.ts +16 -16
- package/dist/DevopnessApiClient.js +16 -16
- package/dist/api/generated/apis/pipelines-api.d.ts +10 -0
- package/dist/api/generated/apis/pipelines-api.js +29 -0
- package/dist/services/PipelineService.d.ts +0 -2
- package/dist/services/PipelineService.js +0 -2
- package/dist/services/UserService.d.ts +2 -0
- package/dist/services/UserService.js +2 -0
- package/package.json +1 -1
- package/dist/api/generated/apis/pipelines-resources-api.d.ts +0 -28
- package/dist/api/generated/apis/pipelines-resources-api.js +0 -62
package/README.md
CHANGED
|
@@ -40,7 +40,7 @@ To authenticate, just invoke the `login` method on the `users` service:
|
|
|
40
40
|
|
|
41
41
|
```javascript
|
|
42
42
|
async function authenticate(email, pass) {
|
|
43
|
-
const userTokens = await devopnessApi.users.
|
|
43
|
+
const userTokens = await devopnessApi.users.loginUser({ email: email, password: pass });
|
|
44
44
|
// The `accessToken` must be set every time a token is obtained or refreshed.
|
|
45
45
|
devopnessApi.accessToken = userTokens.data.access_token;
|
|
46
46
|
}
|
|
@@ -63,7 +63,7 @@ async function getUserProfile() {
|
|
|
63
63
|
|
|
64
64
|
// Now that we're authenticated, we can invoke methods on any services.
|
|
65
65
|
// Here we're invoking the `getCurrentUser()` method on the `users` service
|
|
66
|
-
const currentUser = await devopnessApi.users.
|
|
66
|
+
const currentUser = await devopnessApi.users.getUserCurrent();
|
|
67
67
|
console.log('Successfully retrieved user profile: ', currentUser);
|
|
68
68
|
}
|
|
69
69
|
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
+
import { ActionService } from './services/ActionService';
|
|
1
2
|
import { ConfigurationOptions } from './services/ApiBaseService';
|
|
2
3
|
import { ApplicationService } from './services/ApplicationService';
|
|
4
|
+
import { CloudProviderCredentialService } from './services/CloudProviderCredentialService';
|
|
5
|
+
import { CronJobService } from './services/CronJobService';
|
|
3
6
|
import { DaemonService } from './services/DaemonService';
|
|
4
7
|
import { EnvironmentService } from './services/EnvironmentService';
|
|
8
|
+
import { HookIncomingService } from './services/HookIncomingService';
|
|
9
|
+
import { HookOutgoingService } from './services/HookOutgoingService';
|
|
10
|
+
import { HookRequestService } from './services/HookRequestService';
|
|
11
|
+
import { LogService } from './services/LogService';
|
|
5
12
|
import { NetworkRuleService } from './services/NetworkRuleService';
|
|
13
|
+
import { PipelineService } from './services/PipelineService';
|
|
6
14
|
import { ProjectService } from './services/ProjectService';
|
|
15
|
+
import { ResourceEventService } from './services/ResourceEventService';
|
|
16
|
+
import { RoleService } from './services/RoleService';
|
|
7
17
|
import { ServerService } from './services/ServerService';
|
|
8
18
|
import { ServiceService } from './services/ServiceService';
|
|
19
|
+
import { SocialAccountService } from './services/SocialAccountService';
|
|
9
20
|
import { SourceProviderService } from './services/SourceProviderService';
|
|
10
21
|
import { SshKeyService } from './services/SshKeyService';
|
|
11
22
|
import { SslCertificateService } from './services/SslCertificateService';
|
|
12
|
-
import { UserService } from './services/UserService';
|
|
13
|
-
import { CronJobService } from './services/CronJobService';
|
|
14
23
|
import { StaticService } from './services/StaticService';
|
|
15
|
-
import { SocialAccountService } from './services/SocialAccountService';
|
|
16
|
-
import { LogService } from './services/LogService';
|
|
17
|
-
import { VariableService } from './services/VariableService';
|
|
18
|
-
import { HookIncomingService } from './services/HookIncomingService';
|
|
19
|
-
import { HookOutgoingService } from './services/HookOutgoingService';
|
|
20
|
-
import { HookRequestService } from './services/HookRequestService';
|
|
21
|
-
import { CloudProviderCredentialService } from './services/CloudProviderCredentialService';
|
|
22
|
-
import { TeamService } from './services/TeamService';
|
|
23
|
-
import { ResourceEventService } from './services/ResourceEventService';
|
|
24
|
-
import { ActionService } from './services/ActionService';
|
|
25
|
-
import { PipelineService } from './services/PipelineService';
|
|
26
|
-
import { RoleService } from './services/RoleService';
|
|
27
24
|
import { TeamInvitationService } from './services/TeamInvitationService';
|
|
25
|
+
import { TeamService } from './services/TeamService';
|
|
26
|
+
import { UserService } from './services/UserService';
|
|
27
|
+
import { VariableService } from './services/VariableService';
|
|
28
28
|
export declare class DevopnessApiClient {
|
|
29
29
|
actions: ActionService;
|
|
30
30
|
applications: ApplicationService;
|
|
@@ -39,8 +39,8 @@ export declare class DevopnessApiClient {
|
|
|
39
39
|
outgoingHooks: HookOutgoingService;
|
|
40
40
|
pipelines: PipelineService;
|
|
41
41
|
projects: ProjectService;
|
|
42
|
-
roles: RoleService;
|
|
43
42
|
resourceEvents: ResourceEventService;
|
|
43
|
+
roles: RoleService;
|
|
44
44
|
servers: ServerService;
|
|
45
45
|
services: ServiceService;
|
|
46
46
|
socialAccounts: SocialAccountService;
|
|
@@ -48,8 +48,8 @@ export declare class DevopnessApiClient {
|
|
|
48
48
|
sshKeys: SshKeyService;
|
|
49
49
|
sslCertificates: SslCertificateService;
|
|
50
50
|
static: StaticService;
|
|
51
|
-
teams: TeamService;
|
|
52
51
|
teamInvitations: TeamInvitationService;
|
|
52
|
+
teams: TeamService;
|
|
53
53
|
users: UserService;
|
|
54
54
|
variables: VariableService;
|
|
55
55
|
constructor(options?: ConfigurationOptions);
|
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.DevopnessApiClient = void 0;
|
|
4
|
+
const ActionService_1 = require("./services/ActionService");
|
|
4
5
|
const ApiBaseService_1 = require("./services/ApiBaseService");
|
|
5
6
|
const ApplicationService_1 = require("./services/ApplicationService");
|
|
7
|
+
const CloudProviderCredentialService_1 = require("./services/CloudProviderCredentialService");
|
|
8
|
+
const CronJobService_1 = require("./services/CronJobService");
|
|
6
9
|
const DaemonService_1 = require("./services/DaemonService");
|
|
7
10
|
const EnvironmentService_1 = require("./services/EnvironmentService");
|
|
11
|
+
const HookIncomingService_1 = require("./services/HookIncomingService");
|
|
12
|
+
const HookOutgoingService_1 = require("./services/HookOutgoingService");
|
|
13
|
+
const HookRequestService_1 = require("./services/HookRequestService");
|
|
14
|
+
const LogService_1 = require("./services/LogService");
|
|
8
15
|
const NetworkRuleService_1 = require("./services/NetworkRuleService");
|
|
16
|
+
const PipelineService_1 = require("./services/PipelineService");
|
|
9
17
|
const ProjectService_1 = require("./services/ProjectService");
|
|
18
|
+
const ResourceEventService_1 = require("./services/ResourceEventService");
|
|
19
|
+
const RoleService_1 = require("./services/RoleService");
|
|
10
20
|
const ServerService_1 = require("./services/ServerService");
|
|
11
21
|
const ServiceService_1 = require("./services/ServiceService");
|
|
22
|
+
const SocialAccountService_1 = require("./services/SocialAccountService");
|
|
12
23
|
const SourceProviderService_1 = require("./services/SourceProviderService");
|
|
13
24
|
const SshKeyService_1 = require("./services/SshKeyService");
|
|
14
25
|
const SslCertificateService_1 = require("./services/SslCertificateService");
|
|
15
|
-
const UserService_1 = require("./services/UserService");
|
|
16
|
-
const CronJobService_1 = require("./services/CronJobService");
|
|
17
26
|
const StaticService_1 = require("./services/StaticService");
|
|
18
|
-
const SocialAccountService_1 = require("./services/SocialAccountService");
|
|
19
|
-
const LogService_1 = require("./services/LogService");
|
|
20
|
-
const VariableService_1 = require("./services/VariableService");
|
|
21
|
-
const HookIncomingService_1 = require("./services/HookIncomingService");
|
|
22
|
-
const HookOutgoingService_1 = require("./services/HookOutgoingService");
|
|
23
|
-
const HookRequestService_1 = require("./services/HookRequestService");
|
|
24
|
-
const CloudProviderCredentialService_1 = require("./services/CloudProviderCredentialService");
|
|
25
|
-
const TeamService_1 = require("./services/TeamService");
|
|
26
|
-
const ResourceEventService_1 = require("./services/ResourceEventService");
|
|
27
|
-
const ActionService_1 = require("./services/ActionService");
|
|
28
|
-
const PipelineService_1 = require("./services/PipelineService");
|
|
29
|
-
const RoleService_1 = require("./services/RoleService");
|
|
30
27
|
const TeamInvitationService_1 = require("./services/TeamInvitationService");
|
|
28
|
+
const TeamService_1 = require("./services/TeamService");
|
|
29
|
+
const UserService_1 = require("./services/UserService");
|
|
30
|
+
const VariableService_1 = require("./services/VariableService");
|
|
31
31
|
class DevopnessApiClient {
|
|
32
32
|
constructor(options) {
|
|
33
33
|
ApiBaseService_1.ApiBaseService.configuration = new ApiBaseService_1.Configuration(options || {});
|
|
@@ -47,8 +47,8 @@ class DevopnessApiClient {
|
|
|
47
47
|
this.outgoingHooks = new HookOutgoingService_1.HookOutgoingService();
|
|
48
48
|
this.pipelines = new PipelineService_1.PipelineService();
|
|
49
49
|
this.projects = new ProjectService_1.ProjectService();
|
|
50
|
-
this.roles = new RoleService_1.RoleService();
|
|
51
50
|
this.resourceEvents = new ResourceEventService_1.ResourceEventService();
|
|
51
|
+
this.roles = new RoleService_1.RoleService();
|
|
52
52
|
this.servers = new ServerService_1.ServerService();
|
|
53
53
|
this.services = new ServiceService_1.ServiceService();
|
|
54
54
|
this.socialAccounts = new SocialAccountService_1.SocialAccountService();
|
|
@@ -56,8 +56,8 @@ class DevopnessApiClient {
|
|
|
56
56
|
this.sshKeys = new SshKeyService_1.SshKeyService();
|
|
57
57
|
this.sslCertificates = new SslCertificateService_1.SslCertificateService();
|
|
58
58
|
this.static = new StaticService_1.StaticService();
|
|
59
|
-
this.teams = new TeamService_1.TeamService();
|
|
60
59
|
this.teamInvitations = new TeamInvitationService_1.TeamInvitationService();
|
|
60
|
+
this.teams = new TeamService_1.TeamService();
|
|
61
61
|
this.users = new UserService_1.UserService();
|
|
62
62
|
this.variables = new VariableService_1.VariableService();
|
|
63
63
|
}
|
|
@@ -13,6 +13,7 @@ import { ApiBaseService } from "../../../services/ApiBaseService";
|
|
|
13
13
|
import { ApiResponse } from "../../../common/ApiResponse";
|
|
14
14
|
import { Pipeline } from '../../generated/models';
|
|
15
15
|
import { PipelineCreate } from '../../generated/models';
|
|
16
|
+
import { PipelineRelation } from '../../generated/models';
|
|
16
17
|
import { PipelineUpdate } from '../../generated/models';
|
|
17
18
|
/**
|
|
18
19
|
* PipelinesApiService - Auto-generated
|
|
@@ -38,6 +39,15 @@ export declare class PipelinesApiService extends ApiBaseService {
|
|
|
38
39
|
* @param {number} pipelineId The ID of the pipeline.
|
|
39
40
|
*/
|
|
40
41
|
getPipeline(pipelineId: number): Promise<ApiResponse<Pipeline>>;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @summary Return a list of pipelines to a resource
|
|
45
|
+
* @param {number} resourceId The resource ID.
|
|
46
|
+
* @param {string} resourceType The resource type to get pipelines from.
|
|
47
|
+
* @param {number} [page] Number of the page to be retrieved
|
|
48
|
+
* @param {number} [perPage] Number of items returned per page
|
|
49
|
+
*/
|
|
50
|
+
listPipelinesByResourceType(resourceId: number, resourceType: string, page?: number, perPage?: number): Promise<ApiResponse<Array<PipelineRelation>>>;
|
|
41
51
|
/**
|
|
42
52
|
*
|
|
43
53
|
* @summary Update an existing Pipeline
|
|
@@ -85,6 +85,35 @@ class PipelinesApiService extends ApiBaseService_1.ApiBaseService {
|
|
|
85
85
|
return new ApiResponse_1.ApiResponse(response);
|
|
86
86
|
});
|
|
87
87
|
}
|
|
88
|
+
/**
|
|
89
|
+
*
|
|
90
|
+
* @summary Return a list of pipelines to a resource
|
|
91
|
+
* @param {number} resourceId The resource ID.
|
|
92
|
+
* @param {string} resourceType The resource type to get pipelines from.
|
|
93
|
+
* @param {number} [page] Number of the page to be retrieved
|
|
94
|
+
* @param {number} [perPage] Number of items returned per page
|
|
95
|
+
*/
|
|
96
|
+
listPipelinesByResourceType(resourceId, resourceType, page, perPage) {
|
|
97
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
98
|
+
if (resourceId === null || resourceId === undefined) {
|
|
99
|
+
throw new Exceptions_1.ArgumentNullException('resourceId', 'listPipelinesByResourceType');
|
|
100
|
+
}
|
|
101
|
+
if (resourceType === null || resourceType === undefined) {
|
|
102
|
+
throw new Exceptions_1.ArgumentNullException('resourceType', 'listPipelinesByResourceType');
|
|
103
|
+
}
|
|
104
|
+
let queryString = '';
|
|
105
|
+
const queryParams = { page: page, per_page: perPage, };
|
|
106
|
+
for (const key in queryParams) {
|
|
107
|
+
if (queryParams[key] === undefined || queryParams[key] === null) {
|
|
108
|
+
continue;
|
|
109
|
+
}
|
|
110
|
+
queryString += (queryString ? '&' : '') + `${key}=${encodeURI(queryParams[key])}`;
|
|
111
|
+
}
|
|
112
|
+
const requestUrl = '/pipelines/{resource_type}/{resource_id}' + (queryString ? `?${queryString}` : '');
|
|
113
|
+
const response = yield this.get(requestUrl.replace(`{${"resource_id"}}`, encodeURIComponent(String(resourceId))).replace(`{${"resource_type"}}`, encodeURIComponent(String(resourceType))));
|
|
114
|
+
return new ApiResponse_1.ApiResponse(response);
|
|
115
|
+
});
|
|
116
|
+
}
|
|
88
117
|
/**
|
|
89
118
|
*
|
|
90
119
|
* @summary Update an existing Pipeline
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import { PipelinesApiService } from "../api/generated/apis/pipelines-api";
|
|
2
|
-
import { PipelinesResourcesApiService } from "../api/generated/apis/pipelines-resources-api";
|
|
3
2
|
import { PipelinesStepsApiService } from "../api/generated/apis/pipelines-steps-api";
|
|
4
3
|
export declare class PipelineService extends PipelinesApiService {
|
|
5
|
-
resources: PipelinesResourcesApiService;
|
|
6
4
|
steps: PipelinesStepsApiService;
|
|
7
5
|
}
|
|
@@ -2,12 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PipelineService = void 0;
|
|
4
4
|
const pipelines_api_1 = require("../api/generated/apis/pipelines-api");
|
|
5
|
-
const pipelines_resources_api_1 = require("../api/generated/apis/pipelines-resources-api");
|
|
6
5
|
const pipelines_steps_api_1 = require("../api/generated/apis/pipelines-steps-api");
|
|
7
6
|
class PipelineService extends pipelines_api_1.PipelinesApiService {
|
|
8
7
|
constructor() {
|
|
9
8
|
super(...arguments);
|
|
10
|
-
this.resources = new pipelines_resources_api_1.PipelinesResourcesApiService();
|
|
11
9
|
this.steps = new pipelines_steps_api_1.PipelinesStepsApiService();
|
|
12
10
|
}
|
|
13
11
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { UsersApiService } from '../api/generated/apis/users-api';
|
|
2
2
|
import { UsersTeamInvitationsApiService } from '../api/generated/apis/users-team-invitations-api';
|
|
3
|
+
import { UsersPasswordsApiService } from '../api/generated/apis/users-passwords-api';
|
|
3
4
|
export declare class UserService extends UsersApiService {
|
|
4
5
|
teamInvitations: UsersTeamInvitationsApiService;
|
|
6
|
+
passwords: UsersPasswordsApiService;
|
|
5
7
|
}
|
|
@@ -3,10 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.UserService = void 0;
|
|
4
4
|
const users_api_1 = require("../api/generated/apis/users-api");
|
|
5
5
|
const users_team_invitations_api_1 = require("../api/generated/apis/users-team-invitations-api");
|
|
6
|
+
const users_passwords_api_1 = require("../api/generated/apis/users-passwords-api");
|
|
6
7
|
class UserService extends users_api_1.UsersApiService {
|
|
7
8
|
constructor() {
|
|
8
9
|
super(...arguments);
|
|
9
10
|
this.teamInvitations = new users_team_invitations_api_1.UsersTeamInvitationsApiService();
|
|
11
|
+
this.passwords = new users_passwords_api_1.UsersPasswordsApiService();
|
|
10
12
|
}
|
|
11
13
|
}
|
|
12
14
|
exports.UserService = UserService;
|
package/package.json
CHANGED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* devopness API
|
|
3
|
-
* Devopness API - Painless essential DevOps to everyone
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: latest
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
-
* https://openapi-generator.tech
|
|
10
|
-
* Do not edit the class manually.
|
|
11
|
-
*/
|
|
12
|
-
import { ApiBaseService } from "../../../services/ApiBaseService";
|
|
13
|
-
import { ApiResponse } from "../../../common/ApiResponse";
|
|
14
|
-
import { Pipeline } from '../../generated/models';
|
|
15
|
-
/**
|
|
16
|
-
* PipelinesResourcesApiService - Auto-generated
|
|
17
|
-
*/
|
|
18
|
-
export declare class PipelinesResourcesApiService extends ApiBaseService {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @summary Returns a list of pipelines to a resource
|
|
22
|
-
* @param {string} resourceType Pipeline\'s resource type to get pipelines from
|
|
23
|
-
* @param {number} resourceId Unique ID of the resource to get pipelines from
|
|
24
|
-
* @param {number} [page] Number of the page to be retrieved
|
|
25
|
-
* @param {number} [perPage] Number of items returned per page
|
|
26
|
-
*/
|
|
27
|
-
listPipelines(resourceType: string, resourceId: number, page?: number, perPage?: number): Promise<ApiResponse<Array<Pipeline>>>;
|
|
28
|
-
}
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* devopness API
|
|
5
|
-
* Devopness API - Painless essential DevOps to everyone
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: latest
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
15
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
16
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
17
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
18
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
19
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
20
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
21
|
-
});
|
|
22
|
-
};
|
|
23
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24
|
-
exports.PipelinesResourcesApiService = void 0;
|
|
25
|
-
const ApiBaseService_1 = require("../../../services/ApiBaseService");
|
|
26
|
-
const ApiResponse_1 = require("../../../common/ApiResponse");
|
|
27
|
-
const Exceptions_1 = require("../../../common/Exceptions");
|
|
28
|
-
/**
|
|
29
|
-
* PipelinesResourcesApiService - Auto-generated
|
|
30
|
-
*/
|
|
31
|
-
class PipelinesResourcesApiService extends ApiBaseService_1.ApiBaseService {
|
|
32
|
-
/**
|
|
33
|
-
*
|
|
34
|
-
* @summary Returns a list of pipelines to a resource
|
|
35
|
-
* @param {string} resourceType Pipeline\'s resource type to get pipelines from
|
|
36
|
-
* @param {number} resourceId Unique ID of the resource to get pipelines from
|
|
37
|
-
* @param {number} [page] Number of the page to be retrieved
|
|
38
|
-
* @param {number} [perPage] Number of items returned per page
|
|
39
|
-
*/
|
|
40
|
-
listPipelines(resourceType, resourceId, page, perPage) {
|
|
41
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
42
|
-
if (resourceType === null || resourceType === undefined) {
|
|
43
|
-
throw new Exceptions_1.ArgumentNullException('resourceType', 'listPipelines');
|
|
44
|
-
}
|
|
45
|
-
if (resourceId === null || resourceId === undefined) {
|
|
46
|
-
throw new Exceptions_1.ArgumentNullException('resourceId', 'listPipelines');
|
|
47
|
-
}
|
|
48
|
-
let queryString = '';
|
|
49
|
-
const queryParams = { page: page, per_page: perPage, };
|
|
50
|
-
for (const key in queryParams) {
|
|
51
|
-
if (queryParams[key] === undefined || queryParams[key] === null) {
|
|
52
|
-
continue;
|
|
53
|
-
}
|
|
54
|
-
queryString += (queryString ? '&' : '') + `${key}=${encodeURI(queryParams[key])}`;
|
|
55
|
-
}
|
|
56
|
-
const requestUrl = '/pipelines/{resource_type}/{resource_id}' + (queryString ? `?${queryString}` : '');
|
|
57
|
-
const response = yield this.get(requestUrl.replace(`{${"resource_type"}}`, encodeURIComponent(String(resourceType))).replace(`{${"resource_id"}}`, encodeURIComponent(String(resourceId))));
|
|
58
|
-
return new ApiResponse_1.ApiResponse(response);
|
|
59
|
-
});
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
exports.PipelinesResourcesApiService = PipelinesResourcesApiService;
|