retold-data-service 2.0.34 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "retold-data-service",
3
- "version": "2.0.34",
3
+ "version": "2.0.36",
4
4
  "description": "Serve up a whole model!",
5
5
  "main": "source/Retold-Data-Service.js",
6
6
  "bin": {
@@ -68,18 +68,18 @@
68
68
  },
69
69
  "dependencies": {
70
70
  "bibliograph": "^0.1.4",
71
- "fable": "^3.1.67",
71
+ "fable": "^3.1.68",
72
72
  "fable-serviceproviderbase": "^3.0.19",
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.23",
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",
80
80
  "orator-serviceserver-restify": "^2.0.10",
81
81
  "orator-static-server": "^2.0.4",
82
- "pict": "^1.0.361",
82
+ "pict": "^1.0.363",
83
83
  "pict-section-histogram": "^1.0.0",
84
84
  "pict-sessionmanager": "^1.0.2",
85
85
  "stricture": "^4.0.2"
@@ -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: {}