o11y_schema 238.0.0 → 238.6.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
@@ -7,16 +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
- "./sf_lol": "./sf_lol/sf_lol.js",
17
14
  "./sf_lightningsdk": "./sf_lightningsdk/sf_lightningsdk.js",
15
+ "./sf_lwrjs": "./sf_lwrjs/sf_lwrjs.js",
18
16
  "./sf_o11ySample": "./sf_o11ySample/sf_o11ySample.js",
19
- "./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"
20
23
  },
21
24
  "description": "o11y schema repo",
22
25
  "repository": {
@@ -24,7 +27,7 @@
24
27
  "url": "git@git.soma.salesforce.com:instrumentation/o11y-schema.git"
25
28
  },
26
29
  "type": "module",
27
- "version": "238.0.0",
30
+ "version": "238.6.0",
28
31
  "license": "BSD-3-Clause",
29
32
  "name": "o11y_schema",
30
33
  "lwc": {
@@ -35,10 +38,13 @@
35
38
  "o11y_schema/sf_instrumentation",
36
39
  "o11y_schema/sf_komaci",
37
40
  "o11y_schema/sf_lds",
41
+ "o11y_schema/sf_lex",
38
42
  "o11y_schema/sf_lightningsdk",
39
43
  "o11y_schema/sf_lol",
44
+ "o11y_schema/sf_lwrjs",
40
45
  "o11y_schema/sf_o11ySample",
41
- "o11y_schema/sf_searchui"
46
+ "o11y_schema/sf_searchui",
47
+ "o11y_schema/sf_sfs"
42
48
  ],
43
49
  "modules": [{"dir": "dist"}]
44
50
  }
@@ -1 +1 @@
1
- export const batch={namespace:"sf.komaci",name:"Batch",pbjsSchema:{"nested":{"sf":{"nested":{"komaci":{"nested":{"Batch":{"fields":{"constituentCount":{"options":{},"id":1,"type":"uint32"},"batchAdapter":{"options":{},"id":2,"type":"string"},"adapter":{"options":{},"id":3,"type":"string"}}}}}}}}}};
1
+ export const batch={namespace:"sf.komaci",name:"Batch",pbjsSchema:{"nested":{"sf":{"nested":{"komaci":{"nested":{"Batch":{"fields":{"duration":{"options":{},"id":4,"type":"double"},"constituentCount":{"options":{},"id":1,"type":"uint32"},"batchAdapter":{"options":{},"id":2,"type":"string"},"adapter":{"options":{},"id":3,"type":"string"},"startTime":{"options":{},"id":5,"type":"double"}}}}}}}}}};
@@ -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"}}}}}}}}}};
@@ -1 +1 @@
1
- export const bulk_resolve={namespace:"sf.komaci",name:"BulkResolve",pbjsSchema:{"nested":{"sf":{"nested":{"komaci":{"nested":{"BulkResolve":{"fields":{"keyCount":{"options":{},"id":1,"type":"uint32"}}}}}}}}}};
1
+ export const bulk_resolve={namespace:"sf.komaci",name:"BulkResolve",pbjsSchema:{"nested":{"sf":{"nested":{"komaci":{"nested":{"BulkResolve":{"fields":{"duration":{"options":{},"id":2,"type":"double"},"keyCount":{"options":{},"id":1,"type":"uint32"},"startTime":{"options":{},"id":3,"type":"double"}}}}}}}}}};
@@ -1,5 +1,7 @@
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';
6
+ export { total_routing as totalRoutingSchema } from './total_routing.js';
5
7
  export { wire_context as wireContextSchema } from './wire_context.js';
@@ -1 +1 @@
1
- export const prefetch_service={namespace:"sf.komaci",name:"PrefetchService",pbjsSchema:{"nested":{"sf":{"nested":{"komaci":{"nested":{"PrefetchService":{"fields":{"addressCount":{"options":{},"id":1,"type":"uint32"}}}}}}}}}};
1
+ export const prefetch_service={namespace:"sf.komaci",name:"PrefetchService",pbjsSchema:{"nested":{"sf":{"nested":{"komaci":{"nested":{"PrefetchService":{"fields":{"startTime":{"options":{},"id":2,"type":"double"},"addressCount":{"options":{},"id":1,"type":"uint32"}}}}}}}}}};
@@ -1,5 +1,7 @@
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';
6
+ export { total_routing as totalRoutingSchema } from './total_routing.js';
5
7
  export { wire_context as wireContextSchema } from './wire_context.js';
@@ -0,0 +1 @@
1
+ export const total_routing={namespace:"sf.komaci",name:"TotalRouting",pbjsSchema:{"nested":{"sf":{"nested":{"komaci":{"nested":{"TotalRouting":{"fields":{"duration":{"options":{},"id":1,"type":"double"},"startTime":{"options":{},"id":2,"type":"double"}}}}}}}}}};
@@ -0,0 +1,2 @@
1
+ export { initialLexRootActivity as initialLexRootActivitySchema } from './initialLexRootActivity.js';
2
+ export { lexRootActivity as lexRootActivitySchema } from './lexRootActivity.js';
@@ -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"}}}}}}}}}};
@@ -0,0 +1,2 @@
1
+ export { initialLexRootActivity as initialLexRootActivitySchema } from './initialLexRootActivity.js';
2
+ export { lexRootActivity as lexRootActivitySchema } from './lexRootActivity.js';
@@ -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,3 @@
1
+ export { bootstrap_request as bootstrapRequestSchema } from './bootstrap_request.js';
2
+ export { mapping_request as mappingRequestSchema } from './mapping_request.js';
3
+ export { module_request_count as moduleRequestCountSchema } from './module_request_count.js';
@@ -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,3 @@
1
+ export { bootstrap_request as bootstrapRequestSchema } from './bootstrap_request.js';
2
+ export { mapping_request as mappingRequestSchema } from './mapping_request.js';
3
+ export { module_request_count as moduleRequestCountSchema } from './module_request_count.js';
@@ -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"}}}}}}}}}};
@@ -0,0 +1 @@
1
+ export { app_start as appStartSchema } from './app_start.js';
@@ -0,0 +1 @@
1
+ export { app_start as appStartSchema } from './app_start.js';
@@ -1 +1 @@
1
- export const version='238.0.0'
1
+ export const version='238.6.0'