@alicloud/websitebuild20250429 2.23.5 → 2.23.7

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.
Files changed (51) hide show
  1. package/dist/client.d.ts +23 -2
  2. package/dist/client.js +56 -2
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/CreateAistaffChatResponseBody.d.ts +1 -1
  5. package/dist/models/CreateAppLlmApiKeyForPartnerRequest.d.ts +29 -0
  6. package/dist/models/CreateAppLlmApiKeyForPartnerRequest.js +67 -0
  7. package/dist/models/CreateAppLlmApiKeyForPartnerRequest.js.map +1 -0
  8. package/dist/models/CreateAppLlmApiKeyForPartnerResponse.d.ts +19 -0
  9. package/dist/models/CreateAppLlmApiKeyForPartnerResponse.js +69 -0
  10. package/dist/models/CreateAppLlmApiKeyForPartnerResponse.js.map +1 -0
  11. package/dist/models/CreateAppLlmApiKeyForPartnerResponseBody.d.ts +76 -0
  12. package/dist/models/CreateAppLlmApiKeyForPartnerResponseBody.js +103 -0
  13. package/dist/models/CreateAppLlmApiKeyForPartnerResponseBody.js.map +1 -0
  14. package/dist/models/GetAistaffPreviewUrlResponseBody.d.ts +1 -1
  15. package/dist/models/GetAppCodeWorkspaceDetailResponseBody.d.ts +1 -1
  16. package/dist/models/GetAppInstanceForAdminRequest.d.ts +11 -0
  17. package/dist/models/GetAppInstanceForAdminRequest.js.map +1 -1
  18. package/dist/models/GetAppInstanceForAdminResponseBody.d.ts +43 -1
  19. package/dist/models/GetAppInstanceForAdminResponseBody.js.map +1 -1
  20. package/dist/models/GetAppSupabaseSecretsResponseBody.d.ts +1 -1
  21. package/dist/models/ListAppChatMessagesResponseBody.d.ts +1 -1
  22. package/dist/models/ListAppPublishHistoryResponseBody.d.ts +1 -1
  23. package/dist/models/ListIsvPaymentPluginConfigsResponseBody.d.ts +1 -1
  24. package/dist/models/RollbackAppCodeSnapshotResponseBody.d.ts +1 -1
  25. package/dist/models/UpdateAppFileResponseBody.d.ts +1 -1
  26. package/dist/models/UpdateAppSeoStatusRequest.d.ts +9 -0
  27. package/dist/models/UpdateAppSeoStatusRequest.js.map +1 -1
  28. package/dist/models/UpdateAppSeoStatusResponseBody.d.ts +38 -2
  29. package/dist/models/UpdateAppSeoStatusResponseBody.js.map +1 -1
  30. package/dist/models/model.d.ts +4 -0
  31. package/dist/models/model.js +20 -12
  32. package/dist/models/model.js.map +1 -1
  33. package/package.json +1 -1
  34. package/src/client.ts +62 -2
  35. package/src/models/CreateAistaffChatResponseBody.ts +1 -1
  36. package/src/models/CreateAppLlmApiKeyForPartnerRequest.ts +51 -0
  37. package/src/models/CreateAppLlmApiKeyForPartnerResponse.ts +40 -0
  38. package/src/models/CreateAppLlmApiKeyForPartnerResponseBody.ts +125 -0
  39. package/src/models/GetAistaffPreviewUrlResponseBody.ts +1 -1
  40. package/src/models/GetAppCodeWorkspaceDetailResponseBody.ts +1 -1
  41. package/src/models/GetAppInstanceForAdminRequest.ts +11 -0
  42. package/src/models/GetAppInstanceForAdminResponseBody.ts +43 -1
  43. package/src/models/GetAppSupabaseSecretsResponseBody.ts +1 -1
  44. package/src/models/ListAppChatMessagesResponseBody.ts +1 -1
  45. package/src/models/ListAppPublishHistoryResponseBody.ts +1 -1
  46. package/src/models/ListIsvPaymentPluginConfigsResponseBody.ts +1 -1
  47. package/src/models/RollbackAppCodeSnapshotResponseBody.ts +1 -1
  48. package/src/models/UpdateAppFileResponseBody.ts +1 -1
  49. package/src/models/UpdateAppSeoStatusRequest.ts +9 -0
  50. package/src/models/UpdateAppSeoStatusResponseBody.ts +38 -2
  51. package/src/models/model.ts +4 -0
@@ -0,0 +1,125 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class CreateAppLlmApiKeyForPartnerResponseBodyModule extends $dara.Model {
6
+ /**
7
+ * @example
8
+ * xxxx-xxxxxx
9
+ */
10
+ encryptedApiKey?: string;
11
+ static names(): { [key: string]: string } {
12
+ return {
13
+ encryptedApiKey: 'EncryptedApiKey',
14
+ };
15
+ }
16
+
17
+ static types(): { [key: string]: any } {
18
+ return {
19
+ encryptedApiKey: 'string',
20
+ };
21
+ }
22
+
23
+ validate() {
24
+ super.validate();
25
+ }
26
+
27
+ constructor(map?: { [key: string]: any }) {
28
+ super(map);
29
+ }
30
+ }
31
+
32
+ export class CreateAppLlmApiKeyForPartnerResponseBody extends $dara.Model {
33
+ /**
34
+ * @example
35
+ * {}
36
+ */
37
+ accessDeniedDetail?: string;
38
+ /**
39
+ * @example
40
+ * False
41
+ */
42
+ allowRetry?: boolean;
43
+ /**
44
+ * @example
45
+ * watermark
46
+ */
47
+ appName?: string;
48
+ /**
49
+ * @example
50
+ * ERROR-oo1
51
+ */
52
+ dynamicCode?: string;
53
+ /**
54
+ * @example
55
+ * SYSTEM.ERROR
56
+ */
57
+ dynamicMessage?: string;
58
+ errorArgs?: any[];
59
+ module?: CreateAppLlmApiKeyForPartnerResponseBodyModule;
60
+ /**
61
+ * @remarks
62
+ * Id of the request
63
+ *
64
+ * @example
65
+ * 6C6B99AC-39EC-5350-874C-204128C905E6
66
+ */
67
+ requestId?: string;
68
+ /**
69
+ * @example
70
+ * SYSTEM.EROR
71
+ */
72
+ rootErrorCode?: string;
73
+ rootErrorMsg?: string;
74
+ /**
75
+ * @example
76
+ * True
77
+ */
78
+ synchro?: boolean;
79
+ static names(): { [key: string]: string } {
80
+ return {
81
+ accessDeniedDetail: 'AccessDeniedDetail',
82
+ allowRetry: 'AllowRetry',
83
+ appName: 'AppName',
84
+ dynamicCode: 'DynamicCode',
85
+ dynamicMessage: 'DynamicMessage',
86
+ errorArgs: 'ErrorArgs',
87
+ module: 'Module',
88
+ requestId: 'RequestId',
89
+ rootErrorCode: 'RootErrorCode',
90
+ rootErrorMsg: 'RootErrorMsg',
91
+ synchro: 'Synchro',
92
+ };
93
+ }
94
+
95
+ static types(): { [key: string]: any } {
96
+ return {
97
+ accessDeniedDetail: 'string',
98
+ allowRetry: 'boolean',
99
+ appName: 'string',
100
+ dynamicCode: 'string',
101
+ dynamicMessage: 'string',
102
+ errorArgs: { 'type': 'array', 'itemType': 'any' },
103
+ module: CreateAppLlmApiKeyForPartnerResponseBodyModule,
104
+ requestId: 'string',
105
+ rootErrorCode: 'string',
106
+ rootErrorMsg: 'string',
107
+ synchro: 'boolean',
108
+ };
109
+ }
110
+
111
+ validate() {
112
+ if(Array.isArray(this.errorArgs)) {
113
+ $dara.Model.validateArray(this.errorArgs);
114
+ }
115
+ if(this.module && typeof (this.module as any).validate === 'function') {
116
+ (this.module as any).validate();
117
+ }
118
+ super.validate();
119
+ }
120
+
121
+ constructor(map?: { [key: string]: any }) {
122
+ super(map);
123
+ }
124
+ }
125
+
@@ -51,7 +51,7 @@ export class GetAIStaffPreviewUrlResponseBody extends $dara.Model {
51
51
  dynamicCode?: string;
52
52
  /**
53
53
  * @example
54
- * https://check-result-file-sh.oss-cn-shanghai.aliyuncs.com/u6qw3gxzu3b7sbj/u6qw3gxzu3b7sbj.diff.zip?Expires=1740975709&OSSAccessKeyId=LTAI5tKUErVCETM4ev9SELNb&Signature=FP7dDnkrLlOZHmRRORVqbLOtv9c%3D
54
+ * abc
55
55
  */
56
56
  dynamicMessage?: string;
57
57
  errorArgs?: any[];
@@ -132,7 +132,7 @@ export class GetAppCodeWorkspaceDetailResponseBody extends $dara.Model {
132
132
  dynamicCode?: string;
133
133
  /**
134
134
  * @example
135
- * https://check-result-file-sh.oss-cn-shanghai.aliyuncs.com/u6qw3gxzu3b7sbj/u6qw3gxzu3b7sbj.diff.zip?Expires=1740975709&OSSAccessKeyId=LTAI5tKUErVCETM4ev9SELNb&Signature=FP7dDnkrLlOZHmRRORVqbLOtv9c%3D
135
+ * abc
136
136
  */
137
137
  dynamicMessage?: string;
138
138
  errorArgs?: any[];
@@ -4,11 +4,22 @@ import * as $dara from '@darabonba/typescript';
4
4
 
5
5
  export class GetAppInstanceForAdminRequest extends $dara.Model {
6
6
  /**
7
+ * @remarks
8
+ * The ID of the delivery receipt. The delivery receipt ID is the value of the BizId parameter that is returned when you call the SendSms or SendBatchSms operation.
9
+ *
7
10
  * @example
8
11
  * WS20250801154628000001
9
12
  */
10
13
  bizId?: string;
11
14
  /**
15
+ * @remarks
16
+ * The domain name.
17
+ *
18
+ * >
19
+ * * Wildcard domain names are supported. You can use the wildcard character asterisk (\\*) to specify a wildcard domain name.
20
+ *
21
+ * For example, you can enter \\*.baidu.com to specify the domain name baidu.com.
22
+ *
12
23
  * @example
13
24
  * yjdw.bpu.edu.cn-waf
14
25
  */
@@ -5,32 +5,61 @@ import { AppInstanceAggregate } from "./AppInstanceAggregate";
5
5
 
6
6
  export class GetAppInstanceForAdminResponseBody extends $dara.Model {
7
7
  /**
8
+ * @remarks
9
+ * Detailed reason for access denial.
10
+ *
8
11
  * @example
9
12
  * {}
10
13
  */
11
14
  accessDeniedDetail?: string;
12
15
  /**
16
+ * @remarks
17
+ * Whether retry is allowed
18
+ *
13
19
  * @example
14
20
  * False
15
21
  */
16
22
  allowRetry?: boolean;
17
23
  /**
24
+ * @remarks
25
+ * The name of the application. The name must be 4 to 26 characters in length. The name can contain letters, digits, and underscores (_), and must start with a letter.
26
+ *
18
27
  * @example
19
28
  * or
20
29
  */
21
30
  appName?: string;
22
31
  /**
32
+ * @remarks
33
+ * Dynamic error code.
34
+ *
23
35
  * @example
24
36
  * ERROR-oo1
25
37
  */
26
38
  dynamicCode?: string;
27
39
  /**
40
+ * @remarks
41
+ * Dynamic error message, used to replace `%s` in the error message of the returned parameter **ErrMessage**.
42
+ * > If **ErrMessage** returns **The Value of Input Parameter %s is not valid**, and **DynamicMessage** returns **DtsJobId**, it means that the input request parameter **DtsJobId** is invalid.
43
+ *
28
44
  * @example
29
- * https://check-result-file-sh.oss-cn-shanghai.aliyuncs.com/u6qw3gxzu3b7sbj/u6qw3gxzu3b7sbj.diff.zip?Expires=1740975709&OSSAccessKeyId=LTAI5tKUErVCETM4ev9SELNb&Signature=FP7dDnkrLlOZHmRRORVqbLOtv9c%3D
45
+ * abc
30
46
  */
31
47
  dynamicMessage?: string;
48
+ /**
49
+ * @remarks
50
+ * The parameter whose value is invalid.
51
+ */
32
52
  errorArgs?: any[];
33
53
  /**
54
+ * @remarks
55
+ * Data table module.
56
+ *
57
+ * - ABTest: Experiment data table
58
+ *
59
+ * - ExperimentTool: Experiment tool table
60
+ *
61
+ * - DataDiagnosis: Data diagnosis
62
+ *
34
63
  * @example
35
64
  * true
36
65
  */
@@ -44,12 +73,25 @@ export class GetAppInstanceForAdminResponseBody extends $dara.Model {
44
73
  */
45
74
  requestId?: string;
46
75
  /**
76
+ * @remarks
77
+ * Error Code
78
+ *
47
79
  * @example
48
80
  * SYSTEM.ERROR
49
81
  */
50
82
  rootErrorCode?: string;
83
+ /**
84
+ * @remarks
85
+ * Error message
86
+ *
87
+ * @example
88
+ * 系统异常
89
+ */
51
90
  rootErrorMsg?: string;
52
91
  /**
92
+ * @remarks
93
+ * Reserved parameter.
94
+ *
53
95
  * @example
54
96
  * True
55
97
  */
@@ -99,7 +99,7 @@ export class GetAppSupabaseSecretsResponseBody extends $dara.Model {
99
99
  dynamicCode?: string;
100
100
  /**
101
101
  * @example
102
- * https://check-result-file-sh.oss-cn-shanghai.aliyuncs.com/u6qw3gxzu3b7sbj/u6qw3gxzu3b7sbj.diff.zip?Expires=1740975709&OSSAccessKeyId=LTAI5tKUErVCETM4ev9SELNb&Signature=FP7dDnkrLlOZHmRRORVqbLOtv9c%3D
102
+ * abc
103
103
  */
104
104
  dynamicMessage?: string;
105
105
  errorArgs?: any[];
@@ -156,7 +156,7 @@ export class ListAppChatMessagesResponseBody extends $dara.Model {
156
156
  dynamicCode?: string;
157
157
  /**
158
158
  * @example
159
- * https://check-result-file-sh.oss-cn-shanghai.aliyuncs.com/u6qw3gxzu3b7sbj/u6qw3gxzu3b7sbj.diff.zip?Expires=1740975709&OSSAccessKeyId=LTAI5tKUErVCETM4ev9SELNb&Signature=FP7dDnkrLlOZHmRRORVqbLOtv9c%3D
159
+ * abc
160
160
  */
161
161
  dynamicMessage?: string;
162
162
  errorArgs?: any[];
@@ -195,7 +195,7 @@ export class ListAppPublishHistoryResponseBody extends $dara.Model {
195
195
  dynamicCode?: string;
196
196
  /**
197
197
  * @example
198
- * https://check-result-file-sh.oss-cn-shanghai.aliyuncs.com/gl3d6l3817id8p1/gl3d6l3817id8p1.diff.zip?Expires=1750392068&OSSAccessKeyId=LTAI5tKUErVCETM4ev9SELNb&Signature=Bcj3eohy8nmlSQ7AAGdq7JZoLjM%3D
198
+ * abc
199
199
  */
200
200
  dynamicMessage?: string;
201
201
  errorArgs?: any[];
@@ -127,7 +127,7 @@ export class ListIsvPaymentPluginConfigsResponseBody extends $dara.Model {
127
127
  dynamicCode?: string;
128
128
  /**
129
129
  * @example
130
- * https://check-result-file-sh.oss-cn-shanghai.aliyuncs.com/u6qw3gxzu3b7sbj/u6qw3gxzu3b7sbj.diff.zip?Expires=1740975709&OSSAccessKeyId=LTAI5tKUErVCETM4ev9SELNb&Signature=FP7dDnkrLlOZHmRRORVqbLOtv9c%3D
130
+ * abc
131
131
  */
132
132
  dynamicMessage?: string;
133
133
  errorArgs?: any[];
@@ -66,7 +66,7 @@ export class RollbackAppCodeSnapshotResponseBody extends $dara.Model {
66
66
  dynamicCode?: string;
67
67
  /**
68
68
  * @example
69
- * https://check-result-file-sh.oss-cn-shanghai.aliyuncs.com/u6qw3gxzu3b7sbj/u6qw3gxzu3b7sbj.diff.zip?Expires=1740975709&OSSAccessKeyId=LTAI5tKUErVCETM4ev9SELNb&Signature=FP7dDnkrLlOZHmRRORVqbLOtv9c%3D
69
+ * abc
70
70
  */
71
71
  dynamicMessage?: string;
72
72
  errorArgs?: any[];
@@ -25,7 +25,7 @@ export class UpdateAppFileResponseBody extends $dara.Model {
25
25
  dynamicCode?: string;
26
26
  /**
27
27
  * @example
28
- * https://check-result-file-sh.oss-cn-shanghai.aliyuncs.com/u6qw3gxzu3b7sbj/u6qw3gxzu3b7sbj.diff.zip?Expires=1740975709&OSSAccessKeyId=LTAI5tKUErVCETM4ev9SELNb&Signature=FP7dDnkrLlOZHmRRORVqbLOtv9c%3D
28
+ * abc
29
29
  */
30
30
  dynamicMessage?: string;
31
31
  errorArgs?: any[];
@@ -4,16 +4,25 @@ import * as $dara from '@darabonba/typescript';
4
4
 
5
5
  export class UpdateAppSeoStatusRequest extends $dara.Model {
6
6
  /**
7
+ * @remarks
8
+ * Business ID
9
+ *
7
10
  * @example
8
11
  * WS20250801154628000001
9
12
  */
10
13
  bizId?: string;
11
14
  /**
15
+ * @remarks
16
+ * Domain Name
17
+ *
12
18
  * @example
13
19
  * yjdw.bpu.edu.cn-waf
14
20
  */
15
21
  domain?: string;
16
22
  /**
23
+ * @remarks
24
+ * Search Engine Type
25
+ *
17
26
  * @example
18
27
  * type
19
28
  */
@@ -4,51 +4,87 @@ import * as $dara from '@darabonba/typescript';
4
4
 
5
5
  export class UpdateAppSeoStatusResponseBody extends $dara.Model {
6
6
  /**
7
+ * @remarks
8
+ * Detailed reason for access denial.
9
+ *
7
10
  * @example
8
11
  * {}
9
12
  */
10
13
  accessDeniedDetail?: string;
11
14
  /**
15
+ * @remarks
16
+ * Whether retry is allowed
17
+ *
12
18
  * @example
13
19
  * False
14
20
  */
15
21
  allowRetry?: boolean;
16
22
  /**
23
+ * @remarks
24
+ * Application name
25
+ *
17
26
  * @example
18
27
  * spring-cloud-b
19
28
  */
20
29
  appName?: string;
21
30
  /**
31
+ * @remarks
32
+ * Dynamic error code.
33
+ *
22
34
  * @example
23
35
  * ERROR-oo1
24
36
  */
25
37
  dynamicCode?: string;
26
38
  /**
39
+ * @remarks
40
+ * Dynamic error message, used to replace the `%s` in the **ErrMessage** error message.
41
+ * > If **ErrMessage** returns **The Value of Input Parameter %s is not valid**, and **DynamicMessage** returns **DtsJobId**, it indicates that the input request parameter **DtsJobId** is invalid.
42
+ *
27
43
  * @example
28
- * https://check-result-file-sh.oss-cn-shanghai.aliyuncs.com/u6qw3gxzu3b7sbj/u6qw3gxzu3b7sbj.diff.zip?Expires=1740975709&OSSAccessKeyId=LTAI5tKUErVCETM4ev9SELNb&Signature=FP7dDnkrLlOZHmRRORVqbLOtv9c%3D
44
+ * abc
29
45
  */
30
46
  dynamicMessage?: string;
47
+ /**
48
+ * @remarks
49
+ * Returned error parameters
50
+ */
31
51
  errorArgs?: any[];
32
52
  /**
53
+ * @remarks
54
+ * Response data
55
+ *
33
56
  * @example
34
57
  * true
35
58
  */
36
59
  module?: boolean;
37
60
  /**
38
61
  * @remarks
39
- * Id of the request
62
+ * ID of the request
40
63
  *
41
64
  * @example
42
65
  * 6C6B99AC-39EC-5350-874C-204128C905E6
43
66
  */
44
67
  requestId?: string;
45
68
  /**
69
+ * @remarks
70
+ * Error code
71
+ *
46
72
  * @example
47
73
  * SYSTEM.ERROR
48
74
  */
49
75
  rootErrorCode?: string;
76
+ /**
77
+ * @remarks
78
+ * Exception message
79
+ *
80
+ * @example
81
+ * 系统异常
82
+ */
50
83
  rootErrorMsg?: string;
51
84
  /**
85
+ * @remarks
86
+ * Reserved parameter.
87
+ *
52
88
  * @example
53
89
  * True
54
90
  */
@@ -26,6 +26,7 @@ export { CreateAppAssistantAgentSsoLoginResponseBodyModule } from './CreateAppAs
26
26
  export { CreateAppInstanceRequestTags } from './CreateAppInstanceRequest';
27
27
  export { CreateAppInstanceResponseBodyModule } from './CreateAppInstanceResponseBody';
28
28
  export { CreateAppInstanceTicketResponseBodyModule } from './CreateAppInstanceTicketResponseBody';
29
+ export { CreateAppLlmApiKeyForPartnerResponseBodyModule } from './CreateAppLlmApiKeyForPartnerResponseBody';
29
30
  export { CreateAppTokenServiceResponseBodyModule } from './CreateAppTokenServiceResponseBody';
30
31
  export { CreateMaterialDirectoryResponseBodyModule } from './CreateMaterialDirectoryResponseBody';
31
32
  export { DeleteAppDomainCertificateResponseBodyModule } from './DeleteAppDomainCertificateResponseBody';
@@ -224,6 +225,9 @@ export { CreateAppInstanceResponse } from './CreateAppInstanceResponse';
224
225
  export { CreateAppInstanceTicketRequest } from './CreateAppInstanceTicketRequest';
225
226
  export { CreateAppInstanceTicketResponseBody } from './CreateAppInstanceTicketResponseBody';
226
227
  export { CreateAppInstanceTicketResponse } from './CreateAppInstanceTicketResponse';
228
+ export { CreateAppLlmApiKeyForPartnerRequest } from './CreateAppLlmApiKeyForPartnerRequest';
229
+ export { CreateAppLlmApiKeyForPartnerResponseBody } from './CreateAppLlmApiKeyForPartnerResponseBody';
230
+ export { CreateAppLlmApiKeyForPartnerResponse } from './CreateAppLlmApiKeyForPartnerResponse';
227
231
  export { CreateAppTokenServiceRequest } from './CreateAppTokenServiceRequest';
228
232
  export { CreateAppTokenServiceResponseBody } from './CreateAppTokenServiceResponseBody';
229
233
  export { CreateAppTokenServiceResponse } from './CreateAppTokenServiceResponse';