@salesforce/lds-adapters-platform-slack-bridge 1.354.0-dev2 → 1.354.0-dev21
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 +4999 -1969
- package/dist/es/es2018/types/src/generated/adapters/getSlackConversation.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/adapters/getSlackConversationInfo.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/adapters/getSlackConversationInfos.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/getSlackSearchMPIMs.d.ts +29 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +8 -1
- package/dist/es/es2018/types/src/generated/resources/getConnectSlackbridgeConversationMessages.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectSlackbridgeTeamChannelsByChannelIdAndTeamId.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectSlackbridgeTeamChannelsByTeamId.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectSlackbridgeTeamSearchMpimsByTeamId.d.ts +19 -0
- package/dist/es/es2018/types/src/generated/types/SlackBridgeConversationHistoryOutputRepresentation.d.ts +12 -3
- package/dist/es/es2018/types/src/generated/types/SlackBridgeConversationInfoOutputRepresentation.d.ts +33 -1
- package/dist/es/es2018/types/src/generated/types/SlackBridgeConversationOutputRepresentation.d.ts +13 -1
- package/dist/es/es2018/types/src/generated/types/SlackBridgeConversationPropertiesOutputRepresentation.d.ts +41 -0
- package/dist/es/es2018/types/src/generated/types/SlackBridgeConversationRestrictionsOutputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/SlackBridgeDisplayLoginOutputRepresentation.d.ts +4 -3
- package/dist/es/es2018/types/src/generated/types/SlackBridgeEnterpriseUserInfoOutputRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/SlackBridgeFileOutputRepresentation.d.ts +78 -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/dist/es/es2018/types/src/generated/types/SlackBridgeMessageOutputRepresentation.d.ts +15 -3
- package/dist/es/es2018/types/src/generated/types/SlackBridgeUserInfoOutputRepresentation.d.ts +33 -5
- package/dist/es/es2018/types/src/generated/types/SlackBridgeUserInfosOutputRepresentation.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +5995 -2882
- package/src/raml/api.raml +345 -7
- package/src/raml/luvio.raml +22 -1
|
@@ -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 {
|
|
@@ -18,7 +18,7 @@ export declare function equals(existing: SlackBridgeFileOutputRepresentationNorm
|
|
|
18
18
|
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
19
19
|
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: SlackBridgeFileOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
20
20
|
/**
|
|
21
|
-
* Contains the details of
|
|
21
|
+
* Contains the details of a Slack file
|
|
22
22
|
*
|
|
23
23
|
* Keys:
|
|
24
24
|
* uniqueKey (string | null): uniqueKey
|
|
@@ -34,10 +34,60 @@ export interface SlackBridgeFileOutputRepresentationNormalized {
|
|
|
34
34
|
mimetype: string;
|
|
35
35
|
/** Name of the File */
|
|
36
36
|
name: string;
|
|
37
|
+
/** Pretty type of the File */
|
|
38
|
+
prettyType: string | null;
|
|
37
39
|
/** Size of the File */
|
|
38
40
|
size: number | null;
|
|
39
41
|
/** Slack Permalink for the File */
|
|
40
42
|
slackPermalink: string;
|
|
43
|
+
/** Thumbnail URL (1024 height) */
|
|
44
|
+
thumb1024: string | null;
|
|
45
|
+
/** Thumbnail 1024 height */
|
|
46
|
+
thumb1024H: number | null;
|
|
47
|
+
/** Thumbnail 1024 width */
|
|
48
|
+
thumb1024W: number | null;
|
|
49
|
+
/** Thumbnail URL (360 height) */
|
|
50
|
+
thumb360: string | null;
|
|
51
|
+
/** Thumbnail 360 height */
|
|
52
|
+
thumb360H: number | null;
|
|
53
|
+
/** Thumbnail 360 width */
|
|
54
|
+
thumb360W: number | null;
|
|
55
|
+
/** Thumbnail URL (480 height) */
|
|
56
|
+
thumb480: string | null;
|
|
57
|
+
/** Thumbnail 480 height */
|
|
58
|
+
thumb480H: number | null;
|
|
59
|
+
/** Thumbnail 480 width */
|
|
60
|
+
thumb480W: number | null;
|
|
61
|
+
/** Thumbnail URL (64 height) */
|
|
62
|
+
thumb64: string | null;
|
|
63
|
+
/** Thumbnail URL (720 height) */
|
|
64
|
+
thumb720: string | null;
|
|
65
|
+
/** Thumbnail 720 height */
|
|
66
|
+
thumb720H: number | null;
|
|
67
|
+
/** Thumbnail 720 width */
|
|
68
|
+
thumb720W: number | null;
|
|
69
|
+
/** Thumbnail URL (80 height) */
|
|
70
|
+
thumb80: string | null;
|
|
71
|
+
/** Thumbnail URL (800 height) */
|
|
72
|
+
thumb800: string | null;
|
|
73
|
+
/** Thumbnail 800 height */
|
|
74
|
+
thumb800H: number | null;
|
|
75
|
+
/** Thumbnail 800 width */
|
|
76
|
+
thumb800W: number | null;
|
|
77
|
+
/** Thumbnail URL (960 height) */
|
|
78
|
+
thumb960: string | null;
|
|
79
|
+
/** PDF thumbnail URL */
|
|
80
|
+
thumbPdf: string | null;
|
|
81
|
+
/** PDF thumbnail height */
|
|
82
|
+
thumbPdfH: number | null;
|
|
83
|
+
/** PDF thumbnail width */
|
|
84
|
+
thumbPdfW: number | null;
|
|
85
|
+
/** Video thumbnail */
|
|
86
|
+
thumbVideo: string | null;
|
|
87
|
+
/** Video thumbnail height */
|
|
88
|
+
thumbVideoHeight: number | null;
|
|
89
|
+
/** Video thumbnail width */
|
|
90
|
+
thumbVideoWidth: number | null;
|
|
41
91
|
/** Title of the File */
|
|
42
92
|
title: string;
|
|
43
93
|
/** Token used for the File */
|
|
@@ -48,7 +98,7 @@ export interface SlackBridgeFileOutputRepresentationNormalized {
|
|
|
48
98
|
url: string | null;
|
|
49
99
|
}
|
|
50
100
|
/**
|
|
51
|
-
* Contains the details of
|
|
101
|
+
* Contains the details of a Slack file
|
|
52
102
|
*
|
|
53
103
|
* Keys:
|
|
54
104
|
* uniqueKey (string | null): uniqueKey
|
|
@@ -59,8 +109,33 @@ export interface SlackBridgeFileOutputRepresentation {
|
|
|
59
109
|
id: string;
|
|
60
110
|
mimetype: string;
|
|
61
111
|
name: string;
|
|
112
|
+
prettyType: string | null;
|
|
62
113
|
size: number | null;
|
|
63
114
|
slackPermalink: string;
|
|
115
|
+
thumb1024: string | null;
|
|
116
|
+
thumb1024H: number | null;
|
|
117
|
+
thumb1024W: number | null;
|
|
118
|
+
thumb360: string | null;
|
|
119
|
+
thumb360H: number | null;
|
|
120
|
+
thumb360W: number | null;
|
|
121
|
+
thumb480: string | null;
|
|
122
|
+
thumb480H: number | null;
|
|
123
|
+
thumb480W: number | null;
|
|
124
|
+
thumb64: string | null;
|
|
125
|
+
thumb720: string | null;
|
|
126
|
+
thumb720H: number | null;
|
|
127
|
+
thumb720W: number | null;
|
|
128
|
+
thumb80: string | null;
|
|
129
|
+
thumb800: string | null;
|
|
130
|
+
thumb800H: number | null;
|
|
131
|
+
thumb800W: number | null;
|
|
132
|
+
thumb960: string | null;
|
|
133
|
+
thumbPdf: string | null;
|
|
134
|
+
thumbPdfH: number | null;
|
|
135
|
+
thumbPdfW: number | null;
|
|
136
|
+
thumbVideo: string | null;
|
|
137
|
+
thumbVideoHeight: number | null;
|
|
138
|
+
thumbVideoWidth: number | null;
|
|
64
139
|
title: string;
|
|
65
140
|
token: string | null;
|
|
66
141
|
uniqueKey: 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/dist/es/es2018/types/src/generated/types/SlackBridgeMessageOutputRepresentation.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SlackBridgeReactionOutputRepresentation as SlackBridgeReactionOutputRepresentation_SlackBridgeReactionOutputRepresentation } from './SlackBridgeReactionOutputRepresentation';
|
|
2
2
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
3
|
import { SlackBridgeFileOutputRepresentation as SlackBridgeFileOutputRepresentation_SlackBridgeFileOutputRepresentation } from './SlackBridgeFileOutputRepresentation';
|
|
4
|
-
export declare const VERSION = "
|
|
4
|
+
export declare const VERSION = "57fae23c7ffb8f67218b25919d2c8e3c";
|
|
5
5
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
6
|
export declare const RepresentationType: string;
|
|
7
7
|
export declare function normalize(input: SlackBridgeMessageOutputRepresentation, existing: SlackBridgeMessageOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SlackBridgeMessageOutputRepresentationNormalized;
|
|
@@ -37,8 +37,12 @@ export interface SlackBridgeMessageOutputRepresentationNormalized {
|
|
|
37
37
|
channelId: string | null;
|
|
38
38
|
/** List of files attached to this message */
|
|
39
39
|
files: Array<$64$luvio_engine_StoreLink>;
|
|
40
|
+
/** Sender icon url for demo bot messages */
|
|
41
|
+
icon?: string | null;
|
|
40
42
|
/** Does this message includes Custom emoji? */
|
|
41
43
|
includesCustomEmoji: boolean | null;
|
|
44
|
+
/** Is this message older than the limit for free teams? */
|
|
45
|
+
isBeyondFreeLimit?: boolean | null;
|
|
42
46
|
/** Is this a reply also sent to the Channel? */
|
|
43
47
|
isBroadcast: boolean | null;
|
|
44
48
|
/** Can this message be edited? */
|
|
@@ -59,8 +63,10 @@ export interface SlackBridgeMessageOutputRepresentationNormalized {
|
|
|
59
63
|
replyUsers: Array<string>;
|
|
60
64
|
/** Number of users who replied to this message */
|
|
61
65
|
replyUsersCount: number | null;
|
|
66
|
+
/** Details of the Slack User who invited the user described by slackUserId */
|
|
67
|
+
slackInviterId: string | null;
|
|
62
68
|
/** Details of the Slack User who posted this message */
|
|
63
|
-
slackUserId: string;
|
|
69
|
+
slackUserId: string | null;
|
|
64
70
|
/** Sub-type of Message */
|
|
65
71
|
subtype: string | null;
|
|
66
72
|
/** Timestamp of the thread to which this message belong to */
|
|
@@ -69,6 +75,8 @@ export interface SlackBridgeMessageOutputRepresentationNormalized {
|
|
|
69
75
|
type: string | null;
|
|
70
76
|
/** Url for this message */
|
|
71
77
|
url: string;
|
|
78
|
+
/** Sender username for demo bot messages */
|
|
79
|
+
username?: string | null;
|
|
72
80
|
}
|
|
73
81
|
/**
|
|
74
82
|
* Contains the details of Slack Message
|
|
@@ -85,7 +93,9 @@ export interface SlackBridgeMessageOutputRepresentation {
|
|
|
85
93
|
}>;
|
|
86
94
|
channelId: string | null;
|
|
87
95
|
files: Array<SlackBridgeFileOutputRepresentation_SlackBridgeFileOutputRepresentation>;
|
|
96
|
+
icon?: string | null;
|
|
88
97
|
includesCustomEmoji: boolean | null;
|
|
98
|
+
isBeyondFreeLimit?: boolean | null;
|
|
89
99
|
isBroadcast: boolean | null;
|
|
90
100
|
isEditable: boolean;
|
|
91
101
|
isEdited: boolean | null;
|
|
@@ -96,9 +106,11 @@ export interface SlackBridgeMessageOutputRepresentation {
|
|
|
96
106
|
replyCount: number | null;
|
|
97
107
|
replyUsers: Array<string>;
|
|
98
108
|
replyUsersCount: number | null;
|
|
99
|
-
|
|
109
|
+
slackInviterId: string | null;
|
|
110
|
+
slackUserId: string | null;
|
|
100
111
|
subtype: string | null;
|
|
101
112
|
threadTs: string | null;
|
|
102
113
|
type: string | null;
|
|
103
114
|
url: string;
|
|
115
|
+
username?: string | null;
|
|
104
116
|
}
|
package/dist/es/es2018/types/src/generated/types/SlackBridgeUserInfoOutputRepresentation.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { SlackBridgeEnterpriseUserInfoOutputRepresentation as SlackBridgeEnterpriseUserInfoOutputRepresentation_SlackBridgeEnterpriseUserInfoOutputRepresentation } from './SlackBridgeEnterpriseUserInfoOutputRepresentation';
|
|
1
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, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
3
|
import { SlackBridgeEmojiOutputRepresentation as SlackBridgeEmojiOutputRepresentation_SlackBridgeEmojiOutputRepresentation } from './SlackBridgeEmojiOutputRepresentation';
|
|
3
|
-
export declare const TTL =
|
|
4
|
-
export declare const VERSION = "
|
|
4
|
+
export declare const TTL = 900000;
|
|
5
|
+
export declare const VERSION = "e028e881472367bb6b51398f0ceca161";
|
|
5
6
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
7
|
export declare const RepresentationType: string;
|
|
7
8
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -40,6 +41,8 @@ export interface SlackBridgeUserInfoOutputRepresentationNormalized {
|
|
|
40
41
|
displayName: string | null;
|
|
41
42
|
/** Email of the Slack User */
|
|
42
43
|
email: string | null;
|
|
44
|
+
/** The enterprise user mapping */
|
|
45
|
+
enterpriseUser?: SlackBridgeEnterpriseUserInfoOutputRepresentation_SlackBridgeEnterpriseUserInfoOutputRepresentation | null;
|
|
43
46
|
/** 24x24 version of the Slack User image */
|
|
44
47
|
image24?: string | null;
|
|
45
48
|
/** Original version of the Slack User image */
|
|
@@ -48,10 +51,22 @@ export interface SlackBridgeUserInfoOutputRepresentationNormalized {
|
|
|
48
51
|
inHuddle: boolean | null;
|
|
49
52
|
/** Is this Slack User currently active? */
|
|
50
53
|
isActive: boolean | null;
|
|
54
|
+
/** Is Slack User an admin? */
|
|
55
|
+
isAdmin: boolean;
|
|
56
|
+
/** Is Slack User an Agentforce bot? */
|
|
57
|
+
isAgentforceBot?: boolean;
|
|
51
58
|
/** Is Slack User external? */
|
|
52
59
|
isExternal: boolean | null;
|
|
53
|
-
/** Is
|
|
54
|
-
|
|
60
|
+
/** Is Slack User an owner? */
|
|
61
|
+
isOwner: boolean;
|
|
62
|
+
/** Is Slack User aa primary owner? */
|
|
63
|
+
isPrimaryOwner: boolean;
|
|
64
|
+
/** Is Slack User restricted? */
|
|
65
|
+
isRestricted: boolean;
|
|
66
|
+
/** Is Slack User ultra restricted? */
|
|
67
|
+
isUltraRestricted: boolean;
|
|
68
|
+
/** Is Slack User a workflow bot? */
|
|
69
|
+
isWorkflowBot: boolean;
|
|
55
70
|
/** Name of the Slack User */
|
|
56
71
|
name: string;
|
|
57
72
|
/** Profile image used for this Slack user */
|
|
@@ -72,6 +87,10 @@ export interface SlackBridgeUserInfoOutputRepresentationNormalized {
|
|
|
72
87
|
teamId: string | null;
|
|
73
88
|
/** Title of the Slack User */
|
|
74
89
|
title: string | null;
|
|
90
|
+
/** Time zone of the Slack user, ie. America/New_York */
|
|
91
|
+
tz?: string | null;
|
|
92
|
+
/** Time zone label of the Slack user, ie. Eastern Daylight Time */
|
|
93
|
+
tzLabel?: string | null;
|
|
75
94
|
}
|
|
76
95
|
/**
|
|
77
96
|
* Contains the details of Slack User
|
|
@@ -83,12 +102,19 @@ export interface SlackBridgeUserInfoOutputRepresentation {
|
|
|
83
102
|
bot: boolean;
|
|
84
103
|
displayName: string | null;
|
|
85
104
|
email: string | null;
|
|
105
|
+
enterpriseUser?: SlackBridgeEnterpriseUserInfoOutputRepresentation_SlackBridgeEnterpriseUserInfoOutputRepresentation | null;
|
|
86
106
|
image24?: string | null;
|
|
87
107
|
imageOriginal: string | null;
|
|
88
108
|
inHuddle: boolean | null;
|
|
89
109
|
isActive: boolean | null;
|
|
110
|
+
isAdmin: boolean;
|
|
111
|
+
isAgentforceBot?: boolean;
|
|
90
112
|
isExternal: boolean | null;
|
|
91
|
-
|
|
113
|
+
isOwner: boolean;
|
|
114
|
+
isPrimaryOwner: boolean;
|
|
115
|
+
isRestricted: boolean;
|
|
116
|
+
isUltraRestricted: boolean;
|
|
117
|
+
isWorkflowBot: boolean;
|
|
92
118
|
name: string;
|
|
93
119
|
profileImage?: string | null;
|
|
94
120
|
profileUrl: string | null;
|
|
@@ -99,4 +125,6 @@ export interface SlackBridgeUserInfoOutputRepresentation {
|
|
|
99
125
|
statusMessage: string | null;
|
|
100
126
|
teamId: string | null;
|
|
101
127
|
title: string | null;
|
|
128
|
+
tz?: string | null;
|
|
129
|
+
tzLabel?: string | null;
|
|
102
130
|
}
|
package/dist/es/es2018/types/src/generated/types/SlackBridgeUserInfosOutputRepresentation.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
2
|
import { SlackBridgeUserInfoOutputRepresentation as SlackBridgeUserInfoOutputRepresentation_SlackBridgeUserInfoOutputRepresentation } from './SlackBridgeUserInfoOutputRepresentation';
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "16b915c502b8a0609446d7ed3907a794";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export declare function normalize(input: SlackBridgeUserInfosOutputRepresentation, existing: SlackBridgeUserInfosOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SlackBridgeUserInfosOutputRepresentationNormalized;
|
|
@@ -24,6 +24,8 @@ export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$lu
|
|
|
24
24
|
* (none)
|
|
25
25
|
*/
|
|
26
26
|
export interface SlackBridgeUserInfosOutputRepresentationNormalized {
|
|
27
|
+
/** Next marker used for pagination. (Optional) */
|
|
28
|
+
nextMarker: string | null;
|
|
27
29
|
/** String used to search this list of conversations (Optional) */
|
|
28
30
|
searchString: string | null;
|
|
29
31
|
/** List of Slack User Information */
|
|
@@ -36,6 +38,7 @@ export interface SlackBridgeUserInfosOutputRepresentationNormalized {
|
|
|
36
38
|
* (none)
|
|
37
39
|
*/
|
|
38
40
|
export interface SlackBridgeUserInfosOutputRepresentation {
|
|
41
|
+
nextMarker: string | null;
|
|
39
42
|
searchString: string | null;
|
|
40
43
|
userInfos: Array<SlackBridgeUserInfoOutputRepresentation_SlackBridgeUserInfoOutputRepresentation>;
|
|
41
44
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-platform-slack-bridge",
|
|
3
|
-
"version": "1.354.0-
|
|
3
|
+
"version": "1.354.0-dev21",
|
|
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.354.0-
|
|
43
|
+
"@salesforce/lds-bindings": "^1.354.0-dev21"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.354.0-
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.354.0-dev21"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|