@mergeapi/merge-node-client 2.1.1 → 2.1.2
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/__package__.yml +1 -0
- package/.mock/definition/accounting/contacts.yml +1 -0
- package/.mock/definition/accounting/expenseReports.yml +2 -0
- package/.mock/definition/accounting/expenses.yml +2 -0
- package/.mock/definition/accounting/invoices.yml +2 -0
- package/.mock/definition/accounting/journalEntries.yml +2 -0
- package/.mock/definition/accounting/payments.yml +2 -0
- package/.mock/definition/accounting/purchaseOrders.yml +2 -0
- package/.mock/definition/crm/__package__.yml +1 -0
- package/.mock/definition/crm/accounts.yml +1 -0
- package/.mock/definition/crm/contacts.yml +1 -0
- package/.mock/definition/crm/customObjects.yml +1 -0
- package/.mock/definition/crm/engagementTypes.yml +1 -0
- package/.mock/definition/crm/engagements.yml +1 -0
- package/.mock/definition/crm/leads.yml +1 -0
- package/.mock/definition/crm/notes.yml +1 -0
- package/.mock/definition/crm/opportunities.yml +1 -0
- package/.mock/definition/crm/stages.yml +1 -0
- package/.mock/definition/crm/tasks.yml +1 -0
- package/.mock/definition/crm/users.yml +1 -0
- package/.mock/definition/ticketing/__package__.yml +1 -0
- package/.mock/definition/ticketing/tickets.yml +1 -0
- package/Client.d.ts +3 -3
- package/Client.js +11 -11
- package/api/resources/accounting/types/RemoteFieldClass.d.ts +1 -0
- package/api/resources/crm/types/RemoteFieldClass.d.ts +1 -0
- package/api/resources/index.d.ts +1 -1
- package/api/resources/index.js +2 -2
- package/api/resources/ticketing/types/RemoteFieldClass.d.ts +1 -0
- package/dist/Client.d.ts +3 -3
- package/dist/Client.js +11 -11
- package/dist/api/resources/accounting/types/RemoteFieldClass.d.ts +1 -0
- package/dist/api/resources/crm/types/RemoteFieldClass.d.ts +1 -0
- package/dist/api/resources/index.d.ts +1 -1
- package/dist/api/resources/index.js +2 -2
- package/dist/api/resources/ticketing/types/RemoteFieldClass.d.ts +1 -0
- package/dist/serialization/resources/accounting/types/RemoteFieldClass.d.ts +1 -0
- package/dist/serialization/resources/accounting/types/RemoteFieldClass.js +1 -0
- package/dist/serialization/resources/crm/types/RemoteFieldClass.d.ts +1 -0
- package/dist/serialization/resources/crm/types/RemoteFieldClass.js +1 -0
- package/dist/serialization/resources/index.d.ts +1 -1
- package/dist/serialization/resources/index.js +2 -2
- package/dist/serialization/resources/ticketing/types/RemoteFieldClass.d.ts +1 -0
- package/dist/serialization/resources/ticketing/types/RemoteFieldClass.js +1 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/reference.md +2015 -2015
- package/serialization/resources/accounting/types/RemoteFieldClass.d.ts +1 -0
- package/serialization/resources/accounting/types/RemoteFieldClass.js +1 -0
- package/serialization/resources/crm/types/RemoteFieldClass.d.ts +1 -0
- package/serialization/resources/crm/types/RemoteFieldClass.js +1 -0
- package/serialization/resources/index.d.ts +1 -1
- package/serialization/resources/index.js +2 -2
- package/serialization/resources/ticketing/types/RemoteFieldClass.d.ts +1 -0
- package/serialization/resources/ticketing/types/RemoteFieldClass.js +1 -0
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -15,6 +15,7 @@ export declare namespace RemoteFieldClass {
|
|
|
15
15
|
remote_key_name?: string | null;
|
|
16
16
|
description?: string | null;
|
|
17
17
|
is_custom?: boolean | null;
|
|
18
|
+
is_common_model_field?: boolean | null;
|
|
18
19
|
is_required?: boolean | null;
|
|
19
20
|
field_type?: FieldTypeEnum.Raw | null;
|
|
20
21
|
field_format?: FieldFormatEnum.Raw | null;
|
|
@@ -47,6 +47,7 @@ exports.RemoteFieldClass = core.serialization.object({
|
|
|
47
47
|
remoteKeyName: core.serialization.property("remote_key_name", core.serialization.string().optional()),
|
|
48
48
|
description: core.serialization.string().optional(),
|
|
49
49
|
isCustom: core.serialization.property("is_custom", core.serialization.boolean().optional()),
|
|
50
|
+
isCommonModelField: core.serialization.property("is_common_model_field", core.serialization.boolean().optional()),
|
|
50
51
|
isRequired: core.serialization.property("is_required", core.serialization.boolean().optional()),
|
|
51
52
|
fieldType: core.serialization.property("field_type", FieldTypeEnum_1.FieldTypeEnum.optional()),
|
|
52
53
|
fieldFormat: core.serialization.property("field_format", FieldFormatEnum_1.FieldFormatEnum.optional()),
|
|
@@ -16,6 +16,7 @@ export declare namespace RemoteFieldClass {
|
|
|
16
16
|
remote_key_name?: string | null;
|
|
17
17
|
description?: string | null;
|
|
18
18
|
is_custom?: boolean | null;
|
|
19
|
+
is_common_model_field?: boolean | null;
|
|
19
20
|
is_required?: boolean | null;
|
|
20
21
|
field_type?: RemoteFieldClassFieldType.Raw | null;
|
|
21
22
|
field_format?: RemoteFieldClassFieldFormat.Raw | null;
|
|
@@ -48,6 +48,7 @@ exports.RemoteFieldClass = core.serialization.object({
|
|
|
48
48
|
remoteKeyName: core.serialization.property("remote_key_name", core.serialization.string().optional()),
|
|
49
49
|
description: core.serialization.string().optional(),
|
|
50
50
|
isCustom: core.serialization.property("is_custom", core.serialization.boolean().optional()),
|
|
51
|
+
isCommonModelField: core.serialization.property("is_common_model_field", core.serialization.boolean().optional()),
|
|
51
52
|
isRequired: core.serialization.property("is_required", core.serialization.boolean().optional()),
|
|
52
53
|
fieldType: core.serialization.property("field_type", RemoteFieldClassFieldType_1.RemoteFieldClassFieldType.optional()),
|
|
53
54
|
fieldFormat: core.serialization.property("field_format", RemoteFieldClassFieldFormat_1.RemoteFieldClassFieldFormat.optional()),
|
|
@@ -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.ticketing = exports.hris = exports.
|
|
36
|
+
exports.accounting = exports.ticketing = exports.hris = exports.filestorage = exports.crm = exports.ats = void 0;
|
|
37
|
+
exports.ats = __importStar(require("./ats"));
|
|
37
38
|
exports.crm = __importStar(require("./crm"));
|
|
38
39
|
exports.filestorage = __importStar(require("./filestorage"));
|
|
39
|
-
exports.ats = __importStar(require("./ats"));
|
|
40
40
|
exports.hris = __importStar(require("./hris"));
|
|
41
41
|
exports.ticketing = __importStar(require("./ticketing"));
|
|
42
42
|
exports.accounting = __importStar(require("./accounting"));
|
|
@@ -16,6 +16,7 @@ export declare namespace RemoteFieldClass {
|
|
|
16
16
|
remote_key_name?: string | null;
|
|
17
17
|
description?: string | null;
|
|
18
18
|
is_custom?: boolean | null;
|
|
19
|
+
is_common_model_field?: boolean | null;
|
|
19
20
|
is_required?: boolean | null;
|
|
20
21
|
field_type?: RemoteFieldClassFieldType.Raw | null;
|
|
21
22
|
field_format?: RemoteFieldClassFieldFormat.Raw | null;
|
|
@@ -48,6 +48,7 @@ exports.RemoteFieldClass = core.serialization.object({
|
|
|
48
48
|
remoteKeyName: core.serialization.property("remote_key_name", core.serialization.string().optional()),
|
|
49
49
|
description: core.serialization.string().optional(),
|
|
50
50
|
isCustom: core.serialization.property("is_custom", core.serialization.boolean().optional()),
|
|
51
|
+
isCommonModelField: core.serialization.property("is_common_model_field", core.serialization.boolean().optional()),
|
|
51
52
|
isRequired: core.serialization.property("is_required", core.serialization.boolean().optional()),
|
|
52
53
|
fieldType: core.serialization.property("field_type", RemoteFieldClassFieldType_1.RemoteFieldClassFieldType.optional()),
|
|
53
54
|
fieldFormat: core.serialization.property("field_format", RemoteFieldClassFieldFormat_1.RemoteFieldClassFieldFormat.optional()),
|
package/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "2.1.
|
|
1
|
+
export declare const SDK_VERSION = "2.1.2";
|
package/version.js
CHANGED