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