@eway-crm/connector 1.0.76 → 1.0.79
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/lib/constants/CustomizationStatsItemKeys.d.ts +13 -0
- package/lib/constants/CustomizationStatsItemKeys.js +19 -0
- package/lib/data/IApiCustomizationStatsItem.d.ts +6 -0
- package/lib/data/IApiCustomizationStatsItem.js +2 -0
- package/lib/data/IApiLicense.d.ts +1 -1
- package/lib/index.d.ts +3 -1
- package/lib/index.js +4 -1
- package/package.json +1 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export default class CustomizationStatsItemKeys {
|
|
2
|
+
static additionalFieldsCount: string;
|
|
3
|
+
static customAdvancedWorkflowsCount: string;
|
|
4
|
+
static customBasicWorkflowsCount: string;
|
|
5
|
+
static customMandatoryOrUniqueFieldsCount: string;
|
|
6
|
+
static customOptionalFieldsCount: string;
|
|
7
|
+
static customTypesCount: string;
|
|
8
|
+
static invisibleCurrenciesCount: string;
|
|
9
|
+
static systemAdvancedWorkflowsCount: string;
|
|
10
|
+
static systemMandatoryOrUniqueFieldsCount: string;
|
|
11
|
+
static systemTypesCount: string;
|
|
12
|
+
static visibleCurrenciesCount: string;
|
|
13
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
var CustomizationStatsItemKeys = /** @class */ (function () {
|
|
4
|
+
function CustomizationStatsItemKeys() {
|
|
5
|
+
}
|
|
6
|
+
CustomizationStatsItemKeys.additionalFieldsCount = 'AdditionalFieldsCount';
|
|
7
|
+
CustomizationStatsItemKeys.customAdvancedWorkflowsCount = 'CustomAdvancedWorkflowsCount';
|
|
8
|
+
CustomizationStatsItemKeys.customBasicWorkflowsCount = 'CustomBasicWorkflowsCount';
|
|
9
|
+
CustomizationStatsItemKeys.customMandatoryOrUniqueFieldsCount = 'CustomMandatoryOrUniqueFieldsCount';
|
|
10
|
+
CustomizationStatsItemKeys.customOptionalFieldsCount = 'CustomOptionalFieldsCount';
|
|
11
|
+
CustomizationStatsItemKeys.customTypesCount = 'CustomTypesCount';
|
|
12
|
+
CustomizationStatsItemKeys.invisibleCurrenciesCount = 'InvisibleCurrenciesCount';
|
|
13
|
+
CustomizationStatsItemKeys.systemAdvancedWorkflowsCount = 'SystemAdvancedWorkflowsCount';
|
|
14
|
+
CustomizationStatsItemKeys.systemMandatoryOrUniqueFieldsCount = 'SystemMandatoryOrUniqueFieldsCount';
|
|
15
|
+
CustomizationStatsItemKeys.systemTypesCount = 'SystemTypesCount';
|
|
16
|
+
CustomizationStatsItemKeys.visibleCurrenciesCount = 'VisibleCurrenciesCount';
|
|
17
|
+
return CustomizationStatsItemKeys;
|
|
18
|
+
}());
|
|
19
|
+
exports.default = CustomizationStatsItemKeys;
|
|
@@ -13,7 +13,7 @@ interface IApiRestrictionBase {
|
|
|
13
13
|
interface IApiRestrictionsClass {
|
|
14
14
|
Functionalities: (IApiRestrictionBase & {
|
|
15
15
|
Functionality: TFunctionality;
|
|
16
|
-
CurrentLimit
|
|
16
|
+
CurrentLimit: number | null;
|
|
17
17
|
})[];
|
|
18
18
|
GlobalSettings: (IApiRestrictionBase & {
|
|
19
19
|
GlobalSettingName: string;
|
package/lib/index.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ import { ColumnPermissionPermissionRules, ColumnPermissionMandatoryRules } from
|
|
|
18
18
|
import { Edition } from './constants/Edition';
|
|
19
19
|
import { Feature } from './constants/Feature';
|
|
20
20
|
import Functionality from './constants/Functionality';
|
|
21
|
+
import CustomizationStatsItemKeys from './constants/CustomizationStatsItemKeys';
|
|
21
22
|
export default ApiConnection;
|
|
22
23
|
export * from './data/EWItem';
|
|
23
24
|
export * from './data/IApiAdditionalField';
|
|
@@ -29,6 +30,7 @@ export * from './data/IApiColumn';
|
|
|
29
30
|
export * from './data/IApiColumnPermission';
|
|
30
31
|
export * from './data/IApiCompany';
|
|
31
32
|
export * from './data/IApiContact';
|
|
33
|
+
export * from './data/IApiCustomizationStatsItem';
|
|
32
34
|
export * from './data/IApiCurrencyExchangeRate';
|
|
33
35
|
export * from './data/IApiDataResponse';
|
|
34
36
|
export * from './data/IApiDatumResponse';
|
|
@@ -71,4 +73,4 @@ export * from './data/IApiWorkReport';
|
|
|
71
73
|
export * from './data/query/IApiQuery';
|
|
72
74
|
export * from './data/query/IApiQueryFilters';
|
|
73
75
|
export * from './interfaces/ITranslatableString';
|
|
74
|
-
export { HttpMethod, ISessionHandler, ReturnCodes, ITokenizedApiResult, TokenizedServiceConnection, CommonDataConnection, ApiMethods, GlobalSettingsNames, FolderNames, TFolderName, OAuthHelper, HttpRequestError, TUnionError, TInputData, FieldNames, EnumTypes, RelationTypes, ColumnPermissionPermissionRules, ColumnPermissionMandatoryRules, Edition, Feature, Functionality };
|
|
76
|
+
export { HttpMethod, ISessionHandler, ReturnCodes, ITokenizedApiResult, TokenizedServiceConnection, CommonDataConnection, ApiMethods, GlobalSettingsNames, FolderNames, TFolderName, OAuthHelper, HttpRequestError, TUnionError, TInputData, FieldNames, EnumTypes, RelationTypes, ColumnPermissionPermissionRules, ColumnPermissionMandatoryRules, Edition, Feature, Functionality, CustomizationStatsItemKeys };
|
package/lib/index.js
CHANGED
|
@@ -10,7 +10,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
10
10
|
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p);
|
|
11
11
|
};
|
|
12
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
-
exports.Functionality = exports.Feature = exports.Edition = exports.ColumnPermissionMandatoryRules = exports.ColumnPermissionPermissionRules = exports.RelationTypes = exports.EnumTypes = exports.FieldNames = exports.HttpRequestError = exports.OAuthHelper = exports.FolderNames = exports.GlobalSettingsNames = exports.ApiMethods = exports.CommonDataConnection = exports.TokenizedServiceConnection = exports.ReturnCodes = exports.HttpMethod = void 0;
|
|
13
|
+
exports.CustomizationStatsItemKeys = exports.Functionality = exports.Feature = exports.Edition = exports.ColumnPermissionMandatoryRules = exports.ColumnPermissionPermissionRules = exports.RelationTypes = exports.EnumTypes = exports.FieldNames = exports.HttpRequestError = exports.OAuthHelper = exports.FolderNames = exports.GlobalSettingsNames = exports.ApiMethods = exports.CommonDataConnection = exports.TokenizedServiceConnection = exports.ReturnCodes = exports.HttpMethod = void 0;
|
|
14
14
|
var Promise = require("es6-promise");
|
|
15
15
|
var ApiConnection_1 = require("./ApiConnection");
|
|
16
16
|
var HttpMethod_1 = require("./HttpMethod");
|
|
@@ -46,6 +46,8 @@ var Feature_1 = require("./constants/Feature");
|
|
|
46
46
|
Object.defineProperty(exports, "Feature", { enumerable: true, get: function () { return Feature_1.Feature; } });
|
|
47
47
|
var Functionality_1 = require("./constants/Functionality");
|
|
48
48
|
exports.Functionality = Functionality_1.default;
|
|
49
|
+
var CustomizationStatsItemKeys_1 = require("./constants/CustomizationStatsItemKeys");
|
|
50
|
+
exports.CustomizationStatsItemKeys = CustomizationStatsItemKeys_1.default;
|
|
49
51
|
Promise.polyfill();
|
|
50
52
|
exports.default = ApiConnection_1.ApiConnection;
|
|
51
53
|
__exportStar(require("./data/EWItem"), exports);
|
|
@@ -58,6 +60,7 @@ __exportStar(require("./data/IApiColumn"), exports);
|
|
|
58
60
|
__exportStar(require("./data/IApiColumnPermission"), exports);
|
|
59
61
|
__exportStar(require("./data/IApiCompany"), exports);
|
|
60
62
|
__exportStar(require("./data/IApiContact"), exports);
|
|
63
|
+
__exportStar(require("./data/IApiCustomizationStatsItem"), exports);
|
|
61
64
|
__exportStar(require("./data/IApiCurrencyExchangeRate"), exports);
|
|
62
65
|
__exportStar(require("./data/IApiDataResponse"), exports);
|
|
63
66
|
__exportStar(require("./data/IApiDatumResponse"), exports);
|