@aptly-as/types 3.7.2 → 3.7.3

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/models/order.d.ts CHANGED
@@ -189,3 +189,7 @@ export interface AptlyOrderActionSignDataSignee {
189
189
  signMethod?: string;
190
190
  isAdmin?: boolean;
191
191
  }
192
+ export interface AptlyOrderDeliveryBody {
193
+ shippingDate: string;
194
+ shippingDescription?: string;
195
+ }
@@ -128,3 +128,9 @@ export interface AptlyPaymentTransactionBody {
128
128
  billing?: AptlyAddress;
129
129
  splits: Omit<AptlyPaymentSplit, '_id'>[];
130
130
  }
131
+ export interface AptlyPaymentCaptureBody {
132
+ amount: number;
133
+ description?: string;
134
+ shippingDate?: string;
135
+ terms?: boolean;
136
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aptly-as/types",
3
- "version": "3.7.2",
3
+ "version": "3.7.3",
4
4
  "description": "Aptly types and enums",
5
5
  "type": "module",
6
6
  "main": "./index.js",