@harnessio/react-chaos-manager-client 1.20.0 → 1.21.1-beta.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 (119) hide show
  1. package/dist/chaos-manager/src/services/hooks/useCompareExperimentTemplateRevisionsQuery.d.ts +31 -0
  2. package/dist/chaos-manager/src/services/hooks/useCompareExperimentTemplateRevisionsQuery.js +14 -0
  3. package/dist/chaos-manager/src/services/hooks/useCreateExperimentFromTemplateMutation.d.ts +34 -0
  4. package/dist/chaos-manager/src/services/hooks/useCreateExperimentFromTemplateMutation.js +14 -0
  5. package/dist/chaos-manager/src/services/hooks/useCreateExperimentTemplateMutation.d.ts +30 -0
  6. package/dist/chaos-manager/src/services/hooks/useCreateExperimentTemplateMutation.js +14 -0
  7. package/dist/chaos-manager/src/services/hooks/useDeleteExperimentTemplateMutation.d.ts +30 -0
  8. package/dist/chaos-manager/src/services/hooks/useDeleteExperimentTemplateMutation.js +14 -0
  9. package/dist/chaos-manager/src/services/hooks/useGetExperimentTemplateQuery.d.ts +30 -0
  10. package/dist/chaos-manager/src/services/hooks/useGetExperimentTemplateQuery.js +14 -0
  11. package/dist/chaos-manager/src/services/hooks/useGetExperimentTemplateRevisionsQuery.d.ts +43 -0
  12. package/dist/chaos-manager/src/services/hooks/useGetExperimentTemplateRevisionsQuery.js +14 -0
  13. package/dist/chaos-manager/src/services/hooks/useGetExperimentTemplateVariablesQuery.d.ts +30 -0
  14. package/dist/chaos-manager/src/services/hooks/useGetExperimentTemplateVariablesQuery.js +14 -0
  15. package/dist/chaos-manager/src/services/hooks/useGetExperimentTemplateYamlQuery.d.ts +30 -0
  16. package/dist/chaos-manager/src/services/hooks/useGetExperimentTemplateYamlQuery.js +14 -0
  17. package/dist/chaos-manager/src/services/hooks/useListExperimentTemplateQuery.d.ts +40 -0
  18. package/dist/chaos-manager/src/services/hooks/useListExperimentTemplateQuery.js +14 -0
  19. package/dist/chaos-manager/src/services/hooks/useListTargetNetworkMapsQuery.d.ts +4 -0
  20. package/dist/chaos-manager/src/services/hooks/useUpdateExperimentTemplateMutation.d.ts +33 -0
  21. package/dist/chaos-manager/src/services/hooks/useUpdateExperimentTemplateMutation.js +14 -0
  22. package/dist/chaos-manager/src/services/hooks/useVerifyProbeMutation.d.ts +29 -0
  23. package/dist/chaos-manager/src/services/hooks/useVerifyProbeMutation.js +14 -0
  24. package/dist/chaos-manager/src/services/index.d.ts +53 -3
  25. package/dist/chaos-manager/src/services/index.js +11 -0
  26. package/dist/chaos-manager/src/services/schemas/ActionsIdentifiers.d.ts +5 -0
  27. package/dist/chaos-manager/src/services/schemas/ActionsImportActionTemplateRequest.d.ts +3 -3
  28. package/dist/chaos-manager/src/services/schemas/ChaosactiontemplateChaosActionTemplate.d.ts +4 -0
  29. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateChaosExperimentTemplate.d.ts +28 -0
  30. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateCompareRevisions.d.ts +5 -0
  31. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateCreateExperimentFromTemplateRequest.d.ts +6 -0
  32. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateCreateExperimentFromTemplateRequest.js +4 -0
  33. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateCreateExperimentTemplateRequest.d.ts +3 -0
  34. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateCreateExperimentTemplateRequest.js +4 -0
  35. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateCreateExperimentTemplateResponse.d.ts +14 -0
  36. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateCreateExperimentTemplateResponse.js +1 -0
  37. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateExperimentTemplateVariables.d.ts +7 -0
  38. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateExperimentTemplateVariables.js +1 -0
  39. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateExperimentTemplateYaml.d.ts +4 -0
  40. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateExperimentTemplateYaml.js +4 -0
  41. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateGetExperimentTemplateResponse.d.ts +14 -0
  42. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateGetExperimentTemplateResponse.js +1 -0
  43. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateListExperimentTemplateResponse.d.ts +7 -0
  44. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateListExperimentTemplateResponse.js +1 -0
  45. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateUpdateExperimentTemplateRequest.d.ts +3 -0
  46. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateUpdateExperimentTemplateRequest.js +4 -0
  47. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateUpdateExperimentTemplateResponse.d.ts +14 -0
  48. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateUpdateExperimentTemplateResponse.js +1 -0
  49. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateVariable.d.ts +5 -0
  50. package/dist/chaos-manager/src/services/schemas/ChaosexperimenttemplateVariable.js +1 -0
  51. package/dist/chaos-manager/src/services/schemas/ChaosfaultChaosFault.d.ts +1 -1
  52. package/dist/chaos-manager/src/services/schemas/ChaosfaultCreateFaultRequest.d.ts +4 -2
  53. package/dist/chaos-manager/src/services/schemas/ChaosfaultCreateFaultResponse.d.ts +4 -2
  54. package/dist/chaos-manager/src/services/schemas/ChaosfaultGetFaultResponse.d.ts +4 -2
  55. package/dist/chaos-manager/src/services/schemas/ChaosfaultUpdateFaultRequest.d.ts +4 -2
  56. package/dist/chaos-manager/src/services/schemas/ChaosfaultUpdateFaultResponse.d.ts +4 -2
  57. package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateActionTemplate.d.ts +2 -0
  58. package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateChaosFaultTemplate.d.ts +4 -0
  59. package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateCreateFaultTemplateRequest.d.ts +4 -2
  60. package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateCreateFaultTemplateResponse.d.ts +4 -2
  61. package/dist/chaos-manager/src/services/schemas/ChaosfaulttemplateUpdateFaultTemplateResponse.d.ts +4 -2
  62. package/dist/chaos-manager/src/services/schemas/ChaosprobetemplateProbeTemplate.d.ts +2 -0
  63. package/dist/chaos-manager/src/services/schemas/ExperimentCleanupPolicy.d.ts +1 -0
  64. package/dist/chaos-manager/src/services/schemas/ExperimentCleanupPolicy.js +4 -0
  65. package/dist/chaos-manager/src/services/schemas/ExperimentProbeRef.d.ts +4 -0
  66. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateAction.d.ts +10 -0
  67. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateAction.js +1 -0
  68. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateFault.d.ts +9 -0
  69. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateFault.js +1 -0
  70. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateProbe.d.ts +14 -0
  71. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateProbe.js +1 -0
  72. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateProbeConditions.d.ts +3 -0
  73. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateProbeConditions.js +4 -0
  74. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateSpec.d.ts +17 -0
  75. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateSpec.js +1 -0
  76. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateStatusCheckTimeout.d.ts +4 -0
  77. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateStatusCheckTimeout.js +4 -0
  78. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateVertex.d.ts +6 -0
  79. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateVertex.js +1 -0
  80. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateVertexChild.d.ts +6 -0
  81. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateVertexChild.js +1 -0
  82. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateVertexResource.d.ts +3 -0
  83. package/dist/chaos-manager/src/services/schemas/ExperimenttemplateVertexResource.js +4 -0
  84. package/dist/chaos-manager/src/services/schemas/FaulttemplateChaosKubernetesSpec.d.ts +2 -0
  85. package/dist/chaos-manager/src/services/schemas/FaulttemplateFaultTemplate.d.ts +4 -2
  86. package/dist/chaos-manager/src/services/schemas/FaulttemplateStatusCheckTimeout.d.ts +4 -0
  87. package/dist/chaos-manager/src/services/schemas/FaulttemplateStatusCheckTimeout.js +4 -0
  88. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbChaosprobetemplateChaosProbeTemplate.d.ts +4 -0
  89. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeNewrelicMetric.d.ts +4 -0
  90. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeNewrelicMetric.js +4 -0
  91. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeNewrelicProbeInputs.d.ts +5 -0
  92. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeNewrelicProbeInputs.js +1 -0
  93. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasHceSdkCommonProbeV1Probe.d.ts +4 -0
  94. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeNewrelicMetric.d.ts +4 -0
  95. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeNewrelicMetric.js +4 -0
  96. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeNewrelicProbeInputs.d.ts +5 -0
  97. package/dist/chaos-manager/src/services/schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeNewrelicProbeInputs.js +1 -0
  98. package/dist/chaos-manager/src/services/schemas/ProbeApmProbe.d.ts +2 -0
  99. package/dist/chaos-manager/src/services/schemas/ProbeApmProbeTemplate.d.ts +2 -2
  100. package/dist/chaos-manager/src/services/schemas/ResourceQuantity.d.ts +1 -1
  101. package/dist/chaos-manager/src/services/schemas/SecurityGovernanceAccessControl.d.ts +1 -0
  102. package/dist/chaos-manager/src/services/schemas/SecurityGovernanceAccessControl.js +4 -0
  103. package/dist/chaos-manager/src/services/schemas/SecurityGovernanceK8sSpec.d.ts +2 -0
  104. package/dist/chaos-manager/src/services/schemas/TemplateVariable.d.ts +2 -2
  105. package/dist/chaos-manager/src/services/schemas/TemplateVariableMinimum.d.ts +2 -2
  106. package/dist/chaos-manager/src/services/schemas/TypesGetProbeResponse.d.ts +1 -0
  107. package/dist/chaos-manager/src/services/schemas/TypesIdentifiers.d.ts +5 -0
  108. package/dist/chaos-manager/src/services/schemas/TypesIdentifiers.js +4 -0
  109. package/dist/chaos-manager/src/services/schemas/TypesImportProbeTemplateRequest.d.ts +3 -3
  110. package/dist/chaos-manager/src/services/schemas/TypesProbeRequest.d.ts +1 -0
  111. package/dist/chaos-manager/src/services/schemas/TypesProbeVerifyRequest.d.ts +3 -0
  112. package/dist/chaos-manager/src/services/schemas/TypesProbeVerifyRequest.js +4 -0
  113. package/package.json +1 -1
  114. package/dist/chaos-manager/src/services/schemas/MongodbIdentifiers.d.ts +0 -5
  115. package/dist/chaos-manager/src/services/schemas/ProbeNewrelicMetric.d.ts +0 -4
  116. package/dist/chaos-manager/src/services/schemas/ProbeNewrelicProbeInputs.d.ts +0 -5
  117. /package/dist/chaos-manager/src/services/schemas/{MongodbIdentifiers.js → ActionsIdentifiers.js} +0 -0
  118. /package/dist/chaos-manager/src/services/schemas/{ProbeNewrelicProbeInputs.js → ChaosexperimenttemplateChaosExperimentTemplate.js} +0 -0
  119. /package/dist/chaos-manager/src/services/schemas/{ProbeNewrelicMetric.js → ChaosexperimenttemplateCompareRevisions.js} +0 -0
@@ -6,6 +6,8 @@ export type { BulkExperimentTagAddErrorResponse, BulkExperimentTagAddMutationPro
6
6
  export { bulkExperimentTagAdd, useBulkExperimentTagAddMutation, } from './hooks/useBulkExperimentTagAddMutation';
7
7
  export type { CanRetryExperimentCreationErrorResponse, CanRetryExperimentCreationOkResponse, CanRetryExperimentCreationProps, CanRetryExperimentCreationQueryPathParams, CanRetryExperimentCreationQueryQueryParams, } from './hooks/useCanRetryExperimentCreationQuery';
8
8
  export { canRetryExperimentCreation, useCanRetryExperimentCreationQuery, } from './hooks/useCanRetryExperimentCreationQuery';
9
+ export type { CompareExperimentTemplateRevisionsErrorResponse, CompareExperimentTemplateRevisionsOkResponse, CompareExperimentTemplateRevisionsProps, CompareExperimentTemplateRevisionsQueryPathParams, CompareExperimentTemplateRevisionsQueryQueryParams, } from './hooks/useCompareExperimentTemplateRevisionsQuery';
10
+ export { compareExperimentTemplateRevisions, useCompareExperimentTemplateRevisionsQuery, } from './hooks/useCompareExperimentTemplateRevisionsQuery';
9
11
  export type { CompareFaultTemplateRevisionsErrorResponse, CompareFaultTemplateRevisionsOkResponse, CompareFaultTemplateRevisionsProps, CompareFaultTemplateRevisionsQueryPathParams, CompareFaultTemplateRevisionsQueryQueryParams, } from './hooks/useCompareFaultTemplateRevisionsQuery';
10
12
  export { compareFaultTemplateRevisions, useCompareFaultTemplateRevisionsQuery, } from './hooks/useCompareFaultTemplateRevisionsQuery';
11
13
  export type { CreateActionErrorResponse, CreateActionMutationProps, CreateActionMutationQueryParams, CreateActionOkResponse, CreateActionProps, CreateActionRequestBody, } from './hooks/useCreateActionMutation';
@@ -18,6 +20,10 @@ export type { CreateChaosExperimentPipelineErrorResponse, CreateChaosExperimentP
18
20
  export { createChaosExperimentPipeline, useCreateChaosExperimentPipelineMutation, } from './hooks/useCreateChaosExperimentPipelineMutation';
19
21
  export type { CreateChaosHubErrorResponse, CreateChaosHubMutationProps, CreateChaosHubMutationQueryParams, CreateChaosHubOkResponse, CreateChaosHubProps, CreateChaosHubRequestBody, } from './hooks/useCreateChaosHubMutation';
20
22
  export { createChaosHub, useCreateChaosHubMutation } from './hooks/useCreateChaosHubMutation';
23
+ export type { CreateExperimentFromTemplateErrorResponse, CreateExperimentFromTemplateMutationPathParams, CreateExperimentFromTemplateMutationProps, CreateExperimentFromTemplateMutationQueryParams, CreateExperimentFromTemplateOkResponse, CreateExperimentFromTemplateProps, CreateExperimentFromTemplateRequestBody, } from './hooks/useCreateExperimentFromTemplateMutation';
24
+ export { createExperimentFromTemplate, useCreateExperimentFromTemplateMutation, } from './hooks/useCreateExperimentFromTemplateMutation';
25
+ export type { CreateExperimentTemplateErrorResponse, CreateExperimentTemplateMutationProps, CreateExperimentTemplateMutationQueryParams, CreateExperimentTemplateOkResponse, CreateExperimentTemplateProps, CreateExperimentTemplateRequestBody, } from './hooks/useCreateExperimentTemplateMutation';
26
+ export { createExperimentTemplate, useCreateExperimentTemplateMutation, } from './hooks/useCreateExperimentTemplateMutation';
21
27
  export type { CreateFaultErrorResponse, CreateFaultMutationProps, CreateFaultMutationQueryParams, CreateFaultOkResponse, CreateFaultProps, CreateFaultRequestBody, } from './hooks/useCreateFaultMutation';
22
28
  export { createFault, useCreateFaultMutation } from './hooks/useCreateFaultMutation';
23
29
  export type { CreateFaultTemplateErrorResponse, CreateFaultTemplateMutationProps, CreateFaultTemplateMutationQueryParams, CreateFaultTemplateOkResponse, CreateFaultTemplateProps, CreateFaultTemplateRequestBody, } from './hooks/useCreateFaultTemplateMutation';
@@ -42,6 +48,8 @@ export type { DeleteActionTemplateErrorResponse, DeleteActionTemplateMutationPat
42
48
  export { deleteActionTemplate, useDeleteActionTemplateMutation, } from './hooks/useDeleteActionTemplateMutation';
43
49
  export type { DeleteChaosV2ExperimentErrorResponse, DeleteChaosV2ExperimentMutationPathParams, DeleteChaosV2ExperimentMutationProps, DeleteChaosV2ExperimentMutationQueryParams, DeleteChaosV2ExperimentOkResponse, DeleteChaosV2ExperimentProps, } from './hooks/useDeleteChaosV2ExperimentMutation';
44
50
  export { deleteChaosV2Experiment, useDeleteChaosV2ExperimentMutation, } from './hooks/useDeleteChaosV2ExperimentMutation';
51
+ export type { DeleteExperimentTemplateErrorResponse, DeleteExperimentTemplateMutationPathParams, DeleteExperimentTemplateMutationProps, DeleteExperimentTemplateMutationQueryParams, DeleteExperimentTemplateOkResponse, DeleteExperimentTemplateProps, } from './hooks/useDeleteExperimentTemplateMutation';
52
+ export { deleteExperimentTemplate, useDeleteExperimentTemplateMutation, } from './hooks/useDeleteExperimentTemplateMutation';
45
53
  export type { DeleteFaultErrorResponse, DeleteFaultMutationPathParams, DeleteFaultMutationProps, DeleteFaultMutationQueryParams, DeleteFaultOkResponse, DeleteFaultProps, } from './hooks/useDeleteFaultMutation';
46
54
  export { deleteFault, useDeleteFaultMutation } from './hooks/useDeleteFaultMutation';
47
55
  export type { DeleteFaultTemplateErrorResponse, DeleteFaultTemplateMutationPathParams, DeleteFaultTemplateMutationProps, DeleteFaultTemplateMutationQueryParams, DeleteFaultTemplateOkResponse, DeleteFaultTemplateProps, } from './hooks/useDeleteFaultTemplateMutation';
@@ -110,6 +118,14 @@ export type { GetExperimentRunTimelineViewErrorResponse, GetExperimentRunTimelin
110
118
  export { getExperimentRunTimelineView, useGetExperimentRunTimelineViewQuery, } from './hooks/useGetExperimentRunTimelineViewQuery';
111
119
  export type { GetExperimentRunsOverviewStatsErrorResponse, GetExperimentRunsOverviewStatsOkResponse, GetExperimentRunsOverviewStatsProps, GetExperimentRunsOverviewStatsQueryQueryParams, } from './hooks/useGetExperimentRunsOverviewStatsQuery';
112
120
  export { getExperimentRunsOverviewStats, useGetExperimentRunsOverviewStatsQuery, } from './hooks/useGetExperimentRunsOverviewStatsQuery';
121
+ export type { GetExperimentTemplateErrorResponse, GetExperimentTemplateOkResponse, GetExperimentTemplateProps, GetExperimentTemplateQueryPathParams, GetExperimentTemplateQueryQueryParams, } from './hooks/useGetExperimentTemplateQuery';
122
+ export { getExperimentTemplate, useGetExperimentTemplateQuery, } from './hooks/useGetExperimentTemplateQuery';
123
+ export type { GetExperimentTemplateRevisionsErrorResponse, GetExperimentTemplateRevisionsOkResponse, GetExperimentTemplateRevisionsProps, GetExperimentTemplateRevisionsQueryPathParams, GetExperimentTemplateRevisionsQueryQueryParams, } from './hooks/useGetExperimentTemplateRevisionsQuery';
124
+ export { getExperimentTemplateRevisions, useGetExperimentTemplateRevisionsQuery, } from './hooks/useGetExperimentTemplateRevisionsQuery';
125
+ export type { GetExperimentTemplateVariablesErrorResponse, GetExperimentTemplateVariablesOkResponse, GetExperimentTemplateVariablesProps, GetExperimentTemplateVariablesQueryPathParams, GetExperimentTemplateVariablesQueryQueryParams, } from './hooks/useGetExperimentTemplateVariablesQuery';
126
+ export { getExperimentTemplateVariables, useGetExperimentTemplateVariablesQuery, } from './hooks/useGetExperimentTemplateVariablesQuery';
127
+ export type { GetExperimentTemplateYamlErrorResponse, GetExperimentTemplateYamlOkResponse, GetExperimentTemplateYamlProps, GetExperimentTemplateYamlQueryPathParams, GetExperimentTemplateYamlQueryQueryParams, } from './hooks/useGetExperimentTemplateYamlQuery';
128
+ export { getExperimentTemplateYaml, useGetExperimentTemplateYamlQuery, } from './hooks/useGetExperimentTemplateYamlQuery';
113
129
  export type { GetFaultErrorResponse, GetFaultOkResponse, GetFaultProps, GetFaultQueryPathParams, GetFaultQueryQueryParams, } from './hooks/useGetFaultQuery';
114
130
  export { getFault, useGetFaultQuery } from './hooks/useGetFaultQuery';
115
131
  export type { GetFaultTemplateErrorResponse, GetFaultTemplateOkResponse, GetFaultTemplateProps, GetFaultTemplateQueryPathParams, GetFaultTemplateQueryQueryParams, } from './hooks/useGetFaultTemplateQuery';
@@ -190,6 +206,8 @@ export type { ListChaosV2ExperimentErrorResponse, ListChaosV2ExperimentOkRespons
190
206
  export { listChaosV2Experiment, useListChaosV2ExperimentQuery, } from './hooks/useListChaosV2ExperimentQuery';
191
207
  export type { ListExperimentRunsOfFaultErrorResponse, ListExperimentRunsOfFaultOkResponse, ListExperimentRunsOfFaultProps, ListExperimentRunsOfFaultQueryPathParams, ListExperimentRunsOfFaultQueryQueryParams, } from './hooks/useListExperimentRunsOfFaultQuery';
192
208
  export { listExperimentRunsOfFault, useListExperimentRunsOfFaultQuery, } from './hooks/useListExperimentRunsOfFaultQuery';
209
+ export type { ListExperimentTemplateErrorResponse, ListExperimentTemplateOkResponse, ListExperimentTemplateProps, ListExperimentTemplateQueryQueryParams, } from './hooks/useListExperimentTemplateQuery';
210
+ export { listExperimentTemplate, useListExperimentTemplateQuery, } from './hooks/useListExperimentTemplateQuery';
193
211
  export type { ListExperimentsWithActiveInfrasMinimalNotificationErrorResponse, ListExperimentsWithActiveInfrasMinimalNotificationOkResponse, ListExperimentsWithActiveInfrasMinimalNotificationProps, ListExperimentsWithActiveInfrasMinimalNotificationQueryQueryParams, } from './hooks/useListExperimentsWithActiveInfrasMinimalNotificationQuery';
194
212
  export { listExperimentsWithActiveInfrasMinimalNotification, useListExperimentsWithActiveInfrasMinimalNotificationQuery, } from './hooks/useListExperimentsWithActiveInfrasMinimalNotificationQuery';
195
213
  export type { ListFaultErrorResponse, ListFaultOkResponse, ListFaultProps, ListFaultQueryQueryParams, } from './hooks/useListFaultQuery';
@@ -280,6 +298,8 @@ export type { UpdateChaosV2CronExperimentErrorResponse, UpdateChaosV2CronExperim
280
298
  export { updateChaosV2CronExperiment, useUpdateChaosV2CronExperimentMutation, } from './hooks/useUpdateChaosV2CronExperimentMutation';
281
299
  export type { UpdateEmissaryErrorResponse, UpdateEmissaryMutationPathParams, UpdateEmissaryMutationProps, UpdateEmissaryMutationQueryParams, UpdateEmissaryOkResponse, UpdateEmissaryProps, UpdateEmissaryRequestBody, } from './hooks/useUpdateEmissaryMutation';
282
300
  export { updateEmissary, useUpdateEmissaryMutation } from './hooks/useUpdateEmissaryMutation';
301
+ export type { UpdateExperimentTemplateErrorResponse, UpdateExperimentTemplateMutationPathParams, UpdateExperimentTemplateMutationProps, UpdateExperimentTemplateMutationQueryParams, UpdateExperimentTemplateOkResponse, UpdateExperimentTemplateProps, UpdateExperimentTemplateRequestBody, } from './hooks/useUpdateExperimentTemplateMutation';
302
+ export { updateExperimentTemplate, useUpdateExperimentTemplateMutation, } from './hooks/useUpdateExperimentTemplateMutation';
283
303
  export type { UpdateFaultErrorResponse, UpdateFaultMutationPathParams, UpdateFaultMutationProps, UpdateFaultMutationQueryParams, UpdateFaultOkResponse, UpdateFaultProps, UpdateFaultRequestBody, } from './hooks/useUpdateFaultMutation';
284
304
  export { updateFault, useUpdateFaultMutation } from './hooks/useUpdateFaultMutation';
285
305
  export type { UpdateFaultTemplateErrorResponse, UpdateFaultTemplateMutationPathParams, UpdateFaultTemplateMutationProps, UpdateFaultTemplateMutationQueryParams, UpdateFaultTemplateOkResponse, UpdateFaultTemplateProps, } from './hooks/useUpdateFaultTemplateMutation';
@@ -306,6 +326,8 @@ export type { UpdateRecommendationStatusErrorResponse, UpdateRecommendationStatu
306
326
  export { updateRecommendationStatus, useUpdateRecommendationStatusMutation, } from './hooks/useUpdateRecommendationStatusMutation';
307
327
  export type { VerifyChaosStageInPipelineRunErrorResponse, VerifyChaosStageInPipelineRunOkResponse, VerifyChaosStageInPipelineRunProps, VerifyChaosStageInPipelineRunQueryQueryParams, } from './hooks/useVerifyChaosStageInPipelineRunQuery';
308
328
  export { useVerifyChaosStageInPipelineRunQuery, verifyChaosStageInPipelineRun, } from './hooks/useVerifyChaosStageInPipelineRunQuery';
329
+ export type { VerifyProbeErrorResponse, VerifyProbeMutationPathParams, VerifyProbeMutationProps, VerifyProbeMutationQueryParams, VerifyProbeOkResponse, VerifyProbeProps, VerifyProbeRequestBody, } from './hooks/useVerifyProbeMutation';
330
+ export { useVerifyProbeMutation, verifyProbe } from './hooks/useVerifyProbeMutation';
309
331
  export type { ChaosfaulttemplateActionTemplateRequestBody } from './requestBodies/ChaosfaulttemplateActionTemplateRequestBody';
310
332
  export type { InfraV2ListKubernetesInfraV2RequestRequestBody } from './requestBodies/InfraV2ListKubernetesInfraV2RequestRequestBody';
311
333
  export type { TypesProbeRequestRequestBody } from './requestBodies/TypesProbeRequestRequestBody';
@@ -318,6 +340,7 @@ export type { ActionSourceActionTemplate } from './schemas/ActionSourceActionTem
318
340
  export type { ActionsActionResponse } from './schemas/ActionsActionResponse';
319
341
  export type { ActionsActionType } from './schemas/ActionsActionType';
320
342
  export type { ActionsExecutedByExperiment } from './schemas/ActionsExecutedByExperiment';
343
+ export type { ActionsIdentifiers } from './schemas/ActionsIdentifiers';
321
344
  export type { ActionsImportActionTemplateRequest } from './schemas/ActionsImportActionTemplateRequest';
322
345
  export type { ActionsInfrastructureType } from './schemas/ActionsInfrastructureType';
323
346
  export type { ActionsListActionTemplateResponse } from './schemas/ActionsListActionTemplateResponse';
@@ -375,6 +398,18 @@ export type { ChaosactiontemplateActionsTemplateCount } from './schemas/Chaosact
375
398
  export type { ChaosactiontemplateChaosActionTemplate } from './schemas/ChaosactiontemplateChaosActionTemplate';
376
399
  export type { ChaosexperimentpipelineGetChaosPipelineNodesResponse } from './schemas/ChaosexperimentpipelineGetChaosPipelineNodesResponse';
377
400
  export type { ChaosexperimentpipelineReferenceEntities } from './schemas/ChaosexperimentpipelineReferenceEntities';
401
+ export type { ChaosexperimenttemplateChaosExperimentTemplate } from './schemas/ChaosexperimenttemplateChaosExperimentTemplate';
402
+ export type { ChaosexperimenttemplateCompareRevisions } from './schemas/ChaosexperimenttemplateCompareRevisions';
403
+ export type { ChaosexperimenttemplateCreateExperimentFromTemplateRequest } from './schemas/ChaosexperimenttemplateCreateExperimentFromTemplateRequest';
404
+ export type { ChaosexperimenttemplateCreateExperimentTemplateRequest } from './schemas/ChaosexperimenttemplateCreateExperimentTemplateRequest';
405
+ export type { ChaosexperimenttemplateCreateExperimentTemplateResponse } from './schemas/ChaosexperimenttemplateCreateExperimentTemplateResponse';
406
+ export type { ChaosexperimenttemplateExperimentTemplateVariables } from './schemas/ChaosexperimenttemplateExperimentTemplateVariables';
407
+ export type { ChaosexperimenttemplateExperimentTemplateYaml } from './schemas/ChaosexperimenttemplateExperimentTemplateYaml';
408
+ export type { ChaosexperimenttemplateGetExperimentTemplateResponse } from './schemas/ChaosexperimenttemplateGetExperimentTemplateResponse';
409
+ export type { ChaosexperimenttemplateListExperimentTemplateResponse } from './schemas/ChaosexperimenttemplateListExperimentTemplateResponse';
410
+ export type { ChaosexperimenttemplateUpdateExperimentTemplateRequest } from './schemas/ChaosexperimenttemplateUpdateExperimentTemplateRequest';
411
+ export type { ChaosexperimenttemplateUpdateExperimentTemplateResponse } from './schemas/ChaosexperimenttemplateUpdateExperimentTemplateResponse';
412
+ export type { ChaosexperimenttemplateVariable } from './schemas/ChaosexperimenttemplateVariable';
378
413
  export type { ChaosfaultChaosFault } from './schemas/ChaosfaultChaosFault';
379
414
  export type { ChaosfaultCreateFaultRequest } from './schemas/ChaosfaultCreateFaultRequest';
380
415
  export type { ChaosfaultCreateFaultResponse } from './schemas/ChaosfaultCreateFaultResponse';
@@ -466,6 +501,7 @@ export type { ExecutionPromProbe } from './schemas/ExecutionPromProbe';
466
501
  export type { ExperimentActionRef } from './schemas/ExperimentActionRef';
467
502
  export type { ExperimentApplication } from './schemas/ExperimentApplication';
468
503
  export type { ExperimentChaosInputs } from './schemas/ExperimentChaosInputs';
504
+ export type { ExperimentCleanupPolicy } from './schemas/ExperimentCleanupPolicy';
469
505
  export type { ExperimentConfigMap } from './schemas/ExperimentConfigMap';
470
506
  export type { ExperimentDefinition } from './schemas/ExperimentDefinition';
471
507
  export type { ExperimentExperimentComponents } from './schemas/ExperimentExperimentComponents';
@@ -486,6 +522,15 @@ export type { ExperimentStatusCheckTimeout } from './schemas/ExperimentStatusChe
486
522
  export type { ExperimentTargets } from './schemas/ExperimentTargets';
487
523
  export type { ExperimentWorkload } from './schemas/ExperimentWorkload';
488
524
  export type { ExperimentWorkloadKind } from './schemas/ExperimentWorkloadKind';
525
+ export type { ExperimenttemplateAction } from './schemas/ExperimenttemplateAction';
526
+ export type { ExperimenttemplateFault } from './schemas/ExperimenttemplateFault';
527
+ export type { ExperimenttemplateProbe } from './schemas/ExperimenttemplateProbe';
528
+ export type { ExperimenttemplateProbeConditions } from './schemas/ExperimenttemplateProbeConditions';
529
+ export type { ExperimenttemplateSpec } from './schemas/ExperimenttemplateSpec';
530
+ export type { ExperimenttemplateStatusCheckTimeout } from './schemas/ExperimenttemplateStatusCheckTimeout';
531
+ export type { ExperimenttemplateVertex } from './schemas/ExperimenttemplateVertex';
532
+ export type { ExperimenttemplateVertexChild } from './schemas/ExperimenttemplateVertexChild';
533
+ export type { ExperimenttemplateVertexResource } from './schemas/ExperimenttemplateVertexResource';
489
534
  export type { FaultLink } from './schemas/FaultLink';
490
535
  export type { FaulttemplateApplicationTarget } from './schemas/FaulttemplateApplicationTarget';
491
536
  export type { FaulttemplateChaosKubernetesSpec } from './schemas/FaulttemplateChaosKubernetesSpec';
@@ -499,6 +544,7 @@ export type { FaulttemplateLink } from './schemas/FaulttemplateLink';
499
544
  export type { FaulttemplateResourceRequirements } from './schemas/FaulttemplateResourceRequirements';
500
545
  export type { FaulttemplateSecretVolume } from './schemas/FaulttemplateSecretVolume';
501
546
  export type { FaulttemplateSpec } from './schemas/FaulttemplateSpec';
547
+ export type { FaulttemplateStatusCheckTimeout } from './schemas/FaulttemplateStatusCheckTimeout';
502
548
  export type { FaulttemplateTarget } from './schemas/FaulttemplateTarget';
503
549
  export type { Gamedayrunv2ApprovalStatus } from './schemas/Gamedayrunv2ApprovalStatus';
504
550
  export type { Gamedayrunv2PrerequisiteStatus } from './schemas/Gamedayrunv2PrerequisiteStatus';
@@ -524,6 +570,8 @@ export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeEnv } f
524
570
  export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeGet } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeGet';
525
571
  export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeHeaders } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeHeaders';
526
572
  export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeIdentifier } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeIdentifier';
573
+ export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeNewrelicMetric } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeNewrelicMetric';
574
+ export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeNewrelicProbeInputs } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeNewrelicProbeInputs';
527
575
  export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbePost } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbePost';
528
576
  export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbePrometheusProbeInputs } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbePrometheusProbeInputs';
529
577
  export type { GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeSecretManager } from './schemas/GithubComHarnessHceSaasGraphqlServerPkgDatabaseMongodbProbeSecretManager';
@@ -544,6 +592,8 @@ export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeEnv } from './sche
544
592
  export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeGet } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeGet';
545
593
  export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeHeaders } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeHeaders';
546
594
  export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeIdentifier } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeIdentifier';
595
+ export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeNewrelicMetric } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeNewrelicMetric';
596
+ export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeNewrelicProbeInputs } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeNewrelicProbeInputs';
547
597
  export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbePost } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbePost';
548
598
  export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbePrometheusProbeInputs } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbePrometheusProbeInputs';
549
599
  export type { GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSecretManager } from './schemas/GithubComHarnessHceSaasHceSdkTemplateSchemaProbeSecretManager';
@@ -654,7 +704,6 @@ export type { ModelWeightages } from './schemas/ModelWeightages';
654
704
  export type { ModelWorkflowRun } from './schemas/ModelWorkflowRun';
655
705
  export type { ModelWorkflowRunStatus } from './schemas/ModelWorkflowRunStatus';
656
706
  export type { ModelWorkflowType } from './schemas/ModelWorkflowType';
657
- export type { MongodbIdentifiers } from './schemas/MongodbIdentifiers';
658
707
  export type { MongodbImportType } from './schemas/MongodbImportType';
659
708
  export type { NetworkmapCanRetryExperimentCreationResponse } from './schemas/NetworkmapCanRetryExperimentCreationResponse';
660
709
  export type { NetworkmapGetTargetNetworkMapResponse } from './schemas/NetworkmapGetTargetNetworkMapResponse';
@@ -708,8 +757,6 @@ export type { ProbeLinuxCmdProbe } from './schemas/ProbeLinuxCmdProbe';
708
757
  export type { ProbeMethod } from './schemas/ProbeMethod';
709
758
  export type { ProbeMethodTemplate } from './schemas/ProbeMethodTemplate';
710
759
  export type { ProbeMetrics } from './schemas/ProbeMetrics';
711
- export type { ProbeNewrelicMetric } from './schemas/ProbeNewrelicMetric';
712
- export type { ProbeNewrelicProbeInputs } from './schemas/ProbeNewrelicProbeInputs';
713
760
  export type { ProbeProbeTemplateProperties } from './schemas/ProbeProbeTemplateProperties';
714
761
  export type { ProbeProbeTemplateRunProperties } from './schemas/ProbeProbeTemplateRunProperties';
715
762
  export type { ProbeProbeType } from './schemas/ProbeProbeType';
@@ -747,6 +794,7 @@ export type { RecommendationsListRecommendationsResponse } from './schemas/Recom
747
794
  export type { RecommendationsPipelineAddExperimentResponse } from './schemas/RecommendationsPipelineAddExperimentResponse';
748
795
  export type { RecommendationsRunActionResponse } from './schemas/RecommendationsRunActionResponse';
749
796
  export type { ResourceQuantity } from './schemas/ResourceQuantity';
797
+ export type { SecurityGovernanceAccessControl } from './schemas/SecurityGovernanceAccessControl';
750
798
  export type { SecurityGovernanceApplicationSpec } from './schemas/SecurityGovernanceApplicationSpec';
751
799
  export type { SecurityGovernanceChaosServiceAccountSpec } from './schemas/SecurityGovernanceChaosServiceAccountSpec';
752
800
  export type { SecurityGovernanceCondition } from './schemas/SecurityGovernanceCondition';
@@ -800,6 +848,7 @@ export type { TypesGamedayV2 } from './schemas/TypesGamedayV2';
800
848
  export type { TypesGetGamedayExperimentResponse } from './schemas/TypesGetGamedayExperimentResponse';
801
849
  export type { TypesGetGamedayResponse } from './schemas/TypesGetGamedayResponse';
802
850
  export type { TypesGetProbeResponse } from './schemas/TypesGetProbeResponse';
851
+ export type { TypesIdentifiers } from './schemas/TypesIdentifiers';
803
852
  export type { TypesImportProbeTemplateRequest } from './schemas/TypesImportProbeTemplateRequest';
804
853
  export type { TypesInfra } from './schemas/TypesInfra';
805
854
  export type { TypesInfrastructureType } from './schemas/TypesInfrastructureType';
@@ -822,6 +871,7 @@ export type { TypesProbeDetailsMinimal } from './schemas/TypesProbeDetailsMinima
822
871
  export type { TypesProbeRecentExecutions } from './schemas/TypesProbeRecentExecutions';
823
872
  export type { TypesProbeRequest } from './schemas/TypesProbeRequest';
824
873
  export type { TypesProbeType } from './schemas/TypesProbeType';
874
+ export type { TypesProbeVerifyRequest } from './schemas/TypesProbeVerifyRequest';
825
875
  export type { TypesRecentGamedayRun } from './schemas/TypesRecentGamedayRun';
826
876
  export type { TypesRun } from './schemas/TypesRun';
827
877
  export type { TypesScenarioType } from './schemas/TypesScenarioType';
@@ -2,12 +2,15 @@ export { addNote, useAddNoteMutation } from './hooks/useAddNoteMutation';
2
2
  export { bulkExperimentDelete, useBulkExperimentDeleteMutation, } from './hooks/useBulkExperimentDeleteMutation';
3
3
  export { bulkExperimentTagAdd, useBulkExperimentTagAddMutation, } from './hooks/useBulkExperimentTagAddMutation';
4
4
  export { canRetryExperimentCreation, useCanRetryExperimentCreationQuery, } from './hooks/useCanRetryExperimentCreationQuery';
5
+ export { compareExperimentTemplateRevisions, useCompareExperimentTemplateRevisionsQuery, } from './hooks/useCompareExperimentTemplateRevisionsQuery';
5
6
  export { compareFaultTemplateRevisions, useCompareFaultTemplateRevisionsQuery, } from './hooks/useCompareFaultTemplateRevisionsQuery';
6
7
  export { createAction, useCreateActionMutation } from './hooks/useCreateActionMutation';
7
8
  export { createActionTemplate, useCreateActionTemplateMutation, } from './hooks/useCreateActionTemplateMutation';
8
9
  export { createChaosExperimentExecutionNode, useCreateChaosExperimentExecutionNodeMutation, } from './hooks/useCreateChaosExperimentExecutionNodeMutation';
9
10
  export { createChaosExperimentPipeline, useCreateChaosExperimentPipelineMutation, } from './hooks/useCreateChaosExperimentPipelineMutation';
10
11
  export { createChaosHub, useCreateChaosHubMutation } from './hooks/useCreateChaosHubMutation';
12
+ export { createExperimentFromTemplate, useCreateExperimentFromTemplateMutation, } from './hooks/useCreateExperimentFromTemplateMutation';
13
+ export { createExperimentTemplate, useCreateExperimentTemplateMutation, } from './hooks/useCreateExperimentTemplateMutation';
11
14
  export { createFault, useCreateFaultMutation } from './hooks/useCreateFaultMutation';
12
15
  export { createFaultTemplate, useCreateFaultTemplateMutation, } from './hooks/useCreateFaultTemplateMutation';
13
16
  export { createGamedayRunV2, useCreateGamedayRunV2Mutation, } from './hooks/useCreateGamedayRunV2Mutation';
@@ -20,6 +23,7 @@ export { createV2Onboarding, useCreateV2OnboardingMutation, } from './hooks/useC
20
23
  export { deleteAction, useDeleteActionMutation } from './hooks/useDeleteActionMutation';
21
24
  export { deleteActionTemplate, useDeleteActionTemplateMutation, } from './hooks/useDeleteActionTemplateMutation';
22
25
  export { deleteChaosV2Experiment, useDeleteChaosV2ExperimentMutation, } from './hooks/useDeleteChaosV2ExperimentMutation';
26
+ export { deleteExperimentTemplate, useDeleteExperimentTemplateMutation, } from './hooks/useDeleteExperimentTemplateMutation';
23
27
  export { deleteFault, useDeleteFaultMutation } from './hooks/useDeleteFaultMutation';
24
28
  export { deleteFaultTemplate, useDeleteFaultTemplateMutation, } from './hooks/useDeleteFaultTemplateMutation';
25
29
  export { deleteGamedayV2, useDeleteGamedayV2Mutation } from './hooks/useDeleteGamedayV2Mutation';
@@ -54,6 +58,10 @@ export { getConnectorForInfra, useGetConnectorForInfraQuery, } from './hooks/use
54
58
  export { getExperimentHelperImageVersion, useGetExperimentHelperImageVersionQuery, } from './hooks/useGetExperimentHelperImageVersionQuery';
55
59
  export { getExperimentRunTimelineView, useGetExperimentRunTimelineViewQuery, } from './hooks/useGetExperimentRunTimelineViewQuery';
56
60
  export { getExperimentRunsOverviewStats, useGetExperimentRunsOverviewStatsQuery, } from './hooks/useGetExperimentRunsOverviewStatsQuery';
61
+ export { getExperimentTemplate, useGetExperimentTemplateQuery, } from './hooks/useGetExperimentTemplateQuery';
62
+ export { getExperimentTemplateRevisions, useGetExperimentTemplateRevisionsQuery, } from './hooks/useGetExperimentTemplateRevisionsQuery';
63
+ export { getExperimentTemplateVariables, useGetExperimentTemplateVariablesQuery, } from './hooks/useGetExperimentTemplateVariablesQuery';
64
+ export { getExperimentTemplateYaml, useGetExperimentTemplateYamlQuery, } from './hooks/useGetExperimentTemplateYamlQuery';
57
65
  export { getFault, useGetFaultQuery } from './hooks/useGetFaultQuery';
58
66
  export { getFaultTemplate, useGetFaultTemplateQuery } from './hooks/useGetFaultTemplateQuery';
59
67
  export { getFaultTemplateRevisions, useGetFaultTemplateRevisionsQuery, } from './hooks/useGetFaultTemplateRevisionsQuery';
@@ -94,6 +102,7 @@ export { listChaosEnabledInfraV2, useListChaosEnabledInfraV2Query, } from './hoo
94
102
  export { listChaosHub, useListChaosHubQuery } from './hooks/useListChaosHubQuery';
95
103
  export { listChaosV2Experiment, useListChaosV2ExperimentQuery, } from './hooks/useListChaosV2ExperimentQuery';
96
104
  export { listExperimentRunsOfFault, useListExperimentRunsOfFaultQuery, } from './hooks/useListExperimentRunsOfFaultQuery';
105
+ export { listExperimentTemplate, useListExperimentTemplateQuery, } from './hooks/useListExperimentTemplateQuery';
97
106
  export { listExperimentsWithActiveInfrasMinimalNotification, useListExperimentsWithActiveInfrasMinimalNotificationQuery, } from './hooks/useListExperimentsWithActiveInfrasMinimalNotificationQuery';
98
107
  export { listFault, useListFaultQuery } from './hooks/useListFaultQuery';
99
108
  export { listFaultTemplate, useListFaultTemplateQuery } from './hooks/useListFaultTemplateQuery';
@@ -139,6 +148,7 @@ export { updateChaosExperimentExecutionNode, useUpdateChaosExperimentExecutionNo
139
148
  export { updateChaosHub, useUpdateChaosHubMutation } from './hooks/useUpdateChaosHubMutation';
140
149
  export { updateChaosV2CronExperiment, useUpdateChaosV2CronExperimentMutation, } from './hooks/useUpdateChaosV2CronExperimentMutation';
141
150
  export { updateEmissary, useUpdateEmissaryMutation } from './hooks/useUpdateEmissaryMutation';
151
+ export { updateExperimentTemplate, useUpdateExperimentTemplateMutation, } from './hooks/useUpdateExperimentTemplateMutation';
142
152
  export { updateFault, useUpdateFaultMutation } from './hooks/useUpdateFaultMutation';
143
153
  export { updateFaultTemplate, useUpdateFaultTemplateMutation, } from './hooks/useUpdateFaultTemplateMutation';
144
154
  export { updateGamedayRunPrerequisitesV2, useUpdateGamedayRunPrerequisitesV2Mutation, } from './hooks/useUpdateGamedayRunPrerequisitesV2Mutation';
@@ -152,3 +162,4 @@ export { updateProbe, useUpdateProbeMutation } from './hooks/useUpdateProbeMutat
152
162
  export { updateProbeTemplate, useUpdateProbeTemplateMutation, } from './hooks/useUpdateProbeTemplateMutation';
153
163
  export { updateRecommendationStatus, useUpdateRecommendationStatusMutation, } from './hooks/useUpdateRecommendationStatusMutation';
154
164
  export { useVerifyChaosStageInPipelineRunQuery, verifyChaosStageInPipelineRun, } from './hooks/useVerifyChaosStageInPipelineRunQuery';
165
+ export { useVerifyProbeMutation, verifyProbe } from './hooks/useVerifyProbeMutation';
@@ -0,0 +1,5 @@
1
+ export interface ActionsIdentifiers {
2
+ accountID?: string;
3
+ orgID?: string;
4
+ projectID?: string;
5
+ }
@@ -1,10 +1,10 @@
1
- import type { MongodbIdentifiers } from '../schemas/MongodbIdentifiers';
1
+ import type { ActionsIdentifiers } from '../schemas/ActionsIdentifiers';
2
2
  import type { MongodbImportType } from '../schemas/MongodbImportType';
3
3
  export interface ActionsImportActionTemplateRequest {
4
4
  actionRef: string;
5
5
  description?: string;
6
- hubIdentifiers?: MongodbIdentifiers;
7
- hubRef: string;
6
+ hubIdentifiers?: ActionsIdentifiers;
7
+ hubRef?: string;
8
8
  identity: string;
9
9
  importType: MongodbImportType;
10
10
  name: string;
@@ -1,4 +1,5 @@
1
1
  import type { ActionActionTemplateProperties } from '../schemas/ActionActionTemplateProperties';
2
+ import type { GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails } from '../schemas/GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails';
2
3
  import type { ActionsInfrastructureType } from '../schemas/ActionsInfrastructureType';
3
4
  import type { ActionActionTemplateRunProperties } from '../schemas/ActionActionTemplateRunProperties';
4
5
  import type { ActionsActionType } from '../schemas/ActionsActionType';
@@ -11,6 +12,7 @@ export interface ChaosactiontemplateChaosActionTemplate {
11
12
  actionProperties?: ActionActionTemplateProperties;
12
13
  createdAt?: number;
13
14
  createdBy?: string;
15
+ createdByUserDetails?: GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails;
14
16
  description?: string;
15
17
  hubRef?: string;
16
18
  id?: string;
@@ -25,6 +27,7 @@ export interface ChaosactiontemplateChaosActionTemplate {
25
27
  * for predefined faults, latest should be set as default
26
28
  */
27
29
  isDefault?: boolean;
30
+ isEnterprise?: boolean;
28
31
  isRemoved: boolean;
29
32
  /**
30
33
  * Fault name to sync the changes from the hub
@@ -43,5 +46,6 @@ export interface ChaosactiontemplateChaosActionTemplate {
43
46
  type?: ActionsActionType;
44
47
  updatedAt?: number;
45
48
  updatedBy?: string;
49
+ updatedByUserDetails?: GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails;
46
50
  variables?: TemplateVariable[];
47
51
  }
@@ -0,0 +1,28 @@
1
+ import type { GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails } from '../schemas/GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails';
2
+ import type { ExperimentInfraType } from '../schemas/ExperimentInfraType';
3
+ import type { TemplateVariable } from '../schemas/TemplateVariable';
4
+ export interface ChaosexperimenttemplateChaosExperimentTemplate {
5
+ accountID: string;
6
+ createdAt?: number;
7
+ createdBy?: string;
8
+ createdByUserDetails?: GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails;
9
+ description?: string;
10
+ hubIdentity?: string;
11
+ id?: string;
12
+ identity?: string;
13
+ infraType?: ExperimentInfraType;
14
+ infras?: string[];
15
+ isDefault?: boolean;
16
+ isEnterprise?: boolean;
17
+ isRemoved: boolean;
18
+ name: string;
19
+ orgID?: string;
20
+ projectID?: string;
21
+ revision?: string;
22
+ tags?: string[];
23
+ template?: string;
24
+ updatedAt?: number;
25
+ updatedBy?: string;
26
+ updatedByUserDetails?: GithubComHarnessHceSaasGraphqlServerGraphModelUserDetails;
27
+ variables?: TemplateVariable[];
28
+ }
@@ -0,0 +1,5 @@
1
+ export interface ChaosexperimenttemplateCompareRevisions {
2
+ correlationID?: string;
3
+ template1?: string;
4
+ template2?: string;
5
+ }
@@ -0,0 +1,6 @@
1
+ export interface ChaosexperimenttemplateCreateExperimentFromTemplateRequest {
2
+ accountIdentifier: string;
3
+ infraRef?: string;
4
+ organizationIdentifier?: string;
5
+ projectIdentifier?: string;
6
+ }
@@ -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,3 @@
1
+ export interface ChaosexperimenttemplateCreateExperimentTemplateRequest {
2
+ manifest: string;
3
+ }
@@ -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,14 @@
1
+ import type { ExperimenttemplateSpec } from '../schemas/ExperimenttemplateSpec';
2
+ export interface ChaosexperimenttemplateCreateExperimentTemplateResponse {
3
+ apiVersion?: string;
4
+ correlationID?: string;
5
+ description?: string;
6
+ hubIdentity?: string;
7
+ identity: string;
8
+ isDefault: boolean;
9
+ kind?: string;
10
+ name: string;
11
+ revision: string;
12
+ spec: ExperimenttemplateSpec;
13
+ tags?: string[];
14
+ }
@@ -0,0 +1,7 @@
1
+ import type { ChaosexperimenttemplateVariable } from '../schemas/ChaosexperimenttemplateVariable';
2
+ export interface ChaosexperimenttemplateExperimentTemplateVariables {
3
+ actions?: ChaosexperimenttemplateVariable[];
4
+ correlationID?: string;
5
+ faults?: ChaosexperimenttemplateVariable[];
6
+ probes?: ChaosexperimenttemplateVariable[];
7
+ }
@@ -0,0 +1,4 @@
1
+ export interface ChaosexperimenttemplateExperimentTemplateYaml {
2
+ correlationID?: string;
3
+ template?: 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,14 @@
1
+ import type { ExperimenttemplateSpec } from '../schemas/ExperimenttemplateSpec';
2
+ export interface ChaosexperimenttemplateGetExperimentTemplateResponse {
3
+ apiVersion?: string;
4
+ correlationID?: string;
5
+ description?: string;
6
+ hubIdentity?: string;
7
+ identity: string;
8
+ isDefault: boolean;
9
+ kind?: string;
10
+ name: string;
11
+ revision: string;
12
+ spec: ExperimenttemplateSpec;
13
+ tags?: string[];
14
+ }
@@ -0,0 +1,7 @@
1
+ import type { ChaosexperimenttemplateChaosExperimentTemplate } from '../schemas/ChaosexperimenttemplateChaosExperimentTemplate';
2
+ import type { GithubComHarnessHceSaasGraphqlServerApiPagination } from '../schemas/GithubComHarnessHceSaasGraphqlServerApiPagination';
3
+ export interface ChaosexperimenttemplateListExperimentTemplateResponse {
4
+ correlationID?: string;
5
+ data?: ChaosexperimenttemplateChaosExperimentTemplate[];
6
+ pagination?: GithubComHarnessHceSaasGraphqlServerApiPagination;
7
+ }
@@ -0,0 +1,3 @@
1
+ export interface ChaosexperimenttemplateUpdateExperimentTemplateRequest {
2
+ manifest: string;
3
+ }
@@ -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,14 @@
1
+ import type { ExperimenttemplateSpec } from '../schemas/ExperimenttemplateSpec';
2
+ export interface ChaosexperimenttemplateUpdateExperimentTemplateResponse {
3
+ apiVersion?: string;
4
+ correlationID?: string;
5
+ description?: string;
6
+ hubIdentity?: string;
7
+ identity: string;
8
+ isDefault: boolean;
9
+ kind?: string;
10
+ name: string;
11
+ revision: string;
12
+ spec: ExperimenttemplateSpec;
13
+ tags?: string[];
14
+ }
@@ -0,0 +1,5 @@
1
+ import type { TemplateVariable } from '../schemas/TemplateVariable';
2
+ export interface ChaosexperimenttemplateVariable {
3
+ name?: string;
4
+ variables?: TemplateVariable[];
5
+ }
@@ -16,7 +16,7 @@ export interface ChaosfaultChaosFault {
16
16
  /**
17
17
  * Unique identifier (human-readable) immutable
18
18
  */
19
- identity?: string;
19
+ identity: string;
20
20
  infraType?: string;
21
21
  infras?: string[];
22
22
  isEnterprise?: boolean;
@@ -3,13 +3,15 @@ import type { FaulttemplateSpec } from '../schemas/FaulttemplateSpec';
3
3
  import type { TemplateVariableMinimum } from '../schemas/TemplateVariableMinimum';
4
4
  import type { TemplateVariable } from '../schemas/TemplateVariable';
5
5
  export interface ChaosfaultCreateFaultRequest {
6
+ apiVersion?: string;
6
7
  category?: string[];
7
8
  description?: string;
8
- identity?: string;
9
+ identity: string;
9
10
  infraType?: string;
10
11
  infras?: string[];
12
+ kind?: string;
11
13
  links?: FaultLink[];
12
- name?: string;
14
+ name: string;
13
15
  permissionsRequired?: string;
14
16
  spec?: FaulttemplateSpec;
15
17
  tags?: string[];
@@ -3,14 +3,16 @@ import type { FaulttemplateSpec } from '../schemas/FaulttemplateSpec';
3
3
  import type { TemplateVariableMinimum } from '../schemas/TemplateVariableMinimum';
4
4
  import type { TemplateVariable } from '../schemas/TemplateVariable';
5
5
  export interface ChaosfaultCreateFaultResponse {
6
+ apiVersion?: string;
6
7
  category?: string[];
7
8
  correlationID?: string;
8
9
  description?: string;
9
- identity?: string;
10
+ identity: string;
10
11
  infraType?: string;
11
12
  infras?: string[];
13
+ kind?: string;
12
14
  links?: FaultLink[];
13
- name?: string;
15
+ name: string;
14
16
  permissionsRequired?: string;
15
17
  spec?: FaulttemplateSpec;
16
18
  tags?: string[];
@@ -3,15 +3,17 @@ import type { FaulttemplateSpec } from '../schemas/FaulttemplateSpec';
3
3
  import type { TemplateVariableMinimum } from '../schemas/TemplateVariableMinimum';
4
4
  import type { TemplateVariable } from '../schemas/TemplateVariable';
5
5
  export interface ChaosfaultGetFaultResponse {
6
+ apiVersion?: string;
6
7
  category?: string[];
7
8
  correlationID?: string;
8
9
  description?: string;
9
- identity?: string;
10
+ identity: string;
10
11
  infraType?: string;
11
12
  infras?: string[];
12
13
  isEnterprise?: boolean;
14
+ kind?: string;
13
15
  links?: FaultLink[];
14
- name?: string;
16
+ name: string;
15
17
  permissionsRequired?: string;
16
18
  spec?: FaulttemplateSpec;
17
19
  tags?: string[];
@@ -3,13 +3,15 @@ import type { FaulttemplateSpec } from '../schemas/FaulttemplateSpec';
3
3
  import type { TemplateVariableMinimum } from '../schemas/TemplateVariableMinimum';
4
4
  import type { TemplateVariable } from '../schemas/TemplateVariable';
5
5
  export interface ChaosfaultUpdateFaultRequest {
6
+ apiVersion?: string;
6
7
  category?: string[];
7
8
  description?: string;
8
- identity?: string;
9
+ identity: string;
9
10
  infraType?: string;
10
11
  infras?: string[];
12
+ kind?: string;
11
13
  links?: FaultLink[];
12
- name?: string;
14
+ name: string;
13
15
  permissionsRequired?: string;
14
16
  spec?: FaulttemplateSpec;
15
17
  tags?: string[];
@@ -3,14 +3,16 @@ import type { FaulttemplateSpec } from '../schemas/FaulttemplateSpec';
3
3
  import type { TemplateVariableMinimum } from '../schemas/TemplateVariableMinimum';
4
4
  import type { TemplateVariable } from '../schemas/TemplateVariable';
5
5
  export interface ChaosfaultUpdateFaultResponse {
6
+ apiVersion?: string;
6
7
  category?: string[];
7
8
  correlationID?: string;
8
9
  description?: string;
9
- identity?: string;
10
+ identity: string;
10
11
  infraType?: string;
11
12
  infras?: string[];
13
+ kind?: string;
12
14
  links?: FaultLink[];
13
- name?: string;
15
+ name: string;
14
16
  permissionsRequired?: string;
15
17
  spec?: FaulttemplateSpec;
16
18
  tags?: string[];
@@ -8,7 +8,9 @@ export interface ChaosfaulttemplateActionTemplate {
8
8
  hubRef?: string;
9
9
  identity?: string;
10
10
  infrastructureType?: ActionsInfrastructureType;
11
+ isDefault?: boolean;
11
12
  name: string;
13
+ revision?: number;
12
14
  runProperties?: ActionActionTemplateRunProperties;
13
15
  tags?: string[];
14
16
  type?: string;