@salesforce/lds-adapters-platform-slack-bridge 1.365.0 → 1.366.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/dist/es/es2018/platform-slack-bridge.js +1478 -1150
- package/dist/es/es2018/types/src/generated/adapters/getSlackSearchMPIMs.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +3 -1
- package/dist/es/es2018/types/src/generated/resources/getConnectSlackbridgeTeamSearchMpimsByTeamId.d.ts +19 -0
- package/dist/es/es2018/types/src/generated/types/SlackBridgeConversationOutputRepresentation.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/SlackBridgeFileOutputRepresentation.d.ts +3 -3
- package/dist/es/es2018/types/src/generated/types/SlackBridgeMPIMSearchResultOutputRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/SlackBridgeMPIMSearchResultsOutputRepresentation.d.ts +33 -0
- package/package.json +3 -3
- package/sfdc/index.js +1435 -1091
- package/src/raml/api.raml +51 -1
- package/src/raml/luvio.raml +10 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_getConnectSlackbridgeTeamSearchMpimsByTeamId_ResourceRequestConfig } from '../resources/getConnectSlackbridgeTeamSearchMpimsByTeamId';
|
|
4
|
+
import { SlackBridgeMPIMSearchResultsOutputRepresentation as types_SlackBridgeMPIMSearchResultsOutputRepresentation_SlackBridgeMPIMSearchResultsOutputRepresentation } from '../types/SlackBridgeMPIMSearchResultsOutputRepresentation';
|
|
5
|
+
export declare const adapterName = "getSlackSearchMPIMs";
|
|
6
|
+
export declare const getSlackSearchMPIMs_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getSlackSearchMPIMs_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetSlackSearchMPIMsConfig {
|
|
9
|
+
teamId: string;
|
|
10
|
+
search?: string;
|
|
11
|
+
useDisplayName?: boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare const createResourceParams: (config: GetSlackSearchMPIMsConfig) => resources_getConnectSlackbridgeTeamSearchMpimsByTeamId_ResourceRequestConfig;
|
|
14
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetSlackSearchMPIMsConfig): string;
|
|
15
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetSlackSearchMPIMsConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
16
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetSlackSearchMPIMsConfig>): adapter$45$utils_Untrusted<GetSlackSearchMPIMsConfig>;
|
|
17
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetSlackSearchMPIMsConfig | null;
|
|
18
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetSlackSearchMPIMsConfig): $64$luvio_engine_Fragment;
|
|
19
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetSlackSearchMPIMsConfig): $64$luvio_engine_Snapshot<types_SlackBridgeMPIMSearchResultsOutputRepresentation_SlackBridgeMPIMSearchResultsOutputRepresentation, any>;
|
|
20
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetSlackSearchMPIMsConfig, resourceParams: resources_getConnectSlackbridgeTeamSearchMpimsByTeamId_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_SlackBridgeMPIMSearchResultsOutputRepresentation_SlackBridgeMPIMSearchResultsOutputRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_SlackBridgeMPIMSearchResultsOutputRepresentation_SlackBridgeMPIMSearchResultsOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_SlackBridgeMPIMSearchResultsOutputRepresentation_SlackBridgeMPIMSearchResultsOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_SlackBridgeMPIMSearchResultsOutputRepresentation_SlackBridgeMPIMSearchResultsOutputRepresentation, any>>;
|
|
21
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetSlackSearchMPIMsConfig, resourceParams: resources_getConnectSlackbridgeTeamSearchMpimsByTeamId_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
22
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetSlackSearchMPIMsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_SlackBridgeMPIMSearchResultsOutputRepresentation_SlackBridgeMPIMSearchResultsOutputRepresentation, any>>;
|
|
23
|
+
export type BuildSnapshotContext = {
|
|
24
|
+
luvio: $64$luvio_engine_Luvio;
|
|
25
|
+
config: GetSlackSearchMPIMsConfig;
|
|
26
|
+
};
|
|
27
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_SlackBridgeMPIMSearchResultsOutputRepresentation_SlackBridgeMPIMSearchResultsOutputRepresentation, any>>;
|
|
28
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_SlackBridgeMPIMSearchResultsOutputRepresentation_SlackBridgeMPIMSearchResultsOutputRepresentation>): $64$luvio_engine_Snapshot<types_SlackBridgeMPIMSearchResultsOutputRepresentation_SlackBridgeMPIMSearchResultsOutputRepresentation, any>;
|
|
29
|
+
export declare const getSlackSearchMPIMsAdapterFactory: $64$luvio_engine_AdapterFactory<GetSlackSearchMPIMsConfig, types_SlackBridgeMPIMSearchResultsOutputRepresentation_SlackBridgeMPIMSearchResultsOutputRepresentation>;
|
|
@@ -21,5 +21,6 @@ export { getSlackEmojisAdapterFactory } from '../adapters/getSlackEmojis';
|
|
|
21
21
|
export { getSlackEmojiAdapterFactory } from '../adapters/getSlackEmoji';
|
|
22
22
|
export { getSlackSearchConversationAdapterFactory } from '../adapters/getSlackSearchConversation';
|
|
23
23
|
export { getSlackSearchEmojiAdapterFactory } from '../adapters/getSlackSearchEmoji';
|
|
24
|
+
export { getSlackSearchMPIMsAdapterFactory } from '../adapters/getSlackSearchMPIMs';
|
|
24
25
|
export { getSlackSearchUserAdapterFactory } from '../adapters/getSlackSearchUser';
|
|
25
26
|
export { getSlackUserAdapterFactory } from '../adapters/getSlackUser';
|
|
@@ -20,6 +20,7 @@ declare let getSlackRecordChannelInfo: any;
|
|
|
20
20
|
declare let getSlackRecordChannelInfoNotifyChange: any;
|
|
21
21
|
declare let getSlackSearchConversation: any;
|
|
22
22
|
declare let getSlackSearchEmoji: any;
|
|
23
|
+
declare let getSlackSearchMPIMs: any;
|
|
23
24
|
declare let getSlackSearchUser: any;
|
|
24
25
|
declare let getSlackUser: any;
|
|
25
26
|
declare let getSlackUserNotifyChange: any;
|
|
@@ -43,6 +44,7 @@ declare let getSlackMessage_imperative: any;
|
|
|
43
44
|
declare let getSlackRecordChannelInfo_imperative: any;
|
|
44
45
|
declare let getSlackSearchConversation_imperative: any;
|
|
45
46
|
declare let getSlackSearchEmoji_imperative: any;
|
|
47
|
+
declare let getSlackSearchMPIMs_imperative: any;
|
|
46
48
|
declare let getSlackSearchUser_imperative: any;
|
|
47
49
|
declare let getSlackUser_imperative: any;
|
|
48
|
-
export { deleteSlackConversationMember, deleteSlackMessage, deleteSlackMessageReactions, getRelatedThreads, getSlackConversation, getSlackConversationInfo, getSlackConversationInfoNotifyChange, getSlackConversationInfos, getSlackConversationMember, getSlackConversationMemberNotifyChange, getSlackConversationMembers, getSlackConversationMembersNotifyChange, getSlackDisplayLogin, getSlackEmoji, getSlackEmojiNotifyChange, getSlackEmojis, getSlackMessage, getSlackMessageNotifyChange, getSlackRecordChannelInfo, getSlackRecordChannelInfoNotifyChange, getSlackSearchConversation, getSlackSearchEmoji, getSlackSearchUser, getSlackUser, getSlackUserNotifyChange, patchSlackMessage, postSlackConversation, postSlackConversationMark, postSlackConversationMembers, postSlackFile, postSlackMessageReactions, postSlackRecordChannelInfos, getRelatedThreads_imperative, getSlackConversation_imperative, getSlackConversationInfo_imperative, getSlackConversationInfos_imperative, getSlackConversationMember_imperative, getSlackConversationMembers_imperative, getSlackDisplayLogin_imperative, getSlackEmoji_imperative, getSlackEmojis_imperative, getSlackMessage_imperative, getSlackRecordChannelInfo_imperative, getSlackSearchConversation_imperative, getSlackSearchEmoji_imperative, getSlackSearchUser_imperative, getSlackUser_imperative, };
|
|
50
|
+
export { deleteSlackConversationMember, deleteSlackMessage, deleteSlackMessageReactions, getRelatedThreads, getSlackConversation, getSlackConversationInfo, getSlackConversationInfoNotifyChange, getSlackConversationInfos, getSlackConversationMember, getSlackConversationMemberNotifyChange, getSlackConversationMembers, getSlackConversationMembersNotifyChange, getSlackDisplayLogin, getSlackEmoji, getSlackEmojiNotifyChange, getSlackEmojis, getSlackMessage, getSlackMessageNotifyChange, getSlackRecordChannelInfo, getSlackRecordChannelInfoNotifyChange, getSlackSearchConversation, getSlackSearchEmoji, getSlackSearchMPIMs, getSlackSearchUser, getSlackUser, getSlackUserNotifyChange, patchSlackMessage, postSlackConversation, postSlackConversationMark, postSlackConversationMembers, postSlackFile, postSlackMessageReactions, postSlackRecordChannelInfos, getRelatedThreads_imperative, getSlackConversation_imperative, getSlackConversationInfo_imperative, getSlackConversationInfos_imperative, getSlackConversationMember_imperative, getSlackConversationMembers_imperative, getSlackDisplayLogin_imperative, getSlackEmoji_imperative, getSlackEmojis_imperative, getSlackMessage_imperative, getSlackRecordChannelInfo_imperative, getSlackSearchConversation_imperative, getSlackSearchEmoji_imperative, getSlackSearchMPIMs_imperative, getSlackSearchUser_imperative, getSlackUser_imperative, };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { SlackBridgeMPIMSearchResultsOutputRepresentation as types_SlackBridgeMPIMSearchResultsOutputRepresentation_SlackBridgeMPIMSearchResultsOutputRepresentation } from '../types/SlackBridgeMPIMSearchResultsOutputRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
teamId: string;
|
|
6
|
+
};
|
|
7
|
+
queryParams: {
|
|
8
|
+
search?: string;
|
|
9
|
+
useDisplayName?: boolean;
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
13
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
14
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_SlackBridgeMPIMSearchResultsOutputRepresentation_SlackBridgeMPIMSearchResultsOutputRepresentation): void;
|
|
16
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_SlackBridgeMPIMSearchResultsOutputRepresentation_SlackBridgeMPIMSearchResultsOutputRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_SlackBridgeMPIMSearchResultsOutputRepresentation_SlackBridgeMPIMSearchResultsOutputRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_SlackBridgeMPIMSearchResultsOutputRepresentation_SlackBridgeMPIMSearchResultsOutputRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_SlackBridgeMPIMSearchResultsOutputRepresentation_SlackBridgeMPIMSearchResultsOutputRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_SlackBridgeMPIMSearchResultsOutputRepresentation_SlackBridgeMPIMSearchResultsOutputRepresentation, any>;
|
|
17
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_SlackBridgeMPIMSearchResultsOutputRepresentation_SlackBridgeMPIMSearchResultsOutputRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
18
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
19
|
+
export default createResourceRequest;
|
package/dist/es/es2018/types/src/generated/types/SlackBridgeConversationOutputRepresentation.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { SlackBridgeUserInfoOutputRepresentation as SlackBridgeUserInfoOutputRep
|
|
|
3
3
|
import { SlackBridgeConversationInfoOutputRepresentation as SlackBridgeConversationInfoOutputRepresentation_SlackBridgeConversationInfoOutputRepresentation } from './SlackBridgeConversationInfoOutputRepresentation';
|
|
4
4
|
import { SlackBridgeEmojiOutputRepresentation as SlackBridgeEmojiOutputRepresentation_SlackBridgeEmojiOutputRepresentation } from './SlackBridgeEmojiOutputRepresentation';
|
|
5
5
|
import { SlackBridgeConversationHistoryOutputRepresentation as SlackBridgeConversationHistoryOutputRepresentation_SlackBridgeConversationHistoryOutputRepresentation } from './SlackBridgeConversationHistoryOutputRepresentation';
|
|
6
|
+
export declare const TTL = 500;
|
|
6
7
|
export declare const VERSION = "1119f2c416d047eefd8303c5a2d590ae";
|
|
7
8
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
8
9
|
export declare const RepresentationType: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SlackBridgeContentDocumentOutputRepresentation as SlackBridgeContentDocumentOutputRepresentation_SlackBridgeContentDocumentOutputRepresentation } from './SlackBridgeContentDocumentOutputRepresentation';
|
|
2
2
|
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "99be0f9126140de113f28042c5c94412";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -35,7 +35,7 @@ export interface SlackBridgeFileOutputRepresentationNormalized {
|
|
|
35
35
|
/** Name of the File */
|
|
36
36
|
name: string;
|
|
37
37
|
/** Pretty type of the File */
|
|
38
|
-
prettyType
|
|
38
|
+
prettyType: string | null;
|
|
39
39
|
/** Size of the File */
|
|
40
40
|
size: number | null;
|
|
41
41
|
/** Slack Permalink for the File */
|
|
@@ -109,7 +109,7 @@ export interface SlackBridgeFileOutputRepresentation {
|
|
|
109
109
|
id: string;
|
|
110
110
|
mimetype: string;
|
|
111
111
|
name: string;
|
|
112
|
-
prettyType
|
|
112
|
+
prettyType: string | null;
|
|
113
113
|
size: number | null;
|
|
114
114
|
slackPermalink: string;
|
|
115
115
|
thumb1024: string | null;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const TTL = 500;
|
|
3
|
+
export declare const VERSION = "f5163219d8f420b0f2fe9664574a18be";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: SlackBridgeMPIMSearchResultOutputRepresentation, existing: SlackBridgeMPIMSearchResultOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SlackBridgeMPIMSearchResultOutputRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: SlackBridgeMPIMSearchResultOutputRepresentationNormalized, incoming: SlackBridgeMPIMSearchResultOutputRepresentationNormalized): boolean;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: SlackBridgeMPIMSearchResultOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Contains the search result for a single MPIM
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface SlackBridgeMPIMSearchResultOutputRepresentationNormalized {
|
|
18
|
+
/** Id of the Conversation */
|
|
19
|
+
id: string;
|
|
20
|
+
/** List of Slack user ids that are members of this MPIM */
|
|
21
|
+
members: Array<string>;
|
|
22
|
+
/** Name of the Conversation */
|
|
23
|
+
name: string;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Contains the search result for a single MPIM
|
|
27
|
+
*
|
|
28
|
+
* Keys:
|
|
29
|
+
* (none)
|
|
30
|
+
*/
|
|
31
|
+
export interface SlackBridgeMPIMSearchResultOutputRepresentation {
|
|
32
|
+
id: string;
|
|
33
|
+
members: Array<string>;
|
|
34
|
+
name: string;
|
|
35
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { SlackBridgeMPIMSearchResultOutputRepresentation as SlackBridgeMPIMSearchResultOutputRepresentation_SlackBridgeMPIMSearchResultOutputRepresentation } from './SlackBridgeMPIMSearchResultOutputRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
+
export declare const TTL = 500;
|
|
4
|
+
export declare const VERSION = "b338926dfda8feabf1a28d4f96aedee3";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: SlackBridgeMPIMSearchResultsOutputRepresentation, existing: SlackBridgeMPIMSearchResultsOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SlackBridgeMPIMSearchResultsOutputRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
9
|
+
export declare function equals(existing: SlackBridgeMPIMSearchResultsOutputRepresentationNormalized, incoming: SlackBridgeMPIMSearchResultsOutputRepresentationNormalized): boolean;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: SlackBridgeMPIMSearchResultsOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
|
+
/**
|
|
13
|
+
* Contains the search results for a collection of MPIMs
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface SlackBridgeMPIMSearchResultsOutputRepresentationNormalized {
|
|
19
|
+
/** List of Slack MPIM search results */
|
|
20
|
+
mpims: Array<SlackBridgeMPIMSearchResultOutputRepresentation_SlackBridgeMPIMSearchResultOutputRepresentation>;
|
|
21
|
+
/** String used to search for this list of MPIMs (Optional) */
|
|
22
|
+
searchString: string | null;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Contains the search results for a collection of MPIMs
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface SlackBridgeMPIMSearchResultsOutputRepresentation {
|
|
31
|
+
mpims: Array<SlackBridgeMPIMSearchResultOutputRepresentation_SlackBridgeMPIMSearchResultOutputRepresentation>;
|
|
32
|
+
searchString: string | null;
|
|
33
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-platform-slack-bridge",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.366.0",
|
|
4
4
|
"description": "API for bridging over to Slack from Salesforce Core",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/platform-slack-bridge.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.366.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.366.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|