mavenagi 1.0.5 → 1.0.7
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/Client.d.ts +3 -0
- package/Client.js +17 -12
- package/README.md +30 -13
- package/api/resources/actions/client/Client.js +3 -3
- package/api/resources/analytics/client/Client.d.ts +162 -0
- package/api/resources/analytics/client/Client.js +390 -0
- package/api/resources/analytics/client/index.d.ts +1 -0
- package/api/resources/analytics/client/index.js +2 -0
- package/api/resources/analytics/index.d.ts +2 -0
- package/api/resources/analytics/index.js +18 -0
- package/api/resources/analytics/types/BarChartRequest.d.ts +18 -0
- package/api/resources/analytics/types/BarChartRequest.js +5 -0
- package/api/resources/analytics/types/BarChartResponse.d.ts +12 -0
- package/api/resources/analytics/types/BarChartResponse.js +5 -0
- package/api/resources/analytics/types/CellData.d.ts +23 -0
- package/api/resources/analytics/types/CellData.js +5 -0
- package/api/resources/analytics/types/ChartResponse.d.ts +80 -0
- package/api/resources/analytics/types/ChartResponse.js +5 -0
- package/api/resources/analytics/types/ColumnDefinitionBase.d.ts +7 -0
- package/api/resources/analytics/types/ColumnDefinitionBase.js +5 -0
- package/api/resources/analytics/types/ConversationAnalyticsRequest.d.ts +8 -0
- package/api/resources/analytics/types/ConversationAnalyticsRequest.js +5 -0
- package/api/resources/analytics/types/ConversationAverage.d.ts +9 -0
- package/api/resources/analytics/types/ConversationAverage.js +5 -0
- package/api/resources/analytics/types/ConversationBasicMetric.d.ts +8 -0
- package/api/resources/analytics/types/ConversationBasicMetric.js +5 -0
- package/api/resources/analytics/types/ConversationChartRequest.d.ts +63 -0
- package/api/resources/analytics/types/ConversationChartRequest.js +5 -0
- package/api/resources/analytics/types/ConversationColumnDefinition.d.ts +8 -0
- package/api/resources/analytics/types/ConversationColumnDefinition.js +5 -0
- package/api/resources/analytics/types/ConversationCount.d.ts +8 -0
- package/api/resources/analytics/types/ConversationCount.js +5 -0
- package/api/resources/analytics/types/ConversationDistinctCount.d.ts +10 -0
- package/api/resources/analytics/types/ConversationDistinctCount.js +5 -0
- package/api/resources/analytics/types/ConversationGroupBy.d.ts +10 -0
- package/api/resources/analytics/types/ConversationGroupBy.js +5 -0
- package/api/resources/analytics/types/ConversationMax.d.ts +9 -0
- package/api/resources/analytics/types/ConversationMax.js +5 -0
- package/api/resources/analytics/types/ConversationMedian.d.ts +9 -0
- package/api/resources/analytics/types/ConversationMedian.js +5 -0
- package/api/resources/analytics/types/ConversationMetric.d.ts +35 -0
- package/api/resources/analytics/types/ConversationMetric.js +5 -0
- package/api/resources/analytics/types/ConversationMin.d.ts +9 -0
- package/api/resources/analytics/types/ConversationMin.js +5 -0
- package/api/resources/analytics/types/ConversationNumericMetric.d.ts +8 -0
- package/api/resources/analytics/types/ConversationNumericMetric.js +5 -0
- package/api/resources/analytics/types/ConversationPercentile.d.ts +11 -0
- package/api/resources/analytics/types/ConversationPercentile.js +5 -0
- package/api/resources/analytics/types/ConversationRow.d.ts +11 -0
- package/api/resources/analytics/types/ConversationRow.js +5 -0
- package/api/resources/analytics/types/ConversationSum.d.ts +9 -0
- package/api/resources/analytics/types/ConversationSum.js +5 -0
- package/api/resources/analytics/types/ConversationTableRequest.d.ts +47 -0
- package/api/resources/analytics/types/ConversationTableRequest.js +5 -0
- package/api/resources/analytics/types/ConversationTableResponse.d.ts +115 -0
- package/api/resources/analytics/types/ConversationTableResponse.js +5 -0
- package/api/resources/analytics/types/DateHistogramRequest.d.ts +12 -0
- package/api/resources/analytics/types/DateHistogramRequest.js +5 -0
- package/api/resources/analytics/types/DateHistogramResponse.d.ts +12 -0
- package/api/resources/analytics/types/DateHistogramResponse.js +5 -0
- package/api/resources/analytics/types/FeedbackAnalyticsRequest.d.ts +8 -0
- package/api/resources/analytics/types/FeedbackAnalyticsRequest.js +5 -0
- package/api/resources/analytics/types/FeedbackColumnDefinition.d.ts +8 -0
- package/api/resources/analytics/types/FeedbackColumnDefinition.js +5 -0
- package/api/resources/analytics/types/FeedbackCount.d.ts +8 -0
- package/api/resources/analytics/types/FeedbackCount.js +5 -0
- package/api/resources/analytics/types/FeedbackDistinctCount.d.ts +12 -0
- package/api/resources/analytics/types/FeedbackDistinctCount.js +5 -0
- package/api/resources/analytics/types/FeedbackGroupBy.d.ts +8 -0
- package/api/resources/analytics/types/FeedbackGroupBy.js +5 -0
- package/api/resources/analytics/types/FeedbackMetric.d.ts +16 -0
- package/api/resources/analytics/types/FeedbackMetric.js +5 -0
- package/api/resources/analytics/types/FeedbackRow.d.ts +11 -0
- package/api/resources/analytics/types/FeedbackRow.js +5 -0
- package/api/resources/analytics/types/FeedbackTableRequest.d.ts +40 -0
- package/api/resources/analytics/types/FeedbackTableRequest.js +5 -0
- package/api/resources/analytics/types/FeedbackTableResponse.d.ts +45 -0
- package/api/resources/analytics/types/FeedbackTableResponse.js +5 -0
- package/api/resources/analytics/types/FieldValue.d.ts +33 -0
- package/api/resources/analytics/types/FieldValue.js +5 -0
- package/api/resources/analytics/types/GroupByBase.d.ts +7 -0
- package/api/resources/analytics/types/GroupByBase.js +5 -0
- package/api/resources/analytics/types/LabeledPoint.d.ts +9 -0
- package/api/resources/analytics/types/LabeledPoint.js +5 -0
- package/api/resources/analytics/types/PieChartRequest.d.ts +10 -0
- package/api/resources/analytics/types/PieChartRequest.js +5 -0
- package/api/resources/analytics/types/PieChartResponse.d.ts +11 -0
- package/api/resources/analytics/types/PieChartResponse.js +5 -0
- package/api/resources/analytics/types/Range.d.ts +9 -0
- package/api/resources/analytics/types/Range.js +5 -0
- package/api/resources/analytics/types/RowBase.d.ts +8 -0
- package/api/resources/analytics/types/RowBase.js +5 -0
- package/api/resources/analytics/types/Series.d.ts +13 -0
- package/api/resources/analytics/types/Series.js +5 -0
- package/api/resources/analytics/types/TableResponseBase.d.ts +7 -0
- package/api/resources/analytics/types/TableResponseBase.js +5 -0
- package/api/resources/analytics/types/TimeDataPoint.d.ts +9 -0
- package/api/resources/analytics/types/TimeDataPoint.js +5 -0
- package/api/resources/analytics/types/TimeInterval.d.ts +11 -0
- package/api/resources/analytics/types/TimeInterval.js +13 -0
- package/api/resources/analytics/types/TimeSeries.d.ts +10 -0
- package/api/resources/analytics/types/TimeSeries.js +5 -0
- package/api/resources/analytics/types/index.d.ts +46 -0
- package/api/resources/analytics/types/index.js +62 -0
- package/api/resources/appSettings/client/Client.js +1 -1
- package/api/resources/commons/types/ConversationPrecondition.d.ts +4 -1
- package/api/resources/commons/types/ConversationResponse.d.ts +10 -1
- package/api/resources/commons/types/ConversationSummary.d.ts +10 -0
- package/api/resources/commons/types/ConversationSummary.js +5 -0
- package/api/resources/commons/types/EntityId.d.ts +6 -7
- package/api/resources/commons/types/EntityIdFilter.d.ts +7 -0
- package/api/resources/commons/types/EntityIdFilter.js +5 -0
- package/api/resources/commons/types/EntityIdWithoutAgent.d.ts +13 -0
- package/api/resources/commons/types/EntityIdWithoutAgent.js +5 -0
- package/api/resources/commons/types/EventTriggerBase.d.ts +8 -1
- package/api/resources/commons/types/ResponseConfigPrecondition.d.ts +11 -0
- package/api/resources/commons/types/ResponseConfigPrecondition.js +5 -0
- package/api/resources/commons/types/index.d.ts +4 -0
- package/api/resources/commons/types/index.js +4 -0
- package/api/resources/conversation/client/Client.d.ts +67 -4
- package/api/resources/conversation/client/Client.js +144 -14
- package/api/resources/conversation/client/requests/ConversationDeleteRequest.d.ts +19 -0
- package/api/resources/conversation/client/requests/ConversationDeleteRequest.js +5 -0
- package/api/resources/conversation/client/requests/index.d.ts +1 -0
- package/api/resources/conversation/types/AskRequest.d.ts +1 -1
- package/api/resources/conversation/types/ConversationField.d.ts +26 -0
- package/api/resources/conversation/types/ConversationField.js +28 -0
- package/api/resources/conversation/types/ConversationFilter.d.ts +21 -0
- package/api/resources/conversation/types/ConversationFilter.js +5 -0
- package/api/resources/conversation/types/FeedbackField.d.ts +9 -0
- package/api/resources/conversation/types/FeedbackField.js +11 -0
- package/api/resources/conversation/types/FeedbackFilter.d.ts +10 -0
- package/api/resources/conversation/types/FeedbackFilter.js +5 -0
- package/api/resources/conversation/types/NumericConversationField.d.ts +11 -0
- package/api/resources/conversation/types/NumericConversationField.js +13 -0
- package/api/resources/conversation/types/Quality.d.ts +9 -0
- package/api/resources/conversation/types/Quality.js +11 -0
- package/api/resources/conversation/types/QualityReason.d.ts +15 -0
- package/api/resources/conversation/types/QualityReason.js +17 -0
- package/api/resources/conversation/types/index.d.ts +7 -0
- package/api/resources/conversation/types/index.js +7 -0
- package/api/resources/index.d.ts +2 -0
- package/api/resources/index.js +3 -1
- package/api/resources/knowledge/client/Client.js +7 -7
- package/api/resources/translations/client/Client.js +1 -1
- package/api/resources/triggers/client/Client.js +3 -3
- package/api/resources/users/client/Client.d.ts +20 -0
- package/api/resources/users/client/Client.js +88 -2
- package/api/resources/users/client/requests/UserDeleteRequest.d.ts +13 -0
- package/api/resources/users/client/requests/UserDeleteRequest.js +5 -0
- package/api/resources/users/client/requests/index.d.ts +1 -0
- package/dist/Client.d.ts +3 -0
- package/dist/Client.js +17 -12
- package/dist/api/resources/actions/client/Client.js +3 -3
- package/dist/api/resources/analytics/client/Client.d.ts +162 -0
- package/dist/api/resources/analytics/client/Client.js +390 -0
- package/dist/api/resources/analytics/client/index.d.ts +1 -0
- package/dist/api/resources/analytics/client/index.js +2 -0
- package/dist/api/resources/analytics/index.d.ts +2 -0
- package/dist/api/resources/analytics/index.js +18 -0
- package/dist/api/resources/analytics/types/BarChartRequest.d.ts +18 -0
- package/dist/api/resources/analytics/types/BarChartRequest.js +5 -0
- package/dist/api/resources/analytics/types/BarChartResponse.d.ts +12 -0
- package/dist/api/resources/analytics/types/BarChartResponse.js +5 -0
- package/dist/api/resources/analytics/types/CellData.d.ts +23 -0
- package/dist/api/resources/analytics/types/CellData.js +5 -0
- package/dist/api/resources/analytics/types/ChartResponse.d.ts +80 -0
- package/dist/api/resources/analytics/types/ChartResponse.js +5 -0
- package/dist/api/resources/analytics/types/ColumnDefinitionBase.d.ts +7 -0
- package/dist/api/resources/analytics/types/ColumnDefinitionBase.js +5 -0
- package/dist/api/resources/analytics/types/ConversationAnalyticsRequest.d.ts +8 -0
- package/dist/api/resources/analytics/types/ConversationAnalyticsRequest.js +5 -0
- package/dist/api/resources/analytics/types/ConversationAverage.d.ts +9 -0
- package/dist/api/resources/analytics/types/ConversationAverage.js +5 -0
- package/dist/api/resources/analytics/types/ConversationBasicMetric.d.ts +8 -0
- package/dist/api/resources/analytics/types/ConversationBasicMetric.js +5 -0
- package/dist/api/resources/analytics/types/ConversationChartRequest.d.ts +63 -0
- package/dist/api/resources/analytics/types/ConversationChartRequest.js +5 -0
- package/dist/api/resources/analytics/types/ConversationColumnDefinition.d.ts +8 -0
- package/dist/api/resources/analytics/types/ConversationColumnDefinition.js +5 -0
- package/dist/api/resources/analytics/types/ConversationCount.d.ts +8 -0
- package/dist/api/resources/analytics/types/ConversationCount.js +5 -0
- package/dist/api/resources/analytics/types/ConversationDistinctCount.d.ts +10 -0
- package/dist/api/resources/analytics/types/ConversationDistinctCount.js +5 -0
- package/dist/api/resources/analytics/types/ConversationGroupBy.d.ts +10 -0
- package/dist/api/resources/analytics/types/ConversationGroupBy.js +5 -0
- package/dist/api/resources/analytics/types/ConversationMax.d.ts +9 -0
- package/dist/api/resources/analytics/types/ConversationMax.js +5 -0
- package/dist/api/resources/analytics/types/ConversationMedian.d.ts +9 -0
- package/dist/api/resources/analytics/types/ConversationMedian.js +5 -0
- package/dist/api/resources/analytics/types/ConversationMetric.d.ts +35 -0
- package/dist/api/resources/analytics/types/ConversationMetric.js +5 -0
- package/dist/api/resources/analytics/types/ConversationMin.d.ts +9 -0
- package/dist/api/resources/analytics/types/ConversationMin.js +5 -0
- package/dist/api/resources/analytics/types/ConversationNumericMetric.d.ts +8 -0
- package/dist/api/resources/analytics/types/ConversationNumericMetric.js +5 -0
- package/dist/api/resources/analytics/types/ConversationPercentile.d.ts +11 -0
- package/dist/api/resources/analytics/types/ConversationPercentile.js +5 -0
- package/dist/api/resources/analytics/types/ConversationRow.d.ts +11 -0
- package/dist/api/resources/analytics/types/ConversationRow.js +5 -0
- package/dist/api/resources/analytics/types/ConversationSum.d.ts +9 -0
- package/dist/api/resources/analytics/types/ConversationSum.js +5 -0
- package/dist/api/resources/analytics/types/ConversationTableRequest.d.ts +47 -0
- package/dist/api/resources/analytics/types/ConversationTableRequest.js +5 -0
- package/dist/api/resources/analytics/types/ConversationTableResponse.d.ts +115 -0
- package/dist/api/resources/analytics/types/ConversationTableResponse.js +5 -0
- package/dist/api/resources/analytics/types/DateHistogramRequest.d.ts +12 -0
- package/dist/api/resources/analytics/types/DateHistogramRequest.js +5 -0
- package/dist/api/resources/analytics/types/DateHistogramResponse.d.ts +12 -0
- package/dist/api/resources/analytics/types/DateHistogramResponse.js +5 -0
- package/dist/api/resources/analytics/types/FeedbackAnalyticsRequest.d.ts +8 -0
- package/dist/api/resources/analytics/types/FeedbackAnalyticsRequest.js +5 -0
- package/dist/api/resources/analytics/types/FeedbackColumnDefinition.d.ts +8 -0
- package/dist/api/resources/analytics/types/FeedbackColumnDefinition.js +5 -0
- package/dist/api/resources/analytics/types/FeedbackCount.d.ts +8 -0
- package/dist/api/resources/analytics/types/FeedbackCount.js +5 -0
- package/dist/api/resources/analytics/types/FeedbackDistinctCount.d.ts +12 -0
- package/dist/api/resources/analytics/types/FeedbackDistinctCount.js +5 -0
- package/dist/api/resources/analytics/types/FeedbackGroupBy.d.ts +8 -0
- package/dist/api/resources/analytics/types/FeedbackGroupBy.js +5 -0
- package/dist/api/resources/analytics/types/FeedbackMetric.d.ts +16 -0
- package/dist/api/resources/analytics/types/FeedbackMetric.js +5 -0
- package/dist/api/resources/analytics/types/FeedbackRow.d.ts +11 -0
- package/dist/api/resources/analytics/types/FeedbackRow.js +5 -0
- package/dist/api/resources/analytics/types/FeedbackTableRequest.d.ts +40 -0
- package/dist/api/resources/analytics/types/FeedbackTableRequest.js +5 -0
- package/dist/api/resources/analytics/types/FeedbackTableResponse.d.ts +45 -0
- package/dist/api/resources/analytics/types/FeedbackTableResponse.js +5 -0
- package/dist/api/resources/analytics/types/FieldValue.d.ts +33 -0
- package/dist/api/resources/analytics/types/FieldValue.js +5 -0
- package/dist/api/resources/analytics/types/GroupByBase.d.ts +7 -0
- package/dist/api/resources/analytics/types/GroupByBase.js +5 -0
- package/dist/api/resources/analytics/types/LabeledPoint.d.ts +9 -0
- package/dist/api/resources/analytics/types/LabeledPoint.js +5 -0
- package/dist/api/resources/analytics/types/PieChartRequest.d.ts +10 -0
- package/dist/api/resources/analytics/types/PieChartRequest.js +5 -0
- package/dist/api/resources/analytics/types/PieChartResponse.d.ts +11 -0
- package/dist/api/resources/analytics/types/PieChartResponse.js +5 -0
- package/dist/api/resources/analytics/types/Range.d.ts +9 -0
- package/dist/api/resources/analytics/types/Range.js +5 -0
- package/dist/api/resources/analytics/types/RowBase.d.ts +8 -0
- package/dist/api/resources/analytics/types/RowBase.js +5 -0
- package/dist/api/resources/analytics/types/Series.d.ts +13 -0
- package/dist/api/resources/analytics/types/Series.js +5 -0
- package/dist/api/resources/analytics/types/TableResponseBase.d.ts +7 -0
- package/dist/api/resources/analytics/types/TableResponseBase.js +5 -0
- package/dist/api/resources/analytics/types/TimeDataPoint.d.ts +9 -0
- package/dist/api/resources/analytics/types/TimeDataPoint.js +5 -0
- package/dist/api/resources/analytics/types/TimeInterval.d.ts +11 -0
- package/dist/api/resources/analytics/types/TimeInterval.js +13 -0
- package/dist/api/resources/analytics/types/TimeSeries.d.ts +10 -0
- package/dist/api/resources/analytics/types/TimeSeries.js +5 -0
- package/dist/api/resources/analytics/types/index.d.ts +46 -0
- package/dist/api/resources/analytics/types/index.js +62 -0
- package/dist/api/resources/appSettings/client/Client.js +1 -1
- package/dist/api/resources/commons/types/ConversationPrecondition.d.ts +4 -1
- package/dist/api/resources/commons/types/ConversationResponse.d.ts +10 -1
- package/dist/api/resources/commons/types/ConversationSummary.d.ts +10 -0
- package/dist/api/resources/commons/types/ConversationSummary.js +5 -0
- package/dist/api/resources/commons/types/EntityId.d.ts +6 -7
- package/dist/api/resources/commons/types/EntityIdFilter.d.ts +7 -0
- package/dist/api/resources/commons/types/EntityIdFilter.js +5 -0
- package/dist/api/resources/commons/types/EntityIdWithoutAgent.d.ts +13 -0
- package/dist/api/resources/commons/types/EntityIdWithoutAgent.js +5 -0
- package/dist/api/resources/commons/types/EventTriggerBase.d.ts +8 -1
- package/dist/api/resources/commons/types/ResponseConfigPrecondition.d.ts +11 -0
- package/dist/api/resources/commons/types/ResponseConfigPrecondition.js +5 -0
- package/dist/api/resources/commons/types/index.d.ts +4 -0
- package/dist/api/resources/commons/types/index.js +4 -0
- package/dist/api/resources/conversation/client/Client.d.ts +67 -4
- package/dist/api/resources/conversation/client/Client.js +144 -14
- package/dist/api/resources/conversation/client/requests/ConversationDeleteRequest.d.ts +19 -0
- package/dist/api/resources/conversation/client/requests/ConversationDeleteRequest.js +5 -0
- package/dist/api/resources/conversation/client/requests/index.d.ts +1 -0
- package/dist/api/resources/conversation/types/AskRequest.d.ts +1 -1
- package/dist/api/resources/conversation/types/ConversationField.d.ts +26 -0
- package/dist/api/resources/conversation/types/ConversationField.js +28 -0
- package/dist/api/resources/conversation/types/ConversationFilter.d.ts +21 -0
- package/dist/api/resources/conversation/types/ConversationFilter.js +5 -0
- package/dist/api/resources/conversation/types/FeedbackField.d.ts +9 -0
- package/dist/api/resources/conversation/types/FeedbackField.js +11 -0
- package/dist/api/resources/conversation/types/FeedbackFilter.d.ts +10 -0
- package/dist/api/resources/conversation/types/FeedbackFilter.js +5 -0
- package/dist/api/resources/conversation/types/NumericConversationField.d.ts +11 -0
- package/dist/api/resources/conversation/types/NumericConversationField.js +13 -0
- package/dist/api/resources/conversation/types/Quality.d.ts +9 -0
- package/dist/api/resources/conversation/types/Quality.js +11 -0
- package/dist/api/resources/conversation/types/QualityReason.d.ts +15 -0
- package/dist/api/resources/conversation/types/QualityReason.js +17 -0
- package/dist/api/resources/conversation/types/index.d.ts +7 -0
- package/dist/api/resources/conversation/types/index.js +7 -0
- package/dist/api/resources/index.d.ts +2 -0
- package/dist/api/resources/index.js +3 -1
- package/dist/api/resources/knowledge/client/Client.js +7 -7
- package/dist/api/resources/translations/client/Client.js +1 -1
- package/dist/api/resources/triggers/client/Client.js +3 -3
- package/dist/api/resources/users/client/Client.d.ts +20 -0
- package/dist/api/resources/users/client/Client.js +88 -2
- package/dist/api/resources/users/client/requests/UserDeleteRequest.d.ts +13 -0
- package/dist/api/resources/users/client/requests/UserDeleteRequest.js +5 -0
- package/dist/api/resources/users/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/analytics/index.d.ts +1 -0
- package/dist/serialization/resources/analytics/index.js +17 -0
- package/dist/serialization/resources/analytics/types/BarChartRequest.d.ts +17 -0
- package/dist/serialization/resources/analytics/types/BarChartRequest.js +40 -0
- package/dist/serialization/resources/analytics/types/BarChartResponse.d.ts +13 -0
- package/dist/serialization/resources/analytics/types/BarChartResponse.js +34 -0
- package/dist/serialization/resources/analytics/types/CellData.d.ts +26 -0
- package/dist/serialization/resources/analytics/types/CellData.js +49 -0
- package/dist/serialization/resources/analytics/types/ChartResponse.d.ts +22 -0
- package/dist/serialization/resources/analytics/types/ChartResponse.js +43 -0
- package/dist/serialization/resources/analytics/types/ColumnDefinitionBase.d.ts +12 -0
- package/dist/serialization/resources/analytics/types/ColumnDefinitionBase.js +33 -0
- package/dist/serialization/resources/analytics/types/ConversationAnalyticsRequest.d.ts +13 -0
- package/dist/serialization/resources/analytics/types/ConversationAnalyticsRequest.js +34 -0
- package/dist/serialization/resources/analytics/types/ConversationAverage.d.ts +12 -0
- package/dist/serialization/resources/analytics/types/ConversationAverage.js +32 -0
- package/dist/serialization/resources/analytics/types/ConversationBasicMetric.d.ts +13 -0
- package/dist/serialization/resources/analytics/types/ConversationBasicMetric.js +34 -0
- package/dist/serialization/resources/analytics/types/ConversationChartRequest.d.ts +22 -0
- package/dist/serialization/resources/analytics/types/ConversationChartRequest.js +43 -0
- package/dist/serialization/resources/analytics/types/ConversationColumnDefinition.d.ts +14 -0
- package/dist/serialization/resources/analytics/types/ConversationColumnDefinition.js +37 -0
- package/dist/serialization/resources/analytics/types/ConversationCount.d.ts +11 -0
- package/dist/serialization/resources/analytics/types/ConversationCount.js +31 -0
- package/dist/serialization/resources/analytics/types/ConversationDistinctCount.d.ts +12 -0
- package/dist/serialization/resources/analytics/types/ConversationDistinctCount.js +32 -0
- package/dist/serialization/resources/analytics/types/ConversationGroupBy.d.ts +16 -0
- package/dist/serialization/resources/analytics/types/ConversationGroupBy.js +39 -0
- package/dist/serialization/resources/analytics/types/ConversationMax.d.ts +12 -0
- package/dist/serialization/resources/analytics/types/ConversationMax.js +32 -0
- package/dist/serialization/resources/analytics/types/ConversationMedian.d.ts +12 -0
- package/dist/serialization/resources/analytics/types/ConversationMedian.js +32 -0
- package/dist/serialization/resources/analytics/types/ConversationMetric.d.ts +42 -0
- package/dist/serialization/resources/analytics/types/ConversationMetric.js +53 -0
- package/dist/serialization/resources/analytics/types/ConversationMin.d.ts +12 -0
- package/dist/serialization/resources/analytics/types/ConversationMin.js +32 -0
- package/dist/serialization/resources/analytics/types/ConversationNumericMetric.d.ts +13 -0
- package/dist/serialization/resources/analytics/types/ConversationNumericMetric.js +34 -0
- package/dist/serialization/resources/analytics/types/ConversationPercentile.d.ts +13 -0
- package/dist/serialization/resources/analytics/types/ConversationPercentile.js +36 -0
- package/dist/serialization/resources/analytics/types/ConversationRow.d.ts +15 -0
- package/dist/serialization/resources/analytics/types/ConversationRow.js +38 -0
- package/dist/serialization/resources/analytics/types/ConversationSum.d.ts +12 -0
- package/dist/serialization/resources/analytics/types/ConversationSum.js +32 -0
- package/dist/serialization/resources/analytics/types/ConversationTableRequest.d.ts +18 -0
- package/dist/serialization/resources/analytics/types/ConversationTableRequest.js +41 -0
- package/dist/serialization/resources/analytics/types/ConversationTableResponse.d.ts +14 -0
- package/dist/serialization/resources/analytics/types/ConversationTableResponse.js +37 -0
- package/dist/serialization/resources/analytics/types/DateHistogramRequest.d.ts +18 -0
- package/dist/serialization/resources/analytics/types/DateHistogramRequest.js +41 -0
- package/dist/serialization/resources/analytics/types/DateHistogramResponse.d.ts +13 -0
- package/dist/serialization/resources/analytics/types/DateHistogramResponse.js +34 -0
- package/dist/serialization/resources/analytics/types/FeedbackAnalyticsRequest.d.ts +13 -0
- package/dist/serialization/resources/analytics/types/FeedbackAnalyticsRequest.js +34 -0
- package/dist/serialization/resources/analytics/types/FeedbackColumnDefinition.d.ts +14 -0
- package/dist/serialization/resources/analytics/types/FeedbackColumnDefinition.js +37 -0
- package/dist/serialization/resources/analytics/types/FeedbackCount.d.ts +11 -0
- package/dist/serialization/resources/analytics/types/FeedbackCount.js +31 -0
- package/dist/serialization/resources/analytics/types/FeedbackDistinctCount.d.ts +13 -0
- package/dist/serialization/resources/analytics/types/FeedbackDistinctCount.js +34 -0
- package/dist/serialization/resources/analytics/types/FeedbackGroupBy.d.ts +14 -0
- package/dist/serialization/resources/analytics/types/FeedbackGroupBy.js +37 -0
- package/dist/serialization/resources/analytics/types/FeedbackMetric.d.ts +18 -0
- package/dist/serialization/resources/analytics/types/FeedbackMetric.js +41 -0
- package/dist/serialization/resources/analytics/types/FeedbackRow.d.ts +15 -0
- package/dist/serialization/resources/analytics/types/FeedbackRow.js +38 -0
- package/dist/serialization/resources/analytics/types/FeedbackTableRequest.d.ts +18 -0
- package/dist/serialization/resources/analytics/types/FeedbackTableRequest.js +41 -0
- package/dist/serialization/resources/analytics/types/FeedbackTableResponse.d.ts +14 -0
- package/dist/serialization/resources/analytics/types/FeedbackTableResponse.js +37 -0
- package/dist/serialization/resources/analytics/types/FieldValue.d.ts +38 -0
- package/dist/serialization/resources/analytics/types/FieldValue.js +56 -0
- package/dist/serialization/resources/analytics/types/GroupByBase.d.ts +12 -0
- package/dist/serialization/resources/analytics/types/GroupByBase.js +33 -0
- package/dist/serialization/resources/analytics/types/LabeledPoint.d.ts +13 -0
- package/dist/serialization/resources/analytics/types/LabeledPoint.js +34 -0
- package/dist/serialization/resources/analytics/types/PieChartRequest.d.ts +16 -0
- package/dist/serialization/resources/analytics/types/PieChartRequest.js +39 -0
- package/dist/serialization/resources/analytics/types/PieChartResponse.d.ts +13 -0
- package/dist/serialization/resources/analytics/types/PieChartResponse.js +34 -0
- package/dist/serialization/resources/analytics/types/Range.d.ts +13 -0
- package/dist/serialization/resources/analytics/types/Range.js +34 -0
- package/dist/serialization/resources/analytics/types/RowBase.d.ts +13 -0
- package/dist/serialization/resources/analytics/types/RowBase.js +34 -0
- package/dist/serialization/resources/analytics/types/Series.d.ts +14 -0
- package/dist/serialization/resources/analytics/types/Series.js +35 -0
- package/dist/serialization/resources/analytics/types/TableResponseBase.d.ts +12 -0
- package/dist/serialization/resources/analytics/types/TableResponseBase.js +33 -0
- package/dist/serialization/resources/analytics/types/TimeDataPoint.d.ts +13 -0
- package/dist/serialization/resources/analytics/types/TimeDataPoint.js +34 -0
- package/dist/serialization/resources/analytics/types/TimeInterval.d.ts +10 -0
- package/dist/serialization/resources/analytics/types/TimeInterval.js +31 -0
- package/dist/serialization/resources/analytics/types/TimeSeries.d.ts +14 -0
- package/dist/serialization/resources/analytics/types/TimeSeries.js +35 -0
- package/dist/serialization/resources/analytics/types/index.d.ts +46 -0
- package/dist/serialization/resources/analytics/types/index.js +62 -0
- package/dist/serialization/resources/commons/types/ConversationPrecondition.d.ts +5 -1
- package/dist/serialization/resources/commons/types/ConversationPrecondition.js +2 -0
- package/dist/serialization/resources/commons/types/ConversationResponse.d.ts +3 -0
- package/dist/serialization/resources/commons/types/ConversationResponse.js +3 -0
- package/dist/serialization/resources/commons/types/ConversationSummary.d.ts +14 -0
- package/dist/serialization/resources/commons/types/ConversationSummary.js +35 -0
- package/dist/serialization/resources/commons/types/EntityId.d.ts +2 -5
- package/dist/serialization/resources/commons/types/EntityId.js +2 -5
- package/dist/serialization/resources/commons/types/EntityIdFilter.d.ts +13 -0
- package/dist/serialization/resources/commons/types/EntityIdFilter.js +34 -0
- package/dist/serialization/resources/commons/types/EntityIdWithoutAgent.d.ts +15 -0
- package/dist/serialization/resources/commons/types/EntityIdWithoutAgent.js +38 -0
- package/dist/serialization/resources/commons/types/ResponseConfigPrecondition.d.ts +18 -0
- package/dist/serialization/resources/commons/types/ResponseConfigPrecondition.js +41 -0
- package/dist/serialization/resources/commons/types/index.d.ts +4 -0
- package/dist/serialization/resources/commons/types/index.js +4 -0
- package/dist/serialization/resources/conversation/types/ConversationField.d.ts +10 -0
- package/dist/serialization/resources/conversation/types/ConversationField.js +52 -0
- package/dist/serialization/resources/conversation/types/ConversationFilter.d.ts +32 -0
- package/dist/serialization/resources/conversation/types/ConversationFilter.js +53 -0
- package/dist/serialization/resources/conversation/types/FeedbackField.d.ts +10 -0
- package/dist/serialization/resources/conversation/types/FeedbackField.js +31 -0
- package/dist/serialization/resources/conversation/types/FeedbackFilter.d.ts +16 -0
- package/dist/serialization/resources/conversation/types/FeedbackFilter.js +37 -0
- package/dist/serialization/resources/conversation/types/NumericConversationField.d.ts +10 -0
- package/dist/serialization/resources/conversation/types/NumericConversationField.js +37 -0
- package/dist/serialization/resources/conversation/types/Quality.d.ts +10 -0
- package/dist/serialization/resources/conversation/types/Quality.js +35 -0
- package/dist/serialization/resources/conversation/types/QualityReason.d.ts +10 -0
- package/dist/serialization/resources/conversation/types/QualityReason.js +41 -0
- package/dist/serialization/resources/conversation/types/index.d.ts +7 -0
- package/dist/serialization/resources/conversation/types/index.js +7 -0
- package/dist/serialization/resources/index.d.ts +2 -0
- package/dist/serialization/resources/index.js +3 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/reference.md +453 -4
- package/serialization/resources/analytics/index.d.ts +1 -0
- package/serialization/resources/analytics/index.js +17 -0
- package/serialization/resources/analytics/types/BarChartRequest.d.ts +17 -0
- package/serialization/resources/analytics/types/BarChartRequest.js +40 -0
- package/serialization/resources/analytics/types/BarChartResponse.d.ts +13 -0
- package/serialization/resources/analytics/types/BarChartResponse.js +34 -0
- package/serialization/resources/analytics/types/CellData.d.ts +26 -0
- package/serialization/resources/analytics/types/CellData.js +49 -0
- package/serialization/resources/analytics/types/ChartResponse.d.ts +22 -0
- package/serialization/resources/analytics/types/ChartResponse.js +43 -0
- package/serialization/resources/analytics/types/ColumnDefinitionBase.d.ts +12 -0
- package/serialization/resources/analytics/types/ColumnDefinitionBase.js +33 -0
- package/serialization/resources/analytics/types/ConversationAnalyticsRequest.d.ts +13 -0
- package/serialization/resources/analytics/types/ConversationAnalyticsRequest.js +34 -0
- package/serialization/resources/analytics/types/ConversationAverage.d.ts +12 -0
- package/serialization/resources/analytics/types/ConversationAverage.js +32 -0
- package/serialization/resources/analytics/types/ConversationBasicMetric.d.ts +13 -0
- package/serialization/resources/analytics/types/ConversationBasicMetric.js +34 -0
- package/serialization/resources/analytics/types/ConversationChartRequest.d.ts +22 -0
- package/serialization/resources/analytics/types/ConversationChartRequest.js +43 -0
- package/serialization/resources/analytics/types/ConversationColumnDefinition.d.ts +14 -0
- package/serialization/resources/analytics/types/ConversationColumnDefinition.js +37 -0
- package/serialization/resources/analytics/types/ConversationCount.d.ts +11 -0
- package/serialization/resources/analytics/types/ConversationCount.js +31 -0
- package/serialization/resources/analytics/types/ConversationDistinctCount.d.ts +12 -0
- package/serialization/resources/analytics/types/ConversationDistinctCount.js +32 -0
- package/serialization/resources/analytics/types/ConversationGroupBy.d.ts +16 -0
- package/serialization/resources/analytics/types/ConversationGroupBy.js +39 -0
- package/serialization/resources/analytics/types/ConversationMax.d.ts +12 -0
- package/serialization/resources/analytics/types/ConversationMax.js +32 -0
- package/serialization/resources/analytics/types/ConversationMedian.d.ts +12 -0
- package/serialization/resources/analytics/types/ConversationMedian.js +32 -0
- package/serialization/resources/analytics/types/ConversationMetric.d.ts +42 -0
- package/serialization/resources/analytics/types/ConversationMetric.js +53 -0
- package/serialization/resources/analytics/types/ConversationMin.d.ts +12 -0
- package/serialization/resources/analytics/types/ConversationMin.js +32 -0
- package/serialization/resources/analytics/types/ConversationNumericMetric.d.ts +13 -0
- package/serialization/resources/analytics/types/ConversationNumericMetric.js +34 -0
- package/serialization/resources/analytics/types/ConversationPercentile.d.ts +13 -0
- package/serialization/resources/analytics/types/ConversationPercentile.js +36 -0
- package/serialization/resources/analytics/types/ConversationRow.d.ts +15 -0
- package/serialization/resources/analytics/types/ConversationRow.js +38 -0
- package/serialization/resources/analytics/types/ConversationSum.d.ts +12 -0
- package/serialization/resources/analytics/types/ConversationSum.js +32 -0
- package/serialization/resources/analytics/types/ConversationTableRequest.d.ts +18 -0
- package/serialization/resources/analytics/types/ConversationTableRequest.js +41 -0
- package/serialization/resources/analytics/types/ConversationTableResponse.d.ts +14 -0
- package/serialization/resources/analytics/types/ConversationTableResponse.js +37 -0
- package/serialization/resources/analytics/types/DateHistogramRequest.d.ts +18 -0
- package/serialization/resources/analytics/types/DateHistogramRequest.js +41 -0
- package/serialization/resources/analytics/types/DateHistogramResponse.d.ts +13 -0
- package/serialization/resources/analytics/types/DateHistogramResponse.js +34 -0
- package/serialization/resources/analytics/types/FeedbackAnalyticsRequest.d.ts +13 -0
- package/serialization/resources/analytics/types/FeedbackAnalyticsRequest.js +34 -0
- package/serialization/resources/analytics/types/FeedbackColumnDefinition.d.ts +14 -0
- package/serialization/resources/analytics/types/FeedbackColumnDefinition.js +37 -0
- package/serialization/resources/analytics/types/FeedbackCount.d.ts +11 -0
- package/serialization/resources/analytics/types/FeedbackCount.js +31 -0
- package/serialization/resources/analytics/types/FeedbackDistinctCount.d.ts +13 -0
- package/serialization/resources/analytics/types/FeedbackDistinctCount.js +34 -0
- package/serialization/resources/analytics/types/FeedbackGroupBy.d.ts +14 -0
- package/serialization/resources/analytics/types/FeedbackGroupBy.js +37 -0
- package/serialization/resources/analytics/types/FeedbackMetric.d.ts +18 -0
- package/serialization/resources/analytics/types/FeedbackMetric.js +41 -0
- package/serialization/resources/analytics/types/FeedbackRow.d.ts +15 -0
- package/serialization/resources/analytics/types/FeedbackRow.js +38 -0
- package/serialization/resources/analytics/types/FeedbackTableRequest.d.ts +18 -0
- package/serialization/resources/analytics/types/FeedbackTableRequest.js +41 -0
- package/serialization/resources/analytics/types/FeedbackTableResponse.d.ts +14 -0
- package/serialization/resources/analytics/types/FeedbackTableResponse.js +37 -0
- package/serialization/resources/analytics/types/FieldValue.d.ts +38 -0
- package/serialization/resources/analytics/types/FieldValue.js +56 -0
- package/serialization/resources/analytics/types/GroupByBase.d.ts +12 -0
- package/serialization/resources/analytics/types/GroupByBase.js +33 -0
- package/serialization/resources/analytics/types/LabeledPoint.d.ts +13 -0
- package/serialization/resources/analytics/types/LabeledPoint.js +34 -0
- package/serialization/resources/analytics/types/PieChartRequest.d.ts +16 -0
- package/serialization/resources/analytics/types/PieChartRequest.js +39 -0
- package/serialization/resources/analytics/types/PieChartResponse.d.ts +13 -0
- package/serialization/resources/analytics/types/PieChartResponse.js +34 -0
- package/serialization/resources/analytics/types/Range.d.ts +13 -0
- package/serialization/resources/analytics/types/Range.js +34 -0
- package/serialization/resources/analytics/types/RowBase.d.ts +13 -0
- package/serialization/resources/analytics/types/RowBase.js +34 -0
- package/serialization/resources/analytics/types/Series.d.ts +14 -0
- package/serialization/resources/analytics/types/Series.js +35 -0
- package/serialization/resources/analytics/types/TableResponseBase.d.ts +12 -0
- package/serialization/resources/analytics/types/TableResponseBase.js +33 -0
- package/serialization/resources/analytics/types/TimeDataPoint.d.ts +13 -0
- package/serialization/resources/analytics/types/TimeDataPoint.js +34 -0
- package/serialization/resources/analytics/types/TimeInterval.d.ts +10 -0
- package/serialization/resources/analytics/types/TimeInterval.js +31 -0
- package/serialization/resources/analytics/types/TimeSeries.d.ts +14 -0
- package/serialization/resources/analytics/types/TimeSeries.js +35 -0
- package/serialization/resources/analytics/types/index.d.ts +46 -0
- package/serialization/resources/analytics/types/index.js +62 -0
- package/serialization/resources/commons/types/ConversationPrecondition.d.ts +5 -1
- package/serialization/resources/commons/types/ConversationPrecondition.js +2 -0
- package/serialization/resources/commons/types/ConversationResponse.d.ts +3 -0
- package/serialization/resources/commons/types/ConversationResponse.js +3 -0
- package/serialization/resources/commons/types/ConversationSummary.d.ts +14 -0
- package/serialization/resources/commons/types/ConversationSummary.js +35 -0
- package/serialization/resources/commons/types/EntityId.d.ts +2 -5
- package/serialization/resources/commons/types/EntityId.js +2 -5
- package/serialization/resources/commons/types/EntityIdFilter.d.ts +13 -0
- package/serialization/resources/commons/types/EntityIdFilter.js +34 -0
- package/serialization/resources/commons/types/EntityIdWithoutAgent.d.ts +15 -0
- package/serialization/resources/commons/types/EntityIdWithoutAgent.js +38 -0
- package/serialization/resources/commons/types/ResponseConfigPrecondition.d.ts +18 -0
- package/serialization/resources/commons/types/ResponseConfigPrecondition.js +41 -0
- package/serialization/resources/commons/types/index.d.ts +4 -0
- package/serialization/resources/commons/types/index.js +4 -0
- package/serialization/resources/conversation/types/ConversationField.d.ts +10 -0
- package/serialization/resources/conversation/types/ConversationField.js +52 -0
- package/serialization/resources/conversation/types/ConversationFilter.d.ts +32 -0
- package/serialization/resources/conversation/types/ConversationFilter.js +53 -0
- package/serialization/resources/conversation/types/FeedbackField.d.ts +10 -0
- package/serialization/resources/conversation/types/FeedbackField.js +31 -0
- package/serialization/resources/conversation/types/FeedbackFilter.d.ts +16 -0
- package/serialization/resources/conversation/types/FeedbackFilter.js +37 -0
- package/serialization/resources/conversation/types/NumericConversationField.d.ts +10 -0
- package/serialization/resources/conversation/types/NumericConversationField.js +37 -0
- package/serialization/resources/conversation/types/Quality.d.ts +10 -0
- package/serialization/resources/conversation/types/Quality.js +35 -0
- package/serialization/resources/conversation/types/QualityReason.d.ts +10 -0
- package/serialization/resources/conversation/types/QualityReason.js +41 -0
- package/serialization/resources/conversation/types/index.d.ts +7 -0
- package/serialization/resources/conversation/types/index.js +7 -0
- package/serialization/resources/index.d.ts +2 -0
- package/serialization/resources/index.js +3 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.FieldValue = void 0;
|
|
30
|
+
const core = __importStar(require("../../../../core"));
|
|
31
|
+
const Range_1 = require("./Range");
|
|
32
|
+
const EntityIdFilter_1 = require("../../commons/types/EntityIdFilter");
|
|
33
|
+
exports.FieldValue = core.serialization
|
|
34
|
+
.union("type", {
|
|
35
|
+
dateTime: core.serialization.object({
|
|
36
|
+
value: core.serialization.date(),
|
|
37
|
+
}),
|
|
38
|
+
string: core.serialization.object({
|
|
39
|
+
value: core.serialization.string(),
|
|
40
|
+
}),
|
|
41
|
+
double: core.serialization.object({
|
|
42
|
+
value: core.serialization.number(),
|
|
43
|
+
}),
|
|
44
|
+
long: core.serialization.object({
|
|
45
|
+
value: core.serialization.number(),
|
|
46
|
+
}),
|
|
47
|
+
range: Range_1.Range,
|
|
48
|
+
boolean: core.serialization.object({
|
|
49
|
+
value: core.serialization.boolean(),
|
|
50
|
+
}),
|
|
51
|
+
entityId: EntityIdFilter_1.EntityIdFilter,
|
|
52
|
+
})
|
|
53
|
+
.transform({
|
|
54
|
+
transform: (value) => value,
|
|
55
|
+
untransform: (value) => value,
|
|
56
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as MavenAGI from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
export declare const GroupByBase: core.serialization.ObjectSchema<serializers.GroupByBase.Raw, MavenAGI.GroupByBase>;
|
|
8
|
+
export declare namespace GroupByBase {
|
|
9
|
+
interface Raw {
|
|
10
|
+
limit?: number | null;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.GroupByBase = void 0;
|
|
30
|
+
const core = __importStar(require("../../../../core"));
|
|
31
|
+
exports.GroupByBase = core.serialization.object({
|
|
32
|
+
limit: core.serialization.number().optional(),
|
|
33
|
+
});
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as MavenAGI from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
export declare const LabeledPoint: core.serialization.ObjectSchema<serializers.LabeledPoint.Raw, MavenAGI.LabeledPoint>;
|
|
8
|
+
export declare namespace LabeledPoint {
|
|
9
|
+
interface Raw {
|
|
10
|
+
label: string;
|
|
11
|
+
y: number;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.LabeledPoint = void 0;
|
|
30
|
+
const core = __importStar(require("../../../../core"));
|
|
31
|
+
exports.LabeledPoint = core.serialization.object({
|
|
32
|
+
label: core.serialization.string(),
|
|
33
|
+
y: core.serialization.number(),
|
|
34
|
+
});
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as MavenAGI from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
import { ConversationGroupBy } from "./ConversationGroupBy";
|
|
8
|
+
import { ConversationMetric } from "./ConversationMetric";
|
|
9
|
+
import { ConversationAnalyticsRequest } from "./ConversationAnalyticsRequest";
|
|
10
|
+
export declare const PieChartRequest: core.serialization.ObjectSchema<serializers.PieChartRequest.Raw, MavenAGI.PieChartRequest>;
|
|
11
|
+
export declare namespace PieChartRequest {
|
|
12
|
+
interface Raw extends ConversationAnalyticsRequest.Raw {
|
|
13
|
+
groupBy: ConversationGroupBy.Raw;
|
|
14
|
+
metric: ConversationMetric.Raw;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.PieChartRequest = void 0;
|
|
30
|
+
const core = __importStar(require("../../../../core"));
|
|
31
|
+
const ConversationGroupBy_1 = require("./ConversationGroupBy");
|
|
32
|
+
const ConversationMetric_1 = require("./ConversationMetric");
|
|
33
|
+
const ConversationAnalyticsRequest_1 = require("./ConversationAnalyticsRequest");
|
|
34
|
+
exports.PieChartRequest = core.serialization
|
|
35
|
+
.object({
|
|
36
|
+
groupBy: ConversationGroupBy_1.ConversationGroupBy,
|
|
37
|
+
metric: ConversationMetric_1.ConversationMetric,
|
|
38
|
+
})
|
|
39
|
+
.extend(ConversationAnalyticsRequest_1.ConversationAnalyticsRequest);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as MavenAGI from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
import { Series } from "./Series";
|
|
8
|
+
export declare const PieChartResponse: core.serialization.ObjectSchema<serializers.PieChartResponse.Raw, MavenAGI.PieChartResponse>;
|
|
9
|
+
export declare namespace PieChartResponse {
|
|
10
|
+
interface Raw {
|
|
11
|
+
series: Series.Raw;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.PieChartResponse = void 0;
|
|
30
|
+
const core = __importStar(require("../../../../core"));
|
|
31
|
+
const Series_1 = require("./Series");
|
|
32
|
+
exports.PieChartResponse = core.serialization.object({
|
|
33
|
+
series: Series_1.Series,
|
|
34
|
+
});
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as MavenAGI from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
export declare const Range: core.serialization.ObjectSchema<serializers.Range.Raw, MavenAGI.Range>;
|
|
8
|
+
export declare namespace Range {
|
|
9
|
+
interface Raw {
|
|
10
|
+
from?: number | null;
|
|
11
|
+
to?: number | null;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.Range = void 0;
|
|
30
|
+
const core = __importStar(require("../../../../core"));
|
|
31
|
+
exports.Range = core.serialization.object({
|
|
32
|
+
from: core.serialization.number().optional(),
|
|
33
|
+
to: core.serialization.number().optional(),
|
|
34
|
+
});
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as MavenAGI from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
import { CellData } from "./CellData";
|
|
8
|
+
export declare const RowBase: core.serialization.ObjectSchema<serializers.RowBase.Raw, MavenAGI.RowBase>;
|
|
9
|
+
export declare namespace RowBase {
|
|
10
|
+
interface Raw {
|
|
11
|
+
data: Record<string, CellData.Raw>;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.RowBase = void 0;
|
|
30
|
+
const core = __importStar(require("../../../../core"));
|
|
31
|
+
const CellData_1 = require("./CellData");
|
|
32
|
+
exports.RowBase = core.serialization.object({
|
|
33
|
+
data: core.serialization.record(core.serialization.string(), CellData_1.CellData),
|
|
34
|
+
});
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as MavenAGI from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
import { LabeledPoint } from "./LabeledPoint";
|
|
8
|
+
export declare const Series: core.serialization.ObjectSchema<serializers.Series.Raw, MavenAGI.Series>;
|
|
9
|
+
export declare namespace Series {
|
|
10
|
+
interface Raw {
|
|
11
|
+
name: string;
|
|
12
|
+
data: LabeledPoint.Raw[];
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.Series = void 0;
|
|
30
|
+
const core = __importStar(require("../../../../core"));
|
|
31
|
+
const LabeledPoint_1 = require("./LabeledPoint");
|
|
32
|
+
exports.Series = core.serialization.object({
|
|
33
|
+
name: core.serialization.string(),
|
|
34
|
+
data: core.serialization.list(LabeledPoint_1.LabeledPoint),
|
|
35
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as MavenAGI from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
export declare const TableResponseBase: core.serialization.ObjectSchema<serializers.TableResponseBase.Raw, MavenAGI.TableResponseBase>;
|
|
8
|
+
export declare namespace TableResponseBase {
|
|
9
|
+
interface Raw {
|
|
10
|
+
headers: string[];
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.TableResponseBase = void 0;
|
|
30
|
+
const core = __importStar(require("../../../../core"));
|
|
31
|
+
exports.TableResponseBase = core.serialization.object({
|
|
32
|
+
headers: core.serialization.list(core.serialization.string()),
|
|
33
|
+
});
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as MavenAGI from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
export declare const TimeDataPoint: core.serialization.ObjectSchema<serializers.TimeDataPoint.Raw, MavenAGI.TimeDataPoint>;
|
|
8
|
+
export declare namespace TimeDataPoint {
|
|
9
|
+
interface Raw {
|
|
10
|
+
x: number;
|
|
11
|
+
y: number;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.TimeDataPoint = void 0;
|
|
30
|
+
const core = __importStar(require("../../../../core"));
|
|
31
|
+
exports.TimeDataPoint = core.serialization.object({
|
|
32
|
+
x: core.serialization.number(),
|
|
33
|
+
y: core.serialization.number(),
|
|
34
|
+
});
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as MavenAGI from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
export declare const TimeInterval: core.serialization.Schema<serializers.TimeInterval.Raw, MavenAGI.TimeInterval>;
|
|
8
|
+
export declare namespace TimeInterval {
|
|
9
|
+
type Raw = "HOUR" | "DAY" | "WEEK" | "MONTH" | "YEAR";
|
|
10
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.TimeInterval = void 0;
|
|
30
|
+
const core = __importStar(require("../../../../core"));
|
|
31
|
+
exports.TimeInterval = core.serialization.enum_(["HOUR", "DAY", "WEEK", "MONTH", "YEAR"]);
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../index";
|
|
5
|
+
import * as MavenAGI from "../../../../api/index";
|
|
6
|
+
import * as core from "../../../../core";
|
|
7
|
+
import { TimeDataPoint } from "./TimeDataPoint";
|
|
8
|
+
export declare const TimeSeries: core.serialization.ObjectSchema<serializers.TimeSeries.Raw, MavenAGI.TimeSeries>;
|
|
9
|
+
export declare namespace TimeSeries {
|
|
10
|
+
interface Raw {
|
|
11
|
+
name: string;
|
|
12
|
+
data: TimeDataPoint.Raw[];
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.TimeSeries = void 0;
|
|
30
|
+
const core = __importStar(require("../../../../core"));
|
|
31
|
+
const TimeDataPoint_1 = require("./TimeDataPoint");
|
|
32
|
+
exports.TimeSeries = core.serialization.object({
|
|
33
|
+
name: core.serialization.string(),
|
|
34
|
+
data: core.serialization.list(TimeDataPoint_1.TimeDataPoint),
|
|
35
|
+
});
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
export * from "./TableResponseBase";
|
|
2
|
+
export * from "./ConversationAnalyticsRequest";
|
|
3
|
+
export * from "./ConversationTableRequest";
|
|
4
|
+
export * from "./ConversationTableResponse";
|
|
5
|
+
export * from "./FeedbackAnalyticsRequest";
|
|
6
|
+
export * from "./FeedbackTableRequest";
|
|
7
|
+
export * from "./FeedbackTableResponse";
|
|
8
|
+
export * from "./ColumnDefinitionBase";
|
|
9
|
+
export * from "./ConversationColumnDefinition";
|
|
10
|
+
export * from "./FeedbackColumnDefinition";
|
|
11
|
+
export * from "./ConversationChartRequest";
|
|
12
|
+
export * from "./PieChartRequest";
|
|
13
|
+
export * from "./DateHistogramRequest";
|
|
14
|
+
export * from "./BarChartRequest";
|
|
15
|
+
export * from "./ConversationMetric";
|
|
16
|
+
export * from "./ConversationCount";
|
|
17
|
+
export * from "./ConversationNumericMetric";
|
|
18
|
+
export * from "./ConversationBasicMetric";
|
|
19
|
+
export * from "./ConversationSum";
|
|
20
|
+
export * from "./ConversationAverage";
|
|
21
|
+
export * from "./ConversationMin";
|
|
22
|
+
export * from "./ConversationMax";
|
|
23
|
+
export * from "./ConversationMedian";
|
|
24
|
+
export * from "./ConversationDistinctCount";
|
|
25
|
+
export * from "./ConversationPercentile";
|
|
26
|
+
export * from "./FeedbackMetric";
|
|
27
|
+
export * from "./FeedbackCount";
|
|
28
|
+
export * from "./FeedbackDistinctCount";
|
|
29
|
+
export * from "./GroupByBase";
|
|
30
|
+
export * from "./ConversationGroupBy";
|
|
31
|
+
export * from "./FeedbackGroupBy";
|
|
32
|
+
export * from "./RowBase";
|
|
33
|
+
export * from "./ConversationRow";
|
|
34
|
+
export * from "./FeedbackRow";
|
|
35
|
+
export * from "./FieldValue";
|
|
36
|
+
export * from "./Series";
|
|
37
|
+
export * from "./LabeledPoint";
|
|
38
|
+
export * from "./TimeSeries";
|
|
39
|
+
export * from "./TimeDataPoint";
|
|
40
|
+
export * from "./ChartResponse";
|
|
41
|
+
export * from "./PieChartResponse";
|
|
42
|
+
export * from "./DateHistogramResponse";
|
|
43
|
+
export * from "./BarChartResponse";
|
|
44
|
+
export * from "./TimeInterval";
|
|
45
|
+
export * from "./Range";
|
|
46
|
+
export * from "./CellData";
|