Skip to content

Commit f5a2690

Browse files
committed
Model building corrected
1 parent f73be91 commit f5a2690

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
export {EmailCloud} from "./src/api/email-cloud";
2-
export * from "./src/model";
2+
export * from "./src/model";
3+
export {Models} from "./src/model/models";

src/model/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { Models } from "./models";
21
import { AiBcrImage } from "./ai-bcr-image";
32
import { AiBcrOptions } from "./ai-bcr-options";
43
import { AiBcrParseStorageRequest } from "./ai-bcr-parse-storage-request";
@@ -249,7 +248,6 @@ import { StorageExistsRequest } from "./storage-exists-request"
249248

250249

251250
export {
252-
Models,
253251
AiBcrImage,
254252
AiBcrOptions,
255253
AiBcrParseStorageRequest,

test/mapi-calendar-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ describe('MAPI calendar tests', function () {
7575
.endDate(new Date())
7676
.location('Some location')
7777
.recurrence(Models.mapiCalendarEventRecurrenceDto()
78-
.recurrencePattern(Models.mapiCalendarRecurrencePatternDto()
78+
.recurrencePattern(Models.mapiCalendarDailyRecurrencePatternDto()
7979
.frequency('Daily')
8080
.occurrenceCount(10)
8181
.weekStartDay('Monday')

0 commit comments

Comments
 (0)