@types/ali-oss 6.16.11 → 6.16.12
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.
- ali-oss/README.md +1 -1
- ali-oss/index.d.ts +17 -2
- ali-oss/package.json +4 -3
ali-oss/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for ali-oss (https://github.com/aliyun/os
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ali-oss.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Fri, 14 Nov 2025 19:02:08 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
ali-oss/index.d.ts
CHANGED
|
@@ -693,9 +693,24 @@ declare namespace OSS {
|
|
|
693
693
|
|
|
694
694
|
deleteMulti(names: string[], options?: DeleteMultiOptions): Promise<DeleteMultiResult>;
|
|
695
695
|
|
|
696
|
-
signatureUrl(name: string, options?: SignatureUrlOptions): string;
|
|
696
|
+
signatureUrl(name: string, options?: SignatureUrlOptions, strictObjectNameValidation?: boolean): string;
|
|
697
|
+
|
|
698
|
+
signatureUrlV4(
|
|
699
|
+
method: HTTPMethods,
|
|
700
|
+
expires: number,
|
|
701
|
+
request?: {
|
|
702
|
+
headers?: object | undefined;
|
|
703
|
+
queries?: object | undefined;
|
|
704
|
+
},
|
|
705
|
+
objectName?: string,
|
|
706
|
+
additionalHeaders?: string[],
|
|
707
|
+
): Promise<string>;
|
|
697
708
|
|
|
698
|
-
asyncSignatureUrl(
|
|
709
|
+
asyncSignatureUrl(
|
|
710
|
+
name: string,
|
|
711
|
+
options?: SignatureUrlOptions,
|
|
712
|
+
strictObjectNameValidation?: boolean,
|
|
713
|
+
): Promise<string>;
|
|
699
714
|
|
|
700
715
|
putACL(name: string, acl: ACLType, options?: RequestOptions): Promise<NormalSuccessResponse>;
|
|
701
716
|
|
ali-oss/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/ali-oss",
|
|
3
|
-
"version": "6.16.
|
|
3
|
+
"version": "6.16.12",
|
|
4
4
|
"description": "TypeScript definitions for ali-oss",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ali-oss",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
"scripts": {},
|
|
22
22
|
"dependencies": {},
|
|
23
|
-
"
|
|
24
|
-
"
|
|
23
|
+
"peerDependencies": {},
|
|
24
|
+
"typesPublisherContentHash": "aff73645619c73f2444b32a94d8fcb734e5006e8967cf2ca0c25d5276fdbf74a",
|
|
25
|
+
"typeScriptVersion": "5.2"
|
|
25
26
|
}
|