@aws-sdk/types 3.78.0 → 3.109.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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/types
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.78.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.77.0...v3.78.0) (2022-04-26)
|
|
7
15
|
|
|
8
16
|
|
|
@@ -62,9 +62,7 @@ export interface EventStreamSerdeContext {
|
|
|
62
62
|
eventStreamMarshaller: EventStreamMarshaller;
|
|
63
63
|
}
|
|
64
64
|
export interface EventStreamMarshaller {
|
|
65
|
-
deserialize: (body: any, deserializer: (input:
|
|
66
|
-
[event: string]: Message;
|
|
67
|
-
}) => any) => AsyncIterable<any>;
|
|
65
|
+
deserialize: (body: any, deserializer: (input: Record<string, Message>) => any) => AsyncIterable<any>;
|
|
68
66
|
serialize: (input: AsyncIterable<any>, serializer: (event: any) => Message) => any;
|
|
69
67
|
}
|
|
70
68
|
export interface EventStreamRequestSigner {
|
package/dist-types/profile.d.ts
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
|
-
export interface
|
|
1
|
+
export interface IniSection {
|
|
2
2
|
[key: string]: string | undefined;
|
|
3
3
|
}
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated: Please use IniSection
|
|
6
|
+
*/
|
|
7
|
+
export interface Profile extends IniSection {
|
|
8
|
+
}
|
|
4
9
|
export interface ParsedIniData {
|
|
5
|
-
[key: string]:
|
|
10
|
+
[key: string]: IniSection;
|
|
6
11
|
}
|
|
7
12
|
export interface SharedConfigFiles {
|
|
8
13
|
credentialsFile: ParsedIniData;
|
|
@@ -56,9 +56,7 @@ export interface EventStreamSerdeContext {
|
|
|
56
56
|
eventStreamMarshaller: EventStreamMarshaller;
|
|
57
57
|
}
|
|
58
58
|
export interface EventStreamMarshaller {
|
|
59
|
-
deserialize: (body: any, deserializer: (input:
|
|
60
|
-
[event: string]: Message;
|
|
61
|
-
}) => any) => AsyncIterable<any>;
|
|
59
|
+
deserialize: (body: any, deserializer: (input: Record<string, Message>) => any) => AsyncIterable<any>;
|
|
62
60
|
serialize: (input: AsyncIterable<any>, serializer: (event: any) => Message) => any;
|
|
63
61
|
}
|
|
64
62
|
export interface EventStreamRequestSigner {
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
-
export interface
|
|
1
|
+
export interface IniSection {
|
|
2
2
|
[key: string]: string | undefined;
|
|
3
3
|
}
|
|
4
|
+
|
|
5
|
+
export interface Profile extends IniSection {
|
|
6
|
+
}
|
|
4
7
|
export interface ParsedIniData {
|
|
5
|
-
[key: string]:
|
|
8
|
+
[key: string]: IniSection;
|
|
6
9
|
}
|
|
7
10
|
export interface SharedConfigFiles {
|
|
8
11
|
credentialsFile: ParsedIniData;
|