@harnessio/react-chaos-manager-client 0.12.0 → 0.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (127) hide show
  1. package/dist/chaos-manager/src/services/hooks/useCreateRecommendationMutation.d.ts +24 -0
  2. package/dist/chaos-manager/src/services/hooks/useCreateRecommendationMutation.js +14 -0
  3. package/dist/chaos-manager/src/services/hooks/useDeleteEventWatcherMutation.d.ts +28 -0
  4. package/dist/chaos-manager/src/services/hooks/useDeleteEventWatcherMutation.js +14 -0
  5. package/dist/chaos-manager/src/services/hooks/useDeleteRecommendationMutation.d.ts +23 -0
  6. package/dist/chaos-manager/src/services/hooks/useDeleteRecommendationMutation.js +14 -0
  7. package/dist/chaos-manager/src/services/hooks/useGetEventWatcherQuery.d.ts +27 -0
  8. package/dist/chaos-manager/src/services/hooks/useGetEventWatcherQuery.js +14 -0
  9. package/dist/chaos-manager/src/services/hooks/useGetRecommendationQuery.d.ts +23 -0
  10. package/dist/chaos-manager/src/services/hooks/useGetRecommendationQuery.js +14 -0
  11. package/dist/chaos-manager/src/services/hooks/useListEventWatcherQuery.d.ts +32 -0
  12. package/dist/chaos-manager/src/services/hooks/useListEventWatcherQuery.js +14 -0
  13. package/dist/chaos-manager/src/services/hooks/useListFaultQuery.d.ts +14 -7
  14. package/dist/chaos-manager/src/services/hooks/useListFaultQuery.js +2 -2
  15. package/dist/chaos-manager/src/services/hooks/useListRecommendationsQuery.d.ts +25 -0
  16. package/dist/chaos-manager/src/services/hooks/useListRecommendationsQuery.js +14 -0
  17. package/dist/chaos-manager/src/services/hooks/useRecommendationEventMutation.d.ts +19 -0
  18. package/dist/chaos-manager/src/services/hooks/useRecommendationEventMutation.js +14 -0
  19. package/dist/chaos-manager/src/services/hooks/useRegisterEventWatcherMutation.d.ts +28 -0
  20. package/dist/chaos-manager/src/services/hooks/useRegisterEventWatcherMutation.js +14 -0
  21. package/dist/chaos-manager/src/services/hooks/useRunRecommendationMutation.d.ts +24 -0
  22. package/dist/chaos-manager/src/services/hooks/useRunRecommendationMutation.js +14 -0
  23. package/dist/chaos-manager/src/services/hooks/useUpdateRecommendationStatusMutation.d.ts +24 -0
  24. package/dist/chaos-manager/src/services/hooks/useUpdateRecommendationStatusMutation.js +14 -0
  25. package/dist/chaos-manager/src/services/index.d.ts +58 -12
  26. package/dist/chaos-manager/src/services/index.js +11 -0
  27. package/dist/chaos-manager/src/services/schemas/ActionsActionResponse.d.ts +2 -0
  28. package/dist/chaos-manager/src/services/schemas/ChaosExperimentRunAnnotation.d.ts +1 -0
  29. package/dist/chaos-manager/src/services/schemas/ChaoshubFaultCategoryCount.d.ts +4 -0
  30. package/dist/chaos-manager/src/services/schemas/ChaoshubListFaultsResponse.d.ts +8 -0
  31. package/dist/chaos-manager/src/services/schemas/ChaoshubresourcesChaosHubResource.d.ts +97 -0
  32. package/dist/chaos-manager/src/services/schemas/EventWatcherDeleteEventWatcherResponse.d.ts +4 -0
  33. package/dist/chaos-manager/src/services/schemas/EventWatcherEventWatcherDetails.d.ts +52 -0
  34. package/dist/chaos-manager/src/services/schemas/EventWatcherEventWatcherStatus.d.ts +1 -0
  35. package/dist/chaos-manager/src/services/schemas/EventWatcherEventWatcherType.d.ts +1 -0
  36. package/dist/chaos-manager/src/services/schemas/EventWatcherIdentifiers.d.ts +5 -0
  37. package/dist/chaos-manager/src/services/schemas/EventWatcherListEventWatchersResponse.d.ts +7 -0
  38. package/dist/chaos-manager/src/services/schemas/EventWatcherRegisterEventWatcherRequest.d.ts +42 -0
  39. package/dist/chaos-manager/src/services/schemas/EventWatcherRegisterEventWatcherResponse.d.ts +5 -0
  40. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgActionsAction.d.ts +2 -0
  41. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbActionsAction.d.ts +2 -0
  42. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode.d.ts +4 -0
  43. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode.js +4 -0
  44. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation.d.ts +26 -0
  45. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation.js +1 -0
  46. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendationTargetType.d.ts +1 -0
  47. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendationTargetType.js +4 -0
  48. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationTarget.d.ts +8 -0
  49. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationTarget.js +1 -0
  50. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationWorkload.d.ts +6 -0
  51. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationWorkload.js +4 -0
  52. package/dist/chaos-manager/src/services/schemas/GithubComWingsSoftwareDdcrPkgTypesChaosInputs.d.ts +0 -2
  53. package/dist/chaos-manager/src/services/schemas/ProbeDatadogProbe.d.ts +1 -0
  54. package/dist/chaos-manager/src/services/schemas/ProbeDynatraceProbe.d.ts +1 -0
  55. package/dist/chaos-manager/src/services/schemas/ProbeHttpProbe.d.ts +1 -0
  56. package/dist/chaos-manager/src/services/schemas/ProbeK8SProbe.d.ts +1 -0
  57. package/dist/chaos-manager/src/services/schemas/ProbeKubernetesCmdProbe.d.ts +1 -0
  58. package/dist/chaos-manager/src/services/schemas/ProbeLinuxCmdProbe.d.ts +1 -0
  59. package/dist/chaos-manager/src/services/schemas/ProbePromProbe.d.ts +1 -0
  60. package/dist/chaos-manager/src/services/schemas/ProbeSloProbe.d.ts +1 -0
  61. package/dist/chaos-manager/src/services/schemas/RecommendationConfigScannerEvents.d.ts +11 -0
  62. package/dist/chaos-manager/src/services/schemas/RecommendationConfigScannerEvents.js +1 -0
  63. package/dist/chaos-manager/src/services/schemas/RecommendationEventRequest.d.ts +13 -0
  64. package/dist/chaos-manager/src/services/schemas/RecommendationEventRequest.js +1 -0
  65. package/dist/chaos-manager/src/services/schemas/RecommendationFailure.d.ts +6 -0
  66. package/dist/chaos-manager/src/services/schemas/RecommendationFailure.js +4 -0
  67. package/dist/chaos-manager/src/services/schemas/RecommendationFaultFilters.d.ts +6 -0
  68. package/dist/chaos-manager/src/services/schemas/RecommendationFaultFilters.js +1 -0
  69. package/dist/chaos-manager/src/services/schemas/RecommendationFaultPayload.d.ts +4 -0
  70. package/dist/chaos-manager/src/services/schemas/RecommendationFaultPayload.js +1 -0
  71. package/dist/chaos-manager/src/services/schemas/RecommendationFixes.d.ts +4 -0
  72. package/dist/chaos-manager/src/services/schemas/RecommendationFixes.js +4 -0
  73. package/dist/chaos-manager/src/services/schemas/RecommendationIdentifiers.d.ts +5 -0
  74. package/dist/chaos-manager/src/services/schemas/RecommendationIdentifiers.js +4 -0
  75. package/dist/chaos-manager/src/services/schemas/RecommendationProbeFilters.d.ts +6 -0
  76. package/dist/chaos-manager/src/services/schemas/RecommendationProbeFilters.js +4 -0
  77. package/dist/chaos-manager/src/services/schemas/RecommendationProbePayload.d.ts +9 -0
  78. package/dist/chaos-manager/src/services/schemas/RecommendationProbePayload.js +4 -0
  79. package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationCategory.d.ts +1 -0
  80. package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationCategory.js +4 -0
  81. package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationSource.d.ts +1 -0
  82. package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationSource.js +4 -0
  83. package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationStatus.d.ts +1 -0
  84. package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationStatus.js +4 -0
  85. package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationType.d.ts +1 -0
  86. package/dist/chaos-manager/src/services/schemas/RecommendationRecommendationType.js +4 -0
  87. package/dist/chaos-manager/src/services/schemas/RecommendationSuggestions.d.ts +13 -0
  88. package/dist/chaos-manager/src/services/schemas/RecommendationSuggestions.js +1 -0
  89. package/dist/chaos-manager/src/services/schemas/RecommendationsCreateActionResponse.d.ts +4 -0
  90. package/dist/chaos-manager/src/services/schemas/RecommendationsCreateActionResponse.js +4 -0
  91. package/dist/chaos-manager/src/services/schemas/RecommendationsFilters.d.ts +7 -0
  92. package/dist/chaos-manager/src/services/schemas/RecommendationsFilters.js +1 -0
  93. package/dist/chaos-manager/src/services/schemas/RecommendationsListRecommendationsRequest.d.ts +4 -0
  94. package/dist/chaos-manager/src/services/schemas/RecommendationsListRecommendationsRequest.js +1 -0
  95. package/dist/chaos-manager/src/services/schemas/RecommendationsListRecommendationsResponse.d.ts +4 -0
  96. package/dist/chaos-manager/src/services/schemas/RecommendationsListRecommendationsResponse.js +1 -0
  97. package/dist/chaos-manager/src/services/schemas/RecommendationsRunActionResponse.d.ts +4 -0
  98. package/dist/chaos-manager/src/services/schemas/RecommendationsRunActionResponse.js +4 -0
  99. package/dist/chaos-manager/src/services/schemas/ResourceQuantity.d.ts +1 -1
  100. package/dist/chaos-manager/src/services/schemas/TemplateVariable.d.ts +1 -0
  101. package/dist/chaos-manager/src/services/schemas/TemplateVariableCategory.d.ts +1 -1
  102. package/dist/chaos-manager/src/services/schemas/TypesCreateProbeResponse.d.ts +2 -0
  103. package/dist/chaos-manager/src/services/schemas/TypesGetProbeResponse.d.ts +2 -0
  104. package/dist/chaos-manager/src/services/schemas/TypesProbeRequest.d.ts +2 -0
  105. package/package.json +1 -1
  106. package/dist/chaos-manager/src/services/schemas/ModelAnnotation.d.ts +0 -8
  107. package/dist/chaos-manager/src/services/schemas/ModelChart.d.ts +0 -10
  108. package/dist/chaos-manager/src/services/schemas/ModelExperiments.d.ts +0 -5
  109. package/dist/chaos-manager/src/services/schemas/ModelFaultList.d.ts +0 -8
  110. package/dist/chaos-manager/src/services/schemas/ModelLink.d.ts +0 -4
  111. package/dist/chaos-manager/src/services/schemas/ModelMaintainer.d.ts +0 -10
  112. package/dist/chaos-manager/src/services/schemas/ModelMetadata.d.ts +0 -6
  113. package/dist/chaos-manager/src/services/schemas/ModelPackageInformation.d.ts +0 -5
  114. package/dist/chaos-manager/src/services/schemas/ModelProvider.d.ts +0 -3
  115. package/dist/chaos-manager/src/services/schemas/ModelSpec.d.ts +0 -19
  116. package/dist/chaos-manager/src/services/schemas/TypesCleanupPolicy.d.ts +0 -1
  117. /package/dist/chaos-manager/src/services/schemas/{ModelAnnotation.js → ChaoshubFaultCategoryCount.js} +0 -0
  118. /package/dist/chaos-manager/src/services/schemas/{ModelChart.js → ChaoshubListFaultsResponse.js} +0 -0
  119. /package/dist/chaos-manager/src/services/schemas/{ModelExperiments.js → ChaoshubresourcesChaosHubResource.js} +0 -0
  120. /package/dist/chaos-manager/src/services/schemas/{ModelFaultList.js → EventWatcherDeleteEventWatcherResponse.js} +0 -0
  121. /package/dist/chaos-manager/src/services/schemas/{ModelMetadata.js → EventWatcherEventWatcherDetails.js} +0 -0
  122. /package/dist/chaos-manager/src/services/schemas/{ModelLink.js → EventWatcherEventWatcherStatus.js} +0 -0
  123. /package/dist/chaos-manager/src/services/schemas/{ModelMaintainer.js → EventWatcherEventWatcherType.js} +0 -0
  124. /package/dist/chaos-manager/src/services/schemas/{ModelProvider.js → EventWatcherIdentifiers.js} +0 -0
  125. /package/dist/chaos-manager/src/services/schemas/{ModelPackageInformation.js → EventWatcherListEventWatchersResponse.js} +0 -0
  126. /package/dist/chaos-manager/src/services/schemas/{ModelSpec.js → EventWatcherRegisterEventWatcherRequest.js} +0 -0
  127. /package/dist/chaos-manager/src/services/schemas/{TypesCleanupPolicy.js → EventWatcherRegisterEventWatcherResponse.js} +0 -0
@@ -24,6 +24,8 @@ export type { CreateProbeErrorResponse, CreateProbeMutationProps, CreateProbeMut
24
24
  export { createProbe, useCreateProbeMutation } from './hooks/useCreateProbeMutation';
25
25
  export type { CreateProbeTemplateErrorResponse, CreateProbeTemplateMutationProps, CreateProbeTemplateMutationQueryParams, CreateProbeTemplateOkResponse, CreateProbeTemplateProps, CreateProbeTemplateRequestBody, } from './hooks/useCreateProbeTemplateMutation';
26
26
  export { createProbeTemplate, useCreateProbeTemplateMutation, } from './hooks/useCreateProbeTemplateMutation';
27
+ export type { CreateRecommendationErrorResponse, CreateRecommendationMutationProps, CreateRecommendationMutationQueryParams, CreateRecommendationOkResponse, CreateRecommendationProps, } from './hooks/useCreateRecommendationMutation';
28
+ export { createRecommendation, useCreateRecommendationMutation, } from './hooks/useCreateRecommendationMutation';
27
29
  export type { CreateV2OnboardingErrorResponse, CreateV2OnboardingMutationProps, CreateV2OnboardingMutationQueryParams, CreateV2OnboardingOkResponse, CreateV2OnboardingProps, CreateV2OnboardingRequestBody, } from './hooks/useCreateV2OnboardingMutation';
28
30
  export { createV2Onboarding, useCreateV2OnboardingMutation, } from './hooks/useCreateV2OnboardingMutation';
29
31
  export type { DeleteActionErrorResponse, DeleteActionMutationPathParams, DeleteActionMutationProps, DeleteActionMutationQueryParams, DeleteActionOkResponse, DeleteActionProps, } from './hooks/useDeleteActionMutation';
@@ -32,6 +34,8 @@ export type { DeleteActionTemplateErrorResponse, DeleteActionTemplateMutationPat
32
34
  export { deleteActionTemplate, useDeleteActionTemplateMutation, } from './hooks/useDeleteActionTemplateMutation';
33
35
  export type { DeleteChaosV2ExperimentErrorResponse, DeleteChaosV2ExperimentMutationPathParams, DeleteChaosV2ExperimentMutationProps, DeleteChaosV2ExperimentMutationQueryParams, DeleteChaosV2ExperimentOkResponse, DeleteChaosV2ExperimentProps, } from './hooks/useDeleteChaosV2ExperimentMutation';
34
36
  export { deleteChaosV2Experiment, useDeleteChaosV2ExperimentMutation, } from './hooks/useDeleteChaosV2ExperimentMutation';
37
+ export type { DeleteEventWatcherErrorResponse, DeleteEventWatcherMutationPathParams, DeleteEventWatcherMutationProps, DeleteEventWatcherMutationQueryParams, DeleteEventWatcherOkResponse, DeleteEventWatcherProps, } from './hooks/useDeleteEventWatcherMutation';
38
+ export { deleteEventWatcher, useDeleteEventWatcherMutation, } from './hooks/useDeleteEventWatcherMutation';
35
39
  export type { DeleteGamedayV2ErrorResponse, DeleteGamedayV2MutationPathParams, DeleteGamedayV2MutationProps, DeleteGamedayV2MutationQueryParams, DeleteGamedayV2OkResponse, DeleteGamedayV2Props, } from './hooks/useDeleteGamedayV2Mutation';
36
40
  export { deleteGamedayV2, useDeleteGamedayV2Mutation } from './hooks/useDeleteGamedayV2Mutation';
37
41
  export type { DeleteInfraV2ErrorResponse, DeleteInfraV2MutationPathParams, DeleteInfraV2MutationProps, DeleteInfraV2MutationQueryParams, DeleteInfraV2OkResponse, DeleteInfraV2Props, } from './hooks/useDeleteInfraV2Mutation';
@@ -42,6 +46,8 @@ export type { DeleteProbeErrorResponse, DeleteProbeMutationPathParams, DeletePro
42
46
  export { deleteProbe, useDeleteProbeMutation } from './hooks/useDeleteProbeMutation';
43
47
  export type { DeleteProbeTemplateErrorResponse, DeleteProbeTemplateMutationPathParams, DeleteProbeTemplateMutationProps, DeleteProbeTemplateMutationQueryParams, DeleteProbeTemplateOkResponse, DeleteProbeTemplateProps, } from './hooks/useDeleteProbeTemplateMutation';
44
48
  export { deleteProbeTemplate, useDeleteProbeTemplateMutation, } from './hooks/useDeleteProbeTemplateMutation';
49
+ export type { DeleteRecommendationErrorResponse, DeleteRecommendationMutationProps, DeleteRecommendationMutationQueryParams, DeleteRecommendationOkResponse, DeleteRecommendationProps, } from './hooks/useDeleteRecommendationMutation';
50
+ export { deleteRecommendation, useDeleteRecommendationMutation, } from './hooks/useDeleteRecommendationMutation';
45
51
  export type { DeleteTargetNetworkMapErrorResponse, DeleteTargetNetworkMapMutationPathParams, DeleteTargetNetworkMapMutationProps, DeleteTargetNetworkMapMutationQueryParams, DeleteTargetNetworkMapOkResponse, DeleteTargetNetworkMapProps, } from './hooks/useDeleteTargetNetworkMapMutation';
46
52
  export { deleteTargetNetworkMap, useDeleteTargetNetworkMapMutation, } from './hooks/useDeleteTargetNetworkMapMutation';
47
53
  export type { EnableProbeErrorResponse, EnableProbeMutationPathParams, EnableProbeMutationProps, EnableProbeMutationQueryParams, EnableProbeOkResponse, EnableProbeProps, EnableProbeRequestBody, } from './hooks/useEnableProbeMutation';
@@ -74,6 +80,8 @@ export type { GetChaosV2ExperimentVariablesErrorResponse, GetChaosV2ExperimentVa
74
80
  export { getChaosV2ExperimentVariables, useGetChaosV2ExperimentVariablesQuery, } from './hooks/useGetChaosV2ExperimentVariablesQuery';
75
81
  export type { GetConnectorForInfraErrorResponse, GetConnectorForInfraOkResponse, GetConnectorForInfraProps, GetConnectorForInfraQueryPathParams, GetConnectorForInfraQueryQueryParams, } from './hooks/useGetConnectorForInfraQuery';
76
82
  export { getConnectorForInfra, useGetConnectorForInfraQuery, } from './hooks/useGetConnectorForInfraQuery';
83
+ export type { GetEventWatcherErrorResponse, GetEventWatcherOkResponse, GetEventWatcherProps, GetEventWatcherQueryPathParams, GetEventWatcherQueryQueryParams, } from './hooks/useGetEventWatcherQuery';
84
+ export { getEventWatcher, useGetEventWatcherQuery } from './hooks/useGetEventWatcherQuery';
77
85
  export type { GetExperimentHelperImageVersionErrorResponse, GetExperimentHelperImageVersionOkResponse, GetExperimentHelperImageVersionProps, } from './hooks/useGetExperimentHelperImageVersionQuery';
78
86
  export { getExperimentHelperImageVersion, useGetExperimentHelperImageVersionQuery, } from './hooks/useGetExperimentHelperImageVersionQuery';
79
87
  export type { GetExperimentRunTimelineViewErrorResponse, GetExperimentRunTimelineViewOkResponse, GetExperimentRunTimelineViewProps, GetExperimentRunTimelineViewQueryPathParams, GetExperimentRunTimelineViewQueryQueryParams, } from './hooks/useGetExperimentRunTimelineViewQuery';
@@ -108,6 +116,8 @@ export type { GetProbeErrorResponse, GetProbeOkResponse, GetProbeProps, GetProbe
108
116
  export { getProbe, useGetProbeQuery } from './hooks/useGetProbeQuery';
109
117
  export type { GetProbeTemplateErrorResponse, GetProbeTemplateOkResponse, GetProbeTemplateProps, GetProbeTemplateQueryPathParams, GetProbeTemplateQueryQueryParams, } from './hooks/useGetProbeTemplateQuery';
110
118
  export { getProbeTemplate, useGetProbeTemplateQuery } from './hooks/useGetProbeTemplateQuery';
119
+ export type { GetRecommendationErrorResponse, GetRecommendationOkResponse, GetRecommendationProps, GetRecommendationQueryQueryParams, } from './hooks/useGetRecommendationQuery';
120
+ export { getRecommendation, useGetRecommendationQuery } from './hooks/useGetRecommendationQuery';
111
121
  export type { GetResourceUsageErrorResponse, GetResourceUsageOkResponse, GetResourceUsageProps, } from './hooks/useGetResourceUsageQuery';
112
122
  export { getResourceUsage, useGetResourceUsageQuery } from './hooks/useGetResourceUsageQuery';
113
123
  export type { GetServiceResponseErrorResponse, GetServiceResponseOkResponse, GetServiceResponseProps, GetServiceResponseQueryPathParams, GetServiceResponseQueryQueryParams, } from './hooks/useGetServiceResponseQuery';
@@ -140,9 +150,11 @@ export type { ListChaosHubErrorResponse, ListChaosHubOkResponse, ListChaosHubPro
140
150
  export { listChaosHub, useListChaosHubQuery } from './hooks/useListChaosHubQuery';
141
151
  export type { ListChaosV2ExperimentErrorResponse, ListChaosV2ExperimentOkResponse, ListChaosV2ExperimentProps, ListChaosV2ExperimentQueryQueryParams, } from './hooks/useListChaosV2ExperimentQuery';
142
152
  export { listChaosV2Experiment, useListChaosV2ExperimentQuery, } from './hooks/useListChaosV2ExperimentQuery';
153
+ export type { ListEventWatcherErrorResponse, ListEventWatcherOkResponse, ListEventWatcherProps, ListEventWatcherQueryQueryParams, } from './hooks/useListEventWatcherQuery';
154
+ export { listEventWatcher, useListEventWatcherQuery } from './hooks/useListEventWatcherQuery';
143
155
  export type { ListExperimentsWithActiveInfrasMinimalNotificationErrorResponse, ListExperimentsWithActiveInfrasMinimalNotificationOkResponse, ListExperimentsWithActiveInfrasMinimalNotificationProps, ListExperimentsWithActiveInfrasMinimalNotificationQueryQueryParams, } from './hooks/useListExperimentsWithActiveInfrasMinimalNotificationQuery';
144
156
  export { listExperimentsWithActiveInfrasMinimalNotification, useListExperimentsWithActiveInfrasMinimalNotificationQuery, } from './hooks/useListExperimentsWithActiveInfrasMinimalNotificationQuery';
145
- export type { ListFaultErrorResponse, ListFaultOkResponse, ListFaultProps, ListFaultQueryPathParams, ListFaultQueryQueryParams, } from './hooks/useListFaultQuery';
157
+ export type { ListFaultErrorResponse, ListFaultOkResponse, ListFaultProps, ListFaultQueryQueryParams, } from './hooks/useListFaultQuery';
146
158
  export { listFault, useListFaultQuery } from './hooks/useListFaultQuery';
147
159
  export type { ListFaultTemplateErrorResponse, ListFaultTemplateOkResponse, ListFaultTemplateProps, ListFaultTemplateQueryQueryParams, } from './hooks/useListFaultTemplateQuery';
148
160
  export { listFaultTemplate, useListFaultTemplateQuery } from './hooks/useListFaultTemplateQuery';
@@ -166,6 +178,8 @@ export type { ListProbeTemplateErrorResponse, ListProbeTemplateOkResponse, ListP
166
178
  export { listProbeTemplate, useListProbeTemplateQuery } from './hooks/useListProbeTemplateQuery';
167
179
  export type { ListProbesErrorResponse, ListProbesOkResponse, ListProbesProps, ListProbesQueryQueryParams, } from './hooks/useListProbesQuery';
168
180
  export { listProbes, useListProbesQuery } from './hooks/useListProbesQuery';
181
+ export type { ListRecommendationsErrorResponse, ListRecommendationsOkResponse, ListRecommendationsProps, ListRecommendationsQueryQueryParams, ListRecommendationsRequestBody, } from './hooks/useListRecommendationsQuery';
182
+ export { listRecommendations, useListRecommendationsQuery, } from './hooks/useListRecommendationsQuery';
169
183
  export type { ListServiceErrorResponse, ListServiceOkResponse, ListServiceProps, ListServiceQueryPathParams, ListServiceQueryQueryParams, } from './hooks/useListServiceQuery';
170
184
  export { listService, useListServiceQuery } from './hooks/useListServiceQuery';
171
185
  export type { ListTargetNetworkMapsErrorResponse, ListTargetNetworkMapsOkResponse, ListTargetNetworkMapsProps, ListTargetNetworkMapsQueryQueryParams, ListTargetNetworkMapsRequestBody, } from './hooks/useListTargetNetworkMapsQuery';
@@ -186,6 +200,10 @@ export type { OnboardingConfirmExperimentRunErrorResponse, OnboardingConfirmExpe
186
200
  export { onboardingConfirmExperimentRun, useOnboardingConfirmExperimentRunMutation, } from './hooks/useOnboardingConfirmExperimentRunMutation';
187
201
  export type { OnboardingConfirmNetworkMapErrorResponse, OnboardingConfirmNetworkMapMutationPathParams, OnboardingConfirmNetworkMapMutationProps, OnboardingConfirmNetworkMapMutationQueryParams, OnboardingConfirmNetworkMapOkResponse, OnboardingConfirmNetworkMapProps, OnboardingConfirmNetworkMapRequestBody, } from './hooks/useOnboardingConfirmNetworkMapMutation';
188
202
  export { onboardingConfirmNetworkMap, useOnboardingConfirmNetworkMapMutation, } from './hooks/useOnboardingConfirmNetworkMapMutation';
203
+ export type { RecommendationEventErrorResponse, RecommendationEventMutationProps, RecommendationEventOkResponse, RecommendationEventProps, RecommendationEventRequestBody, } from './hooks/useRecommendationEventMutation';
204
+ export { recommendationEvent, useRecommendationEventMutation, } from './hooks/useRecommendationEventMutation';
205
+ export type { RegisterEventWatcherErrorResponse, RegisterEventWatcherMutationProps, RegisterEventWatcherMutationQueryParams, RegisterEventWatcherOkResponse, RegisterEventWatcherProps, RegisterEventWatcherRequestBody, } from './hooks/useRegisterEventWatcherMutation';
206
+ export { registerEventWatcher, useRegisterEventWatcherMutation, } from './hooks/useRegisterEventWatcherMutation';
189
207
  export type { RegisterInfraV2ErrorResponse, RegisterInfraV2MutationProps, RegisterInfraV2MutationQueryParams, RegisterInfraV2OkResponse, RegisterInfraV2Props, RegisterInfraV2RequestBody, } from './hooks/useRegisterInfraV2Mutation';
190
208
  export { registerInfraV2, useRegisterInfraV2Mutation } from './hooks/useRegisterInfraV2Mutation';
191
209
  export type { RetryExperimentCreationErrorResponse, RetryExperimentCreationMutationPathParams, RetryExperimentCreationMutationProps, RetryExperimentCreationMutationQueryParams, RetryExperimentCreationOkResponse, RetryExperimentCreationProps, RetryExperimentCreationRequestBody, } from './hooks/useRetryExperimentCreationMutation';
@@ -194,6 +212,8 @@ export type { RunChaosV2ExperimentErrorResponse, RunChaosV2ExperimentMutationPat
194
212
  export { runChaosV2Experiment, useRunChaosV2ExperimentMutation, } from './hooks/useRunChaosV2ExperimentMutation';
195
213
  export type { RunChaosV2InternalApiErrorResponse, RunChaosV2InternalApiMutationPathParams, RunChaosV2InternalApiMutationProps, RunChaosV2InternalApiMutationQueryParams, RunChaosV2InternalApiOkResponse, RunChaosV2InternalApiProps, RunChaosV2InternalApiRequestBody, } from './hooks/useRunChaosV2InternalApiMutation';
196
214
  export { runChaosV2InternalApi, useRunChaosV2InternalApiMutation, } from './hooks/useRunChaosV2InternalApiMutation';
215
+ export type { RunRecommendationErrorResponse, RunRecommendationMutationProps, RunRecommendationMutationQueryParams, RunRecommendationOkResponse, RunRecommendationProps, } from './hooks/useRunRecommendationMutation';
216
+ export { runRecommendation, useRunRecommendationMutation, } from './hooks/useRunRecommendationMutation';
197
217
  export type { SaveChaosV2ExperimentErrorResponse, SaveChaosV2ExperimentMutationProps, SaveChaosV2ExperimentMutationQueryParams, SaveChaosV2ExperimentOkResponse, SaveChaosV2ExperimentProps, SaveChaosV2ExperimentRequestBody, } from './hooks/useSaveChaosV2ExperimentMutation';
198
218
  export { saveChaosV2Experiment, useSaveChaosV2ExperimentMutation, } from './hooks/useSaveChaosV2ExperimentMutation';
199
219
  export type { StopChaosV2ExperimentErrorResponse, StopChaosV2ExperimentMutationPathParams, StopChaosV2ExperimentMutationProps, StopChaosV2ExperimentMutationQueryParams, StopChaosV2ExperimentOkResponse, StopChaosV2ExperimentProps, } from './hooks/useStopChaosV2ExperimentMutation';
@@ -228,6 +248,8 @@ export type { UpdateProbeErrorResponse, UpdateProbeMutationPathParams, UpdatePro
228
248
  export { updateProbe, useUpdateProbeMutation } from './hooks/useUpdateProbeMutation';
229
249
  export type { UpdateProbeTemplateErrorResponse, UpdateProbeTemplateMutationPathParams, UpdateProbeTemplateMutationProps, UpdateProbeTemplateMutationQueryParams, UpdateProbeTemplateOkResponse, UpdateProbeTemplateProps, UpdateProbeTemplateRequestBody, } from './hooks/useUpdateProbeTemplateMutation';
230
250
  export { updateProbeTemplate, useUpdateProbeTemplateMutation, } from './hooks/useUpdateProbeTemplateMutation';
251
+ export type { UpdateRecommendationStatusErrorResponse, UpdateRecommendationStatusMutationProps, UpdateRecommendationStatusMutationQueryParams, UpdateRecommendationStatusOkResponse, UpdateRecommendationStatusProps, } from './hooks/useUpdateRecommendationStatusMutation';
252
+ export { updateRecommendationStatus, useUpdateRecommendationStatusMutation, } from './hooks/useUpdateRecommendationStatusMutation';
231
253
  export type { ChaosfaulttemplateActionTemplateRequestBody } from './requestBodies/ChaosfaulttemplateActionTemplateRequestBody';
232
254
  export type { InfraV2ListKubernetesInfraV2RequestRequestBody } from './requestBodies/InfraV2ListKubernetesInfraV2RequestRequestBody';
233
255
  export type { TypesProbeRequestRequestBody } from './requestBodies/TypesProbeRequestRequestBody';
@@ -299,6 +321,9 @@ export type { ChaosfaulttemplateGetActionTemplateResponse } from './schemas/Chao
299
321
  export type { ChaosfaulttemplateGetFaultTemplateResponse } from './schemas/ChaosfaulttemplateGetFaultTemplateResponse';
300
322
  export type { ChaosfaulttemplateListActionTemplateResponse } from './schemas/ChaosfaulttemplateListActionTemplateResponse';
301
323
  export type { ChaosfaulttemplateListFaultTemplateResponse } from './schemas/ChaosfaulttemplateListFaultTemplateResponse';
324
+ export type { ChaoshubFaultCategoryCount } from './schemas/ChaoshubFaultCategoryCount';
325
+ export type { ChaoshubListFaultsResponse } from './schemas/ChaoshubListFaultsResponse';
326
+ export type { ChaoshubresourcesChaosHubResource } from './schemas/ChaoshubresourcesChaosHubResource';
302
327
  export type { Chaoshubv2ChaosHubResponse } from './schemas/Chaoshubv2ChaosHubResponse';
303
328
  export type { Chaoshubv2CreateHubRequest } from './schemas/Chaoshubv2CreateHubRequest';
304
329
  export type { Chaoshubv2GetHubResponse } from './schemas/Chaoshubv2GetHubResponse';
@@ -342,6 +367,14 @@ export type { DatabaseResourceList } from './schemas/DatabaseResourceList';
342
367
  export type { DatabaseResourceRequirements } from './schemas/DatabaseResourceRequirements';
343
368
  export type { DatabaseServiceCollection } from './schemas/DatabaseServiceCollection';
344
369
  export type { DatabaseServiceIdentity } from './schemas/DatabaseServiceIdentity';
370
+ export type { EventWatcherDeleteEventWatcherResponse } from './schemas/EventWatcherDeleteEventWatcherResponse';
371
+ export type { EventWatcherEventWatcherDetails } from './schemas/EventWatcherEventWatcherDetails';
372
+ export type { EventWatcherEventWatcherStatus } from './schemas/EventWatcherEventWatcherStatus';
373
+ export type { EventWatcherEventWatcherType } from './schemas/EventWatcherEventWatcherType';
374
+ export type { EventWatcherIdentifiers } from './schemas/EventWatcherIdentifiers';
375
+ export type { EventWatcherListEventWatchersResponse } from './schemas/EventWatcherListEventWatchersResponse';
376
+ export type { EventWatcherRegisterEventWatcherRequest } from './schemas/EventWatcherRegisterEventWatcherRequest';
377
+ export type { EventWatcherRegisterEventWatcherResponse } from './schemas/EventWatcherRegisterEventWatcherResponse';
345
378
  export type { ExperimentSaveChaosExperimentResponse } from './schemas/ExperimentSaveChaosExperimentResponse';
346
379
  export type { Gamedayrunv2ApprovalStatus } from './schemas/Gamedayrunv2ApprovalStatus';
347
380
  export type { Gamedayrunv2PrerequisiteStatus } from './schemas/Gamedayrunv2PrerequisiteStatus';
@@ -362,6 +395,11 @@ export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeGet } f
362
395
  export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeHeaders } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeHeaders';
363
396
  export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeIdentifier } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeIdentifier';
364
397
  export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbePost } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbePost';
398
+ export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode';
399
+ export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation';
400
+ export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendationTargetType } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendationTargetType';
401
+ export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationTarget } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationTarget';
402
+ export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationWorkload } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationWorkload';
365
403
  export type { GithubComHarnessHceSaasHceSdkCommonProbeV1Probe } from './schemas/GithubComHarnessHceSaasHceSdkCommonProbeV1Probe';
366
404
  export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeDatadogSyntheticsTestType } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeDatadogSyntheticsTestType';
367
405
  export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeGet } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeGet';
@@ -424,26 +462,17 @@ export type { K8sIoApimachineryPkgApisMetaV1ConditionStatus } from './schemas/K8
424
462
  export type { K8sinfraGetInfraTokenResponse } from './schemas/K8sinfraGetInfraTokenResponse';
425
463
  export type { K8sinfraUpdateEmissaryUrlRequest } from './schemas/K8sinfraUpdateEmissaryUrlRequest';
426
464
  export type { K8sinfraUpdateEmissaryUrlResponse } from './schemas/K8sinfraUpdateEmissaryUrlResponse';
427
- export type { ModelAnnotation } from './schemas/ModelAnnotation';
428
- export type { ModelChart } from './schemas/ModelChart';
429
465
  export type { ModelClusterType } from './schemas/ModelClusterType';
430
466
  export type { ModelConditionDetails } from './schemas/ModelConditionDetails';
431
467
  export type { ModelEventMetadata } from './schemas/ModelEventMetadata';
432
- export type { ModelExperiments } from './schemas/ModelExperiments';
433
- export type { ModelFaultList } from './schemas/ModelFaultList';
434
468
  export type { ModelInfraScope } from './schemas/ModelInfraScope';
435
469
  export type { ModelInfrastructure } from './schemas/ModelInfrastructure';
436
470
  export type { ModelInfrastructureType } from './schemas/ModelInfrastructureType';
437
471
  export type { ModelInstallationType } from './schemas/ModelInstallationType';
438
472
  export type { ModelKubernetesInfra } from './schemas/ModelKubernetesInfra';
439
- export type { ModelLink } from './schemas/ModelLink';
440
473
  export type { ModelListInfraRequest } from './schemas/ModelListInfraRequest';
441
474
  export type { ModelListInfraResponse } from './schemas/ModelListInfraResponse';
442
- export type { ModelMaintainer } from './schemas/ModelMaintainer';
443
- export type { ModelMetadata } from './schemas/ModelMetadata';
444
- export type { ModelPackageInformation } from './schemas/ModelPackageInformation';
445
475
  export type { ModelProbeMap } from './schemas/ModelProbeMap';
446
- export type { ModelProvider } from './schemas/ModelProvider';
447
476
  export type { ModelReRunChaosWorkflowResponse } from './schemas/ModelReRunChaosWorkflowResponse';
448
477
  export type { ModelRecentWorkflowRun } from './schemas/ModelRecentWorkflowRun';
449
478
  export type { ModelRecurrence } from './schemas/ModelRecurrence';
@@ -453,7 +482,6 @@ export type { ModelRuleDetails } from './schemas/ModelRuleDetails';
453
482
  export type { ModelSecurityGovernance } from './schemas/ModelSecurityGovernance';
454
483
  export type { ModelSecurityGovernanceNodeData } from './schemas/ModelSecurityGovernanceNodeData';
455
484
  export type { ModelSecurityGovernancePhase } from './schemas/ModelSecurityGovernancePhase';
456
- export type { ModelSpec } from './schemas/ModelSpec';
457
485
  export type { ModelTimeWindow } from './schemas/ModelTimeWindow';
458
486
  export type { ModelUpdateStatus } from './schemas/ModelUpdateStatus';
459
487
  export type { ModelUpgrade } from './schemas/ModelUpgrade';
@@ -513,6 +541,25 @@ export type { ProbeSyntheticsTest } from './schemas/ProbeSyntheticsTest';
513
541
  export type { ProbeSyntheticsTestTemplate } from './schemas/ProbeSyntheticsTestTemplate';
514
542
  export type { ProbeTlsConfig } from './schemas/ProbeTlsConfig';
515
543
  export type { ProbeTlsConfigTemplate } from './schemas/ProbeTlsConfigTemplate';
544
+ export type { RecommendationConfigScannerEvents } from './schemas/RecommendationConfigScannerEvents';
545
+ export type { RecommendationEventRequest } from './schemas/RecommendationEventRequest';
546
+ export type { RecommendationFailure } from './schemas/RecommendationFailure';
547
+ export type { RecommendationFaultFilters } from './schemas/RecommendationFaultFilters';
548
+ export type { RecommendationFaultPayload } from './schemas/RecommendationFaultPayload';
549
+ export type { RecommendationFixes } from './schemas/RecommendationFixes';
550
+ export type { RecommendationIdentifiers } from './schemas/RecommendationIdentifiers';
551
+ export type { RecommendationProbeFilters } from './schemas/RecommendationProbeFilters';
552
+ export type { RecommendationProbePayload } from './schemas/RecommendationProbePayload';
553
+ export type { RecommendationRecommendationCategory } from './schemas/RecommendationRecommendationCategory';
554
+ export type { RecommendationRecommendationSource } from './schemas/RecommendationRecommendationSource';
555
+ export type { RecommendationRecommendationStatus } from './schemas/RecommendationRecommendationStatus';
556
+ export type { RecommendationRecommendationType } from './schemas/RecommendationRecommendationType';
557
+ export type { RecommendationSuggestions } from './schemas/RecommendationSuggestions';
558
+ export type { RecommendationsCreateActionResponse } from './schemas/RecommendationsCreateActionResponse';
559
+ export type { RecommendationsFilters } from './schemas/RecommendationsFilters';
560
+ export type { RecommendationsListRecommendationsRequest } from './schemas/RecommendationsListRecommendationsRequest';
561
+ export type { RecommendationsListRecommendationsResponse } from './schemas/RecommendationsListRecommendationsResponse';
562
+ export type { RecommendationsRunActionResponse } from './schemas/RecommendationsRunActionResponse';
516
563
  export type { ResourceQuantity } from './schemas/ResourceQuantity';
517
564
  export type { SecurityGovernanceApplicationSpec } from './schemas/SecurityGovernanceApplicationSpec';
518
565
  export type { SecurityGovernanceChaosServiceAccountSpec } from './schemas/SecurityGovernanceChaosServiceAccountSpec';
@@ -547,7 +594,6 @@ export type { TemplateVariableMinimum } from './schemas/TemplateVariableMinimum'
547
594
  export type { TemplateVariableType } from './schemas/TemplateVariableType';
548
595
  export type { TypesActionItem } from './schemas/TypesActionItem';
549
596
  export type { TypesApplication } from './schemas/TypesApplication';
550
- export type { TypesCleanupPolicy } from './schemas/TypesCleanupPolicy';
551
597
  export type { TypesConfigMap } from './schemas/TypesConfigMap';
552
598
  export type { TypesCreateGamedayRequest } from './schemas/TypesCreateGamedayRequest';
553
599
  export type { TypesCreateGamedayResponse } from './schemas/TypesCreateGamedayResponse';
@@ -11,15 +11,18 @@ export { createGamedayV2, useCreateGamedayV2Mutation } from './hooks/useCreateGa
11
11
  export { createInputSet, useCreateInputSetMutation } from './hooks/useCreateInputSetMutation';
12
12
  export { createProbe, useCreateProbeMutation } from './hooks/useCreateProbeMutation';
13
13
  export { createProbeTemplate, useCreateProbeTemplateMutation, } from './hooks/useCreateProbeTemplateMutation';
14
+ export { createRecommendation, useCreateRecommendationMutation, } from './hooks/useCreateRecommendationMutation';
14
15
  export { createV2Onboarding, useCreateV2OnboardingMutation, } from './hooks/useCreateV2OnboardingMutation';
15
16
  export { deleteAction, useDeleteActionMutation } from './hooks/useDeleteActionMutation';
16
17
  export { deleteActionTemplate, useDeleteActionTemplateMutation, } from './hooks/useDeleteActionTemplateMutation';
17
18
  export { deleteChaosV2Experiment, useDeleteChaosV2ExperimentMutation, } from './hooks/useDeleteChaosV2ExperimentMutation';
19
+ export { deleteEventWatcher, useDeleteEventWatcherMutation, } from './hooks/useDeleteEventWatcherMutation';
18
20
  export { deleteGamedayV2, useDeleteGamedayV2Mutation } from './hooks/useDeleteGamedayV2Mutation';
19
21
  export { deleteInfraV2, useDeleteInfraV2Mutation } from './hooks/useDeleteInfraV2Mutation';
20
22
  export { deleteInputSet, useDeleteInputSetMutation } from './hooks/useDeleteInputSetMutation';
21
23
  export { deleteProbe, useDeleteProbeMutation } from './hooks/useDeleteProbeMutation';
22
24
  export { deleteProbeTemplate, useDeleteProbeTemplateMutation, } from './hooks/useDeleteProbeTemplateMutation';
25
+ export { deleteRecommendation, useDeleteRecommendationMutation, } from './hooks/useDeleteRecommendationMutation';
23
26
  export { deleteTargetNetworkMap, useDeleteTargetNetworkMapMutation, } from './hooks/useDeleteTargetNetworkMapMutation';
24
27
  export { enableProbe, useEnableProbeMutation } from './hooks/useEnableProbeMutation';
25
28
  export { getAccountServiceDetails, useGetAccountServiceDetailsQuery, } from './hooks/useGetAccountServiceDetailsQuery';
@@ -36,6 +39,7 @@ export { getChaosV2ExperimentRunInternalApi, useGetChaosV2ExperimentRunInternalA
36
39
  export { getChaosV2ExperimentRun, useGetChaosV2ExperimentRunQuery, } from './hooks/useGetChaosV2ExperimentRunQuery';
37
40
  export { getChaosV2ExperimentVariables, useGetChaosV2ExperimentVariablesQuery, } from './hooks/useGetChaosV2ExperimentVariablesQuery';
38
41
  export { getConnectorForInfra, useGetConnectorForInfraQuery, } from './hooks/useGetConnectorForInfraQuery';
42
+ export { getEventWatcher, useGetEventWatcherQuery } from './hooks/useGetEventWatcherQuery';
39
43
  export { getExperimentHelperImageVersion, useGetExperimentHelperImageVersionQuery, } from './hooks/useGetExperimentHelperImageVersionQuery';
40
44
  export { getExperimentRunTimelineView, useGetExperimentRunTimelineViewQuery, } from './hooks/useGetExperimentRunTimelineViewQuery';
41
45
  export { getExperimentRunsOverviewStats, useGetExperimentRunsOverviewStatsQuery, } from './hooks/useGetExperimentRunsOverviewStatsQuery';
@@ -53,6 +57,7 @@ export { getOverallServiceUsageStats, useGetOverallServiceUsageStatsQuery, } fro
53
57
  export { getProbeManifest, useGetProbeManifestQuery } from './hooks/useGetProbeManifestQuery';
54
58
  export { getProbe, useGetProbeQuery } from './hooks/useGetProbeQuery';
55
59
  export { getProbeTemplate, useGetProbeTemplateQuery } from './hooks/useGetProbeTemplateQuery';
60
+ export { getRecommendation, useGetRecommendationQuery } from './hooks/useGetRecommendationQuery';
56
61
  export { getResourceUsage, useGetResourceUsageQuery } from './hooks/useGetResourceUsageQuery';
57
62
  export { getServiceResponse, useGetServiceResponseQuery } from './hooks/useGetServiceResponseQuery';
58
63
  export { getServiceUsageReport, useGetServiceUsageReportQuery, } from './hooks/useGetServiceUsageReportQuery';
@@ -69,6 +74,7 @@ export { listApplication, useListApplicationQuery } from './hooks/useListApplica
69
74
  export { listChaosEnabledInfraV2, useListChaosEnabledInfraV2Query, } from './hooks/useListChaosEnabledInfraV2Query';
70
75
  export { listChaosHub, useListChaosHubQuery } from './hooks/useListChaosHubQuery';
71
76
  export { listChaosV2Experiment, useListChaosV2ExperimentQuery, } from './hooks/useListChaosV2ExperimentQuery';
77
+ export { listEventWatcher, useListEventWatcherQuery } from './hooks/useListEventWatcherQuery';
72
78
  export { listExperimentsWithActiveInfrasMinimalNotification, useListExperimentsWithActiveInfrasMinimalNotificationQuery, } from './hooks/useListExperimentsWithActiveInfrasMinimalNotificationQuery';
73
79
  export { listFault, useListFaultQuery } from './hooks/useListFaultQuery';
74
80
  export { listFaultTemplate, useListFaultTemplateQuery } from './hooks/useListFaultTemplateQuery';
@@ -82,6 +88,7 @@ export { listInputSet, useListInputSetQuery } from './hooks/useListInputSetQuery
82
88
  export { listK8sInfrasV2, useListK8sInfrasV2Mutation } from './hooks/useListK8sInfrasV2Mutation';
83
89
  export { listProbeTemplate, useListProbeTemplateQuery } from './hooks/useListProbeTemplateQuery';
84
90
  export { listProbes, useListProbesQuery } from './hooks/useListProbesQuery';
91
+ export { listRecommendations, useListRecommendationsQuery, } from './hooks/useListRecommendationsQuery';
85
92
  export { listService, useListServiceQuery } from './hooks/useListServiceQuery';
86
93
  export { listTargetNetworkMaps, useListTargetNetworkMapsQuery, } from './hooks/useListTargetNetworkMapsQuery';
87
94
  export { listV2Onboarding, useListV2OnboardingQuery } from './hooks/useListV2OnboardingQuery';
@@ -92,10 +99,13 @@ export { onboardingConfirmDiscovery, useOnboardingConfirmDiscoveryMutation, } fr
92
99
  export { onboardingConfirmExperimentCreation, useOnboardingConfirmExperimentCreationMutation, } from './hooks/useOnboardingConfirmExperimentCreationMutation';
93
100
  export { onboardingConfirmExperimentRun, useOnboardingConfirmExperimentRunMutation, } from './hooks/useOnboardingConfirmExperimentRunMutation';
94
101
  export { onboardingConfirmNetworkMap, useOnboardingConfirmNetworkMapMutation, } from './hooks/useOnboardingConfirmNetworkMapMutation';
102
+ export { recommendationEvent, useRecommendationEventMutation, } from './hooks/useRecommendationEventMutation';
103
+ export { registerEventWatcher, useRegisterEventWatcherMutation, } from './hooks/useRegisterEventWatcherMutation';
95
104
  export { registerInfraV2, useRegisterInfraV2Mutation } from './hooks/useRegisterInfraV2Mutation';
96
105
  export { retryExperimentCreation, useRetryExperimentCreationMutation, } from './hooks/useRetryExperimentCreationMutation';
97
106
  export { runChaosV2Experiment, useRunChaosV2ExperimentMutation, } from './hooks/useRunChaosV2ExperimentMutation';
98
107
  export { runChaosV2InternalApi, useRunChaosV2InternalApiMutation, } from './hooks/useRunChaosV2InternalApiMutation';
108
+ export { runRecommendation, useRunRecommendationMutation, } from './hooks/useRunRecommendationMutation';
99
109
  export { saveChaosV2Experiment, useSaveChaosV2ExperimentMutation, } from './hooks/useSaveChaosV2ExperimentMutation';
100
110
  export { stopChaosV2Experiment, useStopChaosV2ExperimentMutation, } from './hooks/useStopChaosV2ExperimentMutation';
101
111
  export { stopOnboardingExperiments, useStopOnboardingExperimentsMutation, } from './hooks/useStopOnboardingExperimentsMutation';
@@ -113,3 +123,4 @@ export { updateInputSet, useUpdateInputSetMutation } from './hooks/useUpdateInpu
113
123
  export { updateNote, useUpdateNoteMutation } from './hooks/useUpdateNoteMutation';
114
124
  export { updateProbe, useUpdateProbeMutation } from './hooks/useUpdateProbeMutation';
115
125
  export { updateProbeTemplate, useUpdateProbeTemplateMutation, } from './hooks/useUpdateProbeTemplateMutation';
126
+ export { updateRecommendationStatus, useUpdateRecommendationStatusMutation, } from './hooks/useUpdateRecommendationStatusMutation';
@@ -4,6 +4,7 @@ import type { ActionsInfrastructureType } from '../schemas/ActionsInfrastructure
4
4
  import type { ActionsRecentExecutions } from '../schemas/ActionsRecentExecutions';
5
5
  import type { ActionActionTemplateRunProperties } from '../schemas/ActionActionTemplateRunProperties';
6
6
  import type { ActionsActionType } from '../schemas/ActionsActionType';
7
+ import type { TemplateVariable } from '../schemas/TemplateVariable';
7
8
  export interface ActionsActionResponse {
8
9
  accountID: string;
9
10
  actionProperties?: ActionActionTemplateProperties;
@@ -25,4 +26,5 @@ export interface ActionsActionResponse {
25
26
  type?: ActionsActionType;
26
27
  updatedAt?: number;
27
28
  updatedBy?: GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails;
29
+ variables?: TemplateVariable[];
28
30
  }
@@ -1,4 +1,5 @@
1
1
  export interface ChaosExperimentRunAnnotation {
2
+ mode?: string;
2
3
  name?: string;
3
4
  probeID?: string;
4
5
  revisionID?: string;
@@ -0,0 +1,4 @@
1
+ export interface ChaoshubFaultCategoryCount {
2
+ category?: string;
3
+ count?: number;
4
+ }
@@ -0,0 +1,8 @@
1
+ import type { ChaoshubFaultCategoryCount } from '../schemas/ChaoshubFaultCategoryCount';
2
+ import type { ChaoshubresourcesChaosHubResource } from '../schemas/ChaoshubresourcesChaosHubResource';
3
+ import type { GithubComHarnessHceSaasGraphqlServerApiPagination } from '../schemas/GithubComHarnessHceSaasGraphqlServerApiPagination';
4
+ export interface ChaoshubListFaultsResponse {
5
+ categoryCount?: ChaoshubFaultCategoryCount[];
6
+ faults?: ChaoshubresourcesChaosHubResource[];
7
+ pagination?: GithubComHarnessHceSaasGraphqlServerApiPagination;
8
+ }
@@ -0,0 +1,97 @@
1
+ export interface ChaoshubresourcesChaosHubResource {
2
+ accountID: string;
3
+ /**
4
+ * Category of the fault (Kubernetes, KubernetesV2, Linux, Windows, PCF etc)
5
+ */
6
+ category?: string;
7
+ /**
8
+ * ChaosType
9
+ */
10
+ chaosType?: string;
11
+ /**
12
+ * chartserviceversion yml in encoded form (chartserviceversion.yaml)
13
+ */
14
+ chartServiceVersion?: string;
15
+ createdAt?: number;
16
+ createdBy?: string;
17
+ /**
18
+ * Description of the resource
19
+ */
20
+ description?: string;
21
+ /**
22
+ * Display name of the resource
23
+ */
24
+ displayName?: string;
25
+ /**
26
+ * ChaosEngine yml in encoded form (engine.yaml)
27
+ */
28
+ engine?: string;
29
+ /**
30
+ * experiment yml in encoded form (experiment.yaml)
31
+ */
32
+ experiment?: string;
33
+ /**
34
+ * experiment-v2 yml in encoded form (experiment-v2.yaml)
35
+ */
36
+ experimentV2?: string;
37
+ /**
38
+ * Fault yml in encoded form (fault.yml)
39
+ */
40
+ fault?: string;
41
+ /**
42
+ * ID of the chaos hub
43
+ */
44
+ hubID?: string;
45
+ /**
46
+ * Mongo ID (primary key)
47
+ */
48
+ id?: string;
49
+ /**
50
+ * TODO: identity changes move to chaosHub
51
+ * Unique identifier (human-readable) immutable
52
+ * Initially it will be same as name
53
+ * Should be unique at hub level
54
+ */
55
+ identity?: string;
56
+ /**
57
+ * Infras represents supported infrastructures
58
+ */
59
+ infras?: string[];
60
+ /**
61
+ * IsDefaultHub represents if it is a default hub
62
+ */
63
+ isDefaultHub?: boolean;
64
+ isRemoved: boolean;
65
+ /**
66
+ * K8sFault yml in encoded form (k8s-fault.yaml)
67
+ */
68
+ k8SFault?: string;
69
+ /**
70
+ * Keyword of the resource (kubernetes, VMWare etc)
71
+ */
72
+ keywords?: string[];
73
+ /**
74
+ * Kind of the resource
75
+ */
76
+ kind?: string;
77
+ /**
78
+ * name of the resource
79
+ */
80
+ name?: string;
81
+ orgID?: string;
82
+ /**
83
+ * Plan
84
+ */
85
+ plan?: string[];
86
+ /**
87
+ * Platforms supported (GKE, Minikube, EKS, AKS etc)
88
+ */
89
+ platforms?: string[];
90
+ projectID?: string;
91
+ /**
92
+ * Type: fault or experiment or probes
93
+ */
94
+ resourceType?: string;
95
+ updatedAt?: number;
96
+ updatedBy?: string;
97
+ }
@@ -0,0 +1,4 @@
1
+ export interface EventWatcherDeleteEventWatcherResponse {
2
+ identity?: string;
3
+ message?: string;
4
+ }
@@ -0,0 +1,52 @@
1
+ import type { InfraV2UserDetails } from '../schemas/InfraV2UserDetails';
2
+ import type { InfraV2Env } from '../schemas/InfraV2Env';
3
+ import type { EventWatcherEventWatcherType } from '../schemas/EventWatcherEventWatcherType';
4
+ import type { EventWatcherIdentifiers } from '../schemas/EventWatcherIdentifiers';
5
+ import type { ImageRegistryImageRegistryV2 } from '../schemas/ImageRegistryImageRegistryV2';
6
+ import type { InfraV2MtlsConfiguration } from '../schemas/InfraV2MtlsConfiguration';
7
+ import type { InfraV2ProxyConfiguration } from '../schemas/InfraV2ProxyConfiguration';
8
+ import type { EventWatcherEventWatcherStatus } from '../schemas/EventWatcherEventWatcherStatus';
9
+ import type { V1Toleration } from '../schemas/V1Toleration';
10
+ import type { V1VolumeMount } from '../schemas/V1VolumeMount';
11
+ import type { InfraV2Volumes } from '../schemas/InfraV2Volumes';
12
+ export interface EventWatcherEventWatcherDetails {
13
+ annotation?: {
14
+ [key: string]: string;
15
+ };
16
+ containers?: string;
17
+ createdAt?: string;
18
+ createdBy?: InfraV2UserDetails;
19
+ deploymentType?: string;
20
+ description?: string;
21
+ env?: InfraV2Env[];
22
+ environmentID?: string;
23
+ eventWatcherID?: string;
24
+ eventWatcherNamespace?: string;
25
+ eventWatcherType?: EventWatcherEventWatcherType;
26
+ identifier?: EventWatcherIdentifiers;
27
+ identity?: string;
28
+ imageRegistry?: ImageRegistryImageRegistryV2;
29
+ insecureSkipVerify?: boolean;
30
+ k8sConnectorID?: string;
31
+ label?: {
32
+ [key: string]: string;
33
+ };
34
+ lastHeartbeat?: number;
35
+ mtls?: InfraV2MtlsConfiguration;
36
+ name?: string;
37
+ nodeSelector?: {
38
+ [key: string]: string;
39
+ };
40
+ proxy?: InfraV2ProxyConfiguration;
41
+ runAsGroup?: number;
42
+ runAsUser?: number;
43
+ serviceAccount?: string;
44
+ status?: EventWatcherEventWatcherStatus;
45
+ tags?: string[];
46
+ tolerations?: V1Toleration[];
47
+ updatedAt?: string;
48
+ updatedBy?: InfraV2UserDetails;
49
+ version?: string;
50
+ volumeMounts?: V1VolumeMount[];
51
+ volumes?: InfraV2Volumes[];
52
+ }
@@ -0,0 +1 @@
1
+ export type EventWatcherEventWatcherStatus = 'ACTIVE' | 'INACTIVE' | 'PENDING';
@@ -0,0 +1 @@
1
+ export type EventWatcherEventWatcherType = 'K8sWatcher';
@@ -0,0 +1,5 @@
1
+ export interface EventWatcherIdentifiers {
2
+ accountID?: string;
3
+ organizationID?: string;
4
+ projectID?: string;
5
+ }
@@ -0,0 +1,7 @@
1
+ import type { EventWatcherEventWatcherDetails } from '../schemas/EventWatcherEventWatcherDetails';
2
+ import type { InfraV2Pagination } from '../schemas/InfraV2Pagination';
3
+ export interface EventWatcherListEventWatchersResponse {
4
+ eventWatchers?: EventWatcherEventWatcherDetails[];
5
+ pagination?: InfraV2Pagination;
6
+ totalNoOfEventWatchers?: number;
7
+ }
@@ -0,0 +1,42 @@
1
+ import type { InfraV2Env } from '../schemas/InfraV2Env';
2
+ import type { EventWatcherEventWatcherType } from '../schemas/EventWatcherEventWatcherType';
3
+ import type { EventWatcherIdentifiers } from '../schemas/EventWatcherIdentifiers';
4
+ import type { ImageRegistryImageRegistryV2 } from '../schemas/ImageRegistryImageRegistryV2';
5
+ import type { InfraV2MtlsConfiguration } from '../schemas/InfraV2MtlsConfiguration';
6
+ import type { InfraV2ProxyConfiguration } from '../schemas/InfraV2ProxyConfiguration';
7
+ import type { V1Toleration } from '../schemas/V1Toleration';
8
+ import type { V1VolumeMount } from '../schemas/V1VolumeMount';
9
+ import type { InfraV2Volumes } from '../schemas/InfraV2Volumes';
10
+ export interface EventWatcherRegisterEventWatcherRequest {
11
+ annotation?: {
12
+ [key: string]: string;
13
+ };
14
+ containers?: string;
15
+ description?: string;
16
+ env?: InfraV2Env[];
17
+ environmentID?: string;
18
+ eventWatcherID?: string;
19
+ eventWatcherNamespace?: string;
20
+ eventWatcherType?: EventWatcherEventWatcherType;
21
+ identifier?: EventWatcherIdentifiers;
22
+ identity?: string;
23
+ imageRegistry?: ImageRegistryImageRegistryV2;
24
+ insecureSkipVerify?: boolean;
25
+ k8sConnectorID?: string;
26
+ label?: {
27
+ [key: string]: string;
28
+ };
29
+ mtls?: InfraV2MtlsConfiguration;
30
+ name?: string;
31
+ nodeSelector?: {
32
+ [key: string]: string;
33
+ };
34
+ proxy?: InfraV2ProxyConfiguration;
35
+ runAsGroup?: number;
36
+ runAsUser?: number;
37
+ serviceAccount?: string;
38
+ tags?: string[];
39
+ tolerations?: V1Toleration[];
40
+ volumeMounts?: V1VolumeMount[];
41
+ volumes?: InfraV2Volumes[];
42
+ }
@@ -0,0 +1,5 @@
1
+ export interface EventWatcherRegisterEventWatcherResponse {
2
+ identity?: string;
3
+ name?: string;
4
+ token?: string;
5
+ }
@@ -2,6 +2,7 @@ import type { ActionActionTemplateProperties } from '../schemas/ActionActionTemp
2
2
  import type { ActionsInfrastructureType } from '../schemas/ActionsInfrastructureType';
3
3
  import type { ActionActionTemplateRunProperties } from '../schemas/ActionActionTemplateRunProperties';
4
4
  import type { ActionsActionType } from '../schemas/ActionsActionType';
5
+ import type { TemplateVariable } from '../schemas/TemplateVariable';
5
6
  export interface GithubComHarnessHceSaasGraphqlServerPkgActionsAction {
6
7
  actionProperties?: ActionActionTemplateProperties;
7
8
  actionsTemplateRef?: string;
@@ -13,4 +14,5 @@ export interface GithubComHarnessHceSaasGraphqlServerPkgActionsAction {
13
14
  runProperties?: ActionActionTemplateRunProperties;
14
15
  tags?: string[];
15
16
  type?: ActionsActionType;
17
+ variables?: TemplateVariable[];
16
18
  }
@@ -3,6 +3,7 @@ import type { ActionsInfrastructureType } from '../schemas/ActionsInfrastructure
3
3
  import type { ActionsRecentExecutions } from '../schemas/ActionsRecentExecutions';
4
4
  import type { ActionActionTemplateRunProperties } from '../schemas/ActionActionTemplateRunProperties';
5
5
  import type { ActionsActionType } from '../schemas/ActionsActionType';
6
+ import type { TemplateVariable } from '../schemas/TemplateVariable';
6
7
  export interface GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbActionsAction {
7
8
  accountID: string;
8
9
  actionProperties?: ActionActionTemplateProperties;
@@ -19,4 +20,5 @@ export interface GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbActionsAc
19
20
  runProperties?: ActionActionTemplateRunProperties;
20
21
  tags?: string[];
21
22
  type?: ActionsActionType;
23
+ variables?: TemplateVariable[];
22
24
  }
@@ -0,0 +1,4 @@
1
+ export interface GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationNode {
2
+ labels?: string;
3
+ name?: string;
4
+ }
@@ -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,26 @@
1
+ import type { RecommendationFaultFilters } from '../schemas/RecommendationFaultFilters';
2
+ import type { RecommendationProbeFilters } from '../schemas/RecommendationProbeFilters';
3
+ import type { RecommendationRecommendationCategory } from '../schemas/RecommendationRecommendationCategory';
4
+ import type { RecommendationRecommendationSource } from '../schemas/RecommendationRecommendationSource';
5
+ import type { RecommendationSuggestions } from '../schemas/RecommendationSuggestions';
6
+ export interface GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbRecommendationRecommendation {
7
+ accountID: string;
8
+ environmentID?: string;
9
+ eventIdentifier?: string;
10
+ experimentID?: string;
11
+ experimentName?: string;
12
+ faultFilters?: RecommendationFaultFilters;
13
+ infraID?: string;
14
+ infraName?: string;
15
+ infraNamespace?: string;
16
+ infraType?: string;
17
+ isRemoved?: boolean;
18
+ orgID?: string;
19
+ probeFilters?: RecommendationProbeFilters;
20
+ projectID?: string;
21
+ recommendationCategory?: RecommendationRecommendationCategory;
22
+ recommendationID?: string;
23
+ source?: RecommendationRecommendationSource;
24
+ suggestions?: RecommendationSuggestions[];
25
+ tags?: string[];
26
+ }