yellowgrid-api-ts 3.2.207-dev.0 → 3.2.208-dev.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.
- package/api.ts +5 -4
- package/dist/api.d.ts +4 -3
- package/dist/api.js +2 -1
- package/dist/models/ReportEnum.d.ts +5 -0
- package/dist/models/ReportEnum.js +5 -0
- package/docs/PostGenerateReport200Response.md +1 -1
- package/docs/TableDTO.md +1 -1
- package/models/ReportEnum.ts +5 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -8218,7 +8218,8 @@ export const ReportRequestDTOReportEnum = {
|
|
|
8218
8218
|
_6: '6',
|
|
8219
8219
|
_7: '7',
|
|
8220
8220
|
_8: '8',
|
|
8221
|
-
_9: '9'
|
|
8221
|
+
_9: '9',
|
|
8222
|
+
_10: '10'
|
|
8222
8223
|
} as const;
|
|
8223
8224
|
|
|
8224
8225
|
export type ReportRequestDTOReportEnum = typeof ReportRequestDTOReportEnum[keyof typeof ReportRequestDTOReportEnum];
|
|
@@ -11268,11 +11269,11 @@ export interface SupportTicketModel {
|
|
|
11268
11269
|
*/
|
|
11269
11270
|
export interface TableDTO {
|
|
11270
11271
|
/**
|
|
11271
|
-
*
|
|
11272
|
-
* @type {
|
|
11272
|
+
*
|
|
11273
|
+
* @type {TableRowDTO}
|
|
11273
11274
|
* @memberof TableDTO
|
|
11274
11275
|
*/
|
|
11275
|
-
'headers'?:
|
|
11276
|
+
'headers'?: TableRowDTO;
|
|
11276
11277
|
/**
|
|
11277
11278
|
* Rows
|
|
11278
11279
|
* @type {Array<TableRowDTO>}
|
package/dist/api.d.ts
CHANGED
|
@@ -8151,6 +8151,7 @@ export declare const ReportRequestDTOReportEnum: {
|
|
|
8151
8151
|
readonly _7: "7";
|
|
8152
8152
|
readonly _8: "8";
|
|
8153
8153
|
readonly _9: "9";
|
|
8154
|
+
readonly _10: "10";
|
|
8154
8155
|
};
|
|
8155
8156
|
export type ReportRequestDTOReportEnum = typeof ReportRequestDTOReportEnum[keyof typeof ReportRequestDTOReportEnum];
|
|
8156
8157
|
export declare const ReportRequestDTOGraphTypeEnum: {
|
|
@@ -11148,11 +11149,11 @@ export interface SupportTicketModel {
|
|
|
11148
11149
|
*/
|
|
11149
11150
|
export interface TableDTO {
|
|
11150
11151
|
/**
|
|
11151
|
-
*
|
|
11152
|
-
* @type {
|
|
11152
|
+
*
|
|
11153
|
+
* @type {TableRowDTO}
|
|
11153
11154
|
* @memberof TableDTO
|
|
11154
11155
|
*/
|
|
11155
|
-
'headers'?:
|
|
11156
|
+
'headers'?: TableRowDTO;
|
|
11156
11157
|
/**
|
|
11157
11158
|
* Rows
|
|
11158
11159
|
* @type {Array<TableRowDTO>}
|
package/dist/api.js
CHANGED
|
@@ -44,5 +44,10 @@ export declare const ReportEnum: {
|
|
|
44
44
|
readonly value: 9;
|
|
45
45
|
readonly publicValue: "Expenditure";
|
|
46
46
|
};
|
|
47
|
+
readonly TECH_SUPPORT_CUSTOMERS: {
|
|
48
|
+
readonly name: "TECH_SUPPORT_CUSTOMERS";
|
|
49
|
+
readonly value: 10;
|
|
50
|
+
readonly publicValue: "Tech Support Customers";
|
|
51
|
+
};
|
|
47
52
|
};
|
|
48
53
|
export type ReportEnum = typeof ReportEnum;
|
|
@@ -12,7 +12,7 @@ Name | Type | Description | Notes
|
|
|
12
12
|
**series** | [**Array<SeriesDTO>**](SeriesDTO.md) | Series | [optional] [default to undefined]
|
|
13
13
|
**currency** | **string** | Currency | [optional] [default to undefined]
|
|
14
14
|
**locale** | **string** | Locale | [optional] [default to undefined]
|
|
15
|
-
**headers** | [**
|
|
15
|
+
**headers** | [**TableRowDTO**](TableRowDTO.md) | | [optional] [default to undefined]
|
|
16
16
|
**rows** | [**Array<TableRowDTO>**](TableRowDTO.md) | Rows | [optional] [default to undefined]
|
|
17
17
|
|
|
18
18
|
## Example
|
package/docs/TableDTO.md
CHANGED
|
@@ -6,7 +6,7 @@ Table
|
|
|
6
6
|
|
|
7
7
|
Name | Type | Description | Notes
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
|
-
**headers** | [**
|
|
9
|
+
**headers** | [**TableRowDTO**](TableRowDTO.md) | | [optional] [default to undefined]
|
|
10
10
|
**rows** | [**Array<TableRowDTO>**](TableRowDTO.md) | Rows | [optional] [default to undefined]
|
|
11
11
|
|
|
12
12
|
## Example
|
package/models/ReportEnum.ts
CHANGED
|
@@ -43,6 +43,11 @@ export const ReportEnum = {
|
|
|
43
43
|
"name": "EXPENDITURE",
|
|
44
44
|
"value": 9,
|
|
45
45
|
"publicValue": "Expenditure"
|
|
46
|
+
},
|
|
47
|
+
"TECH_SUPPORT_CUSTOMERS": {
|
|
48
|
+
"name": "TECH_SUPPORT_CUSTOMERS",
|
|
49
|
+
"value": 10,
|
|
50
|
+
"publicValue": "Tech Support Customers"
|
|
46
51
|
}
|
|
47
52
|
} as const;
|
|
48
53
|
|