tencentcloud-sdk-nodejs-aiart 4.1.79 → 4.1.137

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 CHANGED
@@ -62,6 +62,8 @@ npm install tencentcloud-sdk-slim-nodejs --save
62
62
 
63
63
  1. clone 代码到本地:
64
64
  ```
65
+ git clone https://cnb.cool/tencent/cloud/api/sdk/tencentcloud-sdk-nodejs
66
+ # 或者
65
67
  git clone https://github.com/tencentcloud/tencentcloud-sdk-nodejs
66
68
  # 或者
67
69
  git clone https://gitee.com/tencentcloud/tencentcloud-sdk-nodejs
@@ -135,7 +137,7 @@ const CvmClient = tencentcloud.cvm.v20170312.Client
135
137
  // ...
136
138
  ```
137
139
 
138
- 实例化 `Client` 的入参支持 `clientConfig`,数据结构和说明详见 [ClientConfig](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/blob/master/src/common/interface.ts)。
140
+ 实例化 `Client` 的入参支持 `clientConfig`,数据结构和说明详见 [ClientConfig](src/common/interface.ts)。
139
141
 
140
142
  ## Common Client
141
143
 
@@ -143,17 +145,17 @@ const CvmClient = tencentcloud.cvm.v20170312.Client
143
145
 
144
146
  **注意,您必须明确知道您调用的接口所需参数,否则可能会调用失败。**
145
147
 
146
- 详细使用请参阅示例:[使用 Common Client 进行调用](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/tree/master/examples/common)
148
+ 详细使用请参阅示例:[使用 Common Client 进行调用](examples/common)
147
149
 
148
150
  ## 更多示例
149
151
 
150
- 请参考 [examples](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/tree/master/examples) 目录。
152
+ 请参考 [examples](examples) 目录。
151
153
 
152
154
  # 相关配置
153
155
 
154
156
  ## 代理
155
157
 
156
- 如果是有代理的环境下,需要配置代理,请在创建 Client 时传入 [profile.httpProfile.proxy](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/blob/master/src/common/interface.ts#L78) 参数,或设置系统环境变量 `http_proxy` ,否则可能无法正常调用,抛出连接超时的异常。
158
+ 如果是有代理的环境下,需要配置代理,请在创建 Client 时传入 [profile.httpProfile.proxy](src/common/interface.ts#L78) 参数,或设置系统环境变量 `http_proxy` ,否则可能无法正常调用,抛出连接超时的异常。
157
159
 
158
160
  # 凭证管理
159
161
 
@@ -9,9 +9,6 @@ export class Client extends TencentCloudCommon.AbstractClient {
9
9
  async SubmitTrainPortraitModelJob(req, cb) {
10
10
  return this.request("SubmitTrainPortraitModelJob", req, cb);
11
11
  }
12
- async TextToImage(req, cb) {
13
- return this.request("TextToImage", req, cb);
14
- }
15
12
  async SubmitDrawPortraitJob(req, cb) {
16
13
  return this.request("SubmitDrawPortraitJob", req, cb);
17
14
  }
@@ -27,6 +24,9 @@ export class Client extends TencentCloudCommon.AbstractClient {
27
24
  async GenerateAvatar(req, cb) {
28
25
  return this.request("GenerateAvatar", req, cb);
29
26
  }
27
+ async QueryTextToImageJob(req, cb) {
28
+ return this.request("QueryTextToImageJob", req, cb);
29
+ }
30
30
  async SubmitMemeJob(req, cb) {
31
31
  return this.request("SubmitMemeJob", req, cb);
32
32
  }
@@ -54,6 +54,9 @@ export class Client extends TencentCloudCommon.AbstractClient {
54
54
  async SubmitTextToImageProJob(req, cb) {
55
55
  return this.request("SubmitTextToImageProJob", req, cb);
56
56
  }
57
+ async SubmitTextToImageJob(req, cb) {
58
+ return this.request("SubmitTextToImageJob", req, cb);
59
+ }
57
60
  async UploadTrainPortraitImages(req, cb) {
58
61
  return this.request("UploadTrainPortraitImages", req, cb);
59
62
  }
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-aiart",
3
- "version": "4.1.79",
3
+ "version": "4.1.137",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -12,7 +12,8 @@
12
12
  "build:es": "tsc -p tsconfig.es.json",
13
13
  "build:slim": "node ./scripts/build_slim.js",
14
14
  "prettier": "prettier --config prettier.config.js --write 'src/**/*.{tsx,ts,jsx,js,css,json,vue}'",
15
- "clean": "rimraf tencentcloud es"
15
+ "clean": "rimraf tencentcloud es",
16
+ "test:common": "vitest run"
16
17
  },
17
18
  "engines": {
18
19
  "node": ">=10"
@@ -44,9 +45,9 @@
44
45
  "url": "https://github.com/tencentcloud/tencentcloud-sdk-nodejs"
45
46
  },
46
47
  "devDependencies": {
47
- "@types/form-data": "^2.5.0",
48
+ "@types/ini": "^4.1.1",
48
49
  "@types/json-bigint": "^1.0.1",
49
- "@types/node": "^14.0.26",
50
+ "@types/node": "^18.0.0",
50
51
  "@types/node-fetch": "^2.5.7",
51
52
  "@types/uuid": "^9.0.8",
52
53
  "@typescript-eslint/eslint-plugin": "^2.34.0",
@@ -61,6 +62,7 @@
61
62
  "prettier": "^2.3.0",
62
63
  "rimraf": "^5.0.10",
63
64
  "ts-node": "^8.10.2",
64
- "typescript": "^3.9.7"
65
+ "typescript": "^5.9.2",
66
+ "vitest": "2.1.9"
65
67
  }
66
68
  }
@@ -1,5 +1,5 @@
1
1
  import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
2
- import { SubmitDrawPortraitJobResponse, RefineImageRequest, ImageToImageRequest, QueryTrainPortraitModelJobRequest, GenerateAvatarRequest, UploadTrainPortraitImagesResponse, UploadTrainPortraitImagesRequest, QueryMemeJobRequest, QueryGlamPicJobResponse, ImageOutpaintingRequest, ReplaceBackgroundResponse, QueryMemeJobResponse, QueryDrawPortraitJobResponse, QueryTrainPortraitModelJobResponse, ChangeClothesResponse, SubmitGlamPicJobResponse, SubmitMemeJobResponse, SubmitTrainPortraitModelJobRequest, SketchToImageRequest, TextToImageRequest, SubmitTextToImageProJobResponse, SubmitGlamPicJobRequest, QueryTextToImageProJobResponse, TextToImageLiteRequest, TextToImageRapidResponse, ImageInpaintingRemovalResponse, SubmitMemeJobRequest, ReplaceBackgroundRequest, SubmitTextToImageProJobRequest, SubmitTrainPortraitModelJobResponse, QueryDrawPortraitJobRequest, ImageToImageResponse, TextToImageRapidRequest, QueryGlamPicJobRequest, ImageInpaintingRemovalRequest, ChangeClothesRequest, ImageOutpaintingResponse, TextToImageLiteResponse, QueryTextToImageProJobRequest, GenerateAvatarResponse, RefineImageResponse, TextToImageResponse, SketchToImageResponse, SubmitDrawPortraitJobRequest } from "./aiart_models";
2
+ import { SubmitDrawPortraitJobResponse, RefineImageRequest, QueryTextToImageJobResponse, ImageToImageRequest, QueryTrainPortraitModelJobRequest, GenerateAvatarRequest, UploadTrainPortraitImagesResponse, UploadTrainPortraitImagesRequest, QueryMemeJobRequest, QueryGlamPicJobResponse, ImageOutpaintingRequest, ReplaceBackgroundResponse, QueryMemeJobResponse, QueryDrawPortraitJobResponse, QueryTrainPortraitModelJobResponse, ChangeClothesResponse, SubmitTextToImageJobRequest, SubmitGlamPicJobResponse, SubmitMemeJobResponse, SubmitTrainPortraitModelJobRequest, SketchToImageRequest, SubmitTextToImageProJobResponse, SubmitGlamPicJobRequest, QueryTextToImageProJobResponse, TextToImageLiteRequest, TextToImageRapidResponse, SubmitTextToImageJobResponse, ImageInpaintingRemovalResponse, SubmitMemeJobRequest, QueryTextToImageJobRequest, ReplaceBackgroundRequest, SubmitTextToImageProJobRequest, SubmitTrainPortraitModelJobResponse, QueryDrawPortraitJobRequest, ImageToImageResponse, TextToImageRapidRequest, QueryGlamPicJobRequest, ImageInpaintingRemovalRequest, ChangeClothesRequest, ImageOutpaintingResponse, TextToImageLiteResponse, QueryTextToImageProJobRequest, GenerateAvatarResponse, RefineImageResponse, SketchToImageResponse, SubmitDrawPortraitJobRequest } from "./aiart_models";
3
3
  /**
4
4
  * aiart client
5
5
  * @class
@@ -23,14 +23,6 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
23
23
  提交训练写真模型任务按并发计费,无默认并发额度。
24
24
  */
25
25
  SubmitTrainPortraitModelJob(req: SubmitTrainPortraitModelJobRequest, cb?: (error: string, rep: SubmitTrainPortraitModelJobResponse) => void): Promise<SubmitTrainPortraitModelJobResponse>;
26
- /**
27
- * **本接口已迁移至腾讯混元大模型-文生图轻量版,即将停止此处维护,可切换至 [文生图轻量版 API](https://cloud.tencent.com/document/product/1729/108738) 继续使用。**
28
-
29
- 智能文生图接口基于文生图(标准版)模型,将根据输入的文本描述,智能生成与之相关的结果图。
30
-
31
- 智能文生图默认提供3个并发任务数,代表最多能同时处理3个已提交的任务,上一个任务处理完毕后才能开始处理下一个任务。
32
- */
33
- TextToImage(req: TextToImageRequest, cb?: (error: string, rep: TextToImageResponse) => void): Promise<TextToImageResponse>;
34
26
  /**
35
27
  * AI 写真分为上传训练图片、训练写真模型(可选跳过)、生成写真图片3个环节,需要依次调用对应接口。
36
28
  生成图片分为提交任务和查询任务2个接口:
@@ -62,6 +54,11 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
62
54
  百变头像默认提供1个并发任务数,代表最多能同时处理1个已提交的任务,上一个任务处理完毕后才能开始处理下一个任务。
63
55
  */
64
56
  GenerateAvatar(req: GenerateAvatarRequest, cb?: (error: string, rep: GenerateAvatarResponse) => void): Promise<GenerateAvatarResponse>;
57
+ /**
58
+ * 混元生图接口,基于混元大模型,根据输入的文本描述快速生成图片。
59
+ 默认提供0个并发,代表最多能同时处理1个已提交的任务,上一个任务处理完毕后,才能开始处理下一个任务。
60
+ */
61
+ QueryTextToImageJob(req: QueryTextToImageJobRequest, cb?: (error: string, rep: QueryTextToImageJobResponse) => void): Promise<QueryTextToImageJobResponse>;
65
62
  /**
66
63
  * 表情动图生成接口将静态照片制作成动态的表情包。分为提交任务和查询任务2个接口。
67
64
 
@@ -129,6 +126,11 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
129
126
  并发任务数(并发)说明:并发任务数指能同时处理的任务数量。文生图(高级版)默认提供1个并发任务数,代表最多能同时处理1个已提交的任务,上一个任务处理完毕后才能开始处理下一个任务。
130
127
  */
131
128
  SubmitTextToImageProJob(req: SubmitTextToImageProJobRequest, cb?: (error: string, rep: SubmitTextToImageProJobResponse) => void): Promise<SubmitTextToImageProJobResponse>;
129
+ /**
130
+ * 混元生图接口,基于混元大模型,根据输入的文本描述快速生成图片。
131
+ 默认提供1个并发,代表最多能同时处理1个已提交的任务,上一个任务处理完毕后,才能开始处理下一个任务。
132
+ */
133
+ SubmitTextToImageJob(req: SubmitTextToImageJobRequest, cb?: (error: string, rep: SubmitTextToImageJobResponse) => void): Promise<SubmitTextToImageJobResponse>;
132
134
  /**
133
135
  * AI 写真分为上传训练图片、训练写真模型(可选跳过)、生成写真图片3个环节,需要依次调用对应接口。
134
136
  本接口用于上传人像图片并指定对应的写真模型 ID。上传的图片要求是同一个人,建议上传单人、正脸、脸部区域占比较大、脸部清晰无遮挡、无大角度偏转、无夸张表情的图片。
@@ -49,16 +49,6 @@ class Client extends TencentCloudCommon.AbstractClient {
49
49
  async SubmitTrainPortraitModelJob(req, cb) {
50
50
  return this.request("SubmitTrainPortraitModelJob", req, cb);
51
51
  }
52
- /**
53
- * **本接口已迁移至腾讯混元大模型-文生图轻量版,即将停止此处维护,可切换至 [文生图轻量版 API](https://cloud.tencent.com/document/product/1729/108738) 继续使用。**
54
-
55
- 智能文生图接口基于文生图(标准版)模型,将根据输入的文本描述,智能生成与之相关的结果图。
56
-
57
- 智能文生图默认提供3个并发任务数,代表最多能同时处理3个已提交的任务,上一个任务处理完毕后才能开始处理下一个任务。
58
- */
59
- async TextToImage(req, cb) {
60
- return this.request("TextToImage", req, cb);
61
- }
62
52
  /**
63
53
  * AI 写真分为上传训练图片、训练写真模型(可选跳过)、生成写真图片3个环节,需要依次调用对应接口。
64
54
  生成图片分为提交任务和查询任务2个接口:
@@ -100,6 +90,13 @@ class Client extends TencentCloudCommon.AbstractClient {
100
90
  async GenerateAvatar(req, cb) {
101
91
  return this.request("GenerateAvatar", req, cb);
102
92
  }
93
+ /**
94
+ * 混元生图接口,基于混元大模型,根据输入的文本描述快速生成图片。
95
+ 默认提供0个并发,代表最多能同时处理1个已提交的任务,上一个任务处理完毕后,才能开始处理下一个任务。
96
+ */
97
+ async QueryTextToImageJob(req, cb) {
98
+ return this.request("QueryTextToImageJob", req, cb);
99
+ }
103
100
  /**
104
101
  * 表情动图生成接口将静态照片制作成动态的表情包。分为提交任务和查询任务2个接口。
105
102
 
@@ -185,6 +182,13 @@ class Client extends TencentCloudCommon.AbstractClient {
185
182
  async SubmitTextToImageProJob(req, cb) {
186
183
  return this.request("SubmitTextToImageProJob", req, cb);
187
184
  }
185
+ /**
186
+ * 混元生图接口,基于混元大模型,根据输入的文本描述快速生成图片。
187
+ 默认提供1个并发,代表最多能同时处理1个已提交的任务,上一个任务处理完毕后,才能开始处理下一个任务。
188
+ */
189
+ async SubmitTextToImageJob(req, cb) {
190
+ return this.request("SubmitTextToImageJob", req, cb);
191
+ }
188
192
  /**
189
193
  * AI 写真分为上传训练图片、训练写真模型(可选跳过)、生成写真图片3个环节,需要依次调用对应接口。
190
194
  本接口用于上传人像图片并指定对应的写真模型 ID。上传的图片要求是同一个人,建议上传单人、正脸、脸部区域占比较大、脸部清晰无遮挡、无大角度偏转、无夸张表情的图片。
@@ -33,6 +33,49 @@ export interface RefineImageRequest {
33
33
  */
34
34
  RspImgType?: string;
35
35
  }
36
+ /**
37
+ * QueryTextToImageJob返回参数结构体
38
+ */
39
+ export interface QueryTextToImageJobResponse {
40
+ /**
41
+ * 当前任务状态码:
42
+ 1:等待中、2:运行中、4:处理失败、5:处理完成。
43
+ */
44
+ JobStatusCode?: string;
45
+ /**
46
+ * 当前任务状态:排队中、处理中、处理失败或者处理完成。
47
+
48
+ */
49
+ JobStatusMsg?: string;
50
+ /**
51
+ * 任务处理失败错误码。
52
+
53
+ */
54
+ JobErrorCode?: string;
55
+ /**
56
+ * 任务处理失败错误信息。
57
+
58
+ */
59
+ JobErrorMsg?: string;
60
+ /**
61
+ * 生成图 URL 列表,有效期1小时,请及时保存。
62
+
63
+ */
64
+ ResultImage?: Array<string>;
65
+ /**
66
+ * 结果 detail 数组,Success 代表成功。
67
+
68
+ */
69
+ ResultDetails?: Array<string>;
70
+ /**
71
+ * 对应 SubmitTextToImageProJob 接口中 Revise 参数。开启扩写时,返回扩写后的 prompt 文本。 如果关闭扩写,将直接返回原始输入的 prompt。
72
+ */
73
+ RevisedPrompt?: Array<string>;
74
+ /**
75
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
76
+ */
77
+ RequestId?: string;
78
+ }
36
79
  /**
37
80
  * logo参数
38
81
  */
@@ -475,6 +518,48 @@ export interface ChangeClothesResponse {
475
518
  */
476
519
  RequestId?: string;
477
520
  }
521
+ /**
522
+ * SubmitTextToImageJob请求参数结构体
523
+ */
524
+ export interface SubmitTextToImageJobRequest {
525
+ /**
526
+ * 文本描述。
527
+ 算法将根据输入的文本智能生成与之相关的图像。
528
+ 不能为空,推荐使用中文。最多可传1024个 utf-8 字符。
529
+ */
530
+ Prompt: string;
531
+ /**
532
+ * 生成图分辨率,仅支持以下分辨率:
533
+ 640:1408,704:1344,768:1280,832:1216,896:1152,960:1088,1024:1024,1088:960,1152:896,1216:832,1280:768,1344:704,1408:640
534
+ */
535
+ Resolution?: string;
536
+ /**
537
+ * 随机种子,默认随机。
538
+ 不传:随机种子生成。
539
+ 正数:固定种子生成。
540
+ 扩写开启时固定种子不生效,将保持随机。
541
+ */
542
+ Seed?: number;
543
+ /**
544
+ * 为生成结果图添加显式水印标识的开关,默认为1。
545
+ 1:添加。
546
+ 0:不添加。
547
+ 其他数值:默认按1处理。
548
+ 建议您使用显著标识来提示结果图使用了 AI 绘画技术,是 AI 生成的图片。
549
+ */
550
+ LogoAdd?: number;
551
+ /**
552
+ * 标识内容设置。
553
+ 默认在生成结果图右下角添加“图片由 AI 生成”字样,您可根据自身需要替换为其他的标识图片。
554
+ */
555
+ LogoParam?: LogoParam;
556
+ /**
557
+ * 是否开启prompt改写,默认开启,改写预计会增加20s左右耗时。
558
+
559
+ 如果关闭改写,需要调用方自己接改写,否则对生图效果有较大影响,改写方法可以参考:[改写](https://github.com/Tencent-Hunyuan/HunyuanImage-3.0/tree/main/PE)
560
+ */
561
+ Revise?: number;
562
+ }
478
563
  /**
479
564
  * SubmitGlamPicJob返回参数结构体
480
565
  */
@@ -552,52 +637,6 @@ export interface SketchToImageRequest {
552
637
  */
553
638
  RspImgType?: string;
554
639
  }
555
- /**
556
- * TextToImage请求参数结构体
557
- */
558
- export interface TextToImageRequest {
559
- /**
560
- * 文本描述。
561
- 算法将根据输入的文本智能生成与之相关的图像。建议详细描述画面主体、细节、场景等,文本描述越丰富,生成效果越精美。
562
- 不能为空,推荐使用中文。最多可传256个 utf-8 字符。
563
- */
564
- Prompt: string;
565
- /**
566
- * 反向文本描述。
567
- 用于一定程度上从反面引导模型生成的走向,减少生成结果中出现描述内容的可能,但不能完全杜绝。
568
- 推荐使用中文。最多可传256个 utf-8 字符。
569
- */
570
- NegativePrompt?: string;
571
- /**
572
- * 绘画风格。
573
- 请在 [智能文生图风格列表](https://cloud.tencent.com/document/product/1668/86249) 中选择期望的风格,传入风格编号。
574
- 推荐使用且只使用一种风格。不传默认使用201(日系动漫风格)。
575
- */
576
- Styles?: Array<string>;
577
- /**
578
- * 生成图结果的配置,包括输出图片分辨率和尺寸等。
579
- 支持生成以下分辨率的图片:768:768(1:1)、768:1024(3:4)、1024:768(4:3)、1024:1024(1:1)、720:1280(9:16)、1280:720(16:9)、768:1280(3:5)、1280:768(5:3)、1080:1920(9:16)、1920:1080(16:9),不传默认使用768:768。
580
-
581
- */
582
- ResultConfig?: ResultConfig;
583
- /**
584
- * 为生成结果图添加标识的开关,默认为1。
585
- 1:添加标识。
586
- 0:不添加标识。
587
- 其他数值:默认按1处理。
588
- 建议您使用显著标识来提示结果图使用了 AI 绘画技术,是 AI 生成的图片。
589
- */
590
- LogoAdd?: number;
591
- /**
592
- * 标识内容设置。
593
- 默认在生成结果图右下角添加“图片由 AI 生成”字样,您可根据自身需要替换为其他的标识图片。
594
- */
595
- LogoParam?: LogoParam;
596
- /**
597
- * 返回图像方式(base64 或 url) ,二选一,默认为 base64。url 有效期为1小时。
598
- */
599
- RspImgType?: string;
600
- }
601
640
  /**
602
641
  * 人脸框坐标
603
642
  */
@@ -861,6 +900,19 @@ export interface TextToImageRapidResponse {
861
900
  */
862
901
  RequestId?: string;
863
902
  }
903
+ /**
904
+ * SubmitTextToImageJob返回参数结构体
905
+ */
906
+ export interface SubmitTextToImageJobResponse {
907
+ /**
908
+ * 任务 ID。
909
+ */
910
+ JobId?: string;
911
+ /**
912
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
913
+ */
914
+ RequestId?: string;
915
+ }
864
916
  /**
865
917
  * ImageInpaintingRemoval返回参数结构体
866
918
  */
@@ -929,6 +981,15 @@ export interface SubmitMemeJobRequest {
929
981
  */
930
982
  LogoParam?: LogoParam;
931
983
  }
984
+ /**
985
+ * QueryTextToImageJob请求参数结构体
986
+ */
987
+ export interface QueryTextToImageJobRequest {
988
+ /**
989
+ * 任务 ID。
990
+ */
991
+ JobId: string;
992
+ }
932
993
  /**
933
994
  * ReplaceBackground请求参数结构体
934
995
  */
@@ -1345,21 +1406,6 @@ export interface RefineImageResponse {
1345
1406
  */
1346
1407
  RequestId?: string;
1347
1408
  }
1348
- /**
1349
- * TextToImage返回参数结构体
1350
- */
1351
- export interface TextToImageResponse {
1352
- /**
1353
- * 根据入参 RspImgType 填入不同,返回不同的内容。
1354
- 如果传入 base64 则返回生成图 Base64 编码。
1355
- 如果传入 url 则返回的生成图 URL , 有效期1小时,请及时保存。
1356
- */
1357
- ResultImage?: string;
1358
- /**
1359
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1360
- */
1361
- RequestId?: string;
1362
- }
1363
1409
  /**
1364
1410
  * SketchToImage返回参数结构体
1365
1411
  */
@@ -1,4 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.aiart = void 0;
3
4
  var aiart_1 = require("./aiart");
4
5
  Object.defineProperty(exports, "aiart", { enumerable: true, get: function () { return aiart_1.aiart; } });