@harnessio/react-sei-panorama-service-client 0.26.7 → 0.26.9

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 (74) hide show
  1. package/dist/sei-panorama-service/src/services/hooks/useCustomMetricsControllerGetIngestionHistoryQuery.d.ts +36 -0
  2. package/dist/sei-panorama-service/src/services/hooks/useCustomMetricsControllerGetIngestionHistoryQuery.js +14 -0
  3. package/dist/sei-panorama-service/src/services/hooks/useCustomMetricsControllerGetIngestionStatusQuery.d.ts +24 -0
  4. package/dist/sei-panorama-service/src/services/hooks/useCustomMetricsControllerGetIngestionStatusQuery.js +14 -0
  5. package/dist/sei-panorama-service/src/services/hooks/useCustomMetricsControllerGetSchemaQuery.d.ts +44 -0
  6. package/dist/sei-panorama-service/src/services/hooks/useCustomMetricsControllerGetSchemaQuery.js +22 -0
  7. package/dist/sei-panorama-service/src/services/hooks/useCustomMetricsControllerIngestDataMutation.d.ts +29 -0
  8. package/dist/sei-panorama-service/src/services/hooks/useCustomMetricsControllerIngestDataMutation.js +14 -0
  9. package/dist/sei-panorama-service/src/services/hooks/useCustomMetricsControllerRegisterSchemaMutation.d.ts +29 -0
  10. package/dist/sei-panorama-service/src/services/hooks/useCustomMetricsControllerRegisterSchemaMutation.js +14 -0
  11. package/dist/sei-panorama-service/src/services/hooks/useExternalDataControllerGetCurrentSchemaQuery.d.ts +19 -0
  12. package/dist/sei-panorama-service/src/services/hooks/useExternalDataControllerGetCurrentSchemaQuery.js +14 -0
  13. package/dist/sei-panorama-service/src/services/hooks/useExternalDataControllerGetIngestionHistoryQuery.d.ts +32 -0
  14. package/dist/sei-panorama-service/src/services/hooks/useExternalDataControllerGetIngestionHistoryQuery.js +14 -0
  15. package/dist/sei-panorama-service/src/services/hooks/useExternalDataControllerGetIngestionStatusQuery.d.ts +23 -0
  16. package/dist/sei-panorama-service/src/services/hooks/useExternalDataControllerGetIngestionStatusQuery.js +14 -0
  17. package/dist/sei-panorama-service/src/services/hooks/useExternalDataControllerGetSchemaHistoryQuery.d.ts +31 -0
  18. package/dist/sei-panorama-service/src/services/hooks/useExternalDataControllerGetSchemaHistoryQuery.js +14 -0
  19. package/dist/sei-panorama-service/src/services/hooks/useExternalDataControllerIngestDataMutation.d.ts +25 -0
  20. package/dist/sei-panorama-service/src/services/hooks/useExternalDataControllerIngestDataMutation.js +14 -0
  21. package/dist/sei-panorama-service/src/services/hooks/useExternalDataControllerRegisterSchemaMutation.d.ts +22 -0
  22. package/dist/sei-panorama-service/src/services/hooks/useExternalDataControllerRegisterSchemaMutation.js +14 -0
  23. package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerGetTeamFiltersQuery.d.ts +1 -1
  24. package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerGetTeamIntegrationFiltersQuery.d.ts +1 -1
  25. package/dist/sei-panorama-service/src/services/index.d.ts +37 -0
  26. package/dist/sei-panorama-service/src/services/index.js +11 -0
  27. package/dist/sei-panorama-service/src/services/schemas/DataRecord.d.ts +20 -0
  28. package/dist/sei-panorama-service/src/services/schemas/DataRecord.js +4 -0
  29. package/dist/sei-panorama-service/src/services/schemas/DoraLttcMttrMetric.d.ts +1 -1
  30. package/dist/sei-panorama-service/src/services/schemas/DrillDownResponseDtoObject.d.ts +1 -1
  31. package/dist/sei-panorama-service/src/services/schemas/EfficiencyProfileEvent.d.ts +1 -1
  32. package/dist/sei-panorama-service/src/services/schemas/FieldConstraint.d.ts +23 -0
  33. package/dist/sei-panorama-service/src/services/schemas/FieldConstraint.js +4 -0
  34. package/dist/sei-panorama-service/src/services/schemas/FieldDefinition.d.ts +28 -0
  35. package/dist/sei-panorama-service/src/services/schemas/FieldDefinition.js +1 -0
  36. package/dist/sei-panorama-service/src/services/schemas/IngestionRequest.d.ts +15 -0
  37. package/dist/sei-panorama-service/src/services/schemas/IngestionRequest.js +1 -0
  38. package/dist/sei-panorama-service/src/services/schemas/IngestionResponse.d.ts +39 -0
  39. package/dist/sei-panorama-service/src/services/schemas/IngestionResponse.js +4 -0
  40. package/dist/sei-panorama-service/src/services/schemas/IngestionStatusResponse.d.ts +88 -0
  41. package/dist/sei-panorama-service/src/services/schemas/IngestionStatusResponse.js +1 -0
  42. package/dist/sei-panorama-service/src/services/schemas/Integration.d.ts +1 -1
  43. package/dist/sei-panorama-service/src/services/schemas/IntegrationResponseDto.d.ts +2 -2
  44. package/dist/sei-panorama-service/src/services/schemas/ItsmDrilldownItem.d.ts +18 -43
  45. package/dist/sei-panorama-service/src/services/schemas/ItsmDrilldownSummary.d.ts +40 -0
  46. package/dist/sei-panorama-service/src/services/schemas/ItsmDrilldownSummary.js +4 -0
  47. package/dist/sei-panorama-service/src/services/schemas/MinimalTeamHierarchyResponseDto.d.ts +1 -0
  48. package/dist/sei-panorama-service/src/services/schemas/MttrDrillDownResponseDto.d.ts +6 -1
  49. package/dist/sei-panorama-service/src/services/schemas/MttrMetric.d.ts +1 -1
  50. package/dist/sei-panorama-service/src/services/schemas/PageMetadata.d.ts +45 -0
  51. package/dist/sei-panorama-service/src/services/schemas/PageMetadata.js +4 -0
  52. package/dist/sei-panorama-service/src/services/schemas/PagedResponseIngestionStatusResponse.d.ts +15 -0
  53. package/dist/sei-panorama-service/src/services/schemas/PagedResponseIngestionStatusResponse.js +1 -0
  54. package/dist/sei-panorama-service/src/services/schemas/PagedResponseSchemaResponse.d.ts +15 -0
  55. package/dist/sei-panorama-service/src/services/schemas/PagedResponseSchemaResponse.js +1 -0
  56. package/dist/sei-panorama-service/src/services/schemas/PreviewTeamHierarchyResponseDto.d.ts +1 -0
  57. package/dist/sei-panorama-service/src/services/schemas/RecordBatch.d.ts +15 -0
  58. package/dist/sei-panorama-service/src/services/schemas/RecordBatch.js +1 -0
  59. package/dist/sei-panorama-service/src/services/schemas/RecordTypeDefinition.d.ts +19 -0
  60. package/dist/sei-panorama-service/src/services/schemas/RecordTypeDefinition.js +4 -0
  61. package/dist/sei-panorama-service/src/services/schemas/SchemaDefinition.d.ts +15 -0
  62. package/dist/sei-panorama-service/src/services/schemas/SchemaDefinition.js +1 -0
  63. package/dist/sei-panorama-service/src/services/schemas/SchemaRegistrationRequest.d.ts +15 -0
  64. package/dist/sei-panorama-service/src/services/schemas/SchemaRegistrationRequest.js +1 -0
  65. package/dist/sei-panorama-service/src/services/schemas/SchemaResponse.d.ts +52 -0
  66. package/dist/sei-panorama-service/src/services/schemas/SchemaResponse.js +1 -0
  67. package/dist/sei-panorama-service/src/services/schemas/TeamAccessDto.d.ts +1 -0
  68. package/dist/sei-panorama-service/src/services/schemas/TeamFilterIntegrationSummary.d.ts +1 -1
  69. package/dist/sei-panorama-service/src/services/schemas/TeamFiltersHqlDto.d.ts +3 -0
  70. package/dist/sei-panorama-service/src/services/schemas/TeamFiltersResponseDto.d.ts +1 -1
  71. package/dist/sei-panorama-service/src/services/schemas/TeamHierarchyDto.d.ts +1 -0
  72. package/dist/sei-panorama-service/src/services/schemas/TeamResponse.d.ts +1 -0
  73. package/dist/sei-panorama-service/src/services/schemas/TeamSummary.d.ts +1 -0
  74. package/package.json +1 -1
@@ -79,6 +79,16 @@ export type { CollectionControllerGetCollectionTreeErrorResponse, CollectionCont
79
79
  export { collectionControllerGetCollectionTree, useCollectionControllerGetCollectionTreeQuery, } from './hooks/useCollectionControllerGetCollectionTreeQuery';
80
80
  export type { CollectionControllerListCollectionsErrorResponse, CollectionControllerListCollectionsOkResponse, CollectionControllerListCollectionsProps, CollectionControllerListCollectionsQueryQueryParams, CollectionControllerListCollectionsRequestBody, } from './hooks/useCollectionControllerListCollectionsQuery';
81
81
  export { collectionControllerListCollections, useCollectionControllerListCollectionsQuery, } from './hooks/useCollectionControllerListCollectionsQuery';
82
+ export type { CustomMetricsControllerGetIngestionHistoryErrorResponse, CustomMetricsControllerGetIngestionHistoryOkResponse, CustomMetricsControllerGetIngestionHistoryProps, CustomMetricsControllerGetIngestionHistoryQueryPathParams, CustomMetricsControllerGetIngestionHistoryQueryQueryParams, } from './hooks/useCustomMetricsControllerGetIngestionHistoryQuery';
83
+ export { customMetricsControllerGetIngestionHistory, useCustomMetricsControllerGetIngestionHistoryQuery, } from './hooks/useCustomMetricsControllerGetIngestionHistoryQuery';
84
+ export type { CustomMetricsControllerGetIngestionStatusErrorResponse, CustomMetricsControllerGetIngestionStatusOkResponse, CustomMetricsControllerGetIngestionStatusProps, CustomMetricsControllerGetIngestionStatusQueryPathParams, } from './hooks/useCustomMetricsControllerGetIngestionStatusQuery';
85
+ export { customMetricsControllerGetIngestionStatus, useCustomMetricsControllerGetIngestionStatusQuery, } from './hooks/useCustomMetricsControllerGetIngestionStatusQuery';
86
+ export type { CustomMetricsControllerGetSchemaErrorResponse, CustomMetricsControllerGetSchemaOkResponse, CustomMetricsControllerGetSchemaProps, CustomMetricsControllerGetSchemaQueryPathParams, CustomMetricsControllerGetSchemaQueryQueryParams, } from './hooks/useCustomMetricsControllerGetSchemaQuery';
87
+ export { customMetricsControllerGetSchema, useCustomMetricsControllerGetSchemaQuery, } from './hooks/useCustomMetricsControllerGetSchemaQuery';
88
+ export type { CustomMetricsControllerIngestDataErrorResponse, CustomMetricsControllerIngestDataMutationPathParams, CustomMetricsControllerIngestDataOkResponse, CustomMetricsControllerIngestDataProps, CustomMetricsControllerIngestDataRequestBody, } from './hooks/useCustomMetricsControllerIngestDataMutation';
89
+ export { customMetricsControllerIngestData, useCustomMetricsControllerIngestDataMutation, } from './hooks/useCustomMetricsControllerIngestDataMutation';
90
+ export type { CustomMetricsControllerRegisterSchemaErrorResponse, CustomMetricsControllerRegisterSchemaMutationPathParams, CustomMetricsControllerRegisterSchemaOkResponse, CustomMetricsControllerRegisterSchemaProps, CustomMetricsControllerRegisterSchemaRequestBody, } from './hooks/useCustomMetricsControllerRegisterSchemaMutation';
91
+ export { customMetricsControllerRegisterSchema, useCustomMetricsControllerRegisterSchemaMutation, } from './hooks/useCustomMetricsControllerRegisterSchemaMutation';
82
92
  export type { DeveloperControllerActivateDeveloperVersionErrorResponse, DeveloperControllerActivateDeveloperVersionMutationPathParams, DeveloperControllerActivateDeveloperVersionOkResponse, DeveloperControllerActivateDeveloperVersionProps, DeveloperControllerActivateDeveloperVersionRequestBody, } from './hooks/useDeveloperControllerActivateDeveloperVersionMutation';
83
93
  export { developerControllerActivateDeveloperVersion, useDeveloperControllerActivateDeveloperVersionMutation, } from './hooks/useDeveloperControllerActivateDeveloperVersionMutation';
84
94
  export type { DeveloperControllerApproveDevelopersSaveErrorResponse, DeveloperControllerApproveDevelopersSaveMutationPathParams, DeveloperControllerApproveDevelopersSaveOkResponse, DeveloperControllerApproveDevelopersSaveProps, } from './hooks/useDeveloperControllerApproveDevelopersSaveMutation';
@@ -193,6 +203,18 @@ export type { ExportControllerForCollectionsExportDataErrorResponse, ExportContr
193
203
  export { exportControllerForCollectionsExportData, useExportControllerForCollectionsExportDataMutation, } from './hooks/useExportControllerForCollectionsExportDataMutation';
194
204
  export type { ExportControllerForTeamsExportDataErrorResponse, ExportControllerForTeamsExportDataMutationQueryParams, ExportControllerForTeamsExportDataOkResponse, ExportControllerForTeamsExportDataProps, ExportControllerForTeamsExportDataRequestBody, } from './hooks/useExportControllerForTeamsExportDataMutation';
195
205
  export { exportControllerForTeamsExportData, useExportControllerForTeamsExportDataMutation, } from './hooks/useExportControllerForTeamsExportDataMutation';
206
+ export type { ExternalDataControllerGetCurrentSchemaErrorResponse, ExternalDataControllerGetCurrentSchemaOkResponse, ExternalDataControllerGetCurrentSchemaProps, ExternalDataControllerGetCurrentSchemaQueryPathParams, } from './hooks/useExternalDataControllerGetCurrentSchemaQuery';
207
+ export { externalDataControllerGetCurrentSchema, useExternalDataControllerGetCurrentSchemaQuery, } from './hooks/useExternalDataControllerGetCurrentSchemaQuery';
208
+ export type { ExternalDataControllerGetIngestionHistoryErrorResponse, ExternalDataControllerGetIngestionHistoryOkResponse, ExternalDataControllerGetIngestionHistoryProps, ExternalDataControllerGetIngestionHistoryQueryPathParams, ExternalDataControllerGetIngestionHistoryQueryQueryParams, } from './hooks/useExternalDataControllerGetIngestionHistoryQuery';
209
+ export { externalDataControllerGetIngestionHistory, useExternalDataControllerGetIngestionHistoryQuery, } from './hooks/useExternalDataControllerGetIngestionHistoryQuery';
210
+ export type { ExternalDataControllerGetIngestionStatusErrorResponse, ExternalDataControllerGetIngestionStatusOkResponse, ExternalDataControllerGetIngestionStatusProps, ExternalDataControllerGetIngestionStatusQueryPathParams, } from './hooks/useExternalDataControllerGetIngestionStatusQuery';
211
+ export { externalDataControllerGetIngestionStatus, useExternalDataControllerGetIngestionStatusQuery, } from './hooks/useExternalDataControllerGetIngestionStatusQuery';
212
+ export type { ExternalDataControllerGetSchemaHistoryErrorResponse, ExternalDataControllerGetSchemaHistoryOkResponse, ExternalDataControllerGetSchemaHistoryProps, ExternalDataControllerGetSchemaHistoryQueryPathParams, ExternalDataControllerGetSchemaHistoryQueryQueryParams, } from './hooks/useExternalDataControllerGetSchemaHistoryQuery';
213
+ export { externalDataControllerGetSchemaHistory, useExternalDataControllerGetSchemaHistoryQuery, } from './hooks/useExternalDataControllerGetSchemaHistoryQuery';
214
+ export type { ExternalDataControllerIngestDataErrorResponse, ExternalDataControllerIngestDataMutationPathParams, ExternalDataControllerIngestDataOkResponse, ExternalDataControllerIngestDataProps, ExternalDataControllerIngestDataRequestBody, } from './hooks/useExternalDataControllerIngestDataMutation';
215
+ export { externalDataControllerIngestData, useExternalDataControllerIngestDataMutation, } from './hooks/useExternalDataControllerIngestDataMutation';
216
+ export type { ExternalDataControllerRegisterSchemaErrorResponse, ExternalDataControllerRegisterSchemaMutationPathParams, ExternalDataControllerRegisterSchemaOkResponse, ExternalDataControllerRegisterSchemaProps, ExternalDataControllerRegisterSchemaRequestBody, } from './hooks/useExternalDataControllerRegisterSchemaMutation';
217
+ export { externalDataControllerRegisterSchema, useExternalDataControllerRegisterSchemaMutation, } from './hooks/useExternalDataControllerRegisterSchemaMutation';
196
218
  export type { HealthControllerCheckDbHealthErrorResponse, HealthControllerCheckDbHealthOkResponse, HealthControllerCheckDbHealthProps, } from './hooks/useHealthControllerCheckDbHealthQuery';
197
219
  export { healthControllerCheckDbHealth, useHealthControllerCheckDbHealthQuery, } from './hooks/useHealthControllerCheckDbHealthQuery';
198
220
  export type { ImFieldsControllerListImFieldsErrorResponse, ImFieldsControllerListImFieldsOkResponse, ImFieldsControllerListImFieldsProps, ImFieldsControllerListImFieldsQueryQueryParams, ImFieldsControllerListImFieldsRequestBody, } from './hooks/useImFieldsControllerListImFieldsQuery';
@@ -530,6 +552,7 @@ export type { DataPoint } from './schemas/DataPoint';
530
552
  export type { DataPointBreakdown } from './schemas/DataPointBreakdown';
531
553
  export type { DataPointChangeFailureRate } from './schemas/DataPointChangeFailureRate';
532
554
  export type { DataPointDeploymentFrequency } from './schemas/DataPointDeploymentFrequency';
555
+ export type { DataRecord } from './schemas/DataRecord';
533
556
  export type { DateRange } from './schemas/DateRange';
534
557
  export type { DbListResponseCategory } from './schemas/DbListResponseCategory';
535
558
  export type { DbListResponseCollectionTree } from './schemas/DbListResponseCollectionTree';
@@ -606,6 +629,8 @@ export type { ExportOptions } from './schemas/ExportOptions';
606
629
  export type { ExportRequestDto } from './schemas/ExportRequestDto';
607
630
  export type { ExportScope } from './schemas/ExportScope';
608
631
  export type { FeatureDto } from './schemas/FeatureDto';
632
+ export type { FieldConstraint } from './schemas/FieldConstraint';
633
+ export type { FieldDefinition } from './schemas/FieldDefinition';
609
634
  export type { FilterByField } from './schemas/FilterByField';
610
635
  export type { FilterValuesRequestDto } from './schemas/FilterValuesRequestDto';
611
636
  export type { GroupByField } from './schemas/GroupByField';
@@ -620,6 +645,9 @@ export type { IndividualDrilldownData } from './schemas/IndividualDrilldownData'
620
645
  export type { IndividualDrilldownDataPoint } from './schemas/IndividualDrilldownDataPoint';
621
646
  export type { IndividualDrilldownDataPointV3 } from './schemas/IndividualDrilldownDataPointV3';
622
647
  export type { IndividualDrilldownDataV3 } from './schemas/IndividualDrilldownDataV3';
648
+ export type { IngestionRequest } from './schemas/IngestionRequest';
649
+ export type { IngestionResponse } from './schemas/IngestionResponse';
650
+ export type { IngestionStatusResponse } from './schemas/IngestionStatusResponse';
623
651
  export type { Integration } from './schemas/Integration';
624
652
  export type { IntegrationAdoptionSummary } from './schemas/IntegrationAdoptionSummary';
625
653
  export type { IntegrationConfigRequestDto } from './schemas/IntegrationConfigRequestDto';
@@ -644,6 +672,7 @@ export type { IssuesPrResponse } from './schemas/IssuesPrResponse';
644
672
  export type { IssuesPrResponseWrapper } from './schemas/IssuesPrResponseWrapper';
645
673
  export type { ItsmCustomFieldDto } from './schemas/ItsmCustomFieldDto';
646
674
  export type { ItsmDrilldownItem } from './schemas/ItsmDrilldownItem';
675
+ export type { ItsmDrilldownSummary } from './schemas/ItsmDrilldownSummary';
647
676
  export type { JsonNode } from './schemas/JsonNode';
648
677
  export type { LanguageCount } from './schemas/LanguageCount';
649
678
  export type { LicenseSearchParams } from './schemas/LicenseSearchParams';
@@ -696,6 +725,9 @@ export type { OrgTreeSearchParams } from './schemas/OrgTreeSearchParams';
696
725
  export type { OrgTreeUpdateRequestDto } from './schemas/OrgTreeUpdateRequestDto';
697
726
  export type { OverallPrMetrics } from './schemas/OverallPrMetrics';
698
727
  export type { OverallReworkMetrics } from './schemas/OverallReworkMetrics';
728
+ export type { PageMetadata } from './schemas/PageMetadata';
729
+ export type { PagedResponseIngestionStatusResponse } from './schemas/PagedResponseIngestionStatusResponse';
730
+ export type { PagedResponseSchemaResponse } from './schemas/PagedResponseSchemaResponse';
699
731
  export type { PaginatedResponseTeamSummary } from './schemas/PaginatedResponseTeamSummary';
700
732
  export type { Pagination } from './schemas/Pagination';
701
733
  export type { PaginationInfo } from './schemas/PaginationInfo';
@@ -738,11 +770,16 @@ export type { RankConfig } from './schemas/RankConfig';
738
770
  export type { RatingConfig } from './schemas/RatingConfig';
739
771
  export type { RatingDto } from './schemas/RatingDto';
740
772
  export type { RatingLevel } from './schemas/RatingLevel';
773
+ export type { RecordBatch } from './schemas/RecordBatch';
774
+ export type { RecordTypeDefinition } from './schemas/RecordTypeDefinition';
741
775
  export type { RefIdDto } from './schemas/RefIdDto';
742
776
  export type { ReleaseIssueDto } from './schemas/ReleaseIssueDto';
743
777
  export type { ReleaseIssuesResponseWrapper } from './schemas/ReleaseIssuesResponseWrapper';
744
778
  export type { ReworkSummaryBreakdown } from './schemas/ReworkSummaryBreakdown';
745
779
  export type { ReworkSummaryMetrics } from './schemas/ReworkSummaryMetrics';
780
+ export type { SchemaDefinition } from './schemas/SchemaDefinition';
781
+ export type { SchemaRegistrationRequest } from './schemas/SchemaRegistrationRequest';
782
+ export type { SchemaResponse } from './schemas/SchemaResponse';
746
783
  export type { ScmStatsRequest } from './schemas/ScmStatsRequest';
747
784
  export type { Scope } from './schemas/Scope';
748
785
  export type { ScopeInfo } from './schemas/ScopeInfo';
@@ -38,6 +38,11 @@ export { categoryControllerGetCategory, useCategoryControllerGetCategoryQuery, }
38
38
  export { categoryControllerList, useCategoryControllerListQuery, } from './hooks/useCategoryControllerListQuery';
39
39
  export { collectionControllerGetCollectionTree, useCollectionControllerGetCollectionTreeQuery, } from './hooks/useCollectionControllerGetCollectionTreeQuery';
40
40
  export { collectionControllerListCollections, useCollectionControllerListCollectionsQuery, } from './hooks/useCollectionControllerListCollectionsQuery';
41
+ export { customMetricsControllerGetIngestionHistory, useCustomMetricsControllerGetIngestionHistoryQuery, } from './hooks/useCustomMetricsControllerGetIngestionHistoryQuery';
42
+ export { customMetricsControllerGetIngestionStatus, useCustomMetricsControllerGetIngestionStatusQuery, } from './hooks/useCustomMetricsControllerGetIngestionStatusQuery';
43
+ export { customMetricsControllerGetSchema, useCustomMetricsControllerGetSchemaQuery, } from './hooks/useCustomMetricsControllerGetSchemaQuery';
44
+ export { customMetricsControllerIngestData, useCustomMetricsControllerIngestDataMutation, } from './hooks/useCustomMetricsControllerIngestDataMutation';
45
+ export { customMetricsControllerRegisterSchema, useCustomMetricsControllerRegisterSchemaMutation, } from './hooks/useCustomMetricsControllerRegisterSchemaMutation';
41
46
  export { developerControllerActivateDeveloperVersion, useDeveloperControllerActivateDeveloperVersionMutation, } from './hooks/useDeveloperControllerActivateDeveloperVersionMutation';
42
47
  export { developerControllerApproveDevelopersSave, useDeveloperControllerApproveDevelopersSaveMutation, } from './hooks/useDeveloperControllerApproveDevelopersSaveMutation';
43
48
  export { developerControllerDeleteDevelopers, useDeveloperControllerDeleteDevelopersMutation, } from './hooks/useDeveloperControllerDeleteDevelopersMutation';
@@ -95,6 +100,12 @@ export { efficiencyProfileControllerSearchProfiles, useEfficiencyProfileControll
95
100
  export { efficiencyProfileControllerUpdateProfile, useEfficiencyProfileControllerUpdateProfileMutation, } from './hooks/useEfficiencyProfileControllerUpdateProfileMutation';
96
101
  export { exportControllerForCollectionsExportData, useExportControllerForCollectionsExportDataMutation, } from './hooks/useExportControllerForCollectionsExportDataMutation';
97
102
  export { exportControllerForTeamsExportData, useExportControllerForTeamsExportDataMutation, } from './hooks/useExportControllerForTeamsExportDataMutation';
103
+ export { externalDataControllerGetCurrentSchema, useExternalDataControllerGetCurrentSchemaQuery, } from './hooks/useExternalDataControllerGetCurrentSchemaQuery';
104
+ export { externalDataControllerGetIngestionHistory, useExternalDataControllerGetIngestionHistoryQuery, } from './hooks/useExternalDataControllerGetIngestionHistoryQuery';
105
+ export { externalDataControllerGetIngestionStatus, useExternalDataControllerGetIngestionStatusQuery, } from './hooks/useExternalDataControllerGetIngestionStatusQuery';
106
+ export { externalDataControllerGetSchemaHistory, useExternalDataControllerGetSchemaHistoryQuery, } from './hooks/useExternalDataControllerGetSchemaHistoryQuery';
107
+ export { externalDataControllerIngestData, useExternalDataControllerIngestDataMutation, } from './hooks/useExternalDataControllerIngestDataMutation';
108
+ export { externalDataControllerRegisterSchema, useExternalDataControllerRegisterSchemaMutation, } from './hooks/useExternalDataControllerRegisterSchemaMutation';
98
109
  export { healthControllerCheckDbHealth, useHealthControllerCheckDbHealthQuery, } from './hooks/useHealthControllerCheckDbHealthQuery';
99
110
  export { imFieldsControllerListImFields, useImFieldsControllerListImFieldsQuery, } from './hooks/useImFieldsControllerListImFieldsQuery';
100
111
  export { integrationControllerGetFilterValues, useIntegrationControllerGetFilterValuesQuery, } from './hooks/useIntegrationControllerGetFilterValuesQuery';
@@ -0,0 +1,20 @@
1
+ /**
2
+ * A single data point with timestamp and field values
3
+ */
4
+ export interface DataRecord {
5
+ /**
6
+ * Field values as key-value pairs. Keys must match schema field definitions.
7
+ * @example {"team":"payments","application":"api","value":99.999}
8
+ */
9
+ fields: {
10
+ [key: string]: {
11
+ [key: string]: any;
12
+ };
13
+ };
14
+ /**
15
+ * Timestamp when this data was recorded (ISO 8601 format)
16
+ * @format date-time
17
+ * @example "2024-02-13T10:00:00.000Z"
18
+ */
19
+ timestamp: string;
20
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -2,7 +2,7 @@ import type { DataPoint } from '../schemas/DataPoint';
2
2
  import type { RatingDto } from '../schemas/RatingDto';
3
3
  import type { Stage } from '../schemas/Stage';
4
4
  export interface DoraLttcMttrMetric {
5
- basedOn?: 'AI' | 'CD' | 'CI' | 'IM' | 'ITSM' | 'SCM' | 'SECURITY';
5
+ basedOn?: 'AI' | 'CD' | 'CI' | 'CUSTOM_METRICS' | 'IM' | 'ITSM' | 'SCM' | 'SECURITY';
6
6
  dataPoints?: DataPoint[];
7
7
  /**
8
8
  * @format date-time
@@ -4,7 +4,7 @@ export interface DrillDownResponseDtoObject {
4
4
  * @format int32
5
5
  */
6
6
  count?: number;
7
- integrationType?: 'AI' | 'CD' | 'CI' | 'IM' | 'ITSM' | 'SCM' | 'SECURITY';
7
+ integrationType?: 'AI' | 'CD' | 'CI' | 'CUSTOM_METRICS' | 'IM' | 'ITSM' | 'SCM' | 'SECURITY';
8
8
  pagination?: PaginationInfo;
9
9
  records?: Array<{
10
10
  [key: string]: any;
@@ -1,4 +1,4 @@
1
1
  export interface EfficiencyProfileEvent {
2
2
  eventName?: string;
3
- integrationType: 'AI' | 'CD' | 'CI' | 'IM' | 'ITSM' | 'SCM' | 'SECURITY';
3
+ integrationType: 'AI' | 'CD' | 'CI' | 'CUSTOM_METRICS' | 'IM' | 'ITSM' | 'SCM' | 'SECURITY';
4
4
  }
@@ -0,0 +1,23 @@
1
+ /**
2
+ * Validation constraints for a field
3
+ */
4
+ export interface FieldConstraint {
5
+ /**
6
+ * List of allowed values (enum constraint)
7
+ */
8
+ allowedValues?: string[];
9
+ /**
10
+ * Maximum allowed value (for numeric fields)
11
+ * @format double
12
+ */
13
+ max?: number;
14
+ /**
15
+ * Minimum allowed value (for numeric fields)
16
+ * @format double
17
+ */
18
+ min?: number;
19
+ /**
20
+ * Regex pattern for value validation
21
+ */
22
+ pattern?: string;
23
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -0,0 +1,28 @@
1
+ import type { FieldConstraint } from '../schemas/FieldConstraint';
2
+ /**
3
+ * Definition of a field including its type and validation constraints
4
+ */
5
+ export interface FieldDefinition {
6
+ /**
7
+ * Validation constraints for this field
8
+ */
9
+ constraints?: FieldConstraint;
10
+ /**
11
+ * Human-readable description of the field
12
+ */
13
+ description?: string;
14
+ /**
15
+ * Field name
16
+ * @example "team"
17
+ */
18
+ name: string;
19
+ /**
20
+ * Whether this field is required for all records (typically false - use recordTypes.requiredFields instead)
21
+ */
22
+ required?: boolean;
23
+ /**
24
+ * Field data type
25
+ * @example "string"
26
+ */
27
+ type: 'boolean' | 'double' | 'json' | 'long' | 'string' | 'timestamp';
28
+ }
@@ -0,0 +1,15 @@
1
+ import type { RecordBatch } from '../schemas/RecordBatch';
2
+ /**
3
+ * Request for ingesting external data
4
+ */
5
+ export interface IngestionRequest {
6
+ /**
7
+ * List of record batches to ingest, grouped by record type
8
+ */
9
+ batches: RecordBatch[];
10
+ /**
11
+ * Data source identifier
12
+ * @example "aternity"
13
+ */
14
+ source: string;
15
+ }
@@ -0,0 +1,39 @@
1
+ /**
2
+ * Response for data ingestion request
3
+ */
4
+ export interface IngestionResponse {
5
+ /**
6
+ * When the ingestion was created
7
+ * @format date-time
8
+ * @example "2024-01-24T10:05:00Z"
9
+ */
10
+ createdAt?: string;
11
+ /**
12
+ * Ingestion ID for tracking
13
+ * @format uuid
14
+ * @example "770e8400-e29b-41d4-a716-446655440002"
15
+ */
16
+ ingestionId?: string;
17
+ /**
18
+ * Status message
19
+ * @example "Successfully queued 3 records for processing"
20
+ */
21
+ message?: string;
22
+ /**
23
+ * Schema version used for validation
24
+ * @format int32
25
+ * @example 1
26
+ */
27
+ schemaVersion?: number;
28
+ /**
29
+ * Processing status
30
+ * @example "QUEUED"
31
+ */
32
+ status?: 'COMPLETED' | 'FAILED' | 'PROCESSING' | 'QUEUED' | 'VALIDATING' | 'VALIDATION_FAILED';
33
+ /**
34
+ * Total number of records received
35
+ * @format int32
36
+ * @example 3
37
+ */
38
+ totalRecords?: number;
39
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -0,0 +1,88 @@
1
+ import type { ValidationError } from '../schemas/ValidationError';
2
+ /**
3
+ * Detailed ingestion status response
4
+ */
5
+ export interface IngestionStatusResponse {
6
+ /**
7
+ * When ingestion completed
8
+ * @format date-time
9
+ * @example "2024-01-24T10:20:00Z"
10
+ */
11
+ completedAt?: string;
12
+ /**
13
+ * When the ingestion was created
14
+ * @format date-time
15
+ * @example "2024-01-24T10:05:00Z"
16
+ */
17
+ createdAt?: string;
18
+ /**
19
+ * Error code if status is FAILED
20
+ */
21
+ errorCode?: string;
22
+ /**
23
+ * Error message if status is FAILED
24
+ */
25
+ errorMessage?: string;
26
+ /**
27
+ * When ingestion failed
28
+ * @format date-time
29
+ * @example "2024-01-24T10:10:00Z"
30
+ */
31
+ failedAt?: string;
32
+ /**
33
+ * Ingestion ID
34
+ * @format uuid
35
+ * @example "880e8400-e29b-41d4-a716-446655440003"
36
+ */
37
+ ingestionId?: string;
38
+ /**
39
+ * Number of invalid records
40
+ * @format int32
41
+ * @example 1
42
+ */
43
+ invalidRecords?: number;
44
+ /**
45
+ * Status message
46
+ * @example "Validation failed for 1 records"
47
+ */
48
+ message?: string;
49
+ /**
50
+ * When processing started
51
+ * @format date-time
52
+ * @example "2024-01-24T10:15:00Z"
53
+ */
54
+ processingStartedAt?: string;
55
+ /**
56
+ * Schema version used for validation
57
+ * @format int32
58
+ * @example 1
59
+ */
60
+ schemaVersion?: number;
61
+ /**
62
+ * Processing status
63
+ * @example "VALIDATION_FAILED"
64
+ */
65
+ status?: 'COMPLETED' | 'FAILED' | 'PROCESSING' | 'QUEUED' | 'VALIDATING' | 'VALIDATION_FAILED';
66
+ /**
67
+ * Total number of records
68
+ * @format int32
69
+ * @example 3
70
+ */
71
+ totalRecords?: number;
72
+ /**
73
+ * Number of valid records
74
+ * @format int32
75
+ * @example 2
76
+ */
77
+ validRecords?: number;
78
+ /**
79
+ * When validation started
80
+ * @format date-time
81
+ * @example "2024-01-24T10:10:00Z"
82
+ */
83
+ validatedAt?: string;
84
+ /**
85
+ * Validation errors if status is VALIDATION_FAILED
86
+ */
87
+ validationErrors?: ValidationError[];
88
+ }
@@ -3,6 +3,6 @@ export interface Integration {
3
3
  * @format int32
4
4
  */
5
5
  id?: number;
6
- integrationType?: 'AI' | 'CD' | 'CI' | 'IM' | 'ITSM' | 'SCM' | 'SECURITY';
6
+ integrationType?: 'AI' | 'CD' | 'CI' | 'CUSTOM_METRICS' | 'IM' | 'ITSM' | 'SCM' | 'SECURITY';
7
7
  name?: string;
8
8
  }
@@ -5,7 +5,7 @@ export interface IntegrationResponseDto {
5
5
  /**
6
6
  * Application type
7
7
  */
8
- applicationType?: 'ADO_BOARDS' | 'ADO_PIPELINES' | 'ADO_REPOS' | 'ARMORCODE' | 'BITBUCKET' | 'BITBUCKET_SERVER' | 'CLAUDE_CODE' | 'CURSOR' | 'CUSTOM' | 'GITHUB' | 'GITHUB_ACTIONS' | 'GITHUB_COPILOT' | 'GITLAB' | 'HARNESSCODE' | 'HARNESSNG' | 'HARNESS_CD' | 'HARNESS_CI' | 'JENKINS' | 'JIRA' | 'SERVICENOW' | 'SNYK' | 'WINDSURF' | 'WIZ';
8
+ applicationType?: 'ADO_BOARDS' | 'ADO_PIPELINES' | 'ADO_REPOS' | 'ARMORCODE' | 'BITBUCKET' | 'BITBUCKET_SERVER' | 'CLAUDE_CODE' | 'CURSOR' | 'CUSTOM' | 'CUSTOM_METRICS' | 'GITHUB' | 'GITHUB_ACTIONS' | 'GITHUB_COPILOT' | 'GITLAB' | 'HARNESSCODE' | 'HARNESSNG' | 'HARNESS_CD' | 'HARNESS_CI' | 'JENKINS' | 'JIRA' | 'SERVICENOW' | 'SNYK' | 'WINDSURF' | 'WIZ';
9
9
  /**
10
10
  * Integration ID
11
11
  * @format int32
@@ -14,7 +14,7 @@ export interface IntegrationResponseDto {
14
14
  /**
15
15
  * Integration type
16
16
  */
17
- integrationType?: 'AI' | 'CD' | 'CI' | 'IM' | 'ITSM' | 'SCM' | 'SECURITY';
17
+ integrationType?: 'AI' | 'CD' | 'CI' | 'CUSTOM_METRICS' | 'IM' | 'ITSM' | 'SCM' | 'SECURITY';
18
18
  /**
19
19
  * Integration name
20
20
  */
@@ -1,94 +1,69 @@
1
1
  /**
2
- * ITSM drilldown record for incidents and change requests
2
+ * ITSM drilldown record for incidents and change requests from incident_mgmt table
3
3
  */
4
4
  export interface ItsmDrilldownItem {
5
5
  /**
6
- * Application name associated with the record
7
- */
8
- applicationName?: string;
9
- /**
10
- * Approval group for the record
11
- */
12
- approvalGroup?: string;
13
- /**
14
- * Assignment group responsible for the record
6
+ * Assignment group from attributes['assignment_group']
15
7
  */
16
8
  assignmentGroup?: string;
17
9
  /**
18
- * Business service affected
10
+ * Business service from attributes['business_service']
19
11
  */
20
12
  businessService?: string;
21
13
  /**
22
- * When the record was closed
14
+ * When the record was closed from attributes['closed_at']
23
15
  * @format date-time
24
16
  */
25
17
  closedAt?: string;
26
18
  /**
27
- * When the record was created
19
+ * When the record was created from incident_created_at column
28
20
  * @format date-time
29
21
  */
30
22
  createdAt?: string;
31
23
  /**
32
- * Environment (e.g., Production, Staging)
33
- */
34
- environment?: string;
35
- /**
36
- * Record ID (e.g., INC0012345 for incidents, CHG0012345 for change requests)
24
+ * Record number from incident_number column (e.g., INC0012345, CHG0012345)
37
25
  */
38
26
  id?: string;
39
27
  /**
40
- * Whether this record represents a failure (for CFR)
41
- */
42
- isFailure?: boolean;
43
- /**
44
- * Owner of the record (incident owner or change owner)
28
+ * Person assigned to the record from assignee column
45
29
  */
46
30
  owner?: string;
47
31
  /**
48
- * Priority of the record
32
+ * Priority from priority column
49
33
  */
50
34
  priority?: string;
51
35
  /**
52
- * Record type: INCIDENT or CHANGE_REQUEST
36
+ * Record type from type column: 'Incident' or 'Change Request'
53
37
  */
54
38
  recordType?: 'CHANGE_REQUEST' | 'INCIDENT';
55
39
  /**
56
- * Resolution time in seconds (for MTTR)
40
+ * Resolution time in seconds: incident_resolved_at - incident_created_at
57
41
  * @format int64
58
42
  */
59
43
  resolutionTimeSeconds?: number;
60
44
  /**
61
- * When the record was resolved
45
+ * When the record was resolved from incident_resolved_at column
62
46
  * @format date-time
63
47
  */
64
48
  resolvedAt?: string;
65
49
  /**
66
- * Risk level (for change requests)
50
+ * Severity from severity column
67
51
  */
68
- risk?: string;
52
+ severity?: string;
69
53
  /**
70
- * Current status of the record
54
+ * Current status from status column
71
55
  */
72
56
  status?: string;
73
57
  /**
74
- * Support group handling the record
75
- */
76
- supportGroup?: string;
77
- /**
78
- * Type/category of the record
79
- */
80
- type?: string;
81
- /**
82
- * When the record was last updated
83
- * @format date-time
58
+ * Summary/short description from summary column
84
59
  */
85
- updatedAt?: string;
60
+ summary?: string;
86
61
  /**
87
- * Urgency level (for incidents)
62
+ * Urgency from urgency column
88
63
  */
89
64
  urgency?: string;
90
65
  /**
91
- * Direct URL to view the record in ServiceNow
66
+ * Direct URL to view the record in ServiceNow (url column)
92
67
  */
93
68
  url?: string;
94
69
  }
@@ -0,0 +1,40 @@
1
+ /**
2
+ * ITSM drilldown summary statistics
3
+ */
4
+ export interface ItsmDrilldownSummary {
5
+ /**
6
+ * Average resolution time in hours (MTTR)
7
+ * @format double
8
+ */
9
+ avgResolutionTimeHours?: number;
10
+ /**
11
+ * Deployment frequency per day (DF)
12
+ * @format double
13
+ */
14
+ deploymentsPerDay?: number;
15
+ /**
16
+ * Change failure rate percentage (CFR)
17
+ * @format double
18
+ */
19
+ failureRatePercent?: number;
20
+ /**
21
+ * Number of incidents resolved (MTTR)
22
+ * @format int64
23
+ */
24
+ incidentsResolved?: number;
25
+ /**
26
+ * Total number of deployments/change requests (DF)
27
+ * @format int64
28
+ */
29
+ totalDeployments?: number;
30
+ /**
31
+ * Total number of failures (CFR)
32
+ * @format int64
33
+ */
34
+ totalFailures?: number;
35
+ /**
36
+ * Total number of incidents created (MTTR)
37
+ * @format int64
38
+ */
39
+ totalIncidentsCreated?: number;
40
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -20,6 +20,7 @@ export interface MinimalTeamHierarchyResponseDto {
20
20
  * @example 10
21
21
  */
22
22
  developerCount?: number;
23
+ displayName?: string;
23
24
  /**
24
25
  * Map of integration Filters associated with the team
25
26
  * @example []
@@ -1,5 +1,6 @@
1
1
  import type { ImmttrDrilldownItem } from '../schemas/ImmttrDrilldownItem';
2
2
  import type { ItsmDrilldownItem } from '../schemas/ItsmDrilldownItem';
3
+ import type { ItsmDrilldownSummary } from '../schemas/ItsmDrilldownSummary';
3
4
  import type { PaginationInfo } from '../schemas/PaginationInfo';
4
5
  /**
5
6
  * MTTR drilldown response with support for multiple integration types
@@ -17,11 +18,15 @@ export interface MttrDrillDownResponseDto {
17
18
  /**
18
19
  * Integration type for this response
19
20
  */
20
- integrationType?: 'AI' | 'CD' | 'CI' | 'IM' | 'ITSM' | 'SCM' | 'SECURITY';
21
+ integrationType?: 'AI' | 'CD' | 'CI' | 'CUSTOM_METRICS' | 'IM' | 'ITSM' | 'SCM' | 'SECURITY';
21
22
  /**
22
23
  * ITSM records (ServiceNow incidents/change requests)
23
24
  */
24
25
  itsmRecords?: ItsmDrilldownItem[];
26
+ /**
27
+ * ITSM summary statistics
28
+ */
29
+ itsmSummary?: ItsmDrilldownSummary;
25
30
  /**
26
31
  * Pagination details
27
32
  */
@@ -1,7 +1,7 @@
1
1
  import type { MttrDataPoint } from '../schemas/MttrDataPoint';
2
2
  import type { RatingDto } from '../schemas/RatingDto';
3
3
  export interface MttrMetric {
4
- basedOn?: 'AI' | 'CD' | 'CI' | 'IM' | 'ITSM' | 'SCM' | 'SECURITY';
4
+ basedOn?: 'AI' | 'CD' | 'CI' | 'CUSTOM_METRICS' | 'IM' | 'ITSM' | 'SCM' | 'SECURITY';
5
5
  dataPoints?: MttrDataPoint[];
6
6
  /**
7
7
  * @format date-time