@jrojaspin/security-map-api-cli 9.8.0 → 9.10.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.
Files changed (46) hide show
  1. package/dist/apis/ItemApi.d.ts +6 -1
  2. package/dist/apis/ItemApi.js +24 -1
  3. package/dist/apis/ItemApi.js.map +1 -1
  4. package/dist/apis/ReportApi.d.ts +6 -1
  5. package/dist/apis/ReportApi.js +24 -1
  6. package/dist/apis/ReportApi.js.map +1 -1
  7. package/dist/index.cjs +749 -387
  8. package/dist/index.cjs.map +1 -1
  9. package/dist/index.d.ts +245 -148
  10. package/dist/index.mjs +705 -383
  11. package/dist/index.mjs.map +1 -1
  12. package/dist/models/Def235.d.ts +8 -0
  13. package/dist/models/Def235.js +16 -0
  14. package/dist/models/{Def227.js.map → Def235.js.map} +1 -1
  15. package/dist/models/ItemTextFillArticle.d.ts +12 -0
  16. package/dist/models/ItemTextFillArticle.js +42 -0
  17. package/dist/models/ItemTextFillArticle.js.map +1 -0
  18. package/dist/models/ItemTextFillDto.d.ts +15 -0
  19. package/dist/models/ItemTextFillDto.js +46 -0
  20. package/dist/models/ItemTextFillDto.js.map +1 -0
  21. package/dist/models/ItemTextFillInput.d.ts +9 -0
  22. package/dist/models/ItemTextFillInput.js +32 -0
  23. package/dist/models/ItemTextFillInput.js.map +1 -0
  24. package/dist/models/ItemTextFillOutput.d.ts +9 -0
  25. package/dist/models/ItemTextFillOutput.js +29 -0
  26. package/dist/models/ItemTextFillOutput.js.map +1 -0
  27. package/dist/models/ItemTextFillValue.d.ts +9 -0
  28. package/dist/models/ItemTextFillValue.js +32 -0
  29. package/dist/models/ItemTextFillValue.js.map +1 -0
  30. package/dist/models/ReportAllItemsListOutput.d.ts +2 -2
  31. package/dist/models/ReportAllItemsListOutput.js +3 -3
  32. package/dist/models/ReportQueryAssistantDto.d.ts +12 -0
  33. package/dist/models/ReportQueryAssistantDto.js +41 -0
  34. package/dist/models/ReportQueryAssistantDto.js.map +1 -0
  35. package/dist/models/ReportQueryAssistantInput.d.ts +10 -0
  36. package/dist/models/ReportQueryAssistantInput.js +31 -0
  37. package/dist/models/ReportQueryAssistantInput.js.map +1 -0
  38. package/dist/models/ReportQueryAssistantOutput.d.ts +9 -0
  39. package/dist/models/ReportQueryAssistantOutput.js +29 -0
  40. package/dist/models/ReportQueryAssistantOutput.js.map +1 -0
  41. package/dist/models/index.d.ts +9 -1
  42. package/dist/models/index.js +9 -1
  43. package/dist/models/index.js.map +1 -1
  44. package/package.json +1 -1
  45. package/dist/models/Def227.d.ts +0 -8
  46. package/dist/models/Def227.js +0 -16
package/dist/index.cjs CHANGED
@@ -1319,19 +1319,19 @@ function ComputeRouteInputToJSONTyped(value, ignoreDiscriminator = false) {
1319
1319
  };
1320
1320
  }
1321
1321
 
1322
- function instanceOfDef227(value) {
1322
+ function instanceOfDef235(value) {
1323
1323
  return true;
1324
1324
  }
1325
- function Def227FromJSON(json) {
1326
- return Def227FromJSONTyped(json);
1325
+ function Def235FromJSON(json) {
1326
+ return Def235FromJSONTyped(json);
1327
1327
  }
1328
- function Def227FromJSONTyped(json, ignoreDiscriminator) {
1328
+ function Def235FromJSONTyped(json, ignoreDiscriminator) {
1329
1329
  return json;
1330
1330
  }
1331
- function Def227ToJSON(json) {
1332
- return Def227ToJSONTyped(json, false);
1331
+ function Def235ToJSON(json) {
1332
+ return Def235ToJSONTyped(json, false);
1333
1333
  }
1334
- function Def227ToJSONTyped(value, ignoreDiscriminator = false) {
1334
+ function Def235ToJSONTyped(value, ignoreDiscriminator = false) {
1335
1335
  return value;
1336
1336
  }
1337
1337
 
@@ -1596,6 +1596,184 @@ function ItemRenderOptionsOutputToJSONTyped(value, ignoreDiscriminator = false)
1596
1596
  };
1597
1597
  }
1598
1598
 
1599
+ function instanceOfItemTextFillArticle(value) {
1600
+ if (!('articleId' in value) || value['articleId'] === undefined)
1601
+ return false;
1602
+ if (!('name' in value) || value['name'] === undefined)
1603
+ return false;
1604
+ if (!('quantity' in value) || value['quantity'] === undefined)
1605
+ return false;
1606
+ if (!('meassurementUnitId' in value) || value['meassurementUnitId'] === undefined)
1607
+ return false;
1608
+ return true;
1609
+ }
1610
+ function ItemTextFillArticleFromJSON(json) {
1611
+ return ItemTextFillArticleFromJSONTyped(json);
1612
+ }
1613
+ function ItemTextFillArticleFromJSONTyped(json, ignoreDiscriminator) {
1614
+ if (json == null) {
1615
+ return json;
1616
+ }
1617
+ return {
1618
+ 'articleId': json['articleId'],
1619
+ 'name': json['name'],
1620
+ 'quantity': json['quantity'],
1621
+ 'meassurementUnitId': json['meassurementUnitId'],
1622
+ 'presentationId': json['presentationId'] == null ? undefined : json['presentationId'],
1623
+ };
1624
+ }
1625
+ function ItemTextFillArticleToJSON(json) {
1626
+ return ItemTextFillArticleToJSONTyped(json, false);
1627
+ }
1628
+ function ItemTextFillArticleToJSONTyped(value, ignoreDiscriminator = false) {
1629
+ if (value == null) {
1630
+ return value;
1631
+ }
1632
+ return {
1633
+ 'articleId': value['articleId'],
1634
+ 'name': value['name'],
1635
+ 'quantity': value['quantity'],
1636
+ 'meassurementUnitId': value['meassurementUnitId'],
1637
+ 'presentationId': value['presentationId'],
1638
+ };
1639
+ }
1640
+
1641
+ function instanceOfItemTextFillValue(value) {
1642
+ if (!('fieldId' in value) || value['fieldId'] === undefined)
1643
+ return false;
1644
+ if (!('value' in value) || value['value'] === undefined)
1645
+ return false;
1646
+ return true;
1647
+ }
1648
+ function ItemTextFillValueFromJSON(json) {
1649
+ return ItemTextFillValueFromJSONTyped(json);
1650
+ }
1651
+ function ItemTextFillValueFromJSONTyped(json, ignoreDiscriminator) {
1652
+ if (json == null) {
1653
+ return json;
1654
+ }
1655
+ return {
1656
+ 'fieldId': json['fieldId'],
1657
+ 'value': json['value'],
1658
+ };
1659
+ }
1660
+ function ItemTextFillValueToJSON(json) {
1661
+ return ItemTextFillValueToJSONTyped(json, false);
1662
+ }
1663
+ function ItemTextFillValueToJSONTyped(value, ignoreDiscriminator = false) {
1664
+ if (value == null) {
1665
+ return value;
1666
+ }
1667
+ return {
1668
+ 'fieldId': value['fieldId'],
1669
+ 'value': value['value'],
1670
+ };
1671
+ }
1672
+
1673
+ function instanceOfItemTextFillDto(value) {
1674
+ if (!('values' in value) || value['values'] === undefined)
1675
+ return false;
1676
+ if (!('articles' in value) || value['articles'] === undefined)
1677
+ return false;
1678
+ if (!('leftOut' in value) || value['leftOut'] === undefined)
1679
+ return false;
1680
+ if (!('remainingToday' in value) || value['remainingToday'] === undefined)
1681
+ return false;
1682
+ return true;
1683
+ }
1684
+ function ItemTextFillDtoFromJSON(json) {
1685
+ return ItemTextFillDtoFromJSONTyped(json);
1686
+ }
1687
+ function ItemTextFillDtoFromJSONTyped(json, ignoreDiscriminator) {
1688
+ if (json == null) {
1689
+ return json;
1690
+ }
1691
+ return {
1692
+ 'values': (json['values'].map(ItemTextFillValueFromJSON)),
1693
+ 'address': json['address'] == null ? undefined : json['address'],
1694
+ 'stateId': json['stateId'] == null ? undefined : json['stateId'],
1695
+ 'articles': (json['articles'].map(ItemTextFillArticleFromJSON)),
1696
+ 'leftOut': json['leftOut'],
1697
+ 'remainingToday': json['remainingToday'],
1698
+ };
1699
+ }
1700
+ function ItemTextFillDtoToJSON(json) {
1701
+ return ItemTextFillDtoToJSONTyped(json, false);
1702
+ }
1703
+ function ItemTextFillDtoToJSONTyped(value, ignoreDiscriminator = false) {
1704
+ if (value == null) {
1705
+ return value;
1706
+ }
1707
+ return {
1708
+ 'values': (value['values'].map(ItemTextFillValueToJSON)),
1709
+ 'address': value['address'],
1710
+ 'stateId': value['stateId'],
1711
+ 'articles': (value['articles'].map(ItemTextFillArticleToJSON)),
1712
+ 'leftOut': value['leftOut'],
1713
+ 'remainingToday': value['remainingToday'],
1714
+ };
1715
+ }
1716
+
1717
+ function instanceOfItemTextFillInput(value) {
1718
+ if (!('itemTypeId' in value) || value['itemTypeId'] === undefined)
1719
+ return false;
1720
+ if (!('text' in value) || value['text'] === undefined)
1721
+ return false;
1722
+ return true;
1723
+ }
1724
+ function ItemTextFillInputFromJSON(json) {
1725
+ return ItemTextFillInputFromJSONTyped(json);
1726
+ }
1727
+ function ItemTextFillInputFromJSONTyped(json, ignoreDiscriminator) {
1728
+ if (json == null) {
1729
+ return json;
1730
+ }
1731
+ return {
1732
+ 'itemTypeId': json['itemTypeId'],
1733
+ 'text': json['text'],
1734
+ };
1735
+ }
1736
+ function ItemTextFillInputToJSON(json) {
1737
+ return ItemTextFillInputToJSONTyped(json, false);
1738
+ }
1739
+ function ItemTextFillInputToJSONTyped(value, ignoreDiscriminator = false) {
1740
+ if (value == null) {
1741
+ return value;
1742
+ }
1743
+ return {
1744
+ 'itemTypeId': value['itemTypeId'],
1745
+ 'text': value['text'],
1746
+ };
1747
+ }
1748
+
1749
+ function instanceOfItemTextFillOutput(value) {
1750
+ if (!('data' in value) || value['data'] === undefined)
1751
+ return false;
1752
+ return true;
1753
+ }
1754
+ function ItemTextFillOutputFromJSON(json) {
1755
+ return ItemTextFillOutputFromJSONTyped(json);
1756
+ }
1757
+ function ItemTextFillOutputFromJSONTyped(json, ignoreDiscriminator) {
1758
+ if (json == null) {
1759
+ return json;
1760
+ }
1761
+ return {
1762
+ 'data': ItemTextFillDtoFromJSON(json['data']),
1763
+ };
1764
+ }
1765
+ function ItemTextFillOutputToJSON(json) {
1766
+ return ItemTextFillOutputToJSONTyped(json, false);
1767
+ }
1768
+ function ItemTextFillOutputToJSONTyped(value, ignoreDiscriminator = false) {
1769
+ if (value == null) {
1770
+ return value;
1771
+ }
1772
+ return {
1773
+ 'data': ItemTextFillDtoToJSON(value['data']),
1774
+ };
1775
+ }
1776
+
1599
1777
  function instanceOfMapItemTypeFormSectionORM(value) {
1600
1778
  if (!('formId' in value) || value['formId'] === undefined)
1601
1779
  return false;
@@ -5967,7 +6145,7 @@ function ReportAllItemsListOutputFromJSONTyped(json, ignoreDiscriminator) {
5967
6145
  return json;
5968
6146
  }
5969
6147
  return {
5970
- 'data': (json['data'].map(Def227FromJSON)),
6148
+ 'data': (json['data'].map(Def235FromJSON)),
5971
6149
  'pageInfo': PageInfoFromJSON(json['pageInfo']),
5972
6150
  };
5973
6151
  }
@@ -5979,7 +6157,7 @@ function ReportAllItemsListOutputToJSONTyped(value, ignoreDiscriminator = false)
5979
6157
  return value;
5980
6158
  }
5981
6159
  return {
5982
- 'data': (value['data'].map(Def227ToJSON)),
6160
+ 'data': (value['data'].map(Def235ToJSON)),
5983
6161
  'pageInfo': PageInfoToJSON(value['pageInfo']),
5984
6162
  };
5985
6163
  }
@@ -6612,46 +6790,7 @@ function ReportOutputToJSONTyped(value, ignoreDiscriminator = false) {
6612
6790
  };
6613
6791
  }
6614
6792
 
6615
- const ReportQueryAxis = {
6616
- Y: 'y',
6617
- Y2: 'y2'
6618
- };
6619
- function instanceOfReportQueryAxis(value) {
6620
- for (const key in ReportQueryAxis) {
6621
- if (Object.prototype.hasOwnProperty.call(ReportQueryAxis, key)) {
6622
- if (ReportQueryAxis[key] === value) {
6623
- return true;
6624
- }
6625
- }
6626
- }
6627
- return false;
6628
- }
6629
- function ReportQueryAxisFromJSON(json) {
6630
- return ReportQueryAxisFromJSONTyped(json);
6631
- }
6632
- function ReportQueryAxisFromJSONTyped(json, ignoreDiscriminator) {
6633
- return json;
6634
- }
6635
- function ReportQueryAxisToJSON(value) {
6636
- return value;
6637
- }
6638
- function ReportQueryAxisToJSONTyped(value, ignoreDiscriminator) {
6639
- return value;
6640
- }
6641
-
6642
- const ReportQueryCatalogFieldTypeEnum = {
6643
- Number: 'number',
6644
- Boolean: 'boolean',
6645
- Category: 'category',
6646
- Text: 'text',
6647
- Date: 'date'
6648
- };
6649
- const ReportQueryCatalogFieldSourcesEnum = {
6650
- Items: 'items',
6651
- Articles: 'articles',
6652
- StateHistory: 'state_history'
6653
- };
6654
- const ReportQueryCatalogFieldMetricOperationsEnum = {
6793
+ const ReportQueryMetricOpEnum = {
6655
6794
  Count: 'count',
6656
6795
  CountDistinct: 'count_distinct',
6657
6796
  Sum: 'sum',
@@ -6659,7 +6798,39 @@ const ReportQueryCatalogFieldMetricOperationsEnum = {
6659
6798
  Min: 'min',
6660
6799
  Max: 'max'
6661
6800
  };
6662
- const ReportQueryCatalogFieldFilterOperatorsEnum = {
6801
+ function instanceOfReportQueryMetric(value) {
6802
+ if (!('op' in value) || value['op'] === undefined)
6803
+ return false;
6804
+ return true;
6805
+ }
6806
+ function ReportQueryMetricFromJSON(json) {
6807
+ return ReportQueryMetricFromJSONTyped(json);
6808
+ }
6809
+ function ReportQueryMetricFromJSONTyped(json, ignoreDiscriminator) {
6810
+ if (json == null) {
6811
+ return json;
6812
+ }
6813
+ return {
6814
+ 'op': json['op'],
6815
+ 'field': json['field'] == null ? undefined : json['field'],
6816
+ 'label': json['label'] == null ? undefined : json['label'],
6817
+ };
6818
+ }
6819
+ function ReportQueryMetricToJSON(json) {
6820
+ return ReportQueryMetricToJSONTyped(json, false);
6821
+ }
6822
+ function ReportQueryMetricToJSONTyped(value, ignoreDiscriminator = false) {
6823
+ if (value == null) {
6824
+ return value;
6825
+ }
6826
+ return {
6827
+ 'op': value['op'],
6828
+ 'field': value['field'],
6829
+ 'label': value['label'],
6830
+ };
6831
+ }
6832
+
6833
+ const ReportQueryFilterOpEnum = {
6663
6834
  Contains: 'contains',
6664
6835
  NotContains: 'not_contains',
6665
6836
  Eq: 'eq',
@@ -6673,329 +6844,349 @@ const ReportQueryCatalogFieldFilterOperatorsEnum = {
6673
6844
  IsEmpty: 'is_empty',
6674
6845
  IsNotEmpty: 'is_not_empty'
6675
6846
  };
6676
- const ReportQueryCatalogFieldBucketsEnum = {
6677
- Day: 'day',
6678
- Week: 'week',
6679
- Month: 'month',
6680
- Quarter: 'quarter',
6681
- Year: 'year'
6682
- };
6683
- const ReportQueryCatalogFieldSuggestedNormalizeEnum = {
6684
- None: 'none',
6685
- TrimCase: 'trim_case',
6686
- Ipp: 'ipp'
6687
- };
6688
- function instanceOfReportQueryCatalogField(value) {
6689
- if (!('id' in value) || value['id'] === undefined)
6690
- return false;
6691
- if (!('label' in value) || value['label'] === undefined)
6692
- return false;
6693
- if (!('type' in value) || value['type'] === undefined)
6694
- return false;
6695
- if (!('group' in value) || value['group'] === undefined)
6696
- return false;
6697
- if (!('sources' in value) || value['sources'] === undefined)
6698
- return false;
6699
- if (!('canBeDimension' in value) || value['canBeDimension'] === undefined)
6847
+ function instanceOfReportQueryFilter(value) {
6848
+ if (!('field' in value) || value['field'] === undefined)
6700
6849
  return false;
6701
- if (!('metricOperations' in value) || value['metricOperations'] === undefined)
6850
+ if (!('op' in value) || value['op'] === undefined)
6702
6851
  return false;
6703
- if (!('filterOperators' in value) || value['filterOperators'] === undefined)
6852
+ if (!('values' in value) || value['values'] === undefined)
6704
6853
  return false;
6705
6854
  return true;
6706
6855
  }
6707
- function ReportQueryCatalogFieldFromJSON(json) {
6708
- return ReportQueryCatalogFieldFromJSONTyped(json);
6856
+ function ReportQueryFilterFromJSON(json) {
6857
+ return ReportQueryFilterFromJSONTyped(json);
6709
6858
  }
6710
- function ReportQueryCatalogFieldFromJSONTyped(json, ignoreDiscriminator) {
6859
+ function ReportQueryFilterFromJSONTyped(json, ignoreDiscriminator) {
6711
6860
  if (json == null) {
6712
6861
  return json;
6713
6862
  }
6714
6863
  return {
6715
- 'id': json['id'],
6716
- 'label': json['label'],
6717
- 'type': json['type'],
6718
- 'group': json['group'],
6719
- 'itemTypeId': json['itemTypeId'] == null ? undefined : json['itemTypeId'],
6720
- 'sources': json['sources'],
6721
- 'canBeDimension': json['canBeDimension'],
6722
- 'metricOperations': json['metricOperations'],
6723
- 'filterOperators': json['filterOperators'],
6724
- 'buckets': json['buckets'] == null ? undefined : json['buckets'],
6725
- 'suggestedNormalize': json['suggestedNormalize'] == null ? undefined : json['suggestedNormalize'],
6864
+ 'field': json['field'],
6865
+ 'op': json['op'],
6866
+ 'values': json['values'],
6726
6867
  };
6727
6868
  }
6728
- function ReportQueryCatalogFieldToJSON(json) {
6729
- return ReportQueryCatalogFieldToJSONTyped(json, false);
6869
+ function ReportQueryFilterToJSON(json) {
6870
+ return ReportQueryFilterToJSONTyped(json, false);
6730
6871
  }
6731
- function ReportQueryCatalogFieldToJSONTyped(value, ignoreDiscriminator = false) {
6872
+ function ReportQueryFilterToJSONTyped(value, ignoreDiscriminator = false) {
6732
6873
  if (value == null) {
6733
6874
  return value;
6734
6875
  }
6735
6876
  return {
6736
- 'id': value['id'],
6737
- 'label': value['label'],
6738
- 'type': value['type'],
6739
- 'group': value['group'],
6740
- 'itemTypeId': value['itemTypeId'],
6741
- 'sources': value['sources'],
6742
- 'canBeDimension': value['canBeDimension'],
6743
- 'metricOperations': value['metricOperations'],
6744
- 'filterOperators': value['filterOperators'],
6745
- 'buckets': value['buckets'],
6746
- 'suggestedNormalize': value['suggestedNormalize'],
6877
+ 'field': value['field'],
6878
+ 'op': value['op'],
6879
+ 'values': value['values'],
6747
6880
  };
6748
6881
  }
6749
6882
 
6750
- function instanceOfReportQueryCatalogOutput(value) {
6751
- if (!('data' in value) || value['data'] === undefined)
6883
+ const ReportQueryDimensionBucketEnum = {
6884
+ Day: 'day',
6885
+ Week: 'week',
6886
+ Month: 'month',
6887
+ Quarter: 'quarter',
6888
+ Year: 'year'
6889
+ };
6890
+ const ReportQueryDimensionNormalizeEnum = {
6891
+ None: 'none',
6892
+ TrimCase: 'trim_case',
6893
+ Ipp: 'ipp'
6894
+ };
6895
+ function instanceOfReportQueryDimension(value) {
6896
+ if (!('field' in value) || value['field'] === undefined)
6752
6897
  return false;
6753
6898
  return true;
6754
6899
  }
6755
- function ReportQueryCatalogOutputFromJSON(json) {
6756
- return ReportQueryCatalogOutputFromJSONTyped(json);
6900
+ function ReportQueryDimensionFromJSON(json) {
6901
+ return ReportQueryDimensionFromJSONTyped(json);
6757
6902
  }
6758
- function ReportQueryCatalogOutputFromJSONTyped(json, ignoreDiscriminator) {
6903
+ function ReportQueryDimensionFromJSONTyped(json, ignoreDiscriminator) {
6759
6904
  if (json == null) {
6760
6905
  return json;
6761
6906
  }
6762
6907
  return {
6763
- 'data': (json['data'].map(ReportQueryCatalogFieldFromJSON)),
6908
+ 'field': json['field'],
6909
+ 'bucket': json['bucket'] == null ? undefined : json['bucket'],
6910
+ 'normalize': json['normalize'] == null ? undefined : json['normalize'],
6911
+ 'includeEmpty': json['includeEmpty'] == null ? undefined : json['includeEmpty'],
6764
6912
  };
6765
6913
  }
6766
- function ReportQueryCatalogOutputToJSON(json) {
6767
- return ReportQueryCatalogOutputToJSONTyped(json, false);
6914
+ function ReportQueryDimensionToJSON(json) {
6915
+ return ReportQueryDimensionToJSONTyped(json, false);
6768
6916
  }
6769
- function ReportQueryCatalogOutputToJSONTyped(value, ignoreDiscriminator = false) {
6917
+ function ReportQueryDimensionToJSONTyped(value, ignoreDiscriminator = false) {
6770
6918
  if (value == null) {
6771
6919
  return value;
6772
6920
  }
6773
6921
  return {
6774
- 'data': (value['data'].map(ReportQueryCatalogFieldToJSON)),
6922
+ 'field': value['field'],
6923
+ 'bucket': value['bucket'],
6924
+ 'normalize': value['normalize'],
6925
+ 'includeEmpty': value['includeEmpty'],
6775
6926
  };
6776
6927
  }
6777
6928
 
6778
- const ReportQueryChart = {
6929
+ const ReportQuerySeriesSourceEnum = {
6930
+ Items: 'items',
6931
+ Articles: 'articles',
6932
+ StateHistory: 'state_history'
6933
+ };
6934
+ const ReportQuerySeriesChartEnum = {
6779
6935
  Bar: 'bar',
6780
- Line: 'line',
6781
- Pie: 'pie',
6782
- StackedBar: 'stacked_bar',
6783
- Table: 'table'
6936
+ Line: 'line'
6784
6937
  };
6785
- function instanceOfReportQueryChart(value) {
6786
- for (const key in ReportQueryChart) {
6787
- if (Object.prototype.hasOwnProperty.call(ReportQueryChart, key)) {
6788
- if (ReportQueryChart[key] === value) {
6789
- return true;
6790
- }
6791
- }
6792
- }
6793
- return false;
6794
- }
6795
- function ReportQueryChartFromJSON(json) {
6796
- return ReportQueryChartFromJSONTyped(json);
6797
- }
6798
- function ReportQueryChartFromJSONTyped(json, ignoreDiscriminator) {
6799
- return json;
6800
- }
6801
- function ReportQueryChartToJSON(value) {
6802
- return value;
6803
- }
6804
- function ReportQueryChartToJSONTyped(value, ignoreDiscriminator) {
6805
- return value;
6806
- }
6807
-
6808
- function instanceOfReportQueryResultRow(value) {
6809
- if (!('keys' in value) || value['keys'] === undefined)
6938
+ const ReportQuerySeriesAxisEnum = {
6939
+ Y: 'y',
6940
+ Y2: 'y2'
6941
+ };
6942
+ function instanceOfReportQuerySeries(value) {
6943
+ if (!('source' in value) || value['source'] === undefined)
6810
6944
  return false;
6811
- if (!('labels' in value) || value['labels'] === undefined)
6945
+ if (!('itemTypeIds' in value) || value['itemTypeIds'] === undefined)
6812
6946
  return false;
6813
- if (!('values' in value) || value['values'] === undefined)
6947
+ if (!('filters' in value) || value['filters'] === undefined)
6948
+ return false;
6949
+ if (!('metric' in value) || value['metric'] === undefined)
6814
6950
  return false;
6815
6951
  return true;
6816
6952
  }
6817
- function ReportQueryResultRowFromJSON(json) {
6818
- return ReportQueryResultRowFromJSONTyped(json);
6953
+ function ReportQuerySeriesFromJSON(json) {
6954
+ return ReportQuerySeriesFromJSONTyped(json);
6819
6955
  }
6820
- function ReportQueryResultRowFromJSONTyped(json, ignoreDiscriminator) {
6956
+ function ReportQuerySeriesFromJSONTyped(json, ignoreDiscriminator) {
6821
6957
  if (json == null) {
6822
6958
  return json;
6823
6959
  }
6824
6960
  return {
6825
- 'keys': json['keys'],
6826
- 'labels': json['labels'],
6827
- 'values': json['values'],
6961
+ 'label': json['label'] == null ? undefined : json['label'],
6962
+ 'source': json['source'],
6963
+ 'itemTypeIds': json['itemTypeIds'],
6964
+ 'filters': (json['filters'].map(ReportQueryFilterFromJSON)),
6965
+ 'metric': ReportQueryMetricFromJSON(json['metric']),
6966
+ 'splitBy': json['splitBy'] == null ? undefined : ReportQueryDimensionFromJSON(json['splitBy']),
6967
+ 'chart': json['chart'] == null ? undefined : json['chart'],
6968
+ 'color': json['color'] == null ? undefined : json['color'],
6969
+ 'axis': json['axis'] == null ? undefined : json['axis'],
6828
6970
  };
6829
6971
  }
6830
- function ReportQueryResultRowToJSON(json) {
6831
- return ReportQueryResultRowToJSONTyped(json, false);
6972
+ function ReportQuerySeriesToJSON(json) {
6973
+ return ReportQuerySeriesToJSONTyped(json, false);
6832
6974
  }
6833
- function ReportQueryResultRowToJSONTyped(value, ignoreDiscriminator = false) {
6975
+ function ReportQuerySeriesToJSONTyped(value, ignoreDiscriminator = false) {
6834
6976
  if (value == null) {
6835
6977
  return value;
6836
6978
  }
6837
6979
  return {
6838
- 'keys': value['keys'],
6839
- 'labels': value['labels'],
6840
- 'values': value['values'],
6980
+ 'label': value['label'],
6981
+ 'source': value['source'],
6982
+ 'itemTypeIds': value['itemTypeIds'],
6983
+ 'filters': (value['filters'].map(ReportQueryFilterToJSON)),
6984
+ 'metric': ReportQueryMetricToJSON(value['metric']),
6985
+ 'splitBy': ReportQueryDimensionToJSON(value['splitBy']),
6986
+ 'chart': value['chart'],
6987
+ 'color': value['color'],
6988
+ 'axis': value['axis'],
6841
6989
  };
6842
6990
  }
6843
6991
 
6844
- function instanceOfReportQueryResultColumn(value) {
6845
- if (!('label' in value) || value['label'] === undefined)
6846
- return false;
6847
- if (!('kind' in value) || value['kind'] === undefined)
6848
- return false;
6992
+ const ReportQueryDefinitionSourceEnum = {
6993
+ Items: 'items',
6994
+ Articles: 'articles',
6995
+ StateHistory: 'state_history'
6996
+ };
6997
+ const ReportQueryDefinitionChartEnum = {
6998
+ Bar: 'bar',
6999
+ Line: 'line',
7000
+ Pie: 'pie',
7001
+ StackedBar: 'stacked_bar',
7002
+ Table: 'table'
7003
+ };
7004
+ function instanceOfReportQueryDefinition(value) {
6849
7005
  return true;
6850
7006
  }
6851
- function ReportQueryResultColumnFromJSON(json) {
6852
- return ReportQueryResultColumnFromJSONTyped(json);
7007
+ function ReportQueryDefinitionFromJSON(json) {
7008
+ return ReportQueryDefinitionFromJSONTyped(json);
6853
7009
  }
6854
- function ReportQueryResultColumnFromJSONTyped(json, ignoreDiscriminator) {
7010
+ function ReportQueryDefinitionFromJSONTyped(json, ignoreDiscriminator) {
6855
7011
  if (json == null) {
6856
7012
  return json;
6857
7013
  }
6858
7014
  return {
6859
- 'label': json['label'],
6860
- 'kind': json['kind'],
7015
+ 'version': json['version'] == null ? undefined : json['version'],
7016
+ 'source': json['source'] == null ? undefined : json['source'],
7017
+ 'itemTypeIds': json['itemTypeIds'] == null ? undefined : json['itemTypeIds'],
7018
+ 'dimensions': json['dimensions'] == null ? undefined : (json['dimensions'].map(ReportQueryDimensionFromJSON)),
7019
+ 'metrics': json['metrics'] == null ? undefined : (json['metrics'].map(ReportQueryMetricFromJSON)),
7020
+ 'filters': json['filters'] == null ? undefined : (json['filters'].map(ReportQueryFilterFromJSON)),
7021
+ 'x': json['x'] == null ? undefined : ReportQueryDimensionFromJSON(json['x']),
7022
+ 'series': json['series'] == null ? undefined : (json['series'].map(ReportQuerySeriesFromJSON)),
7023
+ 'chart': json['chart'] == null ? undefined : json['chart'],
7024
+ 'labelX': json['labelX'] == null ? undefined : json['labelX'],
7025
+ 'labelY': json['labelY'] == null ? undefined : json['labelY'],
7026
+ 'labelY2': json['labelY2'] == null ? undefined : json['labelY2'],
6861
7027
  };
6862
7028
  }
6863
- function ReportQueryResultColumnToJSON(json) {
6864
- return ReportQueryResultColumnToJSONTyped(json, false);
7029
+ function ReportQueryDefinitionToJSON(json) {
7030
+ return ReportQueryDefinitionToJSONTyped(json, false);
6865
7031
  }
6866
- function ReportQueryResultColumnToJSONTyped(value, ignoreDiscriminator = false) {
7032
+ function ReportQueryDefinitionToJSONTyped(value, ignoreDiscriminator = false) {
6867
7033
  if (value == null) {
6868
7034
  return value;
6869
7035
  }
6870
7036
  return {
6871
- 'label': value['label'],
6872
- 'kind': value['kind'],
7037
+ 'version': value['version'],
7038
+ 'source': value['source'],
7039
+ 'itemTypeIds': value['itemTypeIds'],
7040
+ 'dimensions': value['dimensions'] == null ? undefined : (value['dimensions'].map(ReportQueryDimensionToJSON)),
7041
+ 'metrics': value['metrics'] == null ? undefined : (value['metrics'].map(ReportQueryMetricToJSON)),
7042
+ 'filters': value['filters'] == null ? undefined : (value['filters'].map(ReportQueryFilterToJSON)),
7043
+ 'x': ReportQueryDimensionToJSON(value['x']),
7044
+ 'series': value['series'] == null ? undefined : (value['series'].map(ReportQuerySeriesToJSON)),
7045
+ 'chart': value['chart'],
7046
+ 'labelX': value['labelX'],
7047
+ 'labelY': value['labelY'],
7048
+ 'labelY2': value['labelY2'],
6873
7049
  };
6874
7050
  }
6875
7051
 
6876
- function instanceOfReportQueryResult(value) {
6877
- if (!('columns' in value) || value['columns'] === undefined)
7052
+ function instanceOfReportQueryAssistantDto(value) {
7053
+ if (!('title' in value) || value['title'] === undefined)
6878
7054
  return false;
6879
- if (!('rows' in value) || value['rows'] === undefined)
7055
+ if (!('explanation' in value) || value['explanation'] === undefined)
7056
+ return false;
7057
+ if (!('definition' in value) || value['definition'] === undefined)
7058
+ return false;
7059
+ if (!('remainingToday' in value) || value['remainingToday'] === undefined)
6880
7060
  return false;
6881
7061
  return true;
6882
7062
  }
6883
- function ReportQueryResultFromJSON(json) {
6884
- return ReportQueryResultFromJSONTyped(json);
7063
+ function ReportQueryAssistantDtoFromJSON(json) {
7064
+ return ReportQueryAssistantDtoFromJSONTyped(json);
6885
7065
  }
6886
- function ReportQueryResultFromJSONTyped(json, ignoreDiscriminator) {
7066
+ function ReportQueryAssistantDtoFromJSONTyped(json, ignoreDiscriminator) {
6887
7067
  if (json == null) {
6888
7068
  return json;
6889
7069
  }
6890
7070
  return {
6891
- 'columns': (json['columns'].map(ReportQueryResultColumnFromJSON)),
6892
- 'rows': (json['rows'].map(ReportQueryResultRowFromJSON)),
7071
+ 'title': json['title'],
7072
+ 'explanation': json['explanation'],
7073
+ 'definition': ReportQueryDefinitionFromJSON(json['definition']),
7074
+ 'remainingToday': json['remainingToday'],
6893
7075
  };
6894
7076
  }
6895
- function ReportQueryResultToJSON(json) {
6896
- return ReportQueryResultToJSONTyped(json, false);
7077
+ function ReportQueryAssistantDtoToJSON(json) {
7078
+ return ReportQueryAssistantDtoToJSONTyped(json, false);
6897
7079
  }
6898
- function ReportQueryResultToJSONTyped(value, ignoreDiscriminator = false) {
7080
+ function ReportQueryAssistantDtoToJSONTyped(value, ignoreDiscriminator = false) {
6899
7081
  if (value == null) {
6900
7082
  return value;
6901
7083
  }
6902
7084
  return {
6903
- 'columns': (value['columns'].map(ReportQueryResultColumnToJSON)),
6904
- 'rows': (value['rows'].map(ReportQueryResultRowToJSON)),
7085
+ 'title': value['title'],
7086
+ 'explanation': value['explanation'],
7087
+ 'definition': ReportQueryDefinitionToJSON(value['definition']),
7088
+ 'remainingToday': value['remainingToday'],
6905
7089
  };
6906
7090
  }
6907
7091
 
6908
- function instanceOfReportQueryDataDto(value) {
6909
- if (!('table' in value) || value['table'] === undefined)
6910
- return false;
6911
- if (!('chart' in value) || value['chart'] === undefined)
7092
+ function instanceOfReportQueryAssistantInput(value) {
7093
+ if (!('prompt' in value) || value['prompt'] === undefined)
6912
7094
  return false;
6913
7095
  return true;
6914
7096
  }
6915
- function ReportQueryDataDtoFromJSON(json) {
6916
- return ReportQueryDataDtoFromJSONTyped(json);
7097
+ function ReportQueryAssistantInputFromJSON(json) {
7098
+ return ReportQueryAssistantInputFromJSONTyped(json);
6917
7099
  }
6918
- function ReportQueryDataDtoFromJSONTyped(json, ignoreDiscriminator) {
7100
+ function ReportQueryAssistantInputFromJSONTyped(json, ignoreDiscriminator) {
6919
7101
  if (json == null) {
6920
7102
  return json;
6921
7103
  }
6922
7104
  return {
6923
- 'table': ReportQueryResultFromJSON(json['table']),
6924
- 'chart': ReportDataJSONDtoFromJSON(json['chart']),
7105
+ 'prompt': json['prompt'],
7106
+ 'definition': json['definition'] == null ? undefined : ReportQueryDefinitionFromJSON(json['definition']),
6925
7107
  };
6926
7108
  }
6927
- function ReportQueryDataDtoToJSON(json) {
6928
- return ReportQueryDataDtoToJSONTyped(json, false);
7109
+ function ReportQueryAssistantInputToJSON(json) {
7110
+ return ReportQueryAssistantInputToJSONTyped(json, false);
6929
7111
  }
6930
- function ReportQueryDataDtoToJSONTyped(value, ignoreDiscriminator = false) {
7112
+ function ReportQueryAssistantInputToJSONTyped(value, ignoreDiscriminator = false) {
6931
7113
  if (value == null) {
6932
7114
  return value;
6933
7115
  }
6934
7116
  return {
6935
- 'table': ReportQueryResultToJSON(value['table']),
6936
- 'chart': ReportDataJSONDtoToJSON(value['chart']),
7117
+ 'prompt': value['prompt'],
7118
+ 'definition': ReportQueryDefinitionToJSON(value['definition']),
6937
7119
  };
6938
7120
  }
6939
7121
 
6940
- function instanceOfReportQueryDataOutput(value) {
7122
+ function instanceOfReportQueryAssistantOutput(value) {
6941
7123
  if (!('data' in value) || value['data'] === undefined)
6942
7124
  return false;
6943
7125
  return true;
6944
7126
  }
6945
- function ReportQueryDataOutputFromJSON(json) {
6946
- return ReportQueryDataOutputFromJSONTyped(json);
7127
+ function ReportQueryAssistantOutputFromJSON(json) {
7128
+ return ReportQueryAssistantOutputFromJSONTyped(json);
6947
7129
  }
6948
- function ReportQueryDataOutputFromJSONTyped(json, ignoreDiscriminator) {
7130
+ function ReportQueryAssistantOutputFromJSONTyped(json, ignoreDiscriminator) {
6949
7131
  if (json == null) {
6950
7132
  return json;
6951
7133
  }
6952
7134
  return {
6953
- 'data': ReportQueryDataDtoFromJSON(json['data']),
7135
+ 'data': ReportQueryAssistantDtoFromJSON(json['data']),
6954
7136
  };
6955
7137
  }
6956
- function ReportQueryDataOutputToJSON(json) {
6957
- return ReportQueryDataOutputToJSONTyped(json, false);
7138
+ function ReportQueryAssistantOutputToJSON(json) {
7139
+ return ReportQueryAssistantOutputToJSONTyped(json, false);
6958
7140
  }
6959
- function ReportQueryDataOutputToJSONTyped(value, ignoreDiscriminator = false) {
7141
+ function ReportQueryAssistantOutputToJSONTyped(value, ignoreDiscriminator = false) {
6960
7142
  if (value == null) {
6961
7143
  return value;
6962
7144
  }
6963
7145
  return {
6964
- 'data': ReportQueryDataDtoToJSON(value['data']),
7146
+ 'data': ReportQueryAssistantDtoToJSON(value['data']),
6965
7147
  };
6966
7148
  }
6967
7149
 
6968
- const ReportQueryDateBucket = {
6969
- Day: 'day',
6970
- Week: 'week',
6971
- Month: 'month',
6972
- Quarter: 'quarter',
6973
- Year: 'year'
7150
+ const ReportQueryAxis = {
7151
+ Y: 'y',
7152
+ Y2: 'y2'
6974
7153
  };
6975
- function instanceOfReportQueryDateBucket(value) {
6976
- for (const key in ReportQueryDateBucket) {
6977
- if (Object.prototype.hasOwnProperty.call(ReportQueryDateBucket, key)) {
6978
- if (ReportQueryDateBucket[key] === value) {
7154
+ function instanceOfReportQueryAxis(value) {
7155
+ for (const key in ReportQueryAxis) {
7156
+ if (Object.prototype.hasOwnProperty.call(ReportQueryAxis, key)) {
7157
+ if (ReportQueryAxis[key] === value) {
6979
7158
  return true;
6980
7159
  }
6981
7160
  }
6982
7161
  }
6983
7162
  return false;
6984
7163
  }
6985
- function ReportQueryDateBucketFromJSON(json) {
6986
- return ReportQueryDateBucketFromJSONTyped(json);
7164
+ function ReportQueryAxisFromJSON(json) {
7165
+ return ReportQueryAxisFromJSONTyped(json);
6987
7166
  }
6988
- function ReportQueryDateBucketFromJSONTyped(json, ignoreDiscriminator) {
7167
+ function ReportQueryAxisFromJSONTyped(json, ignoreDiscriminator) {
6989
7168
  return json;
6990
7169
  }
6991
- function ReportQueryDateBucketToJSON(value) {
7170
+ function ReportQueryAxisToJSON(value) {
6992
7171
  return value;
6993
7172
  }
6994
- function ReportQueryDateBucketToJSONTyped(value, ignoreDiscriminator) {
7173
+ function ReportQueryAxisToJSONTyped(value, ignoreDiscriminator) {
6995
7174
  return value;
6996
7175
  }
6997
7176
 
6998
- const ReportQueryMetricOpEnum = {
7177
+ const ReportQueryCatalogFieldTypeEnum = {
7178
+ Number: 'number',
7179
+ Boolean: 'boolean',
7180
+ Category: 'category',
7181
+ Text: 'text',
7182
+ Date: 'date'
7183
+ };
7184
+ const ReportQueryCatalogFieldSourcesEnum = {
7185
+ Items: 'items',
7186
+ Articles: 'articles',
7187
+ StateHistory: 'state_history'
7188
+ };
7189
+ const ReportQueryCatalogFieldMetricOperationsEnum = {
6999
7190
  Count: 'count',
7000
7191
  CountDistinct: 'count_distinct',
7001
7192
  Sum: 'sum',
@@ -7003,257 +7194,342 @@ const ReportQueryMetricOpEnum = {
7003
7194
  Min: 'min',
7004
7195
  Max: 'max'
7005
7196
  };
7006
- function instanceOfReportQueryMetric(value) {
7007
- if (!('op' in value) || value['op'] === undefined)
7197
+ const ReportQueryCatalogFieldFilterOperatorsEnum = {
7198
+ Contains: 'contains',
7199
+ NotContains: 'not_contains',
7200
+ Eq: 'eq',
7201
+ Neq: 'neq',
7202
+ In: 'in',
7203
+ NotIn: 'not_in',
7204
+ Gt: 'gt',
7205
+ Gte: 'gte',
7206
+ Lt: 'lt',
7207
+ Lte: 'lte',
7208
+ IsEmpty: 'is_empty',
7209
+ IsNotEmpty: 'is_not_empty'
7210
+ };
7211
+ const ReportQueryCatalogFieldBucketsEnum = {
7212
+ Day: 'day',
7213
+ Week: 'week',
7214
+ Month: 'month',
7215
+ Quarter: 'quarter',
7216
+ Year: 'year'
7217
+ };
7218
+ const ReportQueryCatalogFieldSuggestedNormalizeEnum = {
7219
+ None: 'none',
7220
+ TrimCase: 'trim_case',
7221
+ Ipp: 'ipp'
7222
+ };
7223
+ function instanceOfReportQueryCatalogField(value) {
7224
+ if (!('id' in value) || value['id'] === undefined)
7225
+ return false;
7226
+ if (!('label' in value) || value['label'] === undefined)
7227
+ return false;
7228
+ if (!('type' in value) || value['type'] === undefined)
7229
+ return false;
7230
+ if (!('group' in value) || value['group'] === undefined)
7231
+ return false;
7232
+ if (!('sources' in value) || value['sources'] === undefined)
7233
+ return false;
7234
+ if (!('canBeDimension' in value) || value['canBeDimension'] === undefined)
7235
+ return false;
7236
+ if (!('metricOperations' in value) || value['metricOperations'] === undefined)
7237
+ return false;
7238
+ if (!('filterOperators' in value) || value['filterOperators'] === undefined)
7008
7239
  return false;
7009
7240
  return true;
7010
7241
  }
7011
- function ReportQueryMetricFromJSON(json) {
7012
- return ReportQueryMetricFromJSONTyped(json);
7242
+ function ReportQueryCatalogFieldFromJSON(json) {
7243
+ return ReportQueryCatalogFieldFromJSONTyped(json);
7013
7244
  }
7014
- function ReportQueryMetricFromJSONTyped(json, ignoreDiscriminator) {
7245
+ function ReportQueryCatalogFieldFromJSONTyped(json, ignoreDiscriminator) {
7015
7246
  if (json == null) {
7016
7247
  return json;
7017
7248
  }
7018
7249
  return {
7019
- 'op': json['op'],
7020
- 'field': json['field'] == null ? undefined : json['field'],
7021
- 'label': json['label'] == null ? undefined : json['label'],
7250
+ 'id': json['id'],
7251
+ 'label': json['label'],
7252
+ 'type': json['type'],
7253
+ 'group': json['group'],
7254
+ 'itemTypeId': json['itemTypeId'] == null ? undefined : json['itemTypeId'],
7255
+ 'sources': json['sources'],
7256
+ 'canBeDimension': json['canBeDimension'],
7257
+ 'metricOperations': json['metricOperations'],
7258
+ 'filterOperators': json['filterOperators'],
7259
+ 'buckets': json['buckets'] == null ? undefined : json['buckets'],
7260
+ 'suggestedNormalize': json['suggestedNormalize'] == null ? undefined : json['suggestedNormalize'],
7022
7261
  };
7023
7262
  }
7024
- function ReportQueryMetricToJSON(json) {
7025
- return ReportQueryMetricToJSONTyped(json, false);
7263
+ function ReportQueryCatalogFieldToJSON(json) {
7264
+ return ReportQueryCatalogFieldToJSONTyped(json, false);
7026
7265
  }
7027
- function ReportQueryMetricToJSONTyped(value, ignoreDiscriminator = false) {
7266
+ function ReportQueryCatalogFieldToJSONTyped(value, ignoreDiscriminator = false) {
7028
7267
  if (value == null) {
7029
7268
  return value;
7030
7269
  }
7031
7270
  return {
7032
- 'op': value['op'],
7033
- 'field': value['field'],
7271
+ 'id': value['id'],
7034
7272
  'label': value['label'],
7273
+ 'type': value['type'],
7274
+ 'group': value['group'],
7275
+ 'itemTypeId': value['itemTypeId'],
7276
+ 'sources': value['sources'],
7277
+ 'canBeDimension': value['canBeDimension'],
7278
+ 'metricOperations': value['metricOperations'],
7279
+ 'filterOperators': value['filterOperators'],
7280
+ 'buckets': value['buckets'],
7281
+ 'suggestedNormalize': value['suggestedNormalize'],
7035
7282
  };
7036
7283
  }
7037
7284
 
7038
- const ReportQueryFilterOpEnum = {
7039
- Contains: 'contains',
7040
- NotContains: 'not_contains',
7041
- Eq: 'eq',
7042
- Neq: 'neq',
7043
- In: 'in',
7044
- NotIn: 'not_in',
7045
- Gt: 'gt',
7046
- Gte: 'gte',
7047
- Lt: 'lt',
7048
- Lte: 'lte',
7049
- IsEmpty: 'is_empty',
7050
- IsNotEmpty: 'is_not_empty'
7285
+ function instanceOfReportQueryCatalogOutput(value) {
7286
+ if (!('data' in value) || value['data'] === undefined)
7287
+ return false;
7288
+ return true;
7289
+ }
7290
+ function ReportQueryCatalogOutputFromJSON(json) {
7291
+ return ReportQueryCatalogOutputFromJSONTyped(json);
7292
+ }
7293
+ function ReportQueryCatalogOutputFromJSONTyped(json, ignoreDiscriminator) {
7294
+ if (json == null) {
7295
+ return json;
7296
+ }
7297
+ return {
7298
+ 'data': (json['data'].map(ReportQueryCatalogFieldFromJSON)),
7299
+ };
7300
+ }
7301
+ function ReportQueryCatalogOutputToJSON(json) {
7302
+ return ReportQueryCatalogOutputToJSONTyped(json, false);
7303
+ }
7304
+ function ReportQueryCatalogOutputToJSONTyped(value, ignoreDiscriminator = false) {
7305
+ if (value == null) {
7306
+ return value;
7307
+ }
7308
+ return {
7309
+ 'data': (value['data'].map(ReportQueryCatalogFieldToJSON)),
7310
+ };
7311
+ }
7312
+
7313
+ const ReportQueryChart = {
7314
+ Bar: 'bar',
7315
+ Line: 'line',
7316
+ Pie: 'pie',
7317
+ StackedBar: 'stacked_bar',
7318
+ Table: 'table'
7051
7319
  };
7052
- function instanceOfReportQueryFilter(value) {
7053
- if (!('field' in value) || value['field'] === undefined)
7320
+ function instanceOfReportQueryChart(value) {
7321
+ for (const key in ReportQueryChart) {
7322
+ if (Object.prototype.hasOwnProperty.call(ReportQueryChart, key)) {
7323
+ if (ReportQueryChart[key] === value) {
7324
+ return true;
7325
+ }
7326
+ }
7327
+ }
7328
+ return false;
7329
+ }
7330
+ function ReportQueryChartFromJSON(json) {
7331
+ return ReportQueryChartFromJSONTyped(json);
7332
+ }
7333
+ function ReportQueryChartFromJSONTyped(json, ignoreDiscriminator) {
7334
+ return json;
7335
+ }
7336
+ function ReportQueryChartToJSON(value) {
7337
+ return value;
7338
+ }
7339
+ function ReportQueryChartToJSONTyped(value, ignoreDiscriminator) {
7340
+ return value;
7341
+ }
7342
+
7343
+ function instanceOfReportQueryResultRow(value) {
7344
+ if (!('keys' in value) || value['keys'] === undefined)
7054
7345
  return false;
7055
- if (!('op' in value) || value['op'] === undefined)
7346
+ if (!('labels' in value) || value['labels'] === undefined)
7347
+ return false;
7348
+ if (!('values' in value) || value['values'] === undefined)
7349
+ return false;
7350
+ return true;
7351
+ }
7352
+ function ReportQueryResultRowFromJSON(json) {
7353
+ return ReportQueryResultRowFromJSONTyped(json);
7354
+ }
7355
+ function ReportQueryResultRowFromJSONTyped(json, ignoreDiscriminator) {
7356
+ if (json == null) {
7357
+ return json;
7358
+ }
7359
+ return {
7360
+ 'keys': json['keys'],
7361
+ 'labels': json['labels'],
7362
+ 'values': json['values'],
7363
+ };
7364
+ }
7365
+ function ReportQueryResultRowToJSON(json) {
7366
+ return ReportQueryResultRowToJSONTyped(json, false);
7367
+ }
7368
+ function ReportQueryResultRowToJSONTyped(value, ignoreDiscriminator = false) {
7369
+ if (value == null) {
7370
+ return value;
7371
+ }
7372
+ return {
7373
+ 'keys': value['keys'],
7374
+ 'labels': value['labels'],
7375
+ 'values': value['values'],
7376
+ };
7377
+ }
7378
+
7379
+ function instanceOfReportQueryResultColumn(value) {
7380
+ if (!('label' in value) || value['label'] === undefined)
7056
7381
  return false;
7057
- if (!('values' in value) || value['values'] === undefined)
7382
+ if (!('kind' in value) || value['kind'] === undefined)
7058
7383
  return false;
7059
7384
  return true;
7060
7385
  }
7061
- function ReportQueryFilterFromJSON(json) {
7062
- return ReportQueryFilterFromJSONTyped(json);
7386
+ function ReportQueryResultColumnFromJSON(json) {
7387
+ return ReportQueryResultColumnFromJSONTyped(json);
7063
7388
  }
7064
- function ReportQueryFilterFromJSONTyped(json, ignoreDiscriminator) {
7389
+ function ReportQueryResultColumnFromJSONTyped(json, ignoreDiscriminator) {
7065
7390
  if (json == null) {
7066
7391
  return json;
7067
7392
  }
7068
7393
  return {
7069
- 'field': json['field'],
7070
- 'op': json['op'],
7071
- 'values': json['values'],
7394
+ 'label': json['label'],
7395
+ 'kind': json['kind'],
7072
7396
  };
7073
7397
  }
7074
- function ReportQueryFilterToJSON(json) {
7075
- return ReportQueryFilterToJSONTyped(json, false);
7398
+ function ReportQueryResultColumnToJSON(json) {
7399
+ return ReportQueryResultColumnToJSONTyped(json, false);
7076
7400
  }
7077
- function ReportQueryFilterToJSONTyped(value, ignoreDiscriminator = false) {
7401
+ function ReportQueryResultColumnToJSONTyped(value, ignoreDiscriminator = false) {
7078
7402
  if (value == null) {
7079
7403
  return value;
7080
7404
  }
7081
7405
  return {
7082
- 'field': value['field'],
7083
- 'op': value['op'],
7084
- 'values': value['values'],
7406
+ 'label': value['label'],
7407
+ 'kind': value['kind'],
7085
7408
  };
7086
7409
  }
7087
7410
 
7088
- const ReportQueryDimensionBucketEnum = {
7089
- Day: 'day',
7090
- Week: 'week',
7091
- Month: 'month',
7092
- Quarter: 'quarter',
7093
- Year: 'year'
7094
- };
7095
- const ReportQueryDimensionNormalizeEnum = {
7096
- None: 'none',
7097
- TrimCase: 'trim_case',
7098
- Ipp: 'ipp'
7099
- };
7100
- function instanceOfReportQueryDimension(value) {
7101
- if (!('field' in value) || value['field'] === undefined)
7411
+ function instanceOfReportQueryResult(value) {
7412
+ if (!('columns' in value) || value['columns'] === undefined)
7413
+ return false;
7414
+ if (!('rows' in value) || value['rows'] === undefined)
7102
7415
  return false;
7103
7416
  return true;
7104
7417
  }
7105
- function ReportQueryDimensionFromJSON(json) {
7106
- return ReportQueryDimensionFromJSONTyped(json);
7418
+ function ReportQueryResultFromJSON(json) {
7419
+ return ReportQueryResultFromJSONTyped(json);
7107
7420
  }
7108
- function ReportQueryDimensionFromJSONTyped(json, ignoreDiscriminator) {
7421
+ function ReportQueryResultFromJSONTyped(json, ignoreDiscriminator) {
7109
7422
  if (json == null) {
7110
7423
  return json;
7111
7424
  }
7112
7425
  return {
7113
- 'field': json['field'],
7114
- 'bucket': json['bucket'] == null ? undefined : json['bucket'],
7115
- 'normalize': json['normalize'] == null ? undefined : json['normalize'],
7116
- 'includeEmpty': json['includeEmpty'] == null ? undefined : json['includeEmpty'],
7426
+ 'columns': (json['columns'].map(ReportQueryResultColumnFromJSON)),
7427
+ 'rows': (json['rows'].map(ReportQueryResultRowFromJSON)),
7117
7428
  };
7118
7429
  }
7119
- function ReportQueryDimensionToJSON(json) {
7120
- return ReportQueryDimensionToJSONTyped(json, false);
7430
+ function ReportQueryResultToJSON(json) {
7431
+ return ReportQueryResultToJSONTyped(json, false);
7121
7432
  }
7122
- function ReportQueryDimensionToJSONTyped(value, ignoreDiscriminator = false) {
7433
+ function ReportQueryResultToJSONTyped(value, ignoreDiscriminator = false) {
7123
7434
  if (value == null) {
7124
7435
  return value;
7125
7436
  }
7126
7437
  return {
7127
- 'field': value['field'],
7128
- 'bucket': value['bucket'],
7129
- 'normalize': value['normalize'],
7130
- 'includeEmpty': value['includeEmpty'],
7438
+ 'columns': (value['columns'].map(ReportQueryResultColumnToJSON)),
7439
+ 'rows': (value['rows'].map(ReportQueryResultRowToJSON)),
7131
7440
  };
7132
7441
  }
7133
7442
 
7134
- const ReportQuerySeriesSourceEnum = {
7135
- Items: 'items',
7136
- Articles: 'articles',
7137
- StateHistory: 'state_history'
7138
- };
7139
- const ReportQuerySeriesChartEnum = {
7140
- Bar: 'bar',
7141
- Line: 'line'
7142
- };
7143
- const ReportQuerySeriesAxisEnum = {
7144
- Y: 'y',
7145
- Y2: 'y2'
7146
- };
7147
- function instanceOfReportQuerySeries(value) {
7148
- if (!('source' in value) || value['source'] === undefined)
7149
- return false;
7150
- if (!('itemTypeIds' in value) || value['itemTypeIds'] === undefined)
7151
- return false;
7152
- if (!('filters' in value) || value['filters'] === undefined)
7443
+ function instanceOfReportQueryDataDto(value) {
7444
+ if (!('table' in value) || value['table'] === undefined)
7153
7445
  return false;
7154
- if (!('metric' in value) || value['metric'] === undefined)
7446
+ if (!('chart' in value) || value['chart'] === undefined)
7155
7447
  return false;
7156
7448
  return true;
7157
7449
  }
7158
- function ReportQuerySeriesFromJSON(json) {
7159
- return ReportQuerySeriesFromJSONTyped(json);
7450
+ function ReportQueryDataDtoFromJSON(json) {
7451
+ return ReportQueryDataDtoFromJSONTyped(json);
7160
7452
  }
7161
- function ReportQuerySeriesFromJSONTyped(json, ignoreDiscriminator) {
7453
+ function ReportQueryDataDtoFromJSONTyped(json, ignoreDiscriminator) {
7162
7454
  if (json == null) {
7163
7455
  return json;
7164
7456
  }
7165
7457
  return {
7166
- 'label': json['label'] == null ? undefined : json['label'],
7167
- 'source': json['source'],
7168
- 'itemTypeIds': json['itemTypeIds'],
7169
- 'filters': (json['filters'].map(ReportQueryFilterFromJSON)),
7170
- 'metric': ReportQueryMetricFromJSON(json['metric']),
7171
- 'splitBy': json['splitBy'] == null ? undefined : ReportQueryDimensionFromJSON(json['splitBy']),
7172
- 'chart': json['chart'] == null ? undefined : json['chart'],
7173
- 'color': json['color'] == null ? undefined : json['color'],
7174
- 'axis': json['axis'] == null ? undefined : json['axis'],
7458
+ 'table': ReportQueryResultFromJSON(json['table']),
7459
+ 'chart': ReportDataJSONDtoFromJSON(json['chart']),
7175
7460
  };
7176
7461
  }
7177
- function ReportQuerySeriesToJSON(json) {
7178
- return ReportQuerySeriesToJSONTyped(json, false);
7462
+ function ReportQueryDataDtoToJSON(json) {
7463
+ return ReportQueryDataDtoToJSONTyped(json, false);
7179
7464
  }
7180
- function ReportQuerySeriesToJSONTyped(value, ignoreDiscriminator = false) {
7465
+ function ReportQueryDataDtoToJSONTyped(value, ignoreDiscriminator = false) {
7181
7466
  if (value == null) {
7182
7467
  return value;
7183
7468
  }
7184
7469
  return {
7185
- 'label': value['label'],
7186
- 'source': value['source'],
7187
- 'itemTypeIds': value['itemTypeIds'],
7188
- 'filters': (value['filters'].map(ReportQueryFilterToJSON)),
7189
- 'metric': ReportQueryMetricToJSON(value['metric']),
7190
- 'splitBy': ReportQueryDimensionToJSON(value['splitBy']),
7191
- 'chart': value['chart'],
7192
- 'color': value['color'],
7193
- 'axis': value['axis'],
7470
+ 'table': ReportQueryResultToJSON(value['table']),
7471
+ 'chart': ReportDataJSONDtoToJSON(value['chart']),
7194
7472
  };
7195
7473
  }
7196
7474
 
7197
- const ReportQueryDefinitionSourceEnum = {
7198
- Items: 'items',
7199
- Articles: 'articles',
7200
- StateHistory: 'state_history'
7201
- };
7202
- const ReportQueryDefinitionChartEnum = {
7203
- Bar: 'bar',
7204
- Line: 'line',
7205
- Pie: 'pie',
7206
- StackedBar: 'stacked_bar',
7207
- Table: 'table'
7208
- };
7209
- function instanceOfReportQueryDefinition(value) {
7475
+ function instanceOfReportQueryDataOutput(value) {
7476
+ if (!('data' in value) || value['data'] === undefined)
7477
+ return false;
7210
7478
  return true;
7211
7479
  }
7212
- function ReportQueryDefinitionFromJSON(json) {
7213
- return ReportQueryDefinitionFromJSONTyped(json);
7480
+ function ReportQueryDataOutputFromJSON(json) {
7481
+ return ReportQueryDataOutputFromJSONTyped(json);
7214
7482
  }
7215
- function ReportQueryDefinitionFromJSONTyped(json, ignoreDiscriminator) {
7483
+ function ReportQueryDataOutputFromJSONTyped(json, ignoreDiscriminator) {
7216
7484
  if (json == null) {
7217
7485
  return json;
7218
7486
  }
7219
7487
  return {
7220
- 'version': json['version'] == null ? undefined : json['version'],
7221
- 'source': json['source'] == null ? undefined : json['source'],
7222
- 'itemTypeIds': json['itemTypeIds'] == null ? undefined : json['itemTypeIds'],
7223
- 'dimensions': json['dimensions'] == null ? undefined : (json['dimensions'].map(ReportQueryDimensionFromJSON)),
7224
- 'metrics': json['metrics'] == null ? undefined : (json['metrics'].map(ReportQueryMetricFromJSON)),
7225
- 'filters': json['filters'] == null ? undefined : (json['filters'].map(ReportQueryFilterFromJSON)),
7226
- 'x': json['x'] == null ? undefined : ReportQueryDimensionFromJSON(json['x']),
7227
- 'series': json['series'] == null ? undefined : (json['series'].map(ReportQuerySeriesFromJSON)),
7228
- 'chart': json['chart'] == null ? undefined : json['chart'],
7229
- 'labelX': json['labelX'] == null ? undefined : json['labelX'],
7230
- 'labelY': json['labelY'] == null ? undefined : json['labelY'],
7231
- 'labelY2': json['labelY2'] == null ? undefined : json['labelY2'],
7488
+ 'data': ReportQueryDataDtoFromJSON(json['data']),
7232
7489
  };
7233
7490
  }
7234
- function ReportQueryDefinitionToJSON(json) {
7235
- return ReportQueryDefinitionToJSONTyped(json, false);
7491
+ function ReportQueryDataOutputToJSON(json) {
7492
+ return ReportQueryDataOutputToJSONTyped(json, false);
7236
7493
  }
7237
- function ReportQueryDefinitionToJSONTyped(value, ignoreDiscriminator = false) {
7494
+ function ReportQueryDataOutputToJSONTyped(value, ignoreDiscriminator = false) {
7238
7495
  if (value == null) {
7239
7496
  return value;
7240
7497
  }
7241
7498
  return {
7242
- 'version': value['version'],
7243
- 'source': value['source'],
7244
- 'itemTypeIds': value['itemTypeIds'],
7245
- 'dimensions': value['dimensions'] == null ? undefined : (value['dimensions'].map(ReportQueryDimensionToJSON)),
7246
- 'metrics': value['metrics'] == null ? undefined : (value['metrics'].map(ReportQueryMetricToJSON)),
7247
- 'filters': value['filters'] == null ? undefined : (value['filters'].map(ReportQueryFilterToJSON)),
7248
- 'x': ReportQueryDimensionToJSON(value['x']),
7249
- 'series': value['series'] == null ? undefined : (value['series'].map(ReportQuerySeriesToJSON)),
7250
- 'chart': value['chart'],
7251
- 'labelX': value['labelX'],
7252
- 'labelY': value['labelY'],
7253
- 'labelY2': value['labelY2'],
7499
+ 'data': ReportQueryDataDtoToJSON(value['data']),
7254
7500
  };
7255
7501
  }
7256
7502
 
7503
+ const ReportQueryDateBucket = {
7504
+ Day: 'day',
7505
+ Week: 'week',
7506
+ Month: 'month',
7507
+ Quarter: 'quarter',
7508
+ Year: 'year'
7509
+ };
7510
+ function instanceOfReportQueryDateBucket(value) {
7511
+ for (const key in ReportQueryDateBucket) {
7512
+ if (Object.prototype.hasOwnProperty.call(ReportQueryDateBucket, key)) {
7513
+ if (ReportQueryDateBucket[key] === value) {
7514
+ return true;
7515
+ }
7516
+ }
7517
+ }
7518
+ return false;
7519
+ }
7520
+ function ReportQueryDateBucketFromJSON(json) {
7521
+ return ReportQueryDateBucketFromJSONTyped(json);
7522
+ }
7523
+ function ReportQueryDateBucketFromJSONTyped(json, ignoreDiscriminator) {
7524
+ return json;
7525
+ }
7526
+ function ReportQueryDateBucketToJSON(value) {
7527
+ return value;
7528
+ }
7529
+ function ReportQueryDateBucketToJSONTyped(value, ignoreDiscriminator) {
7530
+ return value;
7531
+ }
7532
+
7257
7533
  function instanceOfReportQueryDto(value) {
7258
7534
  if (!('id' in value) || value['id'] === undefined)
7259
7535
  return false;
@@ -9110,6 +9386,29 @@ class ItemApi extends BaseAPI {
9110
9386
  const response = await this.apiV1ItemWithinGetRaw(requestParameters, initOverrides);
9111
9387
  return await response.value();
9112
9388
  }
9389
+ async apiV2ItemFillFromTextPostRaw(requestParameters, initOverrides) {
9390
+ if (requestParameters['itemTextFillInput'] == null) {
9391
+ throw new RequiredError('itemTextFillInput', 'Required parameter "itemTextFillInput" was null or undefined when calling apiV2ItemFillFromTextPost().');
9392
+ }
9393
+ const queryParameters = {};
9394
+ const headerParameters = {};
9395
+ headerParameters['Content-Type'] = 'application/json';
9396
+ if (this.configuration && this.configuration.apiKey) {
9397
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
9398
+ }
9399
+ const response = await this.request({
9400
+ path: `/api/v2/item/fill-from-text`,
9401
+ method: 'POST',
9402
+ headers: headerParameters,
9403
+ query: queryParameters,
9404
+ body: ItemTextFillInputToJSON(requestParameters['itemTextFillInput']),
9405
+ }, initOverrides);
9406
+ return new JSONApiResponse(response, (jsonValue) => ItemTextFillOutputFromJSON(jsonValue));
9407
+ }
9408
+ async apiV2ItemFillFromTextPost(requestParameters, initOverrides) {
9409
+ const response = await this.apiV2ItemFillFromTextPostRaw(requestParameters, initOverrides);
9410
+ return await response.value();
9411
+ }
9113
9412
  async apiV2ItemPostRaw(requestParameters, initOverrides) {
9114
9413
  if (requestParameters['mapItemWithPointsInput'] == null) {
9115
9414
  throw new RequiredError('mapItemWithPointsInput', 'Required parameter "mapItemWithPointsInput" was null or undefined when calling apiV2ItemPost().');
@@ -11124,6 +11423,29 @@ class ReportApi extends BaseAPI {
11124
11423
  const response = await this.apiV1ReportReportIdGetRaw(requestParameters, initOverrides);
11125
11424
  return await response.value();
11126
11425
  }
11426
+ async apiV2ReportAssistantPostRaw(requestParameters, initOverrides) {
11427
+ if (requestParameters['reportQueryAssistantInput'] == null) {
11428
+ throw new RequiredError('reportQueryAssistantInput', 'Required parameter "reportQueryAssistantInput" was null or undefined when calling apiV2ReportAssistantPost().');
11429
+ }
11430
+ const queryParameters = {};
11431
+ const headerParameters = {};
11432
+ headerParameters['Content-Type'] = 'application/json';
11433
+ if (this.configuration && this.configuration.apiKey) {
11434
+ headerParameters["apiKey"] = await this.configuration.apiKey("apiKey");
11435
+ }
11436
+ const response = await this.request({
11437
+ path: `/api/v2/report/assistant`,
11438
+ method: 'POST',
11439
+ headers: headerParameters,
11440
+ query: queryParameters,
11441
+ body: ReportQueryAssistantInputToJSON(requestParameters['reportQueryAssistantInput']),
11442
+ }, initOverrides);
11443
+ return new JSONApiResponse(response, (jsonValue) => ReportQueryAssistantOutputFromJSON(jsonValue));
11444
+ }
11445
+ async apiV2ReportAssistantPost(requestParameters, initOverrides) {
11446
+ const response = await this.apiV2ReportAssistantPostRaw(requestParameters, initOverrides);
11447
+ return await response.value();
11448
+ }
11127
11449
  async apiV2ReportCatalogGetRaw(initOverrides) {
11128
11450
  const queryParameters = {};
11129
11451
  const headerParameters = {};
@@ -11669,10 +11991,10 @@ exports.DataPointFromJSON = DataPointFromJSON;
11669
11991
  exports.DataPointFromJSONTyped = DataPointFromJSONTyped;
11670
11992
  exports.DataPointToJSON = DataPointToJSON;
11671
11993
  exports.DataPointToJSONTyped = DataPointToJSONTyped;
11672
- exports.Def227FromJSON = Def227FromJSON;
11673
- exports.Def227FromJSONTyped = Def227FromJSONTyped;
11674
- exports.Def227ToJSON = Def227ToJSON;
11675
- exports.Def227ToJSONTyped = Def227ToJSONTyped;
11994
+ exports.Def235FromJSON = Def235FromJSON;
11995
+ exports.Def235FromJSONTyped = Def235FromJSONTyped;
11996
+ exports.Def235ToJSON = Def235ToJSON;
11997
+ exports.Def235ToJSONTyped = Def235ToJSONTyped;
11676
11998
  exports.DefaultApi = DefaultApi;
11677
11999
  exports.DefaultConfig = DefaultConfig;
11678
12000
  exports.FetchError = FetchError;
@@ -11708,6 +12030,26 @@ exports.ItemRenderOptionsOutputFromJSON = ItemRenderOptionsOutputFromJSON;
11708
12030
  exports.ItemRenderOptionsOutputFromJSONTyped = ItemRenderOptionsOutputFromJSONTyped;
11709
12031
  exports.ItemRenderOptionsOutputToJSON = ItemRenderOptionsOutputToJSON;
11710
12032
  exports.ItemRenderOptionsOutputToJSONTyped = ItemRenderOptionsOutputToJSONTyped;
12033
+ exports.ItemTextFillArticleFromJSON = ItemTextFillArticleFromJSON;
12034
+ exports.ItemTextFillArticleFromJSONTyped = ItemTextFillArticleFromJSONTyped;
12035
+ exports.ItemTextFillArticleToJSON = ItemTextFillArticleToJSON;
12036
+ exports.ItemTextFillArticleToJSONTyped = ItemTextFillArticleToJSONTyped;
12037
+ exports.ItemTextFillDtoFromJSON = ItemTextFillDtoFromJSON;
12038
+ exports.ItemTextFillDtoFromJSONTyped = ItemTextFillDtoFromJSONTyped;
12039
+ exports.ItemTextFillDtoToJSON = ItemTextFillDtoToJSON;
12040
+ exports.ItemTextFillDtoToJSONTyped = ItemTextFillDtoToJSONTyped;
12041
+ exports.ItemTextFillInputFromJSON = ItemTextFillInputFromJSON;
12042
+ exports.ItemTextFillInputFromJSONTyped = ItemTextFillInputFromJSONTyped;
12043
+ exports.ItemTextFillInputToJSON = ItemTextFillInputToJSON;
12044
+ exports.ItemTextFillInputToJSONTyped = ItemTextFillInputToJSONTyped;
12045
+ exports.ItemTextFillOutputFromJSON = ItemTextFillOutputFromJSON;
12046
+ exports.ItemTextFillOutputFromJSONTyped = ItemTextFillOutputFromJSONTyped;
12047
+ exports.ItemTextFillOutputToJSON = ItemTextFillOutputToJSON;
12048
+ exports.ItemTextFillOutputToJSONTyped = ItemTextFillOutputToJSONTyped;
12049
+ exports.ItemTextFillValueFromJSON = ItemTextFillValueFromJSON;
12050
+ exports.ItemTextFillValueFromJSONTyped = ItemTextFillValueFromJSONTyped;
12051
+ exports.ItemTextFillValueToJSON = ItemTextFillValueToJSON;
12052
+ exports.ItemTextFillValueToJSONTyped = ItemTextFillValueToJSONTyped;
11711
12053
  exports.ItemTypeApi = ItemTypeApi;
11712
12054
  exports.ItemTypeFormDtoFromJSON = ItemTypeFormDtoFromJSON;
11713
12055
  exports.ItemTypeFormDtoFromJSONTyped = ItemTypeFormDtoFromJSONTyped;
@@ -12257,6 +12599,18 @@ exports.ReportOutputFromJSON = ReportOutputFromJSON;
12257
12599
  exports.ReportOutputFromJSONTyped = ReportOutputFromJSONTyped;
12258
12600
  exports.ReportOutputToJSON = ReportOutputToJSON;
12259
12601
  exports.ReportOutputToJSONTyped = ReportOutputToJSONTyped;
12602
+ exports.ReportQueryAssistantDtoFromJSON = ReportQueryAssistantDtoFromJSON;
12603
+ exports.ReportQueryAssistantDtoFromJSONTyped = ReportQueryAssistantDtoFromJSONTyped;
12604
+ exports.ReportQueryAssistantDtoToJSON = ReportQueryAssistantDtoToJSON;
12605
+ exports.ReportQueryAssistantDtoToJSONTyped = ReportQueryAssistantDtoToJSONTyped;
12606
+ exports.ReportQueryAssistantInputFromJSON = ReportQueryAssistantInputFromJSON;
12607
+ exports.ReportQueryAssistantInputFromJSONTyped = ReportQueryAssistantInputFromJSONTyped;
12608
+ exports.ReportQueryAssistantInputToJSON = ReportQueryAssistantInputToJSON;
12609
+ exports.ReportQueryAssistantInputToJSONTyped = ReportQueryAssistantInputToJSONTyped;
12610
+ exports.ReportQueryAssistantOutputFromJSON = ReportQueryAssistantOutputFromJSON;
12611
+ exports.ReportQueryAssistantOutputFromJSONTyped = ReportQueryAssistantOutputFromJSONTyped;
12612
+ exports.ReportQueryAssistantOutputToJSON = ReportQueryAssistantOutputToJSON;
12613
+ exports.ReportQueryAssistantOutputToJSONTyped = ReportQueryAssistantOutputToJSONTyped;
12260
12614
  exports.ReportQueryAxis = ReportQueryAxis;
12261
12615
  exports.ReportQueryAxisFromJSON = ReportQueryAxisFromJSON;
12262
12616
  exports.ReportQueryAxisFromJSONTyped = ReportQueryAxisFromJSONTyped;
@@ -12579,7 +12933,7 @@ exports.instanceOfChartTitle = instanceOfChartTitle;
12579
12933
  exports.instanceOfComputeRouteInput = instanceOfComputeRouteInput;
12580
12934
  exports.instanceOfCoordDto = instanceOfCoordDto;
12581
12935
  exports.instanceOfDataPoint = instanceOfDataPoint;
12582
- exports.instanceOfDef227 = instanceOfDef227;
12936
+ exports.instanceOfDef235 = instanceOfDef235;
12583
12937
  exports.instanceOfHealthcheckStatusValue = instanceOfHealthcheckStatusValue;
12584
12938
  exports.instanceOfInternalMapItemSearchResultORM = instanceOfInternalMapItemSearchResultORM;
12585
12939
  exports.instanceOfItemDecorationDto = instanceOfItemDecorationDto;
@@ -12587,6 +12941,11 @@ exports.instanceOfItemLayerLinkInputDto = instanceOfItemLayerLinkInputDto;
12587
12941
  exports.instanceOfItemLinkToLayerOutput = instanceOfItemLinkToLayerOutput;
12588
12942
  exports.instanceOfItemRenderOptionsInput = instanceOfItemRenderOptionsInput;
12589
12943
  exports.instanceOfItemRenderOptionsOutput = instanceOfItemRenderOptionsOutput;
12944
+ exports.instanceOfItemTextFillArticle = instanceOfItemTextFillArticle;
12945
+ exports.instanceOfItemTextFillDto = instanceOfItemTextFillDto;
12946
+ exports.instanceOfItemTextFillInput = instanceOfItemTextFillInput;
12947
+ exports.instanceOfItemTextFillOutput = instanceOfItemTextFillOutput;
12948
+ exports.instanceOfItemTextFillValue = instanceOfItemTextFillValue;
12590
12949
  exports.instanceOfItemTypeFormDto = instanceOfItemTypeFormDto;
12591
12950
  exports.instanceOfItemTypeFormOutput = instanceOfItemTypeFormOutput;
12592
12951
  exports.instanceOfItemTypeInitialValueInputDto = instanceOfItemTypeInitialValueInputDto;
@@ -12717,6 +13076,9 @@ exports.instanceOfReportDto = instanceOfReportDto;
12717
13076
  exports.instanceOfReportListOutput = instanceOfReportListOutput;
12718
13077
  exports.instanceOfReportORM = instanceOfReportORM;
12719
13078
  exports.instanceOfReportOutput = instanceOfReportOutput;
13079
+ exports.instanceOfReportQueryAssistantDto = instanceOfReportQueryAssistantDto;
13080
+ exports.instanceOfReportQueryAssistantInput = instanceOfReportQueryAssistantInput;
13081
+ exports.instanceOfReportQueryAssistantOutput = instanceOfReportQueryAssistantOutput;
12720
13082
  exports.instanceOfReportQueryAxis = instanceOfReportQueryAxis;
12721
13083
  exports.instanceOfReportQueryCatalogField = instanceOfReportQueryCatalogField;
12722
13084
  exports.instanceOfReportQueryCatalogOutput = instanceOfReportQueryCatalogOutput;