o11y_schema 240.15.2 → 240.16.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/package.json
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"./sf_instrumentation": "./sf_instrumentation/sf_instrumentation.js",
|
|
15
15
|
"./sf_lightningsdk": "./sf_lightningsdk/sf_lightningsdk.js",
|
|
16
16
|
"./sf_lwrjs": "./sf_lwrjs/sf_lwrjs.js",
|
|
17
|
+
"./sf_lists": "./sf_lists/sf_lists.js",
|
|
17
18
|
"./sf_o11ySample": "./sf_o11ySample/sf_o11ySample.js",
|
|
18
19
|
"./sf_testAiltnPageview": "./sf_testAiltnPageview/sf_testAiltnPageview.js",
|
|
19
20
|
"./version": "./version/version.js",
|
|
@@ -30,7 +31,7 @@
|
|
|
30
31
|
"url": "git@git.soma.salesforce.com:instrumentation/o11y-schema.git"
|
|
31
32
|
},
|
|
32
33
|
"type": "module",
|
|
33
|
-
"version": "240.
|
|
34
|
+
"version": "240.16.0",
|
|
34
35
|
"license": "BSD-3-Clause",
|
|
35
36
|
"name": "o11y_schema",
|
|
36
37
|
"lwc": {
|
|
@@ -45,6 +46,7 @@
|
|
|
45
46
|
"o11y_schema/sf_lds",
|
|
46
47
|
"o11y_schema/sf_lex",
|
|
47
48
|
"o11y_schema/sf_lightningsdk",
|
|
49
|
+
"o11y_schema/sf_lists",
|
|
48
50
|
"o11y_schema/sf_lol",
|
|
49
51
|
"o11y_schema/sf_lwrjs",
|
|
50
52
|
"o11y_schema/sf_nimbus",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { related_list_drillin as relatedListDrillinSchema } from './related_list_drillin.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const related_list_drillin={namespace:"sf.lists",name:"RelatedListDrillin",pbjsSchema:{"nested":{"sf":{"nested":{"lists":{"nested":{"RelatedListDrillin":{"options":{"(meta.msg.desc)":"This message is used to log certain events within the related lists drill-in page"},"fields":{"plOptCount":{"options":{},"id":1,"type":"uint32"},"eventName":{"options":{},"id":2,"type":"string"}}}}}}}}}};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { related_list_drillin as relatedListDrillinSchema } from './related_list_drillin.js';
|
package/version/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version='240.
|
|
1
|
+
export const version='240.16.0'
|