yellowgrid-api-ts 3.2.199-dev.0 → 3.2.200-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/.openapi-generator/FILES +3 -0
- package/README.md +3 -0
- package/api.ts +123 -2
- package/dist/api.d.ts +117 -3
- package/dist/api.js +16 -4
- package/docs/AxisDataDTO.md +25 -0
- package/docs/GraphDTO.md +29 -0
- package/docs/ReportRequestDTO.md +2 -0
- package/docs/ReportsApi.md +2 -2
- package/docs/SeriesDTO.md +27 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -30,6 +30,7 @@ docs/AttachmentModel.md
|
|
|
30
30
|
docs/AttributeSetEnum.md
|
|
31
31
|
docs/AuditLogEntity.md
|
|
32
32
|
docs/AuthCodeResponseModel.md
|
|
33
|
+
docs/AxisDataDTO.md
|
|
33
34
|
docs/BasicItemDTO.md
|
|
34
35
|
docs/BasicProductDTO.md
|
|
35
36
|
docs/BatchDTO.md
|
|
@@ -94,6 +95,7 @@ docs/GenericFileModel.md
|
|
|
94
95
|
docs/GetCheckMacExists200Response.md
|
|
95
96
|
docs/GetGetPrice200Response.md
|
|
96
97
|
docs/GetGetRecording200Response.md
|
|
98
|
+
docs/GraphDTO.md
|
|
97
99
|
docs/HostingChangeResponseModel.md
|
|
98
100
|
docs/HostingRegionDTO.md
|
|
99
101
|
docs/InstallationDetailsDTO.md
|
|
@@ -195,6 +197,7 @@ docs/SMSApi.md
|
|
|
195
197
|
docs/SbcDTO.md
|
|
196
198
|
docs/ScannedItemModel.md
|
|
197
199
|
docs/ScopeModel.md
|
|
200
|
+
docs/SeriesDTO.md
|
|
198
201
|
docs/ServiceHealthDTO.md
|
|
199
202
|
docs/ServiceStatusDTO.md
|
|
200
203
|
docs/ServicesApi.md
|
package/README.md
CHANGED
|
@@ -355,6 +355,7 @@ Class | Method | HTTP request | Description
|
|
|
355
355
|
- [AttributeSetEnum](docs/AttributeSetEnum.md)
|
|
356
356
|
- [AuditLogEntity](docs/AuditLogEntity.md)
|
|
357
357
|
- [AuthCodeResponseModel](docs/AuthCodeResponseModel.md)
|
|
358
|
+
- [AxisDataDTO](docs/AxisDataDTO.md)
|
|
358
359
|
- [BasicItemDTO](docs/BasicItemDTO.md)
|
|
359
360
|
- [BasicProductDTO](docs/BasicProductDTO.md)
|
|
360
361
|
- [BatchDTO](docs/BatchDTO.md)
|
|
@@ -412,6 +413,7 @@ Class | Method | HTTP request | Description
|
|
|
412
413
|
- [GetCheckMacExists200Response](docs/GetCheckMacExists200Response.md)
|
|
413
414
|
- [GetGetPrice200Response](docs/GetGetPrice200Response.md)
|
|
414
415
|
- [GetGetRecording200Response](docs/GetGetRecording200Response.md)
|
|
416
|
+
- [GraphDTO](docs/GraphDTO.md)
|
|
415
417
|
- [HostingChangeResponseModel](docs/HostingChangeResponseModel.md)
|
|
416
418
|
- [HostingRegionDTO](docs/HostingRegionDTO.md)
|
|
417
419
|
- [InstallationDetailsDTO](docs/InstallationDetailsDTO.md)
|
|
@@ -501,6 +503,7 @@ Class | Method | HTTP request | Description
|
|
|
501
503
|
- [SbcDTO](docs/SbcDTO.md)
|
|
502
504
|
- [ScannedItemModel](docs/ScannedItemModel.md)
|
|
503
505
|
- [ScopeModel](docs/ScopeModel.md)
|
|
506
|
+
- [SeriesDTO](docs/SeriesDTO.md)
|
|
504
507
|
- [ServiceHealthDTO](docs/ServiceHealthDTO.md)
|
|
505
508
|
- [ServiceStatusDTO](docs/ServiceStatusDTO.md)
|
|
506
509
|
- [ShipmentAddressEntity](docs/ShipmentAddressEntity.md)
|
package/api.ts
CHANGED
|
@@ -1505,6 +1505,41 @@ export interface AuthCodeResponseModel {
|
|
|
1505
1505
|
*/
|
|
1506
1506
|
'redirect_uri'?: string | null;
|
|
1507
1507
|
}
|
|
1508
|
+
/**
|
|
1509
|
+
* Graph Axis Data
|
|
1510
|
+
* @export
|
|
1511
|
+
* @interface AxisDataDTO
|
|
1512
|
+
*/
|
|
1513
|
+
export interface AxisDataDTO {
|
|
1514
|
+
/**
|
|
1515
|
+
* Type
|
|
1516
|
+
* @type {string}
|
|
1517
|
+
* @memberof AxisDataDTO
|
|
1518
|
+
*/
|
|
1519
|
+
'type'?: AxisDataDTOTypeEnum;
|
|
1520
|
+
/**
|
|
1521
|
+
* Data
|
|
1522
|
+
* @type {Array<string>}
|
|
1523
|
+
* @memberof AxisDataDTO
|
|
1524
|
+
*/
|
|
1525
|
+
'data'?: Array<string> | null;
|
|
1526
|
+
/**
|
|
1527
|
+
* Name
|
|
1528
|
+
* @type {string}
|
|
1529
|
+
* @memberof AxisDataDTO
|
|
1530
|
+
*/
|
|
1531
|
+
'name'?: string | null;
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
export const AxisDataDTOTypeEnum = {
|
|
1535
|
+
Value: 'value',
|
|
1536
|
+
Category: 'category',
|
|
1537
|
+
Time: 'time',
|
|
1538
|
+
Log: 'log'
|
|
1539
|
+
} as const;
|
|
1540
|
+
|
|
1541
|
+
export type AxisDataDTOTypeEnum = typeof AxisDataDTOTypeEnum[keyof typeof AxisDataDTOTypeEnum];
|
|
1542
|
+
|
|
1508
1543
|
/**
|
|
1509
1544
|
* Basic Order Item
|
|
1510
1545
|
* @export
|
|
@@ -3901,6 +3936,43 @@ export interface GetGetRecording200Response {
|
|
|
3901
3936
|
*/
|
|
3902
3937
|
'recordingData'?: string;
|
|
3903
3938
|
}
|
|
3939
|
+
/**
|
|
3940
|
+
* Graph
|
|
3941
|
+
* @export
|
|
3942
|
+
* @interface GraphDTO
|
|
3943
|
+
*/
|
|
3944
|
+
export interface GraphDTO {
|
|
3945
|
+
/**
|
|
3946
|
+
* Title
|
|
3947
|
+
* @type {string}
|
|
3948
|
+
* @memberof GraphDTO
|
|
3949
|
+
*/
|
|
3950
|
+
'title'?: string;
|
|
3951
|
+
/**
|
|
3952
|
+
* X Axis
|
|
3953
|
+
* @type {Array<AxisDataDTO>}
|
|
3954
|
+
* @memberof GraphDTO
|
|
3955
|
+
*/
|
|
3956
|
+
'xAxis'?: Array<AxisDataDTO>;
|
|
3957
|
+
/**
|
|
3958
|
+
* Y Axis
|
|
3959
|
+
* @type {Array<AxisDataDTO>}
|
|
3960
|
+
* @memberof GraphDTO
|
|
3961
|
+
*/
|
|
3962
|
+
'yAxis'?: Array<AxisDataDTO>;
|
|
3963
|
+
/**
|
|
3964
|
+
* Legend
|
|
3965
|
+
* @type {Array<string>}
|
|
3966
|
+
* @memberof GraphDTO
|
|
3967
|
+
*/
|
|
3968
|
+
'legend'?: Array<string>;
|
|
3969
|
+
/**
|
|
3970
|
+
* Series
|
|
3971
|
+
* @type {Array<SeriesDTO>}
|
|
3972
|
+
* @memberof GraphDTO
|
|
3973
|
+
*/
|
|
3974
|
+
'series'?: Array<SeriesDTO>;
|
|
3975
|
+
}
|
|
3904
3976
|
/**
|
|
3905
3977
|
* Change Response
|
|
3906
3978
|
* @export
|
|
@@ -8074,6 +8146,12 @@ export interface ReportRequestDTO {
|
|
|
8074
8146
|
* @memberof ReportRequestDTO
|
|
8075
8147
|
*/
|
|
8076
8148
|
'recipients'?: Array<string> | null;
|
|
8149
|
+
/**
|
|
8150
|
+
* Graph Type
|
|
8151
|
+
* @type {string}
|
|
8152
|
+
* @memberof ReportRequestDTO
|
|
8153
|
+
*/
|
|
8154
|
+
'graphType'?: ReportRequestDTOGraphTypeEnum | null;
|
|
8077
8155
|
}
|
|
8078
8156
|
|
|
8079
8157
|
export const ReportRequestDTOReportEnum = {
|
|
@@ -8087,6 +8165,11 @@ export const ReportRequestDTOReportEnum = {
|
|
|
8087
8165
|
} as const;
|
|
8088
8166
|
|
|
8089
8167
|
export type ReportRequestDTOReportEnum = typeof ReportRequestDTOReportEnum[keyof typeof ReportRequestDTOReportEnum];
|
|
8168
|
+
export const ReportRequestDTOGraphTypeEnum = {
|
|
8169
|
+
Stacked: 'stacked'
|
|
8170
|
+
} as const;
|
|
8171
|
+
|
|
8172
|
+
export type ReportRequestDTOGraphTypeEnum = typeof ReportRequestDTOGraphTypeEnum[keyof typeof ReportRequestDTOGraphTypeEnum];
|
|
8090
8173
|
|
|
8091
8174
|
/**
|
|
8092
8175
|
* Resource Not Ready
|
|
@@ -8280,6 +8363,44 @@ export interface ScopeModel {
|
|
|
8280
8363
|
*/
|
|
8281
8364
|
'description'?: string;
|
|
8282
8365
|
}
|
|
8366
|
+
/**
|
|
8367
|
+
* Graph Series Data
|
|
8368
|
+
* @export
|
|
8369
|
+
* @interface SeriesDTO
|
|
8370
|
+
*/
|
|
8371
|
+
export interface SeriesDTO {
|
|
8372
|
+
/**
|
|
8373
|
+
* Name
|
|
8374
|
+
* @type {string}
|
|
8375
|
+
* @memberof SeriesDTO
|
|
8376
|
+
*/
|
|
8377
|
+
'name'?: string;
|
|
8378
|
+
/**
|
|
8379
|
+
* Type
|
|
8380
|
+
* @type {string}
|
|
8381
|
+
* @memberof SeriesDTO
|
|
8382
|
+
*/
|
|
8383
|
+
'type'?: SeriesDTOTypeEnum;
|
|
8384
|
+
/**
|
|
8385
|
+
* Stack
|
|
8386
|
+
* @type {string}
|
|
8387
|
+
* @memberof SeriesDTO
|
|
8388
|
+
*/
|
|
8389
|
+
'stack'?: string | null;
|
|
8390
|
+
/**
|
|
8391
|
+
* Data
|
|
8392
|
+
* @type {Array<string>}
|
|
8393
|
+
* @memberof SeriesDTO
|
|
8394
|
+
*/
|
|
8395
|
+
'data'?: Array<string>;
|
|
8396
|
+
}
|
|
8397
|
+
|
|
8398
|
+
export const SeriesDTOTypeEnum = {
|
|
8399
|
+
Line: 'line'
|
|
8400
|
+
} as const;
|
|
8401
|
+
|
|
8402
|
+
export type SeriesDTOTypeEnum = typeof SeriesDTOTypeEnum[keyof typeof SeriesDTOTypeEnum];
|
|
8403
|
+
|
|
8283
8404
|
/**
|
|
8284
8405
|
* Service Health DTO
|
|
8285
8406
|
* @export
|
|
@@ -29924,7 +30045,7 @@ export const ReportsApiFp = function(configuration?: Configuration) {
|
|
|
29924
30045
|
* @param {*} [options] Override http request option.
|
|
29925
30046
|
* @throws {RequiredError}
|
|
29926
30047
|
*/
|
|
29927
|
-
async postGenerateReport(reportRequestDTO?: ReportRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
30048
|
+
async postGenerateReport(reportRequestDTO?: ReportRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GraphDTO>> {
|
|
29928
30049
|
const localVarAxiosArgs = await localVarAxiosParamCreator.postGenerateReport(reportRequestDTO, options);
|
|
29929
30050
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
29930
30051
|
const localVarOperationServerBasePath = operationServerMap['ReportsApi.postGenerateReport']?.[localVarOperationServerIndex]?.url;
|
|
@@ -29955,7 +30076,7 @@ export const ReportsApiFactory = function (configuration?: Configuration, basePa
|
|
|
29955
30076
|
* @param {*} [options] Override http request option.
|
|
29956
30077
|
* @throws {RequiredError}
|
|
29957
30078
|
*/
|
|
29958
|
-
postGenerateReport(reportRequestDTO?: ReportRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
30079
|
+
postGenerateReport(reportRequestDTO?: ReportRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<GraphDTO> {
|
|
29959
30080
|
return localVarFp.postGenerateReport(reportRequestDTO, options).then((request) => request(axios, basePath));
|
|
29960
30081
|
},
|
|
29961
30082
|
};
|
package/dist/api.d.ts
CHANGED
|
@@ -1482,6 +1482,38 @@ export interface AuthCodeResponseModel {
|
|
|
1482
1482
|
*/
|
|
1483
1483
|
'redirect_uri'?: string | null;
|
|
1484
1484
|
}
|
|
1485
|
+
/**
|
|
1486
|
+
* Graph Axis Data
|
|
1487
|
+
* @export
|
|
1488
|
+
* @interface AxisDataDTO
|
|
1489
|
+
*/
|
|
1490
|
+
export interface AxisDataDTO {
|
|
1491
|
+
/**
|
|
1492
|
+
* Type
|
|
1493
|
+
* @type {string}
|
|
1494
|
+
* @memberof AxisDataDTO
|
|
1495
|
+
*/
|
|
1496
|
+
'type'?: AxisDataDTOTypeEnum;
|
|
1497
|
+
/**
|
|
1498
|
+
* Data
|
|
1499
|
+
* @type {Array<string>}
|
|
1500
|
+
* @memberof AxisDataDTO
|
|
1501
|
+
*/
|
|
1502
|
+
'data'?: Array<string> | null;
|
|
1503
|
+
/**
|
|
1504
|
+
* Name
|
|
1505
|
+
* @type {string}
|
|
1506
|
+
* @memberof AxisDataDTO
|
|
1507
|
+
*/
|
|
1508
|
+
'name'?: string | null;
|
|
1509
|
+
}
|
|
1510
|
+
export declare const AxisDataDTOTypeEnum: {
|
|
1511
|
+
readonly Value: "value";
|
|
1512
|
+
readonly Category: "category";
|
|
1513
|
+
readonly Time: "time";
|
|
1514
|
+
readonly Log: "log";
|
|
1515
|
+
};
|
|
1516
|
+
export type AxisDataDTOTypeEnum = typeof AxisDataDTOTypeEnum[keyof typeof AxisDataDTOTypeEnum];
|
|
1485
1517
|
/**
|
|
1486
1518
|
* Basic Order Item
|
|
1487
1519
|
* @export
|
|
@@ -3872,6 +3904,43 @@ export interface GetGetRecording200Response {
|
|
|
3872
3904
|
*/
|
|
3873
3905
|
'recordingData'?: string;
|
|
3874
3906
|
}
|
|
3907
|
+
/**
|
|
3908
|
+
* Graph
|
|
3909
|
+
* @export
|
|
3910
|
+
* @interface GraphDTO
|
|
3911
|
+
*/
|
|
3912
|
+
export interface GraphDTO {
|
|
3913
|
+
/**
|
|
3914
|
+
* Title
|
|
3915
|
+
* @type {string}
|
|
3916
|
+
* @memberof GraphDTO
|
|
3917
|
+
*/
|
|
3918
|
+
'title'?: string;
|
|
3919
|
+
/**
|
|
3920
|
+
* X Axis
|
|
3921
|
+
* @type {Array<AxisDataDTO>}
|
|
3922
|
+
* @memberof GraphDTO
|
|
3923
|
+
*/
|
|
3924
|
+
'xAxis'?: Array<AxisDataDTO>;
|
|
3925
|
+
/**
|
|
3926
|
+
* Y Axis
|
|
3927
|
+
* @type {Array<AxisDataDTO>}
|
|
3928
|
+
* @memberof GraphDTO
|
|
3929
|
+
*/
|
|
3930
|
+
'yAxis'?: Array<AxisDataDTO>;
|
|
3931
|
+
/**
|
|
3932
|
+
* Legend
|
|
3933
|
+
* @type {Array<string>}
|
|
3934
|
+
* @memberof GraphDTO
|
|
3935
|
+
*/
|
|
3936
|
+
'legend'?: Array<string>;
|
|
3937
|
+
/**
|
|
3938
|
+
* Series
|
|
3939
|
+
* @type {Array<SeriesDTO>}
|
|
3940
|
+
* @memberof GraphDTO
|
|
3941
|
+
*/
|
|
3942
|
+
'series'?: Array<SeriesDTO>;
|
|
3943
|
+
}
|
|
3875
3944
|
/**
|
|
3876
3945
|
* Change Response
|
|
3877
3946
|
* @export
|
|
@@ -8014,6 +8083,12 @@ export interface ReportRequestDTO {
|
|
|
8014
8083
|
* @memberof ReportRequestDTO
|
|
8015
8084
|
*/
|
|
8016
8085
|
'recipients'?: Array<string> | null;
|
|
8086
|
+
/**
|
|
8087
|
+
* Graph Type
|
|
8088
|
+
* @type {string}
|
|
8089
|
+
* @memberof ReportRequestDTO
|
|
8090
|
+
*/
|
|
8091
|
+
'graphType'?: ReportRequestDTOGraphTypeEnum | null;
|
|
8017
8092
|
}
|
|
8018
8093
|
export declare const ReportRequestDTOReportEnum: {
|
|
8019
8094
|
readonly _1: "1";
|
|
@@ -8025,6 +8100,10 @@ export declare const ReportRequestDTOReportEnum: {
|
|
|
8025
8100
|
readonly _7: "7";
|
|
8026
8101
|
};
|
|
8027
8102
|
export type ReportRequestDTOReportEnum = typeof ReportRequestDTOReportEnum[keyof typeof ReportRequestDTOReportEnum];
|
|
8103
|
+
export declare const ReportRequestDTOGraphTypeEnum: {
|
|
8104
|
+
readonly Stacked: "stacked";
|
|
8105
|
+
};
|
|
8106
|
+
export type ReportRequestDTOGraphTypeEnum = typeof ReportRequestDTOGraphTypeEnum[keyof typeof ReportRequestDTOGraphTypeEnum];
|
|
8028
8107
|
/**
|
|
8029
8108
|
* Resource Not Ready
|
|
8030
8109
|
* @export
|
|
@@ -8217,6 +8296,41 @@ export interface ScopeModel {
|
|
|
8217
8296
|
*/
|
|
8218
8297
|
'description'?: string;
|
|
8219
8298
|
}
|
|
8299
|
+
/**
|
|
8300
|
+
* Graph Series Data
|
|
8301
|
+
* @export
|
|
8302
|
+
* @interface SeriesDTO
|
|
8303
|
+
*/
|
|
8304
|
+
export interface SeriesDTO {
|
|
8305
|
+
/**
|
|
8306
|
+
* Name
|
|
8307
|
+
* @type {string}
|
|
8308
|
+
* @memberof SeriesDTO
|
|
8309
|
+
*/
|
|
8310
|
+
'name'?: string;
|
|
8311
|
+
/**
|
|
8312
|
+
* Type
|
|
8313
|
+
* @type {string}
|
|
8314
|
+
* @memberof SeriesDTO
|
|
8315
|
+
*/
|
|
8316
|
+
'type'?: SeriesDTOTypeEnum;
|
|
8317
|
+
/**
|
|
8318
|
+
* Stack
|
|
8319
|
+
* @type {string}
|
|
8320
|
+
* @memberof SeriesDTO
|
|
8321
|
+
*/
|
|
8322
|
+
'stack'?: string | null;
|
|
8323
|
+
/**
|
|
8324
|
+
* Data
|
|
8325
|
+
* @type {Array<string>}
|
|
8326
|
+
* @memberof SeriesDTO
|
|
8327
|
+
*/
|
|
8328
|
+
'data'?: Array<string>;
|
|
8329
|
+
}
|
|
8330
|
+
export declare const SeriesDTOTypeEnum: {
|
|
8331
|
+
readonly Line: "line";
|
|
8332
|
+
};
|
|
8333
|
+
export type SeriesDTOTypeEnum = typeof SeriesDTOTypeEnum[keyof typeof SeriesDTOTypeEnum];
|
|
8220
8334
|
/**
|
|
8221
8335
|
* Service Health DTO
|
|
8222
8336
|
* @export
|
|
@@ -21394,7 +21508,7 @@ export declare const ReportsApiFp: (configuration?: Configuration) => {
|
|
|
21394
21508
|
* @param {*} [options] Override http request option.
|
|
21395
21509
|
* @throws {RequiredError}
|
|
21396
21510
|
*/
|
|
21397
|
-
postGenerateReport(reportRequestDTO?: ReportRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
21511
|
+
postGenerateReport(reportRequestDTO?: ReportRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GraphDTO>>;
|
|
21398
21512
|
};
|
|
21399
21513
|
/**
|
|
21400
21514
|
* ReportsApi - factory interface
|
|
@@ -21414,7 +21528,7 @@ export declare const ReportsApiFactory: (configuration?: Configuration, basePath
|
|
|
21414
21528
|
* @param {*} [options] Override http request option.
|
|
21415
21529
|
* @throws {RequiredError}
|
|
21416
21530
|
*/
|
|
21417
|
-
postGenerateReport(reportRequestDTO?: ReportRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
21531
|
+
postGenerateReport(reportRequestDTO?: ReportRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<GraphDTO>;
|
|
21418
21532
|
};
|
|
21419
21533
|
/**
|
|
21420
21534
|
* ReportsApi - object-oriented interface
|
|
@@ -21438,7 +21552,7 @@ export declare class ReportsApi extends BaseAPI {
|
|
|
21438
21552
|
* @throws {RequiredError}
|
|
21439
21553
|
* @memberof ReportsApi
|
|
21440
21554
|
*/
|
|
21441
|
-
postGenerateReport(reportRequestDTO?: ReportRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
21555
|
+
postGenerateReport(reportRequestDTO?: ReportRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GraphDTO, any, {}>>;
|
|
21442
21556
|
}
|
|
21443
21557
|
/**
|
|
21444
21558
|
* SIPTrunksApi - axios parameter creator
|
package/dist/api.js
CHANGED
|
@@ -84,10 +84,10 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
|
84
84
|
return to.concat(ar || Array.prototype.slice.call(from));
|
|
85
85
|
};
|
|
86
86
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
87
|
-
exports.
|
|
88
|
-
exports.
|
|
89
|
-
exports.
|
|
90
|
-
exports.PostAddWebhookWebhookUriEnum = exports.WebhooksApi = exports.WebhooksApiFactory = exports.WebhooksApiFp = exports.WebhooksApiAxiosParamCreator = exports.TicketsApi = exports.TicketsApiFactory = exports.TicketsApiFp = exports.TicketsApiAxiosParamCreator = exports.SystemApi = exports.SystemApiFactory = exports.SystemApiFp = exports.SystemApiAxiosParamCreator = exports.SuppliersApi = exports.SuppliersApiFactory = exports.SuppliersApiFp = exports.SuppliersApiAxiosParamCreator = exports.StockManagementApi = exports.StockManagementApiFactory = exports.StockManagementApiFp = exports.StockManagementApiAxiosParamCreator = exports.ShippingApi = exports.ShippingApiFactory = exports.ShippingApiFp = exports.ShippingApiAxiosParamCreator = exports.ServicesApi = exports.ServicesApiFactory = exports.ServicesApiFp = void 0;
|
|
87
|
+
exports.PatchSetAccountStatusStateEnum = exports.AccountsApi = exports.AccountsApiFactory = exports.AccountsApiFp = exports.AccountsApiAxiosParamCreator = exports.UpgradeRequestModelSchoolTypeEnum = exports.UpgradeRequestModelLicenceTypeEnum = exports.TcxWizardModelInstallationStatusEnum = exports.TcxWizardModelInstallTypeEnum = exports.TcxSetupEntityRegionEnum = exports.TcxSetupEntityInstallTypeEnum = exports.TcxMultiTenantModelPackageEnum = exports.StockReportItemModelCurrencyEnum = exports.StockOrderModelPaidEnum = exports.StockOrderModelDeliveryMethodEnum = exports.SmsResponseModelEventTypeEnum = exports.SmsPhoneNumberModelStatusEnum = exports.SmsAccountRequestDTOTypeEnum = exports.SmsAccountRequestDTOProviderEnum = exports.SipTrunkChangeResponseModelTypeEnum = exports.ShippingServiceModelCourierEnum = exports.ShippingServiceDTOCourierEnum = exports.ShippingRequestDTOPrinterEnum = exports.ShippingRequestDTOCourierEnum = exports.ShipmentRequestDTOCourierEnum = exports.ShipmentDTOCourierEnum = exports.ServiceStatusDTOStatusEnum = exports.ServiceHealthDTOGlobalStatusEnum = exports.SeriesDTOTypeEnum = exports.ReportRequestDTOGraphTypeEnum = exports.ReportRequestDTOReportEnum = exports.ProspectDTOStatusEnum = exports.PatchUpdateTcxHostingPriceListRequestPriceListEnum = exports.PatchUpdatePriceListRequestPriceListEnum = exports.PasswordSenderDTOIntervalTypeEnum = exports.OrderTotalModelCurrencyEnum = exports.OrderRequestModelSchoolTypeEnum = exports.OrderRequestModelLicenceTypeEnum = exports.MultiTenantChangeResponseModelTypeEnum = exports.ItemDiscountEntityTypeEnum = exports.HostingRegionDTOCodeEnum = exports.HostingChangeResponseModelTypeEnum = exports.EventDTOStatusEnum = exports.DivertResponseModelStatusEnum = exports.AxisDataDTOTypeEnum = exports.AuditLogEntityTypeEnum = exports.AuditLogEntityActionEnum = exports.AdminUserModelPermissionsEnum = exports.AdminUserModelRoleEnum = exports.AdminOrderRequestDTOPaymentMethodEnum = void 0;
|
|
88
|
+
exports.NumberPortingApiFp = exports.NumberPortingApiAxiosParamCreator = exports.MyPBXToolsApi = exports.MyPBXToolsApiFactory = exports.MyPBXToolsApiFp = exports.MyPBXToolsApiAxiosParamCreator = exports.MiscApi = exports.MiscApiFactory = exports.MiscApiFp = exports.MiscApiAxiosParamCreator = exports.GetGetTenantsStatusEnum = exports.Class3CXMultiTenantApi = exports.Class3CXMultiTenantApiFactory = exports.Class3CXMultiTenantApiFp = exports.Class3CXMultiTenantApiAxiosParamCreator = exports.GetGetPriceSchoolTypeEnum = exports.GetGetPriceLicenceTypeEnum = exports.Class3CXIntegrationsApi = exports.Class3CXIntegrationsApiFactory = exports.Class3CXIntegrationsApiFp = exports.Class3CXIntegrationsApiAxiosParamCreator = exports.PostResizeInstanceSizeEnum = exports.PostFailoverInstanceTypeEnum = exports.GetGetInstallationsInstallTypeEnum = exports.GetGetInstallationsHostingEnum = exports.GetGetInstallationsStatusEnum = exports.Class3CXInstallationsApi = exports.Class3CXInstallationsApiFactory = exports.Class3CXInstallationsApiFp = exports.Class3CXInstallationsApiAxiosParamCreator = exports.Class3CXInstallationWizardApi = exports.Class3CXInstallationWizardApiFactory = exports.Class3CXInstallationWizardApiFp = exports.Class3CXInstallationWizardApiAxiosParamCreator = exports.Class3CXApi = exports.Class3CXApiFactory = exports.Class3CXApiFp = exports.Class3CXApiAxiosParamCreator = exports.GetGetCrmActivitiesTypeEnum = exports.CRMApi = exports.CRMApiFactory = exports.CRMApiFp = exports.CRMApiAxiosParamCreator = exports.BillingApi = exports.BillingApiFactory = exports.BillingApiFp = exports.BillingApiAxiosParamCreator = exports.PatchSetPrizePromoStateEnum = exports.PatchSetPortalAccessStateEnum = exports.PatchSetOnHoldStateEnum = void 0;
|
|
89
|
+
exports.SMSApiFp = exports.SMSApiAxiosParamCreator = exports.SIPTrunksApi = exports.SIPTrunksApiFactory = exports.SIPTrunksApiFp = exports.SIPTrunksApiAxiosParamCreator = exports.ReportsApi = exports.ReportsApiFactory = exports.ReportsApiFp = exports.ReportsApiAxiosParamCreator = exports.ProvisioningApi = exports.ProvisioningApiFactory = exports.ProvisioningApiFp = exports.ProvisioningApiAxiosParamCreator = exports.ProspectsApi = exports.ProspectsApiFactory = exports.ProspectsApiFp = exports.ProspectsApiAxiosParamCreator = exports.GetGetLegacyStockListFormatEnum = exports.ProductsApi = exports.ProductsApiFactory = exports.ProductsApiFp = exports.ProductsApiAxiosParamCreator = exports.PostSendPriceListCategoryEnum = exports.PostSendPriceListFormatEnum = exports.PostSendPriceListTypeEnum = exports.GetGetPriceListCategoryEnum = exports.GetGetPriceListFormatEnum = exports.GetGetPriceListTypeEnum = exports.PricingApi = exports.PricingApiFactory = exports.PricingApiFp = exports.PricingApiAxiosParamCreator = exports.PostPrintShippingLabelPrinterEnum = exports.GetGetOrdersFilterEnum = exports.GetGetOrdersStatusEnum = exports.OrdersApi = exports.OrdersApiFactory = exports.OrdersApiFp = exports.OrdersApiAxiosParamCreator = exports.PostAuthoriseScopeEnum = exports.PostAccessTokenTokenExchangeTypeEnum = exports.PostAccessTokenScopeEnum = exports.PostAccessTokenGrantTypeEnum = exports.OAuth20Api = exports.OAuth20ApiFactory = exports.OAuth20ApiFp = exports.OAuth20ApiAxiosParamCreator = exports.NumberPortingApi = exports.NumberPortingApiFactory = void 0;
|
|
90
|
+
exports.PostAddWebhookWebhookUriEnum = exports.WebhooksApi = exports.WebhooksApiFactory = exports.WebhooksApiFp = exports.WebhooksApiAxiosParamCreator = exports.TicketsApi = exports.TicketsApiFactory = exports.TicketsApiFp = exports.TicketsApiAxiosParamCreator = exports.SystemApi = exports.SystemApiFactory = exports.SystemApiFp = exports.SystemApiAxiosParamCreator = exports.SuppliersApi = exports.SuppliersApiFactory = exports.SuppliersApiFp = exports.SuppliersApiAxiosParamCreator = exports.StockManagementApi = exports.StockManagementApiFactory = exports.StockManagementApiFp = exports.StockManagementApiAxiosParamCreator = exports.ShippingApi = exports.ShippingApiFactory = exports.ShippingApiFp = exports.ShippingApiAxiosParamCreator = exports.ServicesApi = exports.ServicesApiFactory = exports.ServicesApiFp = exports.ServicesApiAxiosParamCreator = exports.SMSApi = exports.SMSApiFactory = void 0;
|
|
91
91
|
var axios_1 = require("axios");
|
|
92
92
|
// Some imports not used depending on template conditions
|
|
93
93
|
// @ts-ignore
|
|
@@ -202,6 +202,12 @@ exports.AuditLogEntityTypeEnum = {
|
|
|
202
202
|
Oauth2Clients: 'oauth2_clients',
|
|
203
203
|
Oauth2Tokens: 'oauth2_tokens'
|
|
204
204
|
};
|
|
205
|
+
exports.AxisDataDTOTypeEnum = {
|
|
206
|
+
Value: 'value',
|
|
207
|
+
Category: 'category',
|
|
208
|
+
Time: 'time',
|
|
209
|
+
Log: 'log'
|
|
210
|
+
};
|
|
205
211
|
exports.DivertResponseModelStatusEnum = {
|
|
206
212
|
Enabled: 'enabled',
|
|
207
213
|
Disabled: 'disabled'
|
|
@@ -327,6 +333,12 @@ exports.ReportRequestDTOReportEnum = {
|
|
|
327
333
|
_6: '6',
|
|
328
334
|
_7: '7'
|
|
329
335
|
};
|
|
336
|
+
exports.ReportRequestDTOGraphTypeEnum = {
|
|
337
|
+
Stacked: 'stacked'
|
|
338
|
+
};
|
|
339
|
+
exports.SeriesDTOTypeEnum = {
|
|
340
|
+
Line: 'line'
|
|
341
|
+
};
|
|
330
342
|
exports.ServiceHealthDTOGlobalStatusEnum = {
|
|
331
343
|
NUMBER_0: 0,
|
|
332
344
|
NUMBER_1: 1,
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# AxisDataDTO
|
|
2
|
+
|
|
3
|
+
Graph Axis Data
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**type** | **string** | Type | [optional] [default to undefined]
|
|
10
|
+
**data** | **Array<string>** | Data | [optional] [default to undefined]
|
|
11
|
+
**name** | **string** | Name | [optional] [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { AxisDataDTO } from 'yellowgrid-api-ts';
|
|
17
|
+
|
|
18
|
+
const instance: AxisDataDTO = {
|
|
19
|
+
type,
|
|
20
|
+
data,
|
|
21
|
+
name,
|
|
22
|
+
};
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/GraphDTO.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# GraphDTO
|
|
2
|
+
|
|
3
|
+
Graph
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**title** | **string** | Title | [optional] [default to undefined]
|
|
10
|
+
**xAxis** | [**Array<AxisDataDTO>**](AxisDataDTO.md) | X Axis | [optional] [default to undefined]
|
|
11
|
+
**yAxis** | [**Array<AxisDataDTO>**](AxisDataDTO.md) | Y Axis | [optional] [default to undefined]
|
|
12
|
+
**legend** | **Array<string>** | Legend | [optional] [default to undefined]
|
|
13
|
+
**series** | [**Array<SeriesDTO>**](SeriesDTO.md) | Series | [optional] [default to undefined]
|
|
14
|
+
|
|
15
|
+
## Example
|
|
16
|
+
|
|
17
|
+
```typescript
|
|
18
|
+
import { GraphDTO } from 'yellowgrid-api-ts';
|
|
19
|
+
|
|
20
|
+
const instance: GraphDTO = {
|
|
21
|
+
title,
|
|
22
|
+
xAxis,
|
|
23
|
+
yAxis,
|
|
24
|
+
legend,
|
|
25
|
+
series,
|
|
26
|
+
};
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/ReportRequestDTO.md
CHANGED
|
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
|
|
|
14
14
|
**sku** | **string** | SKU | [optional] [default to undefined]
|
|
15
15
|
**price** | **number** | Price | [optional] [default to undefined]
|
|
16
16
|
**recipients** | **Array<string>** | Recipients | [optional] [default to undefined]
|
|
17
|
+
**graphType** | **string** | Graph Type | [optional] [default to undefined]
|
|
17
18
|
|
|
18
19
|
## Example
|
|
19
20
|
|
|
@@ -29,6 +30,7 @@ const instance: ReportRequestDTO = {
|
|
|
29
30
|
sku,
|
|
30
31
|
price,
|
|
31
32
|
recipients,
|
|
33
|
+
graphType,
|
|
32
34
|
};
|
|
33
35
|
```
|
|
34
36
|
|
package/docs/ReportsApi.md
CHANGED
|
@@ -52,7 +52,7 @@ No authorization required
|
|
|
52
52
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
53
53
|
|
|
54
54
|
# **postGenerateReport**
|
|
55
|
-
>
|
|
55
|
+
> GraphDTO postGenerateReport()
|
|
56
56
|
|
|
57
57
|
Generate Reports
|
|
58
58
|
|
|
@@ -84,7 +84,7 @@ const { status, data } = await apiInstance.postGenerateReport(
|
|
|
84
84
|
|
|
85
85
|
### Return type
|
|
86
86
|
|
|
87
|
-
**
|
|
87
|
+
**GraphDTO**
|
|
88
88
|
|
|
89
89
|
### Authorization
|
|
90
90
|
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# SeriesDTO
|
|
2
|
+
|
|
3
|
+
Graph Series Data
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**name** | **string** | Name | [optional] [default to undefined]
|
|
10
|
+
**type** | **string** | Type | [optional] [default to undefined]
|
|
11
|
+
**stack** | **string** | Stack | [optional] [default to undefined]
|
|
12
|
+
**data** | **Array<string>** | Data | [optional] [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { SeriesDTO } from 'yellowgrid-api-ts';
|
|
18
|
+
|
|
19
|
+
const instance: SeriesDTO = {
|
|
20
|
+
name,
|
|
21
|
+
type,
|
|
22
|
+
stack,
|
|
23
|
+
data,
|
|
24
|
+
};
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|