@eway-crm/connector 1.0.81 → 1.0.82
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.
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
export default class CustomizationStatsItemKeys {
|
|
2
2
|
static additionalFieldsCount: string;
|
|
3
|
-
static
|
|
4
|
-
static
|
|
5
|
-
static
|
|
3
|
+
static customEnabledAdvancedWorkflowsCount: string;
|
|
4
|
+
static customEnabledBasicWorkflowsCount: string;
|
|
5
|
+
static customMandatoryFieldsCount: string;
|
|
6
6
|
static customOptionalFieldsCount: string;
|
|
7
|
-
static
|
|
8
|
-
static
|
|
9
|
-
static
|
|
10
|
-
static systemMandatoryOrUniqueFieldsCount: string;
|
|
11
|
-
static systemTypesCount: string;
|
|
7
|
+
static customReadonlyFieldsCount: string;
|
|
8
|
+
static customUniqueFieldsCount: string;
|
|
9
|
+
static customVisibleTypesCount: string;
|
|
12
10
|
static visibleCurrenciesCount: string;
|
|
13
11
|
}
|
|
@@ -4,15 +4,13 @@ var CustomizationStatsItemKeys = /** @class */ (function () {
|
|
|
4
4
|
function CustomizationStatsItemKeys() {
|
|
5
5
|
}
|
|
6
6
|
CustomizationStatsItemKeys.additionalFieldsCount = 'AdditionalFieldsCount';
|
|
7
|
-
CustomizationStatsItemKeys.
|
|
8
|
-
CustomizationStatsItemKeys.
|
|
9
|
-
CustomizationStatsItemKeys.
|
|
7
|
+
CustomizationStatsItemKeys.customEnabledAdvancedWorkflowsCount = 'CustomEnabledAdvancedWorkflowsCount';
|
|
8
|
+
CustomizationStatsItemKeys.customEnabledBasicWorkflowsCount = 'CustomEnabledBasicWorkflowsCount';
|
|
9
|
+
CustomizationStatsItemKeys.customMandatoryFieldsCount = 'CustomMandatoryFieldsCount';
|
|
10
10
|
CustomizationStatsItemKeys.customOptionalFieldsCount = 'CustomOptionalFieldsCount';
|
|
11
|
-
CustomizationStatsItemKeys.
|
|
12
|
-
CustomizationStatsItemKeys.
|
|
13
|
-
CustomizationStatsItemKeys.
|
|
14
|
-
CustomizationStatsItemKeys.systemMandatoryOrUniqueFieldsCount = 'SystemMandatoryOrUniqueFieldsCount';
|
|
15
|
-
CustomizationStatsItemKeys.systemTypesCount = 'SystemTypesCount';
|
|
11
|
+
CustomizationStatsItemKeys.customReadonlyFieldsCount = 'CustomReadonlyFieldsCount';
|
|
12
|
+
CustomizationStatsItemKeys.customUniqueFieldsCount = 'CustomUniqueFieldsCount';
|
|
13
|
+
CustomizationStatsItemKeys.customVisibleTypesCount = 'CustomVisibleTypesCount';
|
|
16
14
|
CustomizationStatsItemKeys.visibleCurrenciesCount = 'VisibleCurrenciesCount';
|
|
17
15
|
return CustomizationStatsItemKeys;
|
|
18
16
|
}());
|