@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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @connectreport/connectreport-js@2.80.5
1
+ ## @connectreport/connectreport-js@2.81.1
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)
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.80.5
7
+ * The version of the OpenAPI document: 2.81.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -51,6 +51,12 @@ export interface CycleConfig {
51
51
  * @memberof CycleConfig
52
52
  */
53
53
  tableColumns: Array<FieldInfo>;
54
+ /**
55
+ * Maximum number of rows to fetch from the data source
56
+ * @type {number}
57
+ * @memberof CycleConfig
58
+ */
59
+ tableHeight?: number;
54
60
  /**
55
61
  *
56
62
  * @type {RowExclusion}
@@ -972,12 +978,24 @@ export interface ReportTaskCustomSelection {
972
978
  * @memberof ReportTaskCustomSelection
973
979
  */
974
980
  fieldDef?: string;
981
+ /**
982
+ * The name of the table containing this field.
983
+ * @type {string}
984
+ * @memberof ReportTaskCustomSelection
985
+ */
986
+ tableName?: string;
975
987
  /**
976
988
  *
977
989
  * @type {Array<ReportTaskFieldValues>}
978
990
  * @memberof ReportTaskCustomSelection
979
991
  */
980
992
  fieldValues?: Array<ReportTaskFieldValues>;
993
+ /**
994
+ * Optional mappings to target specific report fields with optional scoping
995
+ * @type {Array<ReportTaskMappings>}
996
+ * @memberof ReportTaskCustomSelection
997
+ */
998
+ mappings?: Array<ReportTaskMappings>;
981
999
  }
982
1000
  /**
983
1001
  *
@@ -1055,6 +1073,25 @@ export interface ReportTaskGroupsToShareWith {
1055
1073
  */
1056
1074
  groupId?: string;
1057
1075
  }
1076
+ /**
1077
+ *
1078
+ * @export
1079
+ * @interface ReportTaskMappings
1080
+ */
1081
+ export interface ReportTaskMappings {
1082
+ /**
1083
+ *
1084
+ * @type {ReportTaskTo}
1085
+ * @memberof ReportTaskMappings
1086
+ */
1087
+ to?: ReportTaskTo;
1088
+ /**
1089
+ *
1090
+ * @type {ReportTaskScope}
1091
+ * @memberof ReportTaskMappings
1092
+ */
1093
+ scope?: ReportTaskScope;
1094
+ }
1058
1095
  /**
1059
1096
  *
1060
1097
  * @export
@@ -1670,6 +1707,38 @@ export interface ReportTaskResponseAllOfUsersToShareWith {
1670
1707
  */
1671
1708
  email?: string;
1672
1709
  }
1710
+ /**
1711
+ *
1712
+ * @export
1713
+ * @interface ReportTaskScope
1714
+ */
1715
+ export interface ReportTaskScope {
1716
+ /**
1717
+ *
1718
+ * @type {Array<ReportTaskScopeObjects>}
1719
+ * @memberof ReportTaskScope
1720
+ */
1721
+ objects?: Array<ReportTaskScopeObjects>;
1722
+ }
1723
+ /**
1724
+ *
1725
+ * @export
1726
+ * @interface ReportTaskScopeObjects
1727
+ */
1728
+ export interface ReportTaskScopeObjects {
1729
+ /**
1730
+ *
1731
+ * @type {string}
1732
+ * @memberof ReportTaskScopeObjects
1733
+ */
1734
+ objectKey?: string;
1735
+ /**
1736
+ *
1737
+ * @type {boolean}
1738
+ * @memberof ReportTaskScopeObjects
1739
+ */
1740
+ included?: boolean;
1741
+ }
1673
1742
  /**
1674
1743
  *
1675
1744
  * @export
@@ -1689,6 +1758,31 @@ export interface ReportTaskTags {
1689
1758
  */
1690
1759
  name?: string;
1691
1760
  }
1761
+ /**
1762
+ *
1763
+ * @export
1764
+ * @interface ReportTaskTo
1765
+ */
1766
+ export interface ReportTaskTo {
1767
+ /**
1768
+ *
1769
+ * @type {string}
1770
+ * @memberof ReportTaskTo
1771
+ */
1772
+ fieldName?: string;
1773
+ /**
1774
+ *
1775
+ * @type {string}
1776
+ * @memberof ReportTaskTo
1777
+ */
1778
+ fieldDef?: string;
1779
+ /**
1780
+ *
1781
+ * @type {string}
1782
+ * @memberof ReportTaskTo
1783
+ */
1784
+ tableName?: string;
1785
+ }
1692
1786
  /**
1693
1787
  *
1694
1788
  * @export
@@ -1855,10 +1949,10 @@ export interface Visualization {
1855
1949
  filterSets?: Array<ReportTaskFilterSets>;
1856
1950
  /**
1857
1951
  * Custom filters to apply. This field will be updated entirely if provided
1858
- * @type {Array<ReportTaskCustomSelection>}
1952
+ * @type {Array<VisualizationSelections>}
1859
1953
  * @memberof Visualization
1860
1954
  */
1861
- selections?: Array<ReportTaskCustomSelection>;
1955
+ selections?: Array<VisualizationSelections>;
1862
1956
  /**
1863
1957
  *
1864
1958
  * @type {Array<ReportTaskVariables>}
@@ -1866,6 +1960,31 @@ export interface Visualization {
1866
1960
  */
1867
1961
  variables?: Array<ReportTaskVariables>;
1868
1962
  }
1963
+ /**
1964
+ *
1965
+ * @export
1966
+ * @interface VisualizationSelections
1967
+ */
1968
+ export interface VisualizationSelections {
1969
+ /**
1970
+ * The label of the field. Used for display in certain scenarios.
1971
+ * @type {string}
1972
+ * @memberof VisualizationSelections
1973
+ */
1974
+ fieldName?: string;
1975
+ /**
1976
+ * The definition of the field.
1977
+ * @type {string}
1978
+ * @memberof VisualizationSelections
1979
+ */
1980
+ fieldDef?: string;
1981
+ /**
1982
+ *
1983
+ * @type {Array<ReportTaskFieldValues>}
1984
+ * @memberof VisualizationSelections
1985
+ */
1986
+ fieldValues?: Array<ReportTaskFieldValues>;
1987
+ }
1869
1988
 
1870
1989
  /**
1871
1990
  * BaseTemplatesApi - axios parameter creator
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.80.5
7
+ * The version of the OpenAPI document: 2.81.1
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.80.5
7
+ * The version of the OpenAPI document: 2.81.1
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.80.5
7
+ * The version of the OpenAPI document: 2.81.1
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).