@aptly-as/app-sdk
Advanced tools
Comparing version 1.1.3 to 1.1.4
@@ -1,2 +0,2 @@ | ||
import { AptlyOrder } from '@aptly-as/types'; | ||
import { AptlyOrder, AptlyPaymentTransactionBody } from '@aptly-as/types'; | ||
import { AptlyApi } from './AptlyApi.js'; | ||
@@ -21,2 +21,3 @@ export declare class AptlyOrders { | ||
}): Promise<AptlyOrder>; | ||
paymentTransaction(body: AptlyPaymentTransactionBody): Promise<AptlyOrder>; | ||
signeesBulk(signees: { | ||
@@ -23,0 +24,0 @@ user: string; |
@@ -36,2 +36,7 @@ import { pathWithParams } from './api.utils.js'; | ||
} | ||
paymentTransaction(body) { | ||
if (!this.id) | ||
throw new Error('ID is required.'); | ||
return this.api.post(`${this.path}/${this.id}/payment/transaction`, body); | ||
} | ||
signeesBulk(signees) { | ||
@@ -38,0 +43,0 @@ if (!this.id) |
{ | ||
"name": "@aptly-as/app-sdk", | ||
"version": "1.1.3", | ||
"version": "1.1.4", | ||
"description": "Aptly app SDK library for app communication and frontend development", | ||
@@ -5,0 +5,0 @@ "type": "module", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
38811
1016