cecon-interfaces 1.6.39 → 1.6.41
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/payio/schedules/entities/schedule-slot.entity.mjs +2 -2
- package/dist/esm2022/payio/schedules/entities/schedule.entity.mjs +2 -2
- package/dist/esm2022/payio/schedules/interfaces/i-schedule-slot.mjs +1 -1
- package/dist/esm2022/payio/schedules/interfaces/i-schedule.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +2 -2
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/payio/schedules/entities/schedule-slot.entity.d.ts +1 -1
- package/dist/payio/schedules/entities/schedule-slot.entity.js +1 -1
- package/dist/payio/schedules/entities/schedule.entity.d.ts +1 -1
- package/dist/payio/schedules/entities/schedule.entity.js +1 -1
- package/dist/payio/schedules/interfaces/i-schedule-slot.d.ts +1 -1
- package/dist/payio/schedules/interfaces/i-schedule.d.ts +2 -2
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -4,7 +4,7 @@ export declare class PayioScheduleEntity implements IPayioSchedule {
|
|
4
4
|
active: boolean;
|
5
5
|
createdAt: Date;
|
6
6
|
id: string;
|
7
|
-
|
7
|
+
slots: PayioScheduleSlotEntity[];
|
8
8
|
updatedAt: Date;
|
9
9
|
constructor(data?: Partial<PayioScheduleEntity>);
|
10
10
|
}
|
@@ -1,8 +1,8 @@
|
|
1
|
-
import { IPayioScheduleSlot } from
|
1
|
+
import { IPayioScheduleSlot } from './i-schedule-slot';
|
2
2
|
export interface IPayioSchedule {
|
3
3
|
active: boolean;
|
4
4
|
createdAt: Date;
|
5
|
-
|
5
|
+
slots: IPayioScheduleSlot[];
|
6
6
|
id: string;
|
7
7
|
updatedAt: Date;
|
8
8
|
}
|