@aptly-as/types 3.10.10 → 3.10.12
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 +1 -1
- package/models/plan.d.ts +4 -0
- package/models/user.d.ts +1 -0
- package/package.json +1 -1
package/models/order.d.ts
CHANGED
|
@@ -51,7 +51,6 @@ export interface AptlyOrderSchema<ID, DATE> extends Omit<AptlyBaseSchema<ID, DAT
|
|
|
51
51
|
billing?: AptlyAddress;
|
|
52
52
|
pricePipeline: AptlyOrderPricePipelineItemSchema<ID>[];
|
|
53
53
|
signees?: AptlyOrderSigneeSchema<ID, DATE>[];
|
|
54
|
-
signedAt?: DATE | null;
|
|
55
54
|
emailText?: string;
|
|
56
55
|
approved?: {
|
|
57
56
|
action?: AptlyOrderAction;
|
|
@@ -62,6 +61,7 @@ export interface AptlyOrderSchema<ID, DATE> extends Omit<AptlyBaseSchema<ID, DAT
|
|
|
62
61
|
payment?: ID | AptlyPaymentSchema<ID, DATE>;
|
|
63
62
|
shippingDate?: DATE;
|
|
64
63
|
shippingDescription?: string;
|
|
64
|
+
signedAt?: DATE | null;
|
|
65
65
|
completedAt?: DATE | null;
|
|
66
66
|
createdBy?: Populated<AptlyUserSchema<ID, DATE>> | null;
|
|
67
67
|
createdByAdmin?: boolean;
|
package/models/plan.d.ts
CHANGED
|
@@ -42,6 +42,10 @@ export interface AptlyPlanSchema<ID, DATE> extends AptlyBaseSchema<ID, DATE> {
|
|
|
42
42
|
monthlyQuantity: number;
|
|
43
43
|
amount: number;
|
|
44
44
|
};
|
|
45
|
+
signage: {
|
|
46
|
+
amount: number;
|
|
47
|
+
signee: number;
|
|
48
|
+
};
|
|
45
49
|
}
|
|
46
50
|
export type AptlyPlanInstalled = AptlyPlanInstalledSchema<string, string>;
|
|
47
51
|
export interface AptlyPlanInstalledSchema<ID, DATE> extends AptlyPlanSchema<ID, DATE> {
|
package/models/user.d.ts
CHANGED