@aws-sdk/client-mediapackage 3.52.0 → 3.54.1

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.
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
+ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { ConfigureLogsCommandInput, ConfigureLogsCommandOutput } from "./commands/ConfigureLogsCommand";
10
10
  import { CreateChannelCommandInput, CreateChannelCommandOutput } from "./commands/CreateChannelCommand";
11
11
  import { CreateHarvestJobCommandInput, CreateHarvestJobCommandOutput } from "./commands/CreateHarvestJobCommand";
@@ -47,7 +47,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
47
47
  * A function that can calculate the length of a request body.
48
48
  * @internal
49
49
  */
50
- bodyLengthChecker?: (body: any) => number | undefined;
50
+ bodyLengthChecker?: __BodyLengthCalculator;
51
51
  /**
52
52
  * A function that converts a stream into an array of bytes.
53
53
  * @internal
@@ -3,3 +3,4 @@ export * from "./MediaPackageClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { MediaPackageServiceException } from "./models/MediaPackageServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from MediaPackage service.
4
+ */
5
+ export declare class MediaPackageServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { MediaPackageServiceException as __BaseException } from "./MediaPackageServiceException";
2
3
  export declare enum __AdTriggersElement {
3
4
  BREAK = "BREAK",
4
5
  DISTRIBUTOR_ADVERTISEMENT = "DISTRIBUTOR_ADVERTISEMENT",
@@ -556,6 +557,7 @@ export declare enum ManifestLayout {
556
557
  }
557
558
  export declare enum Profile {
558
559
  HBBTV_1_5 = "HBBTV_1_5",
560
+ HYBRIDCAST = "HYBRIDCAST",
559
561
  NONE = "NONE"
560
562
  }
561
563
  export declare enum SegmentTemplateFormat {
@@ -998,50 +1000,74 @@ export declare namespace ConfigureLogsResponse {
998
1000
  /**
999
1001
  * The client is not authorized to access the requested resource.
1000
1002
  */
1001
- export interface ForbiddenException extends __SmithyException, $MetadataBearer {
1002
- name: "ForbiddenException";
1003
- $fault: "client";
1003
+ export declare class ForbiddenException extends __BaseException {
1004
+ readonly name: "ForbiddenException";
1005
+ readonly $fault: "client";
1004
1006
  Message?: string;
1007
+ /**
1008
+ * @internal
1009
+ */
1010
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
1005
1011
  }
1006
1012
  /**
1007
1013
  * An unexpected error occurred.
1008
1014
  */
1009
- export interface InternalServerErrorException extends __SmithyException, $MetadataBearer {
1010
- name: "InternalServerErrorException";
1011
- $fault: "server";
1015
+ export declare class InternalServerErrorException extends __BaseException {
1016
+ readonly name: "InternalServerErrorException";
1017
+ readonly $fault: "server";
1012
1018
  Message?: string;
1019
+ /**
1020
+ * @internal
1021
+ */
1022
+ constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
1013
1023
  }
1014
1024
  /**
1015
1025
  * The requested resource does not exist.
1016
1026
  */
1017
- export interface NotFoundException extends __SmithyException, $MetadataBearer {
1018
- name: "NotFoundException";
1019
- $fault: "client";
1027
+ export declare class NotFoundException extends __BaseException {
1028
+ readonly name: "NotFoundException";
1029
+ readonly $fault: "client";
1020
1030
  Message?: string;
1031
+ /**
1032
+ * @internal
1033
+ */
1034
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
1021
1035
  }
1022
1036
  /**
1023
1037
  * An unexpected error occurred.
1024
1038
  */
1025
- export interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
1026
- name: "ServiceUnavailableException";
1027
- $fault: "server";
1039
+ export declare class ServiceUnavailableException extends __BaseException {
1040
+ readonly name: "ServiceUnavailableException";
1041
+ readonly $fault: "server";
1028
1042
  Message?: string;
1043
+ /**
1044
+ * @internal
1045
+ */
1046
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
1029
1047
  }
1030
1048
  /**
1031
1049
  * The client has exceeded their resource or throttling limits.
1032
1050
  */
1033
- export interface TooManyRequestsException extends __SmithyException, $MetadataBearer {
1034
- name: "TooManyRequestsException";
1035
- $fault: "client";
1051
+ export declare class TooManyRequestsException extends __BaseException {
1052
+ readonly name: "TooManyRequestsException";
1053
+ readonly $fault: "client";
1036
1054
  Message?: string;
1055
+ /**
1056
+ * @internal
1057
+ */
1058
+ constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
1037
1059
  }
1038
1060
  /**
1039
1061
  * The parameters sent in the request are not valid.
1040
1062
  */
1041
- export interface UnprocessableEntityException extends __SmithyException, $MetadataBearer {
1042
- name: "UnprocessableEntityException";
1043
- $fault: "client";
1063
+ export declare class UnprocessableEntityException extends __BaseException {
1064
+ readonly name: "UnprocessableEntityException";
1065
+ readonly $fault: "client";
1044
1066
  Message?: string;
1067
+ /**
1068
+ * @internal
1069
+ */
1070
+ constructor(opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>);
1045
1071
  }
1046
1072
  /**
1047
1073
  * A new Channel configuration.
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: MediaPackageClientConfig) => {
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: MediaPackageClientConfig) => {
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: MediaPackageClientConfig) => {
8
8
  requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
9
9
  apiVersion: string;
10
10
  urlParser: import("@aws-sdk/types").UrlParser;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  streamCollector: import("@aws-sdk/types").StreamCollector;
13
13
  base64Decoder: import("@aws-sdk/types").Decoder;
14
14
  base64Encoder: import("@aws-sdk/types").Encoder;
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
+ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { ConfigureLogsCommandInput, ConfigureLogsCommandOutput } from "./commands/ConfigureLogsCommand";
10
10
  import { CreateChannelCommandInput, CreateChannelCommandOutput } from "./commands/CreateChannelCommand";
11
11
  import { CreateHarvestJobCommandInput, CreateHarvestJobCommandOutput } from "./commands/CreateHarvestJobCommand";
@@ -35,7 +35,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
35
35
 
36
36
  urlParser?: __UrlParser;
37
37
 
38
- bodyLengthChecker?: (body: any) => number | undefined;
38
+ bodyLengthChecker?: __BodyLengthCalculator;
39
39
 
40
40
  streamCollector?: __StreamCollector;
41
41
 
@@ -3,3 +3,4 @@ export * from "./MediaPackageClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { MediaPackageServiceException } from "./models/MediaPackageServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class MediaPackageServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { MediaPackageServiceException as __BaseException } from "./MediaPackageServiceException";
2
3
  export declare enum __AdTriggersElement {
3
4
  BREAK = "BREAK",
4
5
  DISTRIBUTOR_ADVERTISEMENT = "DISTRIBUTOR_ADVERTISEMENT",
@@ -297,6 +298,7 @@ export declare enum ManifestLayout {
297
298
  }
298
299
  export declare enum Profile {
299
300
  HBBTV_1_5 = "HBBTV_1_5",
301
+ HYBRIDCAST = "HYBRIDCAST",
300
302
  NONE = "NONE"
301
303
  }
302
304
  export declare enum SegmentTemplateFormat {
@@ -520,40 +522,52 @@ export declare namespace ConfigureLogsResponse {
520
522
  const filterSensitiveLog: (obj: ConfigureLogsResponse) => any;
521
523
  }
522
524
 
523
- export interface ForbiddenException extends __SmithyException, $MetadataBearer {
524
- name: "ForbiddenException";
525
- $fault: "client";
525
+ export declare class ForbiddenException extends __BaseException {
526
+ readonly name: "ForbiddenException";
527
+ readonly $fault: "client";
526
528
  Message?: string;
529
+
530
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
527
531
  }
528
532
 
529
- export interface InternalServerErrorException extends __SmithyException, $MetadataBearer {
530
- name: "InternalServerErrorException";
531
- $fault: "server";
533
+ export declare class InternalServerErrorException extends __BaseException {
534
+ readonly name: "InternalServerErrorException";
535
+ readonly $fault: "server";
532
536
  Message?: string;
537
+
538
+ constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
533
539
  }
534
540
 
535
- export interface NotFoundException extends __SmithyException, $MetadataBearer {
536
- name: "NotFoundException";
537
- $fault: "client";
541
+ export declare class NotFoundException extends __BaseException {
542
+ readonly name: "NotFoundException";
543
+ readonly $fault: "client";
538
544
  Message?: string;
545
+
546
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
539
547
  }
540
548
 
541
- export interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
542
- name: "ServiceUnavailableException";
543
- $fault: "server";
549
+ export declare class ServiceUnavailableException extends __BaseException {
550
+ readonly name: "ServiceUnavailableException";
551
+ readonly $fault: "server";
544
552
  Message?: string;
553
+
554
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
545
555
  }
546
556
 
547
- export interface TooManyRequestsException extends __SmithyException, $MetadataBearer {
548
- name: "TooManyRequestsException";
549
- $fault: "client";
557
+ export declare class TooManyRequestsException extends __BaseException {
558
+ readonly name: "TooManyRequestsException";
559
+ readonly $fault: "client";
550
560
  Message?: string;
561
+
562
+ constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
551
563
  }
552
564
 
553
- export interface UnprocessableEntityException extends __SmithyException, $MetadataBearer {
554
- name: "UnprocessableEntityException";
555
- $fault: "client";
565
+ export declare class UnprocessableEntityException extends __BaseException {
566
+ readonly name: "UnprocessableEntityException";
567
+ readonly $fault: "client";
556
568
  Message?: string;
569
+
570
+ constructor(opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>);
557
571
  }
558
572
 
559
573
  export interface CreateChannelRequest {
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: MediaPackageClientConfig) => {
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: MediaPackageClientConfig) => {
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: MediaPackageClientConfig) => {
6
6
  requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
7
  apiVersion: string;
8
8
  urlParser: import("@aws-sdk/types").UrlParser;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  streamCollector: import("@aws-sdk/types").StreamCollector;
11
11
  base64Decoder: import("@aws-sdk/types").Decoder;
12
12
  base64Encoder: import("@aws-sdk/types").Encoder;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-mediapackage",
3
3
  "description": "AWS SDK for JavaScript Mediapackage Client for Node.js, Browser and React Native",
4
- "version": "3.52.0",
4
+ "version": "3.54.1",
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",
@@ -18,34 +18,34 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.52.0",
22
- "@aws-sdk/config-resolver": "3.52.0",
23
- "@aws-sdk/credential-provider-node": "3.52.0",
24
- "@aws-sdk/fetch-http-handler": "3.52.0",
25
- "@aws-sdk/hash-node": "3.52.0",
26
- "@aws-sdk/invalid-dependency": "3.52.0",
27
- "@aws-sdk/middleware-content-length": "3.52.0",
28
- "@aws-sdk/middleware-host-header": "3.52.0",
29
- "@aws-sdk/middleware-logger": "3.52.0",
30
- "@aws-sdk/middleware-retry": "3.52.0",
31
- "@aws-sdk/middleware-serde": "3.52.0",
32
- "@aws-sdk/middleware-signing": "3.52.0",
33
- "@aws-sdk/middleware-stack": "3.52.0",
34
- "@aws-sdk/middleware-user-agent": "3.52.0",
35
- "@aws-sdk/node-config-provider": "3.52.0",
36
- "@aws-sdk/node-http-handler": "3.52.0",
37
- "@aws-sdk/protocol-http": "3.52.0",
38
- "@aws-sdk/smithy-client": "3.52.0",
39
- "@aws-sdk/types": "3.52.0",
40
- "@aws-sdk/url-parser": "3.52.0",
21
+ "@aws-sdk/client-sts": "3.54.1",
22
+ "@aws-sdk/config-resolver": "3.54.1",
23
+ "@aws-sdk/credential-provider-node": "3.54.1",
24
+ "@aws-sdk/fetch-http-handler": "3.54.1",
25
+ "@aws-sdk/hash-node": "3.54.1",
26
+ "@aws-sdk/invalid-dependency": "3.54.1",
27
+ "@aws-sdk/middleware-content-length": "3.54.1",
28
+ "@aws-sdk/middleware-host-header": "3.54.1",
29
+ "@aws-sdk/middleware-logger": "3.54.1",
30
+ "@aws-sdk/middleware-retry": "3.54.1",
31
+ "@aws-sdk/middleware-serde": "3.54.1",
32
+ "@aws-sdk/middleware-signing": "3.54.1",
33
+ "@aws-sdk/middleware-stack": "3.54.1",
34
+ "@aws-sdk/middleware-user-agent": "3.54.1",
35
+ "@aws-sdk/node-config-provider": "3.54.1",
36
+ "@aws-sdk/node-http-handler": "3.54.1",
37
+ "@aws-sdk/protocol-http": "3.54.1",
38
+ "@aws-sdk/smithy-client": "3.54.1",
39
+ "@aws-sdk/types": "3.54.1",
40
+ "@aws-sdk/url-parser": "3.54.1",
41
41
  "@aws-sdk/util-base64-browser": "3.52.0",
42
42
  "@aws-sdk/util-base64-node": "3.52.0",
43
- "@aws-sdk/util-body-length-browser": "3.52.0",
44
- "@aws-sdk/util-body-length-node": "3.52.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.52.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.52.0",
47
- "@aws-sdk/util-user-agent-browser": "3.52.0",
48
- "@aws-sdk/util-user-agent-node": "3.52.0",
43
+ "@aws-sdk/util-body-length-browser": "3.54.0",
44
+ "@aws-sdk/util-body-length-node": "3.54.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.54.1",
46
+ "@aws-sdk/util-defaults-mode-node": "3.54.1",
47
+ "@aws-sdk/util-user-agent-browser": "3.54.1",
48
+ "@aws-sdk/util-user-agent-node": "3.54.1",
49
49
  "@aws-sdk/util-utf8-browser": "3.52.0",
50
50
  "@aws-sdk/util-utf8-node": "3.52.0",
51
51
  "tslib": "^2.3.0"