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 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
- * Headers
11272
- * @type {Array<TableRowDTO>}
11272
+ *
11273
+ * @type {TableRowDTO}
11273
11274
  * @memberof TableDTO
11274
11275
  */
11275
- 'headers'?: Array<TableRowDTO>;
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
- * Headers
11152
- * @type {Array<TableRowDTO>}
11152
+ *
11153
+ * @type {TableRowDTO}
11153
11154
  * @memberof TableDTO
11154
11155
  */
11155
- 'headers'?: Array<TableRowDTO>;
11156
+ 'headers'?: TableRowDTO;
11156
11157
  /**
11157
11158
  * Rows
11158
11159
  * @type {Array<TableRowDTO>}
package/dist/api.js CHANGED
@@ -366,7 +366,8 @@ exports.ReportRequestDTOReportEnum = {
366
366
  _6: '6',
367
367
  _7: '7',
368
368
  _8: '8',
369
- _9: '9'
369
+ _9: '9',
370
+ _10: '10'
370
371
  };
371
372
  exports.ReportRequestDTOGraphTypeEnum = {
372
373
  StackedArea: 'stacked-area',
@@ -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;
@@ -46,5 +46,10 @@ exports.ReportEnum = {
46
46
  "name": "EXPENDITURE",
47
47
  "value": 9,
48
48
  "publicValue": "Expenditure"
49
+ },
50
+ "TECH_SUPPORT_CUSTOMERS": {
51
+ "name": "TECH_SUPPORT_CUSTOMERS",
52
+ "value": 10,
53
+ "publicValue": "Tech Support Customers"
49
54
  }
50
55
  };
@@ -12,7 +12,7 @@ Name | Type | Description | Notes
12
12
  **series** | [**Array&lt;SeriesDTO&gt;**](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** | [**Array&lt;TableRowDTO&gt;**](TableRowDTO.md) | Headers | [optional] [default to undefined]
15
+ **headers** | [**TableRowDTO**](TableRowDTO.md) | | [optional] [default to undefined]
16
16
  **rows** | [**Array&lt;TableRowDTO&gt;**](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** | [**Array&lt;TableRowDTO&gt;**](TableRowDTO.md) | Headers | [optional] [default to undefined]
9
+ **headers** | [**TableRowDTO**](TableRowDTO.md) | | [optional] [default to undefined]
10
10
  **rows** | [**Array&lt;TableRowDTO&gt;**](TableRowDTO.md) | Rows | [optional] [default to undefined]
11
11
 
12
12
  ## Example
@@ -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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.207-dev.0",
3
+ "version": "3.2.208-dev.0",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {