Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@aptly-as/app-sdk

Package Overview
Dependencies
Maintainers
2
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aptly-as/app-sdk - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

9

dist/aptly/AptlyOrders.d.ts

@@ -12,3 +12,10 @@ import { AptlyOrder } from '@aptly-as/types';

patch(order: Partial<AptlyOrder>): Promise<AptlyOrder>;
signeeSign(user: string): Promise<AptlyOrder>;
reset(): Promise<AptlyOrder>;
signeesBulk(signees: {
user: string;
signedAt: string;
}[]): Promise<AptlyOrder>;
signeeSign(user: string, body: {
signedAt: string;
}): Promise<AptlyOrder>;
}

@@ -26,7 +26,19 @@ import { pathWithParams } from './api.utils.js';

}
signeeSign(user) {
reset() {
if (!this.id)
throw new Error('ID is required.');
return this.api.post(`${this.path}/${this.id}/signees/${user}/sign`, {});
return this.api.patch(`${this.path}/${this.id}/reset`, {});
}
signeesBulk(signees) {
if (!this.id)
throw new Error('ID is required.');
return this.api.patch(`${this.path}/${this.id}/signees/bulk`, {
signees,
});
}
signeeSign(user, body) {
if (!this.id)
throw new Error('ID is required.');
return this.api.post(`${this.path}/${this.id}/signees/${user}/sign`, body);
}
}

2

package.json
{
"name": "@aptly-as/app-sdk",
"version": "1.1.1",
"version": "1.1.2",
"description": "Aptly app SDK library for app communication and frontend development",

@@ -5,0 +5,0 @@ "type": "module",

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