@hyext/types-ext-sdk-hy 3.17.5 → 3.17.6-beta.2
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/index.d.ts +6 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -4738,6 +4738,7 @@ type UrlInfo = {
|
|
|
4738
4738
|
* @property [sourceName] - 资源名,用于当二级目录名
|
|
4739
4739
|
* @property [encryptUrl] - 要下载的加密资源url
|
|
4740
4740
|
* @property [encryptMd5] - 加密资源md5
|
|
4741
|
+
* @property [tag] - 唯一标记
|
|
4741
4742
|
*/
|
|
4742
4743
|
type BatchRes = {
|
|
4743
4744
|
url: string;
|
|
@@ -4748,6 +4749,7 @@ type BatchRes = {
|
|
|
4748
4749
|
sourceName?: string;
|
|
4749
4750
|
encryptUrl?: string;
|
|
4750
4751
|
encryptMd5?: string;
|
|
4752
|
+
tag?: string;
|
|
4751
4753
|
};
|
|
4752
4754
|
|
|
4753
4755
|
/**
|
|
@@ -4831,11 +4833,13 @@ type FileExtraParams = {
|
|
|
4831
4833
|
* @property url - 资源url
|
|
4832
4834
|
* @property md5 - 资源md5
|
|
4833
4835
|
* @property unzip - 是否自动解压
|
|
4836
|
+
* @property [tag] - 唯一标记
|
|
4834
4837
|
*/
|
|
4835
4838
|
type BatchSharedRes = {
|
|
4836
4839
|
url: string;
|
|
4837
4840
|
md5: string;
|
|
4838
4841
|
unzip: boolean;
|
|
4842
|
+
tag?: string;
|
|
4839
4843
|
};
|
|
4840
4844
|
|
|
4841
4845
|
/**
|
|
@@ -6443,11 +6447,13 @@ namespace pc {
|
|
|
6443
6447
|
* @property url - 要下载资源的url
|
|
6444
6448
|
* @property md5 - 资源的md5
|
|
6445
6449
|
* @property [unzip] - 自动解压
|
|
6450
|
+
* @property [tag] - 唯一标记
|
|
6446
6451
|
*/
|
|
6447
6452
|
type DownloadResParams = {
|
|
6448
6453
|
url: string;
|
|
6449
6454
|
md5: string;
|
|
6450
6455
|
unzip?: boolean;
|
|
6456
|
+
tag?: string;
|
|
6451
6457
|
};
|
|
6452
6458
|
|
|
6453
6459
|
/**
|