@genesislcap/foundation-comms 14.236.1-alpha-ed0d291.0 → 14.236.1-alpha-b20f842.0
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.
@@ -76,13 +76,13 @@ let DefaultDatasource = class DefaultDatasource {
|
|
76
76
|
this.reportStatus();
|
77
77
|
return false;
|
78
78
|
}
|
79
|
+
if (this.fetchMetadataRequired) {
|
80
|
+
yield this.fetchAndApplyMetadata(this.options.resourceName);
|
81
|
+
}
|
79
82
|
logger.debug(`Initializing ${resourceName} datasource from ${this.connect.host}`);
|
80
83
|
if (!this.options.isSnapshot && startStream) {
|
81
84
|
this.stream = yield this.createStream();
|
82
85
|
}
|
83
|
-
if (this.fetchMetadataRequired) {
|
84
|
-
yield this.fetchAndApplyMetadata(this.options.resourceName);
|
85
|
-
}
|
86
86
|
logger.debug(`${resourceName} datasource initialization ${this.initialized ? `was successful.` : 'has failed.'}`);
|
87
87
|
this.reportStatus();
|
88
88
|
return this.initialized;
|
@@ -234,7 +234,7 @@ let DefaultDatasource = class DefaultDatasource {
|
|
234
234
|
return __awaiter(this, void 0, void 0, function* () {
|
235
235
|
try {
|
236
236
|
logger.debug(`Requesting metadata for ${this.options.resourceName} Datasource`);
|
237
|
-
const meta = yield this.connect.getMetadata(this.options.resourceName
|
237
|
+
const meta = yield this.connect.getMetadata(this.options.resourceName);
|
238
238
|
if (meta) {
|
239
239
|
this.availableIndexes = (_a = meta.INDEXES) !== null && _a !== void 0 ? _a : [];
|
240
240
|
this.originalFieldDef = extractFieldDefinitions(meta);
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@genesislcap/foundation-comms",
|
3
3
|
"description": "Genesis Foundation UI Comms",
|
4
|
-
"version": "14.236.1-alpha-
|
4
|
+
"version": "14.236.1-alpha-b20f842.0",
|
5
5
|
"sideEffects": false,
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
7
7
|
"main": "dist/esm/index.js",
|
@@ -75,23 +75,23 @@
|
|
75
75
|
}
|
76
76
|
},
|
77
77
|
"devDependencies": {
|
78
|
-
"@genesislcap/foundation-testing": "14.236.1-alpha-
|
79
|
-
"@genesislcap/genx": "14.236.1-alpha-
|
80
|
-
"@genesislcap/rollup-builder": "14.236.1-alpha-
|
81
|
-
"@genesislcap/ts-builder": "14.236.1-alpha-
|
82
|
-
"@genesislcap/uvu-playwright-builder": "14.236.1-alpha-
|
83
|
-
"@genesislcap/vite-builder": "14.236.1-alpha-
|
84
|
-
"@genesislcap/webpack-builder": "14.236.1-alpha-
|
78
|
+
"@genesislcap/foundation-testing": "14.236.1-alpha-b20f842.0",
|
79
|
+
"@genesislcap/genx": "14.236.1-alpha-b20f842.0",
|
80
|
+
"@genesislcap/rollup-builder": "14.236.1-alpha-b20f842.0",
|
81
|
+
"@genesislcap/ts-builder": "14.236.1-alpha-b20f842.0",
|
82
|
+
"@genesislcap/uvu-playwright-builder": "14.236.1-alpha-b20f842.0",
|
83
|
+
"@genesislcap/vite-builder": "14.236.1-alpha-b20f842.0",
|
84
|
+
"@genesislcap/webpack-builder": "14.236.1-alpha-b20f842.0",
|
85
85
|
"@types/js-cookie": "^3.0.2",
|
86
86
|
"@types/json-schema": "^7.0.11",
|
87
87
|
"@types/webappsec-credential-management": "^0.6.2",
|
88
88
|
"rimraf": "^5.0.0"
|
89
89
|
},
|
90
90
|
"dependencies": {
|
91
|
-
"@genesislcap/foundation-broadcast-channel": "14.236.1-alpha-
|
92
|
-
"@genesislcap/foundation-logger": "14.236.1-alpha-
|
93
|
-
"@genesislcap/foundation-user": "14.236.1-alpha-
|
94
|
-
"@genesislcap/foundation-utils": "14.236.1-alpha-
|
91
|
+
"@genesislcap/foundation-broadcast-channel": "14.236.1-alpha-b20f842.0",
|
92
|
+
"@genesislcap/foundation-logger": "14.236.1-alpha-b20f842.0",
|
93
|
+
"@genesislcap/foundation-user": "14.236.1-alpha-b20f842.0",
|
94
|
+
"@genesislcap/foundation-utils": "14.236.1-alpha-b20f842.0",
|
95
95
|
"@microsoft/fast-element": "1.14.0",
|
96
96
|
"@microsoft/fast-foundation": "2.49.6",
|
97
97
|
"analytics": "^0.8.0",
|
@@ -111,5 +111,5 @@
|
|
111
111
|
"publishConfig": {
|
112
112
|
"access": "public"
|
113
113
|
},
|
114
|
-
"gitHead": "
|
114
|
+
"gitHead": "ac341cc02fdc201a87ec3181f4d6b2e0f1e7e0e0"
|
115
115
|
}
|