@connectreport/connectreport-js 2.43.0 → 2.48.3
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/README.md +3 -3
- package/api.ts +33 -29
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +33 -29
- package/dist/api.js +17 -13
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
## @connectreport/connectreport-js@2.
|
|
1
|
+
## @connectreport/connectreport-js@2.48.3
|
|
2
2
|
|
|
3
3
|
- View the [Library Docs](https://connectreport.com/docs/classes/_index_.connectreport.html)
|
|
4
4
|
- View the [ConnectReport HTTP API Reference](https://connectreport.com/api-reference.html)
|
|
5
|
-
- [Download bundle](https://connectreport.com/docs/assets/2.
|
|
5
|
+
- [Download bundle](https://connectreport.com/docs/assets/2.48.3/connectreport.js) for use in client side applications
|
|
6
6
|
|
|
7
7
|
Environment
|
|
8
8
|
* Node.js
|
|
@@ -38,7 +38,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
38
38
|
_published:_
|
|
39
39
|
|
|
40
40
|
```
|
|
41
|
-
npm install @connectreport/connectreport-js@2.
|
|
41
|
+
npm install @connectreport/connectreport-js@2.48.3 --save
|
|
42
42
|
```
|
|
43
43
|
|
|
44
44
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* ConnectReport Core API
|
|
5
5
|
* Leverage core reporting, templating, and document automation capabilities of ConnectReport Server.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 2.
|
|
7
|
+
* The version of the OpenAPI document: 2.48.3
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -204,7 +204,8 @@ export enum FilterCycleFrequencyEnum {
|
|
|
204
204
|
export enum FilterCycleEmailEnum {
|
|
205
205
|
Pdf = 'pdf',
|
|
206
206
|
Pptx = 'pptx',
|
|
207
|
-
Xlsx = 'xlsx'
|
|
207
|
+
Xlsx = 'xlsx',
|
|
208
|
+
Csv = 'csv'
|
|
208
209
|
}
|
|
209
210
|
|
|
210
211
|
/**
|
|
@@ -684,7 +685,8 @@ export enum ReportTaskFrequencyEnum {
|
|
|
684
685
|
export enum ReportTaskEmailEnum {
|
|
685
686
|
Pdf = 'pdf',
|
|
686
687
|
Pptx = 'pptx',
|
|
687
|
-
Xlsx = 'xlsx'
|
|
688
|
+
Xlsx = 'xlsx',
|
|
689
|
+
Csv = 'csv'
|
|
688
690
|
}
|
|
689
691
|
|
|
690
692
|
/**
|
|
@@ -934,7 +936,8 @@ export enum ReportTaskRequestFrequencyEnum {
|
|
|
934
936
|
export enum ReportTaskRequestEmailEnum {
|
|
935
937
|
Pdf = 'pdf',
|
|
936
938
|
Pptx = 'pptx',
|
|
937
|
-
Xlsx = 'xlsx'
|
|
939
|
+
Xlsx = 'xlsx',
|
|
940
|
+
Csv = 'csv'
|
|
938
941
|
}
|
|
939
942
|
|
|
940
943
|
/**
|
|
@@ -1134,7 +1137,8 @@ export enum ReportTaskResponseFrequencyEnum {
|
|
|
1134
1137
|
export enum ReportTaskResponseEmailEnum {
|
|
1135
1138
|
Pdf = 'pdf',
|
|
1136
1139
|
Pptx = 'pptx',
|
|
1137
|
-
Xlsx = 'xlsx'
|
|
1140
|
+
Xlsx = 'xlsx',
|
|
1141
|
+
Csv = 'csv'
|
|
1138
1142
|
}
|
|
1139
1143
|
|
|
1140
1144
|
/**
|
|
@@ -1515,12 +1519,12 @@ export const DocumentsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
1515
1519
|
*
|
|
1516
1520
|
* @summary Retrieve a generated document
|
|
1517
1521
|
* @param {string} fileName
|
|
1518
|
-
* @param {'pdf' | 'pptx' | '
|
|
1522
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} fileType
|
|
1519
1523
|
* @param {string} [attachmentName] A document file title. This value is reflected back to the client in the fileName header.
|
|
1520
1524
|
* @param {*} [options] Override http request option.
|
|
1521
1525
|
* @throws {RequiredError}
|
|
1522
1526
|
*/
|
|
1523
|
-
getDocument: async (fileName: string, fileType: 'pdf' | 'pptx' | '
|
|
1527
|
+
getDocument: async (fileName: string, fileType: 'pdf' | 'pptx' | 'xlsx' | 'csv', attachmentName?: string, options: any = {}): Promise<RequestArgs> => {
|
|
1524
1528
|
// verify required parameter 'fileName' is not null or undefined
|
|
1525
1529
|
assertParamExists('getDocument', 'fileName', fileName)
|
|
1526
1530
|
// verify required parameter 'fileType' is not null or undefined
|
|
@@ -1574,12 +1578,12 @@ export const DocumentsApiFp = function(configuration?: Configuration) {
|
|
|
1574
1578
|
*
|
|
1575
1579
|
* @summary Retrieve a generated document
|
|
1576
1580
|
* @param {string} fileName
|
|
1577
|
-
* @param {'pdf' | 'pptx' | '
|
|
1581
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} fileType
|
|
1578
1582
|
* @param {string} [attachmentName] A document file title. This value is reflected back to the client in the fileName header.
|
|
1579
1583
|
* @param {*} [options] Override http request option.
|
|
1580
1584
|
* @throws {RequiredError}
|
|
1581
1585
|
*/
|
|
1582
|
-
async getDocument(fileName: string, fileType: 'pdf' | 'pptx' | '
|
|
1586
|
+
async getDocument(fileName: string, fileType: 'pdf' | 'pptx' | 'xlsx' | 'csv', attachmentName?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>> {
|
|
1583
1587
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getDocument(fileName, fileType, attachmentName, options);
|
|
1584
1588
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1585
1589
|
},
|
|
@@ -1597,12 +1601,12 @@ export const DocumentsApiFactory = function (configuration?: Configuration, base
|
|
|
1597
1601
|
*
|
|
1598
1602
|
* @summary Retrieve a generated document
|
|
1599
1603
|
* @param {string} fileName
|
|
1600
|
-
* @param {'pdf' | 'pptx' | '
|
|
1604
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} fileType
|
|
1601
1605
|
* @param {string} [attachmentName] A document file title. This value is reflected back to the client in the fileName header.
|
|
1602
1606
|
* @param {*} [options] Override http request option.
|
|
1603
1607
|
* @throws {RequiredError}
|
|
1604
1608
|
*/
|
|
1605
|
-
getDocument(fileName: string, fileType: 'pdf' | 'pptx' | '
|
|
1609
|
+
getDocument(fileName: string, fileType: 'pdf' | 'pptx' | 'xlsx' | 'csv', attachmentName?: string, options?: any): AxiosPromise<any> {
|
|
1606
1610
|
return localVarFp.getDocument(fileName, fileType, attachmentName, options).then((request) => request(axios, basePath));
|
|
1607
1611
|
},
|
|
1608
1612
|
};
|
|
@@ -1619,13 +1623,13 @@ export class DocumentsApi extends BaseAPI {
|
|
|
1619
1623
|
*
|
|
1620
1624
|
* @summary Retrieve a generated document
|
|
1621
1625
|
* @param {string} fileName
|
|
1622
|
-
* @param {'pdf' | 'pptx' | '
|
|
1626
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} fileType
|
|
1623
1627
|
* @param {string} [attachmentName] A document file title. This value is reflected back to the client in the fileName header.
|
|
1624
1628
|
* @param {*} [options] Override http request option.
|
|
1625
1629
|
* @throws {RequiredError}
|
|
1626
1630
|
* @memberof DocumentsApi
|
|
1627
1631
|
*/
|
|
1628
|
-
public getDocument(fileName: string, fileType: 'pdf' | 'pptx' | '
|
|
1632
|
+
public getDocument(fileName: string, fileType: 'pdf' | 'pptx' | 'xlsx' | 'csv', attachmentName?: string, options?: any) {
|
|
1629
1633
|
return DocumentsApiFp(this.configuration).getDocument(fileName, fileType, attachmentName, options).then((request) => request(this.axios, this.basePath));
|
|
1630
1634
|
}
|
|
1631
1635
|
}
|
|
@@ -2939,11 +2943,11 @@ export const ReportsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
2939
2943
|
*
|
|
2940
2944
|
* @summary Render a published report
|
|
2941
2945
|
* @param {string} id
|
|
2942
|
-
* @param {'pdf' | 'pptx' | '
|
|
2946
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
2943
2947
|
* @param {*} [options] Override http request option.
|
|
2944
2948
|
* @throws {RequiredError}
|
|
2945
2949
|
*/
|
|
2946
|
-
renderReport: async (id: string, format: 'pdf' | 'pptx' | '
|
|
2950
|
+
renderReport: async (id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options: any = {}): Promise<RequestArgs> => {
|
|
2947
2951
|
// verify required parameter 'id' is not null or undefined
|
|
2948
2952
|
assertParamExists('renderReport', 'id', id)
|
|
2949
2953
|
// verify required parameter 'format' is not null or undefined
|
|
@@ -3031,11 +3035,11 @@ export const ReportsApiFp = function(configuration?: Configuration) {
|
|
|
3031
3035
|
*
|
|
3032
3036
|
* @summary Render a published report
|
|
3033
3037
|
* @param {string} id
|
|
3034
|
-
* @param {'pdf' | 'pptx' | '
|
|
3038
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
3035
3039
|
* @param {*} [options] Override http request option.
|
|
3036
3040
|
* @throws {RequiredError}
|
|
3037
3041
|
*/
|
|
3038
|
-
async renderReport(id: string, format: 'pdf' | 'pptx' | '
|
|
3042
|
+
async renderReport(id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Job>> {
|
|
3039
3043
|
const localVarAxiosArgs = await localVarAxiosParamCreator.renderReport(id, format, options);
|
|
3040
3044
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3041
3045
|
},
|
|
@@ -3085,11 +3089,11 @@ export const ReportsApiFactory = function (configuration?: Configuration, basePa
|
|
|
3085
3089
|
*
|
|
3086
3090
|
* @summary Render a published report
|
|
3087
3091
|
* @param {string} id
|
|
3088
|
-
* @param {'pdf' | 'pptx' | '
|
|
3092
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
3089
3093
|
* @param {*} [options] Override http request option.
|
|
3090
3094
|
* @throws {RequiredError}
|
|
3091
3095
|
*/
|
|
3092
|
-
renderReport(id: string, format: 'pdf' | 'pptx' | '
|
|
3096
|
+
renderReport(id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options?: any): AxiosPromise<Job> {
|
|
3093
3097
|
return localVarFp.renderReport(id, format, options).then((request) => request(axios, basePath));
|
|
3094
3098
|
},
|
|
3095
3099
|
};
|
|
@@ -3144,12 +3148,12 @@ export class ReportsApi extends BaseAPI {
|
|
|
3144
3148
|
*
|
|
3145
3149
|
* @summary Render a published report
|
|
3146
3150
|
* @param {string} id
|
|
3147
|
-
* @param {'pdf' | 'pptx' | '
|
|
3151
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
3148
3152
|
* @param {*} [options] Override http request option.
|
|
3149
3153
|
* @throws {RequiredError}
|
|
3150
3154
|
* @memberof ReportsApi
|
|
3151
3155
|
*/
|
|
3152
|
-
public renderReport(id: string, format: 'pdf' | 'pptx' | '
|
|
3156
|
+
public renderReport(id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options?: any) {
|
|
3153
3157
|
return ReportsApiFp(this.configuration).renderReport(id, format, options).then((request) => request(this.axios, this.basePath));
|
|
3154
3158
|
}
|
|
3155
3159
|
}
|
|
@@ -3456,11 +3460,11 @@ export const TemplatesApiAxiosParamCreator = function (configuration?: Configura
|
|
|
3456
3460
|
* Render a report template to PDF, PPTX, or XLSX. Responds with a job entity.
|
|
3457
3461
|
* @summary Render a report template
|
|
3458
3462
|
* @param {string} id
|
|
3459
|
-
* @param {'pdf' | 'pptx' | '
|
|
3463
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
3460
3464
|
* @param {*} [options] Override http request option.
|
|
3461
3465
|
* @throws {RequiredError}
|
|
3462
3466
|
*/
|
|
3463
|
-
renderTemplate: async (id: string, format: 'pdf' | 'pptx' | '
|
|
3467
|
+
renderTemplate: async (id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options: any = {}): Promise<RequestArgs> => {
|
|
3464
3468
|
// verify required parameter 'id' is not null or undefined
|
|
3465
3469
|
assertParamExists('renderTemplate', 'id', id)
|
|
3466
3470
|
// verify required parameter 'format' is not null or undefined
|
|
@@ -3636,11 +3640,11 @@ export const TemplatesApiFp = function(configuration?: Configuration) {
|
|
|
3636
3640
|
* Render a report template to PDF, PPTX, or XLSX. Responds with a job entity.
|
|
3637
3641
|
* @summary Render a report template
|
|
3638
3642
|
* @param {string} id
|
|
3639
|
-
* @param {'pdf' | 'pptx' | '
|
|
3643
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
3640
3644
|
* @param {*} [options] Override http request option.
|
|
3641
3645
|
* @throws {RequiredError}
|
|
3642
3646
|
*/
|
|
3643
|
-
async renderTemplate(id: string, format: 'pdf' | 'pptx' | '
|
|
3647
|
+
async renderTemplate(id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JobResponse>> {
|
|
3644
3648
|
const localVarAxiosArgs = await localVarAxiosParamCreator.renderTemplate(id, format, options);
|
|
3645
3649
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3646
3650
|
},
|
|
@@ -3740,11 +3744,11 @@ export const TemplatesApiFactory = function (configuration?: Configuration, base
|
|
|
3740
3744
|
* Render a report template to PDF, PPTX, or XLSX. Responds with a job entity.
|
|
3741
3745
|
* @summary Render a report template
|
|
3742
3746
|
* @param {string} id
|
|
3743
|
-
* @param {'pdf' | 'pptx' | '
|
|
3747
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
3744
3748
|
* @param {*} [options] Override http request option.
|
|
3745
3749
|
* @throws {RequiredError}
|
|
3746
3750
|
*/
|
|
3747
|
-
renderTemplate(id: string, format: 'pdf' | 'pptx' | '
|
|
3751
|
+
renderTemplate(id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options?: any): AxiosPromise<JobResponse> {
|
|
3748
3752
|
return localVarFp.renderTemplate(id, format, options).then((request) => request(axios, basePath));
|
|
3749
3753
|
},
|
|
3750
3754
|
/**
|
|
@@ -3856,12 +3860,12 @@ export class TemplatesApi extends BaseAPI {
|
|
|
3856
3860
|
* Render a report template to PDF, PPTX, or XLSX. Responds with a job entity.
|
|
3857
3861
|
* @summary Render a report template
|
|
3858
3862
|
* @param {string} id
|
|
3859
|
-
* @param {'pdf' | 'pptx' | '
|
|
3863
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
3860
3864
|
* @param {*} [options] Override http request option.
|
|
3861
3865
|
* @throws {RequiredError}
|
|
3862
3866
|
* @memberof TemplatesApi
|
|
3863
3867
|
*/
|
|
3864
|
-
public renderTemplate(id: string, format: 'pdf' | 'pptx' | '
|
|
3868
|
+
public renderTemplate(id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options?: any) {
|
|
3865
3869
|
return TemplatesApiFp(this.configuration).renderTemplate(id, format, options).then((request) => request(this.axios, this.basePath));
|
|
3866
3870
|
}
|
|
3867
3871
|
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* ConnectReport Core API
|
|
5
5
|
* Leverage core reporting, templating, and document automation capabilities of ConnectReport Server.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 2.
|
|
7
|
+
* The version of the OpenAPI document: 2.48.3
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* ConnectReport Core API
|
|
5
5
|
* Leverage core reporting, templating, and document automation capabilities of ConnectReport Server.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 2.
|
|
7
|
+
* The version of the OpenAPI document: 2.48.3
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* ConnectReport Core API
|
|
5
5
|
* Leverage core reporting, templating, and document automation capabilities of ConnectReport Server.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 2.
|
|
7
|
+
* The version of the OpenAPI document: 2.48.3
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* ConnectReport Core API
|
|
3
3
|
* Leverage core reporting, templating, and document automation capabilities of ConnectReport Server.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 2.
|
|
5
|
+
* The version of the OpenAPI document: 2.48.3
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -196,7 +196,8 @@ export declare enum FilterCycleFrequencyEnum {
|
|
|
196
196
|
export declare enum FilterCycleEmailEnum {
|
|
197
197
|
Pdf = "pdf",
|
|
198
198
|
Pptx = "pptx",
|
|
199
|
-
Xlsx = "xlsx"
|
|
199
|
+
Xlsx = "xlsx",
|
|
200
|
+
Csv = "csv"
|
|
200
201
|
}
|
|
201
202
|
/**
|
|
202
203
|
*
|
|
@@ -676,7 +677,8 @@ export declare enum ReportTaskFrequencyEnum {
|
|
|
676
677
|
export declare enum ReportTaskEmailEnum {
|
|
677
678
|
Pdf = "pdf",
|
|
678
679
|
Pptx = "pptx",
|
|
679
|
-
Xlsx = "xlsx"
|
|
680
|
+
Xlsx = "xlsx",
|
|
681
|
+
Csv = "csv"
|
|
680
682
|
}
|
|
681
683
|
/**
|
|
682
684
|
*
|
|
@@ -926,7 +928,8 @@ export declare enum ReportTaskRequestFrequencyEnum {
|
|
|
926
928
|
export declare enum ReportTaskRequestEmailEnum {
|
|
927
929
|
Pdf = "pdf",
|
|
928
930
|
Pptx = "pptx",
|
|
929
|
-
Xlsx = "xlsx"
|
|
931
|
+
Xlsx = "xlsx",
|
|
932
|
+
Csv = "csv"
|
|
930
933
|
}
|
|
931
934
|
/**
|
|
932
935
|
*
|
|
@@ -1126,7 +1129,8 @@ export declare enum ReportTaskResponseFrequencyEnum {
|
|
|
1126
1129
|
export declare enum ReportTaskResponseEmailEnum {
|
|
1127
1130
|
Pdf = "pdf",
|
|
1128
1131
|
Pptx = "pptx",
|
|
1129
|
-
Xlsx = "xlsx"
|
|
1132
|
+
Xlsx = "xlsx",
|
|
1133
|
+
Csv = "csv"
|
|
1130
1134
|
}
|
|
1131
1135
|
/**
|
|
1132
1136
|
*
|
|
@@ -1413,12 +1417,12 @@ export declare const DocumentsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
1413
1417
|
*
|
|
1414
1418
|
* @summary Retrieve a generated document
|
|
1415
1419
|
* @param {string} fileName
|
|
1416
|
-
* @param {'pdf' | 'pptx' | '
|
|
1420
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} fileType
|
|
1417
1421
|
* @param {string} [attachmentName] A document file title. This value is reflected back to the client in the fileName header.
|
|
1418
1422
|
* @param {*} [options] Override http request option.
|
|
1419
1423
|
* @throws {RequiredError}
|
|
1420
1424
|
*/
|
|
1421
|
-
getDocument: (fileName: string, fileType: 'pdf' | 'pptx' | '
|
|
1425
|
+
getDocument: (fileName: string, fileType: 'pdf' | 'pptx' | 'xlsx' | 'csv', attachmentName?: string, options?: any) => Promise<RequestArgs>;
|
|
1422
1426
|
};
|
|
1423
1427
|
/**
|
|
1424
1428
|
* DocumentsApi - functional programming interface
|
|
@@ -1429,12 +1433,12 @@ export declare const DocumentsApiFp: (configuration?: Configuration) => {
|
|
|
1429
1433
|
*
|
|
1430
1434
|
* @summary Retrieve a generated document
|
|
1431
1435
|
* @param {string} fileName
|
|
1432
|
-
* @param {'pdf' | 'pptx' | '
|
|
1436
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} fileType
|
|
1433
1437
|
* @param {string} [attachmentName] A document file title. This value is reflected back to the client in the fileName header.
|
|
1434
1438
|
* @param {*} [options] Override http request option.
|
|
1435
1439
|
* @throws {RequiredError}
|
|
1436
1440
|
*/
|
|
1437
|
-
getDocument(fileName: string, fileType: 'pdf' | 'pptx' | '
|
|
1441
|
+
getDocument(fileName: string, fileType: 'pdf' | 'pptx' | 'xlsx' | 'csv', attachmentName?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1438
1442
|
};
|
|
1439
1443
|
/**
|
|
1440
1444
|
* DocumentsApi - factory interface
|
|
@@ -1445,12 +1449,12 @@ export declare const DocumentsApiFactory: (configuration?: Configuration, basePa
|
|
|
1445
1449
|
*
|
|
1446
1450
|
* @summary Retrieve a generated document
|
|
1447
1451
|
* @param {string} fileName
|
|
1448
|
-
* @param {'pdf' | 'pptx' | '
|
|
1452
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} fileType
|
|
1449
1453
|
* @param {string} [attachmentName] A document file title. This value is reflected back to the client in the fileName header.
|
|
1450
1454
|
* @param {*} [options] Override http request option.
|
|
1451
1455
|
* @throws {RequiredError}
|
|
1452
1456
|
*/
|
|
1453
|
-
getDocument(fileName: string, fileType: 'pdf' | 'pptx' | '
|
|
1457
|
+
getDocument(fileName: string, fileType: 'pdf' | 'pptx' | 'xlsx' | 'csv', attachmentName?: string, options?: any): AxiosPromise<any>;
|
|
1454
1458
|
};
|
|
1455
1459
|
/**
|
|
1456
1460
|
* DocumentsApi - object-oriented interface
|
|
@@ -1463,13 +1467,13 @@ export declare class DocumentsApi extends BaseAPI {
|
|
|
1463
1467
|
*
|
|
1464
1468
|
* @summary Retrieve a generated document
|
|
1465
1469
|
* @param {string} fileName
|
|
1466
|
-
* @param {'pdf' | 'pptx' | '
|
|
1470
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} fileType
|
|
1467
1471
|
* @param {string} [attachmentName] A document file title. This value is reflected back to the client in the fileName header.
|
|
1468
1472
|
* @param {*} [options] Override http request option.
|
|
1469
1473
|
* @throws {RequiredError}
|
|
1470
1474
|
* @memberof DocumentsApi
|
|
1471
1475
|
*/
|
|
1472
|
-
getDocument(fileName: string, fileType: 'pdf' | 'pptx' | '
|
|
1476
|
+
getDocument(fileName: string, fileType: 'pdf' | 'pptx' | 'xlsx' | 'csv', attachmentName?: string, options?: any): Promise<import("axios").AxiosResponse<any>>;
|
|
1473
1477
|
}
|
|
1474
1478
|
/**
|
|
1475
1479
|
* FilterCyclesApi - axios parameter creator
|
|
@@ -2071,11 +2075,11 @@ export declare const ReportsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2071
2075
|
*
|
|
2072
2076
|
* @summary Render a published report
|
|
2073
2077
|
* @param {string} id
|
|
2074
|
-
* @param {'pdf' | 'pptx' | '
|
|
2078
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
2075
2079
|
* @param {*} [options] Override http request option.
|
|
2076
2080
|
* @throws {RequiredError}
|
|
2077
2081
|
*/
|
|
2078
|
-
renderReport: (id: string, format: 'pdf' | 'pptx' | '
|
|
2082
|
+
renderReport: (id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options?: any) => Promise<RequestArgs>;
|
|
2079
2083
|
};
|
|
2080
2084
|
/**
|
|
2081
2085
|
* ReportsApi - functional programming interface
|
|
@@ -2112,11 +2116,11 @@ export declare const ReportsApiFp: (configuration?: Configuration) => {
|
|
|
2112
2116
|
*
|
|
2113
2117
|
* @summary Render a published report
|
|
2114
2118
|
* @param {string} id
|
|
2115
|
-
* @param {'pdf' | 'pptx' | '
|
|
2119
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
2116
2120
|
* @param {*} [options] Override http request option.
|
|
2117
2121
|
* @throws {RequiredError}
|
|
2118
2122
|
*/
|
|
2119
|
-
renderReport(id: string, format: 'pdf' | 'pptx' | '
|
|
2123
|
+
renderReport(id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Job>>;
|
|
2120
2124
|
};
|
|
2121
2125
|
/**
|
|
2122
2126
|
* ReportsApi - factory interface
|
|
@@ -2153,11 +2157,11 @@ export declare const ReportsApiFactory: (configuration?: Configuration, basePath
|
|
|
2153
2157
|
*
|
|
2154
2158
|
* @summary Render a published report
|
|
2155
2159
|
* @param {string} id
|
|
2156
|
-
* @param {'pdf' | 'pptx' | '
|
|
2160
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
2157
2161
|
* @param {*} [options] Override http request option.
|
|
2158
2162
|
* @throws {RequiredError}
|
|
2159
2163
|
*/
|
|
2160
|
-
renderReport(id: string, format: 'pdf' | 'pptx' | '
|
|
2164
|
+
renderReport(id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options?: any): AxiosPromise<Job>;
|
|
2161
2165
|
};
|
|
2162
2166
|
/**
|
|
2163
2167
|
* ReportsApi - object-oriented interface
|
|
@@ -2199,12 +2203,12 @@ export declare class ReportsApi extends BaseAPI {
|
|
|
2199
2203
|
*
|
|
2200
2204
|
* @summary Render a published report
|
|
2201
2205
|
* @param {string} id
|
|
2202
|
-
* @param {'pdf' | 'pptx' | '
|
|
2206
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
2203
2207
|
* @param {*} [options] Override http request option.
|
|
2204
2208
|
* @throws {RequiredError}
|
|
2205
2209
|
* @memberof ReportsApi
|
|
2206
2210
|
*/
|
|
2207
|
-
renderReport(id: string, format: 'pdf' | 'pptx' | '
|
|
2211
|
+
renderReport(id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options?: any): Promise<import("axios").AxiosResponse<Job>>;
|
|
2208
2212
|
}
|
|
2209
2213
|
/**
|
|
2210
2214
|
* TemplatesApi - axios parameter creator
|
|
@@ -2271,11 +2275,11 @@ export declare const TemplatesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
2271
2275
|
* Render a report template to PDF, PPTX, or XLSX. Responds with a job entity.
|
|
2272
2276
|
* @summary Render a report template
|
|
2273
2277
|
* @param {string} id
|
|
2274
|
-
* @param {'pdf' | 'pptx' | '
|
|
2278
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
2275
2279
|
* @param {*} [options] Override http request option.
|
|
2276
2280
|
* @throws {RequiredError}
|
|
2277
2281
|
*/
|
|
2278
|
-
renderTemplate: (id: string, format: 'pdf' | 'pptx' | '
|
|
2282
|
+
renderTemplate: (id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options?: any) => Promise<RequestArgs>;
|
|
2279
2283
|
/**
|
|
2280
2284
|
* Accepts partial updates
|
|
2281
2285
|
* @summary Update report template by ID
|
|
@@ -2351,11 +2355,11 @@ export declare const TemplatesApiFp: (configuration?: Configuration) => {
|
|
|
2351
2355
|
* Render a report template to PDF, PPTX, or XLSX. Responds with a job entity.
|
|
2352
2356
|
* @summary Render a report template
|
|
2353
2357
|
* @param {string} id
|
|
2354
|
-
* @param {'pdf' | 'pptx' | '
|
|
2358
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
2355
2359
|
* @param {*} [options] Override http request option.
|
|
2356
2360
|
* @throws {RequiredError}
|
|
2357
2361
|
*/
|
|
2358
|
-
renderTemplate(id: string, format: 'pdf' | 'pptx' | '
|
|
2362
|
+
renderTemplate(id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JobResponse>>;
|
|
2359
2363
|
/**
|
|
2360
2364
|
* Accepts partial updates
|
|
2361
2365
|
* @summary Update report template by ID
|
|
@@ -2431,11 +2435,11 @@ export declare const TemplatesApiFactory: (configuration?: Configuration, basePa
|
|
|
2431
2435
|
* Render a report template to PDF, PPTX, or XLSX. Responds with a job entity.
|
|
2432
2436
|
* @summary Render a report template
|
|
2433
2437
|
* @param {string} id
|
|
2434
|
-
* @param {'pdf' | 'pptx' | '
|
|
2438
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
2435
2439
|
* @param {*} [options] Override http request option.
|
|
2436
2440
|
* @throws {RequiredError}
|
|
2437
2441
|
*/
|
|
2438
|
-
renderTemplate(id: string, format: 'pdf' | 'pptx' | '
|
|
2442
|
+
renderTemplate(id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options?: any): AxiosPromise<JobResponse>;
|
|
2439
2443
|
/**
|
|
2440
2444
|
* Accepts partial updates
|
|
2441
2445
|
* @summary Update report template by ID
|
|
@@ -2520,12 +2524,12 @@ export declare class TemplatesApi extends BaseAPI {
|
|
|
2520
2524
|
* Render a report template to PDF, PPTX, or XLSX. Responds with a job entity.
|
|
2521
2525
|
* @summary Render a report template
|
|
2522
2526
|
* @param {string} id
|
|
2523
|
-
* @param {'pdf' | 'pptx' | '
|
|
2527
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
2524
2528
|
* @param {*} [options] Override http request option.
|
|
2525
2529
|
* @throws {RequiredError}
|
|
2526
2530
|
* @memberof TemplatesApi
|
|
2527
2531
|
*/
|
|
2528
|
-
renderTemplate(id: string, format: 'pdf' | 'pptx' | '
|
|
2532
|
+
renderTemplate(id: string, format: 'pdf' | 'pptx' | 'xlsx' | 'csv', options?: any): Promise<import("axios").AxiosResponse<JobResponse>>;
|
|
2529
2533
|
/**
|
|
2530
2534
|
* Accepts partial updates
|
|
2531
2535
|
* @summary Update report template by ID
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* ConnectReport Core API
|
|
6
6
|
* Leverage core reporting, templating, and document automation capabilities of ConnectReport Server.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 2.
|
|
8
|
+
* The version of the OpenAPI document: 2.48.3
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -102,6 +102,7 @@ var FilterCycleEmailEnum;
|
|
|
102
102
|
FilterCycleEmailEnum["Pdf"] = "pdf";
|
|
103
103
|
FilterCycleEmailEnum["Pptx"] = "pptx";
|
|
104
104
|
FilterCycleEmailEnum["Xlsx"] = "xlsx";
|
|
105
|
+
FilterCycleEmailEnum["Csv"] = "csv";
|
|
105
106
|
})(FilterCycleEmailEnum = exports.FilterCycleEmailEnum || (exports.FilterCycleEmailEnum = {}));
|
|
106
107
|
/**
|
|
107
108
|
* @export
|
|
@@ -125,6 +126,7 @@ var ReportTaskEmailEnum;
|
|
|
125
126
|
ReportTaskEmailEnum["Pdf"] = "pdf";
|
|
126
127
|
ReportTaskEmailEnum["Pptx"] = "pptx";
|
|
127
128
|
ReportTaskEmailEnum["Xlsx"] = "xlsx";
|
|
129
|
+
ReportTaskEmailEnum["Csv"] = "csv";
|
|
128
130
|
})(ReportTaskEmailEnum = exports.ReportTaskEmailEnum || (exports.ReportTaskEmailEnum = {}));
|
|
129
131
|
/**
|
|
130
132
|
* @export
|
|
@@ -148,6 +150,7 @@ var ReportTaskRequestEmailEnum;
|
|
|
148
150
|
ReportTaskRequestEmailEnum["Pdf"] = "pdf";
|
|
149
151
|
ReportTaskRequestEmailEnum["Pptx"] = "pptx";
|
|
150
152
|
ReportTaskRequestEmailEnum["Xlsx"] = "xlsx";
|
|
153
|
+
ReportTaskRequestEmailEnum["Csv"] = "csv";
|
|
151
154
|
})(ReportTaskRequestEmailEnum = exports.ReportTaskRequestEmailEnum || (exports.ReportTaskRequestEmailEnum = {}));
|
|
152
155
|
/**
|
|
153
156
|
* @export
|
|
@@ -171,6 +174,7 @@ var ReportTaskResponseEmailEnum;
|
|
|
171
174
|
ReportTaskResponseEmailEnum["Pdf"] = "pdf";
|
|
172
175
|
ReportTaskResponseEmailEnum["Pptx"] = "pptx";
|
|
173
176
|
ReportTaskResponseEmailEnum["Xlsx"] = "xlsx";
|
|
177
|
+
ReportTaskResponseEmailEnum["Csv"] = "csv";
|
|
174
178
|
})(ReportTaskResponseEmailEnum = exports.ReportTaskResponseEmailEnum || (exports.ReportTaskResponseEmailEnum = {}));
|
|
175
179
|
/**
|
|
176
180
|
* @export
|
|
@@ -400,7 +404,7 @@ exports.DocumentsApiAxiosParamCreator = function (configuration) {
|
|
|
400
404
|
*
|
|
401
405
|
* @summary Retrieve a generated document
|
|
402
406
|
* @param {string} fileName
|
|
403
|
-
* @param {'pdf' | 'pptx' | '
|
|
407
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} fileType
|
|
404
408
|
* @param {string} [attachmentName] A document file title. This value is reflected back to the client in the fileName header.
|
|
405
409
|
* @param {*} [options] Override http request option.
|
|
406
410
|
* @throws {RequiredError}
|
|
@@ -462,7 +466,7 @@ exports.DocumentsApiFp = function (configuration) {
|
|
|
462
466
|
*
|
|
463
467
|
* @summary Retrieve a generated document
|
|
464
468
|
* @param {string} fileName
|
|
465
|
-
* @param {'pdf' | 'pptx' | '
|
|
469
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} fileType
|
|
466
470
|
* @param {string} [attachmentName] A document file title. This value is reflected back to the client in the fileName header.
|
|
467
471
|
* @param {*} [options] Override http request option.
|
|
468
472
|
* @throws {RequiredError}
|
|
@@ -493,7 +497,7 @@ exports.DocumentsApiFactory = function (configuration, basePath, axios) {
|
|
|
493
497
|
*
|
|
494
498
|
* @summary Retrieve a generated document
|
|
495
499
|
* @param {string} fileName
|
|
496
|
-
* @param {'pdf' | 'pptx' | '
|
|
500
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} fileType
|
|
497
501
|
* @param {string} [attachmentName] A document file title. This value is reflected back to the client in the fileName header.
|
|
498
502
|
* @param {*} [options] Override http request option.
|
|
499
503
|
* @throws {RequiredError}
|
|
@@ -518,7 +522,7 @@ var DocumentsApi = /** @class */ (function (_super) {
|
|
|
518
522
|
*
|
|
519
523
|
* @summary Retrieve a generated document
|
|
520
524
|
* @param {string} fileName
|
|
521
|
-
* @param {'pdf' | 'pptx' | '
|
|
525
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} fileType
|
|
522
526
|
* @param {string} [attachmentName] A document file title. This value is reflected back to the client in the fileName header.
|
|
523
527
|
* @param {*} [options] Override http request option.
|
|
524
528
|
* @throws {RequiredError}
|
|
@@ -2034,7 +2038,7 @@ exports.ReportsApiAxiosParamCreator = function (configuration) {
|
|
|
2034
2038
|
*
|
|
2035
2039
|
* @summary Render a published report
|
|
2036
2040
|
* @param {string} id
|
|
2037
|
-
* @param {'pdf' | 'pptx' | '
|
|
2041
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
2038
2042
|
* @param {*} [options] Override http request option.
|
|
2039
2043
|
* @throws {RequiredError}
|
|
2040
2044
|
*/
|
|
@@ -2156,7 +2160,7 @@ exports.ReportsApiFp = function (configuration) {
|
|
|
2156
2160
|
*
|
|
2157
2161
|
* @summary Render a published report
|
|
2158
2162
|
* @param {string} id
|
|
2159
|
-
* @param {'pdf' | 'pptx' | '
|
|
2163
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
2160
2164
|
* @param {*} [options] Override http request option.
|
|
2161
2165
|
* @throws {RequiredError}
|
|
2162
2166
|
*/
|
|
@@ -2218,7 +2222,7 @@ exports.ReportsApiFactory = function (configuration, basePath, axios) {
|
|
|
2218
2222
|
*
|
|
2219
2223
|
* @summary Render a published report
|
|
2220
2224
|
* @param {string} id
|
|
2221
|
-
* @param {'pdf' | 'pptx' | '
|
|
2225
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
2222
2226
|
* @param {*} [options] Override http request option.
|
|
2223
2227
|
* @throws {RequiredError}
|
|
2224
2228
|
*/
|
|
@@ -2280,7 +2284,7 @@ var ReportsApi = /** @class */ (function (_super) {
|
|
|
2280
2284
|
*
|
|
2281
2285
|
* @summary Render a published report
|
|
2282
2286
|
* @param {string} id
|
|
2283
|
-
* @param {'pdf' | 'pptx' | '
|
|
2287
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
2284
2288
|
* @param {*} [options] Override http request option.
|
|
2285
2289
|
* @throws {RequiredError}
|
|
2286
2290
|
* @memberof ReportsApi
|
|
@@ -2625,7 +2629,7 @@ exports.TemplatesApiAxiosParamCreator = function (configuration) {
|
|
|
2625
2629
|
* Render a report template to PDF, PPTX, or XLSX. Responds with a job entity.
|
|
2626
2630
|
* @summary Render a report template
|
|
2627
2631
|
* @param {string} id
|
|
2628
|
-
* @param {'pdf' | 'pptx' | '
|
|
2632
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
2629
2633
|
* @param {*} [options] Override http request option.
|
|
2630
2634
|
* @throws {RequiredError}
|
|
2631
2635
|
*/
|
|
@@ -2875,7 +2879,7 @@ exports.TemplatesApiFp = function (configuration) {
|
|
|
2875
2879
|
* Render a report template to PDF, PPTX, or XLSX. Responds with a job entity.
|
|
2876
2880
|
* @summary Render a report template
|
|
2877
2881
|
* @param {string} id
|
|
2878
|
-
* @param {'pdf' | 'pptx' | '
|
|
2882
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
2879
2883
|
* @param {*} [options] Override http request option.
|
|
2880
2884
|
* @throws {RequiredError}
|
|
2881
2885
|
*/
|
|
@@ -2996,7 +3000,7 @@ exports.TemplatesApiFactory = function (configuration, basePath, axios) {
|
|
|
2996
3000
|
* Render a report template to PDF, PPTX, or XLSX. Responds with a job entity.
|
|
2997
3001
|
* @summary Render a report template
|
|
2998
3002
|
* @param {string} id
|
|
2999
|
-
* @param {'pdf' | 'pptx' | '
|
|
3003
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
3000
3004
|
* @param {*} [options] Override http request option.
|
|
3001
3005
|
* @throws {RequiredError}
|
|
3002
3006
|
*/
|
|
@@ -3115,7 +3119,7 @@ var TemplatesApi = /** @class */ (function (_super) {
|
|
|
3115
3119
|
* Render a report template to PDF, PPTX, or XLSX. Responds with a job entity.
|
|
3116
3120
|
* @summary Render a report template
|
|
3117
3121
|
* @param {string} id
|
|
3118
|
-
* @param {'pdf' | 'pptx' | '
|
|
3122
|
+
* @param {'pdf' | 'pptx' | 'xlsx' | 'csv'} format
|
|
3119
3123
|
* @param {*} [options] Override http request option.
|
|
3120
3124
|
* @throws {RequiredError}
|
|
3121
3125
|
* @memberof TemplatesApi
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* ConnectReport Core API
|
|
3
3
|
* Leverage core reporting, templating, and document automation capabilities of ConnectReport Server.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 2.
|
|
5
|
+
* The version of the OpenAPI document: 2.48.3
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* ConnectReport Core API
|
|
6
6
|
* Leverage core reporting, templating, and document automation capabilities of ConnectReport Server.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 2.
|
|
8
|
+
* The version of the OpenAPI document: 2.48.3
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* ConnectReport Core API
|
|
3
3
|
* Leverage core reporting, templating, and document automation capabilities of ConnectReport Server.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 2.
|
|
5
|
+
* The version of the OpenAPI document: 2.48.3
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* ConnectReport Core API
|
|
6
6
|
* Leverage core reporting, templating, and document automation capabilities of ConnectReport Server.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 2.
|
|
8
|
+
* The version of the OpenAPI document: 2.48.3
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* ConnectReport Core API
|
|
3
3
|
* Leverage core reporting, templating, and document automation capabilities of ConnectReport Server.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 2.
|
|
5
|
+
* The version of the OpenAPI document: 2.48.3
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* ConnectReport Core API
|
|
6
6
|
* Leverage core reporting, templating, and document automation capabilities of ConnectReport Server.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 2.
|
|
8
|
+
* The version of the OpenAPI document: 2.48.3
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|