@aws-sdk/client-clouddirectory 3.529.0 → 3.533.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-types/commands/AddFacetToObjectCommand.d.ts +1 -1
- package/dist-types/commands/AttachTypedLinkCommand.d.ts +2 -2
- package/dist-types/commands/BatchReadCommand.d.ts +10 -10
- package/dist-types/commands/BatchWriteCommand.d.ts +6 -6
- package/dist-types/commands/CreateFacetCommand.d.ts +1 -1
- package/dist-types/commands/CreateObjectCommand.d.ts +1 -1
- package/dist-types/commands/CreateTypedLinkFacetCommand.d.ts +1 -1
- package/dist-types/commands/DetachTypedLinkCommand.d.ts +1 -1
- package/dist-types/commands/GetLinkAttributesCommand.d.ts +2 -2
- package/dist-types/commands/GetObjectAttributesCommand.d.ts +1 -1
- package/dist-types/commands/ListAttachedIndicesCommand.d.ts +1 -1
- package/dist-types/commands/ListFacetAttributesCommand.d.ts +1 -1
- package/dist-types/commands/ListIncomingTypedLinksCommand.d.ts +3 -3
- package/dist-types/commands/ListIndexCommand.d.ts +3 -3
- package/dist-types/commands/ListObjectAttributesCommand.d.ts +1 -1
- package/dist-types/commands/ListOutgoingTypedLinksCommand.d.ts +3 -3
- package/dist-types/commands/ListTypedLinkFacetAttributesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFacetCommand.d.ts +1 -1
- package/dist-types/commands/UpdateLinkAttributesCommand.d.ts +2 -2
- package/dist-types/commands/UpdateObjectAttributesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTypedLinkFacetCommand.d.ts +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
- package/package.json +37 -37
|
@@ -48,7 +48,7 @@ declare const AddFacetToObjectCommand_base: {
|
|
|
48
48
|
* },
|
|
49
49
|
* Value: { // TypedAttributeValue Union: only one key present
|
|
50
50
|
* StringValue: "STRING_VALUE",
|
|
51
|
-
* BinaryValue: "
|
|
51
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
52
52
|
* BooleanValue: true || false,
|
|
53
53
|
* NumberValue: "STRING_VALUE",
|
|
54
54
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -50,7 +50,7 @@ declare const AttachTypedLinkCommand_base: {
|
|
|
50
50
|
* AttributeName: "STRING_VALUE", // required
|
|
51
51
|
* Value: { // TypedAttributeValue Union: only one key present
|
|
52
52
|
* StringValue: "STRING_VALUE",
|
|
53
|
-
* BinaryValue: "
|
|
53
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
54
54
|
* BooleanValue: true || false,
|
|
55
55
|
* NumberValue: "STRING_VALUE",
|
|
56
56
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -77,7 +77,7 @@ declare const AttachTypedLinkCommand_base: {
|
|
|
77
77
|
* // AttributeName: "STRING_VALUE", // required
|
|
78
78
|
* // Value: { // TypedAttributeValue Union: only one key present
|
|
79
79
|
* // StringValue: "STRING_VALUE",
|
|
80
|
-
* // BinaryValue:
|
|
80
|
+
* // BinaryValue: new Uint8Array(),
|
|
81
81
|
* // BooleanValue: true || false,
|
|
82
82
|
* // NumberValue: "STRING_VALUE",
|
|
83
83
|
* // DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -116,7 +116,7 @@ declare const BatchReadCommand_base: {
|
|
|
116
116
|
* StartMode: "FIRST" || "LAST" || "LAST_BEFORE_MISSING_VALUES" || "INCLUSIVE" || "EXCLUSIVE", // required
|
|
117
117
|
* StartValue: { // TypedAttributeValue Union: only one key present
|
|
118
118
|
* StringValue: "STRING_VALUE",
|
|
119
|
-
* BinaryValue: "
|
|
119
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
120
120
|
* BooleanValue: true || false,
|
|
121
121
|
* NumberValue: "STRING_VALUE",
|
|
122
122
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -124,7 +124,7 @@ declare const BatchReadCommand_base: {
|
|
|
124
124
|
* EndMode: "FIRST" || "LAST" || "LAST_BEFORE_MISSING_VALUES" || "INCLUSIVE" || "EXCLUSIVE", // required
|
|
125
125
|
* EndValue: {// Union: only one key present
|
|
126
126
|
* StringValue: "STRING_VALUE",
|
|
127
|
-
* BinaryValue: "
|
|
127
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
128
128
|
* BooleanValue: true || false,
|
|
129
129
|
* NumberValue: "STRING_VALUE",
|
|
130
130
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -145,7 +145,7 @@ declare const BatchReadCommand_base: {
|
|
|
145
145
|
* StartMode: "FIRST" || "LAST" || "LAST_BEFORE_MISSING_VALUES" || "INCLUSIVE" || "EXCLUSIVE", // required
|
|
146
146
|
* StartValue: {// Union: only one key present
|
|
147
147
|
* StringValue: "STRING_VALUE",
|
|
148
|
-
* BinaryValue: "
|
|
148
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
149
149
|
* BooleanValue: true || false,
|
|
150
150
|
* NumberValue: "STRING_VALUE",
|
|
151
151
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -153,7 +153,7 @@ declare const BatchReadCommand_base: {
|
|
|
153
153
|
* EndMode: "FIRST" || "LAST" || "LAST_BEFORE_MISSING_VALUES" || "INCLUSIVE" || "EXCLUSIVE", // required
|
|
154
154
|
* EndValue: {// Union: only one key present
|
|
155
155
|
* StringValue: "STRING_VALUE",
|
|
156
|
-
* BinaryValue: "
|
|
156
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
157
157
|
* BooleanValue: true || false,
|
|
158
158
|
* NumberValue: "STRING_VALUE",
|
|
159
159
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -177,7 +177,7 @@ declare const BatchReadCommand_base: {
|
|
|
177
177
|
* StartMode: "FIRST" || "LAST" || "LAST_BEFORE_MISSING_VALUES" || "INCLUSIVE" || "EXCLUSIVE", // required
|
|
178
178
|
* StartValue: {// Union: only one key present
|
|
179
179
|
* StringValue: "STRING_VALUE",
|
|
180
|
-
* BinaryValue: "
|
|
180
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
181
181
|
* BooleanValue: true || false,
|
|
182
182
|
* NumberValue: "STRING_VALUE",
|
|
183
183
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -233,7 +233,7 @@ declare const BatchReadCommand_base: {
|
|
|
233
233
|
* // },
|
|
234
234
|
* // Value: { // TypedAttributeValue Union: only one key present
|
|
235
235
|
* // StringValue: "STRING_VALUE",
|
|
236
|
-
* // BinaryValue:
|
|
236
|
+
* // BinaryValue: new Uint8Array(),
|
|
237
237
|
* // BooleanValue: true || false,
|
|
238
238
|
* // NumberValue: "STRING_VALUE",
|
|
239
239
|
* // DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -267,7 +267,7 @@ declare const BatchReadCommand_base: {
|
|
|
267
267
|
* // },
|
|
268
268
|
* // Value: {// Union: only one key present
|
|
269
269
|
* // StringValue: "STRING_VALUE",
|
|
270
|
-
* // BinaryValue:
|
|
270
|
+
* // BinaryValue: new Uint8Array(),
|
|
271
271
|
* // BooleanValue: true || false,
|
|
272
272
|
* // NumberValue: "STRING_VALUE",
|
|
273
273
|
* // DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -287,7 +287,7 @@ declare const BatchReadCommand_base: {
|
|
|
287
287
|
* // },
|
|
288
288
|
* // Value: {// Union: only one key present
|
|
289
289
|
* // StringValue: "STRING_VALUE",
|
|
290
|
-
* // BinaryValue:
|
|
290
|
+
* // BinaryValue: new Uint8Array(),
|
|
291
291
|
* // BooleanValue: true || false,
|
|
292
292
|
* // NumberValue: "STRING_VALUE",
|
|
293
293
|
* // DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -349,7 +349,7 @@ declare const BatchReadCommand_base: {
|
|
|
349
349
|
* // },
|
|
350
350
|
* // Value: {// Union: only one key present
|
|
351
351
|
* // StringValue: "STRING_VALUE",
|
|
352
|
-
* // BinaryValue:
|
|
352
|
+
* // BinaryValue: new Uint8Array(),
|
|
353
353
|
* // BooleanValue: true || false,
|
|
354
354
|
* // NumberValue: "STRING_VALUE",
|
|
355
355
|
* // DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -379,7 +379,7 @@ declare const BatchReadCommand_base: {
|
|
|
379
379
|
* // AttributeName: "STRING_VALUE", // required
|
|
380
380
|
* // Value: {// Union: only one key present
|
|
381
381
|
* // StringValue: "STRING_VALUE",
|
|
382
|
-
* // BinaryValue:
|
|
382
|
+
* // BinaryValue: new Uint8Array(),
|
|
383
383
|
* // BooleanValue: true || false,
|
|
384
384
|
* // NumberValue: "STRING_VALUE",
|
|
385
385
|
* // DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -54,7 +54,7 @@ declare const BatchWriteCommand_base: {
|
|
|
54
54
|
* },
|
|
55
55
|
* Value: { // TypedAttributeValue Union: only one key present
|
|
56
56
|
* StringValue: "STRING_VALUE",
|
|
57
|
-
* BinaryValue: "
|
|
57
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
58
58
|
* BooleanValue: true || false,
|
|
59
59
|
* NumberValue: "STRING_VALUE",
|
|
60
60
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -98,7 +98,7 @@ declare const BatchWriteCommand_base: {
|
|
|
98
98
|
* ObjectAttributeActionType: "CREATE_OR_UPDATE" || "DELETE",
|
|
99
99
|
* ObjectAttributeUpdateValue: {// Union: only one key present
|
|
100
100
|
* StringValue: "STRING_VALUE",
|
|
101
|
-
* BinaryValue: "
|
|
101
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
102
102
|
* BooleanValue: true || false,
|
|
103
103
|
* NumberValue: "STRING_VALUE",
|
|
104
104
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -124,7 +124,7 @@ declare const BatchWriteCommand_base: {
|
|
|
124
124
|
* },
|
|
125
125
|
* Value: {// Union: only one key present
|
|
126
126
|
* StringValue: "STRING_VALUE",
|
|
127
|
-
* BinaryValue: "
|
|
127
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
128
128
|
* BooleanValue: true || false,
|
|
129
129
|
* NumberValue: "STRING_VALUE",
|
|
130
130
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -181,7 +181,7 @@ declare const BatchWriteCommand_base: {
|
|
|
181
181
|
* AttributeName: "STRING_VALUE", // required
|
|
182
182
|
* Value: {// Union: only one key present
|
|
183
183
|
* StringValue: "STRING_VALUE",
|
|
184
|
-
* BinaryValue: "
|
|
184
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
185
185
|
* BooleanValue: true || false,
|
|
186
186
|
* NumberValue: "STRING_VALUE",
|
|
187
187
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -202,7 +202,7 @@ declare const BatchWriteCommand_base: {
|
|
|
202
202
|
* AttributeName: "STRING_VALUE", // required
|
|
203
203
|
* Value: {// Union: only one key present
|
|
204
204
|
* StringValue: "STRING_VALUE",
|
|
205
|
-
* BinaryValue: "
|
|
205
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
206
206
|
* BooleanValue: true || false,
|
|
207
207
|
* NumberValue: "STRING_VALUE",
|
|
208
208
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -291,7 +291,7 @@ declare const BatchWriteCommand_base: {
|
|
|
291
291
|
* // AttributeName: "STRING_VALUE", // required
|
|
292
292
|
* // Value: { // TypedAttributeValue Union: only one key present
|
|
293
293
|
* // StringValue: "STRING_VALUE",
|
|
294
|
-
* // BinaryValue:
|
|
294
|
+
* // BinaryValue: new Uint8Array(),
|
|
295
295
|
* // BooleanValue: true || false,
|
|
296
296
|
* // NumberValue: "STRING_VALUE",
|
|
297
297
|
* // DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -44,7 +44,7 @@ declare const CreateFacetCommand_base: {
|
|
|
44
44
|
* Type: "STRING" || "BINARY" || "BOOLEAN" || "NUMBER" || "DATETIME" || "VARIANT", // required
|
|
45
45
|
* DefaultValue: { // TypedAttributeValue Union: only one key present
|
|
46
46
|
* StringValue: "STRING_VALUE",
|
|
47
|
-
* BinaryValue: "
|
|
47
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
48
48
|
* BooleanValue: true || false,
|
|
49
49
|
* NumberValue: "STRING_VALUE",
|
|
50
50
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -53,7 +53,7 @@ declare const CreateObjectCommand_base: {
|
|
|
53
53
|
* },
|
|
54
54
|
* Value: { // TypedAttributeValue Union: only one key present
|
|
55
55
|
* StringValue: "STRING_VALUE",
|
|
56
|
-
* BinaryValue: "
|
|
56
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
57
57
|
* BooleanValue: true || false,
|
|
58
58
|
* NumberValue: "STRING_VALUE",
|
|
59
59
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -43,7 +43,7 @@ declare const CreateTypedLinkFacetCommand_base: {
|
|
|
43
43
|
* Type: "STRING" || "BINARY" || "BOOLEAN" || "NUMBER" || "DATETIME" || "VARIANT", // required
|
|
44
44
|
* DefaultValue: { // TypedAttributeValue Union: only one key present
|
|
45
45
|
* StringValue: "STRING_VALUE",
|
|
46
|
-
* BinaryValue: "
|
|
46
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
47
47
|
* BooleanValue: true || false,
|
|
48
48
|
* NumberValue: "STRING_VALUE",
|
|
49
49
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -51,7 +51,7 @@ declare const DetachTypedLinkCommand_base: {
|
|
|
51
51
|
* AttributeName: "STRING_VALUE", // required
|
|
52
52
|
* Value: { // TypedAttributeValue Union: only one key present
|
|
53
53
|
* StringValue: "STRING_VALUE",
|
|
54
|
-
* BinaryValue: "
|
|
54
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
55
55
|
* BooleanValue: true || false,
|
|
56
56
|
* NumberValue: "STRING_VALUE",
|
|
57
57
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -51,7 +51,7 @@ declare const GetLinkAttributesCommand_base: {
|
|
|
51
51
|
* AttributeName: "STRING_VALUE", // required
|
|
52
52
|
* Value: { // TypedAttributeValue Union: only one key present
|
|
53
53
|
* StringValue: "STRING_VALUE",
|
|
54
|
-
* BinaryValue: "
|
|
54
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
55
55
|
* BooleanValue: true || false,
|
|
56
56
|
* NumberValue: "STRING_VALUE",
|
|
57
57
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -76,7 +76,7 @@ declare const GetLinkAttributesCommand_base: {
|
|
|
76
76
|
* // },
|
|
77
77
|
* // Value: { // TypedAttributeValue Union: only one key present
|
|
78
78
|
* // StringValue: "STRING_VALUE",
|
|
79
|
-
* // BinaryValue:
|
|
79
|
+
* // BinaryValue: new Uint8Array(),
|
|
80
80
|
* // BooleanValue: true || false,
|
|
81
81
|
* // NumberValue: "STRING_VALUE",
|
|
82
82
|
* // DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -59,7 +59,7 @@ declare const GetObjectAttributesCommand_base: {
|
|
|
59
59
|
* // },
|
|
60
60
|
* // Value: { // TypedAttributeValue Union: only one key present
|
|
61
61
|
* // StringValue: "STRING_VALUE",
|
|
62
|
-
* // BinaryValue:
|
|
62
|
+
* // BinaryValue: new Uint8Array(),
|
|
63
63
|
* // BooleanValue: true || false,
|
|
64
64
|
* // NumberValue: "STRING_VALUE",
|
|
65
65
|
* // DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -56,7 +56,7 @@ declare const ListAttachedIndicesCommand_base: {
|
|
|
56
56
|
* // },
|
|
57
57
|
* // Value: { // TypedAttributeValue Union: only one key present
|
|
58
58
|
* // StringValue: "STRING_VALUE",
|
|
59
|
-
* // BinaryValue:
|
|
59
|
+
* // BinaryValue: new Uint8Array(),
|
|
60
60
|
* // BooleanValue: true || false,
|
|
61
61
|
* // NumberValue: "STRING_VALUE",
|
|
62
62
|
* // DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -49,7 +49,7 @@ declare const ListFacetAttributesCommand_base: {
|
|
|
49
49
|
* // Type: "STRING" || "BINARY" || "BOOLEAN" || "NUMBER" || "DATETIME" || "VARIANT", // required
|
|
50
50
|
* // DefaultValue: { // TypedAttributeValue Union: only one key present
|
|
51
51
|
* // StringValue: "STRING_VALUE",
|
|
52
|
-
* // BinaryValue:
|
|
52
|
+
* // BinaryValue: new Uint8Array(),
|
|
53
53
|
* // BooleanValue: true || false,
|
|
54
54
|
* // NumberValue: "STRING_VALUE",
|
|
55
55
|
* // DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -47,7 +47,7 @@ declare const ListIncomingTypedLinksCommand_base: {
|
|
|
47
47
|
* StartMode: "FIRST" || "LAST" || "LAST_BEFORE_MISSING_VALUES" || "INCLUSIVE" || "EXCLUSIVE", // required
|
|
48
48
|
* StartValue: { // TypedAttributeValue Union: only one key present
|
|
49
49
|
* StringValue: "STRING_VALUE",
|
|
50
|
-
* BinaryValue: "
|
|
50
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
51
51
|
* BooleanValue: true || false,
|
|
52
52
|
* NumberValue: "STRING_VALUE",
|
|
53
53
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -55,7 +55,7 @@ declare const ListIncomingTypedLinksCommand_base: {
|
|
|
55
55
|
* EndMode: "FIRST" || "LAST" || "LAST_BEFORE_MISSING_VALUES" || "INCLUSIVE" || "EXCLUSIVE", // required
|
|
56
56
|
* EndValue: {// Union: only one key present
|
|
57
57
|
* StringValue: "STRING_VALUE",
|
|
58
|
-
* BinaryValue: "
|
|
58
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
59
59
|
* BooleanValue: true || false,
|
|
60
60
|
* NumberValue: "STRING_VALUE",
|
|
61
61
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -91,7 +91,7 @@ declare const ListIncomingTypedLinksCommand_base: {
|
|
|
91
91
|
* // AttributeName: "STRING_VALUE", // required
|
|
92
92
|
* // Value: { // TypedAttributeValue Union: only one key present
|
|
93
93
|
* // StringValue: "STRING_VALUE",
|
|
94
|
-
* // BinaryValue:
|
|
94
|
+
* // BinaryValue: new Uint8Array(),
|
|
95
95
|
* // BooleanValue: true || false,
|
|
96
96
|
* // NumberValue: "STRING_VALUE",
|
|
97
97
|
* // DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -46,7 +46,7 @@ declare const ListIndexCommand_base: {
|
|
|
46
46
|
* StartMode: "FIRST" || "LAST" || "LAST_BEFORE_MISSING_VALUES" || "INCLUSIVE" || "EXCLUSIVE", // required
|
|
47
47
|
* StartValue: { // TypedAttributeValue Union: only one key present
|
|
48
48
|
* StringValue: "STRING_VALUE",
|
|
49
|
-
* BinaryValue: "
|
|
49
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
50
50
|
* BooleanValue: true || false,
|
|
51
51
|
* NumberValue: "STRING_VALUE",
|
|
52
52
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -54,7 +54,7 @@ declare const ListIndexCommand_base: {
|
|
|
54
54
|
* EndMode: "FIRST" || "LAST" || "LAST_BEFORE_MISSING_VALUES" || "INCLUSIVE" || "EXCLUSIVE", // required
|
|
55
55
|
* EndValue: {// Union: only one key present
|
|
56
56
|
* StringValue: "STRING_VALUE",
|
|
57
|
-
* BinaryValue: "
|
|
57
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
58
58
|
* BooleanValue: true || false,
|
|
59
59
|
* NumberValue: "STRING_VALUE",
|
|
60
60
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -83,7 +83,7 @@ declare const ListIndexCommand_base: {
|
|
|
83
83
|
* // },
|
|
84
84
|
* // Value: { // TypedAttributeValue Union: only one key present
|
|
85
85
|
* // StringValue: "STRING_VALUE",
|
|
86
|
-
* // BinaryValue:
|
|
86
|
+
* // BinaryValue: new Uint8Array(),
|
|
87
87
|
* // BooleanValue: true || false,
|
|
88
88
|
* // NumberValue: "STRING_VALUE",
|
|
89
89
|
* // DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -59,7 +59,7 @@ declare const ListObjectAttributesCommand_base: {
|
|
|
59
59
|
* // },
|
|
60
60
|
* // Value: { // TypedAttributeValue Union: only one key present
|
|
61
61
|
* // StringValue: "STRING_VALUE",
|
|
62
|
-
* // BinaryValue:
|
|
62
|
+
* // BinaryValue: new Uint8Array(),
|
|
63
63
|
* // BooleanValue: true || false,
|
|
64
64
|
* // NumberValue: "STRING_VALUE",
|
|
65
65
|
* // DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -47,7 +47,7 @@ declare const ListOutgoingTypedLinksCommand_base: {
|
|
|
47
47
|
* StartMode: "FIRST" || "LAST" || "LAST_BEFORE_MISSING_VALUES" || "INCLUSIVE" || "EXCLUSIVE", // required
|
|
48
48
|
* StartValue: { // TypedAttributeValue Union: only one key present
|
|
49
49
|
* StringValue: "STRING_VALUE",
|
|
50
|
-
* BinaryValue: "
|
|
50
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
51
51
|
* BooleanValue: true || false,
|
|
52
52
|
* NumberValue: "STRING_VALUE",
|
|
53
53
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -55,7 +55,7 @@ declare const ListOutgoingTypedLinksCommand_base: {
|
|
|
55
55
|
* EndMode: "FIRST" || "LAST" || "LAST_BEFORE_MISSING_VALUES" || "INCLUSIVE" || "EXCLUSIVE", // required
|
|
56
56
|
* EndValue: {// Union: only one key present
|
|
57
57
|
* StringValue: "STRING_VALUE",
|
|
58
|
-
* BinaryValue: "
|
|
58
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
59
59
|
* BooleanValue: true || false,
|
|
60
60
|
* NumberValue: "STRING_VALUE",
|
|
61
61
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -91,7 +91,7 @@ declare const ListOutgoingTypedLinksCommand_base: {
|
|
|
91
91
|
* // AttributeName: "STRING_VALUE", // required
|
|
92
92
|
* // Value: { // TypedAttributeValue Union: only one key present
|
|
93
93
|
* // StringValue: "STRING_VALUE",
|
|
94
|
-
* // BinaryValue:
|
|
94
|
+
* // BinaryValue: new Uint8Array(),
|
|
95
95
|
* // BooleanValue: true || false,
|
|
96
96
|
* // NumberValue: "STRING_VALUE",
|
|
97
97
|
* // DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -48,7 +48,7 @@ declare const ListTypedLinkFacetAttributesCommand_base: {
|
|
|
48
48
|
* // Type: "STRING" || "BINARY" || "BOOLEAN" || "NUMBER" || "DATETIME" || "VARIANT", // required
|
|
49
49
|
* // DefaultValue: { // TypedAttributeValue Union: only one key present
|
|
50
50
|
* // StringValue: "STRING_VALUE",
|
|
51
|
-
* // BinaryValue:
|
|
51
|
+
* // BinaryValue: new Uint8Array(),
|
|
52
52
|
* // BooleanValue: true || false,
|
|
53
53
|
* // NumberValue: "STRING_VALUE",
|
|
54
54
|
* // DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -55,7 +55,7 @@ declare const UpdateFacetCommand_base: {
|
|
|
55
55
|
* Type: "STRING" || "BINARY" || "BOOLEAN" || "NUMBER" || "DATETIME" || "VARIANT", // required
|
|
56
56
|
* DefaultValue: { // TypedAttributeValue Union: only one key present
|
|
57
57
|
* StringValue: "STRING_VALUE",
|
|
58
|
-
* BinaryValue: "
|
|
58
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
59
59
|
* BooleanValue: true || false,
|
|
60
60
|
* NumberValue: "STRING_VALUE",
|
|
61
61
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -51,7 +51,7 @@ declare const UpdateLinkAttributesCommand_base: {
|
|
|
51
51
|
* AttributeName: "STRING_VALUE", // required
|
|
52
52
|
* Value: { // TypedAttributeValue Union: only one key present
|
|
53
53
|
* StringValue: "STRING_VALUE",
|
|
54
|
-
* BinaryValue: "
|
|
54
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
55
55
|
* BooleanValue: true || false,
|
|
56
56
|
* NumberValue: "STRING_VALUE",
|
|
57
57
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -70,7 +70,7 @@ declare const UpdateLinkAttributesCommand_base: {
|
|
|
70
70
|
* AttributeActionType: "CREATE_OR_UPDATE" || "DELETE",
|
|
71
71
|
* AttributeUpdateValue: {// Union: only one key present
|
|
72
72
|
* StringValue: "STRING_VALUE",
|
|
73
|
-
* BinaryValue: "
|
|
73
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
74
74
|
* BooleanValue: true || false,
|
|
75
75
|
* NumberValue: "STRING_VALUE",
|
|
76
76
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -49,7 +49,7 @@ declare const UpdateObjectAttributesCommand_base: {
|
|
|
49
49
|
* ObjectAttributeActionType: "CREATE_OR_UPDATE" || "DELETE",
|
|
50
50
|
* ObjectAttributeUpdateValue: { // TypedAttributeValue Union: only one key present
|
|
51
51
|
* StringValue: "STRING_VALUE",
|
|
52
|
-
* BinaryValue: "
|
|
52
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
53
53
|
* BooleanValue: true || false,
|
|
54
54
|
* NumberValue: "STRING_VALUE",
|
|
55
55
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -43,7 +43,7 @@ declare const UpdateTypedLinkFacetCommand_base: {
|
|
|
43
43
|
* Type: "STRING" || "BINARY" || "BOOLEAN" || "NUMBER" || "DATETIME" || "VARIANT", // required
|
|
44
44
|
* DefaultValue: { // TypedAttributeValue Union: only one key present
|
|
45
45
|
* StringValue: "STRING_VALUE",
|
|
46
|
-
* BinaryValue: "
|
|
46
|
+
* BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
47
47
|
* BooleanValue: true || false,
|
|
48
48
|
* NumberValue: "STRING_VALUE",
|
|
49
49
|
* DatetimeValue: new Date("TIMESTAMP"),
|
|
@@ -20,9 +20,9 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
|
|
|
20
20
|
apiVersion: string;
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
-
base64Encoder:
|
|
23
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
24
24
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
-
utf8Encoder:
|
|
25
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -20,9 +20,9 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
|
|
|
20
20
|
apiVersion: string;
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
-
base64Encoder:
|
|
23
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
24
24
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
-
utf8Encoder:
|
|
25
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -11,9 +11,9 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
|
|
|
11
11
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@smithy/types").Decoder;
|
|
14
|
-
base64Encoder:
|
|
14
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
15
15
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
16
|
-
utf8Encoder:
|
|
16
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
17
17
|
disableHostPrefix: boolean;
|
|
18
18
|
serviceId: string;
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -5,7 +5,7 @@ import { CloudDirectoryClientConfig } from "./CloudDirectoryClient";
|
|
|
5
5
|
export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
|
|
6
6
|
apiVersion: string;
|
|
7
7
|
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
-
base64Encoder:
|
|
8
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
9
9
|
disableHostPrefix: boolean;
|
|
10
10
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
11
|
logger?: import("@smithy/types").Logger | undefined;
|
|
@@ -17,5 +17,5 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
|
|
|
17
17
|
serviceId: string;
|
|
18
18
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
19
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
-
utf8Encoder:
|
|
20
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
21
21
|
};
|
|
@@ -25,9 +25,9 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
|
|
|
25
25
|
apiVersion: string;
|
|
26
26
|
urlParser: import("@smithy/types").UrlParser;
|
|
27
27
|
base64Decoder: import("@smithy/types").Decoder;
|
|
28
|
-
base64Encoder:
|
|
28
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
29
29
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
30
|
-
utf8Encoder:
|
|
30
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
31
31
|
disableHostPrefix: boolean;
|
|
32
32
|
serviceId: string;
|
|
33
33
|
logger: import("@smithy/types").Logger;
|
|
@@ -29,9 +29,9 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
|
|
|
29
29
|
apiVersion: string;
|
|
30
30
|
urlParser: import("@smithy/types").UrlParser;
|
|
31
31
|
base64Decoder: import("@smithy/types").Decoder;
|
|
32
|
-
base64Encoder:
|
|
32
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
33
33
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
34
|
-
utf8Encoder:
|
|
34
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
35
35
|
disableHostPrefix: boolean;
|
|
36
36
|
serviceId: string;
|
|
37
37
|
logger: import("@smithy/types").Logger;
|
|
@@ -13,9 +13,9 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
|
|
|
13
13
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
14
14
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
15
15
|
base64Decoder: import("@smithy/types").Decoder;
|
|
16
|
-
base64Encoder:
|
|
16
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
17
17
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
18
|
-
utf8Encoder:
|
|
18
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
19
19
|
disableHostPrefix: boolean;
|
|
20
20
|
serviceId: string;
|
|
21
21
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -2,7 +2,7 @@ import { CloudDirectoryClientConfig } from "./CloudDirectoryClient";
|
|
|
2
2
|
export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
|
|
3
3
|
apiVersion: string;
|
|
4
4
|
base64Decoder: import("@smithy/types").Decoder;
|
|
5
|
-
base64Encoder:
|
|
5
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
6
6
|
disableHostPrefix: boolean;
|
|
7
7
|
endpointProvider: (
|
|
8
8
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
@@ -17,5 +17,5 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
|
|
|
17
17
|
serviceId: string;
|
|
18
18
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
19
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
-
utf8Encoder:
|
|
20
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
21
21
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-clouddirectory",
|
|
3
3
|
"description": "AWS SDK for JavaScript Clouddirectory Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.533.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-clouddirectory",
|
|
@@ -20,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^2.1.
|
|
36
|
-
"@smithy/core": "^1.3.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.4.
|
|
38
|
-
"@smithy/hash-node": "^2.1.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.1.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.1.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.4.
|
|
42
|
-
"@smithy/middleware-retry": "^2.1.
|
|
43
|
-
"@smithy/middleware-serde": "^2.1
|
|
44
|
-
"@smithy/middleware-stack": "^2.1.
|
|
45
|
-
"@smithy/node-config-provider": "^2.2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.4.
|
|
47
|
-
"@smithy/protocol-http": "^3.2.
|
|
48
|
-
"@smithy/smithy-client": "^2.4.
|
|
49
|
-
"@smithy/types": "^2.
|
|
50
|
-
"@smithy/url-parser": "^2.1.
|
|
51
|
-
"@smithy/util-base64": "^2.
|
|
23
|
+
"@aws-sdk/client-sts": "3.533.0",
|
|
24
|
+
"@aws-sdk/core": "3.533.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.533.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.533.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.533.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.533.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.533.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.533.0",
|
|
31
|
+
"@aws-sdk/types": "3.533.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.533.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.533.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.533.0",
|
|
35
|
+
"@smithy/config-resolver": "^2.1.5",
|
|
36
|
+
"@smithy/core": "^1.3.8",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.4.5",
|
|
38
|
+
"@smithy/hash-node": "^2.1.4",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.1.4",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.1.4",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.4.6",
|
|
42
|
+
"@smithy/middleware-retry": "^2.1.7",
|
|
43
|
+
"@smithy/middleware-serde": "^2.2.1",
|
|
44
|
+
"@smithy/middleware-stack": "^2.1.4",
|
|
45
|
+
"@smithy/node-config-provider": "^2.2.5",
|
|
46
|
+
"@smithy/node-http-handler": "^2.4.3",
|
|
47
|
+
"@smithy/protocol-http": "^3.2.2",
|
|
48
|
+
"@smithy/smithy-client": "^2.4.5",
|
|
49
|
+
"@smithy/types": "^2.11.0",
|
|
50
|
+
"@smithy/url-parser": "^2.1.4",
|
|
51
|
+
"@smithy/util-base64": "^2.2.1",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.1.1",
|
|
53
|
-
"@smithy/util-body-length-node": "^2.2.
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.1.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.2.
|
|
56
|
-
"@smithy/util-endpoints": "^1.1.
|
|
57
|
-
"@smithy/util-middleware": "^2.1.
|
|
58
|
-
"@smithy/util-retry": "^2.1.
|
|
59
|
-
"@smithy/util-utf8": "^2.
|
|
53
|
+
"@smithy/util-body-length-node": "^2.2.2",
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.1.7",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.2.7",
|
|
56
|
+
"@smithy/util-endpoints": "^1.1.5",
|
|
57
|
+
"@smithy/util-middleware": "^2.1.4",
|
|
58
|
+
"@smithy/util-retry": "^2.1.4",
|
|
59
|
+
"@smithy/util-utf8": "^2.2.0",
|
|
60
60
|
"tslib": "^2.5.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|