o11y_schema 260.17.0 → 260.20.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_datalens/datalens_performance_monitoring_event.js +2 -0
- package/sf_datalens/index.js +1 -0
- package/sf_datalens/sf_datalens.js +1 -0
- package/sf_dcAgent/agent_action.js +1 -0
- package/sf_dcAgent/index.js +1 -0
- package/sf_dcAgent/sf_dcAgent.js +1 -0
- package/sf_dcAgent/sf_dcAgent.js-meta.xml +7 -0
- package/sf_guidedConfig/gc_param_event.js +2 -0
- package/sf_guidedConfig/index.js +1 -0
- package/sf_guidedConfig/sf_guidedConfig.js +1 -0
- package/sf_mobileVoicePlatform/index.js +1 -0
- package/sf_mobileVoicePlatform/sf_mobileVoicePlatform.js +1 -0
- package/sf_mobileVoicePlatform/text_to_speech.js +2 -2
- package/sf_mobileVoicePlatform/text_to_speech_file_io.js +1 -0
- package/sf_sentosSearch/agenticInteraction.js +2 -0
- package/sf_sentosSearch/index.js +2 -0
- package/sf_sentosSearch/resultsPagePerf.js +2 -0
- package/sf_sentosSearch/searchResultsInteraction.js +2 -2
- package/sf_sentosSearch/sf_sentosSearch.js +2 -0
- package/sf_slackforce/channel_create_flow.js +1 -1
- package/sf_slackforce/channel_join_click.js +1 -1
- package/sf_slackforce/channel_tabs_tab_impression.js +2 -1
- package/sf_slackforce/context.js +1 -1
- package/sf_slackforce/details_modal.js +1 -1
- package/sf_slackforce/invite_channel.js +1 -1
- package/sf_slackforce/load_conversation_history.js +2 -2
- package/sf_slackforce/load_conversation_view.js +2 -2
- package/sf_slackforce/lob_sales_home.js +2 -2
- package/sf_slackforce/msg_delete.js +1 -1
- package/sf_slackforce/msg_impression.js +2 -2
- package/sf_slackforce/msg_link_clicked.js +2 -1
- package/sf_slackforce/msg_reads_impression.js +2 -1
- package/sf_slackforce/msg_scroll.js +1 -1
- package/sf_slackforce/msg_sent.js +1 -1
- package/sf_slackforce/msg_submitted_mentions.js +2 -1
- package/sf_slackforce/reaction_added.js +2 -1
- package/sf_slackforce/reaction_removed.js +2 -1
- package/sf_slackforce/records_salesforce_record_view.js +3 -3
- package/sf_slackforce/rimeto_hover_card_view.js +2 -1
- package/sf_slackforce/threads_reply.js +2 -1
- package/sf_slackforce/unread_indicator.js +2 -1
- package/version/version.js +1 -1
package/package.json
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"./sf_prm": "./sf_prm/sf_prm.js",
|
|
11
11
|
"./sf_digitalwallet": "./sf_digitalwallet/sf_digitalwallet.js",
|
|
12
12
|
"./sf_a4dInstrumentation": "./sf_a4dInstrumentation/sf_a4dInstrumentation.js",
|
|
13
|
+
"./sf_dcAgent": "./sf_dcAgent/sf_dcAgent.js",
|
|
13
14
|
"./sf_clwr": "./sf_clwr/sf_clwr.js",
|
|
14
15
|
"./sf_omniChannel": "./sf_omniChannel/sf_omniChannel.js",
|
|
15
16
|
"./sf_adaptiveExperience": "./sf_adaptiveExperience/sf_adaptiveExperience.js",
|
|
@@ -134,7 +135,7 @@
|
|
|
134
135
|
"url": "git@git.soma.salesforce.com:instrumentation/o11y-schema.git"
|
|
135
136
|
},
|
|
136
137
|
"type": "module",
|
|
137
|
-
"version": "260.
|
|
138
|
+
"version": "260.20.0",
|
|
138
139
|
"license": "BSD-3-Clause",
|
|
139
140
|
"volta": {
|
|
140
141
|
"node": "18.17.1",
|
|
@@ -168,6 +169,7 @@
|
|
|
168
169
|
"o11y_schema/sf_content",
|
|
169
170
|
"o11y_schema/sf_contentLayout",
|
|
170
171
|
"o11y_schema/sf_datalens",
|
|
172
|
+
"o11y_schema/sf_dcAgent",
|
|
171
173
|
"o11y_schema/sf_digitalwallet",
|
|
172
174
|
"o11y_schema/sf_eciExp",
|
|
173
175
|
"o11y_schema/sf_einstein",
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const datalens_performance_monitoring_event={namespace:"sf.datalens",name:"DatalensPerformanceMonitoringEvent",pbjsSchema:{"nested":{"sf":{"nested":{"datalens":{"nested":{"DatalensPerformanceMonitoringEvent":{"oneofs":{"_parentId":{"oneof":["parentId"]}},"fields":{"duration":{"id":7,"type":"string"},"interactionId":{"id":4,"type":"string"},"interaction":{"id":1,"type":"string"},"startTime":{"id":5,"type":"string"},"endTime":{"id":6,"type":"string"},"message":{"id":2,"type":"string"},"parentId":{"options":{"proto3_optional":true},
|
|
2
|
+
"id":3,"type":"string"}}}}}}}}}};
|
package/sf_datalens/index.js
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
export { datalens_client as datalensClientSchema } from './datalens_client.js';
|
|
2
2
|
export { datalens_event as datalensEventSchema } from './datalens_event.js';
|
|
3
|
+
export { datalens_performance_monitoring_event as datalensPerformanceMonitoringEventSchema } from './datalens_performance_monitoring_event.js';
|
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
export { datalens_client as datalensClientSchema } from './datalens_client.js';
|
|
2
2
|
export { datalens_event as datalensEventSchema } from './datalens_event.js';
|
|
3
|
+
export { datalens_performance_monitoring_event as datalensPerformanceMonitoringEventSchema } from './datalens_performance_monitoring_event.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const agent_action={namespace:"sf.dcAgent",name:"AgentAction",pbjsSchema:{"nested":{"sf":{"nested":{"dcAgent":{"nested":{"AgentAction":{"fields":{"flex2":{"id":5,"type":"string"},"flex1":{"id":4,"type":"string"},"agentName":{"id":1,"type":"string"},"message":{"id":3,"type":"string"},"actionName":{"id":2,"type":"string"}}}}}}}}}};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { agent_action as agentActionSchema } from './agent_action.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { agent_action as agentActionSchema } from './agent_action.js';
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const gc_param_event={namespace:"sf.guidedConfig",name:"GcParamEvent",pbjsSchema:{"nested":{"sf":{"nested":{"guidedConfig":{"nested":{"GcParamEvent":{"fields":{"paramType":{"id":10,"type":"string"},"agentType":{"id":5,"type":"string"},"gcRoute":{"id":4,"type":"string"},"gcStep":{"id":3,"type":"string"},"interactionType":{"id":11,"type":"string"},"hasChanges":{"id":12,"type":"bool"},"gcVersionId":{"id":8,"type":"string"},"gcDefId":{"id":7,"type":"string"},"paramName":{"id":9,"type":"string"},
|
|
2
|
+
"gcFlowId":{"id":1,"type":"string"},"gcFlowMode":{"id":2,"type":"string"},"botDefId":{"id":6,"type":"string"}}}}}}}}}};
|
package/sf_guidedConfig/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const text_to_speech={namespace:"sf.mobileVoicePlatform",name:"TextToSpeech",pbjsSchema:{"nested":{"sf":{"nested":{"mobileVoicePlatform":{"nested":{"TextToSpeech":{"fields":{"engineVersion":{"id":2,"type":"string"},"voice":{"id":4,"type":"string"},"engine":{"id":1,"type":"string"},"
|
|
2
|
-
"type":"uint64"}}}}}}}}}};
|
|
1
|
+
export const text_to_speech={namespace:"sf.mobileVoicePlatform",name:"TextToSpeech",pbjsSchema:{"nested":{"sf":{"nested":{"mobileVoicePlatform":{"nested":{"TextToSpeech":{"fields":{"engineVersion":{"id":2,"type":"string"},"voice":{"id":4,"type":"string"},"engine":{"id":1,"type":"string"},"audioBundleId":{"id":10,"type":"string"},"modelLoadTime":{"id":5,"type":"uint64"},"firstAudioLength":{"id":7,"type":"uint64"},"audioLength":{"id":9,"type":"uint64"},"locale":{"id":3,"type":"string"},"processingTime":{"id":8,
|
|
2
|
+
"type":"uint64"},"timeToFirstAudio":{"id":6,"type":"uint64"}}}}}}}}}};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const text_to_speech_file_io={namespace:"sf.mobileVoicePlatform",name:"TextToSpeechFileIo",pbjsSchema:{"nested":{"sf":{"nested":{"mobileVoicePlatform":{"nested":{"TextToSpeechFileIo":{"fields":{"timeToFirstAudibleAudio":{"id":2,"type":"uint64"},"playbackLength":{"id":1,"type":"uint64"},"audioBundleId":{"id":3,"type":"string"}}}}}}}}}};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const agenticInteraction={namespace:"sf.sentosSearch",name:"AgenticInteraction",pbjsSchema:{"nested":{"sf":{"nested":{"sentosSearch":{"nested":{"AgenticInteraction":{"fields":{"queryLength":{"id":9,"type":"uint32"},"clientSource":{"id":3,"type":"string"},"resultCount":{"id":8,"type":"uint32"},"interactType":{"id":7,"type":"string"},"srchSessionId":{"id":1,"type":"string"},"clientSearchId":{"id":4,"type":"string"},"searchReqSeq":{"id":5,"type":"uint32"},"resultType":{"id":11,"type":"string"},
|
|
2
|
+
"eventMetadata":{"id":10,"type":"string"},"windowId":{"id":2,"type":"string"},"queryId":{"id":6,"type":"string"}}}}}}}}}};
|
package/sf_sentosSearch/index.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
export { agenticInteraction as agenticInteractionSchema } from './agenticInteraction.js';
|
|
1
2
|
export { init as initSchema } from './init.js';
|
|
2
3
|
export { query as querySchema } from './query.js';
|
|
3
4
|
export { resultsPageImpression as resultsPageImpressionSchema } from './resultsPageImpression.js';
|
|
5
|
+
export { resultsPagePerf as resultsPagePerfSchema } from './resultsPagePerf.js';
|
|
4
6
|
export { searchResultsInteraction as searchResultsInteractionSchema } from './searchResultsInteraction.js';
|
|
5
7
|
export { suggestionInteraction as suggestionInteractionSchema } from './suggestionInteraction.js';
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const resultsPagePerf={namespace:"sf.sentosSearch",name:"ResultsPagePerf",pbjsSchema:{"nested":{"sf":{"nested":{"sentosSearch":{"nested":{"ResultsPagePerf":{"fields":{"srchSessionId":{"id":2,"type":"string"},"resultsCount":{"id":8,"type":"uint32"},"resultsType":{"id":1,"type":"string"},"wasAbandoned":{"id":4,"type":"bool"},"clientSearchId":{"id":5,"type":"string"},"scopedSource":{"id":9,"type":"string"},"hasError":{"id":7,"type":"bool"},"isCached":{"id":10,"type":"bool"},"windowId":{"id":3,
|
|
2
|
+
"type":"string"},"queryId":{"id":6,"type":"string"},"queryOrigin":{"id":11,"type":"string"}}}}}}}}}};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export const searchResultsInteraction={namespace:"sf.sentosSearch",name:"SearchResultsInteraction",pbjsSchema:{"nested":{"sf":{"nested":{"sentosSearch":{"nested":{"SearchResultsInteraction":{"fields":{"queryLength":{"id":15,"type":"
|
|
2
|
-
"windowId":{"id":2,"type":"string"},"queryId":{"id":7,"type":"string"},"recordId":{"id":8,"type":"string"},"clientSource":{"id":3,"type":"string"},"recordObject":{"id":17,"type":"string"},"recordPosition":{"id":9,"type":"
|
|
1
|
+
export const searchResultsInteraction={namespace:"sf.sentosSearch",name:"SearchResultsInteraction",pbjsSchema:{"nested":{"sf":{"nested":{"sentosSearch":{"nested":{"SearchResultsInteraction":{"fields":{"queryLength":{"id":15,"type":"uint32"},"pageRank":{"id":10,"type":"uint32"},"resultCount":{"id":14,"type":"uint32"},"pageNumber":{"id":21,"type":"uint32"},"srchSessionId":{"id":1,"type":"string"},"clientSearchId":{"id":4,"type":"string"},"pageSize":{"id":22,"type":"uint32"},"searchReqSeq":{"id":5,"type":"uint32"},
|
|
2
|
+
"windowId":{"id":2,"type":"string"},"queryId":{"id":7,"type":"string"},"recordId":{"id":8,"type":"string"},"clientSource":{"id":3,"type":"string"},"recordObject":{"id":17,"type":"string"},"recordPosition":{"id":9,"type":"uint32"},"interactType":{"id":13,"type":"string"},"sourceRank":{"id":11,"type":"uint32"},"isSplCorrect":{"id":18,"type":"bool"},"isFiltered":{"id":19,"type":"bool"},"isSorted":{"id":20,"type":"bool"},"resultType":{"id":6,"type":"string"},"objectRank":{"id":12,"type":"uint32"},"recordSource":{"id":16,
|
|
3
3
|
"type":"string"}}}}}}}}}};
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
export { agenticInteraction as agenticInteractionSchema } from './agenticInteraction.js';
|
|
1
2
|
export { init as initSchema } from './init.js';
|
|
2
3
|
export { query as querySchema } from './query.js';
|
|
3
4
|
export { resultsPageImpression as resultsPageImpressionSchema } from './resultsPageImpression.js';
|
|
5
|
+
export { resultsPagePerf as resultsPagePerfSchema } from './resultsPagePerf.js';
|
|
4
6
|
export { searchResultsInteraction as searchResultsInteractionSchema } from './searchResultsInteraction.js';
|
|
5
7
|
export { suggestionInteraction as suggestionInteractionSchema } from './suggestionInteraction.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const channel_create_flow={namespace:"sf.slackforce",name:"ChannelCreateFlow",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"ChannelCreateFlow":{"fields":{"chnId":{"id":3,"type":"string"},"teamId":{"id":4,"type":"string"},"action":{"id":2,"type":"string"},"userId":{"id":5,"type":"string"},"elementName":{"id":1,"type":"string"}}}}}}}}}};
|
|
1
|
+
export const channel_create_flow={namespace:"sf.slackforce",name:"ChannelCreateFlow",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"ChannelCreateFlow":{"oneofs":{"_cmpUsageContextId":{"oneof":["cmpUsageContextId"]}},"fields":{"chnId":{"id":3,"type":"string"},"cmpUsageContextId":{"options":{"proto3_optional":true},"id":6,"type":"string"},"teamId":{"id":4,"type":"string"},"action":{"id":2,"type":"string"},"userId":{"id":5,"type":"string"},"elementName":{"id":1,"type":"string"}}}}}}}}}};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const channel_join_click={namespace:"sf.slackforce",name:"ChannelJoinClick",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"ChannelJoinClick":{"fields":{"chnId":{"id":3,"type":"string"},"teamId":{"id":4,"type":"string"},"action":{"id":2,"type":"string"},"userId":{"id":5,"type":"string"},"elementName":{"id":1,"type":"string"}}}}}}}}}};
|
|
1
|
+
export const channel_join_click={namespace:"sf.slackforce",name:"ChannelJoinClick",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"ChannelJoinClick":{"oneofs":{"_cmpUsageContextId":{"oneof":["cmpUsageContextId"]}},"fields":{"chnId":{"id":3,"type":"string"},"cmpUsageContextId":{"options":{"proto3_optional":true},"id":6,"type":"string"},"teamId":{"id":4,"type":"string"},"action":{"id":2,"type":"string"},"userId":{"id":5,"type":"string"},"elementName":{"id":1,"type":"string"}}}}}}}}}};
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export const channel_tabs_tab_impression={namespace:"sf.slackforce",name:"ChannelTabsTabImpression",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"ChannelTabsTabImpression":{"fields":{"chnId":{"id":1,"type":"string"},"
|
|
1
|
+
export const channel_tabs_tab_impression={namespace:"sf.slackforce",name:"ChannelTabsTabImpression",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"ChannelTabsTabImpression":{"oneofs":{"_cmpUsageContextId":{"oneof":["cmpUsageContextId"]}},"fields":{"chnId":{"id":1,"type":"string"},"cmpUsageContextId":{"options":{"proto3_optional":true},"id":7,"type":"string"},"teamId":{"id":5,"type":"string"},"action":{"id":2,"type":"string"},"cmpName":{"id":3,"type":"string"},"cmpVariant":{"id":4,
|
|
2
|
+
"type":"string"},"userId":{"id":6,"type":"string"}}}}}}}}}};
|
package/sf_slackforce/context.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const context={namespace:"sf.slackforce",name:"Context",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"Context":{"fields":{"chnId":{"id":3,"type":"string"},"teamId":{"id":2,"type":"string"},"contextId":{"id":1,"type":"string"},"userId":{"id":4,"type":"string"},"messageTs":{"id":5,"type":"string"}}}}}}}}}};
|
|
1
|
+
export const context={namespace:"sf.slackforce",name:"Context",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"Context":{"oneofs":{"_cmpUsageContextId":{"oneof":["cmpUsageContextId"]}},"fields":{"chnId":{"id":3,"type":"string"},"cmpUsageContextId":{"options":{"proto3_optional":true},"id":6,"type":"string"},"teamId":{"id":2,"type":"string"},"contextId":{"id":1,"type":"string"},"userId":{"id":4,"type":"string"},"messageTs":{"id":5,"type":"string"}}}}}}}}}};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const details_modal={namespace:"sf.slackforce",name:"DetailsModal",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"DetailsModal":{"fields":{"chnId":{"id":4,"type":"string"},"teamId":{"id":5,"type":"string"},"action":{"id":1,"type":"string"},"step":{"id":2,"type":"string"},"elementValue":{"id":3,"type":"string"},"userId":{"id":6,"type":"string"}}}}}}}}}};
|
|
1
|
+
export const details_modal={namespace:"sf.slackforce",name:"DetailsModal",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"DetailsModal":{"oneofs":{"_cmpUsageContextId":{"oneof":["cmpUsageContextId"]}},"fields":{"chnId":{"id":4,"type":"string"},"cmpUsageContextId":{"options":{"proto3_optional":true},"id":7,"type":"string"},"teamId":{"id":5,"type":"string"},"action":{"id":1,"type":"string"},"step":{"id":2,"type":"string"},"elementValue":{"id":3,"type":"string"},"userId":{"id":6,"type":"string"}}}}}}}}}};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const invite_channel={namespace:"sf.slackforce",name:"InviteChannel",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"InviteChannel":{"fields":{"chnId":{"id":6,"type":"string"},"teamId":{"id":4,"type":"string"},"action":{"id":2,"type":"string"},"step":{"id":1,"type":"string"},"userId":{"id":5,"type":"string"},"elementName":{"id":3,"type":"string"}}}}}}}}}};
|
|
1
|
+
export const invite_channel={namespace:"sf.slackforce",name:"InviteChannel",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"InviteChannel":{"oneofs":{"_cmpUsageContextId":{"oneof":["cmpUsageContextId"]}},"fields":{"chnId":{"id":6,"type":"string"},"cmpUsageContextId":{"options":{"proto3_optional":true},"id":7,"type":"string"},"teamId":{"id":4,"type":"string"},"action":{"id":2,"type":"string"},"step":{"id":1,"type":"string"},"userId":{"id":5,"type":"string"},"elementName":{"id":3,"type":"string"}}}}}}}}}};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const load_conversation_history={namespace:"sf.slackforce",name:"LoadConversationHistory",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"LoadConversationHistory":{"
|
|
2
|
-
"type":"uint32"}}}}}}}}}};
|
|
1
|
+
export const load_conversation_history={namespace:"sf.slackforce",name:"LoadConversationHistory",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"LoadConversationHistory":{"oneofs":{"_cmpUsageContextId":{"oneof":["cmpUsageContextId"]}},"fields":{"chnId":{"id":2,"type":"string"},"didUserRequestMoreData":{"id":6,"type":"bool"},"hasMoreMsgs":{"id":9,"type":"bool"},"cmpUsageContextId":{"options":{"proto3_optional":true},"id":10,"type":"string"},"teamId":{"id":1,"type":"string"},"limit":{"id":4,
|
|
2
|
+
"type":"uint32"},"isThread":{"id":5,"type":"bool"},"msgCount":{"id":8,"type":"uint32"},"userId":{"id":3,"type":"string"},"historySize":{"id":7,"type":"uint32"}}}}}}}}}};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const load_conversation_view={namespace:"sf.slackforce",name:"LoadConversationView",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"LoadConversationView":{"fields":{"chnId":{"id":2,"type":"string"},"isChannelReady":{"id":11,"type":"bool"},"notReadyReason":{"id":12,"type":"string"},"conversationInfoCount":{"id":6,"type":"uint32"},"hasMoreMsgs":{"id":10,"type":"bool"},"
|
|
2
|
-
"type":"
|
|
1
|
+
export const load_conversation_view={namespace:"sf.slackforce",name:"LoadConversationView",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"LoadConversationView":{"oneofs":{"_cmpUsageContextId":{"oneof":["cmpUsageContextId"]}},"fields":{"chnId":{"id":2,"type":"string"},"isChannelReady":{"id":11,"type":"bool"},"notReadyReason":{"id":12,"type":"string"},"conversationInfoCount":{"id":6,"type":"uint32"},"hasMoreMsgs":{"id":10,"type":"bool"},"cmpUsageContextId":{"options":{"proto3_optional":true},
|
|
2
|
+
"id":13,"type":"string"},"emojiCount":{"id":7,"type":"uint32"},"userId":{"id":3,"type":"string"},"relatedRecordId":{"id":4,"type":"string"},"teamId":{"id":1,"type":"string"},"limit":{"id":5,"type":"uint32"},"msgCount":{"id":9,"type":"uint32"},"userInfoCount":{"id":8,"type":"uint32"}}}}}}}}}};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const lob_sales_home={namespace:"sf.slackforce",name:"LobSalesHome",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"LobSalesHome":{"oneofs":{"_cmpName":{"oneof":["cmpName"]},"_messageTs":{"oneof":["messageTs"]}
|
|
2
|
-
"type":"string"},"elementName":{"id":2,"type":"string"}}}}}}}}}};
|
|
1
|
+
export const lob_sales_home={namespace:"sf.slackforce",name:"LobSalesHome",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"LobSalesHome":{"oneofs":{"_cmpName":{"oneof":["cmpName"]},"_messageTs":{"oneof":["messageTs"]},"_cmpUsageContextId":{"oneof":["cmpUsageContextId"]}},"fields":{"chnId":{"id":4,"type":"string"},"cmpUsageContextId":{"options":{"proto3_optional":true},"id":8,"type":"string"},"teamId":{"id":5,"type":"string"},"action":{"id":3,"type":"string"},"cmpName":{"options":{"proto3_optional":true},
|
|
2
|
+
"id":7,"type":"string"},"messageTs":{"options":{"proto3_optional":true},"id":1,"type":"string"},"userId":{"id":6,"type":"string"},"elementName":{"id":2,"type":"string"}}}}}}}}}};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const msg_delete={namespace:"sf.slackforce",name:"MsgDelete",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"MsgDelete":{"fields":{"chnId":{"id":1,"type":"string"},"chnType":{"id":2,"type":"string"},"chnPrivType":{"id":3,"type":"uint32"},"teamId":{"id":5,"type":"string"},"messageTs":{"id":4,"type":"string"},"userId":{"id":6,"type":"string"}}}}}}}}}};
|
|
1
|
+
export const msg_delete={namespace:"sf.slackforce",name:"MsgDelete",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"MsgDelete":{"oneofs":{"_cmpUsageContextId":{"oneof":["cmpUsageContextId"]}},"fields":{"chnId":{"id":1,"type":"string"},"chnType":{"id":2,"type":"string"},"chnPrivType":{"id":3,"type":"uint32"},"cmpUsageContextId":{"options":{"proto3_optional":true},"id":7,"type":"string"},"teamId":{"id":5,"type":"string"},"messageTs":{"id":4,"type":"string"},"userId":{"id":6,"type":"string"}}}}}}}}}};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const msg_impression={namespace:"sf.slackforce",name:"MsgImpression",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"MsgImpression":{"oneofs":{"_threadTs":{"oneof":["threadTs"]}},"fields":{"chnId":{"id":1,"type":"string"},"duration":{"id":5,"type":"uint32"},"isUnreadMsg":{"id":6,"type":"bool"},"authorUserId":{"id":4,"type":"string"},"
|
|
2
|
-
"type":"string"},"userId":{"id":8,"type":"string"}}}}}}}}}};
|
|
1
|
+
export const msg_impression={namespace:"sf.slackforce",name:"MsgImpression",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"MsgImpression":{"oneofs":{"_threadTs":{"oneof":["threadTs"]},"_cmpUsageContextId":{"oneof":["cmpUsageContextId"]}},"fields":{"chnId":{"id":1,"type":"string"},"duration":{"id":5,"type":"uint32"},"isUnreadMsg":{"id":6,"type":"bool"},"authorUserId":{"id":4,"type":"string"},"cmpUsageContextId":{"options":{"proto3_optional":true},"id":10,"type":"string"},"teamId":{"id":7,
|
|
2
|
+
"type":"string"},"cmpName":{"id":9,"type":"string"},"threadTs":{"options":{"proto3_optional":true},"id":3,"type":"string"},"messageTs":{"id":2,"type":"string"},"userId":{"id":8,"type":"string"}}}}}}}}}};
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export const msg_link_clicked={namespace:"sf.slackforce",name:"MsgLinkClicked",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"MsgLinkClicked":{"fields":{"chnId":{"id":1,"type":"string"},"itemType":{"id":5,"type":"string"},"chnType":{"id":2,"type":"string"},"chnPrivType":{"id":3,"type":"uint32"},"urlDomain":{"id":6,"type":"string"},"
|
|
1
|
+
export const msg_link_clicked={namespace:"sf.slackforce",name:"MsgLinkClicked",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"MsgLinkClicked":{"oneofs":{"_cmpUsageContextId":{"oneof":["cmpUsageContextId"]}},"fields":{"chnId":{"id":1,"type":"string"},"itemType":{"id":5,"type":"string"},"chnType":{"id":2,"type":"string"},"chnPrivType":{"id":3,"type":"uint32"},"urlDomain":{"id":6,"type":"string"},"cmpUsageContextId":{"options":{"proto3_optional":true},"id":10,"type":"string"},"teamId":{"id":8,
|
|
2
|
+
"type":"string"},"linkType":{"id":7,"type":"string"},"messageTs":{"id":4,"type":"string"},"userId":{"id":9,"type":"string"}}}}}}}}}};
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export const msg_reads_impression={namespace:"sf.slackforce",name:"MsgReadsImpression",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"MsgReadsImpression":{"
|
|
1
|
+
export const msg_reads_impression={namespace:"sf.slackforce",name:"MsgReadsImpression",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"MsgReadsImpression":{"oneofs":{"_cmpUsageContextId":{"oneof":["cmpUsageContextId"]}},"fields":{"chnId":{"id":1,"type":"string"},"isUnreadMsg":{"id":7,"type":"bool"},"authorUserId":{"id":5,"type":"string"},"cmpUsageContextId":{"options":{"proto3_optional":true},"id":10,"type":"string"},"teamId":{"id":8,"type":"string"},"cmpName":{"id":2,"type":"string"},
|
|
2
|
+
"action":{"id":4,"type":"string"},"cmpVariant":{"id":3,"type":"string"},"messageTs":{"id":6,"type":"string"},"userId":{"id":9,"type":"string"}}}}}}}}}};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const msg_scroll={namespace:"sf.slackforce",name:"MsgScroll",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"MsgScroll":{"fields":{"chnId":{"id":1,"type":"string"},"teamId":{"id":5,"type":"string"},"action":{"id":2,"type":"string"},"cmpName":{"id":3,"type":"string"},"cmpVariant":{"id":4,"type":"string"},"userId":{"id":6,"type":"string"}}}}}}}}}};
|
|
1
|
+
export const msg_scroll={namespace:"sf.slackforce",name:"MsgScroll",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"MsgScroll":{"oneofs":{"_cmpUsageContextId":{"oneof":["cmpUsageContextId"]}},"fields":{"chnId":{"id":1,"type":"string"},"cmpUsageContextId":{"options":{"proto3_optional":true},"id":7,"type":"string"},"teamId":{"id":5,"type":"string"},"action":{"id":2,"type":"string"},"cmpName":{"id":3,"type":"string"},"cmpVariant":{"id":4,"type":"string"},"userId":{"id":6,"type":"string"}}}}}}}}}};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const msg_sent={namespace:"sf.slackforce",name:"MsgSent",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"MsgSent":{"fields":{"chnId":{"id":1,"type":"string"},"chnType":{"id":2,"type":"string"},"chnPrivType":{"id":3,"type":"uint32"},"teamId":{"id":5,"type":"string"},"messageTs":{"id":4,"type":"string"},"userId":{"id":6,"type":"string"}}}}}}}}}};
|
|
1
|
+
export const msg_sent={namespace:"sf.slackforce",name:"MsgSent",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"MsgSent":{"oneofs":{"_cmpUsageContextId":{"oneof":["cmpUsageContextId"]}},"fields":{"chnId":{"id":1,"type":"string"},"chnType":{"id":2,"type":"string"},"chnPrivType":{"id":3,"type":"uint32"},"cmpUsageContextId":{"options":{"proto3_optional":true},"id":7,"type":"string"},"teamId":{"id":5,"type":"string"},"messageTs":{"id":4,"type":"string"},"userId":{"id":6,"type":"string"}}}}}}}}}};
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export const msg_submitted_mentions={namespace:"sf.slackforce",name:"MsgSubmittedMentions",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"MsgSubmittedMentions":{"fields":{"chnId":{"id":4,"type":"string"},"chnType":{"id":5,"type":"string"},"chnPrivType":{"id":6,"type":"uint32"},"
|
|
1
|
+
export const msg_submitted_mentions={namespace:"sf.slackforce",name:"MsgSubmittedMentions",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"MsgSubmittedMentions":{"oneofs":{"_cmpUsageContextId":{"oneof":["cmpUsageContextId"]}},"fields":{"chnId":{"id":4,"type":"string"},"chnType":{"id":5,"type":"string"},"chnPrivType":{"id":6,"type":"uint32"},"cmpUsageContextId":{"options":{"proto3_optional":true},"id":7,"type":"string"},"teamId":{"id":2,"type":"string"},"mentionsCount":{"id":1,"type":"uint32"},
|
|
2
|
+
"userId":{"id":3,"type":"string"}}}}}}}}}};
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export const reaction_added={namespace:"sf.slackforce",name:"ReactionAdded",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"ReactionAdded":{"fields":{"chnId":{"id":1,"type":"string"},"chnType":{"id":2,"type":"string"},"chnPrivType":{"id":3,"type":"uint32"},"
|
|
1
|
+
export const reaction_added={namespace:"sf.slackforce",name:"ReactionAdded",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"ReactionAdded":{"oneofs":{"_cmpUsageContextId":{"oneof":["cmpUsageContextId"]}},"fields":{"chnId":{"id":1,"type":"string"},"chnType":{"id":2,"type":"string"},"chnPrivType":{"id":3,"type":"uint32"},"cmpUsageContextId":{"options":{"proto3_optional":true},"id":7,"type":"string"},"teamId":{"id":5,"type":"string"},"messageTs":{"id":4,"type":"string"},"userId":{"id":6,
|
|
2
|
+
"type":"string"}}}}}}}}}};
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export const reaction_removed={namespace:"sf.slackforce",name:"ReactionRemoved",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"ReactionRemoved":{"fields":{"chnId":{"id":1,"type":"string"},"chnType":{"id":2,"type":"string"},"chnPrivType":{"id":3,"type":"uint32"},"
|
|
1
|
+
export const reaction_removed={namespace:"sf.slackforce",name:"ReactionRemoved",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"ReactionRemoved":{"oneofs":{"_cmpUsageContextId":{"oneof":["cmpUsageContextId"]}},"fields":{"chnId":{"id":1,"type":"string"},"chnType":{"id":2,"type":"string"},"chnPrivType":{"id":3,"type":"uint32"},"cmpUsageContextId":{"options":{"proto3_optional":true},"id":7,"type":"string"},"teamId":{"id":5,"type":"string"},"messageTs":{"id":4,"type":"string"},"userId":{"id":6,
|
|
2
|
+
"type":"string"}}}}}}}}}};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export const records_salesforce_record_view={namespace:"sf.slackforce",name:"RecordsSalesforceRecordView",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"RecordsSalesforceRecordView":{"oneofs":{"_chnPrivType":{"oneof":["chnPrivType"]},"_chnType":{"oneof":["chnType"]},"_elementValue":{"oneof":["elementValue"]},"_source":{"oneof":["source"]},"_messageTs":{"oneof":["messageTs"]},"_elementName":{"oneof":["elementName"]}
|
|
2
|
-
"
|
|
3
|
-
"id":
|
|
1
|
+
export const records_salesforce_record_view={namespace:"sf.slackforce",name:"RecordsSalesforceRecordView",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"RecordsSalesforceRecordView":{"oneofs":{"_chnPrivType":{"oneof":["chnPrivType"]},"_chnType":{"oneof":["chnType"]},"_elementValue":{"oneof":["elementValue"]},"_source":{"oneof":["source"]},"_messageTs":{"oneof":["messageTs"]},"_elementName":{"oneof":["elementName"]},"_cmpUsageContextId":{"oneof":["cmpUsageContextId"]}},"fields":{"chnId":{"id":1,
|
|
2
|
+
"type":"string"},"cmpUsageContextId":{"options":{"proto3_optional":true},"id":13,"type":"string"},"cmpName":{"id":3,"type":"string"},"source":{"options":{"proto3_optional":true},"id":11,"type":"string"},"userId":{"id":8,"type":"string"},"messageTs":{"options":{"proto3_optional":true},"id":12,"type":"string"},"elementName":{"options":{"proto3_optional":true},"id":5,"type":"string"},"chnType":{"options":{"proto3_optional":true},"id":9,"type":"string"},"chnPrivType":{"options":{"proto3_optional":true},
|
|
3
|
+
"id":10,"type":"uint32"},"teamId":{"id":7,"type":"string"},"action":{"id":2,"type":"string"},"elementValue":{"options":{"proto3_optional":true},"id":6,"type":"string"},"cmpVariant":{"id":4,"type":"string"}}}}}}}}}};
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export const rimeto_hover_card_view={namespace:"sf.slackforce",name:"RimetoHoverCardView",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"RimetoHoverCardView":{"fields":{"chnId":{"id":3,"type":"string"},"
|
|
1
|
+
export const rimeto_hover_card_view={namespace:"sf.slackforce",name:"RimetoHoverCardView",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"RimetoHoverCardView":{"oneofs":{"_cmpUsageContextId":{"oneof":["cmpUsageContextId"]}},"fields":{"chnId":{"id":3,"type":"string"},"cmpUsageContextId":{"options":{"proto3_optional":true},"id":7,"type":"string"},"profileId":{"id":4,"type":"string"},"teamId":{"id":5,"type":"string"},"cmpName":{"id":1,"type":"string"},"action":{"id":2,"type":"string"},
|
|
2
|
+
"userId":{"id":6,"type":"string"}}}}}}}}}};
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export const threads_reply={namespace:"sf.slackforce",name:"ThreadsReply",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"ThreadsReply":{"fields":{"chnId":{"id":2,"type":"string"},"msgsCount":{"id":6,"type":"uint32"},"chnType":{"id":3,"type":"string"},"chnPrivType":{"id":4,"type":"uint32"},"
|
|
1
|
+
export const threads_reply={namespace:"sf.slackforce",name:"ThreadsReply",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"ThreadsReply":{"oneofs":{"_cmpUsageContextId":{"oneof":["cmpUsageContextId"]}},"fields":{"chnId":{"id":2,"type":"string"},"msgsCount":{"id":6,"type":"uint32"},"chnType":{"id":3,"type":"string"},"chnPrivType":{"id":4,"type":"uint32"},"cmpUsageContextId":{"options":{"proto3_optional":true},"id":9,"type":"string"},"teamId":{"id":7,"type":"string"},"parentMessageId":{"id":1,
|
|
2
|
+
"type":"string"},"messageTs":{"id":5,"type":"string"},"userId":{"id":8,"type":"string"}}}}}}}}}};
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export const unread_indicator={namespace:"sf.slackforce",name:"UnreadIndicator",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"UnreadIndicator":{"fields":{"chnId":{"id":3,"type":"string"},"
|
|
1
|
+
export const unread_indicator={namespace:"sf.slackforce",name:"UnreadIndicator",pbjsSchema:{"nested":{"sf":{"nested":{"slackforce":{"nested":{"UnreadIndicator":{"oneofs":{"_cmpUsageContextId":{"oneof":["cmpUsageContextId"]}},"fields":{"chnId":{"id":3,"type":"string"},"cmpUsageContextId":{"options":{"proto3_optional":true},"id":8,"type":"string"},"teamId":{"id":4,"type":"string"},"action":{"id":2,"type":"string"},"cmpName":{"id":6,"type":"string"},"cmpVariant":{"id":7,"type":"string"},"userId":{"id":5,
|
|
2
|
+
"type":"string"},"elementName":{"id":1,"type":"string"}}}}}}}}}};
|
package/version/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version='260.
|
|
1
|
+
export const version='260.20.0'
|