retold-data-service 2.0.35 → 2.0.36
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/package.json +2 -2
- package/source/services/data-cloner/pict-app/views/PictView-DataCloner-Export.js +28 -0
- package/source/services/data-cloner/web/data-cloner.js +24 -0
- package/source/services/data-cloner/web/data-cloner.js.map +1 -1
- package/source/services/data-cloner/web/data-cloner.min.js +1 -1
- package/source/services/data-cloner/web/data-cloner.min.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "retold-data-service",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.36",
|
|
4
4
|
"description": "Serve up a whole model!",
|
|
5
5
|
"main": "source/Retold-Data-Service.js",
|
|
6
6
|
"bin": {
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"meadow": "^2.0.33",
|
|
74
74
|
"meadow-connection-mysql": "^1.0.14",
|
|
75
75
|
"meadow-endpoints": "^4.0.15",
|
|
76
|
-
"meadow-integration": "^1.0.
|
|
76
|
+
"meadow-integration": "^1.0.28",
|
|
77
77
|
"meadow-migrationmanager": "^0.0.9",
|
|
78
78
|
"orator": "^6.0.4",
|
|
79
79
|
"orator-http-proxy": "^1.0.5",
|
|
@@ -103,6 +103,20 @@ class DataClonerExportView extends libPictView
|
|
|
103
103
|
if (tmpMaxRecords > 0) tmpConfig.Sync.MaxRecords = tmpMaxRecords;
|
|
104
104
|
if (document.getElementById('syncAdvancedIDPagination').checked) tmpConfig.Sync.UseAdvancedIDPagination = true;
|
|
105
105
|
|
|
106
|
+
// Strategy-specific options
|
|
107
|
+
let tmpBackSyncEl = document.getElementById('backSyncTimeLimit');
|
|
108
|
+
if (tmpBackSyncEl)
|
|
109
|
+
{
|
|
110
|
+
let tmpBackSyncTimeLimit = parseInt(tmpBackSyncEl.value, 10);
|
|
111
|
+
if (tmpBackSyncTimeLimit > 0) tmpConfig.Sync.BackSyncTimeLimit = tmpBackSyncTimeLimit;
|
|
112
|
+
}
|
|
113
|
+
let tmpTrueUpEl = document.getElementById('trueUpPageSize');
|
|
114
|
+
if (tmpTrueUpEl)
|
|
115
|
+
{
|
|
116
|
+
let tmpTrueUpPageSize = parseInt(tmpTrueUpEl.value, 10);
|
|
117
|
+
if (tmpTrueUpPageSize > 0) tmpConfig.Sync.TrueUpPageSize = tmpTrueUpPageSize;
|
|
118
|
+
}
|
|
119
|
+
|
|
106
120
|
return tmpConfig;
|
|
107
121
|
}
|
|
108
122
|
|
|
@@ -172,6 +186,20 @@ class DataClonerExportView extends libPictView
|
|
|
172
186
|
tmpConfig.Sync.SyncEntityOptions = {};
|
|
173
187
|
if (document.getElementById('syncAdvancedIDPagination').checked) tmpConfig.Sync.UseAdvancedIDPagination = true;
|
|
174
188
|
|
|
189
|
+
// Strategy-specific options
|
|
190
|
+
let tmpBackSyncEl = document.getElementById('backSyncTimeLimit');
|
|
191
|
+
if (tmpBackSyncEl)
|
|
192
|
+
{
|
|
193
|
+
let tmpBackSyncTimeLimit = parseInt(tmpBackSyncEl.value, 10);
|
|
194
|
+
if (tmpBackSyncTimeLimit > 0) tmpConfig.Sync.BackSyncTimeLimit = tmpBackSyncTimeLimit;
|
|
195
|
+
}
|
|
196
|
+
let tmpTrueUpEl = document.getElementById('trueUpPageSize');
|
|
197
|
+
if (tmpTrueUpEl)
|
|
198
|
+
{
|
|
199
|
+
let tmpTrueUpPageSize = parseInt(tmpTrueUpEl.value, 10);
|
|
200
|
+
if (tmpTrueUpPageSize > 0) tmpConfig.Sync.TrueUpPageSize = tmpTrueUpPageSize;
|
|
201
|
+
}
|
|
202
|
+
|
|
175
203
|
// ---- SessionManager ----
|
|
176
204
|
tmpConfig.SessionManager = { Sessions: {} };
|
|
177
205
|
|
|
@@ -6417,6 +6417,18 @@
|
|
|
6417
6417
|
let tmpMaxRecords = parseInt(document.getElementById('syncMaxRecords').value, 10);
|
|
6418
6418
|
if (tmpMaxRecords > 0) tmpConfig.Sync.MaxRecords = tmpMaxRecords;
|
|
6419
6419
|
if (document.getElementById('syncAdvancedIDPagination').checked) tmpConfig.Sync.UseAdvancedIDPagination = true;
|
|
6420
|
+
|
|
6421
|
+
// Strategy-specific options
|
|
6422
|
+
let tmpBackSyncEl = document.getElementById('backSyncTimeLimit');
|
|
6423
|
+
if (tmpBackSyncEl) {
|
|
6424
|
+
let tmpBackSyncTimeLimit = parseInt(tmpBackSyncEl.value, 10);
|
|
6425
|
+
if (tmpBackSyncTimeLimit > 0) tmpConfig.Sync.BackSyncTimeLimit = tmpBackSyncTimeLimit;
|
|
6426
|
+
}
|
|
6427
|
+
let tmpTrueUpEl = document.getElementById('trueUpPageSize');
|
|
6428
|
+
if (tmpTrueUpEl) {
|
|
6429
|
+
let tmpTrueUpPageSize = parseInt(tmpTrueUpEl.value, 10);
|
|
6430
|
+
if (tmpTrueUpPageSize > 0) tmpConfig.Sync.TrueUpPageSize = tmpTrueUpPageSize;
|
|
6431
|
+
}
|
|
6420
6432
|
return tmpConfig;
|
|
6421
6433
|
}
|
|
6422
6434
|
buildMeadowIntegrationConfig() {
|
|
@@ -6485,6 +6497,18 @@
|
|
|
6485
6497
|
tmpConfig.Sync.SyncEntityOptions = {};
|
|
6486
6498
|
if (document.getElementById('syncAdvancedIDPagination').checked) tmpConfig.Sync.UseAdvancedIDPagination = true;
|
|
6487
6499
|
|
|
6500
|
+
// Strategy-specific options
|
|
6501
|
+
let tmpBackSyncEl = document.getElementById('backSyncTimeLimit');
|
|
6502
|
+
if (tmpBackSyncEl) {
|
|
6503
|
+
let tmpBackSyncTimeLimit = parseInt(tmpBackSyncEl.value, 10);
|
|
6504
|
+
if (tmpBackSyncTimeLimit > 0) tmpConfig.Sync.BackSyncTimeLimit = tmpBackSyncTimeLimit;
|
|
6505
|
+
}
|
|
6506
|
+
let tmpTrueUpEl = document.getElementById('trueUpPageSize');
|
|
6507
|
+
if (tmpTrueUpEl) {
|
|
6508
|
+
let tmpTrueUpPageSize = parseInt(tmpTrueUpEl.value, 10);
|
|
6509
|
+
if (tmpTrueUpPageSize > 0) tmpConfig.Sync.TrueUpPageSize = tmpTrueUpPageSize;
|
|
6510
|
+
}
|
|
6511
|
+
|
|
6488
6512
|
// ---- SessionManager ----
|
|
6489
6513
|
tmpConfig.SessionManager = {
|
|
6490
6514
|
Sessions: {}
|