@eway-crm/connector 1.0.121 → 1.0.122
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/AnonymousSessionHandler.js +5 -10
- package/lib/ApiConnection.js +115 -129
- package/lib/ApiMethods.js +35 -40
- package/lib/CredentialsSessionHandler.js +22 -28
- package/lib/HttpMethod.js +2 -5
- package/lib/ISessionHandler.js +1 -2
- package/lib/OAuthSessionHandler.js +16 -39
- package/lib/OAuthSessionHandlerBase.js +30 -36
- package/lib/ReturnCodes.js +10 -15
- package/lib/axios/AxiosInstance.js +3 -5
- package/lib/constants/ActionEventTypes.js +9 -14
- package/lib/constants/ColumnPermissionRules.js +15 -22
- package/lib/constants/CompletionLevels.js +6 -11
- package/lib/constants/CustomizationStatsItemKeys.js +12 -17
- package/lib/constants/Edition.js +2 -5
- package/lib/constants/EnumTypes.js +33 -38
- package/lib/constants/ExpirationReason.js +1 -3
- package/lib/constants/Feature.js +2 -5
- package/lib/constants/FieldNames.js +421 -426
- package/lib/constants/FieldTypes.js +15 -20
- package/lib/constants/FolderNames.js +82 -87
- package/lib/constants/Functionality.js +55 -60
- package/lib/constants/GlobalSettingsNames.js +71 -76
- package/lib/constants/LicenseKeyInvoiceSeverity.js +1 -3
- package/lib/constants/LicenseRestrictionKeys.js +63 -68
- package/lib/constants/RelationTypes.js +11 -16
- package/lib/data/EWItem.js +29 -34
- package/lib/data/IApiAdditionalField.js +1 -2
- package/lib/data/IApiAvailableBundle.js +1 -2
- package/lib/data/IApiAvailableVersionResponse.js +1 -2
- package/lib/data/IApiBooleanResponse.js +1 -2
- package/lib/data/IApiCapacityAvailableBundle.js +1 -2
- package/lib/data/IApiCart.js +1 -2
- package/lib/data/IApiColumn.js +1 -2
- package/lib/data/IApiColumnPermission.js +1 -2
- package/lib/data/IApiCompany.js +1 -2
- package/lib/data/IApiContact.js +1 -2
- package/lib/data/IApiCurrencyExchangeRate.js +1 -2
- package/lib/data/IApiCustomizationStatsItem.js +1 -2
- package/lib/data/IApiDataResponse.js +1 -2
- package/lib/data/IApiDatumResponse.js +1 -2
- package/lib/data/IApiDocument.js +1 -2
- package/lib/data/IApiEmail.js +1 -2
- package/lib/data/IApiEnumType.js +2 -5
- package/lib/data/IApiEnumValue.js +1 -2
- package/lib/data/IApiEnumValuesRelation.js +1 -2
- package/lib/data/IApiFeature.js +1 -2
- package/lib/data/IApiFeaturesLicenseBundle.js +1 -2
- package/lib/data/IApiFlow.js +1 -2
- package/lib/data/IApiGlobalSetting.js +1 -2
- package/lib/data/IApiGoal.js +1 -2
- package/lib/data/IApiGood.js +1 -2
- package/lib/data/IApiGoodInCart.js +1 -2
- package/lib/data/IApiGroup.js +1 -2
- package/lib/data/IApiItemBase.js +1 -2
- package/lib/data/IApiItemIdentifier.js +1 -2
- package/lib/data/IApiItemUsageStatus.js +1 -2
- package/lib/data/IApiJournal.js +1 -2
- package/lib/data/IApiLead.js +1 -2
- package/lib/data/IApiLicense.js +1 -2
- package/lib/data/IApiLicenseBundleBase.js +1 -2
- package/lib/data/IApiLocalizedLicenseBundle.js +1 -2
- package/lib/data/IApiLoginResponse.js +1 -2
- package/lib/data/IApiMarketingCampaign.js +1 -2
- package/lib/data/IApiMarketingList.js +1 -2
- package/lib/data/IApiModulePermission.js +1 -2
- package/lib/data/IApiObjectType.js +1 -2
- package/lib/data/IApiPasswordStrength.js +1 -2
- package/lib/data/IApiPayment.js +1 -2
- package/lib/data/IApiProject.js +1 -2
- package/lib/data/IApiRecurrencePattern.js +1 -2
- package/lib/data/IApiResult.js +1 -2
- package/lib/data/IApiSaveResponse.js +1 -2
- package/lib/data/IApiTask.js +1 -2
- package/lib/data/IApiUser.js +1 -2
- package/lib/data/IApiUserSetting.js +1 -2
- package/lib/data/IApiWebServiceTaskStatus.js +1 -2
- package/lib/data/IApiWorkReport.js +1 -2
- package/lib/data/IApiWorkflowActionDerivedItem.js +1 -2
- package/lib/data/IApiWorkflowModel.js +1 -2
- package/lib/data/query/IApiQuery.js +1 -2
- package/lib/data/query/IApiQueryFilters.js +1 -2
- package/lib/data/workflowActions/IApiAction.js +1 -2
- package/lib/exceptions/HttpRequestError.js +6 -28
- package/lib/exceptions/WebServiceError.js +6 -28
- package/lib/helpers/ErrorHelper.js +15 -20
- package/lib/helpers/OAuthHelper.js +49 -54
- package/lib/helpers/VersionHelperBase.js +15 -20
- package/lib/index.js +83 -123
- package/lib/interfaces/IEWJwtPayload.js +1 -2
- package/lib/interfaces/IItemPreview.js +1 -2
- package/lib/interfaces/ITokenData.js +1 -2
- package/lib/interfaces/ITranslatableString.js +1 -2
- package/lib/interfaces/TNumericValidatorType.js +1 -2
- package/lib/tokenizedServices/CommonDataConnection.js +11 -17
- package/lib/tokenizedServices/ITokenizedApiResult.js +1 -2
- package/lib/tokenizedServices/TokenizedServiceConnection.js +53 -59
- package/package.json +1 -1
|
@@ -1,68 +1,63 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
LicenseRestrictionKeys.quickBooksIntegration = 'QuickBooksIntegration';
|
|
65
|
-
LicenseRestrictionKeys.shareByTeams = "ShareByTeams";
|
|
66
|
-
return LicenseRestrictionKeys;
|
|
67
|
-
}());
|
|
68
|
-
exports.default = LicenseRestrictionKeys;
|
|
1
|
+
class LicenseRestrictionKeys {
|
|
2
|
+
}
|
|
3
|
+
LicenseRestrictionKeys.contactsSynchronizationWithOutlook = 'ContactsSynchronizationWithOutlook';
|
|
4
|
+
LicenseRestrictionKeys.contactsSynchronizationWithAndroid = 'ContactsSynchronizationWithAndroid';
|
|
5
|
+
LicenseRestrictionKeys.documentsRevisions = 'DocumentsRevisions';
|
|
6
|
+
LicenseRestrictionKeys.wordAddin = 'WordAddin';
|
|
7
|
+
LicenseRestrictionKeys.excelAddin = 'ExcelAddin';
|
|
8
|
+
LicenseRestrictionKeys.tasksReminders = 'TasksReminders';
|
|
9
|
+
LicenseRestrictionKeys.tasksRecurrentTasks = 'TasksRecurrentTasks';
|
|
10
|
+
LicenseRestrictionKeys.tasksSubtasks = 'TasksSubtasks';
|
|
11
|
+
LicenseRestrictionKeys.tasksSynchronizationWithOutlook = 'TasksSynchronizationWithOutlook';
|
|
12
|
+
LicenseRestrictionKeys.calendarSynchronizationWithOutlook = 'CalendarSynchronizationWithOutlook';
|
|
13
|
+
LicenseRestrictionKeys.emailsManualTracking = 'EmailsManualTracking';
|
|
14
|
+
LicenseRestrictionKeys.emailsAutomaticTracking = 'EmailsAutomaticTracking';
|
|
15
|
+
LicenseRestrictionKeys.convertEmailToContact = 'ConvertEmailToContact';
|
|
16
|
+
LicenseRestrictionKeys.convertEmailToDeal = 'ConvertEmailToDeal';
|
|
17
|
+
LicenseRestrictionKeys.convertEmailToProject = 'ConvertEmailToProject';
|
|
18
|
+
LicenseRestrictionKeys.convertEmailToTask = 'ConvertEmailToTask';
|
|
19
|
+
LicenseRestrictionKeys.gravatarIntegration = 'GravatarIntegration';
|
|
20
|
+
LicenseRestrictionKeys.logoboxIntegration = 'LogoboxIntegration';
|
|
21
|
+
LicenseRestrictionKeys.companiesBussinesRegisterApiIntegration = 'CompaniesBussinesRegisterApiIntegration';
|
|
22
|
+
LicenseRestrictionKeys.duplicityChecker = 'DuplicityChecker';
|
|
23
|
+
LicenseRestrictionKeys.nextStepAndLastActivityCustomization = 'NextStepAndLastActivityCustomization';
|
|
24
|
+
LicenseRestrictionKeys.subProjects = 'SubProjects';
|
|
25
|
+
LicenseRestrictionKeys.resourceAndPlanning = 'ResourceAndPlanning';
|
|
26
|
+
LicenseRestrictionKeys.professionalEmailCampaigns = 'ProfessionalEmailCampaigns';
|
|
27
|
+
LicenseRestrictionKeys.professionalEmailCampaignsAdvancedStatistics = 'ProfessionalEmailCampaignsAdvancedStatistics';
|
|
28
|
+
LicenseRestrictionKeys.wordEmailMerge = 'WordEmailMerge';
|
|
29
|
+
LicenseRestrictionKeys.printLabels = 'PrintLabels';
|
|
30
|
+
LicenseRestrictionKeys.printEnvelopes = 'PrintEnvelopes';
|
|
31
|
+
LicenseRestrictionKeys.userViews = 'UserViews';
|
|
32
|
+
LicenseRestrictionKeys.sharedUserViews = 'SharedUserViews';
|
|
33
|
+
LicenseRestrictionKeys.gridRowSummary = 'GridRowSummary';
|
|
34
|
+
LicenseRestrictionKeys.gridConditionalFormating = 'GridConditionalFormating';
|
|
35
|
+
LicenseRestrictionKeys.multipleCurrencies = 'MultipleCurrencies';
|
|
36
|
+
LicenseRestrictionKeys.historyTracking = 'HistoryTracking';
|
|
37
|
+
LicenseRestrictionKeys.privateItems = 'PrivateItems';
|
|
38
|
+
LicenseRestrictionKeys.itemTypes = 'ItemTypes';
|
|
39
|
+
LicenseRestrictionKeys.formLayoutCustomization = 'FormLayoutCustomization';
|
|
40
|
+
LicenseRestrictionKeys.workflowBasicDefinitions = 'WorkflowBasicDefinitions';
|
|
41
|
+
LicenseRestrictionKeys.workflowAdvancedDefinitions = 'WorkflowAdvancedDefinitions';
|
|
42
|
+
LicenseRestrictionKeys.workflowAdvancedDefinitionsRules = 'WorkflowAdvancedDefinitionsRules';
|
|
43
|
+
LicenseRestrictionKeys.workflowAdvancedDefinitionsActions = 'WorkflowAdvancedDefinitionsActions';
|
|
44
|
+
LicenseRestrictionKeys.workflowGroupLevelActions = 'WorkflowGroupLevelActions';
|
|
45
|
+
LicenseRestrictionKeys.customFields = 'CustomFields';
|
|
46
|
+
LicenseRestrictionKeys.importantFields = 'ImportantFields';
|
|
47
|
+
LicenseRestrictionKeys.mandatoryFields = 'MandatoryFields';
|
|
48
|
+
LicenseRestrictionKeys.uniqueFields = 'UniqueFields';
|
|
49
|
+
LicenseRestrictionKeys.readOnlyFields = 'ReadOnlyFields';
|
|
50
|
+
LicenseRestrictionKeys.transformationCustomTemplates = 'TransformationCustomTemplates';
|
|
51
|
+
LicenseRestrictionKeys.userRoles = 'UserRoles';
|
|
52
|
+
LicenseRestrictionKeys.modulePermissions = 'ModulePermissions';
|
|
53
|
+
LicenseRestrictionKeys.columnPermissions = 'ColumnPermissions';
|
|
54
|
+
LicenseRestrictionKeys.commonDataAPI = 'CommonDataAPI';
|
|
55
|
+
LicenseRestrictionKeys.eWayCrmAPI = 'eWayCrmAPI';
|
|
56
|
+
LicenseRestrictionKeys.threeCXIntegration = 'ThreeCXIntegration';
|
|
57
|
+
LicenseRestrictionKeys.tapiIntegration = 'TapiIntegration';
|
|
58
|
+
LicenseRestrictionKeys.pohodaIntegration = 'PohodaIntegration';
|
|
59
|
+
LicenseRestrictionKeys.pohodaSynchronizationIntervalCustomization = 'PohodaSynchronizationIntervalCustomization';
|
|
60
|
+
LicenseRestrictionKeys.pohodaSynchronizationFieldMappingCustomization = 'PohodaSynchronizationFieldMappingCustomization';
|
|
61
|
+
LicenseRestrictionKeys.quickBooksIntegration = 'QuickBooksIntegration';
|
|
62
|
+
LicenseRestrictionKeys.shareByTeams = "ShareByTeams";
|
|
63
|
+
export default LicenseRestrictionKeys;
|
|
@@ -1,16 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
RelationTypes.outlookProject = 'OUTLOOKPROJECT';
|
|
13
|
-
RelationTypes.supervisor = 'SUPERVISOR';
|
|
14
|
-
return RelationTypes;
|
|
15
|
-
}());
|
|
16
|
-
exports.default = RelationTypes;
|
|
1
|
+
class RelationTypes {
|
|
2
|
+
}
|
|
3
|
+
RelationTypes.general = 'GENERAL';
|
|
4
|
+
RelationTypes.group = 'GROUP';
|
|
5
|
+
RelationTypes.contactPerson = 'CONTACTPERSON';
|
|
6
|
+
RelationTypes.contact = 'CONTACT';
|
|
7
|
+
RelationTypes.customer = 'CUSTOMER';
|
|
8
|
+
RelationTypes.company = 'COMPANY';
|
|
9
|
+
RelationTypes.outlookProject = 'OUTLOOKPROJECT';
|
|
10
|
+
RelationTypes.supervisor = 'SUPERVISOR';
|
|
11
|
+
export default RelationTypes;
|
package/lib/data/EWItem.js
CHANGED
|
@@ -1,68 +1,65 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
var __1 = require("..");
|
|
5
|
-
var EWItem = /** @class */ (function () {
|
|
6
|
-
function EWItem(folderName, baseItem) {
|
|
1
|
+
import { FolderNames } from "..";
|
|
2
|
+
export class EWItem {
|
|
3
|
+
constructor(folderName, baseItem) {
|
|
7
4
|
if (!folderName || !baseItem) {
|
|
8
5
|
throw new Error('Both folderName and baseItem has to be defined!');
|
|
9
6
|
}
|
|
10
7
|
this.folderName = folderName;
|
|
11
8
|
this.baseItem = baseItem;
|
|
12
9
|
}
|
|
13
|
-
|
|
10
|
+
getEmailAddress() {
|
|
14
11
|
switch (this.folderName) {
|
|
15
|
-
case
|
|
12
|
+
case FolderNames.contacts:
|
|
16
13
|
{
|
|
17
|
-
|
|
14
|
+
const contact = this.baseItem;
|
|
18
15
|
return contact.Email1Address || contact.Email2Address || contact.Email3Address;
|
|
19
16
|
}
|
|
20
|
-
case
|
|
17
|
+
case FolderNames.leads:
|
|
21
18
|
{
|
|
22
|
-
|
|
19
|
+
const lead = this.baseItem;
|
|
23
20
|
return lead.Email;
|
|
24
21
|
}
|
|
25
|
-
case
|
|
22
|
+
case FolderNames.companies:
|
|
26
23
|
{
|
|
27
|
-
|
|
24
|
+
const company = this.baseItem;
|
|
28
25
|
return company.Email;
|
|
29
26
|
}
|
|
30
|
-
case
|
|
27
|
+
case FolderNames.users:
|
|
31
28
|
{
|
|
32
|
-
|
|
29
|
+
const user = this.baseItem;
|
|
33
30
|
return user.Email1Address || user.Email2Address;
|
|
34
31
|
}
|
|
35
32
|
default:
|
|
36
33
|
return null;
|
|
37
34
|
}
|
|
38
|
-
}
|
|
39
|
-
|
|
35
|
+
}
|
|
36
|
+
getInitials() {
|
|
40
37
|
switch (this.folderName) {
|
|
41
|
-
case
|
|
38
|
+
case FolderNames.contacts:
|
|
42
39
|
{
|
|
43
|
-
|
|
40
|
+
const contact = this.baseItem;
|
|
44
41
|
return this.getInitialsInternal(contact.FirstName, contact.LastName);
|
|
45
42
|
}
|
|
46
|
-
case
|
|
43
|
+
case FolderNames.users:
|
|
47
44
|
{
|
|
48
|
-
|
|
45
|
+
const user = this.baseItem;
|
|
49
46
|
return this.getInitialsInternal(user.FirstName, user.LastName);
|
|
50
47
|
}
|
|
51
48
|
default:
|
|
52
49
|
return null;
|
|
53
50
|
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
|
|
51
|
+
}
|
|
52
|
+
getInitialsInternal(firstName, lastName) {
|
|
53
|
+
const initials = ((firstName === null || firstName === void 0 ? void 0 : firstName.substr(0, 1)) || '') + ((lastName === null || lastName === void 0 ? void 0 : lastName.substr(0, 1)) || '');
|
|
57
54
|
if (initials == '')
|
|
58
55
|
return null;
|
|
59
56
|
return initials;
|
|
60
|
-
}
|
|
61
|
-
|
|
57
|
+
}
|
|
58
|
+
getItemPreview() {
|
|
62
59
|
switch (this.folderName) {
|
|
63
|
-
case
|
|
60
|
+
case FolderNames.contacts:
|
|
64
61
|
{
|
|
65
|
-
|
|
62
|
+
const contact = this.baseItem;
|
|
66
63
|
if (!contact.ProfilePicture)
|
|
67
64
|
return null;
|
|
68
65
|
return {
|
|
@@ -71,9 +68,9 @@ var EWItem = /** @class */ (function () {
|
|
|
71
68
|
height: contact.ProfilePictureHeight || 0
|
|
72
69
|
};
|
|
73
70
|
}
|
|
74
|
-
case
|
|
71
|
+
case FolderNames.users:
|
|
75
72
|
{
|
|
76
|
-
|
|
73
|
+
const user = this.baseItem;
|
|
77
74
|
if (!user.ProfilePicture)
|
|
78
75
|
return null;
|
|
79
76
|
return {
|
|
@@ -85,7 +82,5 @@ var EWItem = /** @class */ (function () {
|
|
|
85
82
|
default:
|
|
86
83
|
return null;
|
|
87
84
|
}
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
}());
|
|
91
|
-
exports.EWItem = EWItem;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
package/lib/data/IApiCart.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
////////////////////////////////////////////
|
|
3
2
|
// //
|
|
4
3
|
// Do not modify this file. //
|
|
5
4
|
// This file is generated by a generator. //
|
|
6
5
|
// //
|
|
7
6
|
////////////////////////////////////////////
|
|
8
|
-
|
|
7
|
+
export {};
|
package/lib/data/IApiColumn.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
package/lib/data/IApiCompany.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
/////////////////////////////////////////////
|
|
3
2
|
// //
|
|
4
3
|
// Do not modify this file. //
|
|
5
4
|
// This file is generated by WcfGenerator. //
|
|
6
5
|
// //
|
|
7
6
|
/////////////////////////////////////////////
|
|
8
|
-
|
|
7
|
+
export {};
|
package/lib/data/IApiContact.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
/////////////////////////////////////////////
|
|
3
2
|
// //
|
|
4
3
|
// Do not modify this file. //
|
|
5
4
|
// This file is generated by WcfGenerator. //
|
|
6
5
|
// //
|
|
7
6
|
/////////////////////////////////////////////
|
|
8
|
-
|
|
7
|
+
export {};
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
////////////////////////////////////////////
|
|
3
2
|
// //
|
|
4
3
|
// Do not modify this file. //
|
|
5
4
|
// This file is generated by a generator. //
|
|
6
5
|
// //
|
|
7
6
|
////////////////////////////////////////////
|
|
8
|
-
|
|
7
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
package/lib/data/IApiDocument.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
////////////////////////////////////////////
|
|
3
2
|
// //
|
|
4
3
|
// Do not modify this file. //
|
|
5
4
|
// This file is generated by a generator. //
|
|
6
5
|
// //
|
|
7
6
|
////////////////////////////////////////////
|
|
8
|
-
|
|
7
|
+
export {};
|
package/lib/data/IApiEmail.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
////////////////////////////////////////////
|
|
3
2
|
// //
|
|
4
3
|
// Do not modify this file. //
|
|
5
4
|
// This file is generated by a generator. //
|
|
6
5
|
// //
|
|
7
6
|
////////////////////////////////////////////
|
|
8
|
-
|
|
7
|
+
export {};
|
package/lib/data/IApiEnumType.js
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.EnumTypeEditMode = void 0;
|
|
4
|
-
var EnumTypeEditMode;
|
|
1
|
+
export var EnumTypeEditMode;
|
|
5
2
|
(function (EnumTypeEditMode) {
|
|
6
3
|
EnumTypeEditMode["Readonly"] = "Readonly";
|
|
7
4
|
EnumTypeEditMode["VisibleRankDefaultOnly"] = "VisibleRankDefaultOnly";
|
|
8
5
|
EnumTypeEditMode["Editable"] = "Editable";
|
|
9
|
-
})(EnumTypeEditMode
|
|
6
|
+
})(EnumTypeEditMode || (EnumTypeEditMode = {}));
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
////////////////////////////////////////////
|
|
3
2
|
// //
|
|
4
3
|
// Do not modify this file. //
|
|
5
4
|
// This file is generated by a generator. //
|
|
6
5
|
// //
|
|
7
6
|
////////////////////////////////////////////
|
|
8
|
-
|
|
7
|
+
export {};
|
package/lib/data/IApiFeature.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
package/lib/data/IApiFlow.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
////////////////////////////////////////////
|
|
3
2
|
// //
|
|
4
3
|
// Do not modify this file. //
|
|
5
4
|
// This file is generated by a generator. //
|
|
6
5
|
// //
|
|
7
6
|
////////////////////////////////////////////
|
|
8
|
-
|
|
7
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
package/lib/data/IApiGoal.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
////////////////////////////////////////////
|
|
3
2
|
// //
|
|
4
3
|
// Do not modify this file. //
|
|
5
4
|
// This file is generated by a generator. //
|
|
6
5
|
// //
|
|
7
6
|
////////////////////////////////////////////
|
|
8
|
-
|
|
7
|
+
export {};
|
package/lib/data/IApiGood.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
////////////////////////////////////////////
|
|
3
2
|
// //
|
|
4
3
|
// Do not modify this file. //
|
|
5
4
|
// This file is generated by a generator. //
|
|
6
5
|
// //
|
|
7
6
|
////////////////////////////////////////////
|
|
8
|
-
|
|
7
|
+
export {};
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
////////////////////////////////////////////
|
|
3
2
|
// //
|
|
4
3
|
// Do not modify this file. //
|
|
5
4
|
// This file is generated by a generator. //
|
|
6
5
|
// //
|
|
7
6
|
////////////////////////////////////////////
|
|
8
|
-
|
|
7
|
+
export {};
|
package/lib/data/IApiGroup.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
package/lib/data/IApiItemBase.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
package/lib/data/IApiJournal.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
////////////////////////////////////////////
|
|
3
2
|
// //
|
|
4
3
|
// Do not modify this file. //
|
|
5
4
|
// This file is generated by a generator. //
|
|
6
5
|
// //
|
|
7
6
|
////////////////////////////////////////////
|
|
8
|
-
|
|
7
|
+
export {};
|
package/lib/data/IApiLead.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
/////////////////////////////////////////////
|
|
3
2
|
// //
|
|
4
3
|
// Do not modify this file. //
|
|
5
4
|
// This file is generated by WcfGenerator. //
|
|
6
5
|
// //
|
|
7
6
|
/////////////////////////////////////////////
|
|
8
|
-
|
|
7
|
+
export {};
|
package/lib/data/IApiLicense.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
////////////////////////////////////////////
|
|
3
2
|
// //
|
|
4
3
|
// Do not modify this file. //
|
|
5
4
|
// This file is generated by a generator. //
|
|
6
5
|
// //
|
|
7
6
|
////////////////////////////////////////////
|
|
8
|
-
|
|
7
|
+
export {};
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
////////////////////////////////////////////
|
|
3
2
|
// //
|
|
4
3
|
// Do not modify this file. //
|
|
5
4
|
// This file is generated by a generator. //
|
|
6
5
|
// //
|
|
7
6
|
////////////////////////////////////////////
|
|
8
|
-
|
|
7
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|