@salesforce/lds-runtime-aura 1.396.0 → 1.397.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/ldsEngineCreator.js +2654 -2603
- package/dist/types/fetch-service-descriptors/lex-fetch-service.d.ts +2 -1
- package/dist/types/network-fetch.d.ts +2 -1
- package/dist/types/request-interceptors/luvio-page-scoped-cache.d.ts +11 -0
- package/dist/types/request-interceptors/page-scoped-cache.d.ts +2 -0
- package/package.json +36 -36
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { type LoggerService } from '@luvio/utils';
|
|
2
|
-
import { type FetchServiceDescriptor } from '@luvio/service-fetch-network/v1';
|
|
2
|
+
import { Interceptors, type FetchServiceDescriptor } from '@luvio/service-fetch-network/v1';
|
|
3
3
|
import { RetryService } from '@luvio/service-retry/v1';
|
|
4
4
|
export declare function buildLexRuntimeDefaultFetchServiceDescriptor(logger: LoggerService, retryService?: RetryService<Response>): FetchServiceDescriptor;
|
|
5
5
|
export declare function buildLexRuntimeAllow5xxFetchServiceDescriptor(logger: LoggerService, retryService?: RetryService<Response>): FetchServiceDescriptor;
|
|
6
|
+
export declare function buildLexConnectFetchServiceDescriptor(interceptors?: Interceptors, retryService?: RetryService<Response>): FetchServiceDescriptor;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { type ResourceRequest } from '@luvio/engine';
|
|
2
|
-
import type { RequestLogger } from '@salesforce/lds-network-fetch';
|
|
2
|
+
import type { RequestLogger, RequestTracker } from '@salesforce/lds-network-fetch';
|
|
3
|
+
export declare const instrumentationTracker: RequestTracker;
|
|
3
4
|
export declare const requestLogger: RequestLogger;
|
|
4
5
|
export declare const composedFetchNetworkAdapter: {
|
|
5
6
|
shouldHandleRequest(resourceRequest: ResourceRequest): boolean;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { ResourceRequest } from '@luvio/engine';
|
|
2
|
+
/**
|
|
3
|
+
* Builds a Luvio Request interceptor that adds page-scoped cache headers
|
|
4
|
+
* to ResourceRequest objects used by the Luvio network adapter.
|
|
5
|
+
*
|
|
6
|
+
* This interceptor works with the Luvio ResourceRequest format, which has
|
|
7
|
+
* a simpler structure than FetchParameters - headers are always a plain object.
|
|
8
|
+
*
|
|
9
|
+
* @returns A RequestInterceptor function for Luvio network requests
|
|
10
|
+
*/
|
|
11
|
+
export declare function buildLuvioPageScopedCacheRequestInterceptor(): (resourceRequest: ResourceRequest) => PromiseLike<ResourceRequest>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-runtime-aura",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.397.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "LDS engine for Aura runtime",
|
|
6
6
|
"main": "dist/ldsEngineCreator.js",
|
|
@@ -34,47 +34,47 @@
|
|
|
34
34
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --name=lds-runtime-aura"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@luvio/service-provisioner": "5.
|
|
38
|
-
"@luvio/tools-core": "5.
|
|
39
|
-
"@salesforce/lds-adapters-apex": "^1.
|
|
40
|
-
"@salesforce/lds-adapters-uiapi": "^1.
|
|
41
|
-
"@salesforce/lds-ads-bridge": "^1.
|
|
42
|
-
"@salesforce/lds-aura-storage": "^1.
|
|
43
|
-
"@salesforce/lds-bindings": "^1.
|
|
44
|
-
"@salesforce/lds-instrumentation": "^1.
|
|
45
|
-
"@salesforce/lds-network-aura": "^1.
|
|
46
|
-
"@salesforce/lds-network-fetch": "^1.
|
|
37
|
+
"@luvio/service-provisioner": "5.66.0",
|
|
38
|
+
"@luvio/tools-core": "5.66.0",
|
|
39
|
+
"@salesforce/lds-adapters-apex": "^1.397.0",
|
|
40
|
+
"@salesforce/lds-adapters-uiapi": "^1.397.0",
|
|
41
|
+
"@salesforce/lds-ads-bridge": "^1.397.0",
|
|
42
|
+
"@salesforce/lds-aura-storage": "^1.397.0",
|
|
43
|
+
"@salesforce/lds-bindings": "^1.397.0",
|
|
44
|
+
"@salesforce/lds-instrumentation": "^1.397.0",
|
|
45
|
+
"@salesforce/lds-network-aura": "^1.397.0",
|
|
46
|
+
"@salesforce/lds-network-fetch": "^1.397.0",
|
|
47
47
|
"jwt-encode": "1.0.1"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@luvio/command-aura-graphql-normalized-cache-control": "5.
|
|
51
|
-
"@luvio/command-aura-network": "5.
|
|
52
|
-
"@luvio/command-aura-normalized-cache-control": "5.
|
|
53
|
-
"@luvio/command-aura-resource-cache-control": "5.
|
|
54
|
-
"@luvio/command-fetch-network": "5.
|
|
55
|
-
"@luvio/command-http-graphql-normalized-cache-control": "5.
|
|
56
|
-
"@luvio/command-http-normalized-cache-control": "5.
|
|
57
|
-
"@luvio/command-ndjson": "5.
|
|
58
|
-
"@luvio/command-network": "5.
|
|
59
|
-
"@luvio/command-sse": "5.
|
|
60
|
-
"@luvio/command-streaming": "5.
|
|
50
|
+
"@luvio/command-aura-graphql-normalized-cache-control": "5.66.0",
|
|
51
|
+
"@luvio/command-aura-network": "5.66.0",
|
|
52
|
+
"@luvio/command-aura-normalized-cache-control": "5.66.0",
|
|
53
|
+
"@luvio/command-aura-resource-cache-control": "5.66.0",
|
|
54
|
+
"@luvio/command-fetch-network": "5.66.0",
|
|
55
|
+
"@luvio/command-http-graphql-normalized-cache-control": "5.66.0",
|
|
56
|
+
"@luvio/command-http-normalized-cache-control": "5.66.0",
|
|
57
|
+
"@luvio/command-ndjson": "5.66.0",
|
|
58
|
+
"@luvio/command-network": "5.66.0",
|
|
59
|
+
"@luvio/command-sse": "5.66.0",
|
|
60
|
+
"@luvio/command-streaming": "5.66.0",
|
|
61
61
|
"@luvio/network-adapter-composable": "0.158.7",
|
|
62
62
|
"@luvio/network-adapter-fetch": "0.158.7",
|
|
63
|
-
"@luvio/service-aura-network": "5.
|
|
64
|
-
"@luvio/service-cache": "5.
|
|
65
|
-
"@luvio/service-cache-control": "5.
|
|
66
|
-
"@luvio/service-cache-inclusion-policy": "5.
|
|
67
|
-
"@luvio/service-feature-flags": "5.
|
|
68
|
-
"@luvio/service-fetch-network": "5.
|
|
69
|
-
"@luvio/service-instrument-command": "5.
|
|
70
|
-
"@luvio/service-pubsub": "5.
|
|
71
|
-
"@luvio/service-store": "5.
|
|
72
|
-
"@luvio/utils": "5.
|
|
63
|
+
"@luvio/service-aura-network": "5.66.0",
|
|
64
|
+
"@luvio/service-cache": "5.66.0",
|
|
65
|
+
"@luvio/service-cache-control": "5.66.0",
|
|
66
|
+
"@luvio/service-cache-inclusion-policy": "5.66.0",
|
|
67
|
+
"@luvio/service-feature-flags": "5.66.0",
|
|
68
|
+
"@luvio/service-fetch-network": "5.66.0",
|
|
69
|
+
"@luvio/service-instrument-command": "5.66.0",
|
|
70
|
+
"@luvio/service-pubsub": "5.66.0",
|
|
71
|
+
"@luvio/service-store": "5.66.0",
|
|
72
|
+
"@luvio/utils": "5.66.0",
|
|
73
73
|
"@lwc/state": "^0.23.0",
|
|
74
|
-
"@salesforce/lds-adapters-onestore-graphql": "^1.
|
|
75
|
-
"@salesforce/lds-adapters-uiapi-lex": "^1.
|
|
76
|
-
"@salesforce/lds-luvio-service": "^1.
|
|
77
|
-
"@salesforce/lds-luvio-uiapi-records-service": "^1.
|
|
74
|
+
"@salesforce/lds-adapters-onestore-graphql": "^1.397.0",
|
|
75
|
+
"@salesforce/lds-adapters-uiapi-lex": "^1.397.0",
|
|
76
|
+
"@salesforce/lds-luvio-service": "^1.397.0",
|
|
77
|
+
"@salesforce/lds-luvio-uiapi-records-service": "^1.397.0"
|
|
78
78
|
},
|
|
79
79
|
"luvioBundlesize": [
|
|
80
80
|
{
|