@wildix/stream-client 0.0.14 → 3.1.10
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-cjs/StreamService.js +3 -7
- package/dist-cjs/StreamServiceClient.js +34 -27
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +58 -0
- package/dist-cjs/commands/AddChannelMemberCommand.js +10 -11
- package/dist-cjs/commands/AddChannelMembersCommand.js +10 -11
- package/dist-cjs/commands/AssignChannelCommand.js +10 -11
- package/dist-cjs/commands/CreateGroupChannelCommand.js +10 -11
- package/dist-cjs/commands/CreateKiteChannelCommand.js +10 -11
- package/dist-cjs/commands/CreateSectionCommand.js +10 -11
- package/dist-cjs/commands/DeleteChannelCommand.js +10 -11
- package/dist-cjs/commands/DeleteChannelMemberCommand.js +10 -11
- package/dist-cjs/commands/DeleteMessageCommand.js +10 -11
- package/dist-cjs/commands/DeleteMessageReactionCommand.js +10 -11
- package/dist-cjs/commands/DeleteSectionCommand.js +10 -11
- package/dist-cjs/commands/GetChannelCommand.js +10 -11
- package/dist-cjs/commands/GetChannelMemberCommand.js +10 -11
- package/dist-cjs/commands/GetDirectChannelIdCommand.js +10 -11
- package/dist-cjs/commands/GetFilePresignedDownloadUrlCommand.js +10 -11
- package/dist-cjs/commands/GetInboxCommand.js +10 -11
- package/dist-cjs/commands/GetMessageCommand.js +10 -11
- package/dist-cjs/commands/GetOrCreateDirectChannelCommand.js +10 -11
- package/dist-cjs/commands/GetOrCreateSmsChannelCommand.js +10 -11
- package/dist-cjs/commands/GetOrCreateTelephonyChannelCommand.js +10 -11
- package/dist-cjs/commands/GetOrCreateWhatsAppChannelCommand.js +10 -11
- package/dist-cjs/commands/GetSmsChannelIdCommand.js +10 -11
- package/dist-cjs/commands/GetTelephonyChannelIdCommand.js +10 -11
- package/dist-cjs/commands/GetTokenCommand.js +10 -11
- package/dist-cjs/commands/GetUploadedFileInfoCommand.js +10 -11
- package/dist-cjs/commands/GetWhatsAppChannelIdCommand.js +10 -11
- package/dist-cjs/commands/HideChannelCommand.js +10 -11
- package/dist-cjs/commands/JoinChannelCommand.js +10 -11
- package/dist-cjs/commands/LeaveChannelCommand.js +10 -11
- package/dist-cjs/commands/ListChannelMembersCommand.js +10 -11
- package/dist-cjs/commands/ListChannelMembersReadStatusCommand.js +10 -11
- package/dist-cjs/commands/ListChannelsCommand.js +10 -11
- package/dist-cjs/commands/ListMentionsCommand.js +10 -11
- package/dist-cjs/commands/ListMessagesCommand.js +10 -11
- package/dist-cjs/commands/MarkReadCommand.js +10 -11
- package/dist-cjs/commands/MarkUnreadCommand.js +10 -11
- package/dist-cjs/commands/MoveChannelToSectionCommand.js +10 -11
- package/dist-cjs/commands/MuteChannelCommand.js +10 -11
- package/dist-cjs/commands/PartialUpdateChannelCommand.js +10 -11
- package/dist-cjs/commands/PartialUpdateMessageCommand.js +10 -11
- package/dist-cjs/commands/PinChannelCommand.js +10 -11
- package/dist-cjs/commands/PinMessageCommand.js +10 -11
- package/dist-cjs/commands/QueryChannelsCommand.js +10 -11
- package/dist-cjs/commands/RemoveChannelFromSectionCommand.js +10 -11
- package/dist-cjs/commands/RenameSectionCommand.js +10 -11
- package/dist-cjs/commands/SendGiphyCommand.js +10 -11
- package/dist-cjs/commands/SendMessageCommand.js +10 -11
- package/dist-cjs/commands/SendMessageReactionCommand.js +10 -11
- package/dist-cjs/commands/SendSystemMessageCommand.js +10 -11
- package/dist-cjs/commands/SendTypingStartCommand.js +10 -11
- package/dist-cjs/commands/SendTypingStopCommand.js +10 -11
- package/dist-cjs/commands/ShowChannelCommand.js +10 -11
- package/dist-cjs/commands/UnmuteChannelCommand.js +10 -11
- package/dist-cjs/commands/UnpinChannelCommand.js +10 -11
- package/dist-cjs/commands/UnpinMessageCommand.js +10 -11
- package/dist-cjs/commands/UpdateChannelCommand.js +10 -11
- package/dist-cjs/commands/UpdateMessageCommand.js +10 -11
- package/dist-cjs/commands/UploadFileCommand.js +10 -11
- package/dist-cjs/commands/index.js +0 -2
- package/dist-cjs/endpoint/EndpointParameters.js +18 -0
- package/dist-cjs/endpoint/bdd.js +28 -0
- package/dist-cjs/endpoint/endpointResolver.js +16 -0
- package/dist-cjs/index.js +4 -1
- package/dist-cjs/models/StreamServiceServiceException.js +3 -3
- package/dist-cjs/models/enums.js +114 -0
- package/dist-cjs/models/errors.js +209 -0
- package/dist-cjs/models/models_0.js +0 -381
- package/dist-cjs/runtimeConfig.browser.js +11 -11
- package/dist-cjs/runtimeConfig.js +22 -18
- package/dist-cjs/runtimeConfig.shared.js +30 -10
- package/dist-cjs/runtimeExtensions.js +6 -5
- package/dist-cjs/schemas/schemas_0.js +1584 -0
- package/dist-es/StreamService.js +6 -10
- package/dist-es/StreamServiceClient.js +30 -23
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +52 -0
- package/dist-es/commands/AddChannelMemberCommand.js +9 -10
- package/dist-es/commands/AddChannelMembersCommand.js +9 -10
- package/dist-es/commands/AssignChannelCommand.js +9 -10
- package/dist-es/commands/CreateGroupChannelCommand.js +9 -10
- package/dist-es/commands/CreateKiteChannelCommand.js +9 -10
- package/dist-es/commands/CreateSectionCommand.js +9 -10
- package/dist-es/commands/DeleteChannelCommand.js +9 -10
- package/dist-es/commands/DeleteChannelMemberCommand.js +9 -10
- package/dist-es/commands/DeleteMessageCommand.js +9 -10
- package/dist-es/commands/DeleteMessageReactionCommand.js +9 -10
- package/dist-es/commands/DeleteSectionCommand.js +9 -10
- package/dist-es/commands/GetChannelCommand.js +9 -10
- package/dist-es/commands/GetChannelMemberCommand.js +9 -10
- package/dist-es/commands/GetDirectChannelIdCommand.js +9 -10
- package/dist-es/commands/GetFilePresignedDownloadUrlCommand.js +9 -10
- package/dist-es/commands/GetInboxCommand.js +9 -10
- package/dist-es/commands/GetMessageCommand.js +9 -10
- package/dist-es/commands/GetOrCreateDirectChannelCommand.js +9 -10
- package/dist-es/commands/GetOrCreateSmsChannelCommand.js +9 -10
- package/dist-es/commands/GetOrCreateTelephonyChannelCommand.js +9 -10
- package/dist-es/commands/GetOrCreateWhatsAppChannelCommand.js +9 -10
- package/dist-es/commands/GetSmsChannelIdCommand.js +9 -10
- package/dist-es/commands/GetTelephonyChannelIdCommand.js +9 -10
- package/dist-es/commands/GetTokenCommand.js +9 -10
- package/dist-es/commands/GetUploadedFileInfoCommand.js +9 -10
- package/dist-es/commands/GetWhatsAppChannelIdCommand.js +9 -10
- package/dist-es/commands/HideChannelCommand.js +9 -10
- package/dist-es/commands/JoinChannelCommand.js +9 -10
- package/dist-es/commands/LeaveChannelCommand.js +9 -10
- package/dist-es/commands/ListChannelMembersCommand.js +9 -10
- package/dist-es/commands/ListChannelMembersReadStatusCommand.js +9 -10
- package/dist-es/commands/ListChannelsCommand.js +9 -10
- package/dist-es/commands/ListMentionsCommand.js +9 -10
- package/dist-es/commands/ListMessagesCommand.js +9 -10
- package/dist-es/commands/MarkReadCommand.js +9 -10
- package/dist-es/commands/MarkUnreadCommand.js +9 -10
- package/dist-es/commands/MoveChannelToSectionCommand.js +9 -10
- package/dist-es/commands/MuteChannelCommand.js +9 -10
- package/dist-es/commands/PartialUpdateChannelCommand.js +9 -10
- package/dist-es/commands/PartialUpdateMessageCommand.js +9 -10
- package/dist-es/commands/PinChannelCommand.js +9 -10
- package/dist-es/commands/PinMessageCommand.js +9 -10
- package/dist-es/commands/QueryChannelsCommand.js +9 -10
- package/dist-es/commands/RemoveChannelFromSectionCommand.js +9 -10
- package/dist-es/commands/RenameSectionCommand.js +9 -10
- package/dist-es/commands/SendGiphyCommand.js +9 -10
- package/dist-es/commands/SendMessageCommand.js +9 -10
- package/dist-es/commands/SendMessageReactionCommand.js +9 -10
- package/dist-es/commands/SendSystemMessageCommand.js +9 -10
- package/dist-es/commands/SendTypingStartCommand.js +9 -10
- package/dist-es/commands/SendTypingStopCommand.js +9 -10
- package/dist-es/commands/ShowChannelCommand.js +9 -10
- package/dist-es/commands/UnmuteChannelCommand.js +9 -10
- package/dist-es/commands/UnpinChannelCommand.js +9 -10
- package/dist-es/commands/UnpinMessageCommand.js +9 -10
- package/dist-es/commands/UpdateChannelCommand.js +9 -10
- package/dist-es/commands/UpdateMessageCommand.js +9 -10
- package/dist-es/commands/UploadFileCommand.js +9 -10
- package/dist-es/commands/index.js +0 -2
- package/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist-es/endpoint/bdd.js +25 -0
- package/dist-es/endpoint/endpointResolver.js +12 -0
- package/dist-es/index.js +4 -1
- package/dist-es/models/StreamServiceServiceException.js +1 -1
- package/dist-es/models/enums.js +111 -0
- package/dist-es/models/errors.js +191 -0
- package/dist-es/models/models_0.js +1 -365
- package/dist-es/runtimeConfig.browser.js +7 -7
- package/dist-es/runtimeConfig.js +17 -13
- package/dist-es/runtimeConfig.shared.js +24 -4
- package/dist-es/runtimeExtensions.js +6 -5
- package/dist-es/schemas/schemas_0.js +1577 -0
- package/dist-types/StreamService.d.ts +59 -73
- package/dist-types/StreamServiceClient.d.ts +90 -76
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
- package/dist-types/commands/AddChannelMemberCommand.d.ts +11 -7
- package/dist-types/commands/AddChannelMembersCommand.d.ts +11 -7
- package/dist-types/commands/AssignChannelCommand.d.ts +11 -7
- package/dist-types/commands/CreateGroupChannelCommand.d.ts +11 -7
- package/dist-types/commands/CreateKiteChannelCommand.d.ts +11 -7
- package/dist-types/commands/CreateSectionCommand.d.ts +11 -7
- package/dist-types/commands/DeleteChannelCommand.d.ts +11 -7
- package/dist-types/commands/DeleteChannelMemberCommand.d.ts +11 -7
- package/dist-types/commands/DeleteMessageCommand.d.ts +11 -7
- package/dist-types/commands/DeleteMessageReactionCommand.d.ts +11 -7
- package/dist-types/commands/DeleteSectionCommand.d.ts +11 -7
- package/dist-types/commands/GetChannelCommand.d.ts +11 -7
- package/dist-types/commands/GetChannelMemberCommand.d.ts +11 -7
- package/dist-types/commands/GetDirectChannelIdCommand.d.ts +11 -7
- package/dist-types/commands/GetFilePresignedDownloadUrlCommand.d.ts +11 -7
- package/dist-types/commands/GetInboxCommand.d.ts +11 -7
- package/dist-types/commands/GetMessageCommand.d.ts +11 -7
- package/dist-types/commands/GetOrCreateDirectChannelCommand.d.ts +11 -7
- package/dist-types/commands/GetOrCreateSmsChannelCommand.d.ts +11 -7
- package/dist-types/commands/GetOrCreateTelephonyChannelCommand.d.ts +11 -7
- package/dist-types/commands/GetOrCreateWhatsAppChannelCommand.d.ts +11 -7
- package/dist-types/commands/GetSmsChannelIdCommand.d.ts +11 -7
- package/dist-types/commands/GetTelephonyChannelIdCommand.d.ts +11 -7
- package/dist-types/commands/GetTokenCommand.d.ts +11 -7
- package/dist-types/commands/GetUploadedFileInfoCommand.d.ts +11 -7
- package/dist-types/commands/GetWhatsAppChannelIdCommand.d.ts +11 -7
- package/dist-types/commands/HideChannelCommand.d.ts +11 -7
- package/dist-types/commands/JoinChannelCommand.d.ts +11 -7
- package/dist-types/commands/LeaveChannelCommand.d.ts +11 -7
- package/dist-types/commands/ListChannelMembersCommand.d.ts +11 -7
- package/dist-types/commands/ListChannelMembersReadStatusCommand.d.ts +11 -7
- package/dist-types/commands/ListChannelsCommand.d.ts +11 -7
- package/dist-types/commands/ListMentionsCommand.d.ts +11 -7
- package/dist-types/commands/ListMessagesCommand.d.ts +11 -7
- package/dist-types/commands/MarkReadCommand.d.ts +11 -7
- package/dist-types/commands/MarkUnreadCommand.d.ts +11 -7
- package/dist-types/commands/MoveChannelToSectionCommand.d.ts +11 -7
- package/dist-types/commands/MuteChannelCommand.d.ts +11 -7
- package/dist-types/commands/PartialUpdateChannelCommand.d.ts +11 -7
- package/dist-types/commands/PartialUpdateMessageCommand.d.ts +11 -7
- package/dist-types/commands/PinChannelCommand.d.ts +11 -7
- package/dist-types/commands/PinMessageCommand.d.ts +11 -7
- package/dist-types/commands/QueryChannelsCommand.d.ts +11 -7
- package/dist-types/commands/RemoveChannelFromSectionCommand.d.ts +11 -7
- package/dist-types/commands/RenameSectionCommand.d.ts +11 -7
- package/dist-types/commands/SendGiphyCommand.d.ts +11 -7
- package/dist-types/commands/SendMessageCommand.d.ts +11 -7
- package/dist-types/commands/SendMessageReactionCommand.d.ts +11 -7
- package/dist-types/commands/SendSystemMessageCommand.d.ts +11 -7
- package/dist-types/commands/SendTypingStartCommand.d.ts +11 -7
- package/dist-types/commands/SendTypingStopCommand.d.ts +11 -7
- package/dist-types/commands/ShowChannelCommand.d.ts +11 -7
- package/dist-types/commands/UnmuteChannelCommand.d.ts +11 -7
- package/dist-types/commands/UnpinChannelCommand.d.ts +11 -7
- package/dist-types/commands/UnpinMessageCommand.d.ts +11 -7
- package/dist-types/commands/UpdateChannelCommand.d.ts +11 -7
- package/dist-types/commands/UpdateMessageCommand.d.ts +11 -7
- package/dist-types/commands/UploadFileCommand.d.ts +11 -7
- package/dist-types/commands/index.d.ts +0 -2
- package/dist-types/endpoint/EndpointParameters.d.ts +48 -0
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/extensionConfiguration.d.ts +4 -3
- package/dist-types/index.d.ts +5 -1
- package/dist-types/models/StreamServiceServiceException.d.ts +1 -1
- package/dist-types/models/enums.d.ts +286 -0
- package/dist-types/models/errors.d.ts +189 -0
- package/dist-types/models/models_0.d.ts +69 -669
- package/dist-types/runtimeConfig.browser.d.ts +37 -18
- package/dist-types/runtimeConfig.d.ts +36 -17
- package/dist-types/runtimeConfig.native.d.ts +38 -19
- package/dist-types/runtimeConfig.shared.d.ts +20 -3
- package/dist-types/runtimeExtensions.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +243 -0
- package/package.json +13 -39
- package/dist-cjs/commands/SearchChannelsCommand.js +0 -21
- package/dist-cjs/commands/SearchMessagesCommand.js +0 -21
- package/dist-cjs/models/index.js +0 -4
- package/dist-cjs/protocols/Aws_restJson1.js +0 -2463
- package/dist-es/commands/SearchChannelsCommand.js +0 -17
- package/dist-es/commands/SearchMessagesCommand.js +0 -17
- package/dist-es/models/index.js +0 -1
- package/dist-es/protocols/Aws_restJson1.js +0 -2338
- package/dist-types/commands/SearchChannelsCommand.d.ts +0 -160
- package/dist-types/commands/SearchMessagesCommand.d.ts +0 -204
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -542
|
@@ -1,38 +1,57 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
-
import { StreamServiceClientConfig } from "./StreamServiceClient";
|
|
2
|
+
import type { StreamServiceClientConfig } from "./StreamServiceClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: StreamServiceClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
-
defaultsMode: import("@smithy/types").Provider<import("@smithy/
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/
|
|
10
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
11
11
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
12
|
-
requestHandler: import("@smithy/
|
|
12
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
13
13
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
14
14
|
sha256: import("@smithy/types").HashConstructor;
|
|
15
|
-
streamCollector: import("
|
|
16
|
-
serviceRegion?: "eu-1" | "us-1" | undefined;
|
|
17
|
-
env?: "stage" | "stable" | "prod" | undefined;
|
|
18
|
-
token: import("@wildix/smithy-utils").TokenProvider;
|
|
19
|
-
endpoint?: (() => Record<string, string>) | undefined;
|
|
15
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
20
16
|
cacheMiddleware?: boolean | undefined;
|
|
21
|
-
protocol
|
|
22
|
-
protocolSettings
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
18
|
+
protocolSettings: {
|
|
19
|
+
defaultNamespace?: string;
|
|
23
20
|
[setting: string]: unknown;
|
|
24
|
-
|
|
25
|
-
} | undefined;
|
|
21
|
+
};
|
|
26
22
|
apiVersion: string;
|
|
27
23
|
urlParser: import("@smithy/types").UrlParser;
|
|
28
24
|
base64Decoder: import("@smithy/types").Decoder;
|
|
29
|
-
base64Encoder: (_input:
|
|
25
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
30
26
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
31
|
-
utf8Encoder: (input:
|
|
27
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
32
28
|
disableHostPrefix: boolean;
|
|
29
|
+
profile?: string;
|
|
33
30
|
logger: import("@smithy/types").Logger;
|
|
34
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
35
|
-
customUserAgent?: string | import("@smithy/types").UserAgent
|
|
36
|
-
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined
|
|
37
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2
|
|
32
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
35
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
36
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
37
|
+
logger?: import("@smithy/types").Logger;
|
|
38
|
+
}) => import("@smithy/types").EndpointV2;
|
|
39
|
+
tls?: boolean;
|
|
40
|
+
useDualstackEndpoint?: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
41
|
+
useFipsEndpoint?: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
42
|
+
serviceConfiguredEndpoint?: never;
|
|
43
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
44
|
+
httpAuthSchemes: {
|
|
45
|
+
schemeId: string;
|
|
46
|
+
identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
|
|
47
|
+
signer: import("@smithy/core").HttpBearerAuthSigner;
|
|
48
|
+
}[];
|
|
49
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").StreamServiceHttpAuthSchemeProvider;
|
|
50
|
+
token?: import("@smithy/types").TokenIdentity | import("@smithy/types").TokenIdentityProvider;
|
|
51
|
+
clientContextParams?: {
|
|
52
|
+
serviceRegion?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
env?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
54
|
+
};
|
|
55
|
+
serviceRegion?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
56
|
+
env?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
38
57
|
};
|
|
@@ -1,38 +1,57 @@
|
|
|
1
1
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
-
import { StreamServiceClientConfig } from "./StreamServiceClient";
|
|
2
|
+
import type { StreamServiceClientConfig } from "./StreamServiceClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: StreamServiceClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
-
defaultsMode: import("@smithy/types").Provider<import("@smithy/
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/
|
|
10
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
11
11
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
12
|
-
requestHandler: RequestHandler | import("@smithy/
|
|
12
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
13
13
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
14
14
|
sha256: import("@smithy/types").HashConstructor;
|
|
15
|
-
streamCollector: import("
|
|
15
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
16
16
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
17
|
-
serviceRegion?: "eu-1" | "us-1" | undefined;
|
|
18
|
-
env?: "stage" | "stable" | "prod" | undefined;
|
|
19
|
-
token: import("@wildix/smithy-utils").TokenProvider;
|
|
20
|
-
endpoint?: (() => Record<string, string>) | undefined;
|
|
21
17
|
cacheMiddleware?: boolean | undefined;
|
|
22
|
-
protocol
|
|
23
|
-
protocolSettings
|
|
18
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
19
|
+
protocolSettings: {
|
|
20
|
+
defaultNamespace?: string;
|
|
24
21
|
[setting: string]: unknown;
|
|
25
|
-
|
|
26
|
-
} | undefined;
|
|
22
|
+
};
|
|
27
23
|
apiVersion: string;
|
|
28
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
29
25
|
base64Decoder: import("@smithy/types").Decoder;
|
|
30
|
-
base64Encoder: (_input:
|
|
26
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
31
27
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
32
|
-
utf8Encoder: (input:
|
|
28
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
33
29
|
disableHostPrefix: boolean;
|
|
30
|
+
profile?: string;
|
|
34
31
|
logger: import("@smithy/types").Logger;
|
|
35
32
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
36
|
-
customUserAgent?: string | import("@smithy/types").UserAgent
|
|
37
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2
|
|
33
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
34
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
35
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
36
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
37
|
+
logger?: import("@smithy/types").Logger;
|
|
38
|
+
}) => import("@smithy/types").EndpointV2;
|
|
39
|
+
tls?: boolean;
|
|
40
|
+
useDualstackEndpoint?: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
41
|
+
useFipsEndpoint?: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
42
|
+
serviceConfiguredEndpoint?: never;
|
|
43
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
44
|
+
httpAuthSchemes: {
|
|
45
|
+
schemeId: string;
|
|
46
|
+
identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
|
|
47
|
+
signer: import("@smithy/core").HttpBearerAuthSigner;
|
|
48
|
+
}[];
|
|
49
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").StreamServiceHttpAuthSchemeProvider;
|
|
50
|
+
token?: import("@smithy/types").TokenIdentity | import("@smithy/types").TokenIdentityProvider;
|
|
51
|
+
clientContextParams?: {
|
|
52
|
+
serviceRegion?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
env?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
54
|
+
};
|
|
55
|
+
serviceRegion?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
56
|
+
env?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
38
57
|
};
|
|
@@ -1,37 +1,56 @@
|
|
|
1
|
-
import { StreamServiceClientConfig } from "./StreamServiceClient";
|
|
1
|
+
import type { StreamServiceClientConfig } from "./StreamServiceClient";
|
|
2
2
|
/**
|
|
3
3
|
* @internal
|
|
4
4
|
*/
|
|
5
5
|
export declare const getRuntimeConfig: (config: StreamServiceClientConfig) => {
|
|
6
6
|
runtime: string;
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
cacheMiddleware?: boolean | undefined;
|
|
14
|
-
protocol?: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | undefined;
|
|
15
|
-
protocolSettings?: {
|
|
8
|
+
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
|
+
cacheMiddleware?: boolean;
|
|
10
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
11
|
+
protocolSettings: {
|
|
12
|
+
defaultNamespace?: string;
|
|
16
13
|
[setting: string]: unknown;
|
|
17
|
-
|
|
18
|
-
} | undefined;
|
|
14
|
+
};
|
|
19
15
|
apiVersion: string;
|
|
20
16
|
urlParser: import("@smithy/types").UrlParser;
|
|
21
17
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
22
|
-
streamCollector: import("
|
|
18
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
23
19
|
base64Decoder: import("@smithy/types").Decoder;
|
|
24
|
-
base64Encoder: (_input:
|
|
20
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
25
21
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
26
|
-
utf8Encoder: (input:
|
|
22
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
27
23
|
disableHostPrefix: boolean;
|
|
28
|
-
|
|
24
|
+
profile?: string;
|
|
25
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
29
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
30
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
31
28
|
logger: import("@smithy/types").Logger;
|
|
32
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
33
|
-
defaultsMode: import("@smithy/
|
|
34
|
-
customUserAgent?: string | import("@smithy/types").UserAgent
|
|
35
|
-
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined
|
|
36
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2
|
|
30
|
+
defaultsMode: import("@smithy/core/client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
31
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
33
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
|
+
logger?: import("@smithy/types").Logger;
|
|
37
|
+
}) => import("@smithy/types").EndpointV2;
|
|
38
|
+
tls?: boolean;
|
|
39
|
+
useDualstackEndpoint?: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
40
|
+
useFipsEndpoint?: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
41
|
+
serviceConfiguredEndpoint?: never;
|
|
42
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
43
|
+
httpAuthSchemes: {
|
|
44
|
+
schemeId: string;
|
|
45
|
+
identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
|
|
46
|
+
signer: import("@smithy/core").HttpBearerAuthSigner;
|
|
47
|
+
}[];
|
|
48
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").StreamServiceHttpAuthSchemeProvider;
|
|
49
|
+
token?: import("@smithy/types").TokenIdentity | import("@smithy/types").TokenIdentityProvider;
|
|
50
|
+
clientContextParams?: {
|
|
51
|
+
serviceRegion?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
52
|
+
env?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
};
|
|
54
|
+
serviceRegion?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
55
|
+
env?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
37
56
|
};
|
|
@@ -1,15 +1,32 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
2
|
+
import { HttpBearerAuthSigner } from "@smithy/core";
|
|
3
|
+
import type { IdentityProviderConfig } from "@smithy/types";
|
|
4
|
+
import type { StreamServiceClientConfig } from "./StreamServiceClient";
|
|
2
5
|
/**
|
|
3
6
|
* @internal
|
|
4
7
|
*/
|
|
5
8
|
export declare const getRuntimeConfig: (config: StreamServiceClientConfig) => {
|
|
6
9
|
apiVersion: string;
|
|
7
10
|
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
-
base64Encoder: (_input:
|
|
11
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
9
12
|
disableHostPrefix: boolean;
|
|
13
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
14
|
+
logger?: import("@smithy/types").Logger;
|
|
15
|
+
}) => import("@smithy/types").EndpointV2;
|
|
10
16
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
17
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").StreamServiceHttpAuthSchemeProvider;
|
|
18
|
+
httpAuthSchemes: {
|
|
19
|
+
schemeId: string;
|
|
20
|
+
identityProvider: (ipc: IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
|
|
21
|
+
signer: HttpBearerAuthSigner;
|
|
22
|
+
}[];
|
|
11
23
|
logger: import("@smithy/types").Logger;
|
|
24
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
|
|
25
|
+
protocolSettings: {
|
|
26
|
+
[setting: string]: unknown;
|
|
27
|
+
defaultNamespace?: string;
|
|
28
|
+
};
|
|
12
29
|
urlParser: import("@smithy/types").UrlParser;
|
|
13
30
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
14
|
-
utf8Encoder: (input:
|
|
31
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
15
32
|
};
|
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
+
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
|
|
3
|
+
export declare var StreamServiceServiceException$: StaticErrorSchema;
|
|
4
|
+
export declare var ForbiddenException$: StaticErrorSchema;
|
|
5
|
+
export declare var RateLimitExceededException$: StaticErrorSchema;
|
|
6
|
+
export declare var UnauthorizedException$: StaticErrorSchema;
|
|
7
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
8
|
+
export declare var ChannelAlreadyExistException$: StaticErrorSchema;
|
|
9
|
+
export declare var ChannelNotFoundException$: StaticErrorSchema;
|
|
10
|
+
export declare var FileNotFoundException$: StaticErrorSchema;
|
|
11
|
+
export declare var MarkUnreadChannelsLimitReachedException$: StaticErrorSchema;
|
|
12
|
+
export declare var MemberAlreadyExistException$: StaticErrorSchema;
|
|
13
|
+
export declare var MemberNotFoundException$: StaticErrorSchema;
|
|
14
|
+
export declare var MessageNotFoundException$: StaticErrorSchema;
|
|
15
|
+
export declare var SectionNotFoundException$: StaticErrorSchema;
|
|
16
|
+
export declare var StreamServiceException$: StaticErrorSchema;
|
|
17
|
+
export declare var TargetNotEligibleException$: StaticErrorSchema;
|
|
18
|
+
export declare var TargetNotFoundException$: StaticErrorSchema;
|
|
19
|
+
/**
|
|
20
|
+
* TypeRegistry instances containing modeled errors.
|
|
21
|
+
* @internal
|
|
22
|
+
*
|
|
23
|
+
*/
|
|
24
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
25
|
+
export declare var TemplateParameter$: StaticStructureSchema;
|
|
26
|
+
export declare var TemplateWithParameters$: StaticStructureSchema;
|
|
27
|
+
export declare var AddChannelMemberInput$: StaticStructureSchema;
|
|
28
|
+
export declare var AddChannelMemberOutput$: StaticStructureSchema;
|
|
29
|
+
export declare var AddChannelMembersInput$: StaticStructureSchema;
|
|
30
|
+
export declare var AddChannelMembersOutput$: StaticStructureSchema;
|
|
31
|
+
export declare var AssignChannelInput$: StaticStructureSchema;
|
|
32
|
+
export declare var AssignChannelOutput$: StaticStructureSchema;
|
|
33
|
+
export declare var ButtonActionHandler$: StaticStructureSchema;
|
|
34
|
+
export declare var ButtonElement$: StaticStructureSchema;
|
|
35
|
+
export declare var ButtonLinkHandler$: StaticStructureSchema;
|
|
36
|
+
export declare var ButtonReplyHandler$: StaticStructureSchema;
|
|
37
|
+
export declare var Channel$: StaticStructureSchema;
|
|
38
|
+
export declare var ChannelContext$: StaticStructureSchema;
|
|
39
|
+
export declare var ChannelContextEvent$: StaticStructureSchema;
|
|
40
|
+
export declare var ChannelContextEventAttendee$: StaticStructureSchema;
|
|
41
|
+
export declare var ChannelContextPushToTalk$: StaticStructureSchema;
|
|
42
|
+
export declare var ChannelMember$: StaticStructureSchema;
|
|
43
|
+
export declare var ChannelMemberReadStatus$: StaticStructureSchema;
|
|
44
|
+
export declare var ChannelsQuery$: StaticStructureSchema;
|
|
45
|
+
export declare var CreateGroupChannelInput$: StaticStructureSchema;
|
|
46
|
+
export declare var CreateGroupChannelOutput$: StaticStructureSchema;
|
|
47
|
+
export declare var CreateKiteChannelInput$: StaticStructureSchema;
|
|
48
|
+
export declare var CreateKiteChannelOutput$: StaticStructureSchema;
|
|
49
|
+
export declare var CreateSectionInput$: StaticStructureSchema;
|
|
50
|
+
export declare var CreateSectionOutput$: StaticStructureSchema;
|
|
51
|
+
export declare var DeleteChannelInput$: StaticStructureSchema;
|
|
52
|
+
export declare var DeleteChannelMemberInput$: StaticStructureSchema;
|
|
53
|
+
export declare var DeleteChannelMemberOutput$: StaticStructureSchema;
|
|
54
|
+
export declare var DeleteChannelOutput$: StaticStructureSchema;
|
|
55
|
+
export declare var DeleteMessageInput$: StaticStructureSchema;
|
|
56
|
+
export declare var DeleteMessageOutput$: StaticStructureSchema;
|
|
57
|
+
export declare var DeleteMessageReactionInput$: StaticStructureSchema;
|
|
58
|
+
export declare var DeleteMessageReactionOutput$: StaticStructureSchema;
|
|
59
|
+
export declare var DeleteSectionInput$: StaticStructureSchema;
|
|
60
|
+
export declare var DeleteSectionOutput$: StaticStructureSchema;
|
|
61
|
+
export declare var GetChannelInput$: StaticStructureSchema;
|
|
62
|
+
export declare var GetChannelMemberInput$: StaticStructureSchema;
|
|
63
|
+
export declare var GetChannelMemberOutput$: StaticStructureSchema;
|
|
64
|
+
export declare var GetChannelOutput$: StaticStructureSchema;
|
|
65
|
+
export declare var GetDirectChannelIdInput$: StaticStructureSchema;
|
|
66
|
+
export declare var GetDirectChannelIdOutput$: StaticStructureSchema;
|
|
67
|
+
export declare var GetFilePresignedDownloadUrlInput$: StaticStructureSchema;
|
|
68
|
+
export declare var GetFilePresignedDownloadUrlOutput$: StaticStructureSchema;
|
|
69
|
+
export declare var GetInboxInput$: StaticStructureSchema;
|
|
70
|
+
export declare var GetInboxOutput$: StaticStructureSchema;
|
|
71
|
+
export declare var GetMessageInput$: StaticStructureSchema;
|
|
72
|
+
export declare var GetMessageOutput$: StaticStructureSchema;
|
|
73
|
+
export declare var GetOrCreateDirectChannelInput$: StaticStructureSchema;
|
|
74
|
+
export declare var GetOrCreateDirectChannelOutput$: StaticStructureSchema;
|
|
75
|
+
export declare var GetOrCreateSmsChannelInput$: StaticStructureSchema;
|
|
76
|
+
export declare var GetOrCreateSmsChannelOutput$: StaticStructureSchema;
|
|
77
|
+
export declare var GetOrCreateTelephonyChannelInput$: StaticStructureSchema;
|
|
78
|
+
export declare var GetOrCreateTelephonyChannelOutput$: StaticStructureSchema;
|
|
79
|
+
export declare var GetOrCreateWhatsAppChannelInput$: StaticStructureSchema;
|
|
80
|
+
export declare var GetOrCreateWhatsAppChannelOutput$: StaticStructureSchema;
|
|
81
|
+
export declare var GetSmsChannelIdInput$: StaticStructureSchema;
|
|
82
|
+
export declare var GetSmsChannelIdOutput$: StaticStructureSchema;
|
|
83
|
+
export declare var GetTelephonyChannelIdInput$: StaticStructureSchema;
|
|
84
|
+
export declare var GetTelephonyChannelIdOutput$: StaticStructureSchema;
|
|
85
|
+
export declare var GetTokenInput$: StaticStructureSchema;
|
|
86
|
+
export declare var GetTokenOutput$: StaticStructureSchema;
|
|
87
|
+
export declare var GetUploadedFileInfoInput$: StaticStructureSchema;
|
|
88
|
+
export declare var GetUploadedFileInfoOutput$: StaticStructureSchema;
|
|
89
|
+
export declare var GetWhatsAppChannelIdInput$: StaticStructureSchema;
|
|
90
|
+
export declare var GetWhatsAppChannelIdOutput$: StaticStructureSchema;
|
|
91
|
+
export declare var HideChannelInput$: StaticStructureSchema;
|
|
92
|
+
export declare var HideChannelOutput$: StaticStructureSchema;
|
|
93
|
+
export declare var InboxChannel$: StaticStructureSchema;
|
|
94
|
+
export declare var InboxState$: StaticStructureSchema;
|
|
95
|
+
export declare var InitialMessage$: StaticStructureSchema;
|
|
96
|
+
export declare var JoinChannelInput$: StaticStructureSchema;
|
|
97
|
+
export declare var JoinChannelOutput$: StaticStructureSchema;
|
|
98
|
+
export declare var LastMessagePreview$: StaticStructureSchema;
|
|
99
|
+
export declare var LeaveChannelInput$: StaticStructureSchema;
|
|
100
|
+
export declare var LeaveChannelOutput$: StaticStructureSchema;
|
|
101
|
+
export declare var ListChannelMembersInput$: StaticStructureSchema;
|
|
102
|
+
export declare var ListChannelMembersOutput$: StaticStructureSchema;
|
|
103
|
+
export declare var ListChannelMembersReadStatusInput$: StaticStructureSchema;
|
|
104
|
+
export declare var ListChannelMembersReadStatusOutput$: StaticStructureSchema;
|
|
105
|
+
export declare var ListChannelsInput$: StaticStructureSchema;
|
|
106
|
+
export declare var ListChannelsOutput$: StaticStructureSchema;
|
|
107
|
+
export declare var ListMentionsInput$: StaticStructureSchema;
|
|
108
|
+
export declare var ListMentionsOutput$: StaticStructureSchema;
|
|
109
|
+
export declare var ListMessagesInput$: StaticStructureSchema;
|
|
110
|
+
export declare var ListMessagesOutput$: StaticStructureSchema;
|
|
111
|
+
export declare var MarkReadInput$: StaticStructureSchema;
|
|
112
|
+
export declare var MarkReadOutput$: StaticStructureSchema;
|
|
113
|
+
export declare var MarkUnreadInput$: StaticStructureSchema;
|
|
114
|
+
export declare var MarkUnreadOutput$: StaticStructureSchema;
|
|
115
|
+
export declare var MentionChannelPreview$: StaticStructureSchema;
|
|
116
|
+
export declare var MentionEntry$: StaticStructureSchema;
|
|
117
|
+
export declare var Message$: StaticStructureSchema;
|
|
118
|
+
export declare var MessageAttachment$: StaticStructureSchema;
|
|
119
|
+
export declare var MessageAttachmentRequest$: StaticStructureSchema;
|
|
120
|
+
export declare var MessageForward$: StaticStructureSchema;
|
|
121
|
+
export declare var MessageForwardRef$: StaticStructureSchema;
|
|
122
|
+
export declare var MessageGiphy$: StaticStructureSchema;
|
|
123
|
+
export declare var MessageQuote$: StaticStructureSchema;
|
|
124
|
+
export declare var MessageQuoteRef$: StaticStructureSchema;
|
|
125
|
+
export declare var MessageTemplateConfig$: StaticStructureSchema;
|
|
126
|
+
export declare var MoveChannelToSectionInput$: StaticStructureSchema;
|
|
127
|
+
export declare var MoveChannelToSectionOutput$: StaticStructureSchema;
|
|
128
|
+
export declare var MultipleMembersJoinedSystemMessage$: StaticStructureSchema;
|
|
129
|
+
export declare var MuteChannelInput$: StaticStructureSchema;
|
|
130
|
+
export declare var MuteChannelOutput$: StaticStructureSchema;
|
|
131
|
+
export declare var PartialUpdateChannelInput$: StaticStructureSchema;
|
|
132
|
+
export declare var PartialUpdateChannelOutput$: StaticStructureSchema;
|
|
133
|
+
export declare var PartialUpdateChannelSetOptions$: StaticStructureSchema;
|
|
134
|
+
export declare var PartialUpdateMessageInput$: StaticStructureSchema;
|
|
135
|
+
export declare var PartialUpdateMessageOutput$: StaticStructureSchema;
|
|
136
|
+
export declare var PartialUpdateMessageSetInput$: StaticStructureSchema;
|
|
137
|
+
export declare var PinChannelInput$: StaticStructureSchema;
|
|
138
|
+
export declare var PinChannelOutput$: StaticStructureSchema;
|
|
139
|
+
export declare var PinMessageInput$: StaticStructureSchema;
|
|
140
|
+
export declare var PinMessageOutput$: StaticStructureSchema;
|
|
141
|
+
export declare var QueryChannelsInput$: StaticStructureSchema;
|
|
142
|
+
export declare var QueryChannelsOutput$: StaticStructureSchema;
|
|
143
|
+
export declare var Reaction$: StaticStructureSchema;
|
|
144
|
+
export declare var RemoveChannelFromSectionInput$: StaticStructureSchema;
|
|
145
|
+
export declare var RemoveChannelFromSectionOutput$: StaticStructureSchema;
|
|
146
|
+
export declare var RenameSectionInput$: StaticStructureSchema;
|
|
147
|
+
export declare var RenameSectionOutput$: StaticStructureSchema;
|
|
148
|
+
export declare var Section$: StaticStructureSchema;
|
|
149
|
+
export declare var SendGiphyInput$: StaticStructureSchema;
|
|
150
|
+
export declare var SendGiphyOutput$: StaticStructureSchema;
|
|
151
|
+
export declare var SendMessageInput$: StaticStructureSchema;
|
|
152
|
+
export declare var SendMessageOutput$: StaticStructureSchema;
|
|
153
|
+
export declare var SendMessageReactionInput$: StaticStructureSchema;
|
|
154
|
+
export declare var SendMessageReactionOutput$: StaticStructureSchema;
|
|
155
|
+
export declare var SendSystemMessageInput$: StaticStructureSchema;
|
|
156
|
+
export declare var SendSystemMessageOutput$: StaticStructureSchema;
|
|
157
|
+
export declare var SendTypingStartInput$: StaticStructureSchema;
|
|
158
|
+
export declare var SendTypingStartOutput$: StaticStructureSchema;
|
|
159
|
+
export declare var SendTypingStopInput$: StaticStructureSchema;
|
|
160
|
+
export declare var SendTypingStopOutput$: StaticStructureSchema;
|
|
161
|
+
export declare var ShowChannelInput$: StaticStructureSchema;
|
|
162
|
+
export declare var ShowChannelOutput$: StaticStructureSchema;
|
|
163
|
+
export declare var UnmuteChannelInput$: StaticStructureSchema;
|
|
164
|
+
export declare var UnmuteChannelOutput$: StaticStructureSchema;
|
|
165
|
+
export declare var UnpinChannelInput$: StaticStructureSchema;
|
|
166
|
+
export declare var UnpinChannelOutput$: StaticStructureSchema;
|
|
167
|
+
export declare var UnpinMessageInput$: StaticStructureSchema;
|
|
168
|
+
export declare var UnpinMessageOutput$: StaticStructureSchema;
|
|
169
|
+
export declare var UpdateChannelInput$: StaticStructureSchema;
|
|
170
|
+
export declare var UpdateChannelOutput$: StaticStructureSchema;
|
|
171
|
+
export declare var UpdateMessageInput$: StaticStructureSchema;
|
|
172
|
+
export declare var UpdateMessageOutput$: StaticStructureSchema;
|
|
173
|
+
export declare var UploadedFileInfo$: StaticStructureSchema;
|
|
174
|
+
export declare var UploadFileInput$: StaticStructureSchema;
|
|
175
|
+
export declare var UploadFileOptions$: StaticStructureSchema;
|
|
176
|
+
export declare var UploadFileOutput$: StaticStructureSchema;
|
|
177
|
+
export declare var UserToInvite$: StaticStructureSchema;
|
|
178
|
+
export declare var WelcomeMessage$: StaticStructureSchema;
|
|
179
|
+
export declare var WhatsAppClosedSystemMessage$: StaticStructureSchema;
|
|
180
|
+
export declare var ActionElement$: StaticUnionSchema;
|
|
181
|
+
export declare var AssignChannelAssigneeRequest$: StaticUnionSchema;
|
|
182
|
+
export declare var AssignChannelServiceRequest$: StaticUnionSchema;
|
|
183
|
+
export declare var ButtonHandler$: StaticUnionSchema;
|
|
184
|
+
export declare var Element$: StaticUnionSchema;
|
|
185
|
+
export declare var SystemMessage$: StaticUnionSchema;
|
|
186
|
+
export declare var AddChannelMember$: StaticOperationSchema;
|
|
187
|
+
export declare var AddChannelMembers$: StaticOperationSchema;
|
|
188
|
+
export declare var AssignChannel$: StaticOperationSchema;
|
|
189
|
+
export declare var CreateGroupChannel$: StaticOperationSchema;
|
|
190
|
+
export declare var CreateKiteChannel$: StaticOperationSchema;
|
|
191
|
+
export declare var CreateSection$: StaticOperationSchema;
|
|
192
|
+
export declare var DeleteChannel$: StaticOperationSchema;
|
|
193
|
+
export declare var DeleteChannelMember$: StaticOperationSchema;
|
|
194
|
+
export declare var DeleteMessage$: StaticOperationSchema;
|
|
195
|
+
export declare var DeleteMessageReaction$: StaticOperationSchema;
|
|
196
|
+
export declare var DeleteSection$: StaticOperationSchema;
|
|
197
|
+
export declare var GetChannel$: StaticOperationSchema;
|
|
198
|
+
export declare var GetChannelMember$: StaticOperationSchema;
|
|
199
|
+
export declare var GetDirectChannelId$: StaticOperationSchema;
|
|
200
|
+
export declare var GetFilePresignedDownloadUrl$: StaticOperationSchema;
|
|
201
|
+
export declare var GetInbox$: StaticOperationSchema;
|
|
202
|
+
export declare var GetMessage$: StaticOperationSchema;
|
|
203
|
+
export declare var GetOrCreateDirectChannel$: StaticOperationSchema;
|
|
204
|
+
export declare var GetOrCreateSmsChannel$: StaticOperationSchema;
|
|
205
|
+
export declare var GetOrCreateTelephonyChannel$: StaticOperationSchema;
|
|
206
|
+
export declare var GetOrCreateWhatsAppChannel$: StaticOperationSchema;
|
|
207
|
+
export declare var GetSmsChannelId$: StaticOperationSchema;
|
|
208
|
+
export declare var GetTelephonyChannelId$: StaticOperationSchema;
|
|
209
|
+
export declare var GetToken$: StaticOperationSchema;
|
|
210
|
+
export declare var GetUploadedFileInfo$: StaticOperationSchema;
|
|
211
|
+
export declare var GetWhatsAppChannelId$: StaticOperationSchema;
|
|
212
|
+
export declare var HideChannel$: StaticOperationSchema;
|
|
213
|
+
export declare var JoinChannel$: StaticOperationSchema;
|
|
214
|
+
export declare var LeaveChannel$: StaticOperationSchema;
|
|
215
|
+
export declare var ListChannelMembers$: StaticOperationSchema;
|
|
216
|
+
export declare var ListChannelMembersReadStatus$: StaticOperationSchema;
|
|
217
|
+
export declare var ListChannels$: StaticOperationSchema;
|
|
218
|
+
export declare var ListMentions$: StaticOperationSchema;
|
|
219
|
+
export declare var ListMessages$: StaticOperationSchema;
|
|
220
|
+
export declare var MarkRead$: StaticOperationSchema;
|
|
221
|
+
export declare var MarkUnread$: StaticOperationSchema;
|
|
222
|
+
export declare var MoveChannelToSection$: StaticOperationSchema;
|
|
223
|
+
export declare var MuteChannel$: StaticOperationSchema;
|
|
224
|
+
export declare var PartialUpdateChannel$: StaticOperationSchema;
|
|
225
|
+
export declare var PartialUpdateMessage$: StaticOperationSchema;
|
|
226
|
+
export declare var PinChannel$: StaticOperationSchema;
|
|
227
|
+
export declare var PinMessage$: StaticOperationSchema;
|
|
228
|
+
export declare var QueryChannels$: StaticOperationSchema;
|
|
229
|
+
export declare var RemoveChannelFromSection$: StaticOperationSchema;
|
|
230
|
+
export declare var RenameSection$: StaticOperationSchema;
|
|
231
|
+
export declare var SendGiphy$: StaticOperationSchema;
|
|
232
|
+
export declare var SendMessage$: StaticOperationSchema;
|
|
233
|
+
export declare var SendMessageReaction$: StaticOperationSchema;
|
|
234
|
+
export declare var SendSystemMessage$: StaticOperationSchema;
|
|
235
|
+
export declare var SendTypingStart$: StaticOperationSchema;
|
|
236
|
+
export declare var SendTypingStop$: StaticOperationSchema;
|
|
237
|
+
export declare var ShowChannel$: StaticOperationSchema;
|
|
238
|
+
export declare var UnmuteChannel$: StaticOperationSchema;
|
|
239
|
+
export declare var UnpinChannel$: StaticOperationSchema;
|
|
240
|
+
export declare var UnpinMessage$: StaticOperationSchema;
|
|
241
|
+
export declare var UpdateChannel$: StaticOperationSchema;
|
|
242
|
+
export declare var UpdateMessage$: StaticOperationSchema;
|
|
243
|
+
export declare var UploadFile$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/stream-client",
|
|
3
3
|
"description": "@wildix/stream-client client",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "3.1.10",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
8
8
|
"build:es": "tsc -p tsconfig.es.json",
|
|
9
9
|
"build:types": "tsc -p tsconfig.types.json",
|
|
10
10
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
11
|
-
"clean": "
|
|
11
|
+
"clean": "premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo",
|
|
12
12
|
"prepack": "yarn run clean && yarn run build",
|
|
13
13
|
"postpublish": "node ../../scripts/postpublish.js"
|
|
14
14
|
},
|
|
@@ -20,51 +20,25 @@
|
|
|
20
20
|
"tslib": "^2.6.2",
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@
|
|
25
|
-
"@
|
|
26
|
-
"@
|
|
27
|
-
"@
|
|
28
|
-
"@aws-sdk/types": "latest",
|
|
29
|
-
"@aws-sdk/util-user-agent-browser": "3.775.0",
|
|
30
|
-
"@aws-sdk/util-user-agent-node": "3.775.0",
|
|
31
|
-
"@smithy/config-resolver": "^4.1.0",
|
|
32
|
-
"@smithy/core": "^3.2.0",
|
|
33
|
-
"@smithy/fetch-http-handler": "^5.0.2",
|
|
34
|
-
"@smithy/hash-node": "^4.0.2",
|
|
35
|
-
"@smithy/invalid-dependency": "^4.0.2",
|
|
36
|
-
"@smithy/middleware-content-length": "^4.0.2",
|
|
37
|
-
"@smithy/middleware-retry": "^4.1.0",
|
|
38
|
-
"@smithy/middleware-serde": "^4.0.3",
|
|
39
|
-
"@smithy/middleware-stack": "^4.0.2",
|
|
40
|
-
"@smithy/node-config-provider": "^4.0.2",
|
|
41
|
-
"@smithy/node-http-handler": "^4.0.4",
|
|
42
|
-
"@smithy/protocol-http": "^5.1.0",
|
|
43
|
-
"@smithy/smithy-client": "^4.2.0",
|
|
44
|
-
"@smithy/types": "^4.2.0",
|
|
45
|
-
"@smithy/url-parser": "^4.0.2",
|
|
46
|
-
"@smithy/util-base64": "^4.0.0",
|
|
47
|
-
"@smithy/util-body-length-browser": "^4.0.0",
|
|
48
|
-
"@smithy/util-body-length-node": "^4.0.0",
|
|
49
|
-
"@smithy/util-defaults-mode-browser": "^4.0.8",
|
|
50
|
-
"@smithy/util-defaults-mode-node": "^4.0.8",
|
|
51
|
-
"@smithy/util-retry": "^4.0.2",
|
|
52
|
-
"@smithy/util-utf8": "^4.0.0",
|
|
53
|
-
"@wildix/smithy-utils": "^1.0.3"
|
|
23
|
+
"@aws-sdk/core": "^3.974.15",
|
|
24
|
+
"@smithy/core": "^3.24.5",
|
|
25
|
+
"@smithy/fetch-http-handler": "^5.4.5",
|
|
26
|
+
"@smithy/node-http-handler": "^4.7.5",
|
|
27
|
+
"@smithy/types": "^4.14.2"
|
|
54
28
|
},
|
|
55
29
|
"devDependencies": {
|
|
56
|
-
"@tsconfig/
|
|
30
|
+
"@tsconfig/node20": "20.1.8",
|
|
57
31
|
"concurrently": "7.0.0",
|
|
58
32
|
"downlevel-dts": "0.10.1",
|
|
59
|
-
"
|
|
60
|
-
"typescript": "~5.
|
|
61
|
-
"@types/node": "^
|
|
33
|
+
"premove": "4.0.0",
|
|
34
|
+
"typescript": "~5.8.3",
|
|
35
|
+
"@types/node": "^20.14.8"
|
|
62
36
|
},
|
|
63
37
|
"engines": {
|
|
64
|
-
"node": ">=
|
|
38
|
+
"node": ">=20.0.0"
|
|
65
39
|
},
|
|
66
40
|
"typesVersions": {
|
|
67
|
-
"<4.
|
|
41
|
+
"<4.5": {
|
|
68
42
|
"dist-types/*": [
|
|
69
43
|
"dist-types/ts3.4/*"
|
|
70
44
|
]
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SearchChannelsCommand = exports.$Command = void 0;
|
|
4
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
class SearchChannelsCommand extends smithy_client_1.Command.classBuilder()
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [
|
|
11
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12
|
-
];
|
|
13
|
-
})
|
|
14
|
-
.s("StreamService", "SearchChannels", {})
|
|
15
|
-
.n("StreamServiceClient", "SearchChannelsCommand")
|
|
16
|
-
.f(void 0, void 0)
|
|
17
|
-
.ser(Aws_restJson1_1.se_SearchChannelsCommand)
|
|
18
|
-
.de(Aws_restJson1_1.de_SearchChannelsCommand)
|
|
19
|
-
.build() {
|
|
20
|
-
}
|
|
21
|
-
exports.SearchChannelsCommand = SearchChannelsCommand;
|