@aws-sdk/client-quicksight 3.241.0 → 3.252.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.
@@ -12660,7 +12660,7 @@ const serializeAws_restJson1DateTimeDefaultValueList = (input, context) => {
12660
12660
  return input
12661
12661
  .filter((e) => e != null)
12662
12662
  .map((entry) => {
12663
- return Math.round(entry.getTime() / 1000);
12663
+ return Math.round(entry.getTime() / 1000).toString();
12664
12664
  });
12665
12665
  };
12666
12666
  const serializeAws_restJson1DateTimeDefaultValues = (input, context) => {
@@ -12730,7 +12730,7 @@ const serializeAws_restJson1DateTimePickerControlDisplayOptions = (input, contex
12730
12730
  };
12731
12731
  const serializeAws_restJson1DateTimeValueWhenUnsetConfiguration = (input, context) => {
12732
12732
  return {
12733
- ...(input.CustomValue != null && { CustomValue: Math.round(input.CustomValue.getTime() / 1000) }),
12733
+ ...(input.CustomValue != null && { CustomValue: Math.round(input.CustomValue.getTime() / 1000).toString() }),
12734
12734
  ...(input.ValueWhenUnsetOption != null && { ValueWhenUnsetOption: input.ValueWhenUnsetOption }),
12735
12735
  };
12736
12736
  };
@@ -15930,7 +15930,7 @@ const serializeAws_restJson1SensitiveTimestampList = (input, context) => {
15930
15930
  return input
15931
15931
  .filter((e) => e != null)
15932
15932
  .map((entry) => {
15933
- return Math.round(entry.getTime() / 1000);
15933
+ return Math.round(entry.getTime() / 1000).toString();
15934
15934
  });
15935
15935
  };
15936
15936
  const serializeAws_restJson1SeriesItem = (input, context) => {
@@ -16645,14 +16645,14 @@ const serializeAws_restJson1TimeEqualityFilter = (input, context) => {
16645
16645
  ...(input.FilterId != null && { FilterId: input.FilterId }),
16646
16646
  ...(input.ParameterName != null && { ParameterName: input.ParameterName }),
16647
16647
  ...(input.TimeGranularity != null && { TimeGranularity: input.TimeGranularity }),
16648
- ...(input.Value != null && { Value: Math.round(input.Value.getTime() / 1000) }),
16648
+ ...(input.Value != null && { Value: Math.round(input.Value.getTime() / 1000).toString() }),
16649
16649
  };
16650
16650
  };
16651
16651
  const serializeAws_restJson1TimeRangeDrillDownFilter = (input, context) => {
16652
16652
  return {
16653
16653
  ...(input.Column != null && { Column: serializeAws_restJson1ColumnIdentifier(input.Column, context) }),
16654
- ...(input.RangeMaximum != null && { RangeMaximum: Math.round(input.RangeMaximum.getTime() / 1000) }),
16655
- ...(input.RangeMinimum != null && { RangeMinimum: Math.round(input.RangeMinimum.getTime() / 1000) }),
16654
+ ...(input.RangeMaximum != null && { RangeMaximum: Math.round(input.RangeMaximum.getTime() / 1000).toString() }),
16655
+ ...(input.RangeMinimum != null && { RangeMinimum: Math.round(input.RangeMinimum.getTime() / 1000).toString() }),
16656
16656
  ...(input.TimeGranularity != null && { TimeGranularity: input.TimeGranularity }),
16657
16657
  };
16658
16658
  };
@@ -16681,7 +16681,7 @@ const serializeAws_restJson1TimeRangeFilterValue = (input, context) => {
16681
16681
  ...(input.RollingDate != null && {
16682
16682
  RollingDate: serializeAws_restJson1RollingDateConfiguration(input.RollingDate, context),
16683
16683
  }),
16684
- ...(input.StaticValue != null && { StaticValue: Math.round(input.StaticValue.getTime() / 1000) }),
16684
+ ...(input.StaticValue != null && { StaticValue: Math.round(input.StaticValue.getTime() / 1000).toString() }),
16685
16685
  };
16686
16686
  };
16687
16687
  const serializeAws_restJson1TooltipItem = (input, context) => {
@@ -17175,14 +17175,14 @@ const serializeAws_restJson1WaterfallVisual = (input, context) => {
17175
17175
  };
17176
17176
  const serializeAws_restJson1WhatIfPointScenario = (input, context) => {
17177
17177
  return {
17178
- ...(input.Date != null && { Date: Math.round(input.Date.getTime() / 1000) }),
17178
+ ...(input.Date != null && { Date: Math.round(input.Date.getTime() / 1000).toString() }),
17179
17179
  ...(input.Value != null && { Value: (0, smithy_client_1.serializeFloat)(input.Value) }),
17180
17180
  };
17181
17181
  };
17182
17182
  const serializeAws_restJson1WhatIfRangeScenario = (input, context) => {
17183
17183
  return {
17184
- ...(input.EndDate != null && { EndDate: Math.round(input.EndDate.getTime() / 1000) }),
17185
- ...(input.StartDate != null && { StartDate: Math.round(input.StartDate.getTime() / 1000) }),
17184
+ ...(input.EndDate != null && { EndDate: Math.round(input.EndDate.getTime() / 1000).toString() }),
17185
+ ...(input.StartDate != null && { StartDate: Math.round(input.StartDate.getTime() / 1000).toString() }),
17186
17186
  ...(input.Value != null && { Value: (0, smithy_client_1.serializeFloat)(input.Value) }),
17187
17187
  };
17188
17188
  };
@@ -12400,7 +12400,7 @@ const serializeAws_restJson1DateTimeDefaultValueList = (input, context) => {
12400
12400
  return input
12401
12401
  .filter((e) => e != null)
12402
12402
  .map((entry) => {
12403
- return Math.round(entry.getTime() / 1000);
12403
+ return Math.round(entry.getTime() / 1000).toString();
12404
12404
  });
12405
12405
  };
12406
12406
  const serializeAws_restJson1DateTimeDefaultValues = (input, context) => {
@@ -12470,7 +12470,7 @@ const serializeAws_restJson1DateTimePickerControlDisplayOptions = (input, contex
12470
12470
  };
12471
12471
  const serializeAws_restJson1DateTimeValueWhenUnsetConfiguration = (input, context) => {
12472
12472
  return {
12473
- ...(input.CustomValue != null && { CustomValue: Math.round(input.CustomValue.getTime() / 1000) }),
12473
+ ...(input.CustomValue != null && { CustomValue: Math.round(input.CustomValue.getTime() / 1000).toString() }),
12474
12474
  ...(input.ValueWhenUnsetOption != null && { ValueWhenUnsetOption: input.ValueWhenUnsetOption }),
12475
12475
  };
12476
12476
  };
@@ -15670,7 +15670,7 @@ const serializeAws_restJson1SensitiveTimestampList = (input, context) => {
15670
15670
  return input
15671
15671
  .filter((e) => e != null)
15672
15672
  .map((entry) => {
15673
- return Math.round(entry.getTime() / 1000);
15673
+ return Math.round(entry.getTime() / 1000).toString();
15674
15674
  });
15675
15675
  };
15676
15676
  const serializeAws_restJson1SeriesItem = (input, context) => {
@@ -16385,14 +16385,14 @@ const serializeAws_restJson1TimeEqualityFilter = (input, context) => {
16385
16385
  ...(input.FilterId != null && { FilterId: input.FilterId }),
16386
16386
  ...(input.ParameterName != null && { ParameterName: input.ParameterName }),
16387
16387
  ...(input.TimeGranularity != null && { TimeGranularity: input.TimeGranularity }),
16388
- ...(input.Value != null && { Value: Math.round(input.Value.getTime() / 1000) }),
16388
+ ...(input.Value != null && { Value: Math.round(input.Value.getTime() / 1000).toString() }),
16389
16389
  };
16390
16390
  };
16391
16391
  const serializeAws_restJson1TimeRangeDrillDownFilter = (input, context) => {
16392
16392
  return {
16393
16393
  ...(input.Column != null && { Column: serializeAws_restJson1ColumnIdentifier(input.Column, context) }),
16394
- ...(input.RangeMaximum != null && { RangeMaximum: Math.round(input.RangeMaximum.getTime() / 1000) }),
16395
- ...(input.RangeMinimum != null && { RangeMinimum: Math.round(input.RangeMinimum.getTime() / 1000) }),
16394
+ ...(input.RangeMaximum != null && { RangeMaximum: Math.round(input.RangeMaximum.getTime() / 1000).toString() }),
16395
+ ...(input.RangeMinimum != null && { RangeMinimum: Math.round(input.RangeMinimum.getTime() / 1000).toString() }),
16396
16396
  ...(input.TimeGranularity != null && { TimeGranularity: input.TimeGranularity }),
16397
16397
  };
16398
16398
  };
@@ -16421,7 +16421,7 @@ const serializeAws_restJson1TimeRangeFilterValue = (input, context) => {
16421
16421
  ...(input.RollingDate != null && {
16422
16422
  RollingDate: serializeAws_restJson1RollingDateConfiguration(input.RollingDate, context),
16423
16423
  }),
16424
- ...(input.StaticValue != null && { StaticValue: Math.round(input.StaticValue.getTime() / 1000) }),
16424
+ ...(input.StaticValue != null && { StaticValue: Math.round(input.StaticValue.getTime() / 1000).toString() }),
16425
16425
  };
16426
16426
  };
16427
16427
  const serializeAws_restJson1TooltipItem = (input, context) => {
@@ -16915,14 +16915,14 @@ const serializeAws_restJson1WaterfallVisual = (input, context) => {
16915
16915
  };
16916
16916
  const serializeAws_restJson1WhatIfPointScenario = (input, context) => {
16917
16917
  return {
16918
- ...(input.Date != null && { Date: Math.round(input.Date.getTime() / 1000) }),
16918
+ ...(input.Date != null && { Date: Math.round(input.Date.getTime() / 1000).toString() }),
16919
16919
  ...(input.Value != null && { Value: __serializeFloat(input.Value) }),
16920
16920
  };
16921
16921
  };
16922
16922
  const serializeAws_restJson1WhatIfRangeScenario = (input, context) => {
16923
16923
  return {
16924
- ...(input.EndDate != null && { EndDate: Math.round(input.EndDate.getTime() / 1000) }),
16925
- ...(input.StartDate != null && { StartDate: Math.round(input.StartDate.getTime() / 1000) }),
16924
+ ...(input.EndDate != null && { EndDate: Math.round(input.EndDate.getTime() / 1000).toString() }),
16925
+ ...(input.StartDate != null && { StartDate: Math.round(input.StartDate.getTime() / 1000).toString() }),
16926
16926
  ...(input.Value != null && { Value: __serializeFloat(input.Value) }),
16927
16927
  };
16928
16928
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-quicksight",
3
3
  "description": "AWS SDK for JavaScript Quicksight Client for Node.js, Browser and React Native",
4
- "version": "3.241.0",
4
+ "version": "3.252.0",
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",
@@ -11,7 +11,7 @@
11
11
  "build:types": "tsc -p tsconfig.types.json",
12
12
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
13
13
  "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
14
- "generate:client": "(cd ../../ && yarn generate-clients -g ./codegen/sdk-codegen/aws-models/quicksight.json --keepFiles)"
14
+ "generate:client": "node ../../scripts/generate-clients/single-service --solo quicksight"
15
15
  },
16
16
  "main": "./dist-cjs/index.js",
17
17
  "types": "./dist-types/index.d.ts",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "2.0.0",
22
22
  "@aws-crypto/sha256-js": "2.0.0",
23
- "@aws-sdk/client-sts": "3.241.0",
23
+ "@aws-sdk/client-sts": "3.252.0",
24
24
  "@aws-sdk/config-resolver": "3.234.0",
25
- "@aws-sdk/credential-provider-node": "3.241.0",
25
+ "@aws-sdk/credential-provider-node": "3.252.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.226.0",
27
27
  "@aws-sdk/hash-node": "3.226.0",
28
28
  "@aws-sdk/invalid-dependency": "3.226.0",
@@ -47,7 +47,7 @@
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
48
  "@aws-sdk/util-defaults-mode-browser": "3.234.0",
49
49
  "@aws-sdk/util-defaults-mode-node": "3.234.0",
50
- "@aws-sdk/util-endpoints": "3.241.0",
50
+ "@aws-sdk/util-endpoints": "3.245.0",
51
51
  "@aws-sdk/util-retry": "3.229.0",
52
52
  "@aws-sdk/util-user-agent-browser": "3.226.0",
53
53
  "@aws-sdk/util-user-agent-node": "3.226.0",