New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@devopness/sdk-js

Package Overview
Dependencies
Maintainers
1
Versions
324
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@devopness/sdk-js - npm Package Compare versions

Comparing version 1.20.0 to 1.20.1

dist/api/generated/models/application-create.d.ts

5

dist/api/generated/apis/projects-applications-api.d.ts

@@ -15,2 +15,3 @@ /**

import { Application } from '../../generated/models';
import { ApplicationCreate } from '../../generated/models';
/**

@@ -24,5 +25,5 @@ * ProjectsApplicationsApiService - Auto-generated

* @param {number} projectId Numeric ID of the application to get
* @param {Application} application A JSON object containing project data
* @param {ApplicationCreate} applicationCreate A JSON object containing project data
*/
addApplicationToProject(projectId: number, application: Application): Promise<ApiResponse<void>>;
addApplicationToProject(projectId: number, applicationCreate: ApplicationCreate): Promise<ApiResponse<Application>>;
/**

@@ -29,0 +30,0 @@ *

10

dist/api/generated/apis/projects-applications-api.js

@@ -36,5 +36,5 @@ "use strict";

* @param {number} projectId Numeric ID of the application to get
* @param {Application} application A JSON object containing project data
* @param {ApplicationCreate} applicationCreate A JSON object containing project data
*/
addApplicationToProject(projectId, application) {
addApplicationToProject(projectId, applicationCreate) {
return __awaiter(this, void 0, void 0, function* () {

@@ -44,6 +44,6 @@ if (projectId === null || projectId === undefined) {

}
if (application === null || application === undefined) {
throw new Exceptions_1.ArgumentNullException('application', 'addApplicationToProject');
if (applicationCreate === null || applicationCreate === undefined) {
throw new Exceptions_1.ArgumentNullException('applicationCreate', 'addApplicationToProject');
}
const response = yield this.post(`/projects/{project_id}/applications`.replace(`{${"project_id"}}`, encodeURIComponent(String(projectId))), application);
const response = yield this.post(`/projects/{project_id}/applications`.replace(`{${"project_id"}}`, encodeURIComponent(String(projectId))), applicationCreate);
return new ApiResponse_1.ApiResponse(response);

@@ -50,0 +50,0 @@ });

@@ -26,3 +26,3 @@ /**

*/
addEnvironmentToProject(projectId: number, environmentCreate: EnvironmentCreate): Promise<ApiResponse<void>>;
addEnvironmentToProject(projectId: number, environmentCreate: EnvironmentCreate): Promise<ApiResponse<Environment>>;
/**

@@ -29,0 +29,0 @@ *

@@ -6,2 +6,3 @@ export * from './action';

export * from './application';
export * from './application-create';
export * from './application-deployment';

@@ -8,0 +9,0 @@ export * from './application-deployment-settings';

@@ -18,2 +18,3 @@ "use strict";

__exportStar(require("./application"), exports);
__exportStar(require("./application-create"), exports);
__exportStar(require("./application-deployment"), exports);

@@ -20,0 +21,0 @@ __exportStar(require("./application-deployment-settings"), exports);

{
"name": "@devopness/sdk-js",
"version": "1.20.0",
"version": "1.20.1",
"publishConfig": {

@@ -5,0 +5,0 @@ "access": "public"

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc