o11y_schema 2.10.0 → 238.4.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 +13 -5
- package/sf_komaci/batch_coordinator.js +1 -0
- package/sf_komaci/index.js +1 -0
- package/sf_komaci/sf_komaci.js +1 -0
- package/sf_lex/index.js +2 -0
- package/sf_lex/initialLexRootActivity.js +1 -0
- package/sf_lex/lexRootActivity.js +3 -0
- package/sf_lex/sf_lex.js +2 -0
- package/sf_lol/index.js +1 -0
- package/sf_lol/sf_lol.js +1 -0
- package/sf_lol/side_panel_content.js +2 -0
- package/sf_lwrjs/bootstrap_request.js +1 -0
- package/sf_lwrjs/index.js +3 -0
- package/sf_lwrjs/mapping_request.js +1 -0
- package/sf_lwrjs/module_request_count.js +1 -0
- package/sf_lwrjs/sf_lwrjs.js +3 -0
- package/sf_sfs/app_start.js +2 -0
- package/sf_sfs/index.js +1 -0
- package/sf_sfs/sf_sfs.js +1 -0
- package/version/version.js +1 -1
package/package.json
CHANGED
|
@@ -7,15 +7,19 @@
|
|
|
7
7
|
],
|
|
8
8
|
"author": "instrumentationteam@salesforce.com",
|
|
9
9
|
"exports": {
|
|
10
|
-
"./sf_lds": "./sf_lds/sf_lds.js",
|
|
11
10
|
"./sf_searchui": "./sf_searchui/sf_searchui.js",
|
|
12
|
-
"./sf_komaci": "./sf_komaci/sf_komaci.js",
|
|
13
11
|
"./sf_aura": "./sf_aura/sf_aura.js",
|
|
14
12
|
"./sf_automation": "./sf_automation/sf_automation.js",
|
|
15
13
|
"./sf_instrumentation": "./sf_instrumentation/sf_instrumentation.js",
|
|
16
14
|
"./sf_lightningsdk": "./sf_lightningsdk/sf_lightningsdk.js",
|
|
15
|
+
"./sf_lwrjs": "./sf_lwrjs/sf_lwrjs.js",
|
|
17
16
|
"./sf_o11ySample": "./sf_o11ySample/sf_o11ySample.js",
|
|
18
|
-
"./version": "./version/version.js"
|
|
17
|
+
"./version": "./version/version.js",
|
|
18
|
+
"./sf_lds": "./sf_lds/sf_lds.js",
|
|
19
|
+
"./sf_komaci": "./sf_komaci/sf_komaci.js",
|
|
20
|
+
"./sf_lex": "./sf_lex/sf_lex.js",
|
|
21
|
+
"./sf_sfs": "./sf_sfs/sf_sfs.js",
|
|
22
|
+
"./sf_lol": "./sf_lol/sf_lol.js"
|
|
19
23
|
},
|
|
20
24
|
"description": "o11y schema repo",
|
|
21
25
|
"repository": {
|
|
@@ -23,7 +27,7 @@
|
|
|
23
27
|
"url": "git@git.soma.salesforce.com:instrumentation/o11y-schema.git"
|
|
24
28
|
},
|
|
25
29
|
"type": "module",
|
|
26
|
-
"version": "
|
|
30
|
+
"version": "238.4.0",
|
|
27
31
|
"license": "BSD-3-Clause",
|
|
28
32
|
"name": "o11y_schema",
|
|
29
33
|
"lwc": {
|
|
@@ -34,9 +38,13 @@
|
|
|
34
38
|
"o11y_schema/sf_instrumentation",
|
|
35
39
|
"o11y_schema/sf_komaci",
|
|
36
40
|
"o11y_schema/sf_lds",
|
|
41
|
+
"o11y_schema/sf_lex",
|
|
37
42
|
"o11y_schema/sf_lightningsdk",
|
|
43
|
+
"o11y_schema/sf_lol",
|
|
44
|
+
"o11y_schema/sf_lwrjs",
|
|
38
45
|
"o11y_schema/sf_o11ySample",
|
|
39
|
-
"o11y_schema/sf_searchui"
|
|
46
|
+
"o11y_schema/sf_searchui",
|
|
47
|
+
"o11y_schema/sf_sfs"
|
|
40
48
|
],
|
|
41
49
|
"modules": [{"dir": "dist"}]
|
|
42
50
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const batch_coordinator={namespace:"sf.komaci",name:"BatchCoordinator",pbjsSchema:{"nested":{"sf":{"nested":{"komaci":{"nested":{"BatchCoordinator":{"fields":{"reducer":{"options":{},"id":1,"type":"string"}}}}}}}}}};
|
package/sf_komaci/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { batch as batchSchema } from './batch.js';
|
|
2
|
+
export { batch_coordinator as batchCoordinatorSchema } from './batch_coordinator.js';
|
|
2
3
|
export { bulk_resolve as bulkResolveSchema } from './bulk_resolve.js';
|
|
3
4
|
export { prefetch as prefetchSchema } from './prefetch.js';
|
|
4
5
|
export { prefetch_service as prefetchServiceSchema } from './prefetch_service.js';
|
package/sf_komaci/sf_komaci.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { batch as batchSchema } from './batch.js';
|
|
2
|
+
export { batch_coordinator as batchCoordinatorSchema } from './batch_coordinator.js';
|
|
2
3
|
export { bulk_resolve as bulkResolveSchema } from './bulk_resolve.js';
|
|
3
4
|
export { prefetch as prefetchSchema } from './prefetch.js';
|
|
4
5
|
export { prefetch_service as prefetchServiceSchema } from './prefetch_service.js';
|
package/sf_lex/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const initialLexRootActivity={namespace:"sf.lex",name:"InitialLexRootActivity",pbjsSchema:{"nested":{"sf":{"nested":{"lex":{"nested":{"InitialLexRootActivity":{"fields":{"pageEpt":{"options":{},"id":2,"type":"double"},"pageLocation":{"options":{},"id":3,"type":"string"},"pageEntityType":{"options":{},"id":4,"type":"string"},"pageUrl":{"options":{},"id":5,"type":"string"},"bootstrapDuration":{"options":{},"id":1,"type":"double"}}}}}}}}}};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export const lexRootActivity={namespace:"sf.lex",name:"LexRootActivity",pbjsSchema:{"nested":{"sf":{"nested":{"lex":{"nested":{"LexRootActivity":{"fields":{"isPageChanged":{"options":{},"id":6,"type":"bool"},"isDeviated":{"options":{},"id":16,"type":"bool"},"isInstrumentedAiltn":{"options":{},"id":4,"type":"bool"},"isInstrumentedO11y":{"options":{},"id":5,"type":"bool"},"deviationElement":{"options":{},"id":18,"type":"string"},"pageStartLocation":{"options":{},"id":7,"type":"string"},"endHeap":{"options":{},
|
|
2
|
+
"id":3,"type":"uint32"},"pageEndLocation":{"options":{},"id":8,"type":"string"},"pageEndEntityType":{"options":{},"id":10,"type":"string"},"target":{"options":{},"id":14,"type":"string"},"xpath":{"options":{},"id":1,"type":"string"},"scope":{"options":{},"id":13,"type":"string"},"deviationReason":{"options":{},"id":17,"type":"string"},"pageStartEntityType":{"options":{},"id":9,"type":"string"},"pageEndUrl":{"options":{},"id":12,"type":"string"},"uiThreadDelay":{"options":{},"id":15,"type":"double"},
|
|
3
|
+
"startHeap":{"options":{},"id":2,"type":"uint32"},"pageStartUrl":{"options":{},"id":11,"type":"string"}}}}}}}}}};
|
package/sf_lex/sf_lex.js
ADDED
package/sf_lol/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { side_panel_content as sidePanelContentSchema } from './side_panel_content.js';
|
package/sf_lol/sf_lol.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { side_panel_content as sidePanelContentSchema } from './side_panel_content.js';
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const side_panel_content={namespace:"sf.lol",name:"SidePanelContent",pbjsSchema:{"nested":{"sf":{"nested":{"lol":{"nested":{"SidePanelContent":{"fields":{"errType":{"options":{},"id":8,"type":"string"},"def":{"options":{},"id":2,"type":"string"},"initiator":{"options":{},"id":7,"type":"string"},"unitId":{"options":{},"id":5,"type":"string"},"id":{"options":{},"id":3,"type":"string"},"type":{"options":{},"id":1,"type":"string"},"moduleId":{"options":{},"id":4,"type":"string"},"programId":{"options":{},
|
|
2
|
+
"id":6,"type":"string"}}}}}}}}}};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const bootstrap_request={namespace:"sf.lwrjs",name:"BootstrapRequest",pbjsSchema:{"nested":{"sf":{"nested":{"lwrjs":{"nested":{"BootstrapRequest":{"options":{"(meta.msg.desc)":"LWR-JS Application Bootstrap Request Success Metric"},"fields":{"appUrl":{"options":{},"id":1,"type":"string"}}}}}}}}}};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const mapping_request={namespace:"sf.lwrjs",name:"MappingRequest",pbjsSchema:{"nested":{"sf":{"nested":{"lwrjs":{"nested":{"MappingRequestCount":{"options":{"(meta.msg.desc)":"LWR-JS Mapping Load Count Metric"},"fields":{"appUrl":{"options":{},"id":1,"type":"string"},"mappingCount":{"options":{},"id":2,"type":"uint32"}}}}}}}}}};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const module_request_count={namespace:"sf.lwrjs",name:"ModuleRequestCount",pbjsSchema:{"nested":{"sf":{"nested":{"lwrjs":{"nested":{"ModuleRequestCount":{"options":{"(meta.msg.desc)":"LWR-JS Module Load Count Metric"},"fields":{"moduleCount":{"options":{},"id":2,"type":"uint32"},"appUrl":{"options":{},"id":1,"type":"string"}}}}}}}}}};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const app_start={namespace:"sf.sfs",name:"AppStart",pbjsSchema:{"nested":{"sf":{"nested":{"sfs":{"nested":{"AppStart":{"options":{"(meta.msg.desc)":"The SFS mobile application start up configuration."},"fields":{"appEvent":{"options":{},"rule":"repeated","id":3,"type":"string"},"isLdsOn":{"options":{},"id":4,"type":"bool"},"isGooglePlayOk":{"options":{},"id":6,"type":"bool"},"appLaunchReason":{"options":{},"id":1,"type":"string"},"coldStartReason":{"options":{},"id":2,"type":"string"},"locale":{"options":{},
|
|
2
|
+
"id":5,"type":"string"}}}}}}}}}};
|
package/sf_sfs/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { app_start as appStartSchema } from './app_start.js';
|
package/sf_sfs/sf_sfs.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { app_start as appStartSchema } from './app_start.js';
|
package/version/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version='
|
|
1
|
+
export const version='238.4.0'
|