@salesforce/lds-default-luvio 1.93.0 → 1.100.1
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/LICENSE.txt +1 -1
- package/dist/es/es2018/main.js +7 -1
- package/dist/types/src/main.d.ts +2 -2
- package/dist/types/src/registry.d.ts +2 -2
- package/dist/umd/es2018/main.js +7 -1
- package/dist/umd/es5/main.js +7 -1
- package/package.json +14 -4
- package/sfdc/ldsEngine.js +13 -1
- package/sfdc/ldsEngineNoAura.js +13 -1
- package/sfdc/main.d.ts +2 -2
- package/sfdc/registry.d.ts +2 -2
package/LICENSE.txt
CHANGED
|
@@ -79,4 +79,4 @@ other data ("Usage Data"). Salesforce may use Usage Data for analytics,
|
|
|
79
79
|
product development, and marketing purposes. You acknowledge that files
|
|
80
80
|
generated in conjunction with the Software may contain sensitive or
|
|
81
81
|
confidential data, and you are solely responsible for anonymizing and
|
|
82
|
-
protecting such data.
|
|
82
|
+
protecting such data.
|
package/dist/es/es2018/main.js
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
3
|
+
* All rights reserved.
|
|
4
|
+
* For full license text, see the LICENSE.txt file
|
|
5
|
+
*/
|
|
6
|
+
|
|
1
7
|
/* *******************************************************************************************
|
|
2
8
|
* ATTENTION!
|
|
3
9
|
* THIS IS A GENERATED FILE FROM https://github.com/salesforce-experience-platform-emu/lds-lightning-platform
|
|
@@ -129,4 +135,4 @@ function withDefaultLuvio(callback) {
|
|
|
129
135
|
}
|
|
130
136
|
|
|
131
137
|
export { forEachRegistration, register, setDefaultLuvio, withDefaultLuvio, withRegistration };
|
|
132
|
-
// version: 1.
|
|
138
|
+
// version: 1.100.1-5f548b01c
|
package/dist/types/src/main.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { Environment, Luvio, InMemoryStore } from '@luvio/engine';
|
|
|
3
3
|
/**
|
|
4
4
|
* Parameters accepted by setDefaultLuvio.
|
|
5
5
|
*/
|
|
6
|
-
export
|
|
6
|
+
export type SetDefaultLuvioParameters = {
|
|
7
7
|
luvio: Luvio;
|
|
8
8
|
} | {
|
|
9
9
|
environment: Environment;
|
|
@@ -14,7 +14,7 @@ export declare type SetDefaultLuvioParameters = {
|
|
|
14
14
|
/**
|
|
15
15
|
* Callback used to inform interested parties that a new default Luvio has been set.
|
|
16
16
|
*/
|
|
17
|
-
export
|
|
17
|
+
export type Callback = (luvio: Luvio) => void;
|
|
18
18
|
/**
|
|
19
19
|
* Constructs/sets the default Luvio instance. Any previously-set default luvio instance
|
|
20
20
|
* is overwritten.
|
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
* additional fields. Id values and additional fields in the Registration should
|
|
4
4
|
* be specified in types exported by the code that calls register().
|
|
5
5
|
*/
|
|
6
|
-
export
|
|
6
|
+
export type Registration = {
|
|
7
7
|
id: string;
|
|
8
8
|
};
|
|
9
9
|
/**
|
|
10
10
|
* Callback used to inform interested parties that something has been registered.
|
|
11
11
|
*/
|
|
12
|
-
export
|
|
12
|
+
export type RegistrationCallback<R = Registration> = (registration: R) => void;
|
|
13
13
|
/**
|
|
14
14
|
* Invokes callback for each Registration, both past & future. That is, callback
|
|
15
15
|
* will be invoked exactly as many times as register() is called.
|
package/dist/umd/es2018/main.js
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
3
|
+
* All rights reserved.
|
|
4
|
+
* For full license text, see the LICENSE.txt file
|
|
5
|
+
*/
|
|
6
|
+
|
|
1
7
|
/* *******************************************************************************************
|
|
2
8
|
* ATTENTION!
|
|
3
9
|
* THIS IS A GENERATED FILE FROM https://github.com/salesforce-experience-platform-emu/lds-lightning-platform
|
|
@@ -141,4 +147,4 @@
|
|
|
141
147
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
142
148
|
|
|
143
149
|
}));
|
|
144
|
-
// version: 1.
|
|
150
|
+
// version: 1.100.1-5f548b01c
|
package/dist/umd/es5/main.js
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
3
|
+
* All rights reserved.
|
|
4
|
+
* For full license text, see the LICENSE.txt file
|
|
5
|
+
*/
|
|
6
|
+
|
|
1
7
|
/* *******************************************************************************************
|
|
2
8
|
* ATTENTION!
|
|
3
9
|
* THIS IS A GENERATED FILE FROM https://github.com/salesforce-experience-platform-emu/lds-lightning-platform
|
|
@@ -141,4 +147,4 @@
|
|
|
141
147
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
142
148
|
|
|
143
149
|
}));
|
|
144
|
-
// version: 1.
|
|
150
|
+
// version: 1.100.1-5f548b01c
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-default-luvio",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "rendezvous point for producers & consumers of the default luvio instance",
|
|
3
|
+
"version": "1.100.1",
|
|
5
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
|
+
"description": "rendezvous point for producers & consumers of the default luvio instance",
|
|
6
6
|
"bugs": "This software is provided as-is with no support provided.",
|
|
7
7
|
"main": "dist/umd/es2018/main.js",
|
|
8
8
|
"module": "dist/es/es2018/main.js",
|
|
@@ -32,7 +32,17 @@
|
|
|
32
32
|
"sfdc": {
|
|
33
33
|
"srcOverride": "sfdc/ldsEngine.js",
|
|
34
34
|
"path": "forcelds/ldsEngine/",
|
|
35
|
-
"publishedFileName": "ldsEngine.js"
|
|
35
|
+
"publishedFileName": "ldsEngine.js",
|
|
36
|
+
"overrides": {
|
|
37
|
+
"outputModuleName": "ldsEngine",
|
|
38
|
+
"artifacts": {
|
|
39
|
+
"ldsEngineNoAura.js": {
|
|
40
|
+
"output": {
|
|
41
|
+
"path": "ui-bridge-components/modules/native/ldsEngineMobile/ldsEngineMobile.js"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
36
46
|
},
|
|
37
47
|
"scripts": {
|
|
38
48
|
"prepare": "yarn build",
|
|
@@ -43,7 +53,7 @@
|
|
|
43
53
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --name=lds-default-luvio"
|
|
44
54
|
},
|
|
45
55
|
"dependencies": {
|
|
46
|
-
"@luvio/engine": "0.
|
|
56
|
+
"@luvio/engine": "0.135.4"
|
|
47
57
|
},
|
|
48
58
|
"nx": {
|
|
49
59
|
"targets": {
|
package/sfdc/ldsEngine.js
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
3
|
+
* All rights reserved.
|
|
4
|
+
* For full license text, see the LICENSE.txt file
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
9
|
+
* All rights reserved.
|
|
10
|
+
* For full license text, see the LICENSE.txt file
|
|
11
|
+
*/
|
|
12
|
+
|
|
1
13
|
/* *******************************************************************************************
|
|
2
14
|
* ATTENTION!
|
|
3
15
|
* THIS IS A GENERATED FILE FROM https://github.com/salesforce-experience-platform-emu/lds-lightning-platform
|
|
@@ -171,4 +183,4 @@ if (typeof $A !== 'undefined' &&
|
|
|
171
183
|
}
|
|
172
184
|
|
|
173
185
|
export { forEachRegistration, register, setDefaultLuvio, withDefaultLuvio, withRegistration };
|
|
174
|
-
// version: 1.
|
|
186
|
+
// version: 1.100.1-5f548b01c
|
package/sfdc/ldsEngineNoAura.js
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
3
|
+
* All rights reserved.
|
|
4
|
+
* For full license text, see the LICENSE.txt file
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Copyright (c) 2022, Salesforce, Inc.,
|
|
9
|
+
* All rights reserved.
|
|
10
|
+
* For full license text, see the LICENSE.txt file
|
|
11
|
+
*/
|
|
12
|
+
|
|
1
13
|
/* *******************************************************************************************
|
|
2
14
|
* ATTENTION!
|
|
3
15
|
* THIS IS A GENERATED FILE FROM https://github.com/salesforce-experience-platform-emu/lds-lightning-platform
|
|
@@ -129,4 +141,4 @@ function withDefaultLuvio(callback) {
|
|
|
129
141
|
}
|
|
130
142
|
|
|
131
143
|
export { forEachRegistration, register, setDefaultLuvio, withDefaultLuvio, withRegistration };
|
|
132
|
-
// version: 1.
|
|
144
|
+
// version: 1.100.1-5f548b01c
|
package/sfdc/main.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { Environment, Luvio, InMemoryStore } from '@luvio/engine';
|
|
|
3
3
|
/**
|
|
4
4
|
* Parameters accepted by setDefaultLuvio.
|
|
5
5
|
*/
|
|
6
|
-
export
|
|
6
|
+
export type SetDefaultLuvioParameters = {
|
|
7
7
|
luvio: Luvio;
|
|
8
8
|
} | {
|
|
9
9
|
environment: Environment;
|
|
@@ -14,7 +14,7 @@ export declare type SetDefaultLuvioParameters = {
|
|
|
14
14
|
/**
|
|
15
15
|
* Callback used to inform interested parties that a new default Luvio has been set.
|
|
16
16
|
*/
|
|
17
|
-
export
|
|
17
|
+
export type Callback = (luvio: Luvio) => void;
|
|
18
18
|
/**
|
|
19
19
|
* Constructs/sets the default Luvio instance. Any previously-set default luvio instance
|
|
20
20
|
* is overwritten.
|
package/sfdc/registry.d.ts
CHANGED
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
* additional fields. Id values and additional fields in the Registration should
|
|
4
4
|
* be specified in types exported by the code that calls register().
|
|
5
5
|
*/
|
|
6
|
-
export
|
|
6
|
+
export type Registration = {
|
|
7
7
|
id: string;
|
|
8
8
|
};
|
|
9
9
|
/**
|
|
10
10
|
* Callback used to inform interested parties that something has been registered.
|
|
11
11
|
*/
|
|
12
|
-
export
|
|
12
|
+
export type RegistrationCallback<R = Registration> = (registration: R) => void;
|
|
13
13
|
/**
|
|
14
14
|
* Invokes callback for each Registration, both past & future. That is, callback
|
|
15
15
|
* will be invoked exactly as many times as register() is called.
|