o11y_schema 240.12.0 → 240.15.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 +1 -1
- package/sf_automation/index.js +1 -0
- package/sf_automation/process_builder_migration.js +2 -0
- package/sf_automation/sf_automation.js +1 -0
- package/sf_lds/index.js +1 -1
- package/sf_lds/perf_sqlite_store_stats.js +2 -0
- package/sf_lds/perf_total_stats.js +1 -1
- package/sf_lds/sf_lds.js +1 -1
- package/sf_lex/bootstrap_draft.js +5 -0
- package/sf_lex/bootstrap_request_draft.js +2 -0
- package/sf_lex/bootstrap_timing_draft.js +4 -0
- package/sf_lex/index.js +3 -0
- package/sf_lex/sf_lex.js +3 -0
- package/sf_sfs/index.js +1 -0
- package/sf_sfs/loader_info.js +3 -0
- package/sf_sfs/sf_sfs.js +1 -0
- package/version/version.js +1 -1
- package/sf_lds/perf_durable_store_stats.js +0 -3
package/package.json
CHANGED
package/sf_automation/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export { explorer_card_data as explorerCardDataSchema } from './explorer_card_data.js';
|
|
2
2
|
export { explorer_init_load as explorerInitLoadSchema } from './explorer_init_load.js';
|
|
3
3
|
export { explorer_reorder as explorerReorderSchema } from './explorer_reorder.js';
|
|
4
|
+
export { process_builder_migration as processBuilderMigrationSchema } from './process_builder_migration.js';
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const process_builder_migration={namespace:"sf.automation",name:"ProcessBuilderMigration",pbjsSchema:{"nested":{"sf":{"nested":{"automation":{"nested":{"ProcessBuilderMigration":{"options":{"(meta.msg.desc)":"This is used to collect data on the success and fail results of the process builder migrator"},"fields":{"phase":{"options":{},"id":6,"type":"string"},"processId":{"options":{},"id":1,"type":"string"},"swapCount":{"options":{},"id":4,"type":"uint32"},"successCount":{"options":{},"id":2,
|
|
2
|
+
"type":"uint32"},"failureCount":{"options":{},"id":3,"type":"uint32"},"status":{"options":{},"id":5,"type":"string"}}}}}}}}}};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export { explorer_card_data as explorerCardDataSchema } from './explorer_card_data.js';
|
|
2
2
|
export { explorer_init_load as explorerInitLoadSchema } from './explorer_init_load.js';
|
|
3
3
|
export { explorer_reorder as explorerReorderSchema } from './explorer_reorder.js';
|
|
4
|
+
export { process_builder_migration as processBuilderMigrationSchema } from './process_builder_migration.js';
|
package/sf_lds/index.js
CHANGED
|
@@ -4,6 +4,6 @@ export { durable_store_graphql as durableStoreGraphqlSchema } from './durable_st
|
|
|
4
4
|
export { durable_store_read as durableStoreReadSchema } from './durable_store_read.js';
|
|
5
5
|
export { durable_store_write as durableStoreWriteSchema } from './durable_store_write.js';
|
|
6
6
|
export { luvio_store_stats as luvioStoreStatsSchema } from './luvio_store_stats.js';
|
|
7
|
-
export { perf_durable_store_stats as perfDurableStoreStatsSchema } from './perf_durable_store_stats.js';
|
|
8
7
|
export { perf_network_stats as perfNetworkStatsSchema } from './perf_network_stats.js';
|
|
8
|
+
export { perf_sqlite_store_stats as perfSqliteStoreStatsSchema } from './perf_sqlite_store_stats.js';
|
|
9
9
|
export { perf_total_stats as perfTotalStatsSchema } from './perf_total_stats.js';
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const perf_sqlite_store_stats={namespace:"sf.lds",name:"PerfSqliteStoreStats",pbjsSchema:{"nested":{"sf":{"nested":{"lds":{"nested":{"PerfSqliteStoreStats":{"options":{"(meta.msg.desc)":"LDS Mobile Performance Durable Store Stats"},"fields":{"queryAvgDuration":{"options":{},"id":9,"type":"double"},"batchUpsertCount":{"options":{},"id":3,"type":"uint32"},"batchDeleteCount":{"options":{},"id":4,"type":"uint32"},"queryTotalCount":{"options":{},"id":7,"type":"uint32"},"wireName":{"options":{},
|
|
2
|
+
"id":1,"type":"string"},"queryErrorCount":{"options":{},"id":8,"type":"uint32"},"batchTotalCount":{"options":{},"id":2,"type":"uint32"},"batchAvgDuration":{"options":{},"id":5,"type":"double"},"batchErrorCount":{"options":{},"id":6,"type":"uint32"}}}}}}}}}};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const perf_total_stats={namespace:"sf.lds",name:"PerfTotalStats",pbjsSchema:{"nested":{"sf":{"nested":{"lds":{"nested":{"PerfTotalStats":{"options":{"(meta.msg.desc)":"LDS Mobile Performance Stats"},"fields":{"totalDuration":{"options":{},"id":2,"type":"double"},"wireCount":{"options":{},"id":3,"type":"uint32"},"
|
|
1
|
+
export const perf_total_stats={namespace:"sf.lds",name:"PerfTotalStats",pbjsSchema:{"nested":{"sf":{"nested":{"lds":{"nested":{"PerfTotalStats":{"options":{"(meta.msg.desc)":"LDS Mobile Performance Stats"},"fields":{"totalDuration":{"options":{},"id":2,"type":"double"},"wireCount":{"options":{},"id":3,"type":"uint32"},"sqlQueryCount":{"options":{},"id":5,"type":"uint32"},"wireName":{"options":{},"id":1,"type":"string"},"networkCount":{"options":{},"id":4,"type":"uint32"},"sqlBatchCount":{"options":{},
|
|
2
2
|
"id":6,"type":"uint32"}}}}}}}}}};
|
package/sf_lds/sf_lds.js
CHANGED
|
@@ -4,6 +4,6 @@ export { durable_store_graphql as durableStoreGraphqlSchema } from './durable_st
|
|
|
4
4
|
export { durable_store_read as durableStoreReadSchema } from './durable_store_read.js';
|
|
5
5
|
export { durable_store_write as durableStoreWriteSchema } from './durable_store_write.js';
|
|
6
6
|
export { luvio_store_stats as luvioStoreStatsSchema } from './luvio_store_stats.js';
|
|
7
|
-
export { perf_durable_store_stats as perfDurableStoreStatsSchema } from './perf_durable_store_stats.js';
|
|
8
7
|
export { perf_network_stats as perfNetworkStatsSchema } from './perf_network_stats.js';
|
|
8
|
+
export { perf_sqlite_store_stats as perfSqliteStoreStatsSchema } from './perf_sqlite_store_stats.js';
|
|
9
9
|
export { perf_total_stats as perfTotalStatsSchema } from './perf_total_stats.js';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export const bootstrap_draft={namespace:"sf.lex",name:"BootstrapDraft",pbjsSchema:{"nested":{"sf":{"nested":{"lex":{"nested":{"BootstrapDraft":{"fields":{"visibilityStateStart":{"options":{},"id":38,"type":"string"},"appRenderingEnd":{"options":{},"id":5,"type":"double"},"referer":{"options":{},"id":28,"type":"string"},"execAuraJs":{"options":{},"id":16,"type":"double"},"execBootstrapJs":{"options":{},"id":17,"type":"double"},"isCdnEnabled":{"options":{},"id":13,"type":"bool"},"bootstrapEpt":{"options":{},
|
|
2
|
+
"id":9,"type":"double"},"appCreationStart":{"options":{},"id":3,"type":"double"},"type":{"options":{},"id":33,"type":"string"},"viewportHeight":{"options":{},"id":35,"type":"uint32"},"isCacheLtngLayout":{"options":{},"id":12,"type":"bool"},"mode":{"options":{},"id":25,"type":"string"},"runAfterBootstrapReady":{"options":{},"id":29,"type":"double"},"ltngLayoutCreationStart":{"options":{},"id":21,"type":"double"},"runAfterInitDefsReady":{"options":{},"id":31,"type":"double"},"areUriDefsEnabled":{"options":{},
|
|
3
|
+
"id":34,"type":"bool"},"maxAllowedParallelXhrs":{"options":{},"id":24,"type":"uint32"},"appType":{"options":{},"id":8,"type":"string"},"execInlineJs":{"options":{},"id":18,"type":"double"},"auraFrameworkEpt":{"options":{},"id":1,"type":"double"},"ltngLayoutRenderingEnd":{"options":{},"id":22,"type":"double"},"ltngLayoutCreationEnd":{"options":{},"id":20,"type":"double"},"connectionRtt":{"options":{},"id":14,"type":"double"},"runInitAsync":{"options":{},"id":32,"type":"double"},"appCreationEnd":{"options":{},
|
|
4
|
+
"id":2,"type":"double"},"runAfterContextCreated":{"options":{},"id":30,"type":"double"},"visibilityStateEnd":{"options":{},"id":37,"type":"string"},"viewportWidth":{"options":{},"id":36,"type":"uint32"},"pageStartTime":{"options":{},"id":27,"type":"double"},"appCssLoading":{"options":{},"id":4,"type":"double"},"connectionDownlink":{"options":{},"id":15,"type":"double"},"isAppCache":{"options":{},"id":10,"type":"bool"},"appRenderingStart":{"options":{},"id":6,"type":"double"},"appRootRequestId":{"options":{},
|
|
5
|
+
"id":7,"type":"string"},"isCacheGvps":{"options":{},"id":11,"type":"bool"},"navbarCpuTime":{"options":{},"id":26,"type":"double"},"ltngEpt":{"options":{},"id":19,"type":"double"},"ltngLayoutRenderingStart":{"options":{},"id":23,"type":"double"}}}}}}}}}};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const bootstrap_request_draft={namespace:"sf.lex",name:"BootstrapRequestDraft",pbjsSchema:{"nested":{"sf":{"nested":{"lex":{"nested":{"BootstrapRequestDraft":{"fields":{"redirect":{"options":{},"id":9,"type":"double"},"tcp":{"options":{},"id":13,"type":"double"},"encodedBodySize":{"options":{},"id":3,"type":"uint32"},"dns":{"options":{},"id":2,"type":"double"},"ttfb":{"options":{},"id":16,"type":"double"},"areIncompleteTimings":{"options":{},"id":5,"type":"bool"},"decodedBodySize":{"options":{},
|
|
2
|
+
"id":1,"type":"uint32"},"transferSize":{"options":{},"id":15,"type":"uint32"},"transfer":{"options":{},"id":14,"type":"double"},"requestStart":{"options":{},"id":10,"type":"double"},"nhp":{"options":{},"id":8,"type":"string"},"name":{"options":{},"id":7,"type":"string"},"serverTime":{"options":{},"id":11,"type":"double"},"startTime":{"options":{},"id":12,"type":"double"},"fetchStart":{"options":{},"id":4,"type":"double"},"initiatorType":{"options":{},"id":6,"type":"string"}}}}}}}}}};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export const bootstrap_timing_draft={namespace:"sf.lex",name:"BootstrapTimingDraft",pbjsSchema:{"nested":{"sf":{"nested":{"lex":{"nested":{"BootstrapTimingDraft":{"fields":{"initDomTreeTime":{"options":{},"id":14,"type":"double"},"unloadEventEnd":{"options":{},"id":27,"type":"double"},"unloadEventTime":{"options":{},"id":29,"type":"double"},"responseEnd":{"options":{},"id":25,"type":"double"},"readyStart":{"options":{},"id":21,"type":"double"},"unloadEventStart":{"options":{},"id":28,"type":"double"},
|
|
2
|
+
"lookupDomainTime":{"options":{},"id":19,"type":"double"},"dnsStart":{"options":{},"id":8,"type":"double"},"connectEnd":{"options":{},"id":2,"type":"double"},"loadTime":{"options":{},"id":18,"type":"double"},"contentLoadStart":{"options":{},"id":6,"type":"double"},"connectTime":{"options":{},"id":4,"type":"double"},"requestStart":{"options":{},"id":23,"type":"double"},"dnsEnd":{"options":{},"id":7,"type":"double"},"fetchStart":{"options":{},"id":13,"type":"double"},"domLoading":{"options":{},"id":11,
|
|
3
|
+
"type":"double"},"contentLoadEnd":{"options":{},"id":5,"type":"double"},"redirectTime":{"options":{},"id":22,"type":"double"},"domReadyTime":{"options":{},"id":12,"type":"double"},"responseStart":{"options":{},"id":26,"type":"double"},"domInteractive":{"options":{},"id":10,"type":"double"},"domComplete":{"options":{},"id":9,"type":"double"},"requestTime":{"options":{},"id":24,"type":"double"},"connectStart":{"options":{},"id":3,"type":"double"},"loadEventStart":{"options":{},"id":16,"type":"double"},
|
|
4
|
+
"navigationStart":{"options":{},"id":20,"type":"double"},"loadEventTime":{"options":{},"id":17,"type":"double"},"appCacheTime":{"options":{},"id":1,"type":"double"},"loadEventEnd":{"options":{},"id":15,"type":"double"}}}}}}}}}};
|
package/sf_lex/index.js
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export { app_payload as appPayloadSchema } from './app_payload.js';
|
|
2
|
+
export { bootstrap_draft as bootstrapDraftSchema } from './bootstrap_draft.js';
|
|
3
|
+
export { bootstrap_request_draft as bootstrapRequestDraftSchema } from './bootstrap_request_draft.js';
|
|
4
|
+
export { bootstrap_timing_draft as bootstrapTimingDraftSchema } from './bootstrap_timing_draft.js';
|
|
2
5
|
export { page_end as pageEndSchema } from './page_end.js';
|
|
3
6
|
export { page_payload as pagePayloadSchema } from './page_payload.js';
|
|
4
7
|
export { pageview_draft as pageviewDraftSchema } from './pageview_draft.js';
|
package/sf_lex/sf_lex.js
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export { app_payload as appPayloadSchema } from './app_payload.js';
|
|
2
|
+
export { bootstrap_draft as bootstrapDraftSchema } from './bootstrap_draft.js';
|
|
3
|
+
export { bootstrap_request_draft as bootstrapRequestDraftSchema } from './bootstrap_request_draft.js';
|
|
4
|
+
export { bootstrap_timing_draft as bootstrapTimingDraftSchema } from './bootstrap_timing_draft.js';
|
|
2
5
|
export { page_end as pageEndSchema } from './page_end.js';
|
|
3
6
|
export { page_payload as pagePayloadSchema } from './page_payload.js';
|
|
4
7
|
export { pageview_draft as pageviewDraftSchema } from './pageview_draft.js';
|
package/sf_sfs/index.js
CHANGED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export const loader_info={namespace:"sf.sfs",name:"LoaderInfo",pbjsSchema:{"nested":{"sf":{"nested":{"sfs":{"nested":{"LoaderInfo":{"options":{"(meta.msg.desc)":"XPlatform LoaderInfo information."},"fields":{"loaderContext":{"options":{},"id":1,"type":"string"},"errorType":{"options":{},"id":11,"type":"int32"},"ldsRequestEnd":{"options":{},"id":10,"type":"uint64"},"errorMessage":{"options":{},"id":13,"type":"string"},"errorCode":{"options":{},"id":12,"type":"int32"},"discUpdateStart":{"options":{},
|
|
2
|
+
"id":7,"type":"uint64"},"httpRequestStart":{"options":{},"id":5,"type":"uint64"},"discUpdateEnd":{"options":{},"id":8,"type":"uint64"},"discReadStart":{"options":{},"id":3,"type":"uint64"},"ldsRequestStart":{"options":{},"id":9,"type":"uint64"},"isComposite":{"options":{},"id":2,"type":"bool"},"discReadEnd":{"options":{},"id":4,"type":"uint64"},"errorRetryAfterDate":{"options":{},"id":15,"type":"uint64"},"httpRequestEnd":{"options":{},"id":6,"type":"uint64"},"errorApiError":{"options":{},"id":14,
|
|
3
|
+
"type":"string"}}}}}}}}}};
|
package/sf_sfs/sf_sfs.js
CHANGED
package/version/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version='240.
|
|
1
|
+
export const version='240.15.0'
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export const perf_durable_store_stats={namespace:"sf.lds",name:"PerfDurableStoreStats",pbjsSchema:{"nested":{"sf":{"nested":{"lds":{"nested":{"PerfDurableStoreStats":{"options":{"(meta.msg.desc)":"LDS Mobile Performance Durable Store Stats"},"fields":{"getTotCount":{"options":{},"id":16,"type":"uint32"},"setAvgDuration":{"options":{},"id":22,"type":"double"},"getAllTotCount":{"options":{},"id":11,"type":"uint32"},"wireName":{"options":{},"id":1,"type":"string"},"evictTotCount":{"options":{},"id":9,
|
|
2
|
-
"type":"uint32"},"batchTotCount":{"options":{},"id":2,"type":"uint32"},"getWCbAvgDuration":{"options":{},"id":19,"type":"double"},"getAllWCbTotCount":{"options":{},"id":13,"type":"uint32"},"getWCbTotCount":{"options":{},"id":18,"type":"uint32"},"eSqlTotCount":{"options":{},"id":6,"type":"uint32"},"eSqlAvgDuration":{"options":{},"id":8,"type":"double"},"batchAvgDuration":{"options":{},"id":5,"type":"double"},"getAvgDuration":{"options":{},"id":17,"type":"double"},"getAllWCbAvgDuration":{"options":{},
|
|
3
|
-
"id":14,"type":"double"},"batchEvictCount":{"options":{},"id":4,"type":"uint32"},"getAllWCbErrCount":{"options":{},"id":15,"type":"uint32"},"getAllAvgDuration":{"options":{},"id":12,"type":"double"},"eSqlErrCount":{"options":{},"id":7,"type":"uint32"},"evictAvgDuration":{"options":{},"id":10,"type":"double"},"batchSetCount":{"options":{},"id":3,"type":"uint32"},"setTotCount":{"options":{},"id":21,"type":"uint32"},"getWCbErrCount":{"options":{},"id":20,"type":"uint32"}}}}}}}}}};
|