@harnessio/react-template-service-client 0.10.0 → 0.11.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.
- package/dist/template-service/src/services/hooks/useGetTemplateSchemaQuery.d.ts +1 -1
- package/dist/template-service/src/services/hooks/useGetTemplatesListAccQuery.d.ts +1 -1
- package/dist/template-service/src/services/hooks/useGetTemplatesListOrgQuery.d.ts +1 -1
- package/dist/template-service/src/services/hooks/useGetTemplatesListProjectQuery.d.ts +1 -1
- package/dist/template-service/src/services/schemas/TemplateMetadataSummaryResponse.d.ts +1 -1
- package/dist/template-service/src/services/schemas/TemplateResponse.d.ts +1 -1
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ import type { TemplateSchemaResponseResponse } from '../responses/TemplateSchema
|
|
|
3
3
|
import type { ResponseWithPagination } from '../helpers';
|
|
4
4
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
5
|
export interface GetTemplateSchemaQueryQueryParams {
|
|
6
|
-
node_group?: 'artifactsource' | 'artifactsourcetemplate' | 'customdeployment' | 'group' | 'monitoredservice' | 'notification' | 'pipeline' | 'secretmanager' | 'stage' | 'step' | 'stepgroup' | 'template' | 'workspace';
|
|
6
|
+
node_group?: 'agent' | 'artifactsource' | 'artifactsourcetemplate' | 'customdeployment' | 'group' | 'monitoredservice' | 'notification' | 'pipeline' | 'secretmanager' | 'stage' | 'step' | 'stepgroup' | 'template' | 'workspace';
|
|
7
7
|
node_type?: string;
|
|
8
8
|
/**
|
|
9
9
|
* @default "v0"
|
|
@@ -19,7 +19,7 @@ export interface GetTemplatesListAccQueryQueryParams {
|
|
|
19
19
|
names?: string[];
|
|
20
20
|
identifiers?: string[];
|
|
21
21
|
description?: string;
|
|
22
|
-
entity_types?: Array<'CustomDeployment' | 'MonitoredService' | 'Pipeline' | 'SecretManager' | 'Stage' | 'Step' | 'StepGroup'>;
|
|
22
|
+
entity_types?: Array<'Agent' | 'CustomDeployment' | 'MonitoredService' | 'Pipeline' | 'SecretManager' | 'Stage' | 'Step' | 'StepGroup'>;
|
|
23
23
|
child_types?: string[];
|
|
24
24
|
global_template?: boolean;
|
|
25
25
|
/**
|
|
@@ -22,7 +22,7 @@ export interface GetTemplatesListOrgQueryQueryParams {
|
|
|
22
22
|
names?: string[];
|
|
23
23
|
identifiers?: string[];
|
|
24
24
|
description?: string;
|
|
25
|
-
entity_types?: Array<'CustomDeployment' | 'MonitoredService' | 'Pipeline' | 'SecretManager' | 'Stage' | 'Step' | 'StepGroup'>;
|
|
25
|
+
entity_types?: Array<'Agent' | 'CustomDeployment' | 'MonitoredService' | 'Pipeline' | 'SecretManager' | 'Stage' | 'Step' | 'StepGroup'>;
|
|
26
26
|
child_types?: string[];
|
|
27
27
|
}
|
|
28
28
|
export interface GetTemplatesListOrgQueryHeaderParams {
|
|
@@ -23,7 +23,7 @@ export interface GetTemplatesListProjectQueryQueryParams {
|
|
|
23
23
|
names?: string[];
|
|
24
24
|
identifiers?: string[];
|
|
25
25
|
description?: string;
|
|
26
|
-
entity_types?: Array<'CustomDeployment' | 'MonitoredService' | 'Pipeline' | 'SecretManager' | 'Stage' | 'Step' | 'StepGroup'>;
|
|
26
|
+
entity_types?: Array<'Agent' | 'CustomDeployment' | 'MonitoredService' | 'Pipeline' | 'SecretManager' | 'Stage' | 'Step' | 'StepGroup'>;
|
|
27
27
|
child_types?: string[];
|
|
28
28
|
}
|
|
29
29
|
export interface GetTemplatesListProjectQueryHeaderParams {
|
|
@@ -23,7 +23,7 @@ export interface TemplateMetadataSummaryResponse {
|
|
|
23
23
|
* Type of Template
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
|
-
entity_type?: 'CustomDeployment' | 'MonitoredService' | 'Pipeline' | 'SecretManager' | 'Stage' | 'Step' | 'StepGroup';
|
|
26
|
+
entity_type?: 'Agent' | 'CustomDeployment' | 'MonitoredService' | 'Pipeline' | 'SecretManager' | 'Stage' | 'Step' | 'StepGroup';
|
|
27
27
|
git_details?: EntityGitDetails;
|
|
28
28
|
/**
|
|
29
29
|
* Name of an icon of corresponding template
|
|
@@ -24,7 +24,7 @@ export interface TemplateResponse {
|
|
|
24
24
|
* Type of Template
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
|
-
entity_type?: 'CustomDeployment' | 'MonitoredService' | 'Pipeline' | 'SecretManager' | 'Stage' | 'Step' | 'StepGroup';
|
|
27
|
+
entity_type?: 'Agent' | 'CustomDeployment' | 'MonitoredService' | 'Pipeline' | 'SecretManager' | 'Stage' | 'Step' | 'StepGroup';
|
|
28
28
|
git_details?: EntityGitDetails;
|
|
29
29
|
governance_metadata?: TemplateGovernanceMetadata;
|
|
30
30
|
/**
|
package/package.json
CHANGED