@salesforce/lds-adapters-platform-applications 1.349.0 → 1.351.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.
- package/dist/es/es2018/platform-applications.js +275 -41
- package/dist/es/es2018/types/src/generated/adapters/getSalesforceApp.d.ts +26 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +3 -1
- package/dist/es/es2018/types/src/generated/resources/getConnectSalesforceApps.d.ts +12 -0
- package/dist/es/es2018/types/src/generated/types/SalesforceAppItemDetailsRepresentation.d.ts +40 -0
- package/dist/es/es2018/types/src/generated/types/SalesforceAppsRepresentation.d.ts +30 -0
- package/package.json +3 -3
- package/sfdc/index.js +353 -107
- package/src/raml/api.raml +38 -0
- package/src/raml/luvio.raml +7 -0
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* For full license text, see the LICENSE.txt file
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import { serializeStructuredKey, ingestShape, deepFreeze, buildNetworkSnapshotCachePolicy as buildNetworkSnapshotCachePolicy$
|
|
7
|
+
import { serializeStructuredKey, ingestShape, deepFreeze, buildNetworkSnapshotCachePolicy as buildNetworkSnapshotCachePolicy$3, typeCheckConfig as typeCheckConfig$3, StoreKeyMap, createResourceParams as createResourceParams$3 } from '@luvio/engine';
|
|
8
8
|
|
|
9
9
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
10
10
|
const { keys: ObjectKeys, create: ObjectCreate } = Object;
|
|
@@ -79,7 +79,7 @@ function createLink(ref) {
|
|
|
79
79
|
};
|
|
80
80
|
}
|
|
81
81
|
|
|
82
|
-
function validate$
|
|
82
|
+
function validate$5(obj, path = 'ExplorerViewItem') {
|
|
83
83
|
const v_error = (() => {
|
|
84
84
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
85
85
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -102,7 +102,7 @@ function validate$3(obj, path = 'ExplorerViewItem') {
|
|
|
102
102
|
for (let i = 0; i < obj_items.length; i++) {
|
|
103
103
|
const obj_items_item = obj_items[i];
|
|
104
104
|
const path_items_item = path_items + '[' + i + ']';
|
|
105
|
-
const referencepath_items_itemValidationError = validate$
|
|
105
|
+
const referencepath_items_itemValidationError = validate$5(obj_items_item, path_items_item);
|
|
106
106
|
if (referencepath_items_itemValidationError !== null) {
|
|
107
107
|
let message = 'Object doesn\'t match ExplorerViewItem (at "' + path_items_item + '")\n';
|
|
108
108
|
message += referencepath_items_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -123,9 +123,9 @@ function validate$3(obj, path = 'ExplorerViewItem') {
|
|
|
123
123
|
return v_error === undefined ? null : v_error;
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
-
const TTL$
|
|
127
|
-
const VERSION$
|
|
128
|
-
function validate$
|
|
126
|
+
const TTL$2 = 100000;
|
|
127
|
+
const VERSION$2 = "f7fb4db32a91c595a968707c48621271";
|
|
128
|
+
function validate$4(obj, path = 'ExplorerViewRepresentation') {
|
|
129
129
|
const v_error = (() => {
|
|
130
130
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
131
131
|
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
@@ -137,7 +137,7 @@ function validate$2(obj, path = 'ExplorerViewRepresentation') {
|
|
|
137
137
|
}
|
|
138
138
|
const obj_rootItem = obj.rootItem;
|
|
139
139
|
const path_rootItem = path + '.rootItem';
|
|
140
|
-
const referencepath_rootItemValidationError = validate$
|
|
140
|
+
const referencepath_rootItemValidationError = validate$5(obj_rootItem, path_rootItem);
|
|
141
141
|
if (referencepath_rootItemValidationError !== null) {
|
|
142
142
|
let message = 'Object doesn\'t match ExplorerViewItem (at "' + path_rootItem + '")\n';
|
|
143
143
|
message += referencepath_rootItemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
@@ -146,20 +146,259 @@ function validate$2(obj, path = 'ExplorerViewRepresentation') {
|
|
|
146
146
|
})();
|
|
147
147
|
return v_error === undefined ? null : v_error;
|
|
148
148
|
}
|
|
149
|
-
const RepresentationType$
|
|
150
|
-
function keyBuilder$
|
|
151
|
-
return keyPrefix + '::' + RepresentationType$
|
|
149
|
+
const RepresentationType$2 = 'ExplorerViewRepresentation';
|
|
150
|
+
function keyBuilder$6(luvio, config) {
|
|
151
|
+
return keyPrefix + '::' + RepresentationType$2 + ':' + config.metadataId;
|
|
152
152
|
}
|
|
153
153
|
function keyBuilderFromType(luvio, object) {
|
|
154
154
|
const keyParams = {
|
|
155
155
|
metadataId: object.metadataId
|
|
156
156
|
};
|
|
157
|
-
return keyBuilder$
|
|
157
|
+
return keyBuilder$6(luvio, keyParams);
|
|
158
|
+
}
|
|
159
|
+
function normalize$2(input, existing, path, luvio, store, timestamp) {
|
|
160
|
+
return input;
|
|
161
|
+
}
|
|
162
|
+
const select$5 = function ExplorerViewRepresentationSelect() {
|
|
163
|
+
return {
|
|
164
|
+
kind: 'Fragment',
|
|
165
|
+
version: VERSION$2,
|
|
166
|
+
private: [],
|
|
167
|
+
opaque: true
|
|
168
|
+
};
|
|
169
|
+
};
|
|
170
|
+
function equals$2(existing, incoming) {
|
|
171
|
+
if (JSONStringify(incoming) !== JSONStringify(existing)) {
|
|
172
|
+
return false;
|
|
173
|
+
}
|
|
174
|
+
return true;
|
|
175
|
+
}
|
|
176
|
+
const ingest$2 = function ExplorerViewRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
177
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
178
|
+
const validateError = validate$4(input);
|
|
179
|
+
if (validateError !== null) {
|
|
180
|
+
throw validateError;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
const key = keyBuilderFromType(luvio, input);
|
|
184
|
+
const ttlToUse = TTL$2;
|
|
185
|
+
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$2, "applications", VERSION$2, RepresentationType$2, equals$2);
|
|
186
|
+
return createLink(key);
|
|
187
|
+
};
|
|
188
|
+
function getTypeCacheKeys$2(rootKeySet, luvio, input, fullPathFactory) {
|
|
189
|
+
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
190
|
+
const rootKey = keyBuilderFromType(luvio, input);
|
|
191
|
+
rootKeySet.set(rootKey, {
|
|
192
|
+
namespace: keyPrefix,
|
|
193
|
+
representationName: RepresentationType$2,
|
|
194
|
+
mergeable: false
|
|
195
|
+
});
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
function select$4(luvio, params) {
|
|
199
|
+
return select$5();
|
|
200
|
+
}
|
|
201
|
+
function keyBuilder$5(luvio, params) {
|
|
202
|
+
return keyBuilder$6(luvio, {
|
|
203
|
+
metadataId: params.urlParams.metadataId
|
|
204
|
+
});
|
|
205
|
+
}
|
|
206
|
+
function getResponseCacheKeys$2(storeKeyMap, luvio, resourceParams, response) {
|
|
207
|
+
getTypeCacheKeys$2(storeKeyMap, luvio, response);
|
|
208
|
+
}
|
|
209
|
+
function ingestSuccess$2(luvio, resourceParams, response, snapshotRefresh) {
|
|
210
|
+
const { body } = response;
|
|
211
|
+
const key = keyBuilder$5(luvio, resourceParams);
|
|
212
|
+
luvio.storeIngest(key, ingest$2, body);
|
|
213
|
+
const snapshot = luvio.storeLookup({
|
|
214
|
+
recordId: key,
|
|
215
|
+
node: select$4(),
|
|
216
|
+
variables: {},
|
|
217
|
+
}, snapshotRefresh);
|
|
218
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
219
|
+
if (snapshot.state !== 'Fulfilled') {
|
|
220
|
+
throw new Error('Invalid network response. Expected resource response to result in Fulfilled snapshot');
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
deepFreeze(snapshot.data);
|
|
224
|
+
return snapshot;
|
|
225
|
+
}
|
|
226
|
+
function ingestError$2(luvio, params, error, snapshotRefresh) {
|
|
227
|
+
const key = keyBuilder$5(luvio, params);
|
|
228
|
+
const errorSnapshot = luvio.errorSnapshot(error, snapshotRefresh);
|
|
229
|
+
const storeMetadataParams = {
|
|
230
|
+
ttl: TTL$2,
|
|
231
|
+
namespace: keyPrefix,
|
|
232
|
+
version: VERSION$2,
|
|
233
|
+
representationName: RepresentationType$2
|
|
234
|
+
};
|
|
235
|
+
luvio.storeIngestError(key, errorSnapshot, storeMetadataParams);
|
|
236
|
+
return errorSnapshot;
|
|
158
237
|
}
|
|
238
|
+
function createResourceRequest$2(config) {
|
|
239
|
+
const headers = {};
|
|
240
|
+
return {
|
|
241
|
+
baseUri: '/services/data/v64.0',
|
|
242
|
+
basePath: '/connect/explorer-view/' + config.urlParams.metadataId + '',
|
|
243
|
+
method: 'get',
|
|
244
|
+
body: null,
|
|
245
|
+
urlParams: config.urlParams,
|
|
246
|
+
queryParams: {},
|
|
247
|
+
headers,
|
|
248
|
+
priority: 'normal',
|
|
249
|
+
};
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
const adapterName$2 = 'getExplorerView';
|
|
253
|
+
const getExplorerView_ConfigPropertyMetadata = [
|
|
254
|
+
generateParamConfigMetadata('metadataId', true, 0 /* UrlParameter */, 0 /* String */),
|
|
255
|
+
];
|
|
256
|
+
const getExplorerView_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$2, getExplorerView_ConfigPropertyMetadata);
|
|
257
|
+
const createResourceParams$2 = /*#__PURE__*/ createResourceParams$3(getExplorerView_ConfigPropertyMetadata);
|
|
258
|
+
function keyBuilder$4(luvio, config) {
|
|
259
|
+
const resourceParams = createResourceParams$2(config);
|
|
260
|
+
return keyBuilder$5(luvio, resourceParams);
|
|
261
|
+
}
|
|
262
|
+
function typeCheckConfig$2(untrustedConfig) {
|
|
263
|
+
const config = {};
|
|
264
|
+
typeCheckConfig$3(untrustedConfig, config, getExplorerView_ConfigPropertyMetadata);
|
|
265
|
+
return config;
|
|
266
|
+
}
|
|
267
|
+
function validateAdapterConfig$2(untrustedConfig, configPropertyNames) {
|
|
268
|
+
if (!untrustedIsObject(untrustedConfig)) {
|
|
269
|
+
return null;
|
|
270
|
+
}
|
|
271
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
272
|
+
validateConfig(untrustedConfig, configPropertyNames);
|
|
273
|
+
}
|
|
274
|
+
const config = typeCheckConfig$2(untrustedConfig);
|
|
275
|
+
if (!areRequiredParametersPresent(config, configPropertyNames)) {
|
|
276
|
+
return null;
|
|
277
|
+
}
|
|
278
|
+
return config;
|
|
279
|
+
}
|
|
280
|
+
function adapterFragment$2(luvio, config) {
|
|
281
|
+
createResourceParams$2(config);
|
|
282
|
+
return select$4();
|
|
283
|
+
}
|
|
284
|
+
function onFetchResponseSuccess$2(luvio, config, resourceParams, response) {
|
|
285
|
+
const snapshot = ingestSuccess$2(luvio, resourceParams, response, {
|
|
286
|
+
config,
|
|
287
|
+
resolve: () => buildNetworkSnapshot$2(luvio, config, snapshotRefreshOptions)
|
|
288
|
+
});
|
|
289
|
+
return luvio.storeBroadcast().then(() => snapshot);
|
|
290
|
+
}
|
|
291
|
+
function onFetchResponseError$2(luvio, config, resourceParams, response) {
|
|
292
|
+
const snapshot = ingestError$2(luvio, resourceParams, response, {
|
|
293
|
+
config,
|
|
294
|
+
resolve: () => buildNetworkSnapshot$2(luvio, config, snapshotRefreshOptions)
|
|
295
|
+
});
|
|
296
|
+
return luvio.storeBroadcast().then(() => snapshot);
|
|
297
|
+
}
|
|
298
|
+
function buildNetworkSnapshot$2(luvio, config, options) {
|
|
299
|
+
const resourceParams = createResourceParams$2(config);
|
|
300
|
+
const request = createResourceRequest$2(resourceParams);
|
|
301
|
+
return luvio.dispatchResourceRequest(request, options)
|
|
302
|
+
.then((response) => {
|
|
303
|
+
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$2(luvio, config, resourceParams, response), () => {
|
|
304
|
+
const cache = new StoreKeyMap();
|
|
305
|
+
getResponseCacheKeys$2(cache, luvio, resourceParams, response.body);
|
|
306
|
+
return cache;
|
|
307
|
+
});
|
|
308
|
+
}, (response) => {
|
|
309
|
+
return luvio.handleErrorResponse(() => onFetchResponseError$2(luvio, config, resourceParams, response));
|
|
310
|
+
});
|
|
311
|
+
}
|
|
312
|
+
function buildNetworkSnapshotCachePolicy$2(context, coercedAdapterRequestContext) {
|
|
313
|
+
return buildNetworkSnapshotCachePolicy$3(context, coercedAdapterRequestContext, buildNetworkSnapshot$2, undefined, false);
|
|
314
|
+
}
|
|
315
|
+
function buildCachedSnapshotCachePolicy$2(context, storeLookup) {
|
|
316
|
+
const { luvio, config } = context;
|
|
317
|
+
const selector = {
|
|
318
|
+
recordId: keyBuilder$4(luvio, config),
|
|
319
|
+
node: adapterFragment$2(luvio, config),
|
|
320
|
+
variables: {},
|
|
321
|
+
};
|
|
322
|
+
const cacheSnapshot = storeLookup(selector, {
|
|
323
|
+
config,
|
|
324
|
+
resolve: () => buildNetworkSnapshot$2(luvio, config, snapshotRefreshOptions)
|
|
325
|
+
});
|
|
326
|
+
return cacheSnapshot;
|
|
327
|
+
}
|
|
328
|
+
const getExplorerViewAdapterFactory = (luvio) => function applications__getExplorerView(untrustedConfig, requestContext) {
|
|
329
|
+
const config = validateAdapterConfig$2(untrustedConfig, getExplorerView_ConfigPropertyNames);
|
|
330
|
+
// Invalid or incomplete config
|
|
331
|
+
if (config === null) {
|
|
332
|
+
return null;
|
|
333
|
+
}
|
|
334
|
+
return luvio.applyCachePolicy((requestContext || {}), { config, luvio }, // BuildSnapshotContext
|
|
335
|
+
buildCachedSnapshotCachePolicy$2, buildNetworkSnapshotCachePolicy$2);
|
|
336
|
+
};
|
|
337
|
+
|
|
338
|
+
function validate$3(obj, path = 'SalesforceAppItemDetailsRepresentation') {
|
|
339
|
+
const v_error = (() => {
|
|
340
|
+
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
341
|
+
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
342
|
+
}
|
|
343
|
+
const obj_description = obj.description;
|
|
344
|
+
const path_description = path + '.description';
|
|
345
|
+
if (typeof obj_description !== 'string') {
|
|
346
|
+
return new TypeError('Expected "string" but received "' + typeof obj_description + '" (at "' + path_description + '")');
|
|
347
|
+
}
|
|
348
|
+
const obj_developerName = obj.developerName;
|
|
349
|
+
const path_developerName = path + '.developerName';
|
|
350
|
+
if (typeof obj_developerName !== 'string') {
|
|
351
|
+
return new TypeError('Expected "string" but received "' + typeof obj_developerName + '" (at "' + path_developerName + '")');
|
|
352
|
+
}
|
|
353
|
+
const obj_lastModifiedDate = obj.lastModifiedDate;
|
|
354
|
+
const path_lastModifiedDate = path + '.lastModifiedDate';
|
|
355
|
+
if (typeof obj_lastModifiedDate !== 'string') {
|
|
356
|
+
return new TypeError('Expected "string" but received "' + typeof obj_lastModifiedDate + '" (at "' + path_lastModifiedDate + '")');
|
|
357
|
+
}
|
|
358
|
+
const obj_masterLabel = obj.masterLabel;
|
|
359
|
+
const path_masterLabel = path + '.masterLabel';
|
|
360
|
+
if (typeof obj_masterLabel !== 'string') {
|
|
361
|
+
return new TypeError('Expected "string" but received "' + typeof obj_masterLabel + '" (at "' + path_masterLabel + '")');
|
|
362
|
+
}
|
|
363
|
+
const obj_salesforceAppId = obj.salesforceAppId;
|
|
364
|
+
const path_salesforceAppId = path + '.salesforceAppId';
|
|
365
|
+
if (typeof obj_salesforceAppId !== 'string') {
|
|
366
|
+
return new TypeError('Expected "string" but received "' + typeof obj_salesforceAppId + '" (at "' + path_salesforceAppId + '")');
|
|
367
|
+
}
|
|
368
|
+
})();
|
|
369
|
+
return v_error === undefined ? null : v_error;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
const TTL$1 = 100000;
|
|
373
|
+
const VERSION$1 = "fd96561b9186438b07fe0b9d011009a5";
|
|
374
|
+
function validate$2(obj, path = 'SalesforceAppsRepresentation') {
|
|
375
|
+
const v_error = (() => {
|
|
376
|
+
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
377
|
+
return new TypeError('Expected "object" but received "' + typeof obj + '" (at "' + path + '")');
|
|
378
|
+
}
|
|
379
|
+
const obj_salesforceApps = obj.salesforceApps;
|
|
380
|
+
const path_salesforceApps = path + '.salesforceApps';
|
|
381
|
+
if (!ArrayIsArray(obj_salesforceApps)) {
|
|
382
|
+
return new TypeError('Expected "array" but received "' + typeof obj_salesforceApps + '" (at "' + path_salesforceApps + '")');
|
|
383
|
+
}
|
|
384
|
+
for (let i = 0; i < obj_salesforceApps.length; i++) {
|
|
385
|
+
const obj_salesforceApps_item = obj_salesforceApps[i];
|
|
386
|
+
const path_salesforceApps_item = path_salesforceApps + '[' + i + ']';
|
|
387
|
+
const referencepath_salesforceApps_itemValidationError = validate$3(obj_salesforceApps_item, path_salesforceApps_item);
|
|
388
|
+
if (referencepath_salesforceApps_itemValidationError !== null) {
|
|
389
|
+
let message = 'Object doesn\'t match SalesforceAppItemDetailsRepresentation (at "' + path_salesforceApps_item + '")\n';
|
|
390
|
+
message += referencepath_salesforceApps_itemValidationError.message.split('\n').map((line) => '\t' + line).join('\n');
|
|
391
|
+
return new TypeError(message);
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
})();
|
|
395
|
+
return v_error === undefined ? null : v_error;
|
|
396
|
+
}
|
|
397
|
+
const RepresentationType$1 = 'SalesforceAppsRepresentation';
|
|
159
398
|
function normalize$1(input, existing, path, luvio, store, timestamp) {
|
|
160
399
|
return input;
|
|
161
400
|
}
|
|
162
|
-
const select$3 = function
|
|
401
|
+
const select$3 = function SalesforceAppsRepresentationSelect() {
|
|
163
402
|
return {
|
|
164
403
|
kind: 'Fragment',
|
|
165
404
|
version: VERSION$1,
|
|
@@ -173,21 +412,21 @@ function equals$1(existing, incoming) {
|
|
|
173
412
|
}
|
|
174
413
|
return true;
|
|
175
414
|
}
|
|
176
|
-
const ingest$1 = function
|
|
415
|
+
const ingest$1 = function SalesforceAppsRepresentationIngest(input, path, luvio, store, timestamp) {
|
|
177
416
|
if (process.env.NODE_ENV !== 'production') {
|
|
178
417
|
const validateError = validate$2(input);
|
|
179
418
|
if (validateError !== null) {
|
|
180
419
|
throw validateError;
|
|
181
420
|
}
|
|
182
421
|
}
|
|
183
|
-
const key =
|
|
422
|
+
const key = path.fullPath;
|
|
184
423
|
const ttlToUse = TTL$1;
|
|
185
424
|
ingestShape(input, path, luvio, store, timestamp, ttlToUse, key, normalize$1, "applications", VERSION$1, RepresentationType$1, equals$1);
|
|
186
425
|
return createLink(key);
|
|
187
426
|
};
|
|
188
427
|
function getTypeCacheKeys$1(rootKeySet, luvio, input, fullPathFactory) {
|
|
189
428
|
// root cache key (uses fullPathFactory if keyBuilderFromType isn't defined)
|
|
190
|
-
const rootKey =
|
|
429
|
+
const rootKey = fullPathFactory();
|
|
191
430
|
rootKeySet.set(rootKey, {
|
|
192
431
|
namespace: keyPrefix,
|
|
193
432
|
representationName: RepresentationType$1,
|
|
@@ -199,16 +438,14 @@ function select$2(luvio, params) {
|
|
|
199
438
|
return select$3();
|
|
200
439
|
}
|
|
201
440
|
function keyBuilder$3(luvio, params) {
|
|
202
|
-
return
|
|
203
|
-
metadataId: params.urlParams.metadataId
|
|
204
|
-
});
|
|
441
|
+
return keyPrefix + '::SalesforceAppsRepresentation:(' + ')';
|
|
205
442
|
}
|
|
206
443
|
function getResponseCacheKeys$1(storeKeyMap, luvio, resourceParams, response) {
|
|
207
|
-
getTypeCacheKeys$1(storeKeyMap, luvio, response);
|
|
444
|
+
getTypeCacheKeys$1(storeKeyMap, luvio, response, () => keyBuilder$3());
|
|
208
445
|
}
|
|
209
446
|
function ingestSuccess$1(luvio, resourceParams, response, snapshotRefresh) {
|
|
210
447
|
const { body } = response;
|
|
211
|
-
const key = keyBuilder$3(
|
|
448
|
+
const key = keyBuilder$3();
|
|
212
449
|
luvio.storeIngest(key, ingest$1, body);
|
|
213
450
|
const snapshot = luvio.storeLookup({
|
|
214
451
|
recordId: key,
|
|
@@ -224,7 +461,7 @@ function ingestSuccess$1(luvio, resourceParams, response, snapshotRefresh) {
|
|
|
224
461
|
return snapshot;
|
|
225
462
|
}
|
|
226
463
|
function ingestError$1(luvio, params, error, snapshotRefresh) {
|
|
227
|
-
const key = keyBuilder$3(
|
|
464
|
+
const key = keyBuilder$3();
|
|
228
465
|
const errorSnapshot = luvio.errorSnapshot(error, snapshotRefresh);
|
|
229
466
|
const storeMetadataParams = {
|
|
230
467
|
ttl: TTL$1,
|
|
@@ -239,29 +476,26 @@ function createResourceRequest$1(config) {
|
|
|
239
476
|
const headers = {};
|
|
240
477
|
return {
|
|
241
478
|
baseUri: '/services/data/v64.0',
|
|
242
|
-
basePath: '/connect/
|
|
479
|
+
basePath: '/connect/salesforce-apps',
|
|
243
480
|
method: 'get',
|
|
244
481
|
body: null,
|
|
245
|
-
urlParams:
|
|
482
|
+
urlParams: {},
|
|
246
483
|
queryParams: {},
|
|
247
484
|
headers,
|
|
248
485
|
priority: 'normal',
|
|
249
486
|
};
|
|
250
487
|
}
|
|
251
488
|
|
|
252
|
-
const adapterName$1 = '
|
|
253
|
-
const
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
const getExplorerView_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$1, getExplorerView_ConfigPropertyMetadata);
|
|
257
|
-
const createResourceParams$1 = /*#__PURE__*/ createResourceParams$2(getExplorerView_ConfigPropertyMetadata);
|
|
489
|
+
const adapterName$1 = 'getSalesforceApp';
|
|
490
|
+
const getSalesforceApp_ConfigPropertyMetadata = [];
|
|
491
|
+
const getSalesforceApp_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$1, getSalesforceApp_ConfigPropertyMetadata);
|
|
492
|
+
const createResourceParams$1 = /*#__PURE__*/ createResourceParams$3(getSalesforceApp_ConfigPropertyMetadata);
|
|
258
493
|
function keyBuilder$2(luvio, config) {
|
|
259
|
-
|
|
260
|
-
return keyBuilder$3(
|
|
494
|
+
createResourceParams$1(config);
|
|
495
|
+
return keyBuilder$3();
|
|
261
496
|
}
|
|
262
497
|
function typeCheckConfig$1(untrustedConfig) {
|
|
263
498
|
const config = {};
|
|
264
|
-
typeCheckConfig$2(untrustedConfig, config, getExplorerView_ConfigPropertyMetadata);
|
|
265
499
|
return config;
|
|
266
500
|
}
|
|
267
501
|
function validateAdapterConfig$1(untrustedConfig, configPropertyNames) {
|
|
@@ -271,7 +505,7 @@ function validateAdapterConfig$1(untrustedConfig, configPropertyNames) {
|
|
|
271
505
|
if (process.env.NODE_ENV !== 'production') {
|
|
272
506
|
validateConfig(untrustedConfig, configPropertyNames);
|
|
273
507
|
}
|
|
274
|
-
const config = typeCheckConfig$1(
|
|
508
|
+
const config = typeCheckConfig$1();
|
|
275
509
|
if (!areRequiredParametersPresent(config, configPropertyNames)) {
|
|
276
510
|
return null;
|
|
277
511
|
}
|
|
@@ -297,7 +531,7 @@ function onFetchResponseError$1(luvio, config, resourceParams, response) {
|
|
|
297
531
|
}
|
|
298
532
|
function buildNetworkSnapshot$1(luvio, config, options) {
|
|
299
533
|
const resourceParams = createResourceParams$1(config);
|
|
300
|
-
const request = createResourceRequest$1(
|
|
534
|
+
const request = createResourceRequest$1();
|
|
301
535
|
return luvio.dispatchResourceRequest(request, options)
|
|
302
536
|
.then((response) => {
|
|
303
537
|
return luvio.handleSuccessResponse(() => onFetchResponseSuccess$1(luvio, config, resourceParams, response), () => {
|
|
@@ -310,7 +544,7 @@ function buildNetworkSnapshot$1(luvio, config, options) {
|
|
|
310
544
|
});
|
|
311
545
|
}
|
|
312
546
|
function buildNetworkSnapshotCachePolicy$1(context, coercedAdapterRequestContext) {
|
|
313
|
-
return buildNetworkSnapshotCachePolicy$
|
|
547
|
+
return buildNetworkSnapshotCachePolicy$3(context, coercedAdapterRequestContext, buildNetworkSnapshot$1, undefined, false);
|
|
314
548
|
}
|
|
315
549
|
function buildCachedSnapshotCachePolicy$1(context, storeLookup) {
|
|
316
550
|
const { luvio, config } = context;
|
|
@@ -325,8 +559,8 @@ function buildCachedSnapshotCachePolicy$1(context, storeLookup) {
|
|
|
325
559
|
});
|
|
326
560
|
return cacheSnapshot;
|
|
327
561
|
}
|
|
328
|
-
const
|
|
329
|
-
const config = validateAdapterConfig$1(untrustedConfig,
|
|
562
|
+
const getSalesforceAppAdapterFactory = (luvio) => function applications__getSalesforceApp(untrustedConfig, requestContext) {
|
|
563
|
+
const config = validateAdapterConfig$1(untrustedConfig, getSalesforceApp_ConfigPropertyNames);
|
|
330
564
|
// Invalid or incomplete config
|
|
331
565
|
if (config === null) {
|
|
332
566
|
return null;
|
|
@@ -476,14 +710,14 @@ const getMetadataGroupDomainSet_ConfigPropertyMetadata = [
|
|
|
476
710
|
generateParamConfigMetadata('metadataName', false, 1 /* QueryParameter */, 0 /* String */),
|
|
477
711
|
];
|
|
478
712
|
const getMetadataGroupDomainSet_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName, getMetadataGroupDomainSet_ConfigPropertyMetadata);
|
|
479
|
-
const createResourceParams = /*#__PURE__*/ createResourceParams$
|
|
713
|
+
const createResourceParams = /*#__PURE__*/ createResourceParams$3(getMetadataGroupDomainSet_ConfigPropertyMetadata);
|
|
480
714
|
function keyBuilder(luvio, config) {
|
|
481
715
|
const resourceParams = createResourceParams(config);
|
|
482
716
|
return keyBuilder$1(luvio, resourceParams);
|
|
483
717
|
}
|
|
484
718
|
function typeCheckConfig(untrustedConfig) {
|
|
485
719
|
const config = {};
|
|
486
|
-
typeCheckConfig$
|
|
720
|
+
typeCheckConfig$3(untrustedConfig, config, getMetadataGroupDomainSet_ConfigPropertyMetadata);
|
|
487
721
|
return config;
|
|
488
722
|
}
|
|
489
723
|
function validateAdapterConfig(untrustedConfig, configPropertyNames) {
|
|
@@ -532,7 +766,7 @@ function buildNetworkSnapshot(luvio, config, options) {
|
|
|
532
766
|
});
|
|
533
767
|
}
|
|
534
768
|
function buildNetworkSnapshotCachePolicy(context, coercedAdapterRequestContext) {
|
|
535
|
-
return buildNetworkSnapshotCachePolicy$
|
|
769
|
+
return buildNetworkSnapshotCachePolicy$3(context, coercedAdapterRequestContext, buildNetworkSnapshot, undefined, false);
|
|
536
770
|
}
|
|
537
771
|
function buildCachedSnapshotCachePolicy(context, storeLookup) {
|
|
538
772
|
const { luvio, config } = context;
|
|
@@ -557,4 +791,4 @@ const getMetadataGroupDomainSetAdapterFactory = (luvio) => function applications
|
|
|
557
791
|
buildCachedSnapshotCachePolicy, buildNetworkSnapshotCachePolicy);
|
|
558
792
|
};
|
|
559
793
|
|
|
560
|
-
export { getExplorerViewAdapterFactory, getMetadataGroupDomainSetAdapterFactory };
|
|
794
|
+
export { getExplorerViewAdapterFactory, getMetadataGroupDomainSetAdapterFactory, getSalesforceAppAdapterFactory };
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_getConnectSalesforceApps_ResourceRequestConfig } from '../resources/getConnectSalesforceApps';
|
|
4
|
+
import { SalesforceAppsRepresentation as types_SalesforceAppsRepresentation_SalesforceAppsRepresentation } from '../types/SalesforceAppsRepresentation';
|
|
5
|
+
export declare const adapterName = "getSalesforceApp";
|
|
6
|
+
export declare const getSalesforceApp_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getSalesforceApp_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetSalesforceAppConfig {
|
|
9
|
+
}
|
|
10
|
+
export declare const createResourceParams: (config: GetSalesforceAppConfig) => resources_getConnectSalesforceApps_ResourceRequestConfig;
|
|
11
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetSalesforceAppConfig): string;
|
|
12
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetSalesforceAppConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
13
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetSalesforceAppConfig>): adapter$45$utils_Untrusted<GetSalesforceAppConfig>;
|
|
14
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetSalesforceAppConfig | null;
|
|
15
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetSalesforceAppConfig): $64$luvio_engine_Fragment;
|
|
16
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetSalesforceAppConfig): $64$luvio_engine_Snapshot<types_SalesforceAppsRepresentation_SalesforceAppsRepresentation, any>;
|
|
17
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetSalesforceAppConfig, resourceParams: resources_getConnectSalesforceApps_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_SalesforceAppsRepresentation_SalesforceAppsRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_SalesforceAppsRepresentation_SalesforceAppsRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_SalesforceAppsRepresentation_SalesforceAppsRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_SalesforceAppsRepresentation_SalesforceAppsRepresentation, any>>;
|
|
18
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetSalesforceAppConfig, resourceParams: resources_getConnectSalesforceApps_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
19
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetSalesforceAppConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_SalesforceAppsRepresentation_SalesforceAppsRepresentation, any>>;
|
|
20
|
+
export type BuildSnapshotContext = {
|
|
21
|
+
luvio: $64$luvio_engine_Luvio;
|
|
22
|
+
config: GetSalesforceAppConfig;
|
|
23
|
+
};
|
|
24
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_SalesforceAppsRepresentation_SalesforceAppsRepresentation, any>>;
|
|
25
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_SalesforceAppsRepresentation_SalesforceAppsRepresentation>): $64$luvio_engine_Snapshot<types_SalesforceAppsRepresentation_SalesforceAppsRepresentation, any>;
|
|
26
|
+
export declare const getSalesforceAppAdapterFactory: $64$luvio_engine_AdapterFactory<GetSalesforceAppConfig, types_SalesforceAppsRepresentation_SalesforceAppsRepresentation>;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
declare let getExplorerView: any;
|
|
2
2
|
declare let getExplorerViewNotifyChange: any;
|
|
3
3
|
declare let getMetadataGroupDomainSet: any;
|
|
4
|
+
declare let getSalesforceApp: any;
|
|
4
5
|
declare let getExplorerView_imperative: any;
|
|
5
6
|
declare let getMetadataGroupDomainSet_imperative: any;
|
|
6
|
-
|
|
7
|
+
declare let getSalesforceApp_imperative: any;
|
|
8
|
+
export { getExplorerView, getExplorerViewNotifyChange, getMetadataGroupDomainSet, getSalesforceApp, getExplorerView_imperative, getMetadataGroupDomainSet_imperative, getSalesforceApp_imperative, };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { SalesforceAppsRepresentation as types_SalesforceAppsRepresentation_SalesforceAppsRepresentation } from '../types/SalesforceAppsRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
}
|
|
5
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
6
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
7
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
8
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_SalesforceAppsRepresentation_SalesforceAppsRepresentation): void;
|
|
9
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_SalesforceAppsRepresentation_SalesforceAppsRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_SalesforceAppsRepresentation_SalesforceAppsRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_SalesforceAppsRepresentation_SalesforceAppsRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_SalesforceAppsRepresentation_SalesforceAppsRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_SalesforceAppsRepresentation_SalesforceAppsRepresentation, any>;
|
|
10
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_SalesforceAppsRepresentation_SalesforceAppsRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
11
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
12
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "04dd94fa7fa3772fe770d912fe7004af";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: SalesforceAppItemDetailsRepresentation, existing: SalesforceAppItemDetailsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SalesforceAppItemDetailsRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: SalesforceAppItemDetailsRepresentationNormalized, incoming: SalesforceAppItemDetailsRepresentationNormalized): boolean;
|
|
8
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: SalesforceAppItemDetailsRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Representation for Salesforce App
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface SalesforceAppItemDetailsRepresentationNormalized {
|
|
17
|
+
/** The description of Salesforce App */
|
|
18
|
+
description: string;
|
|
19
|
+
/** The developerName of SalesforceApp */
|
|
20
|
+
developerName: string;
|
|
21
|
+
/** The lastModifiedDate for Salesforce App */
|
|
22
|
+
lastModifiedDate: string;
|
|
23
|
+
/** The masterLabel of Salesforce App */
|
|
24
|
+
masterLabel: string;
|
|
25
|
+
/** The id of Salesforce App */
|
|
26
|
+
salesforceAppId: string;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Representation for Salesforce App
|
|
30
|
+
*
|
|
31
|
+
* Keys:
|
|
32
|
+
* (none)
|
|
33
|
+
*/
|
|
34
|
+
export interface SalesforceAppItemDetailsRepresentation {
|
|
35
|
+
description: string;
|
|
36
|
+
developerName: string;
|
|
37
|
+
lastModifiedDate: string;
|
|
38
|
+
masterLabel: string;
|
|
39
|
+
salesforceAppId: string;
|
|
40
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { SalesforceAppItemDetailsRepresentation as SalesforceAppItemDetailsRepresentation_SalesforceAppItemDetailsRepresentation } from './SalesforceAppItemDetailsRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
+
export declare const TTL = 100000;
|
|
4
|
+
export declare const VERSION = "fd96561b9186438b07fe0b9d011009a5";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: SalesforceAppsRepresentation, existing: SalesforceAppsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SalesforceAppsRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
9
|
+
export declare function equals(existing: SalesforceAppsRepresentationNormalized, incoming: SalesforceAppsRepresentationNormalized): boolean;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: SalesforceAppsRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
|
+
/**
|
|
13
|
+
* Representation for Salesforce App Item List
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface SalesforceAppsRepresentationNormalized {
|
|
19
|
+
/** Returns the list of all Salesforce Apps */
|
|
20
|
+
salesforceApps: Array<SalesforceAppItemDetailsRepresentation_SalesforceAppItemDetailsRepresentation>;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Representation for Salesforce App Item List
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface SalesforceAppsRepresentation {
|
|
29
|
+
salesforceApps: Array<SalesforceAppItemDetailsRepresentation_SalesforceAppItemDetailsRepresentation>;
|
|
30
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-platform-applications",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.351.0",
|
|
4
4
|
"description": "salesforce applications",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/platform-applications.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.351.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.351.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|