@alicloud/websitebuild20250429 2.2.0 → 2.4.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.
Files changed (45) hide show
  1. package/dist/client.d.ts +45 -0
  2. package/dist/client.js +138 -0
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/GetDomainInfoForPartnerRequest.d.ts +37 -0
  5. package/dist/models/GetDomainInfoForPartnerRequest.js +62 -0
  6. package/dist/models/GetDomainInfoForPartnerRequest.js.map +1 -0
  7. package/dist/models/GetDomainInfoForPartnerResponse.d.ts +19 -0
  8. package/dist/models/GetDomainInfoForPartnerResponse.js +69 -0
  9. package/dist/models/GetDomainInfoForPartnerResponse.js.map +1 -0
  10. package/dist/models/GetDomainInfoForPartnerResponseBody.d.ts +72 -0
  11. package/dist/models/GetDomainInfoForPartnerResponseBody.js +112 -0
  12. package/dist/models/GetDomainInfoForPartnerResponseBody.js.map +1 -0
  13. package/dist/models/GetIcpFilingInfoForPartnerRequest.d.ts +23 -0
  14. package/dist/models/GetIcpFilingInfoForPartnerRequest.js +60 -0
  15. package/dist/models/GetIcpFilingInfoForPartnerRequest.js.map +1 -0
  16. package/dist/models/GetIcpFilingInfoForPartnerResponse.d.ts +19 -0
  17. package/dist/models/GetIcpFilingInfoForPartnerResponse.js +69 -0
  18. package/dist/models/GetIcpFilingInfoForPartnerResponse.js.map +1 -0
  19. package/dist/models/GetIcpFilingInfoForPartnerResponseBody.d.ts +37 -0
  20. package/dist/models/GetIcpFilingInfoForPartnerResponseBody.js +86 -0
  21. package/dist/models/GetIcpFilingInfoForPartnerResponseBody.js.map +1 -0
  22. package/dist/models/GetUserTmpIdentityForPartnerRequest.d.ts +34 -0
  23. package/dist/models/GetUserTmpIdentityForPartnerRequest.js +66 -0
  24. package/dist/models/GetUserTmpIdentityForPartnerRequest.js.map +1 -0
  25. package/dist/models/GetUserTmpIdentityForPartnerResponse.d.ts +19 -0
  26. package/dist/models/GetUserTmpIdentityForPartnerResponse.js +69 -0
  27. package/dist/models/GetUserTmpIdentityForPartnerResponse.js.map +1 -0
  28. package/dist/models/GetUserTmpIdentityForPartnerResponseBody.d.ts +83 -0
  29. package/dist/models/GetUserTmpIdentityForPartnerResponseBody.js +118 -0
  30. package/dist/models/GetUserTmpIdentityForPartnerResponseBody.js.map +1 -0
  31. package/dist/models/model.d.ts +14 -0
  32. package/dist/models/model.js +29 -1
  33. package/dist/models/model.js.map +1 -1
  34. package/package.json +1 -1
  35. package/src/client.ts +154 -0
  36. package/src/models/GetDomainInfoForPartnerRequest.ts +54 -0
  37. package/src/models/GetDomainInfoForPartnerResponse.ts +40 -0
  38. package/src/models/GetDomainInfoForPartnerResponseBody.ts +121 -0
  39. package/src/models/GetIcpFilingInfoForPartnerRequest.ts +38 -0
  40. package/src/models/GetIcpFilingInfoForPartnerResponse.ts +40 -0
  41. package/src/models/GetIcpFilingInfoForPartnerResponseBody.ts +69 -0
  42. package/src/models/GetUserTmpIdentityForPartnerRequest.ts +55 -0
  43. package/src/models/GetUserTmpIdentityForPartnerResponse.ts +40 -0
  44. package/src/models/GetUserTmpIdentityForPartnerResponseBody.ts +138 -0
  45. package/src/models/model.ts +14 -0
@@ -0,0 +1,69 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class GetIcpFilingInfoForPartnerResponseBodyData extends $dara.Model {
6
+ icpNumber?: string;
7
+ recorded?: boolean;
8
+ siteRecordNumber?: string;
9
+ static names(): { [key: string]: string } {
10
+ return {
11
+ icpNumber: 'IcpNumber',
12
+ recorded: 'Recorded',
13
+ siteRecordNumber: 'SiteRecordNumber',
14
+ };
15
+ }
16
+
17
+ static types(): { [key: string]: any } {
18
+ return {
19
+ icpNumber: 'string',
20
+ recorded: 'boolean',
21
+ siteRecordNumber: 'string',
22
+ };
23
+ }
24
+
25
+ validate() {
26
+ super.validate();
27
+ }
28
+
29
+ constructor(map?: { [key: string]: any }) {
30
+ super(map);
31
+ }
32
+ }
33
+
34
+ export class GetIcpFilingInfoForPartnerResponseBody extends $dara.Model {
35
+ data?: GetIcpFilingInfoForPartnerResponseBodyData;
36
+ /**
37
+ * @remarks
38
+ * Id of the request
39
+ *
40
+ * @example
41
+ * 6C6B99AC-39EC-5350-874C-204128C905E6
42
+ */
43
+ requestId?: string;
44
+ static names(): { [key: string]: string } {
45
+ return {
46
+ data: 'Data',
47
+ requestId: 'RequestId',
48
+ };
49
+ }
50
+
51
+ static types(): { [key: string]: any } {
52
+ return {
53
+ data: GetIcpFilingInfoForPartnerResponseBodyData,
54
+ requestId: 'string',
55
+ };
56
+ }
57
+
58
+ validate() {
59
+ if(this.data && typeof (this.data as any).validate === 'function') {
60
+ (this.data as any).validate();
61
+ }
62
+ super.validate();
63
+ }
64
+
65
+ constructor(map?: { [key: string]: any }) {
66
+ super(map);
67
+ }
68
+ }
69
+
@@ -0,0 +1,55 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class GetUserTmpIdentityForPartnerRequest extends $dara.Model {
6
+ /**
7
+ * @example
8
+ * BindDomain
9
+ */
10
+ authPurpose?: string;
11
+ /**
12
+ * @example
13
+ * WD20250703155602000001
14
+ */
15
+ bizId?: string;
16
+ extend?: string;
17
+ /**
18
+ * @example
19
+ * AliyunServiceRoleForSasCspm
20
+ */
21
+ serviceLinkedRole?: string;
22
+ /**
23
+ * @example
24
+ * 1231331311
25
+ */
26
+ userId?: string;
27
+ static names(): { [key: string]: string } {
28
+ return {
29
+ authPurpose: 'AuthPurpose',
30
+ bizId: 'BizId',
31
+ extend: 'Extend',
32
+ serviceLinkedRole: 'ServiceLinkedRole',
33
+ userId: 'UserId',
34
+ };
35
+ }
36
+
37
+ static types(): { [key: string]: any } {
38
+ return {
39
+ authPurpose: 'string',
40
+ bizId: 'string',
41
+ extend: 'string',
42
+ serviceLinkedRole: 'string',
43
+ userId: 'string',
44
+ };
45
+ }
46
+
47
+ validate() {
48
+ super.validate();
49
+ }
50
+
51
+ constructor(map?: { [key: string]: any }) {
52
+ super(map);
53
+ }
54
+ }
55
+
@@ -0,0 +1,40 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { GetUserTmpIdentityForPartnerResponseBody } from "./GetUserTmpIdentityForPartnerResponseBody";
4
+
5
+
6
+ export class GetUserTmpIdentityForPartnerResponse extends $dara.Model {
7
+ headers?: { [key: string]: string };
8
+ statusCode?: number;
9
+ body?: GetUserTmpIdentityForPartnerResponseBody;
10
+ static names(): { [key: string]: string } {
11
+ return {
12
+ headers: 'headers',
13
+ statusCode: 'statusCode',
14
+ body: 'body',
15
+ };
16
+ }
17
+
18
+ static types(): { [key: string]: any } {
19
+ return {
20
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
21
+ statusCode: 'number',
22
+ body: GetUserTmpIdentityForPartnerResponseBody,
23
+ };
24
+ }
25
+
26
+ validate() {
27
+ if(this.headers) {
28
+ $dara.Model.validateMap(this.headers);
29
+ }
30
+ if(this.body && typeof (this.body as any).validate === 'function') {
31
+ (this.body as any).validate();
32
+ }
33
+ super.validate();
34
+ }
35
+
36
+ constructor(map?: { [key: string]: any }) {
37
+ super(map);
38
+ }
39
+ }
40
+
@@ -0,0 +1,138 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class GetUserTmpIdentityForPartnerResponseBodyDataCredentials extends $dara.Model {
6
+ /**
7
+ * @example
8
+ * 7t2Rzt37ND7-xxx
9
+ */
10
+ encryptedAccessKeyId?: string;
11
+ /**
12
+ * @example
13
+ * 7t2Rzt37ND7-xxx
14
+ */
15
+ encryptedAccessKeySecret?: string;
16
+ /**
17
+ * @example
18
+ * 7t2Rzt37ND7-xxx
19
+ */
20
+ encryptedSecurityToken?: string;
21
+ /**
22
+ * @example
23
+ * 2025-04-29T14:00:00Z
24
+ */
25
+ expiration?: string;
26
+ static names(): { [key: string]: string } {
27
+ return {
28
+ encryptedAccessKeyId: 'EncryptedAccessKeyId',
29
+ encryptedAccessKeySecret: 'EncryptedAccessKeySecret',
30
+ encryptedSecurityToken: 'EncryptedSecurityToken',
31
+ expiration: 'Expiration',
32
+ };
33
+ }
34
+
35
+ static types(): { [key: string]: any } {
36
+ return {
37
+ encryptedAccessKeyId: 'string',
38
+ encryptedAccessKeySecret: 'string',
39
+ encryptedSecurityToken: 'string',
40
+ expiration: 'string',
41
+ };
42
+ }
43
+
44
+ validate() {
45
+ super.validate();
46
+ }
47
+
48
+ constructor(map?: { [key: string]: any }) {
49
+ super(map);
50
+ }
51
+ }
52
+
53
+ export class GetUserTmpIdentityForPartnerResponseBodyData extends $dara.Model {
54
+ credentials?: GetUserTmpIdentityForPartnerResponseBodyDataCredentials;
55
+ hasCustomRoleAuth?: boolean;
56
+ static names(): { [key: string]: string } {
57
+ return {
58
+ credentials: 'Credentials',
59
+ hasCustomRoleAuth: 'HasCustomRoleAuth',
60
+ };
61
+ }
62
+
63
+ static types(): { [key: string]: any } {
64
+ return {
65
+ credentials: GetUserTmpIdentityForPartnerResponseBodyDataCredentials,
66
+ hasCustomRoleAuth: 'boolean',
67
+ };
68
+ }
69
+
70
+ validate() {
71
+ if(this.credentials && typeof (this.credentials as any).validate === 'function') {
72
+ (this.credentials as any).validate();
73
+ }
74
+ super.validate();
75
+ }
76
+
77
+ constructor(map?: { [key: string]: any }) {
78
+ super(map);
79
+ }
80
+ }
81
+
82
+ export class GetUserTmpIdentityForPartnerResponseBody extends $dara.Model {
83
+ data?: GetUserTmpIdentityForPartnerResponseBodyData;
84
+ /**
85
+ * @example
86
+ * 0
87
+ */
88
+ errorCode?: string;
89
+ /**
90
+ * @example
91
+ * aliuid:1998006665794443 assumeRole not exist,serviceName:realtimelogpush.dcdnservices.aliyuncs.com
92
+ */
93
+ errorMsg?: string;
94
+ /**
95
+ * @remarks
96
+ * Id of the request
97
+ *
98
+ * @example
99
+ * 6C6B99AC-39EC-5350-874C-204128C905E6
100
+ */
101
+ requestId?: string;
102
+ /**
103
+ * @example
104
+ * true
105
+ */
106
+ success?: boolean;
107
+ static names(): { [key: string]: string } {
108
+ return {
109
+ data: 'Data',
110
+ errorCode: 'ErrorCode',
111
+ errorMsg: 'ErrorMsg',
112
+ requestId: 'RequestId',
113
+ success: 'Success',
114
+ };
115
+ }
116
+
117
+ static types(): { [key: string]: any } {
118
+ return {
119
+ data: GetUserTmpIdentityForPartnerResponseBodyData,
120
+ errorCode: 'string',
121
+ errorMsg: 'string',
122
+ requestId: 'string',
123
+ success: 'boolean',
124
+ };
125
+ }
126
+
127
+ validate() {
128
+ if(this.data && typeof (this.data as any).validate === 'function') {
129
+ (this.data as any).validate();
130
+ }
131
+ super.validate();
132
+ }
133
+
134
+ constructor(map?: { [key: string]: any }) {
135
+ super(map);
136
+ }
137
+ }
138
+
@@ -1,4 +1,9 @@
1
1
  export { GetCreateLogoTaskResponseBodyTask } from './GetCreateLogoTaskResponseBody';
2
+ export { GetDomainInfoForPartnerResponseBodyDataOwnership } from './GetDomainInfoForPartnerResponseBody';
3
+ export { GetDomainInfoForPartnerResponseBodyData } from './GetDomainInfoForPartnerResponseBody';
4
+ export { GetIcpFilingInfoForPartnerResponseBodyData } from './GetIcpFilingInfoForPartnerResponseBody';
5
+ export { GetUserTmpIdentityForPartnerResponseBodyDataCredentials } from './GetUserTmpIdentityForPartnerResponseBody';
6
+ export { GetUserTmpIdentityForPartnerResponseBodyData } from './GetUserTmpIdentityForPartnerResponseBody';
2
7
  export { SearchImageResponseBodyImageResponseImageList } from './SearchImageResponseBody';
3
8
  export { SearchImageResponseBodyImageResponse } from './SearchImageResponseBody';
4
9
  export { SyncAppInstanceForPartnerRequestAppInstanceProfile } from './SyncAppInstanceForPartnerRequest';
@@ -11,6 +16,15 @@ export { CreateLogoTaskResponse } from './CreateLogoTaskResponse';
11
16
  export { GetCreateLogoTaskRequest } from './GetCreateLogoTaskRequest';
12
17
  export { GetCreateLogoTaskResponseBody } from './GetCreateLogoTaskResponseBody';
13
18
  export { GetCreateLogoTaskResponse } from './GetCreateLogoTaskResponse';
19
+ export { GetDomainInfoForPartnerRequest } from './GetDomainInfoForPartnerRequest';
20
+ export { GetDomainInfoForPartnerResponseBody } from './GetDomainInfoForPartnerResponseBody';
21
+ export { GetDomainInfoForPartnerResponse } from './GetDomainInfoForPartnerResponse';
22
+ export { GetIcpFilingInfoForPartnerRequest } from './GetIcpFilingInfoForPartnerRequest';
23
+ export { GetIcpFilingInfoForPartnerResponseBody } from './GetIcpFilingInfoForPartnerResponseBody';
24
+ export { GetIcpFilingInfoForPartnerResponse } from './GetIcpFilingInfoForPartnerResponse';
25
+ export { GetUserTmpIdentityForPartnerRequest } from './GetUserTmpIdentityForPartnerRequest';
26
+ export { GetUserTmpIdentityForPartnerResponseBody } from './GetUserTmpIdentityForPartnerResponseBody';
27
+ export { GetUserTmpIdentityForPartnerResponse } from './GetUserTmpIdentityForPartnerResponse';
14
28
  export { OperateAppInstanceForPartnerRequest } from './OperateAppInstanceForPartnerRequest';
15
29
  export { OperateAppInstanceForPartnerResponseBody } from './OperateAppInstanceForPartnerResponseBody';
16
30
  export { OperateAppInstanceForPartnerResponse } from './OperateAppInstanceForPartnerResponse';