@aws-sdk/client-ecr-public 3.245.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.
- package/README.md +6 -6
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +28 -15
- package/dist-cjs/protocols/Aws_json1_1.js +65 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +24 -12
- package/dist-es/protocols/Aws_json1_1.js +66 -1
- package/dist-types/ECRPUBLIC.d.ts +38 -36
- package/dist-types/ECRPUBLICClient.d.ts +6 -6
- package/dist-types/commands/BatchCheckLayerAvailabilityCommand.d.ts +3 -3
- package/dist-types/commands/BatchDeleteImageCommand.d.ts +5 -4
- package/dist-types/commands/CompleteLayerUploadCommand.d.ts +3 -3
- package/dist-types/commands/DeleteRepositoryCommand.d.ts +2 -2
- package/dist-types/commands/DeleteRepositoryPolicyCommand.d.ts +1 -1
- package/dist-types/commands/DescribeImagesCommand.d.ts +4 -3
- package/dist-types/commands/DescribeRepositoriesCommand.d.ts +1 -1
- package/dist-types/commands/GetAuthorizationTokenCommand.d.ts +1 -1
- package/dist-types/commands/InitiateLayerUploadCommand.d.ts +3 -3
- package/dist-types/commands/PutImageCommand.d.ts +3 -3
- package/dist-types/commands/PutRegistryCatalogDataCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UploadLayerPartCommand.d.ts +2 -2
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +245 -230
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +17 -7
- package/package.json +4 -4
|
@@ -27,7 +27,7 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
27
27
|
defaultSigningName: string;
|
|
28
28
|
};
|
|
29
29
|
export interface EndpointParameters extends __EndpointParameters {
|
|
30
|
-
Region
|
|
30
|
+
Region: string;
|
|
31
31
|
UseDualStack?: boolean;
|
|
32
32
|
UseFIPS?: boolean;
|
|
33
33
|
Endpoint?: string;
|
|
@@ -58,6 +58,13 @@ export declare class ServerException extends __BaseException {
|
|
|
58
58
|
readonly $fault: "server";
|
|
59
59
|
constructor(opts: __ExceptionOptionType<ServerException, __BaseException>);
|
|
60
60
|
}
|
|
61
|
+
export declare class UnsupportedCommandException extends __BaseException {
|
|
62
|
+
readonly name: "UnsupportedCommandException";
|
|
63
|
+
readonly $fault: "client";
|
|
64
|
+
constructor(
|
|
65
|
+
opts: __ExceptionOptionType<UnsupportedCommandException, __BaseException>
|
|
66
|
+
);
|
|
67
|
+
}
|
|
61
68
|
export interface ImageIdentifier {
|
|
62
69
|
imageDigest?: string;
|
|
63
70
|
imageTag?: string;
|
|
@@ -125,13 +132,6 @@ export declare class LayerPartTooSmallException extends __BaseException {
|
|
|
125
132
|
opts: __ExceptionOptionType<LayerPartTooSmallException, __BaseException>
|
|
126
133
|
);
|
|
127
134
|
}
|
|
128
|
-
export declare class UnsupportedCommandException extends __BaseException {
|
|
129
|
-
readonly name: "UnsupportedCommandException";
|
|
130
|
-
readonly $fault: "client";
|
|
131
|
-
constructor(
|
|
132
|
-
opts: __ExceptionOptionType<UnsupportedCommandException, __BaseException>
|
|
133
|
-
);
|
|
134
|
-
}
|
|
135
135
|
export declare class UploadNotFoundException extends __BaseException {
|
|
136
136
|
readonly name: "UploadNotFoundException";
|
|
137
137
|
readonly $fault: "client";
|
|
@@ -345,6 +345,16 @@ export interface GetRepositoryCatalogDataRequest {
|
|
|
345
345
|
export interface GetRepositoryCatalogDataResponse {
|
|
346
346
|
catalogData?: RepositoryCatalogData;
|
|
347
347
|
}
|
|
348
|
+
export declare class RepositoryCatalogDataNotFoundException extends __BaseException {
|
|
349
|
+
readonly name: "RepositoryCatalogDataNotFoundException";
|
|
350
|
+
readonly $fault: "client";
|
|
351
|
+
constructor(
|
|
352
|
+
opts: __ExceptionOptionType<
|
|
353
|
+
RepositoryCatalogDataNotFoundException,
|
|
354
|
+
__BaseException
|
|
355
|
+
>
|
|
356
|
+
);
|
|
357
|
+
}
|
|
348
358
|
export interface GetRepositoryPolicyRequest {
|
|
349
359
|
registryId?: string;
|
|
350
360
|
repositoryName: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ecr-public",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ecr Public Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
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": "
|
|
14
|
+
"generate:client": "node ../../scripts/generate-clients/single-service --solo ecr-public"
|
|
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.
|
|
23
|
+
"@aws-sdk/client-sts": "3.252.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.234.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
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",
|