@mergeapi/merge-node-client 2.0.0 → 2.0.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/.mock/definition/accounting/employees.yml +24 -0
- package/.mock/definition/accounting/projects.yml +24 -0
- package/Client.d.ts +6 -6
- package/Client.js +17 -17
- package/api/resources/accounting/resources/employees/client/Client.js +19 -1
- package/api/resources/accounting/resources/employees/client/requests/EmployeesListRequest.d.ts +24 -0
- package/api/resources/accounting/resources/projects/client/Client.js +19 -1
- package/api/resources/accounting/resources/projects/client/requests/ProjectsListRequest.d.ts +24 -0
- package/api/resources/index.d.ts +2 -2
- package/api/resources/index.js +3 -3
- package/dist/Client.d.ts +6 -6
- package/dist/Client.js +17 -17
- package/dist/api/resources/accounting/resources/employees/client/Client.js +19 -1
- package/dist/api/resources/accounting/resources/employees/client/requests/EmployeesListRequest.d.ts +24 -0
- package/dist/api/resources/accounting/resources/projects/client/Client.js +19 -1
- package/dist/api/resources/accounting/resources/projects/client/requests/ProjectsListRequest.d.ts +24 -0
- package/dist/api/resources/index.d.ts +2 -2
- package/dist/api/resources/index.js +3 -3
- package/dist/serialization/resources/index.d.ts +2 -2
- package/dist/serialization/resources/index.js +3 -3
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/reference.md +3146 -3146
- package/serialization/resources/index.d.ts +2 -2
- package/serialization/resources/index.js +3 -3
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * as ats from "./ats";
|
|
2
|
-
export * as crm from "./crm";
|
|
3
1
|
export * as filestorage from "./filestorage";
|
|
4
2
|
export * as hris from "./hris";
|
|
5
3
|
export * as ticketing from "./ticketing";
|
|
4
|
+
export * as crm from "./crm";
|
|
5
|
+
export * as ats from "./ats";
|
|
6
6
|
export * as accounting from "./accounting";
|
|
@@ -33,10 +33,10 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.accounting = exports.
|
|
37
|
-
exports.ats = __importStar(require("./ats"));
|
|
38
|
-
exports.crm = __importStar(require("./crm"));
|
|
36
|
+
exports.accounting = exports.ats = exports.crm = exports.ticketing = exports.hris = exports.filestorage = void 0;
|
|
39
37
|
exports.filestorage = __importStar(require("./filestorage"));
|
|
40
38
|
exports.hris = __importStar(require("./hris"));
|
|
41
39
|
exports.ticketing = __importStar(require("./ticketing"));
|
|
40
|
+
exports.crm = __importStar(require("./crm"));
|
|
41
|
+
exports.ats = __importStar(require("./ats"));
|
|
42
42
|
exports.accounting = __importStar(require("./accounting"));
|
package/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "2.0.
|
|
1
|
+
export declare const SDK_VERSION = "2.0.1";
|
package/version.js
CHANGED