@connectreport/connectreport-js 2.81.0-beta.3 → 2.81.0-beta.4
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 +1 -1
- package/api.ts +122 -3
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +124 -5
- package/dist/index.d.ts +124 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -5,7 +5,7 @@ import { AxiosInstance, AxiosPromise } from 'axios';
|
|
|
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.81.1
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -91,7 +91,7 @@ declare class Configuration {
|
|
|
91
91
|
* ConnectReport Core API
|
|
92
92
|
* Leverage core reporting, templating, and document automation capabilities of ConnectReport Server.
|
|
93
93
|
*
|
|
94
|
-
* The version of the OpenAPI document: 2.
|
|
94
|
+
* The version of the OpenAPI document: 2.81.1
|
|
95
95
|
*
|
|
96
96
|
*
|
|
97
97
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -150,6 +150,12 @@ interface CycleConfig {
|
|
|
150
150
|
* @memberof CycleConfig
|
|
151
151
|
*/
|
|
152
152
|
tableColumns: Array<FieldInfo>;
|
|
153
|
+
/**
|
|
154
|
+
* Maximum number of rows to fetch from the data source
|
|
155
|
+
* @type {number}
|
|
156
|
+
* @memberof CycleConfig
|
|
157
|
+
*/
|
|
158
|
+
tableHeight?: number;
|
|
153
159
|
/**
|
|
154
160
|
*
|
|
155
161
|
* @type {RowExclusion}
|
|
@@ -1067,12 +1073,24 @@ interface ReportTaskCustomSelection {
|
|
|
1067
1073
|
* @memberof ReportTaskCustomSelection
|
|
1068
1074
|
*/
|
|
1069
1075
|
fieldDef?: string;
|
|
1076
|
+
/**
|
|
1077
|
+
* The name of the table containing this field.
|
|
1078
|
+
* @type {string}
|
|
1079
|
+
* @memberof ReportTaskCustomSelection
|
|
1080
|
+
*/
|
|
1081
|
+
tableName?: string;
|
|
1070
1082
|
/**
|
|
1071
1083
|
*
|
|
1072
1084
|
* @type {Array<ReportTaskFieldValues>}
|
|
1073
1085
|
* @memberof ReportTaskCustomSelection
|
|
1074
1086
|
*/
|
|
1075
1087
|
fieldValues?: Array<ReportTaskFieldValues>;
|
|
1088
|
+
/**
|
|
1089
|
+
* Optional mappings to target specific report fields with optional scoping
|
|
1090
|
+
* @type {Array<ReportTaskMappings>}
|
|
1091
|
+
* @memberof ReportTaskCustomSelection
|
|
1092
|
+
*/
|
|
1093
|
+
mappings?: Array<ReportTaskMappings>;
|
|
1076
1094
|
}
|
|
1077
1095
|
/**
|
|
1078
1096
|
*
|
|
@@ -1150,6 +1168,25 @@ interface ReportTaskGroupsToShareWith {
|
|
|
1150
1168
|
*/
|
|
1151
1169
|
groupId?: string;
|
|
1152
1170
|
}
|
|
1171
|
+
/**
|
|
1172
|
+
*
|
|
1173
|
+
* @export
|
|
1174
|
+
* @interface ReportTaskMappings
|
|
1175
|
+
*/
|
|
1176
|
+
interface ReportTaskMappings {
|
|
1177
|
+
/**
|
|
1178
|
+
*
|
|
1179
|
+
* @type {ReportTaskTo}
|
|
1180
|
+
* @memberof ReportTaskMappings
|
|
1181
|
+
*/
|
|
1182
|
+
to?: ReportTaskTo;
|
|
1183
|
+
/**
|
|
1184
|
+
*
|
|
1185
|
+
* @type {ReportTaskScope}
|
|
1186
|
+
* @memberof ReportTaskMappings
|
|
1187
|
+
*/
|
|
1188
|
+
scope?: ReportTaskScope;
|
|
1189
|
+
}
|
|
1153
1190
|
/**
|
|
1154
1191
|
*
|
|
1155
1192
|
* @export
|
|
@@ -1765,6 +1802,38 @@ interface ReportTaskResponseAllOfUsersToShareWith {
|
|
|
1765
1802
|
*/
|
|
1766
1803
|
email?: string;
|
|
1767
1804
|
}
|
|
1805
|
+
/**
|
|
1806
|
+
*
|
|
1807
|
+
* @export
|
|
1808
|
+
* @interface ReportTaskScope
|
|
1809
|
+
*/
|
|
1810
|
+
interface ReportTaskScope {
|
|
1811
|
+
/**
|
|
1812
|
+
*
|
|
1813
|
+
* @type {Array<ReportTaskScopeObjects>}
|
|
1814
|
+
* @memberof ReportTaskScope
|
|
1815
|
+
*/
|
|
1816
|
+
objects?: Array<ReportTaskScopeObjects>;
|
|
1817
|
+
}
|
|
1818
|
+
/**
|
|
1819
|
+
*
|
|
1820
|
+
* @export
|
|
1821
|
+
* @interface ReportTaskScopeObjects
|
|
1822
|
+
*/
|
|
1823
|
+
interface ReportTaskScopeObjects {
|
|
1824
|
+
/**
|
|
1825
|
+
*
|
|
1826
|
+
* @type {string}
|
|
1827
|
+
* @memberof ReportTaskScopeObjects
|
|
1828
|
+
*/
|
|
1829
|
+
objectKey?: string;
|
|
1830
|
+
/**
|
|
1831
|
+
*
|
|
1832
|
+
* @type {boolean}
|
|
1833
|
+
* @memberof ReportTaskScopeObjects
|
|
1834
|
+
*/
|
|
1835
|
+
included?: boolean;
|
|
1836
|
+
}
|
|
1768
1837
|
/**
|
|
1769
1838
|
*
|
|
1770
1839
|
* @export
|
|
@@ -1784,6 +1853,31 @@ interface ReportTaskTags {
|
|
|
1784
1853
|
*/
|
|
1785
1854
|
name?: string;
|
|
1786
1855
|
}
|
|
1856
|
+
/**
|
|
1857
|
+
*
|
|
1858
|
+
* @export
|
|
1859
|
+
* @interface ReportTaskTo
|
|
1860
|
+
*/
|
|
1861
|
+
interface ReportTaskTo {
|
|
1862
|
+
/**
|
|
1863
|
+
*
|
|
1864
|
+
* @type {string}
|
|
1865
|
+
* @memberof ReportTaskTo
|
|
1866
|
+
*/
|
|
1867
|
+
fieldName?: string;
|
|
1868
|
+
/**
|
|
1869
|
+
*
|
|
1870
|
+
* @type {string}
|
|
1871
|
+
* @memberof ReportTaskTo
|
|
1872
|
+
*/
|
|
1873
|
+
fieldDef?: string;
|
|
1874
|
+
/**
|
|
1875
|
+
*
|
|
1876
|
+
* @type {string}
|
|
1877
|
+
* @memberof ReportTaskTo
|
|
1878
|
+
*/
|
|
1879
|
+
tableName?: string;
|
|
1880
|
+
}
|
|
1787
1881
|
/**
|
|
1788
1882
|
*
|
|
1789
1883
|
* @export
|
|
@@ -1948,10 +2042,10 @@ interface Visualization {
|
|
|
1948
2042
|
filterSets?: Array<ReportTaskFilterSets>;
|
|
1949
2043
|
/**
|
|
1950
2044
|
* Custom filters to apply. This field will be updated entirely if provided
|
|
1951
|
-
* @type {Array<
|
|
2045
|
+
* @type {Array<VisualizationSelections>}
|
|
1952
2046
|
* @memberof Visualization
|
|
1953
2047
|
*/
|
|
1954
|
-
selections?: Array<
|
|
2048
|
+
selections?: Array<VisualizationSelections>;
|
|
1955
2049
|
/**
|
|
1956
2050
|
*
|
|
1957
2051
|
* @type {Array<ReportTaskVariables>}
|
|
@@ -1959,6 +2053,31 @@ interface Visualization {
|
|
|
1959
2053
|
*/
|
|
1960
2054
|
variables?: Array<ReportTaskVariables>;
|
|
1961
2055
|
}
|
|
2056
|
+
/**
|
|
2057
|
+
*
|
|
2058
|
+
* @export
|
|
2059
|
+
* @interface VisualizationSelections
|
|
2060
|
+
*/
|
|
2061
|
+
interface VisualizationSelections {
|
|
2062
|
+
/**
|
|
2063
|
+
* The label of the field. Used for display in certain scenarios.
|
|
2064
|
+
* @type {string}
|
|
2065
|
+
* @memberof VisualizationSelections
|
|
2066
|
+
*/
|
|
2067
|
+
fieldName?: string;
|
|
2068
|
+
/**
|
|
2069
|
+
* The definition of the field.
|
|
2070
|
+
* @type {string}
|
|
2071
|
+
* @memberof VisualizationSelections
|
|
2072
|
+
*/
|
|
2073
|
+
fieldDef?: string;
|
|
2074
|
+
/**
|
|
2075
|
+
*
|
|
2076
|
+
* @type {Array<ReportTaskFieldValues>}
|
|
2077
|
+
* @memberof VisualizationSelections
|
|
2078
|
+
*/
|
|
2079
|
+
fieldValues?: Array<ReportTaskFieldValues>;
|
|
2080
|
+
}
|
|
1962
2081
|
/**
|
|
1963
2082
|
* BaseTemplatesApi - axios parameter creator
|
|
1964
2083
|
* @export
|
|
@@ -3525,4 +3644,4 @@ declare class ConnectReport {
|
|
|
3525
3644
|
constructor(config: Pick<Configuration, "apiKey" | "basePath" | "formDataCtor" | "httpsAgent">);
|
|
3526
3645
|
}
|
|
3527
3646
|
|
|
3528
|
-
export { BaseTemplatesApi, BaseTemplatesApiAxiosParamCreator, BaseTemplatesApiFactory, BaseTemplatesApiFp, ConnectReport, type CycleConfig, CycleConfigConfigTypeEnum, DocumentsApi, DocumentsApiAxiosParamCreator, DocumentsApiFactory, DocumentsApiFp, type FieldInfo, type FilterCycle, type FilterCycleAllOf, type FilterCycleAllOfFieldInfo, type FilterCycleAllOfFieldValues, FilterCycleEmailEnum, FilterCycleFrequencyEnum, FilterCyclesApi, FilterCyclesApiAxiosParamCreator, FilterCyclesApiFactory, FilterCyclesApiFp, type FilterMapping, ImagesApi, ImagesApiAxiosParamCreator, ImagesApiFactory, ImagesApiFp, type InlineResponse200, type InlineResponse2001, type InlineResponse2002, type InlineResponse2003, type InlineResponse2004, type Job, type JobResponse, JobsApi, JobsApiAxiosParamCreator, JobsApiFactory, JobsApiFp, type ModelError, type Report, type ReportTask, type ReportTaskCustomSelection, ReportTaskEmailEnum, type ReportTaskErrors, type ReportTaskFieldValues, type ReportTaskFilterSets, ReportTaskFrequencyEnum, type ReportTaskGroupsToShareWith, type ReportTaskRequest, type ReportTaskRequestAllOf, type ReportTaskRequestAllOfUsersToShareWith, ReportTaskRequestEmailEnum, ReportTaskRequestFrequencyEnum, type ReportTaskResponse, type ReportTaskResponseAllOf, type ReportTaskResponseAllOfGroupsSharedWith, type ReportTaskResponseAllOfUsersToShareWith, ReportTaskResponseEmailEnum, ReportTaskResponseFrequencyEnum, type ReportTaskTags, type ReportTaskVariables, ReportTasksApi, ReportTasksApiAxiosParamCreator, ReportTasksApiFactory, ReportTasksApiFp, ReportTypeEnum, ReportsApi, ReportsApiAxiosParamCreator, ReportsApiFactory, ReportsApiFp, type RowExclusion, type RowExclusionFieldValues, type Template, TemplateTypeEnum, TemplatesApi, TemplatesApiAxiosParamCreator, TemplatesApiFactory, TemplatesApiFp, type Visualization, VisualizationApi, VisualizationApiAxiosParamCreator, VisualizationApiFactory, VisualizationApiFp };
|
|
3647
|
+
export { BaseTemplatesApi, BaseTemplatesApiAxiosParamCreator, BaseTemplatesApiFactory, BaseTemplatesApiFp, ConnectReport, type CycleConfig, CycleConfigConfigTypeEnum, DocumentsApi, DocumentsApiAxiosParamCreator, DocumentsApiFactory, DocumentsApiFp, type FieldInfo, type FilterCycle, type FilterCycleAllOf, type FilterCycleAllOfFieldInfo, type FilterCycleAllOfFieldValues, FilterCycleEmailEnum, FilterCycleFrequencyEnum, FilterCyclesApi, FilterCyclesApiAxiosParamCreator, FilterCyclesApiFactory, FilterCyclesApiFp, type FilterMapping, ImagesApi, ImagesApiAxiosParamCreator, ImagesApiFactory, ImagesApiFp, type InlineResponse200, type InlineResponse2001, type InlineResponse2002, type InlineResponse2003, type InlineResponse2004, type Job, type JobResponse, JobsApi, JobsApiAxiosParamCreator, JobsApiFactory, JobsApiFp, type ModelError, type Report, type ReportTask, type ReportTaskCustomSelection, ReportTaskEmailEnum, type ReportTaskErrors, type ReportTaskFieldValues, type ReportTaskFilterSets, ReportTaskFrequencyEnum, type ReportTaskGroupsToShareWith, type ReportTaskMappings, type ReportTaskRequest, type ReportTaskRequestAllOf, type ReportTaskRequestAllOfUsersToShareWith, ReportTaskRequestEmailEnum, ReportTaskRequestFrequencyEnum, type ReportTaskResponse, type ReportTaskResponseAllOf, type ReportTaskResponseAllOfGroupsSharedWith, type ReportTaskResponseAllOfUsersToShareWith, ReportTaskResponseEmailEnum, ReportTaskResponseFrequencyEnum, type ReportTaskScope, type ReportTaskScopeObjects, type ReportTaskTags, type ReportTaskTo, type ReportTaskVariables, ReportTasksApi, ReportTasksApiAxiosParamCreator, ReportTasksApiFactory, ReportTasksApiFp, ReportTypeEnum, ReportsApi, ReportsApiAxiosParamCreator, ReportsApiFactory, ReportsApiFp, type RowExclusion, type RowExclusionFieldValues, type Template, TemplateTypeEnum, TemplatesApi, TemplatesApiAxiosParamCreator, TemplatesApiFactory, TemplatesApiFp, type Visualization, VisualizationApi, VisualizationApiAxiosParamCreator, VisualizationApiFactory, VisualizationApiFp, type VisualizationSelections };
|
package/dist/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { AxiosInstance, AxiosPromise } from 'axios';
|
|
|
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.81.1
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -91,7 +91,7 @@ declare class Configuration {
|
|
|
91
91
|
* ConnectReport Core API
|
|
92
92
|
* Leverage core reporting, templating, and document automation capabilities of ConnectReport Server.
|
|
93
93
|
*
|
|
94
|
-
* The version of the OpenAPI document: 2.
|
|
94
|
+
* The version of the OpenAPI document: 2.81.1
|
|
95
95
|
*
|
|
96
96
|
*
|
|
97
97
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -150,6 +150,12 @@ interface CycleConfig {
|
|
|
150
150
|
* @memberof CycleConfig
|
|
151
151
|
*/
|
|
152
152
|
tableColumns: Array<FieldInfo>;
|
|
153
|
+
/**
|
|
154
|
+
* Maximum number of rows to fetch from the data source
|
|
155
|
+
* @type {number}
|
|
156
|
+
* @memberof CycleConfig
|
|
157
|
+
*/
|
|
158
|
+
tableHeight?: number;
|
|
153
159
|
/**
|
|
154
160
|
*
|
|
155
161
|
* @type {RowExclusion}
|
|
@@ -1067,12 +1073,24 @@ interface ReportTaskCustomSelection {
|
|
|
1067
1073
|
* @memberof ReportTaskCustomSelection
|
|
1068
1074
|
*/
|
|
1069
1075
|
fieldDef?: string;
|
|
1076
|
+
/**
|
|
1077
|
+
* The name of the table containing this field.
|
|
1078
|
+
* @type {string}
|
|
1079
|
+
* @memberof ReportTaskCustomSelection
|
|
1080
|
+
*/
|
|
1081
|
+
tableName?: string;
|
|
1070
1082
|
/**
|
|
1071
1083
|
*
|
|
1072
1084
|
* @type {Array<ReportTaskFieldValues>}
|
|
1073
1085
|
* @memberof ReportTaskCustomSelection
|
|
1074
1086
|
*/
|
|
1075
1087
|
fieldValues?: Array<ReportTaskFieldValues>;
|
|
1088
|
+
/**
|
|
1089
|
+
* Optional mappings to target specific report fields with optional scoping
|
|
1090
|
+
* @type {Array<ReportTaskMappings>}
|
|
1091
|
+
* @memberof ReportTaskCustomSelection
|
|
1092
|
+
*/
|
|
1093
|
+
mappings?: Array<ReportTaskMappings>;
|
|
1076
1094
|
}
|
|
1077
1095
|
/**
|
|
1078
1096
|
*
|
|
@@ -1150,6 +1168,25 @@ interface ReportTaskGroupsToShareWith {
|
|
|
1150
1168
|
*/
|
|
1151
1169
|
groupId?: string;
|
|
1152
1170
|
}
|
|
1171
|
+
/**
|
|
1172
|
+
*
|
|
1173
|
+
* @export
|
|
1174
|
+
* @interface ReportTaskMappings
|
|
1175
|
+
*/
|
|
1176
|
+
interface ReportTaskMappings {
|
|
1177
|
+
/**
|
|
1178
|
+
*
|
|
1179
|
+
* @type {ReportTaskTo}
|
|
1180
|
+
* @memberof ReportTaskMappings
|
|
1181
|
+
*/
|
|
1182
|
+
to?: ReportTaskTo;
|
|
1183
|
+
/**
|
|
1184
|
+
*
|
|
1185
|
+
* @type {ReportTaskScope}
|
|
1186
|
+
* @memberof ReportTaskMappings
|
|
1187
|
+
*/
|
|
1188
|
+
scope?: ReportTaskScope;
|
|
1189
|
+
}
|
|
1153
1190
|
/**
|
|
1154
1191
|
*
|
|
1155
1192
|
* @export
|
|
@@ -1765,6 +1802,38 @@ interface ReportTaskResponseAllOfUsersToShareWith {
|
|
|
1765
1802
|
*/
|
|
1766
1803
|
email?: string;
|
|
1767
1804
|
}
|
|
1805
|
+
/**
|
|
1806
|
+
*
|
|
1807
|
+
* @export
|
|
1808
|
+
* @interface ReportTaskScope
|
|
1809
|
+
*/
|
|
1810
|
+
interface ReportTaskScope {
|
|
1811
|
+
/**
|
|
1812
|
+
*
|
|
1813
|
+
* @type {Array<ReportTaskScopeObjects>}
|
|
1814
|
+
* @memberof ReportTaskScope
|
|
1815
|
+
*/
|
|
1816
|
+
objects?: Array<ReportTaskScopeObjects>;
|
|
1817
|
+
}
|
|
1818
|
+
/**
|
|
1819
|
+
*
|
|
1820
|
+
* @export
|
|
1821
|
+
* @interface ReportTaskScopeObjects
|
|
1822
|
+
*/
|
|
1823
|
+
interface ReportTaskScopeObjects {
|
|
1824
|
+
/**
|
|
1825
|
+
*
|
|
1826
|
+
* @type {string}
|
|
1827
|
+
* @memberof ReportTaskScopeObjects
|
|
1828
|
+
*/
|
|
1829
|
+
objectKey?: string;
|
|
1830
|
+
/**
|
|
1831
|
+
*
|
|
1832
|
+
* @type {boolean}
|
|
1833
|
+
* @memberof ReportTaskScopeObjects
|
|
1834
|
+
*/
|
|
1835
|
+
included?: boolean;
|
|
1836
|
+
}
|
|
1768
1837
|
/**
|
|
1769
1838
|
*
|
|
1770
1839
|
* @export
|
|
@@ -1784,6 +1853,31 @@ interface ReportTaskTags {
|
|
|
1784
1853
|
*/
|
|
1785
1854
|
name?: string;
|
|
1786
1855
|
}
|
|
1856
|
+
/**
|
|
1857
|
+
*
|
|
1858
|
+
* @export
|
|
1859
|
+
* @interface ReportTaskTo
|
|
1860
|
+
*/
|
|
1861
|
+
interface ReportTaskTo {
|
|
1862
|
+
/**
|
|
1863
|
+
*
|
|
1864
|
+
* @type {string}
|
|
1865
|
+
* @memberof ReportTaskTo
|
|
1866
|
+
*/
|
|
1867
|
+
fieldName?: string;
|
|
1868
|
+
/**
|
|
1869
|
+
*
|
|
1870
|
+
* @type {string}
|
|
1871
|
+
* @memberof ReportTaskTo
|
|
1872
|
+
*/
|
|
1873
|
+
fieldDef?: string;
|
|
1874
|
+
/**
|
|
1875
|
+
*
|
|
1876
|
+
* @type {string}
|
|
1877
|
+
* @memberof ReportTaskTo
|
|
1878
|
+
*/
|
|
1879
|
+
tableName?: string;
|
|
1880
|
+
}
|
|
1787
1881
|
/**
|
|
1788
1882
|
*
|
|
1789
1883
|
* @export
|
|
@@ -1948,10 +2042,10 @@ interface Visualization {
|
|
|
1948
2042
|
filterSets?: Array<ReportTaskFilterSets>;
|
|
1949
2043
|
/**
|
|
1950
2044
|
* Custom filters to apply. This field will be updated entirely if provided
|
|
1951
|
-
* @type {Array<
|
|
2045
|
+
* @type {Array<VisualizationSelections>}
|
|
1952
2046
|
* @memberof Visualization
|
|
1953
2047
|
*/
|
|
1954
|
-
selections?: Array<
|
|
2048
|
+
selections?: Array<VisualizationSelections>;
|
|
1955
2049
|
/**
|
|
1956
2050
|
*
|
|
1957
2051
|
* @type {Array<ReportTaskVariables>}
|
|
@@ -1959,6 +2053,31 @@ interface Visualization {
|
|
|
1959
2053
|
*/
|
|
1960
2054
|
variables?: Array<ReportTaskVariables>;
|
|
1961
2055
|
}
|
|
2056
|
+
/**
|
|
2057
|
+
*
|
|
2058
|
+
* @export
|
|
2059
|
+
* @interface VisualizationSelections
|
|
2060
|
+
*/
|
|
2061
|
+
interface VisualizationSelections {
|
|
2062
|
+
/**
|
|
2063
|
+
* The label of the field. Used for display in certain scenarios.
|
|
2064
|
+
* @type {string}
|
|
2065
|
+
* @memberof VisualizationSelections
|
|
2066
|
+
*/
|
|
2067
|
+
fieldName?: string;
|
|
2068
|
+
/**
|
|
2069
|
+
* The definition of the field.
|
|
2070
|
+
* @type {string}
|
|
2071
|
+
* @memberof VisualizationSelections
|
|
2072
|
+
*/
|
|
2073
|
+
fieldDef?: string;
|
|
2074
|
+
/**
|
|
2075
|
+
*
|
|
2076
|
+
* @type {Array<ReportTaskFieldValues>}
|
|
2077
|
+
* @memberof VisualizationSelections
|
|
2078
|
+
*/
|
|
2079
|
+
fieldValues?: Array<ReportTaskFieldValues>;
|
|
2080
|
+
}
|
|
1962
2081
|
/**
|
|
1963
2082
|
* BaseTemplatesApi - axios parameter creator
|
|
1964
2083
|
* @export
|
|
@@ -3525,4 +3644,4 @@ declare class ConnectReport {
|
|
|
3525
3644
|
constructor(config: Pick<Configuration, "apiKey" | "basePath" | "formDataCtor" | "httpsAgent">);
|
|
3526
3645
|
}
|
|
3527
3646
|
|
|
3528
|
-
export { BaseTemplatesApi, BaseTemplatesApiAxiosParamCreator, BaseTemplatesApiFactory, BaseTemplatesApiFp, ConnectReport, type CycleConfig, CycleConfigConfigTypeEnum, DocumentsApi, DocumentsApiAxiosParamCreator, DocumentsApiFactory, DocumentsApiFp, type FieldInfo, type FilterCycle, type FilterCycleAllOf, type FilterCycleAllOfFieldInfo, type FilterCycleAllOfFieldValues, FilterCycleEmailEnum, FilterCycleFrequencyEnum, FilterCyclesApi, FilterCyclesApiAxiosParamCreator, FilterCyclesApiFactory, FilterCyclesApiFp, type FilterMapping, ImagesApi, ImagesApiAxiosParamCreator, ImagesApiFactory, ImagesApiFp, type InlineResponse200, type InlineResponse2001, type InlineResponse2002, type InlineResponse2003, type InlineResponse2004, type Job, type JobResponse, JobsApi, JobsApiAxiosParamCreator, JobsApiFactory, JobsApiFp, type ModelError, type Report, type ReportTask, type ReportTaskCustomSelection, ReportTaskEmailEnum, type ReportTaskErrors, type ReportTaskFieldValues, type ReportTaskFilterSets, ReportTaskFrequencyEnum, type ReportTaskGroupsToShareWith, type ReportTaskRequest, type ReportTaskRequestAllOf, type ReportTaskRequestAllOfUsersToShareWith, ReportTaskRequestEmailEnum, ReportTaskRequestFrequencyEnum, type ReportTaskResponse, type ReportTaskResponseAllOf, type ReportTaskResponseAllOfGroupsSharedWith, type ReportTaskResponseAllOfUsersToShareWith, ReportTaskResponseEmailEnum, ReportTaskResponseFrequencyEnum, type ReportTaskTags, type ReportTaskVariables, ReportTasksApi, ReportTasksApiAxiosParamCreator, ReportTasksApiFactory, ReportTasksApiFp, ReportTypeEnum, ReportsApi, ReportsApiAxiosParamCreator, ReportsApiFactory, ReportsApiFp, type RowExclusion, type RowExclusionFieldValues, type Template, TemplateTypeEnum, TemplatesApi, TemplatesApiAxiosParamCreator, TemplatesApiFactory, TemplatesApiFp, type Visualization, VisualizationApi, VisualizationApiAxiosParamCreator, VisualizationApiFactory, VisualizationApiFp };
|
|
3647
|
+
export { BaseTemplatesApi, BaseTemplatesApiAxiosParamCreator, BaseTemplatesApiFactory, BaseTemplatesApiFp, ConnectReport, type CycleConfig, CycleConfigConfigTypeEnum, DocumentsApi, DocumentsApiAxiosParamCreator, DocumentsApiFactory, DocumentsApiFp, type FieldInfo, type FilterCycle, type FilterCycleAllOf, type FilterCycleAllOfFieldInfo, type FilterCycleAllOfFieldValues, FilterCycleEmailEnum, FilterCycleFrequencyEnum, FilterCyclesApi, FilterCyclesApiAxiosParamCreator, FilterCyclesApiFactory, FilterCyclesApiFp, type FilterMapping, ImagesApi, ImagesApiAxiosParamCreator, ImagesApiFactory, ImagesApiFp, type InlineResponse200, type InlineResponse2001, type InlineResponse2002, type InlineResponse2003, type InlineResponse2004, type Job, type JobResponse, JobsApi, JobsApiAxiosParamCreator, JobsApiFactory, JobsApiFp, type ModelError, type Report, type ReportTask, type ReportTaskCustomSelection, ReportTaskEmailEnum, type ReportTaskErrors, type ReportTaskFieldValues, type ReportTaskFilterSets, ReportTaskFrequencyEnum, type ReportTaskGroupsToShareWith, type ReportTaskMappings, type ReportTaskRequest, type ReportTaskRequestAllOf, type ReportTaskRequestAllOfUsersToShareWith, ReportTaskRequestEmailEnum, ReportTaskRequestFrequencyEnum, type ReportTaskResponse, type ReportTaskResponseAllOf, type ReportTaskResponseAllOfGroupsSharedWith, type ReportTaskResponseAllOfUsersToShareWith, ReportTaskResponseEmailEnum, ReportTaskResponseFrequencyEnum, type ReportTaskScope, type ReportTaskScopeObjects, type ReportTaskTags, type ReportTaskTo, type ReportTaskVariables, ReportTasksApi, ReportTasksApiAxiosParamCreator, ReportTasksApiFactory, ReportTasksApiFp, ReportTypeEnum, ReportsApi, ReportsApiAxiosParamCreator, ReportsApiFactory, ReportsApiFp, type RowExclusion, type RowExclusionFieldValues, type Template, TemplateTypeEnum, TemplatesApi, TemplatesApiAxiosParamCreator, TemplatesApiFactory, TemplatesApiFp, type Visualization, VisualizationApi, VisualizationApiAxiosParamCreator, VisualizationApiFactory, VisualizationApiFp, type VisualizationSelections };
|