@aptly-as/types 2.5.15 → 2.6.1
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/unit.d.ts +6 -0
- package/package.json +1 -1
package/models/unit.d.ts
CHANGED
|
@@ -38,6 +38,7 @@ export interface AptlyUnitSchema<ID, DATE> extends AptlyUnitTemplateBaseSchema<I
|
|
|
38
38
|
confirmedPeriods: AptlyUnitConfirmedPeriodSchema<ID, DATE>[];
|
|
39
39
|
queueInvites: string[];
|
|
40
40
|
invites: AptlyUnitInviteSchema<ID, DATE>[];
|
|
41
|
+
invitesQueue: AptlyUnitInviteQueueSchema[];
|
|
41
42
|
overridePeriod?: ID;
|
|
42
43
|
overridePeriods?: AptlyUnitOverridePeriodSchema<ID, DATE>[];
|
|
43
44
|
integrations: AptlyUnitIntegrationSchema<ID>[];
|
|
@@ -223,6 +224,11 @@ interface AptlyUnitEditData<DATE> {
|
|
|
223
224
|
balconyKeys?: number;
|
|
224
225
|
handoverDate?: DATE | null;
|
|
225
226
|
}
|
|
227
|
+
export interface AptlyUnitInviteQueueSchema {
|
|
228
|
+
email: string;
|
|
229
|
+
fullName?: string;
|
|
230
|
+
phone?: string;
|
|
231
|
+
}
|
|
226
232
|
export interface AptlyUnitInviteSchema<ID, DATE> {
|
|
227
233
|
_id: ID;
|
|
228
234
|
code: string;
|