@aptly-as/types 2.5.3 → 2.5.5
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/core/api.d.ts +13 -13
- package/core/api.js +1 -1
- package/core/app.d.ts +37 -37
- package/core/app.js +9 -9
- package/core/cloudinary.d.ts +2 -2
- package/core/cloudinary.js +1 -1
- package/core/fields.d.ts +19 -19
- package/core/fields.js +1 -1
- package/core/index.d.ts +16 -16
- package/core/index.js +9 -9
- package/core/job.d.ts +21 -21
- package/core/job.js +11 -11
- package/core/redirect.d.ts +17 -17
- package/core/redirect.js +12 -12
- package/core/scope.d.ts +124 -124
- package/core/scope.js +117 -117
- package/core/signage.d.ts +19 -19
- package/core/signage.js +1 -1
- package/core/webhook-event-data.d.ts +16 -16
- package/core/webhook-event-data.js +1 -1
- package/enums/document.d.ts +38 -38
- package/enums/document.js +41 -41
- package/enums/fields.d.ts +30 -30
- package/enums/fields.js +31 -31
- package/enums/index.d.ts +151 -150
- package/enums/index.js +171 -170
- package/enums/unit-template.d.ts +10 -10
- package/enums/unit-template.js +12 -12
- package/enums/webhook.d.ts +23 -23
- package/enums/webhook.js +26 -26
- package/error/error.d.ts +28 -28
- package/error/error.js +50 -50
- package/error/index.d.ts +1 -1
- package/error/index.js +1 -1
- package/index.d.ts +4 -4
- package/index.js +4 -4
- package/models/algorithm.d.ts +32 -32
- package/models/algorithm.js +15 -15
- package/models/app.d.ts +102 -101
- package/models/app.js +53 -52
- package/models/availability.d.ts +35 -35
- package/models/availability.js +1 -1
- package/models/booking.d.ts +57 -57
- package/models/booking.js +1 -1
- package/models/client.d.ts +10 -10
- package/models/client.js +1 -1
- package/models/department.d.ts +28 -28
- package/models/department.js +1 -1
- package/models/document.d.ts +37 -37
- package/models/document.js +1 -1
- package/models/email.d.ts +16 -16
- package/models/email.js +1 -1
- package/models/extends.d.ts +37 -37
- package/models/extends.js +1 -1
- package/models/index.d.ts +34 -34
- package/models/index.js +34 -34
- package/models/inquiry.d.ts +57 -57
- package/models/inquiry.js +1 -1
- package/models/media.d.ts +50 -50
- package/models/media.js +1 -1
- package/models/module.d.ts +19 -19
- package/models/module.js +1 -1
- package/models/note.d.ts +19 -19
- package/models/note.js +1 -1
- package/models/notification-trigger.d.ts +9 -9
- package/models/notification-trigger.js +1 -1
- package/models/option-label.d.ts +7 -7
- package/models/option-label.js +1 -1
- package/models/order.d.ts +164 -163
- package/models/order.js +20 -20
- package/models/organization.d.ts +86 -86
- package/models/organization.js +7 -7
- package/models/page.d.ts +22 -22
- package/models/page.js +1 -1
- package/models/payment.d.ts +94 -94
- package/models/payment.js +1 -1
- package/models/period.d.ts +8 -8
- package/models/period.js +1 -1
- package/models/producer.d.ts +24 -24
- package/models/producer.js +1 -1
- package/models/product-stats.d.ts +18 -18
- package/models/product-stats.js +1 -1
- package/models/product.d.ts +78 -78
- package/models/product.js +1 -1
- package/models/project.d.ts +124 -124
- package/models/project.js +1 -1
- package/models/queue-download.d.ts +19 -19
- package/models/queue-download.js +1 -1
- package/models/recommendation.d.ts +12 -12
- package/models/recommendation.js +1 -1
- package/models/supplier.d.ts +12 -12
- package/models/supplier.js +1 -1
- package/models/tag.d.ts +5 -5
- package/models/tag.js +1 -1
- package/models/unit-email.d.ts +21 -21
- package/models/unit-email.js +1 -1
- package/models/unit-template.d.ts +124 -124
- package/models/unit-template.js +1 -1
- package/models/unit.d.ts +243 -243
- package/models/unit.js +1 -1
- package/models/upsell-template.d.ts +13 -13
- package/models/upsell-template.js +1 -1
- package/models/user.d.ts +33 -33
- package/models/user.js +16 -16
- package/models/webhook-event.d.ts +43 -43
- package/models/webhook-event.js +1 -1
- package/models/webhook.d.ts +15 -15
- package/models/webhook.js +1 -1
- package/package.json +5 -5
package/enums/index.d.ts
CHANGED
|
@@ -1,150 +1,151 @@
|
|
|
1
|
-
export * from './document.js';
|
|
2
|
-
export * from './fields.js';
|
|
3
|
-
export * from './unit-template.js';
|
|
4
|
-
export * from './webhook.js';
|
|
5
|
-
export declare enum AptlyOrderStatus {
|
|
6
|
-
New = "new",
|
|
7
|
-
NotSigned = "notSigned",
|
|
8
|
-
ReadyToSign = "readyToSign",
|
|
9
|
-
SignedByCustomer = "signedByCustomer",
|
|
10
|
-
SignedByOrganization = "signedByOrganization",
|
|
11
|
-
Signed = "signed",
|
|
12
|
-
Payment = "payment",
|
|
13
|
-
FileReceived = "fileReceived",
|
|
14
|
-
Completed = "completed",
|
|
15
|
-
AllPeriodsSigned = "allPeriodsSigned",
|
|
16
|
-
Invalid = "invalid"
|
|
17
|
-
}
|
|
18
|
-
export declare enum AptlyPageSectionType {
|
|
19
|
-
Recommendation = "recommendation",
|
|
20
|
-
Image = "image",
|
|
21
|
-
Gallery = "gallery",
|
|
22
|
-
Text = "text",
|
|
23
|
-
Card = "card",
|
|
24
|
-
Links = "links",
|
|
25
|
-
Spacer = "spacer",
|
|
26
|
-
Iframe = "iframe"
|
|
27
|
-
}
|
|
28
|
-
export declare enum AptlyCloudinaryResourceType {
|
|
29
|
-
Video = "video",
|
|
30
|
-
Image = "image",
|
|
31
|
-
Raw = "raw",
|
|
32
|
-
Auto = "auto"
|
|
33
|
-
}
|
|
34
|
-
export declare enum AptlyUnitStatus {
|
|
35
|
-
NotStarted = "notStarted",
|
|
36
|
-
Started = "started",
|
|
37
|
-
AllPeriodsConfirmed = "allPeriodsConfirmed",
|
|
38
|
-
AllPeriodsSigned = "allPeriodsSigned",
|
|
39
|
-
Confirmed = "confirmed",
|
|
40
|
-
Completed = "completed"
|
|
41
|
-
}
|
|
42
|
-
export declare enum AptlyIntegration {
|
|
43
|
-
CheckD = "checkd",
|
|
44
|
-
Boligmappa = "boligmappa"
|
|
45
|
-
}
|
|
46
|
-
export declare enum AptlyIntegrationLevel {
|
|
47
|
-
Base = "base",
|
|
48
|
-
Organization = "organization",
|
|
49
|
-
Project = "project",
|
|
50
|
-
Unit = "unit"
|
|
51
|
-
}
|
|
52
|
-
export declare enum AptlyCategorySectionDisplayType {
|
|
53
|
-
Default = "default",
|
|
54
|
-
Compact = "compact",
|
|
55
|
-
Choice = "choice"
|
|
56
|
-
}
|
|
57
|
-
export declare enum AptlyInquiryType {
|
|
58
|
-
Basic = "basic",
|
|
59
|
-
Question = "question",
|
|
60
|
-
Complaint = "complaint",
|
|
61
|
-
System = "system"
|
|
62
|
-
}
|
|
63
|
-
export declare enum AptlyInquiryStatus {
|
|
64
|
-
Open = "open",
|
|
65
|
-
Pending = "pending",
|
|
66
|
-
Resolved = "resolved",
|
|
67
|
-
Closed = "closed"
|
|
68
|
-
}
|
|
69
|
-
export declare enum AptlyInquiryParticipantRole {
|
|
70
|
-
Inquirer = "inquirer",
|
|
71
|
-
FirstParty = "firstParty",
|
|
72
|
-
ThirdParty = "thirdParty",
|
|
73
|
-
SilentParty = "silentParty"
|
|
74
|
-
}
|
|
75
|
-
export declare enum AptlyUnitItemParamKey {
|
|
76
|
-
Comment = "comment",
|
|
77
|
-
NCS = "ncs",
|
|
78
|
-
Image = "Image",
|
|
79
|
-
Document = "document"
|
|
80
|
-
}
|
|
81
|
-
export declare enum AptlySignageSignerRef {
|
|
82
|
-
Organization = "organization",
|
|
83
|
-
Customer = "customer",
|
|
84
|
-
Admin = "admin"
|
|
85
|
-
}
|
|
86
|
-
export declare enum AptlyErrorCode {
|
|
87
|
-
Default = "default",
|
|
88
|
-
InvalidFields = "invalid-fields",
|
|
89
|
-
SessionExpired = "session-expired"
|
|
90
|
-
}
|
|
91
|
-
export declare enum AptlyQueueDownloadType {
|
|
92
|
-
Document = "document",
|
|
93
|
-
Image = "image"
|
|
94
|
-
}
|
|
95
|
-
export declare enum AptlyQueueDownloadStatus {
|
|
96
|
-
Queued = "queued",
|
|
97
|
-
Downloading = "downloading",
|
|
98
|
-
Downloaded = "downloaded",
|
|
99
|
-
Error = "error"
|
|
100
|
-
}
|
|
101
|
-
export declare enum AptlyIcon {
|
|
102
|
-
Welcome = "welcome",
|
|
103
|
-
Contact = "contact",
|
|
104
|
-
Help = "help",
|
|
105
|
-
Important = "important",
|
|
106
|
-
Info = "info",
|
|
107
|
-
Map = "map"
|
|
108
|
-
}
|
|
109
|
-
export declare enum AptlyProjectStatus {
|
|
110
|
-
Template = "template",
|
|
111
|
-
NotStarted = "notStarted",
|
|
112
|
-
Started = "started",
|
|
113
|
-
Completed = "completed"
|
|
114
|
-
}
|
|
115
|
-
export declare enum AptlyOrganizationType {
|
|
116
|
-
Carpenter = "carpenter",
|
|
117
|
-
Contractor = "contractor",
|
|
118
|
-
Electrician = "electrician",
|
|
119
|
-
Plumber = "plumber",
|
|
120
|
-
Producer = "producer"
|
|
121
|
-
}
|
|
122
|
-
export declare enum AptlyOrganizationStatus {
|
|
123
|
-
NewBusiness = 0,
|
|
124
|
-
Active = 1,
|
|
125
|
-
Inactive = 2,
|
|
126
|
-
Paused = 3,
|
|
127
|
-
Closed = 4
|
|
128
|
-
}
|
|
129
|
-
export declare enum AptlyEmailType {
|
|
130
|
-
ActionRecipients = "action_recipients",
|
|
131
|
-
BookingConfirm = "booking-confirm",
|
|
132
|
-
BookingCancel = "booking-cancel",
|
|
133
|
-
Inquiry = "inquiry",
|
|
134
|
-
Invite = "invite",
|
|
135
|
-
InviteAccepted = "invite-accepted",
|
|
136
|
-
NewOwner = "new-owner",
|
|
137
|
-
NoteReminder = "note-reminder",
|
|
138
|
-
OrderCreated = "order-created",
|
|
139
|
-
OrderSign = "order-sign",
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
1
|
+
export * from './document.js';
|
|
2
|
+
export * from './fields.js';
|
|
3
|
+
export * from './unit-template.js';
|
|
4
|
+
export * from './webhook.js';
|
|
5
|
+
export declare enum AptlyOrderStatus {
|
|
6
|
+
New = "new",
|
|
7
|
+
NotSigned = "notSigned",
|
|
8
|
+
ReadyToSign = "readyToSign",
|
|
9
|
+
SignedByCustomer = "signedByCustomer",
|
|
10
|
+
SignedByOrganization = "signedByOrganization",
|
|
11
|
+
Signed = "signed",
|
|
12
|
+
Payment = "payment",
|
|
13
|
+
FileReceived = "fileReceived",
|
|
14
|
+
Completed = "completed",
|
|
15
|
+
AllPeriodsSigned = "allPeriodsSigned",
|
|
16
|
+
Invalid = "invalid"
|
|
17
|
+
}
|
|
18
|
+
export declare enum AptlyPageSectionType {
|
|
19
|
+
Recommendation = "recommendation",
|
|
20
|
+
Image = "image",
|
|
21
|
+
Gallery = "gallery",
|
|
22
|
+
Text = "text",
|
|
23
|
+
Card = "card",
|
|
24
|
+
Links = "links",
|
|
25
|
+
Spacer = "spacer",
|
|
26
|
+
Iframe = "iframe"
|
|
27
|
+
}
|
|
28
|
+
export declare enum AptlyCloudinaryResourceType {
|
|
29
|
+
Video = "video",
|
|
30
|
+
Image = "image",
|
|
31
|
+
Raw = "raw",
|
|
32
|
+
Auto = "auto"
|
|
33
|
+
}
|
|
34
|
+
export declare enum AptlyUnitStatus {
|
|
35
|
+
NotStarted = "notStarted",
|
|
36
|
+
Started = "started",
|
|
37
|
+
AllPeriodsConfirmed = "allPeriodsConfirmed",
|
|
38
|
+
AllPeriodsSigned = "allPeriodsSigned",
|
|
39
|
+
Confirmed = "confirmed",
|
|
40
|
+
Completed = "completed"
|
|
41
|
+
}
|
|
42
|
+
export declare enum AptlyIntegration {
|
|
43
|
+
CheckD = "checkd",
|
|
44
|
+
Boligmappa = "boligmappa"
|
|
45
|
+
}
|
|
46
|
+
export declare enum AptlyIntegrationLevel {
|
|
47
|
+
Base = "base",
|
|
48
|
+
Organization = "organization",
|
|
49
|
+
Project = "project",
|
|
50
|
+
Unit = "unit"
|
|
51
|
+
}
|
|
52
|
+
export declare enum AptlyCategorySectionDisplayType {
|
|
53
|
+
Default = "default",
|
|
54
|
+
Compact = "compact",
|
|
55
|
+
Choice = "choice"
|
|
56
|
+
}
|
|
57
|
+
export declare enum AptlyInquiryType {
|
|
58
|
+
Basic = "basic",
|
|
59
|
+
Question = "question",
|
|
60
|
+
Complaint = "complaint",
|
|
61
|
+
System = "system"
|
|
62
|
+
}
|
|
63
|
+
export declare enum AptlyInquiryStatus {
|
|
64
|
+
Open = "open",
|
|
65
|
+
Pending = "pending",
|
|
66
|
+
Resolved = "resolved",
|
|
67
|
+
Closed = "closed"
|
|
68
|
+
}
|
|
69
|
+
export declare enum AptlyInquiryParticipantRole {
|
|
70
|
+
Inquirer = "inquirer",
|
|
71
|
+
FirstParty = "firstParty",
|
|
72
|
+
ThirdParty = "thirdParty",
|
|
73
|
+
SilentParty = "silentParty"
|
|
74
|
+
}
|
|
75
|
+
export declare enum AptlyUnitItemParamKey {
|
|
76
|
+
Comment = "comment",
|
|
77
|
+
NCS = "ncs",
|
|
78
|
+
Image = "Image",
|
|
79
|
+
Document = "document"
|
|
80
|
+
}
|
|
81
|
+
export declare enum AptlySignageSignerRef {
|
|
82
|
+
Organization = "organization",
|
|
83
|
+
Customer = "customer",
|
|
84
|
+
Admin = "admin"
|
|
85
|
+
}
|
|
86
|
+
export declare enum AptlyErrorCode {
|
|
87
|
+
Default = "default",
|
|
88
|
+
InvalidFields = "invalid-fields",
|
|
89
|
+
SessionExpired = "session-expired"
|
|
90
|
+
}
|
|
91
|
+
export declare enum AptlyQueueDownloadType {
|
|
92
|
+
Document = "document",
|
|
93
|
+
Image = "image"
|
|
94
|
+
}
|
|
95
|
+
export declare enum AptlyQueueDownloadStatus {
|
|
96
|
+
Queued = "queued",
|
|
97
|
+
Downloading = "downloading",
|
|
98
|
+
Downloaded = "downloaded",
|
|
99
|
+
Error = "error"
|
|
100
|
+
}
|
|
101
|
+
export declare enum AptlyIcon {
|
|
102
|
+
Welcome = "welcome",
|
|
103
|
+
Contact = "contact",
|
|
104
|
+
Help = "help",
|
|
105
|
+
Important = "important",
|
|
106
|
+
Info = "info",
|
|
107
|
+
Map = "map"
|
|
108
|
+
}
|
|
109
|
+
export declare enum AptlyProjectStatus {
|
|
110
|
+
Template = "template",
|
|
111
|
+
NotStarted = "notStarted",
|
|
112
|
+
Started = "started",
|
|
113
|
+
Completed = "completed"
|
|
114
|
+
}
|
|
115
|
+
export declare enum AptlyOrganizationType {
|
|
116
|
+
Carpenter = "carpenter",
|
|
117
|
+
Contractor = "contractor",
|
|
118
|
+
Electrician = "electrician",
|
|
119
|
+
Plumber = "plumber",
|
|
120
|
+
Producer = "producer"
|
|
121
|
+
}
|
|
122
|
+
export declare enum AptlyOrganizationStatus {
|
|
123
|
+
NewBusiness = 0,
|
|
124
|
+
Active = 1,
|
|
125
|
+
Inactive = 2,
|
|
126
|
+
Paused = 3,
|
|
127
|
+
Closed = 4
|
|
128
|
+
}
|
|
129
|
+
export declare enum AptlyEmailType {
|
|
130
|
+
ActionRecipients = "action_recipients",
|
|
131
|
+
BookingConfirm = "booking-confirm",
|
|
132
|
+
BookingCancel = "booking-cancel",
|
|
133
|
+
Inquiry = "inquiry",
|
|
134
|
+
Invite = "invite",
|
|
135
|
+
InviteAccepted = "invite-accepted",
|
|
136
|
+
NewOwner = "new-owner",
|
|
137
|
+
NoteReminder = "note-reminder",
|
|
138
|
+
OrderCreated = "order-created",
|
|
139
|
+
OrderSign = "order-sign",
|
|
140
|
+
OrderSignNotify = "order-sign-notify",
|
|
141
|
+
OrderSignExpired = "order-sign-expired",
|
|
142
|
+
OrderSigned = "order-signed",
|
|
143
|
+
OrderSignedManually = "order-signed-manually",
|
|
144
|
+
OrderPay = "order-pay",
|
|
145
|
+
OrderPayFailed = "order-pay-failed",
|
|
146
|
+
OrderPayed = "order-payed",
|
|
147
|
+
OrderReceipt = "order-receipt",
|
|
148
|
+
OrderCompleted = "order-completed",
|
|
149
|
+
PeriodOpen = "period-open",
|
|
150
|
+
PeriodClose = "period-close"
|
|
151
|
+
}
|
package/enums/index.js
CHANGED
|
@@ -1,170 +1,171 @@
|
|
|
1
|
-
export * from './document.js';
|
|
2
|
-
export * from './fields.js';
|
|
3
|
-
export * from './unit-template.js';
|
|
4
|
-
export * from './webhook.js';
|
|
5
|
-
export var AptlyOrderStatus;
|
|
6
|
-
(function (AptlyOrderStatus) {
|
|
7
|
-
AptlyOrderStatus["New"] = "new";
|
|
8
|
-
AptlyOrderStatus["NotSigned"] = "notSigned";
|
|
9
|
-
AptlyOrderStatus["ReadyToSign"] = "readyToSign";
|
|
10
|
-
AptlyOrderStatus["SignedByCustomer"] = "signedByCustomer";
|
|
11
|
-
AptlyOrderStatus["SignedByOrganization"] = "signedByOrganization";
|
|
12
|
-
AptlyOrderStatus["Signed"] = "signed";
|
|
13
|
-
AptlyOrderStatus["Payment"] = "payment";
|
|
14
|
-
AptlyOrderStatus["FileReceived"] = "fileReceived";
|
|
15
|
-
AptlyOrderStatus["Completed"] = "completed";
|
|
16
|
-
AptlyOrderStatus["AllPeriodsSigned"] = "allPeriodsSigned";
|
|
17
|
-
AptlyOrderStatus["Invalid"] = "invalid";
|
|
18
|
-
})(AptlyOrderStatus || (AptlyOrderStatus = {}));
|
|
19
|
-
export var AptlyPageSectionType;
|
|
20
|
-
(function (AptlyPageSectionType) {
|
|
21
|
-
AptlyPageSectionType["Recommendation"] = "recommendation";
|
|
22
|
-
AptlyPageSectionType["Image"] = "image";
|
|
23
|
-
AptlyPageSectionType["Gallery"] = "gallery";
|
|
24
|
-
AptlyPageSectionType["Text"] = "text";
|
|
25
|
-
AptlyPageSectionType["Card"] = "card";
|
|
26
|
-
AptlyPageSectionType["Links"] = "links";
|
|
27
|
-
AptlyPageSectionType["Spacer"] = "spacer";
|
|
28
|
-
AptlyPageSectionType["Iframe"] = "iframe";
|
|
29
|
-
})(AptlyPageSectionType || (AptlyPageSectionType = {}));
|
|
30
|
-
export var AptlyCloudinaryResourceType;
|
|
31
|
-
(function (AptlyCloudinaryResourceType) {
|
|
32
|
-
AptlyCloudinaryResourceType["Video"] = "video";
|
|
33
|
-
AptlyCloudinaryResourceType["Image"] = "image";
|
|
34
|
-
AptlyCloudinaryResourceType["Raw"] = "raw";
|
|
35
|
-
AptlyCloudinaryResourceType["Auto"] = "auto";
|
|
36
|
-
})(AptlyCloudinaryResourceType || (AptlyCloudinaryResourceType = {}));
|
|
37
|
-
export var AptlyUnitStatus;
|
|
38
|
-
(function (AptlyUnitStatus) {
|
|
39
|
-
AptlyUnitStatus["NotStarted"] = "notStarted";
|
|
40
|
-
AptlyUnitStatus["Started"] = "started";
|
|
41
|
-
AptlyUnitStatus["AllPeriodsConfirmed"] = "allPeriodsConfirmed";
|
|
42
|
-
AptlyUnitStatus["AllPeriodsSigned"] = "allPeriodsSigned";
|
|
43
|
-
AptlyUnitStatus["Confirmed"] = "confirmed";
|
|
44
|
-
AptlyUnitStatus["Completed"] = "completed";
|
|
45
|
-
})(AptlyUnitStatus || (AptlyUnitStatus = {}));
|
|
46
|
-
export var AptlyIntegration;
|
|
47
|
-
(function (AptlyIntegration) {
|
|
48
|
-
AptlyIntegration["CheckD"] = "checkd";
|
|
49
|
-
AptlyIntegration["Boligmappa"] = "boligmappa";
|
|
50
|
-
})(AptlyIntegration || (AptlyIntegration = {}));
|
|
51
|
-
export var AptlyIntegrationLevel;
|
|
52
|
-
(function (AptlyIntegrationLevel) {
|
|
53
|
-
AptlyIntegrationLevel["Base"] = "base";
|
|
54
|
-
AptlyIntegrationLevel["Organization"] = "organization";
|
|
55
|
-
AptlyIntegrationLevel["Project"] = "project";
|
|
56
|
-
AptlyIntegrationLevel["Unit"] = "unit";
|
|
57
|
-
})(AptlyIntegrationLevel || (AptlyIntegrationLevel = {}));
|
|
58
|
-
export var AptlyCategorySectionDisplayType;
|
|
59
|
-
(function (AptlyCategorySectionDisplayType) {
|
|
60
|
-
AptlyCategorySectionDisplayType["Default"] = "default";
|
|
61
|
-
AptlyCategorySectionDisplayType["Compact"] = "compact";
|
|
62
|
-
AptlyCategorySectionDisplayType["Choice"] = "choice";
|
|
63
|
-
})(AptlyCategorySectionDisplayType || (AptlyCategorySectionDisplayType = {}));
|
|
64
|
-
export var AptlyInquiryType;
|
|
65
|
-
(function (AptlyInquiryType) {
|
|
66
|
-
AptlyInquiryType["Basic"] = "basic";
|
|
67
|
-
AptlyInquiryType["Question"] = "question";
|
|
68
|
-
AptlyInquiryType["Complaint"] = "complaint";
|
|
69
|
-
AptlyInquiryType["System"] = "system";
|
|
70
|
-
})(AptlyInquiryType || (AptlyInquiryType = {}));
|
|
71
|
-
export var AptlyInquiryStatus;
|
|
72
|
-
(function (AptlyInquiryStatus) {
|
|
73
|
-
AptlyInquiryStatus["Open"] = "open";
|
|
74
|
-
AptlyInquiryStatus["Pending"] = "pending";
|
|
75
|
-
AptlyInquiryStatus["Resolved"] = "resolved";
|
|
76
|
-
AptlyInquiryStatus["Closed"] = "closed";
|
|
77
|
-
})(AptlyInquiryStatus || (AptlyInquiryStatus = {}));
|
|
78
|
-
export var AptlyInquiryParticipantRole;
|
|
79
|
-
(function (AptlyInquiryParticipantRole) {
|
|
80
|
-
AptlyInquiryParticipantRole["Inquirer"] = "inquirer";
|
|
81
|
-
AptlyInquiryParticipantRole["FirstParty"] = "firstParty";
|
|
82
|
-
AptlyInquiryParticipantRole["ThirdParty"] = "thirdParty";
|
|
83
|
-
AptlyInquiryParticipantRole["SilentParty"] = "silentParty";
|
|
84
|
-
})(AptlyInquiryParticipantRole || (AptlyInquiryParticipantRole = {}));
|
|
85
|
-
export var AptlyUnitItemParamKey;
|
|
86
|
-
(function (AptlyUnitItemParamKey) {
|
|
87
|
-
AptlyUnitItemParamKey["Comment"] = "comment";
|
|
88
|
-
AptlyUnitItemParamKey["NCS"] = "ncs";
|
|
89
|
-
AptlyUnitItemParamKey["Image"] = "Image";
|
|
90
|
-
AptlyUnitItemParamKey["Document"] = "document";
|
|
91
|
-
})(AptlyUnitItemParamKey || (AptlyUnitItemParamKey = {}));
|
|
92
|
-
export var AptlySignageSignerRef;
|
|
93
|
-
(function (AptlySignageSignerRef) {
|
|
94
|
-
AptlySignageSignerRef["Organization"] = "organization";
|
|
95
|
-
AptlySignageSignerRef["Customer"] = "customer";
|
|
96
|
-
AptlySignageSignerRef["Admin"] = "admin";
|
|
97
|
-
})(AptlySignageSignerRef || (AptlySignageSignerRef = {}));
|
|
98
|
-
export var AptlyErrorCode;
|
|
99
|
-
(function (AptlyErrorCode) {
|
|
100
|
-
AptlyErrorCode["Default"] = "default";
|
|
101
|
-
AptlyErrorCode["InvalidFields"] = "invalid-fields";
|
|
102
|
-
AptlyErrorCode["SessionExpired"] = "session-expired";
|
|
103
|
-
})(AptlyErrorCode || (AptlyErrorCode = {}));
|
|
104
|
-
export var AptlyQueueDownloadType;
|
|
105
|
-
(function (AptlyQueueDownloadType) {
|
|
106
|
-
AptlyQueueDownloadType["Document"] = "document";
|
|
107
|
-
AptlyQueueDownloadType["Image"] = "image";
|
|
108
|
-
})(AptlyQueueDownloadType || (AptlyQueueDownloadType = {}));
|
|
109
|
-
export var AptlyQueueDownloadStatus;
|
|
110
|
-
(function (AptlyQueueDownloadStatus) {
|
|
111
|
-
AptlyQueueDownloadStatus["Queued"] = "queued";
|
|
112
|
-
AptlyQueueDownloadStatus["Downloading"] = "downloading";
|
|
113
|
-
AptlyQueueDownloadStatus["Downloaded"] = "downloaded";
|
|
114
|
-
AptlyQueueDownloadStatus["Error"] = "error";
|
|
115
|
-
})(AptlyQueueDownloadStatus || (AptlyQueueDownloadStatus = {}));
|
|
116
|
-
export var AptlyIcon;
|
|
117
|
-
(function (AptlyIcon) {
|
|
118
|
-
AptlyIcon["Welcome"] = "welcome";
|
|
119
|
-
AptlyIcon["Contact"] = "contact";
|
|
120
|
-
AptlyIcon["Help"] = "help";
|
|
121
|
-
AptlyIcon["Important"] = "important";
|
|
122
|
-
AptlyIcon["Info"] = "info";
|
|
123
|
-
AptlyIcon["Map"] = "map";
|
|
124
|
-
})(AptlyIcon || (AptlyIcon = {}));
|
|
125
|
-
export var AptlyProjectStatus;
|
|
126
|
-
(function (AptlyProjectStatus) {
|
|
127
|
-
AptlyProjectStatus["Template"] = "template";
|
|
128
|
-
AptlyProjectStatus["NotStarted"] = "notStarted";
|
|
129
|
-
AptlyProjectStatus["Started"] = "started";
|
|
130
|
-
AptlyProjectStatus["Completed"] = "completed";
|
|
131
|
-
})(AptlyProjectStatus || (AptlyProjectStatus = {}));
|
|
132
|
-
export var AptlyOrganizationType;
|
|
133
|
-
(function (AptlyOrganizationType) {
|
|
134
|
-
AptlyOrganizationType["Carpenter"] = "carpenter";
|
|
135
|
-
AptlyOrganizationType["Contractor"] = "contractor";
|
|
136
|
-
AptlyOrganizationType["Electrician"] = "electrician";
|
|
137
|
-
AptlyOrganizationType["Plumber"] = "plumber";
|
|
138
|
-
AptlyOrganizationType["Producer"] = "producer";
|
|
139
|
-
})(AptlyOrganizationType || (AptlyOrganizationType = {}));
|
|
140
|
-
export var AptlyOrganizationStatus;
|
|
141
|
-
(function (AptlyOrganizationStatus) {
|
|
142
|
-
AptlyOrganizationStatus[AptlyOrganizationStatus["NewBusiness"] = 0] = "NewBusiness";
|
|
143
|
-
AptlyOrganizationStatus[AptlyOrganizationStatus["Active"] = 1] = "Active";
|
|
144
|
-
AptlyOrganizationStatus[AptlyOrganizationStatus["Inactive"] = 2] = "Inactive";
|
|
145
|
-
AptlyOrganizationStatus[AptlyOrganizationStatus["Paused"] = 3] = "Paused";
|
|
146
|
-
AptlyOrganizationStatus[AptlyOrganizationStatus["Closed"] = 4] = "Closed";
|
|
147
|
-
})(AptlyOrganizationStatus || (AptlyOrganizationStatus = {}));
|
|
148
|
-
export var AptlyEmailType;
|
|
149
|
-
(function (AptlyEmailType) {
|
|
150
|
-
AptlyEmailType["ActionRecipients"] = "action_recipients";
|
|
151
|
-
AptlyEmailType["BookingConfirm"] = "booking-confirm";
|
|
152
|
-
AptlyEmailType["BookingCancel"] = "booking-cancel";
|
|
153
|
-
AptlyEmailType["Inquiry"] = "inquiry";
|
|
154
|
-
AptlyEmailType["Invite"] = "invite";
|
|
155
|
-
AptlyEmailType["InviteAccepted"] = "invite-accepted";
|
|
156
|
-
AptlyEmailType["NewOwner"] = "new-owner";
|
|
157
|
-
AptlyEmailType["NoteReminder"] = "note-reminder";
|
|
158
|
-
AptlyEmailType["OrderCreated"] = "order-created";
|
|
159
|
-
AptlyEmailType["OrderSign"] = "order-sign";
|
|
160
|
-
AptlyEmailType["
|
|
161
|
-
AptlyEmailType["
|
|
162
|
-
AptlyEmailType["
|
|
163
|
-
AptlyEmailType["
|
|
164
|
-
AptlyEmailType["
|
|
165
|
-
AptlyEmailType["
|
|
166
|
-
AptlyEmailType["
|
|
167
|
-
AptlyEmailType["
|
|
168
|
-
AptlyEmailType["
|
|
169
|
-
AptlyEmailType["
|
|
170
|
-
|
|
1
|
+
export * from './document.js';
|
|
2
|
+
export * from './fields.js';
|
|
3
|
+
export * from './unit-template.js';
|
|
4
|
+
export * from './webhook.js';
|
|
5
|
+
export var AptlyOrderStatus;
|
|
6
|
+
(function (AptlyOrderStatus) {
|
|
7
|
+
AptlyOrderStatus["New"] = "new";
|
|
8
|
+
AptlyOrderStatus["NotSigned"] = "notSigned";
|
|
9
|
+
AptlyOrderStatus["ReadyToSign"] = "readyToSign";
|
|
10
|
+
AptlyOrderStatus["SignedByCustomer"] = "signedByCustomer";
|
|
11
|
+
AptlyOrderStatus["SignedByOrganization"] = "signedByOrganization";
|
|
12
|
+
AptlyOrderStatus["Signed"] = "signed";
|
|
13
|
+
AptlyOrderStatus["Payment"] = "payment";
|
|
14
|
+
AptlyOrderStatus["FileReceived"] = "fileReceived";
|
|
15
|
+
AptlyOrderStatus["Completed"] = "completed";
|
|
16
|
+
AptlyOrderStatus["AllPeriodsSigned"] = "allPeriodsSigned";
|
|
17
|
+
AptlyOrderStatus["Invalid"] = "invalid";
|
|
18
|
+
})(AptlyOrderStatus || (AptlyOrderStatus = {}));
|
|
19
|
+
export var AptlyPageSectionType;
|
|
20
|
+
(function (AptlyPageSectionType) {
|
|
21
|
+
AptlyPageSectionType["Recommendation"] = "recommendation";
|
|
22
|
+
AptlyPageSectionType["Image"] = "image";
|
|
23
|
+
AptlyPageSectionType["Gallery"] = "gallery";
|
|
24
|
+
AptlyPageSectionType["Text"] = "text";
|
|
25
|
+
AptlyPageSectionType["Card"] = "card";
|
|
26
|
+
AptlyPageSectionType["Links"] = "links";
|
|
27
|
+
AptlyPageSectionType["Spacer"] = "spacer";
|
|
28
|
+
AptlyPageSectionType["Iframe"] = "iframe";
|
|
29
|
+
})(AptlyPageSectionType || (AptlyPageSectionType = {}));
|
|
30
|
+
export var AptlyCloudinaryResourceType;
|
|
31
|
+
(function (AptlyCloudinaryResourceType) {
|
|
32
|
+
AptlyCloudinaryResourceType["Video"] = "video";
|
|
33
|
+
AptlyCloudinaryResourceType["Image"] = "image";
|
|
34
|
+
AptlyCloudinaryResourceType["Raw"] = "raw";
|
|
35
|
+
AptlyCloudinaryResourceType["Auto"] = "auto";
|
|
36
|
+
})(AptlyCloudinaryResourceType || (AptlyCloudinaryResourceType = {}));
|
|
37
|
+
export var AptlyUnitStatus;
|
|
38
|
+
(function (AptlyUnitStatus) {
|
|
39
|
+
AptlyUnitStatus["NotStarted"] = "notStarted";
|
|
40
|
+
AptlyUnitStatus["Started"] = "started";
|
|
41
|
+
AptlyUnitStatus["AllPeriodsConfirmed"] = "allPeriodsConfirmed";
|
|
42
|
+
AptlyUnitStatus["AllPeriodsSigned"] = "allPeriodsSigned";
|
|
43
|
+
AptlyUnitStatus["Confirmed"] = "confirmed";
|
|
44
|
+
AptlyUnitStatus["Completed"] = "completed";
|
|
45
|
+
})(AptlyUnitStatus || (AptlyUnitStatus = {}));
|
|
46
|
+
export var AptlyIntegration;
|
|
47
|
+
(function (AptlyIntegration) {
|
|
48
|
+
AptlyIntegration["CheckD"] = "checkd";
|
|
49
|
+
AptlyIntegration["Boligmappa"] = "boligmappa";
|
|
50
|
+
})(AptlyIntegration || (AptlyIntegration = {}));
|
|
51
|
+
export var AptlyIntegrationLevel;
|
|
52
|
+
(function (AptlyIntegrationLevel) {
|
|
53
|
+
AptlyIntegrationLevel["Base"] = "base";
|
|
54
|
+
AptlyIntegrationLevel["Organization"] = "organization";
|
|
55
|
+
AptlyIntegrationLevel["Project"] = "project";
|
|
56
|
+
AptlyIntegrationLevel["Unit"] = "unit";
|
|
57
|
+
})(AptlyIntegrationLevel || (AptlyIntegrationLevel = {}));
|
|
58
|
+
export var AptlyCategorySectionDisplayType;
|
|
59
|
+
(function (AptlyCategorySectionDisplayType) {
|
|
60
|
+
AptlyCategorySectionDisplayType["Default"] = "default";
|
|
61
|
+
AptlyCategorySectionDisplayType["Compact"] = "compact";
|
|
62
|
+
AptlyCategorySectionDisplayType["Choice"] = "choice";
|
|
63
|
+
})(AptlyCategorySectionDisplayType || (AptlyCategorySectionDisplayType = {}));
|
|
64
|
+
export var AptlyInquiryType;
|
|
65
|
+
(function (AptlyInquiryType) {
|
|
66
|
+
AptlyInquiryType["Basic"] = "basic";
|
|
67
|
+
AptlyInquiryType["Question"] = "question";
|
|
68
|
+
AptlyInquiryType["Complaint"] = "complaint";
|
|
69
|
+
AptlyInquiryType["System"] = "system";
|
|
70
|
+
})(AptlyInquiryType || (AptlyInquiryType = {}));
|
|
71
|
+
export var AptlyInquiryStatus;
|
|
72
|
+
(function (AptlyInquiryStatus) {
|
|
73
|
+
AptlyInquiryStatus["Open"] = "open";
|
|
74
|
+
AptlyInquiryStatus["Pending"] = "pending";
|
|
75
|
+
AptlyInquiryStatus["Resolved"] = "resolved";
|
|
76
|
+
AptlyInquiryStatus["Closed"] = "closed";
|
|
77
|
+
})(AptlyInquiryStatus || (AptlyInquiryStatus = {}));
|
|
78
|
+
export var AptlyInquiryParticipantRole;
|
|
79
|
+
(function (AptlyInquiryParticipantRole) {
|
|
80
|
+
AptlyInquiryParticipantRole["Inquirer"] = "inquirer";
|
|
81
|
+
AptlyInquiryParticipantRole["FirstParty"] = "firstParty";
|
|
82
|
+
AptlyInquiryParticipantRole["ThirdParty"] = "thirdParty";
|
|
83
|
+
AptlyInquiryParticipantRole["SilentParty"] = "silentParty";
|
|
84
|
+
})(AptlyInquiryParticipantRole || (AptlyInquiryParticipantRole = {}));
|
|
85
|
+
export var AptlyUnitItemParamKey;
|
|
86
|
+
(function (AptlyUnitItemParamKey) {
|
|
87
|
+
AptlyUnitItemParamKey["Comment"] = "comment";
|
|
88
|
+
AptlyUnitItemParamKey["NCS"] = "ncs";
|
|
89
|
+
AptlyUnitItemParamKey["Image"] = "Image";
|
|
90
|
+
AptlyUnitItemParamKey["Document"] = "document";
|
|
91
|
+
})(AptlyUnitItemParamKey || (AptlyUnitItemParamKey = {}));
|
|
92
|
+
export var AptlySignageSignerRef;
|
|
93
|
+
(function (AptlySignageSignerRef) {
|
|
94
|
+
AptlySignageSignerRef["Organization"] = "organization";
|
|
95
|
+
AptlySignageSignerRef["Customer"] = "customer";
|
|
96
|
+
AptlySignageSignerRef["Admin"] = "admin";
|
|
97
|
+
})(AptlySignageSignerRef || (AptlySignageSignerRef = {}));
|
|
98
|
+
export var AptlyErrorCode;
|
|
99
|
+
(function (AptlyErrorCode) {
|
|
100
|
+
AptlyErrorCode["Default"] = "default";
|
|
101
|
+
AptlyErrorCode["InvalidFields"] = "invalid-fields";
|
|
102
|
+
AptlyErrorCode["SessionExpired"] = "session-expired";
|
|
103
|
+
})(AptlyErrorCode || (AptlyErrorCode = {}));
|
|
104
|
+
export var AptlyQueueDownloadType;
|
|
105
|
+
(function (AptlyQueueDownloadType) {
|
|
106
|
+
AptlyQueueDownloadType["Document"] = "document";
|
|
107
|
+
AptlyQueueDownloadType["Image"] = "image";
|
|
108
|
+
})(AptlyQueueDownloadType || (AptlyQueueDownloadType = {}));
|
|
109
|
+
export var AptlyQueueDownloadStatus;
|
|
110
|
+
(function (AptlyQueueDownloadStatus) {
|
|
111
|
+
AptlyQueueDownloadStatus["Queued"] = "queued";
|
|
112
|
+
AptlyQueueDownloadStatus["Downloading"] = "downloading";
|
|
113
|
+
AptlyQueueDownloadStatus["Downloaded"] = "downloaded";
|
|
114
|
+
AptlyQueueDownloadStatus["Error"] = "error";
|
|
115
|
+
})(AptlyQueueDownloadStatus || (AptlyQueueDownloadStatus = {}));
|
|
116
|
+
export var AptlyIcon;
|
|
117
|
+
(function (AptlyIcon) {
|
|
118
|
+
AptlyIcon["Welcome"] = "welcome";
|
|
119
|
+
AptlyIcon["Contact"] = "contact";
|
|
120
|
+
AptlyIcon["Help"] = "help";
|
|
121
|
+
AptlyIcon["Important"] = "important";
|
|
122
|
+
AptlyIcon["Info"] = "info";
|
|
123
|
+
AptlyIcon["Map"] = "map";
|
|
124
|
+
})(AptlyIcon || (AptlyIcon = {}));
|
|
125
|
+
export var AptlyProjectStatus;
|
|
126
|
+
(function (AptlyProjectStatus) {
|
|
127
|
+
AptlyProjectStatus["Template"] = "template";
|
|
128
|
+
AptlyProjectStatus["NotStarted"] = "notStarted";
|
|
129
|
+
AptlyProjectStatus["Started"] = "started";
|
|
130
|
+
AptlyProjectStatus["Completed"] = "completed";
|
|
131
|
+
})(AptlyProjectStatus || (AptlyProjectStatus = {}));
|
|
132
|
+
export var AptlyOrganizationType;
|
|
133
|
+
(function (AptlyOrganizationType) {
|
|
134
|
+
AptlyOrganizationType["Carpenter"] = "carpenter";
|
|
135
|
+
AptlyOrganizationType["Contractor"] = "contractor";
|
|
136
|
+
AptlyOrganizationType["Electrician"] = "electrician";
|
|
137
|
+
AptlyOrganizationType["Plumber"] = "plumber";
|
|
138
|
+
AptlyOrganizationType["Producer"] = "producer";
|
|
139
|
+
})(AptlyOrganizationType || (AptlyOrganizationType = {}));
|
|
140
|
+
export var AptlyOrganizationStatus;
|
|
141
|
+
(function (AptlyOrganizationStatus) {
|
|
142
|
+
AptlyOrganizationStatus[AptlyOrganizationStatus["NewBusiness"] = 0] = "NewBusiness";
|
|
143
|
+
AptlyOrganizationStatus[AptlyOrganizationStatus["Active"] = 1] = "Active";
|
|
144
|
+
AptlyOrganizationStatus[AptlyOrganizationStatus["Inactive"] = 2] = "Inactive";
|
|
145
|
+
AptlyOrganizationStatus[AptlyOrganizationStatus["Paused"] = 3] = "Paused";
|
|
146
|
+
AptlyOrganizationStatus[AptlyOrganizationStatus["Closed"] = 4] = "Closed";
|
|
147
|
+
})(AptlyOrganizationStatus || (AptlyOrganizationStatus = {}));
|
|
148
|
+
export var AptlyEmailType;
|
|
149
|
+
(function (AptlyEmailType) {
|
|
150
|
+
AptlyEmailType["ActionRecipients"] = "action_recipients";
|
|
151
|
+
AptlyEmailType["BookingConfirm"] = "booking-confirm";
|
|
152
|
+
AptlyEmailType["BookingCancel"] = "booking-cancel";
|
|
153
|
+
AptlyEmailType["Inquiry"] = "inquiry";
|
|
154
|
+
AptlyEmailType["Invite"] = "invite";
|
|
155
|
+
AptlyEmailType["InviteAccepted"] = "invite-accepted";
|
|
156
|
+
AptlyEmailType["NewOwner"] = "new-owner";
|
|
157
|
+
AptlyEmailType["NoteReminder"] = "note-reminder";
|
|
158
|
+
AptlyEmailType["OrderCreated"] = "order-created";
|
|
159
|
+
AptlyEmailType["OrderSign"] = "order-sign";
|
|
160
|
+
AptlyEmailType["OrderSignNotify"] = "order-sign-notify";
|
|
161
|
+
AptlyEmailType["OrderSignExpired"] = "order-sign-expired";
|
|
162
|
+
AptlyEmailType["OrderSigned"] = "order-signed";
|
|
163
|
+
AptlyEmailType["OrderSignedManually"] = "order-signed-manually";
|
|
164
|
+
AptlyEmailType["OrderPay"] = "order-pay";
|
|
165
|
+
AptlyEmailType["OrderPayFailed"] = "order-pay-failed";
|
|
166
|
+
AptlyEmailType["OrderPayed"] = "order-payed";
|
|
167
|
+
AptlyEmailType["OrderReceipt"] = "order-receipt";
|
|
168
|
+
AptlyEmailType["OrderCompleted"] = "order-completed";
|
|
169
|
+
AptlyEmailType["PeriodOpen"] = "period-open";
|
|
170
|
+
AptlyEmailType["PeriodClose"] = "period-close";
|
|
171
|
+
})(AptlyEmailType || (AptlyEmailType = {}));
|