@io-orkes/conductor-javascript 2.1.3-alpha1 → 2.1.3-alpha2

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/index.mjs CHANGED
@@ -1859,7 +1859,7 @@ var HumanTaskService = class {
1859
1859
  method: "DELETE",
1860
1860
  url: "/human/tasks/delete/{taskId}",
1861
1861
  path: {
1862
- "taskId": taskId
1862
+ taskId
1863
1863
  }
1864
1864
  });
1865
1865
  }
@@ -1892,10 +1892,10 @@ var HumanTaskService = class {
1892
1892
  method: "POST",
1893
1893
  url: "/human/tasks/update/taskRef",
1894
1894
  query: {
1895
- "workflowId": workflowId,
1896
- "taskRefName": taskRefName,
1897
- "complete": complete,
1898
- "iteration": iteration
1895
+ workflowId,
1896
+ taskRefName,
1897
+ complete,
1898
+ iteration
1899
1899
  },
1900
1900
  body: requestBody,
1901
1901
  mediaType: "application/json"
@@ -1912,7 +1912,9 @@ var HumanTaskService = class {
1912
1912
  method: "GET",
1913
1913
  url: "/human/tasks/{taskId}",
1914
1914
  path: {
1915
- "taskId": taskId,
1915
+ taskId
1916
+ },
1917
+ query: {
1916
1918
  withTemplate
1917
1919
  }
1918
1920
  });
@@ -1929,11 +1931,11 @@ var HumanTaskService = class {
1929
1931
  method: "POST",
1930
1932
  url: "/human/tasks/{taskId}/claim",
1931
1933
  path: {
1932
- "taskId": taskId
1934
+ taskId
1933
1935
  },
1934
1936
  query: {
1935
- "overrideAssignment": overrideAssignment,
1936
- "withTemplate": withTemplate
1937
+ overrideAssignment,
1938
+ withTemplate
1937
1939
  }
1938
1940
  });
1939
1941
  }
@@ -1950,12 +1952,12 @@ var HumanTaskService = class {
1950
1952
  method: "POST",
1951
1953
  url: "/human/tasks/{taskId}/externalUser/{userId}",
1952
1954
  path: {
1953
- "taskId": taskId,
1954
- "userId": userId
1955
+ taskId,
1956
+ userId
1955
1957
  },
1956
1958
  query: {
1957
- "overrideAssignment": overrideAssignment,
1958
- "withTemplate": withTemplate
1959
+ overrideAssignment,
1960
+ withTemplate
1959
1961
  }
1960
1962
  });
1961
1963
  }
@@ -1971,7 +1973,7 @@ var HumanTaskService = class {
1971
1973
  method: "POST",
1972
1974
  url: "/human/tasks/{taskId}/reassign",
1973
1975
  path: {
1974
- "taskId": taskId
1976
+ taskId
1975
1977
  },
1976
1978
  body: requestBody,
1977
1979
  mediaType: "application/json"
@@ -1988,7 +1990,7 @@ var HumanTaskService = class {
1988
1990
  method: "POST",
1989
1991
  url: "/human/tasks/{taskId}/release",
1990
1992
  path: {
1991
- "taskId": taskId
1993
+ taskId
1992
1994
  }
1993
1995
  });
1994
1996
  }
@@ -2004,10 +2006,10 @@ var HumanTaskService = class {
2004
2006
  method: "POST",
2005
2007
  url: "/human/tasks/{taskId}/skip",
2006
2008
  path: {
2007
- "taskId": taskId
2009
+ taskId
2008
2010
  },
2009
2011
  query: {
2010
- "reason": reason
2012
+ reason
2011
2013
  }
2012
2014
  });
2013
2015
  }
@@ -2024,10 +2026,10 @@ var HumanTaskService = class {
2024
2026
  method: "POST",
2025
2027
  url: "/human/tasks/{taskId}/update",
2026
2028
  path: {
2027
- "taskId": taskId
2029
+ taskId
2028
2030
  },
2029
2031
  query: {
2030
- "complete": complete
2032
+ complete
2031
2033
  },
2032
2034
  body: requestBody,
2033
2035
  mediaType: "application/json"
@@ -2045,8 +2047,8 @@ var HumanTaskService = class {
2045
2047
  method: "GET",
2046
2048
  url: "/human/template",
2047
2049
  query: {
2048
- "name": name,
2049
- "version": version
2050
+ name,
2051
+ version
2050
2052
  }
2051
2053
  });
2052
2054
  }
@@ -2062,7 +2064,7 @@ var HumanTaskService = class {
2062
2064
  method: "POST",
2063
2065
  url: "/human/template",
2064
2066
  query: {
2065
- "newVersion": newVersion
2067
+ newVersion
2066
2068
  },
2067
2069
  body: requestBody,
2068
2070
  mediaType: "application/json"
@@ -2080,7 +2082,7 @@ var HumanTaskService = class {
2080
2082
  method: "POST",
2081
2083
  url: "/human/template/bulk",
2082
2084
  query: {
2083
- "newVersion": newVersion
2085
+ newVersion
2084
2086
  },
2085
2087
  body: requestBody,
2086
2088
  mediaType: "application/json"
@@ -2097,7 +2099,7 @@ var HumanTaskService = class {
2097
2099
  method: "DELETE",
2098
2100
  url: "/human/template/{name}",
2099
2101
  path: {
2100
- "name": name
2102
+ name
2101
2103
  }
2102
2104
  });
2103
2105
  }
@@ -2113,8 +2115,8 @@ var HumanTaskService = class {
2113
2115
  method: "DELETE",
2114
2116
  url: "/human/template/{name}/{version}",
2115
2117
  path: {
2116
- "name": name,
2117
- "version": version
2118
+ name,
2119
+ version
2118
2120
  }
2119
2121
  });
2120
2122
  }
@@ -2130,8 +2132,8 @@ var HumanTaskService = class {
2130
2132
  method: "GET",
2131
2133
  url: "/human/template/{name}/{version}",
2132
2134
  path: {
2133
- "name": name,
2134
- "version": version
2135
+ name,
2136
+ version
2135
2137
  }
2136
2138
  });
2137
2139
  }