octopian-apis 1.0.62 → 1.0.63

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "octopian-apis",
3
- "version": "1.0.62",
3
+ "version": "1.0.63",
4
4
  "description": "Transaction APIs SDK that implements Octopian Services which will be used for any node project typescript or javascript",
5
5
  "main": "./src/index.js",
6
6
  "scripts": {
@@ -10,8 +10,13 @@ export interface RequesterAddRequestInput {
10
10
  ClientRequestAttributeDtos?: ClientRequestAttributeDto[]
11
11
  RequestLanguageCode?: string
12
12
  DynamicStepList?: DynamicStepList[]
13
+ ChildRequestList?: ChildRequestList[]
13
14
  }
14
15
 
16
+ export interface ChildRequestList {
17
+ ClientRequestAttributeDtos: ClientRequestAttributeDto[]
18
+ }
19
+
15
20
  export interface DynamicStepList {
16
21
  StepTypeName: string
17
22
  StepName: string
@@ -14,4 +14,5 @@ export interface GetServicesInput {
14
14
  ComplexityMode?: number
15
15
  HierarchyMode?: number
16
16
  IsFavorite?: boolean
17
+ IsCombined?: boolean | null
17
18
  }