o11y_schema 238.16.0 → 238.18.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 +3 -1
- package/sf_automation/explorer_reorder.js +2 -0
- package/sf_automation/index.js +1 -0
- package/sf_automation/sf_automation.js +1 -0
- package/sf_instrumentation/scenario_tracker.js +1 -2
- package/sf_lex/index.js +1 -0
- package/sf_lex/scenario_tracker.js +2 -0
- package/sf_lex/sf_lex.js +1 -0
- package/version/version.js +1 -1
package/package.json
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"./sf_nimbus": "./sf_nimbus/sf_nimbus.js",
|
|
18
18
|
"./sf_lds": "./sf_lds/sf_lds.js",
|
|
19
19
|
"./sf_komaci": "./sf_komaci/sf_komaci.js",
|
|
20
|
+
"./sf_lex": "./sf_lex/sf_lex.js",
|
|
20
21
|
"./sf_sfs": "./sf_sfs/sf_sfs.js",
|
|
21
22
|
"./sf_lol": "./sf_lol/sf_lol.js"
|
|
22
23
|
},
|
|
@@ -26,7 +27,7 @@
|
|
|
26
27
|
"url": "git@git.soma.salesforce.com:instrumentation/o11y-schema.git"
|
|
27
28
|
},
|
|
28
29
|
"type": "module",
|
|
29
|
-
"version": "238.
|
|
30
|
+
"version": "238.18.0",
|
|
30
31
|
"license": "BSD-3-Clause",
|
|
31
32
|
"name": "o11y_schema",
|
|
32
33
|
"lwc": {
|
|
@@ -37,6 +38,7 @@
|
|
|
37
38
|
"o11y_schema/sf_instrumentation",
|
|
38
39
|
"o11y_schema/sf_komaci",
|
|
39
40
|
"o11y_schema/sf_lds",
|
|
41
|
+
"o11y_schema/sf_lex",
|
|
40
42
|
"o11y_schema/sf_lightningsdk",
|
|
41
43
|
"o11y_schema/sf_lol",
|
|
42
44
|
"o11y_schema/sf_lwrjs",
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const explorer_reorder={namespace:"sf.automation",name:"ExplorerReorder",pbjsSchema:{"nested":{"sf":{"nested":{"automation":{"nested":{"ExplorerReorder":{"options":{"(meta.msg.desc)":"This message is used to log details about reordering action that happens inside of Flow Explorer"},"fields":{"activeCount":{"options":{},"id":3,"type":"uint32"},"manualCount":{"options":{},"id":2,"type":"uint32"},"cardType":{"options":{},"id":5,"type":"string"},"olderVersionCount":{"options":{},"id":4,"type":"uint32"},
|
|
2
|
+
"totalCount":{"options":{},"id":1,"type":"uint32"}}}}}}}}}};
|
package/sf_automation/index.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export const scenario_tracker={namespace:"sf.instrumentation",name:"ScenarioTracker",pbjsSchema:{"nested":{"sf":{"nested":{"instrumentation":{"nested":{"ScenarioTracker":{"
|
|
2
|
-
"id":2,"type":"string"},"pageLocation":{"options":{},"id":7,"type":"string"},"isInAiltn":{"options":{},"id":5,"type":"bool"},"isInO11y":{"options":{},"id":6,"type":"bool"},"scope":{"options":{},"id":10,"type":"string"},"deviationReason":{"options":{},"id":14,"type":"string"},"pageUrl":{"options":{},"id":9,"type":"string"},"uiThreadDelay":{"options":{},"id":12,"type":"double"},"startHeap":{"options":{},"id":3,"type":"uint32"}}}}}}}}}};
|
|
1
|
+
export const scenario_tracker={namespace:"sf.instrumentation",name:"ScenarioTracker",pbjsSchema:{"nested":{"sf":{"nested":{"instrumentation":{"nested":{"ScenarioTracker":{"options":{"deprecated":true},"fields":{}}}}}}}}};
|
package/sf_lex/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { scenario_tracker as scenarioTrackerSchema } from './scenario_tracker.js';
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const scenario_tracker={namespace:"sf.lex",name:"ScenarioTracker",pbjsSchema:{"nested":{"sf":{"nested":{"lex":{"nested":{"ScenarioTracker":{"fields":{"pageEntityType":{"options":{},"id":8,"type":"string"},"isDeviated":{"options":{},"id":13,"type":"bool"},"deviationElement":{"options":{},"id":15,"type":"string"},"endHeap":{"options":{},"id":4,"type":"uint32"},"target":{"options":{},"id":11,"type":"string"},"sequence":{"options":{},"id":1,"type":"uint32"},"xpath":{"options":{},"id":2,"type":"string"},
|
|
2
|
+
"pageLocation":{"options":{},"id":7,"type":"string"},"isInAiltn":{"options":{},"id":5,"type":"bool"},"isInO11y":{"options":{},"id":6,"type":"bool"},"scope":{"options":{},"id":10,"type":"string"},"deviationReason":{"options":{},"id":14,"type":"string"},"pageUrl":{"options":{},"id":9,"type":"string"},"uiThreadDelay":{"options":{},"id":12,"type":"double"},"startHeap":{"options":{},"id":3,"type":"uint32"}}}}}}}}}};
|
package/sf_lex/sf_lex.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { scenario_tracker as scenarioTrackerSchema } from './scenario_tracker.js';
|
package/version/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version='238.
|
|
1
|
+
export const version='238.18.0'
|