@alicloud/aimiaobi20230801 1.0.0 → 1.0.1

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/dist/client.d.ts CHANGED
@@ -19,7 +19,7 @@ export declare class CreateTokenRequest extends $tea.Model {
19
19
  export declare class CreateTokenResponseBody extends $tea.Model {
20
20
  code?: string;
21
21
  data?: CreateTokenResponseBodyData;
22
- httpStatusCode?: string;
22
+ httpStatusCode?: number;
23
23
  message?: string;
24
24
  requestId?: string;
25
25
  success?: boolean;
package/dist/client.js CHANGED
@@ -53,7 +53,7 @@ class CreateTokenResponseBody extends $tea.Model {
53
53
  return {
54
54
  code: 'string',
55
55
  data: CreateTokenResponseBodyData,
56
- httpStatusCode: 'string',
56
+ httpStatusCode: 'number',
57
57
  message: 'string',
58
58
  requestId: 'string',
59
59
  success: 'boolean',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/aimiaobi20230801",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -30,7 +30,7 @@ export class CreateTokenRequest extends $tea.Model {
30
30
  export class CreateTokenResponseBody extends $tea.Model {
31
31
  code?: string;
32
32
  data?: CreateTokenResponseBodyData;
33
- httpStatusCode?: string;
33
+ httpStatusCode?: number;
34
34
  message?: string;
35
35
  requestId?: string;
36
36
  success?: boolean;
@@ -49,7 +49,7 @@ export class CreateTokenResponseBody extends $tea.Model {
49
49
  return {
50
50
  code: 'string',
51
51
  data: CreateTokenResponseBodyData,
52
- httpStatusCode: 'string',
52
+ httpStatusCode: 'number',
53
53
  message: 'string',
54
54
  requestId: 'string',
55
55
  success: 'boolean',