rotacloud 1.0.12 → 1.0.13
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/dist/cjs/interfaces/availability.interface.d.ts +2 -2
- package/dist/cjs/interfaces/query-params/availability-query-params.interface.d.ts +7 -0
- package/dist/cjs/models/availability.model.d.ts +2 -2
- package/dist/cjs/rotacloud.d.ts +2 -1
- package/dist/cjs/rotacloud.js +1 -0
- package/dist/cjs/services/availability.service.d.ts +13 -0
- package/dist/cjs/services/availability.service.js +55 -0
- package/dist/cjs/services/index.d.ts +1 -0
- package/dist/cjs/services/index.js +1 -0
- package/dist/cjs/version.js +1 -1
- package/dist/mjs/interfaces/availability.interface.d.ts +2 -2
- package/dist/mjs/interfaces/query-params/availability-query-params.interface.d.ts +7 -0
- package/dist/mjs/models/availability.model.d.ts +2 -2
- package/dist/mjs/rotacloud.d.ts +2 -1
- package/dist/mjs/rotacloud.js +2 -1
- package/dist/mjs/services/availability.service.d.ts +13 -0
- package/dist/mjs/services/availability.service.js +16 -0
- package/dist/mjs/services/index.d.ts +1 -0
- package/dist/mjs/services/index.js +1 -0
- package/dist/mjs/version.js +1 -1
- package/fixup +1 -0
- package/package.json +1 -1
- package/src/interfaces/availability.interface.ts +2 -2
- package/src/interfaces/query-params/availability-query-params.interface.ts +7 -0
- package/src/models/availability.model.ts +2 -2
- package/src/rotacloud.ts +2 -0
- package/src/services/availability.service.ts +23 -0
- package/src/services/index.ts +1 -0
- package/src/version.ts +1 -1
|
@@ -2,12 +2,12 @@ export interface ApiAvailabilityPeriod {
|
|
|
2
2
|
start_time: string;
|
|
3
3
|
end_time: string;
|
|
4
4
|
}
|
|
5
|
-
export interface
|
|
5
|
+
export interface ApiAvailabilityDate {
|
|
6
6
|
date: string;
|
|
7
7
|
available: ApiAvailabilityPeriod[];
|
|
8
8
|
unavailable: ApiAvailabilityPeriod[];
|
|
9
9
|
}
|
|
10
10
|
export interface ApiAvailability {
|
|
11
11
|
user: number;
|
|
12
|
-
dates:
|
|
12
|
+
dates: ApiAvailabilityDate[];
|
|
13
13
|
}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
export interface AvailabilityQueryParams {
|
|
2
|
+
/** Start of date range for fetching availability (ISO date format `YYYY-MM-DD`) */
|
|
2
3
|
start?: string;
|
|
4
|
+
/** End of date range for fetching availability (inclusive) (ISO date format `YYYY-MM-DD`) */
|
|
3
5
|
end?: string;
|
|
6
|
+
/**
|
|
7
|
+
* List of user IDs to get availability for
|
|
8
|
+
*
|
|
9
|
+
* If undefined, all users on the account will be selected
|
|
10
|
+
*/
|
|
4
11
|
users?: number[];
|
|
5
12
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ApiAvailability,
|
|
1
|
+
import { ApiAvailability, ApiAvailabilityDate } from '../interfaces/index.js';
|
|
2
2
|
export declare class Availability {
|
|
3
3
|
user: number;
|
|
4
|
-
dates:
|
|
4
|
+
dates: ApiAvailabilityDate[];
|
|
5
5
|
constructor(availability: ApiAvailability);
|
|
6
6
|
}
|
package/dist/cjs/rotacloud.d.ts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { AccountsService, AttendanceService, DaysOffService, GroupsService, LeaveEmbargoesService, LeaveRequestService, LeaveService, LocationsService, RolesService, ShiftsService, UsersService } from './services/index.js';
|
|
1
|
+
import { AccountsService, AttendanceService, AvailabilityService, DaysOffService, GroupsService, LeaveEmbargoesService, LeaveRequestService, LeaveService, LocationsService, RolesService, ShiftsService, UsersService } from './services/index.js';
|
|
2
2
|
import { SDKConfig } from './interfaces/index.js';
|
|
3
3
|
export declare class RotaCloud {
|
|
4
4
|
static config: SDKConfig;
|
|
5
5
|
defaultAPIURI: string;
|
|
6
6
|
accounts: AccountsService;
|
|
7
7
|
attendance: AttendanceService;
|
|
8
|
+
availability: AvailabilityService;
|
|
8
9
|
daysOff: DaysOffService;
|
|
9
10
|
group: GroupsService;
|
|
10
11
|
leaveEmbargoes: LeaveEmbargoesService;
|
package/dist/cjs/rotacloud.js
CHANGED
|
@@ -7,6 +7,7 @@ class RotaCloud {
|
|
|
7
7
|
this.defaultAPIURI = 'https://api.rotacloud.com/v1';
|
|
8
8
|
this.accounts = new index_js_1.AccountsService();
|
|
9
9
|
this.attendance = new index_js_1.AttendanceService();
|
|
10
|
+
this.availability = new index_js_1.AvailabilityService();
|
|
10
11
|
this.daysOff = new index_js_1.DaysOffService();
|
|
11
12
|
this.group = new index_js_1.GroupsService();
|
|
12
13
|
this.leaveEmbargoes = new index_js_1.LeaveEmbargoesService();
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Service, Options, RequirementsOf } from './index.js';
|
|
2
|
+
import { InternalQueryParams } from '../interfaces/query-params/internal-query-params.inteface.js';
|
|
3
|
+
import { AvailabilityQueryParams } from '../interfaces/query-params/availability-query-params.interface.js';
|
|
4
|
+
import { Availability } from '../models/availability.model.js';
|
|
5
|
+
import { ApiAvailability } from '../interfaces/availability.interface.js';
|
|
6
|
+
declare type RequiredProps = 'start' | 'end';
|
|
7
|
+
declare type RequiredOptions<T> = RequirementsOf<Options<T>, 'params'>;
|
|
8
|
+
export declare class AvailabilityService extends Service {
|
|
9
|
+
private apiPath;
|
|
10
|
+
list(options: RequiredOptions<RequirementsOf<AvailabilityQueryParams, RequiredProps> & InternalQueryParams>): AsyncGenerator<Availability, void, unknown>;
|
|
11
|
+
listByPage(options: RequiredOptions<RequirementsOf<AvailabilityQueryParams, RequiredProps> & InternalQueryParams>): AsyncGenerator<import("axios").AxiosResponse<ApiAvailability[], any>, any, unknown>;
|
|
12
|
+
}
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __asyncValues = (this && this.__asyncValues) || function (o) {
|
|
3
|
+
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
|
4
|
+
var m = o[Symbol.asyncIterator], i;
|
|
5
|
+
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
|
6
|
+
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
|
7
|
+
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
|
8
|
+
};
|
|
9
|
+
var __await = (this && this.__await) || function (v) { return this instanceof __await ? (this.v = v, this) : new __await(v); }
|
|
10
|
+
var __asyncGenerator = (this && this.__asyncGenerator) || function (thisArg, _arguments, generator) {
|
|
11
|
+
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
|
12
|
+
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
|
13
|
+
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
|
14
|
+
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
|
15
|
+
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
|
|
16
|
+
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
|
17
|
+
function fulfill(value) { resume("next", value); }
|
|
18
|
+
function reject(value) { resume("throw", value); }
|
|
19
|
+
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
|
|
20
|
+
};
|
|
21
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
+
exports.AvailabilityService = void 0;
|
|
23
|
+
const index_js_1 = require("./index.js");
|
|
24
|
+
const availability_model_js_1 = require("../models/availability.model.js");
|
|
25
|
+
class AvailabilityService extends index_js_1.Service {
|
|
26
|
+
constructor() {
|
|
27
|
+
super(...arguments);
|
|
28
|
+
this.apiPath = '/availability';
|
|
29
|
+
}
|
|
30
|
+
list(options) {
|
|
31
|
+
const _super = Object.create(null, {
|
|
32
|
+
iterator: { get: () => super.iterator }
|
|
33
|
+
});
|
|
34
|
+
return __asyncGenerator(this, arguments, function* list_1() {
|
|
35
|
+
var e_1, _a;
|
|
36
|
+
try {
|
|
37
|
+
for (var _b = __asyncValues(_super.iterator.call(this, { url: this.apiPath }, options)), _c; _c = yield __await(_b.next()), !_c.done;) {
|
|
38
|
+
const res = _c.value;
|
|
39
|
+
yield yield __await(new availability_model_js_1.Availability(res));
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
43
|
+
finally {
|
|
44
|
+
try {
|
|
45
|
+
if (_c && !_c.done && (_a = _b.return)) yield __await(_a.call(_b));
|
|
46
|
+
}
|
|
47
|
+
finally { if (e_1) throw e_1.error; }
|
|
48
|
+
}
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
listByPage(options) {
|
|
52
|
+
return super.iterator({ url: this.apiPath }, options).byPage();
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
exports.AvailabilityService = AvailabilityService;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './service.js';
|
|
2
2
|
export * from './accounts.service.js';
|
|
3
3
|
export * from './attendance.service.js';
|
|
4
|
+
export * from './availability.service.js';
|
|
4
5
|
export * from './days-off.service.js';
|
|
5
6
|
export * from './groups.service.js';
|
|
6
7
|
export * from './leave-request.service.js';
|
|
@@ -13,6 +13,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
13
13
|
__exportStar(require("./service.js"), exports);
|
|
14
14
|
__exportStar(require("./accounts.service.js"), exports);
|
|
15
15
|
__exportStar(require("./attendance.service.js"), exports);
|
|
16
|
+
__exportStar(require("./availability.service.js"), exports);
|
|
16
17
|
__exportStar(require("./days-off.service.js"), exports);
|
|
17
18
|
__exportStar(require("./groups.service.js"), exports);
|
|
18
19
|
__exportStar(require("./leave-request.service.js"), exports);
|
package/dist/cjs/version.js
CHANGED
|
@@ -2,12 +2,12 @@ export interface ApiAvailabilityPeriod {
|
|
|
2
2
|
start_time: string;
|
|
3
3
|
end_time: string;
|
|
4
4
|
}
|
|
5
|
-
export interface
|
|
5
|
+
export interface ApiAvailabilityDate {
|
|
6
6
|
date: string;
|
|
7
7
|
available: ApiAvailabilityPeriod[];
|
|
8
8
|
unavailable: ApiAvailabilityPeriod[];
|
|
9
9
|
}
|
|
10
10
|
export interface ApiAvailability {
|
|
11
11
|
user: number;
|
|
12
|
-
dates:
|
|
12
|
+
dates: ApiAvailabilityDate[];
|
|
13
13
|
}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
export interface AvailabilityQueryParams {
|
|
2
|
+
/** Start of date range for fetching availability (ISO date format `YYYY-MM-DD`) */
|
|
2
3
|
start?: string;
|
|
4
|
+
/** End of date range for fetching availability (inclusive) (ISO date format `YYYY-MM-DD`) */
|
|
3
5
|
end?: string;
|
|
6
|
+
/**
|
|
7
|
+
* List of user IDs to get availability for
|
|
8
|
+
*
|
|
9
|
+
* If undefined, all users on the account will be selected
|
|
10
|
+
*/
|
|
4
11
|
users?: number[];
|
|
5
12
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ApiAvailability,
|
|
1
|
+
import { ApiAvailability, ApiAvailabilityDate } from '../interfaces/index.js';
|
|
2
2
|
export declare class Availability {
|
|
3
3
|
user: number;
|
|
4
|
-
dates:
|
|
4
|
+
dates: ApiAvailabilityDate[];
|
|
5
5
|
constructor(availability: ApiAvailability);
|
|
6
6
|
}
|
package/dist/mjs/rotacloud.d.ts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { AccountsService, AttendanceService, DaysOffService, GroupsService, LeaveEmbargoesService, LeaveRequestService, LeaveService, LocationsService, RolesService, ShiftsService, UsersService } from './services/index.js';
|
|
1
|
+
import { AccountsService, AttendanceService, AvailabilityService, DaysOffService, GroupsService, LeaveEmbargoesService, LeaveRequestService, LeaveService, LocationsService, RolesService, ShiftsService, UsersService } from './services/index.js';
|
|
2
2
|
import { SDKConfig } from './interfaces/index.js';
|
|
3
3
|
export declare class RotaCloud {
|
|
4
4
|
static config: SDKConfig;
|
|
5
5
|
defaultAPIURI: string;
|
|
6
6
|
accounts: AccountsService;
|
|
7
7
|
attendance: AttendanceService;
|
|
8
|
+
availability: AvailabilityService;
|
|
8
9
|
daysOff: DaysOffService;
|
|
9
10
|
group: GroupsService;
|
|
10
11
|
leaveEmbargoes: LeaveEmbargoesService;
|
package/dist/mjs/rotacloud.js
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { AccountsService, AttendanceService, DaysOffService, GroupsService, LeaveEmbargoesService, LeaveRequestService, LeaveService, LocationsService, RolesService, ShiftsService, UsersService, } from './services/index.js';
|
|
1
|
+
import { AccountsService, AttendanceService, AvailabilityService, DaysOffService, GroupsService, LeaveEmbargoesService, LeaveRequestService, LeaveService, LocationsService, RolesService, ShiftsService, UsersService, } from './services/index.js';
|
|
2
2
|
export class RotaCloud {
|
|
3
3
|
constructor(config) {
|
|
4
4
|
this.defaultAPIURI = 'https://api.rotacloud.com/v1';
|
|
5
5
|
this.accounts = new AccountsService();
|
|
6
6
|
this.attendance = new AttendanceService();
|
|
7
|
+
this.availability = new AvailabilityService();
|
|
7
8
|
this.daysOff = new DaysOffService();
|
|
8
9
|
this.group = new GroupsService();
|
|
9
10
|
this.leaveEmbargoes = new LeaveEmbargoesService();
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Service, Options, RequirementsOf } from './index.js';
|
|
2
|
+
import { InternalQueryParams } from '../interfaces/query-params/internal-query-params.inteface.js';
|
|
3
|
+
import { AvailabilityQueryParams } from '../interfaces/query-params/availability-query-params.interface.js';
|
|
4
|
+
import { Availability } from '../models/availability.model.js';
|
|
5
|
+
import { ApiAvailability } from '../interfaces/availability.interface.js';
|
|
6
|
+
declare type RequiredProps = 'start' | 'end';
|
|
7
|
+
declare type RequiredOptions<T> = RequirementsOf<Options<T>, 'params'>;
|
|
8
|
+
export declare class AvailabilityService extends Service {
|
|
9
|
+
private apiPath;
|
|
10
|
+
list(options: RequiredOptions<RequirementsOf<AvailabilityQueryParams, RequiredProps> & InternalQueryParams>): AsyncGenerator<Availability, void, unknown>;
|
|
11
|
+
listByPage(options: RequiredOptions<RequirementsOf<AvailabilityQueryParams, RequiredProps> & InternalQueryParams>): AsyncGenerator<import("axios").AxiosResponse<ApiAvailability[], any>, any, unknown>;
|
|
12
|
+
}
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Service } from './index.js';
|
|
2
|
+
import { Availability } from '../models/availability.model.js';
|
|
3
|
+
export class AvailabilityService extends Service {
|
|
4
|
+
constructor() {
|
|
5
|
+
super(...arguments);
|
|
6
|
+
this.apiPath = '/availability';
|
|
7
|
+
}
|
|
8
|
+
async *list(options) {
|
|
9
|
+
for await (const res of super.iterator({ url: this.apiPath }, options)) {
|
|
10
|
+
yield new Availability(res);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
listByPage(options) {
|
|
14
|
+
return super.iterator({ url: this.apiPath }, options).byPage();
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './service.js';
|
|
2
2
|
export * from './accounts.service.js';
|
|
3
3
|
export * from './attendance.service.js';
|
|
4
|
+
export * from './availability.service.js';
|
|
4
5
|
export * from './days-off.service.js';
|
|
5
6
|
export * from './groups.service.js';
|
|
6
7
|
export * from './leave-request.service.js';
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './service.js';
|
|
2
2
|
export * from './accounts.service.js';
|
|
3
3
|
export * from './attendance.service.js';
|
|
4
|
+
export * from './availability.service.js';
|
|
4
5
|
export * from './days-off.service.js';
|
|
5
6
|
export * from './groups.service.js';
|
|
6
7
|
export * from './leave-request.service.js';
|
package/dist/mjs/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const Version = { version: "1.0.
|
|
1
|
+
export const Version = { version: "1.0.13" };
|
package/fixup
CHANGED
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@ export interface ApiAvailabilityPeriod {
|
|
|
3
3
|
end_time: string;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
-
export interface
|
|
6
|
+
export interface ApiAvailabilityDate {
|
|
7
7
|
date: string;
|
|
8
8
|
available: ApiAvailabilityPeriod[];
|
|
9
9
|
unavailable: ApiAvailabilityPeriod[];
|
|
@@ -11,5 +11,5 @@ export interface ApiAvailabilityDates {
|
|
|
11
11
|
|
|
12
12
|
export interface ApiAvailability {
|
|
13
13
|
user: number;
|
|
14
|
-
dates:
|
|
14
|
+
dates: ApiAvailabilityDate[];
|
|
15
15
|
}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
export interface AvailabilityQueryParams {
|
|
2
|
+
/** Start of date range for fetching availability (ISO date format `YYYY-MM-DD`) */
|
|
2
3
|
start?: string;
|
|
4
|
+
/** End of date range for fetching availability (inclusive) (ISO date format `YYYY-MM-DD`) */
|
|
3
5
|
end?: string;
|
|
6
|
+
/**
|
|
7
|
+
* List of user IDs to get availability for
|
|
8
|
+
*
|
|
9
|
+
* If undefined, all users on the account will be selected
|
|
10
|
+
*/
|
|
4
11
|
users?: number[];
|
|
5
12
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ApiAvailability,
|
|
1
|
+
import { ApiAvailability, ApiAvailabilityDate } from '../interfaces/index.js';
|
|
2
2
|
|
|
3
3
|
export class Availability {
|
|
4
4
|
public user: number;
|
|
5
|
-
public dates:
|
|
5
|
+
public dates: ApiAvailabilityDate[];
|
|
6
6
|
|
|
7
7
|
constructor(availability: ApiAvailability) {
|
|
8
8
|
this.user = availability.user;
|
package/src/rotacloud.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
AccountsService,
|
|
3
3
|
AttendanceService,
|
|
4
|
+
AvailabilityService,
|
|
4
5
|
DaysOffService,
|
|
5
6
|
GroupsService,
|
|
6
7
|
LeaveEmbargoesService,
|
|
@@ -19,6 +20,7 @@ export class RotaCloud {
|
|
|
19
20
|
public defaultAPIURI = 'https://api.rotacloud.com/v1';
|
|
20
21
|
public accounts = new AccountsService();
|
|
21
22
|
public attendance = new AttendanceService();
|
|
23
|
+
public availability = new AvailabilityService();
|
|
22
24
|
public daysOff = new DaysOffService();
|
|
23
25
|
public group = new GroupsService();
|
|
24
26
|
public leaveEmbargoes = new LeaveEmbargoesService();
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Service, Options, RequirementsOf } from './index.js';
|
|
2
|
+
|
|
3
|
+
import { InternalQueryParams } from '../interfaces/query-params/internal-query-params.inteface.js';
|
|
4
|
+
import { AvailabilityQueryParams } from '../interfaces/query-params/availability-query-params.interface.js';
|
|
5
|
+
import { Availability } from '../models/availability.model.js';
|
|
6
|
+
import { ApiAvailability } from '../interfaces/availability.interface.js';
|
|
7
|
+
|
|
8
|
+
type RequiredProps = 'start' | 'end';
|
|
9
|
+
type RequiredOptions<T> = RequirementsOf<Options<T>, 'params'>;
|
|
10
|
+
|
|
11
|
+
export class AvailabilityService extends Service {
|
|
12
|
+
private apiPath = '/availability';
|
|
13
|
+
|
|
14
|
+
async *list(options: RequiredOptions<RequirementsOf<AvailabilityQueryParams, RequiredProps> & InternalQueryParams>) {
|
|
15
|
+
for await (const res of super.iterator<ApiAvailability>({ url: this.apiPath }, options)) {
|
|
16
|
+
yield new Availability(res);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
listByPage(options: RequiredOptions<RequirementsOf<AvailabilityQueryParams, RequiredProps> & InternalQueryParams>) {
|
|
21
|
+
return super.iterator<ApiAvailability>({ url: this.apiPath }, options).byPage();
|
|
22
|
+
}
|
|
23
|
+
}
|
package/src/services/index.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './service.js';
|
|
2
2
|
export * from './accounts.service.js';
|
|
3
3
|
export * from './attendance.service.js';
|
|
4
|
+
export * from './availability.service.js';
|
|
4
5
|
export * from './days-off.service.js';
|
|
5
6
|
export * from './groups.service.js';
|
|
6
7
|
export * from './leave-request.service.js';
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const Version = { version: "1.0.
|
|
1
|
+
export const Version = { version: "1.0.13" }
|