@aws-sdk/client-rds-data 3.929.0 → 3.930.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-cjs/index.js CHANGED
@@ -343,68 +343,6 @@ let UnsupportedResultException$1 = class UnsupportedResultException extends RDSD
343
343
  Object.setPrototypeOf(this, UnsupportedResultException.prototype);
344
344
  }
345
345
  };
346
- exports.ArrayValue = void 0;
347
- (function (ArrayValue) {
348
- ArrayValue.visit = (value, visitor) => {
349
- if (value.booleanValues !== undefined)
350
- return visitor.booleanValues(value.booleanValues);
351
- if (value.longValues !== undefined)
352
- return visitor.longValues(value.longValues);
353
- if (value.doubleValues !== undefined)
354
- return visitor.doubleValues(value.doubleValues);
355
- if (value.stringValues !== undefined)
356
- return visitor.stringValues(value.stringValues);
357
- if (value.arrayValues !== undefined)
358
- return visitor.arrayValues(value.arrayValues);
359
- return visitor._(value.$unknown[0], value.$unknown[1]);
360
- };
361
- })(exports.ArrayValue || (exports.ArrayValue = {}));
362
- exports.Field = void 0;
363
- (function (Field) {
364
- Field.visit = (value, visitor) => {
365
- if (value.isNull !== undefined)
366
- return visitor.isNull(value.isNull);
367
- if (value.booleanValue !== undefined)
368
- return visitor.booleanValue(value.booleanValue);
369
- if (value.longValue !== undefined)
370
- return visitor.longValue(value.longValue);
371
- if (value.doubleValue !== undefined)
372
- return visitor.doubleValue(value.doubleValue);
373
- if (value.stringValue !== undefined)
374
- return visitor.stringValue(value.stringValue);
375
- if (value.blobValue !== undefined)
376
- return visitor.blobValue(value.blobValue);
377
- if (value.arrayValue !== undefined)
378
- return visitor.arrayValue(value.arrayValue);
379
- return visitor._(value.$unknown[0], value.$unknown[1]);
380
- };
381
- })(exports.Field || (exports.Field = {}));
382
- exports.Value = void 0;
383
- (function (Value) {
384
- Value.visit = (value, visitor) => {
385
- if (value.isNull !== undefined)
386
- return visitor.isNull(value.isNull);
387
- if (value.bitValue !== undefined)
388
- return visitor.bitValue(value.bitValue);
389
- if (value.bigIntValue !== undefined)
390
- return visitor.bigIntValue(value.bigIntValue);
391
- if (value.intValue !== undefined)
392
- return visitor.intValue(value.intValue);
393
- if (value.doubleValue !== undefined)
394
- return visitor.doubleValue(value.doubleValue);
395
- if (value.realValue !== undefined)
396
- return visitor.realValue(value.realValue);
397
- if (value.stringValue !== undefined)
398
- return visitor.stringValue(value.stringValue);
399
- if (value.blobValue !== undefined)
400
- return visitor.blobValue(value.blobValue);
401
- if (value.arrayValues !== undefined)
402
- return visitor.arrayValues(value.arrayValues);
403
- if (value.structValue !== undefined)
404
- return visitor.structValue(value.structValue);
405
- return visitor._(value.$unknown[0], value.$unknown[1]);
406
- };
407
- })(exports.Value || (exports.Value = {}));
408
346
 
409
347
  const _ADE = "AccessDeniedException";
410
348
  const _AOA = "ArrayOfArray";
@@ -225,65 +225,3 @@ export class UnsupportedResultException extends __BaseException {
225
225
  Object.setPrototypeOf(this, UnsupportedResultException.prototype);
226
226
  }
227
227
  }
228
- export var ArrayValue;
229
- (function (ArrayValue) {
230
- ArrayValue.visit = (value, visitor) => {
231
- if (value.booleanValues !== undefined)
232
- return visitor.booleanValues(value.booleanValues);
233
- if (value.longValues !== undefined)
234
- return visitor.longValues(value.longValues);
235
- if (value.doubleValues !== undefined)
236
- return visitor.doubleValues(value.doubleValues);
237
- if (value.stringValues !== undefined)
238
- return visitor.stringValues(value.stringValues);
239
- if (value.arrayValues !== undefined)
240
- return visitor.arrayValues(value.arrayValues);
241
- return visitor._(value.$unknown[0], value.$unknown[1]);
242
- };
243
- })(ArrayValue || (ArrayValue = {}));
244
- export var Field;
245
- (function (Field) {
246
- Field.visit = (value, visitor) => {
247
- if (value.isNull !== undefined)
248
- return visitor.isNull(value.isNull);
249
- if (value.booleanValue !== undefined)
250
- return visitor.booleanValue(value.booleanValue);
251
- if (value.longValue !== undefined)
252
- return visitor.longValue(value.longValue);
253
- if (value.doubleValue !== undefined)
254
- return visitor.doubleValue(value.doubleValue);
255
- if (value.stringValue !== undefined)
256
- return visitor.stringValue(value.stringValue);
257
- if (value.blobValue !== undefined)
258
- return visitor.blobValue(value.blobValue);
259
- if (value.arrayValue !== undefined)
260
- return visitor.arrayValue(value.arrayValue);
261
- return visitor._(value.$unknown[0], value.$unknown[1]);
262
- };
263
- })(Field || (Field = {}));
264
- export var Value;
265
- (function (Value) {
266
- Value.visit = (value, visitor) => {
267
- if (value.isNull !== undefined)
268
- return visitor.isNull(value.isNull);
269
- if (value.bitValue !== undefined)
270
- return visitor.bitValue(value.bitValue);
271
- if (value.bigIntValue !== undefined)
272
- return visitor.bigIntValue(value.bigIntValue);
273
- if (value.intValue !== undefined)
274
- return visitor.intValue(value.intValue);
275
- if (value.doubleValue !== undefined)
276
- return visitor.doubleValue(value.doubleValue);
277
- if (value.realValue !== undefined)
278
- return visitor.realValue(value.realValue);
279
- if (value.stringValue !== undefined)
280
- return visitor.stringValue(value.stringValue);
281
- if (value.blobValue !== undefined)
282
- return visitor.blobValue(value.blobValue);
283
- if (value.arrayValues !== undefined)
284
- return visitor.arrayValues(value.arrayValues);
285
- if (value.structValue !== undefined)
286
- return visitor.structValue(value.structValue);
287
- return visitor._(value.$unknown[0], value.$unknown[1]);
288
- };
289
- })(Value || (Value = {}));
@@ -628,6 +628,10 @@ export declare namespace ArrayValue {
628
628
  arrayValues?: never;
629
629
  $unknown: [string, any];
630
630
  }
631
+ /**
632
+ * @deprecated unused in schema-serde mode.
633
+ *
634
+ */
631
635
  interface Visitor<T> {
632
636
  booleanValues: (value: boolean[]) => T;
633
637
  longValues: (value: number[]) => T;
@@ -636,7 +640,6 @@ export declare namespace ArrayValue {
636
640
  arrayValues: (value: ArrayValue[]) => T;
637
641
  _: (name: string, value: any) => T;
638
642
  }
639
- const visit: <T>(value: ArrayValue, visitor: Visitor<T>) => T;
640
643
  }
641
644
  /**
642
645
  * <p>Contains a value.</p>
@@ -758,6 +761,10 @@ export declare namespace Field {
758
761
  arrayValue?: never;
759
762
  $unknown: [string, any];
760
763
  }
764
+ /**
765
+ * @deprecated unused in schema-serde mode.
766
+ *
767
+ */
761
768
  interface Visitor<T> {
762
769
  isNull: (value: boolean) => T;
763
770
  booleanValue: (value: boolean) => T;
@@ -768,7 +775,6 @@ export declare namespace Field {
768
775
  arrayValue: (value: ArrayValue) => T;
769
776
  _: (name: string, value: any) => T;
770
777
  }
771
- const visit: <T>(value: Field, visitor: Visitor<T>) => T;
772
778
  }
773
779
  /**
774
780
  * <p>A parameter used in a SQL statement.</p>
@@ -1035,6 +1041,10 @@ export declare namespace Value {
1035
1041
  structValue?: never;
1036
1042
  $unknown: [string, any];
1037
1043
  }
1044
+ /**
1045
+ * @deprecated unused in schema-serde mode.
1046
+ *
1047
+ */
1038
1048
  interface Visitor<T> {
1039
1049
  isNull: (value: boolean) => T;
1040
1050
  bitValue: (value: boolean) => T;
@@ -1048,7 +1058,6 @@ export declare namespace Value {
1048
1058
  structValue: (value: StructValue) => T;
1049
1059
  _: (name: string, value: any) => T;
1050
1060
  }
1051
- const visit: <T>(value: Value, visitor: Visitor<T>) => T;
1052
1061
  }
1053
1062
  /**
1054
1063
  * <p>The request parameters represent the input of a request to run a SQL statement against
@@ -266,7 +266,6 @@ export declare namespace ArrayValue {
266
266
  arrayValues: (value: ArrayValue[]) => T;
267
267
  _: (name: string, value: any) => T;
268
268
  }
269
- const visit: <T>(value: ArrayValue, visitor: Visitor<T>) => T;
270
269
  }
271
270
  export type Field =
272
271
  | Field.ArrayValueMember
@@ -368,7 +367,6 @@ export declare namespace Field {
368
367
  arrayValue: (value: ArrayValue) => T;
369
368
  _: (name: string, value: any) => T;
370
369
  }
371
- const visit: <T>(value: Field, visitor: Visitor<T>) => T;
372
370
  }
373
371
  export interface SqlParameter {
374
372
  name?: string | undefined;
@@ -547,7 +545,6 @@ export declare namespace Value {
547
545
  structValue: (value: StructValue) => T;
548
546
  _: (name: string, value: any) => T;
549
547
  }
550
- const visit: <T>(value: Value, visitor: Visitor<T>) => T;
551
548
  }
552
549
  export interface ExecuteStatementRequest {
553
550
  resourceArn: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-rds-data",
3
3
  "description": "AWS SDK for JavaScript Rds Data Client for Node.js, Browser and React Native",
4
- "version": "3.929.0",
4
+ "version": "3.930.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-rds-data",
@@ -20,41 +20,41 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.928.0",
24
- "@aws-sdk/credential-provider-node": "3.929.0",
25
- "@aws-sdk/middleware-host-header": "3.922.0",
26
- "@aws-sdk/middleware-logger": "3.922.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.922.0",
28
- "@aws-sdk/middleware-user-agent": "3.928.0",
29
- "@aws-sdk/region-config-resolver": "3.925.0",
30
- "@aws-sdk/types": "3.922.0",
31
- "@aws-sdk/util-endpoints": "3.922.0",
32
- "@aws-sdk/util-user-agent-browser": "3.922.0",
33
- "@aws-sdk/util-user-agent-node": "3.928.0",
34
- "@smithy/config-resolver": "^4.4.2",
35
- "@smithy/core": "^3.17.2",
36
- "@smithy/fetch-http-handler": "^5.3.5",
37
- "@smithy/hash-node": "^4.2.4",
38
- "@smithy/invalid-dependency": "^4.2.4",
39
- "@smithy/middleware-content-length": "^4.2.4",
40
- "@smithy/middleware-endpoint": "^4.3.6",
41
- "@smithy/middleware-retry": "^4.4.6",
42
- "@smithy/middleware-serde": "^4.2.4",
43
- "@smithy/middleware-stack": "^4.2.4",
44
- "@smithy/node-config-provider": "^4.3.4",
45
- "@smithy/node-http-handler": "^4.4.4",
46
- "@smithy/protocol-http": "^5.3.4",
47
- "@smithy/smithy-client": "^4.9.2",
48
- "@smithy/types": "^4.8.1",
49
- "@smithy/url-parser": "^4.2.4",
23
+ "@aws-sdk/core": "3.930.0",
24
+ "@aws-sdk/credential-provider-node": "3.930.0",
25
+ "@aws-sdk/middleware-host-header": "3.930.0",
26
+ "@aws-sdk/middleware-logger": "3.930.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.930.0",
28
+ "@aws-sdk/middleware-user-agent": "3.930.0",
29
+ "@aws-sdk/region-config-resolver": "3.930.0",
30
+ "@aws-sdk/types": "3.930.0",
31
+ "@aws-sdk/util-endpoints": "3.930.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.930.0",
33
+ "@aws-sdk/util-user-agent-node": "3.930.0",
34
+ "@smithy/config-resolver": "^4.4.3",
35
+ "@smithy/core": "^3.18.2",
36
+ "@smithy/fetch-http-handler": "^5.3.6",
37
+ "@smithy/hash-node": "^4.2.5",
38
+ "@smithy/invalid-dependency": "^4.2.5",
39
+ "@smithy/middleware-content-length": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.9",
41
+ "@smithy/middleware-retry": "^4.4.9",
42
+ "@smithy/middleware-serde": "^4.2.5",
43
+ "@smithy/middleware-stack": "^4.2.5",
44
+ "@smithy/node-config-provider": "^4.3.5",
45
+ "@smithy/node-http-handler": "^4.4.5",
46
+ "@smithy/protocol-http": "^5.3.5",
47
+ "@smithy/smithy-client": "^4.9.5",
48
+ "@smithy/types": "^4.9.0",
49
+ "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.5",
54
- "@smithy/util-defaults-mode-node": "^4.2.8",
55
- "@smithy/util-endpoints": "^3.2.4",
56
- "@smithy/util-middleware": "^4.2.4",
57
- "@smithy/util-retry": "^4.2.4",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.8",
54
+ "@smithy/util-defaults-mode-node": "^4.2.11",
55
+ "@smithy/util-endpoints": "^3.2.5",
56
+ "@smithy/util-middleware": "^4.2.5",
57
+ "@smithy/util-retry": "^4.2.5",
58
58
  "@smithy/util-utf8": "^4.2.0",
59
59
  "tslib": "^2.6.2"
60
60
  },