@alicloud/websitebuild20250429 2.23.8 → 2.25.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 (61) hide show
  1. package/dist/client.d.ts +60 -0
  2. package/dist/client.js +202 -14
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/GetMiniAppAuthUrlRequest.d.ts +24 -0
  5. package/dist/models/GetMiniAppAuthUrlRequest.js +62 -0
  6. package/dist/models/GetMiniAppAuthUrlRequest.js.map +1 -0
  7. package/dist/models/GetMiniAppAuthUrlResponse.d.ts +19 -0
  8. package/dist/models/GetMiniAppAuthUrlResponse.js +69 -0
  9. package/dist/models/GetMiniAppAuthUrlResponse.js.map +1 -0
  10. package/dist/models/GetMiniAppAuthUrlResponseBody.d.ts +32 -0
  11. package/dist/models/GetMiniAppAuthUrlResponseBody.js +82 -0
  12. package/dist/models/GetMiniAppAuthUrlResponseBody.js.map +1 -0
  13. package/dist/models/GetMiniAppBindingForAdminRequest.d.ts +28 -0
  14. package/dist/models/GetMiniAppBindingForAdminRequest.js +62 -0
  15. package/dist/models/GetMiniAppBindingForAdminRequest.js.map +1 -0
  16. package/dist/models/GetMiniAppBindingForAdminResponse.d.ts +19 -0
  17. package/dist/models/GetMiniAppBindingForAdminResponse.js +69 -0
  18. package/dist/models/GetMiniAppBindingForAdminResponse.js.map +1 -0
  19. package/dist/models/GetMiniAppBindingForAdminResponseBody.d.ts +49 -0
  20. package/dist/models/GetMiniAppBindingForAdminResponseBody.js +86 -0
  21. package/dist/models/GetMiniAppBindingForAdminResponseBody.js.map +1 -0
  22. package/dist/models/GetMiniAppBindingRequest.d.ts +24 -0
  23. package/dist/models/GetMiniAppBindingRequest.js +65 -0
  24. package/dist/models/GetMiniAppBindingRequest.js.map +1 -0
  25. package/dist/models/GetMiniAppBindingResponse.d.ts +19 -0
  26. package/dist/models/GetMiniAppBindingResponse.js +69 -0
  27. package/dist/models/GetMiniAppBindingResponse.js.map +1 -0
  28. package/dist/models/GetMiniAppBindingResponseBody.d.ts +51 -0
  29. package/dist/models/GetMiniAppBindingResponseBody.js +97 -0
  30. package/dist/models/GetMiniAppBindingResponseBody.js.map +1 -0
  31. package/dist/models/GetMiniAppBindingShrinkRequest.d.ts +24 -0
  32. package/dist/models/GetMiniAppBindingShrinkRequest.js +62 -0
  33. package/dist/models/GetMiniAppBindingShrinkRequest.js.map +1 -0
  34. package/dist/models/UpdateMiniAppBindingRequest.d.ts +33 -0
  35. package/dist/models/UpdateMiniAppBindingRequest.js +64 -0
  36. package/dist/models/UpdateMiniAppBindingRequest.js.map +1 -0
  37. package/dist/models/UpdateMiniAppBindingResponse.d.ts +19 -0
  38. package/dist/models/UpdateMiniAppBindingResponse.js +69 -0
  39. package/dist/models/UpdateMiniAppBindingResponse.js.map +1 -0
  40. package/dist/models/UpdateMiniAppBindingResponseBody.d.ts +39 -0
  41. package/dist/models/UpdateMiniAppBindingResponseBody.js +82 -0
  42. package/dist/models/UpdateMiniAppBindingResponseBody.js.map +1 -0
  43. package/dist/models/model.d.ts +17 -0
  44. package/dist/models/model.js +45 -11
  45. package/dist/models/model.js.map +1 -1
  46. package/package.json +1 -1
  47. package/src/client.ts +224 -14
  48. package/src/models/GetMiniAppAuthUrlRequest.ts +41 -0
  49. package/src/models/GetMiniAppAuthUrlResponse.ts +40 -0
  50. package/src/models/GetMiniAppAuthUrlResponseBody.ts +60 -0
  51. package/src/models/GetMiniAppBindingForAdminRequest.ts +45 -0
  52. package/src/models/GetMiniAppBindingForAdminResponse.ts +40 -0
  53. package/src/models/GetMiniAppBindingForAdminResponseBody.ts +81 -0
  54. package/src/models/GetMiniAppBindingRequest.ts +44 -0
  55. package/src/models/GetMiniAppBindingResponse.ts +40 -0
  56. package/src/models/GetMiniAppBindingResponseBody.ts +92 -0
  57. package/src/models/GetMiniAppBindingShrinkRequest.ts +41 -0
  58. package/src/models/UpdateMiniAppBindingRequest.ts +52 -0
  59. package/src/models/UpdateMiniAppBindingResponse.ts +40 -0
  60. package/src/models/UpdateMiniAppBindingResponseBody.ts +67 -0
  61. package/src/models/model.ts +17 -0
@@ -0,0 +1,24 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class GetMiniAppAuthUrlRequest extends $dara.Model {
3
+ /**
4
+ * @example
5
+ * WS20250731233102000001
6
+ */
7
+ bizId?: string;
8
+ /**
9
+ * @example
10
+ * WECHAT
11
+ */
12
+ channel?: string;
13
+ redirectUri?: string;
14
+ static names(): {
15
+ [key: string]: string;
16
+ };
17
+ static types(): {
18
+ [key: string]: any;
19
+ };
20
+ validate(): void;
21
+ constructor(map?: {
22
+ [key: string]: any;
23
+ });
24
+ }
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.GetMiniAppAuthUrlRequest = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class GetMiniAppAuthUrlRequest extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ bizId: 'BizId',
43
+ channel: 'Channel',
44
+ redirectUri: 'RedirectUri',
45
+ };
46
+ }
47
+ static types() {
48
+ return {
49
+ bizId: 'string',
50
+ channel: 'string',
51
+ redirectUri: 'string',
52
+ };
53
+ }
54
+ validate() {
55
+ super.validate();
56
+ }
57
+ constructor(map) {
58
+ super(map);
59
+ }
60
+ }
61
+ exports.GetMiniAppAuthUrlRequest = GetMiniAppAuthUrlRequest;
62
+ //# sourceMappingURL=GetMiniAppAuthUrlRequest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GetMiniAppAuthUrlRequest.js","sourceRoot":"","sources":["../../src/models/GetMiniAppAuthUrlRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,wBAAyB,SAAQ,KAAK,CAAC,KAAK;IAYvD,MAAM,CAAC,KAAK;QACV,OAAO;YACL,KAAK,EAAE,OAAO;YACd,OAAO,EAAE,SAAS;YAClB,WAAW,EAAE,aAAa;SAC3B,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,KAAK,EAAE,QAAQ;YACf,OAAO,EAAE,QAAQ;YACjB,WAAW,EAAE,QAAQ;SACtB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAnCD,4DAmCC"}
@@ -0,0 +1,19 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ import { GetMiniAppAuthUrlResponseBody } from "./GetMiniAppAuthUrlResponseBody";
3
+ export declare class GetMiniAppAuthUrlResponse extends $dara.Model {
4
+ headers?: {
5
+ [key: string]: string;
6
+ };
7
+ statusCode?: number;
8
+ body?: GetMiniAppAuthUrlResponseBody;
9
+ static names(): {
10
+ [key: string]: string;
11
+ };
12
+ static types(): {
13
+ [key: string]: any;
14
+ };
15
+ validate(): void;
16
+ constructor(map?: {
17
+ [key: string]: any;
18
+ });
19
+ }
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.GetMiniAppAuthUrlResponse = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ const GetMiniAppAuthUrlResponseBody_1 = require("./GetMiniAppAuthUrlResponseBody");
40
+ class GetMiniAppAuthUrlResponse extends $dara.Model {
41
+ static names() {
42
+ return {
43
+ headers: 'headers',
44
+ statusCode: 'statusCode',
45
+ body: 'body',
46
+ };
47
+ }
48
+ static types() {
49
+ return {
50
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
51
+ statusCode: 'number',
52
+ body: GetMiniAppAuthUrlResponseBody_1.GetMiniAppAuthUrlResponseBody,
53
+ };
54
+ }
55
+ validate() {
56
+ if (this.headers) {
57
+ $dara.Model.validateMap(this.headers);
58
+ }
59
+ if (this.body && typeof this.body.validate === 'function') {
60
+ this.body.validate();
61
+ }
62
+ super.validate();
63
+ }
64
+ constructor(map) {
65
+ super(map);
66
+ }
67
+ }
68
+ exports.GetMiniAppAuthUrlResponse = GetMiniAppAuthUrlResponse;
69
+ //# sourceMappingURL=GetMiniAppAuthUrlResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GetMiniAppAuthUrlResponse.js","sourceRoot":"","sources":["../../src/models/GetMiniAppAuthUrlResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,mFAAgF;AAGhF,MAAa,yBAA0B,SAAQ,KAAK,CAAC,KAAK;IAIxD,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE;YACtE,UAAU,EAAE,QAAQ;YACpB,IAAI,EAAE,6DAA6B;SACpC,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,OAAO,EAAE,CAAC;YAChB,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,CAAC;QACD,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjCD,8DAiCC"}
@@ -0,0 +1,32 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class GetMiniAppAuthUrlResponseBodyData extends $dara.Model {
3
+ authUrl?: string;
4
+ static names(): {
5
+ [key: string]: string;
6
+ };
7
+ static types(): {
8
+ [key: string]: any;
9
+ };
10
+ validate(): void;
11
+ constructor(map?: {
12
+ [key: string]: any;
13
+ });
14
+ }
15
+ export declare class GetMiniAppAuthUrlResponseBody extends $dara.Model {
16
+ data?: GetMiniAppAuthUrlResponseBodyData;
17
+ /**
18
+ * @example
19
+ * 6C6B99AC-39EC-5350-874C-204128C905E6
20
+ */
21
+ requestId?: string;
22
+ static names(): {
23
+ [key: string]: string;
24
+ };
25
+ static types(): {
26
+ [key: string]: any;
27
+ };
28
+ validate(): void;
29
+ constructor(map?: {
30
+ [key: string]: any;
31
+ });
32
+ }
@@ -0,0 +1,82 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.GetMiniAppAuthUrlResponseBody = exports.GetMiniAppAuthUrlResponseBodyData = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class GetMiniAppAuthUrlResponseBodyData extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ authUrl: 'AuthUrl',
43
+ };
44
+ }
45
+ static types() {
46
+ return {
47
+ authUrl: 'string',
48
+ };
49
+ }
50
+ validate() {
51
+ super.validate();
52
+ }
53
+ constructor(map) {
54
+ super(map);
55
+ }
56
+ }
57
+ exports.GetMiniAppAuthUrlResponseBodyData = GetMiniAppAuthUrlResponseBodyData;
58
+ class GetMiniAppAuthUrlResponseBody extends $dara.Model {
59
+ static names() {
60
+ return {
61
+ data: 'Data',
62
+ requestId: 'RequestId',
63
+ };
64
+ }
65
+ static types() {
66
+ return {
67
+ data: GetMiniAppAuthUrlResponseBodyData,
68
+ requestId: 'string',
69
+ };
70
+ }
71
+ validate() {
72
+ if (this.data && typeof this.data.validate === 'function') {
73
+ this.data.validate();
74
+ }
75
+ super.validate();
76
+ }
77
+ constructor(map) {
78
+ super(map);
79
+ }
80
+ }
81
+ exports.GetMiniAppAuthUrlResponseBody = GetMiniAppAuthUrlResponseBody;
82
+ //# sourceMappingURL=GetMiniAppAuthUrlResponseBody.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GetMiniAppAuthUrlResponseBody.js","sourceRoot":"","sources":["../../src/models/GetMiniAppAuthUrlResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,iCAAkC,SAAQ,KAAK,CAAC,KAAK;IAEhE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;SACnB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,QAAQ;SAClB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AArBD,8EAqBC;AAED,MAAa,6BAA8B,SAAQ,KAAK,CAAC,KAAK;IAO5D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,MAAM;YACZ,SAAS,EAAE,WAAW;SACvB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,iCAAiC;YACvC,SAAS,EAAE,QAAQ;SACpB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA/BD,sEA+BC"}
@@ -0,0 +1,28 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class GetMiniAppBindingForAdminRequest extends $dara.Model {
3
+ /**
4
+ * @example
5
+ * WS20250801152639000005
6
+ */
7
+ bizId?: string;
8
+ /**
9
+ * @example
10
+ * WECHAT
11
+ */
12
+ channel?: string;
13
+ /**
14
+ * @example
15
+ * xxxx
16
+ */
17
+ platformAppid?: string;
18
+ static names(): {
19
+ [key: string]: string;
20
+ };
21
+ static types(): {
22
+ [key: string]: any;
23
+ };
24
+ validate(): void;
25
+ constructor(map?: {
26
+ [key: string]: any;
27
+ });
28
+ }
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.GetMiniAppBindingForAdminRequest = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class GetMiniAppBindingForAdminRequest extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ bizId: 'BizId',
43
+ channel: 'Channel',
44
+ platformAppid: 'PlatformAppid',
45
+ };
46
+ }
47
+ static types() {
48
+ return {
49
+ bizId: 'string',
50
+ channel: 'string',
51
+ platformAppid: 'string',
52
+ };
53
+ }
54
+ validate() {
55
+ super.validate();
56
+ }
57
+ constructor(map) {
58
+ super(map);
59
+ }
60
+ }
61
+ exports.GetMiniAppBindingForAdminRequest = GetMiniAppBindingForAdminRequest;
62
+ //# sourceMappingURL=GetMiniAppBindingForAdminRequest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GetMiniAppBindingForAdminRequest.js","sourceRoot":"","sources":["../../src/models/GetMiniAppBindingForAdminRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,gCAAiC,SAAQ,KAAK,CAAC,KAAK;IAgB/D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,KAAK,EAAE,OAAO;YACd,OAAO,EAAE,SAAS;YAClB,aAAa,EAAE,eAAe;SAC/B,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,KAAK,EAAE,QAAQ;YACf,OAAO,EAAE,QAAQ;YACjB,aAAa,EAAE,QAAQ;SACxB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAvCD,4EAuCC"}
@@ -0,0 +1,19 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ import { GetMiniAppBindingForAdminResponseBody } from "./GetMiniAppBindingForAdminResponseBody";
3
+ export declare class GetMiniAppBindingForAdminResponse extends $dara.Model {
4
+ headers?: {
5
+ [key: string]: string;
6
+ };
7
+ statusCode?: number;
8
+ body?: GetMiniAppBindingForAdminResponseBody;
9
+ static names(): {
10
+ [key: string]: string;
11
+ };
12
+ static types(): {
13
+ [key: string]: any;
14
+ };
15
+ validate(): void;
16
+ constructor(map?: {
17
+ [key: string]: any;
18
+ });
19
+ }
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.GetMiniAppBindingForAdminResponse = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ const GetMiniAppBindingForAdminResponseBody_1 = require("./GetMiniAppBindingForAdminResponseBody");
40
+ class GetMiniAppBindingForAdminResponse extends $dara.Model {
41
+ static names() {
42
+ return {
43
+ headers: 'headers',
44
+ statusCode: 'statusCode',
45
+ body: 'body',
46
+ };
47
+ }
48
+ static types() {
49
+ return {
50
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
51
+ statusCode: 'number',
52
+ body: GetMiniAppBindingForAdminResponseBody_1.GetMiniAppBindingForAdminResponseBody,
53
+ };
54
+ }
55
+ validate() {
56
+ if (this.headers) {
57
+ $dara.Model.validateMap(this.headers);
58
+ }
59
+ if (this.body && typeof this.body.validate === 'function') {
60
+ this.body.validate();
61
+ }
62
+ super.validate();
63
+ }
64
+ constructor(map) {
65
+ super(map);
66
+ }
67
+ }
68
+ exports.GetMiniAppBindingForAdminResponse = GetMiniAppBindingForAdminResponse;
69
+ //# sourceMappingURL=GetMiniAppBindingForAdminResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GetMiniAppBindingForAdminResponse.js","sourceRoot":"","sources":["../../src/models/GetMiniAppBindingForAdminResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,mGAAgG;AAGhG,MAAa,iCAAkC,SAAQ,KAAK,CAAC,KAAK;IAIhE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE;YACtE,UAAU,EAAE,QAAQ;YACpB,IAAI,EAAE,6EAAqC;SAC5C,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,OAAO,EAAE,CAAC;YAChB,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,CAAC;QACD,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjCD,8EAiCC"}
@@ -0,0 +1,49 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class GetMiniAppBindingForAdminResponseBodyData extends $dara.Model {
3
+ /**
4
+ * @example
5
+ * AUTHORIZED
6
+ */
7
+ authStatus?: string;
8
+ /**
9
+ * @example
10
+ * WS20250801004817000002
11
+ */
12
+ bizId?: string;
13
+ /**
14
+ * @example
15
+ * xxxx
16
+ */
17
+ platformAppid?: string;
18
+ static names(): {
19
+ [key: string]: string;
20
+ };
21
+ static types(): {
22
+ [key: string]: any;
23
+ };
24
+ validate(): void;
25
+ constructor(map?: {
26
+ [key: string]: any;
27
+ });
28
+ }
29
+ export declare class GetMiniAppBindingForAdminResponseBody extends $dara.Model {
30
+ data?: GetMiniAppBindingForAdminResponseBodyData;
31
+ /**
32
+ * @remarks
33
+ * Id of the request
34
+ *
35
+ * @example
36
+ * 6C6B99AC-39EC-5350-874C-204128C905E6
37
+ */
38
+ requestId?: string;
39
+ static names(): {
40
+ [key: string]: string;
41
+ };
42
+ static types(): {
43
+ [key: string]: any;
44
+ };
45
+ validate(): void;
46
+ constructor(map?: {
47
+ [key: string]: any;
48
+ });
49
+ }
@@ -0,0 +1,86 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.GetMiniAppBindingForAdminResponseBody = exports.GetMiniAppBindingForAdminResponseBodyData = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class GetMiniAppBindingForAdminResponseBodyData extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ authStatus: 'AuthStatus',
43
+ bizId: 'BizId',
44
+ platformAppid: 'PlatformAppid',
45
+ };
46
+ }
47
+ static types() {
48
+ return {
49
+ authStatus: 'string',
50
+ bizId: 'string',
51
+ platformAppid: 'string',
52
+ };
53
+ }
54
+ validate() {
55
+ super.validate();
56
+ }
57
+ constructor(map) {
58
+ super(map);
59
+ }
60
+ }
61
+ exports.GetMiniAppBindingForAdminResponseBodyData = GetMiniAppBindingForAdminResponseBodyData;
62
+ class GetMiniAppBindingForAdminResponseBody extends $dara.Model {
63
+ static names() {
64
+ return {
65
+ data: 'Data',
66
+ requestId: 'RequestId',
67
+ };
68
+ }
69
+ static types() {
70
+ return {
71
+ data: GetMiniAppBindingForAdminResponseBodyData,
72
+ requestId: 'string',
73
+ };
74
+ }
75
+ validate() {
76
+ if (this.data && typeof this.data.validate === 'function') {
77
+ this.data.validate();
78
+ }
79
+ super.validate();
80
+ }
81
+ constructor(map) {
82
+ super(map);
83
+ }
84
+ }
85
+ exports.GetMiniAppBindingForAdminResponseBody = GetMiniAppBindingForAdminResponseBody;
86
+ //# sourceMappingURL=GetMiniAppBindingForAdminResponseBody.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GetMiniAppBindingForAdminResponseBody.js","sourceRoot":"","sources":["../../src/models/GetMiniAppBindingForAdminResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,yCAA0C,SAAQ,KAAK,CAAC,KAAK;IAgBxE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,YAAY;YACxB,KAAK,EAAE,OAAO;YACd,aAAa,EAAE,eAAe;SAC/B,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,QAAQ;YACpB,KAAK,EAAE,QAAQ;YACf,aAAa,EAAE,QAAQ;SACxB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAvCD,8FAuCC;AAED,MAAa,qCAAsC,SAAQ,KAAK,CAAC,KAAK;IAUpE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,MAAM;YACZ,SAAS,EAAE,WAAW;SACvB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,yCAAyC;YAC/C,SAAS,EAAE,QAAQ;SACpB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAlCD,sFAkCC"}
@@ -0,0 +1,24 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class GetMiniAppBindingRequest extends $dara.Model {
3
+ /**
4
+ * @example
5
+ * WS20250814102215000001
6
+ */
7
+ bizId?: string;
8
+ /**
9
+ * @example
10
+ * WECHAT
11
+ */
12
+ channel?: string;
13
+ settingKeys?: string[];
14
+ static names(): {
15
+ [key: string]: string;
16
+ };
17
+ static types(): {
18
+ [key: string]: any;
19
+ };
20
+ validate(): void;
21
+ constructor(map?: {
22
+ [key: string]: any;
23
+ });
24
+ }