@gizone/rrs-client 4.2.9-alpha.537 → 4.2.9-alpha.538
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/.openapi-generator/FILES +0 -1
- package/apis/energy-cost-controller-api.ts +199 -178
- package/dist/apis/energy-cost-controller-api.d.ts +113 -98
- package/dist/apis/energy-cost-controller-api.js +154 -140
- package/dist/esm/apis/energy-cost-controller-api.d.ts +113 -98
- package/dist/esm/apis/energy-cost-controller-api.js +153 -139
- package/dist/esm/models/energy-cost-add-record-dto.d.ts +22 -0
- package/dist/esm/models/energy-cost-add-record-dto.js +9 -0
- package/dist/esm/models/energy-cost-month-setting-list-vo.d.ts +41 -35
- package/dist/esm/models/energy-cost-month-setting-list-vo.js +1 -10
- package/dist/esm/models/energy-cost-record-info-vo.d.ts +40 -0
- package/dist/esm/models/energy-cost-record-info-vo.js +9 -0
- package/dist/esm/models/energy-cost-scenarios-info-vo.d.ts +11 -1
- package/dist/esm/models/energy-cost-scenarios-info-vo.js +9 -0
- package/dist/esm/models/index.d.ts +0 -1
- package/dist/esm/models/index.js +0 -1
- package/dist/esm/models/item.d.ts +22 -0
- package/dist/esm/models/item.js +9 -0
- package/dist/models/energy-cost-add-record-dto.d.ts +22 -0
- package/dist/models/energy-cost-add-record-dto.js +10 -1
- package/dist/models/energy-cost-month-setting-list-vo.d.ts +41 -35
- package/dist/models/energy-cost-month-setting-list-vo.js +0 -11
- package/dist/models/energy-cost-record-info-vo.d.ts +40 -0
- package/dist/models/energy-cost-record-info-vo.js +10 -1
- package/dist/models/energy-cost-scenarios-info-vo.d.ts +11 -1
- package/dist/models/energy-cost-scenarios-info-vo.js +10 -1
- package/dist/models/index.d.ts +0 -1
- package/dist/models/index.js +0 -1
- package/dist/models/item.d.ts +22 -0
- package/dist/models/item.js +10 -1
- package/models/energy-cost-add-record-dto.ts +23 -0
- package/models/energy-cost-month-setting-list-vo.ts +41 -39
- package/models/energy-cost-record-info-vo.ts +41 -0
- package/models/energy-cost-scenarios-info-vo.ts +12 -1
- package/models/index.ts +0 -1
- package/models/item.ts +23 -0
- package/ossutil.log +1050 -1047
- package/package.json +1 -1
- package/dist/esm/models/energy-cost-confirm-record-dto.d.ts +0 -42
- package/dist/esm/models/energy-cost-confirm-record-dto.js +0 -17
- package/dist/models/energy-cost-confirm-record-dto.d.ts +0 -42
- package/dist/models/energy-cost-confirm-record-dto.js +0 -20
- package/models/energy-cost-confirm-record-dto.ts +0 -53
package/package.json
CHANGED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* OpenAPI definition
|
|
3
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: v0
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
-
* https://openapi-generator.tech
|
|
10
|
-
* Do not edit the class manually.
|
|
11
|
-
*/
|
|
12
|
-
import type { Item } from './item';
|
|
13
|
-
/**
|
|
14
|
-
* 新增能源消耗记录-确认-入参
|
|
15
|
-
* @export
|
|
16
|
-
* @interface EnergyCostConfirmRecordDTO
|
|
17
|
-
*/
|
|
18
|
-
export interface EnergyCostConfirmRecordDTO {
|
|
19
|
-
/**
|
|
20
|
-
* id
|
|
21
|
-
* @type {number}
|
|
22
|
-
* @memberof EnergyCostConfirmRecordDTO
|
|
23
|
-
*/
|
|
24
|
-
'id': number;
|
|
25
|
-
/**
|
|
26
|
-
* 能源类型
|
|
27
|
-
* @type {string}
|
|
28
|
-
* @memberof EnergyCostConfirmRecordDTO
|
|
29
|
-
*/
|
|
30
|
-
'energyType': EnergyCostConfirmRecordDTOEnergyTypeEnum;
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
33
|
-
* @type {Array<Item>}
|
|
34
|
-
* @memberof EnergyCostConfirmRecordDTO
|
|
35
|
-
*/
|
|
36
|
-
'scenarios'?: Array<Item>;
|
|
37
|
-
}
|
|
38
|
-
export declare const EnergyCostConfirmRecordDTOEnergyTypeEnum: {
|
|
39
|
-
readonly Electric: "ELECTRIC";
|
|
40
|
-
readonly Water: "WATER";
|
|
41
|
-
};
|
|
42
|
-
export type EnergyCostConfirmRecordDTOEnergyTypeEnum = typeof EnergyCostConfirmRecordDTOEnergyTypeEnum[keyof typeof EnergyCostConfirmRecordDTOEnergyTypeEnum];
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* OpenAPI definition
|
|
5
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: v0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
export const EnergyCostConfirmRecordDTOEnergyTypeEnum = {
|
|
15
|
-
Electric: 'ELECTRIC',
|
|
16
|
-
Water: 'WATER'
|
|
17
|
-
};
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* OpenAPI definition
|
|
3
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: v0
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
-
* https://openapi-generator.tech
|
|
10
|
-
* Do not edit the class manually.
|
|
11
|
-
*/
|
|
12
|
-
import type { Item } from './item';
|
|
13
|
-
/**
|
|
14
|
-
* 新增能源消耗记录-确认-入参
|
|
15
|
-
* @export
|
|
16
|
-
* @interface EnergyCostConfirmRecordDTO
|
|
17
|
-
*/
|
|
18
|
-
export interface EnergyCostConfirmRecordDTO {
|
|
19
|
-
/**
|
|
20
|
-
* id
|
|
21
|
-
* @type {number}
|
|
22
|
-
* @memberof EnergyCostConfirmRecordDTO
|
|
23
|
-
*/
|
|
24
|
-
'id': number;
|
|
25
|
-
/**
|
|
26
|
-
* 能源类型
|
|
27
|
-
* @type {string}
|
|
28
|
-
* @memberof EnergyCostConfirmRecordDTO
|
|
29
|
-
*/
|
|
30
|
-
'energyType': EnergyCostConfirmRecordDTOEnergyTypeEnum;
|
|
31
|
-
/**
|
|
32
|
-
*
|
|
33
|
-
* @type {Array<Item>}
|
|
34
|
-
* @memberof EnergyCostConfirmRecordDTO
|
|
35
|
-
*/
|
|
36
|
-
'scenarios'?: Array<Item>;
|
|
37
|
-
}
|
|
38
|
-
export declare const EnergyCostConfirmRecordDTOEnergyTypeEnum: {
|
|
39
|
-
readonly Electric: "ELECTRIC";
|
|
40
|
-
readonly Water: "WATER";
|
|
41
|
-
};
|
|
42
|
-
export type EnergyCostConfirmRecordDTOEnergyTypeEnum = typeof EnergyCostConfirmRecordDTOEnergyTypeEnum[keyof typeof EnergyCostConfirmRecordDTOEnergyTypeEnum];
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* OpenAPI definition
|
|
6
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: v0
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
-
* https://openapi-generator.tech
|
|
13
|
-
* Do not edit the class manually.
|
|
14
|
-
*/
|
|
15
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.EnergyCostConfirmRecordDTOEnergyTypeEnum = void 0;
|
|
17
|
-
exports.EnergyCostConfirmRecordDTOEnergyTypeEnum = {
|
|
18
|
-
Electric: 'ELECTRIC',
|
|
19
|
-
Water: 'WATER'
|
|
20
|
-
};
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* OpenAPI definition
|
|
5
|
-
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: v0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
// May contain unused imports in some cases
|
|
17
|
-
// @ts-ignore
|
|
18
|
-
import type { Item } from './item';
|
|
19
|
-
|
|
20
|
-
/**
|
|
21
|
-
* 新增能源消耗记录-确认-入参
|
|
22
|
-
* @export
|
|
23
|
-
* @interface EnergyCostConfirmRecordDTO
|
|
24
|
-
*/
|
|
25
|
-
export interface EnergyCostConfirmRecordDTO {
|
|
26
|
-
/**
|
|
27
|
-
* id
|
|
28
|
-
* @type {number}
|
|
29
|
-
* @memberof EnergyCostConfirmRecordDTO
|
|
30
|
-
*/
|
|
31
|
-
'id': number;
|
|
32
|
-
/**
|
|
33
|
-
* 能源类型
|
|
34
|
-
* @type {string}
|
|
35
|
-
* @memberof EnergyCostConfirmRecordDTO
|
|
36
|
-
*/
|
|
37
|
-
'energyType': EnergyCostConfirmRecordDTOEnergyTypeEnum;
|
|
38
|
-
/**
|
|
39
|
-
*
|
|
40
|
-
* @type {Array<Item>}
|
|
41
|
-
* @memberof EnergyCostConfirmRecordDTO
|
|
42
|
-
*/
|
|
43
|
-
'scenarios'?: Array<Item>;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
export const EnergyCostConfirmRecordDTOEnergyTypeEnum = {
|
|
47
|
-
Electric: 'ELECTRIC',
|
|
48
|
-
Water: 'WATER'
|
|
49
|
-
} as const;
|
|
50
|
-
|
|
51
|
-
export type EnergyCostConfirmRecordDTOEnergyTypeEnum = typeof EnergyCostConfirmRecordDTOEnergyTypeEnum[keyof typeof EnergyCostConfirmRecordDTOEnergyTypeEnum];
|
|
52
|
-
|
|
53
|
-
|