@harnessio/react-template-service-client 0.3.0 → 0.3.1

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.
@@ -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'>;
22
+ entity_types?: Array<'CustomDeployment' | 'MonitoredService' | 'Pipeline' | 'SecretManager' | 'Stage' | 'Step' | 'StepGroup'>;
23
23
  child_types?: string[];
24
24
  }
25
25
  export interface GetTemplatesListAccQueryHeaderParams {
@@ -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'>;
25
+ entity_types?: Array<'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'>;
26
+ entity_types?: Array<'CustomDeployment' | 'MonitoredService' | 'Pipeline' | 'SecretManager' | 'Stage' | 'Step' | 'StepGroup'>;
27
27
  child_types?: string[];
28
28
  }
29
29
  export interface GetTemplatesListProjectQueryHeaderParams {
@@ -1,7 +1,7 @@
1
1
  export interface FixedValueFieldDependencyDetailsDto {
2
2
  field_input_type?: string;
3
- field_name?: string;
4
3
  field_value?: {
5
4
  [key: string]: any;
6
5
  };
6
+ path?: string;
7
7
  }
@@ -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';
26
+ entity_type?: 'CustomDeployment' | 'MonitoredService' | 'Pipeline' | 'SecretManager' | 'Stage' | 'Step' | 'StepGroup';
27
27
  git_details?: EntityGitDetails;
28
28
  /**
29
29
  * Template identifier
@@ -23,7 +23,7 @@ export interface TemplateResponse {
23
23
  * Type of Template
24
24
  *
25
25
  */
26
- entity_type?: 'CustomDeployment' | 'MonitoredService' | 'Pipeline' | 'SecretManager' | 'Stage' | 'Step';
26
+ entity_type?: 'CustomDeployment' | 'MonitoredService' | 'Pipeline' | 'SecretManager' | 'Stage' | 'Step' | 'StepGroup';
27
27
  git_details?: EntityGitDetails;
28
28
  /**
29
29
  * Template identifier
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-template-service-client",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Harness React template service client - Template APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",
@@ -27,8 +27,5 @@
27
27
  "build": "yarn generate && tsc",
28
28
  "generate": "oats import --config='./oats.config.ts'",
29
29
  "fmt": "prettier --write ./index.ts"
30
- },
31
- "engines": {
32
- "node": "^16"
33
30
  }
34
31
  }