@aptly-as/types 2.5.9 → 2.5.11
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/enums/index.d.ts +2 -2
- package/enums/index.js +2 -2
- package/models/organization.d.ts +1 -0
- package/models/payment.d.ts +2 -0
- package/models/project.d.ts +1 -0
- package/package.json +1 -1
package/enums/index.d.ts
CHANGED
|
@@ -34,9 +34,9 @@ export declare enum AptlyCloudinaryResourceType {
|
|
|
34
34
|
export declare enum AptlyUnitStatus {
|
|
35
35
|
NotStarted = "notStarted",
|
|
36
36
|
Started = "started",
|
|
37
|
-
AllPeriodsConfirmed = "allPeriodsConfirmed",
|
|
38
|
-
AllPeriodsSigned = "allPeriodsSigned",
|
|
39
37
|
Confirmed = "confirmed",
|
|
38
|
+
Signed = "signed",
|
|
39
|
+
Payed = "payed",
|
|
40
40
|
Completed = "completed"
|
|
41
41
|
}
|
|
42
42
|
export declare enum AptlyIntegration {
|
package/enums/index.js
CHANGED
|
@@ -38,9 +38,9 @@ export var AptlyUnitStatus;
|
|
|
38
38
|
(function (AptlyUnitStatus) {
|
|
39
39
|
AptlyUnitStatus["NotStarted"] = "notStarted";
|
|
40
40
|
AptlyUnitStatus["Started"] = "started";
|
|
41
|
-
AptlyUnitStatus["AllPeriodsConfirmed"] = "allPeriodsConfirmed";
|
|
42
|
-
AptlyUnitStatus["AllPeriodsSigned"] = "allPeriodsSigned";
|
|
43
41
|
AptlyUnitStatus["Confirmed"] = "confirmed";
|
|
42
|
+
AptlyUnitStatus["Signed"] = "signed";
|
|
43
|
+
AptlyUnitStatus["Payed"] = "payed";
|
|
44
44
|
AptlyUnitStatus["Completed"] = "completed";
|
|
45
45
|
})(AptlyUnitStatus || (AptlyUnitStatus = {}));
|
|
46
46
|
export var AptlyIntegration;
|
package/models/organization.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ export interface AptlyOrganizationSchema<ID, DATE> extends AptlyBaseSchema<ID, D
|
|
|
25
25
|
};
|
|
26
26
|
phone: string;
|
|
27
27
|
email: string;
|
|
28
|
+
invoiceEmail?: string;
|
|
28
29
|
algorithms: AptlyAlgorithmSchema<ID>[];
|
|
29
30
|
members: AptlyOrganizationMemberSchema<ID, DATE>[];
|
|
30
31
|
modules: AptlyModules[];
|
package/models/payment.d.ts
CHANGED
package/models/project.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ export interface AptlyProjectSchema<ID, DATE> extends AptlyBaseSchema<ID, DATE>,
|
|
|
32
32
|
developer?: string;
|
|
33
33
|
field?: string;
|
|
34
34
|
address?: AptlyAddress;
|
|
35
|
+
invoiceEmail?: string;
|
|
35
36
|
paymentApp?: ID | AptlyAppSchema<ID, DATE> | null;
|
|
36
37
|
invites?: AptlyProjectInviteSchema<ID, DATE>[];
|
|
37
38
|
signApp?: ID | AptlyAppSchema<ID, DATE> | null;
|