@aws-sdk/client-swf 3.32.0 → 3.36.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 (434) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/{dist/cjs → dist-cjs}/SWF.js +1 -2
  3. package/{dist/cjs → dist-cjs}/SWFClient.js +8 -9
  4. package/{dist/cjs → dist-cjs}/commands/CountClosedWorkflowExecutionsCommand.js +2 -3
  5. package/{dist/cjs → dist-cjs}/commands/CountOpenWorkflowExecutionsCommand.js +2 -3
  6. package/{dist/cjs → dist-cjs}/commands/CountPendingActivityTasksCommand.js +2 -3
  7. package/{dist/cjs → dist-cjs}/commands/CountPendingDecisionTasksCommand.js +2 -3
  8. package/{dist/cjs → dist-cjs}/commands/DeprecateActivityTypeCommand.js +2 -3
  9. package/{dist/cjs → dist-cjs}/commands/DeprecateDomainCommand.js +2 -3
  10. package/{dist/cjs → dist-cjs}/commands/DeprecateWorkflowTypeCommand.js +2 -3
  11. package/{dist/cjs → dist-cjs}/commands/DescribeActivityTypeCommand.js +2 -3
  12. package/{dist/cjs → dist-cjs}/commands/DescribeDomainCommand.js +2 -3
  13. package/{dist/cjs → dist-cjs}/commands/DescribeWorkflowExecutionCommand.js +2 -3
  14. package/{dist/cjs → dist-cjs}/commands/DescribeWorkflowTypeCommand.js +2 -3
  15. package/{dist/cjs → dist-cjs}/commands/GetWorkflowExecutionHistoryCommand.js +2 -3
  16. package/{dist/cjs → dist-cjs}/commands/ListActivityTypesCommand.js +2 -3
  17. package/{dist/cjs → dist-cjs}/commands/ListClosedWorkflowExecutionsCommand.js +2 -3
  18. package/{dist/cjs → dist-cjs}/commands/ListDomainsCommand.js +2 -3
  19. package/{dist/cjs → dist-cjs}/commands/ListOpenWorkflowExecutionsCommand.js +2 -3
  20. package/{dist/cjs → dist-cjs}/commands/ListTagsForResourceCommand.js +2 -3
  21. package/{dist/cjs → dist-cjs}/commands/ListWorkflowTypesCommand.js +2 -3
  22. package/{dist/cjs → dist-cjs}/commands/PollForActivityTaskCommand.js +2 -3
  23. package/{dist/cjs → dist-cjs}/commands/PollForDecisionTaskCommand.js +2 -3
  24. package/{dist/cjs → dist-cjs}/commands/RecordActivityTaskHeartbeatCommand.js +2 -3
  25. package/{dist/cjs → dist-cjs}/commands/RegisterActivityTypeCommand.js +2 -3
  26. package/{dist/cjs → dist-cjs}/commands/RegisterDomainCommand.js +2 -3
  27. package/{dist/cjs → dist-cjs}/commands/RegisterWorkflowTypeCommand.js +2 -3
  28. package/{dist/cjs → dist-cjs}/commands/RequestCancelWorkflowExecutionCommand.js +2 -3
  29. package/{dist/cjs → dist-cjs}/commands/RespondActivityTaskCanceledCommand.js +2 -3
  30. package/{dist/cjs → dist-cjs}/commands/RespondActivityTaskCompletedCommand.js +2 -3
  31. package/{dist/cjs → dist-cjs}/commands/RespondActivityTaskFailedCommand.js +2 -3
  32. package/{dist/cjs → dist-cjs}/commands/RespondDecisionTaskCompletedCommand.js +2 -3
  33. package/{dist/cjs → dist-cjs}/commands/SignalWorkflowExecutionCommand.js +2 -3
  34. package/{dist/cjs → dist-cjs}/commands/StartWorkflowExecutionCommand.js +2 -3
  35. package/{dist/cjs → dist-cjs}/commands/TagResourceCommand.js +2 -3
  36. package/{dist/cjs → dist-cjs}/commands/TerminateWorkflowExecutionCommand.js +2 -3
  37. package/{dist/cjs → dist-cjs}/commands/UndeprecateActivityTypeCommand.js +2 -3
  38. package/{dist/cjs → dist-cjs}/commands/UndeprecateDomainCommand.js +2 -3
  39. package/{dist/cjs → dist-cjs}/commands/UndeprecateWorkflowTypeCommand.js +2 -3
  40. package/{dist/cjs → dist-cjs}/commands/UntagResourceCommand.js +2 -3
  41. package/{dist/cjs → dist-cjs}/endpoints.js +0 -1
  42. package/{dist/cjs → dist-cjs}/index.js +0 -1
  43. package/{dist/cjs → dist-cjs}/models/index.js +0 -1
  44. package/{dist/cjs → dist-cjs}/models/models_0.js +0 -1
  45. package/{dist/cjs → dist-cjs}/pagination/GetWorkflowExecutionHistoryPaginator.js +1 -2
  46. package/{dist/cjs → dist-cjs}/pagination/Interfaces.js +0 -1
  47. package/{dist/cjs → dist-cjs}/pagination/ListActivityTypesPaginator.js +1 -2
  48. package/{dist/cjs → dist-cjs}/pagination/ListClosedWorkflowExecutionsPaginator.js +1 -2
  49. package/{dist/cjs → dist-cjs}/pagination/ListDomainsPaginator.js +1 -2
  50. package/{dist/cjs → dist-cjs}/pagination/ListOpenWorkflowExecutionsPaginator.js +1 -2
  51. package/{dist/cjs → dist-cjs}/pagination/ListWorkflowTypesPaginator.js +1 -2
  52. package/{dist/cjs → dist-cjs}/pagination/PollForDecisionTaskPaginator.js +1 -2
  53. package/{dist/cjs → dist-cjs}/protocols/Aws_json1_0.js +0 -1
  54. package/{dist/cjs → dist-cjs}/runtimeConfig.browser.js +2 -2
  55. package/{dist/cjs → dist-cjs}/runtimeConfig.js +2 -2
  56. package/{dist/cjs → dist-cjs}/runtimeConfig.native.js +0 -1
  57. package/{dist/cjs → dist-cjs}/runtimeConfig.shared.js +1 -2
  58. package/{dist/es → dist-es}/SWF.js +2 -21
  59. package/{dist/es → dist-es}/SWFClient.js +2 -26
  60. package/dist-es/commands/CountClosedWorkflowExecutionsCommand.js +39 -0
  61. package/dist-es/commands/CountOpenWorkflowExecutionsCommand.js +39 -0
  62. package/dist-es/commands/CountPendingActivityTasksCommand.js +39 -0
  63. package/dist-es/commands/CountPendingDecisionTasksCommand.js +39 -0
  64. package/dist-es/commands/DeprecateActivityTypeCommand.js +39 -0
  65. package/dist-es/commands/DeprecateDomainCommand.js +39 -0
  66. package/dist-es/commands/DeprecateWorkflowTypeCommand.js +39 -0
  67. package/dist-es/commands/DescribeActivityTypeCommand.js +39 -0
  68. package/dist-es/commands/DescribeDomainCommand.js +39 -0
  69. package/dist-es/commands/DescribeWorkflowExecutionCommand.js +39 -0
  70. package/dist-es/commands/DescribeWorkflowTypeCommand.js +39 -0
  71. package/dist-es/commands/GetWorkflowExecutionHistoryCommand.js +39 -0
  72. package/dist-es/commands/ListActivityTypesCommand.js +39 -0
  73. package/dist-es/commands/ListClosedWorkflowExecutionsCommand.js +39 -0
  74. package/dist-es/commands/ListDomainsCommand.js +39 -0
  75. package/dist-es/commands/ListOpenWorkflowExecutionsCommand.js +39 -0
  76. package/{dist/es → dist-es}/commands/ListTagsForResourceCommand.js +4 -30
  77. package/dist-es/commands/ListWorkflowTypesCommand.js +39 -0
  78. package/dist-es/commands/PollForActivityTaskCommand.js +39 -0
  79. package/dist-es/commands/PollForDecisionTaskCommand.js +39 -0
  80. package/dist-es/commands/RecordActivityTaskHeartbeatCommand.js +39 -0
  81. package/dist-es/commands/RegisterActivityTypeCommand.js +39 -0
  82. package/dist-es/commands/RegisterDomainCommand.js +39 -0
  83. package/dist-es/commands/RegisterWorkflowTypeCommand.js +39 -0
  84. package/dist-es/commands/RequestCancelWorkflowExecutionCommand.js +39 -0
  85. package/dist-es/commands/RespondActivityTaskCanceledCommand.js +39 -0
  86. package/dist-es/commands/RespondActivityTaskCompletedCommand.js +39 -0
  87. package/dist-es/commands/RespondActivityTaskFailedCommand.js +39 -0
  88. package/dist-es/commands/RespondDecisionTaskCompletedCommand.js +39 -0
  89. package/dist-es/commands/SignalWorkflowExecutionCommand.js +39 -0
  90. package/dist-es/commands/StartWorkflowExecutionCommand.js +39 -0
  91. package/{dist/es → dist-es}/commands/TagResourceCommand.js +4 -33
  92. package/dist-es/commands/TerminateWorkflowExecutionCommand.js +39 -0
  93. package/dist-es/commands/UndeprecateActivityTypeCommand.js +39 -0
  94. package/dist-es/commands/UndeprecateDomainCommand.js +39 -0
  95. package/dist-es/commands/UndeprecateWorkflowTypeCommand.js +39 -0
  96. package/{dist/es → dist-es}/commands/UntagResourceCommand.js +4 -30
  97. package/{dist/es → dist-es}/endpoints.js +1 -2
  98. package/{dist/types/index.d.ts → dist-es/index.js} +0 -0
  99. package/{dist/types/models/index.d.ts → dist-es/models/index.js} +0 -0
  100. package/{dist/es → dist-es}/models/models_0.js +0 -454
  101. package/{dist/es → dist-es}/pagination/GetWorkflowExecutionHistoryPaginator.js +17 -30
  102. package/dist-es/pagination/Interfaces.js +1 -0
  103. package/{dist/es → dist-es}/pagination/ListActivityTypesPaginator.js +17 -30
  104. package/{dist/es → dist-es}/pagination/ListClosedWorkflowExecutionsPaginator.js +17 -30
  105. package/{dist/es → dist-es}/pagination/ListDomainsPaginator.js +17 -30
  106. package/{dist/es → dist-es}/pagination/ListOpenWorkflowExecutionsPaginator.js +17 -30
  107. package/{dist/es → dist-es}/pagination/ListWorkflowTypesPaginator.js +17 -30
  108. package/{dist/es → dist-es}/pagination/PollForDecisionTaskPaginator.js +17 -30
  109. package/{dist/es → dist-es}/protocols/Aws_json1_0.js +651 -657
  110. package/{dist/es → dist-es}/runtimeConfig.browser.js +1 -5
  111. package/{dist/es → dist-es}/runtimeConfig.js +1 -5
  112. package/{dist/es → dist-es}/runtimeConfig.native.js +0 -4
  113. package/{dist/es → dist-es}/runtimeConfig.shared.js +1 -5
  114. package/{dist/types → dist-types}/SWF.d.ts +2 -2
  115. package/{dist/types → dist-types}/SWFClient.d.ts +8 -8
  116. package/{dist/types → dist-types}/commands/CountClosedWorkflowExecutionsCommand.d.ts +3 -3
  117. package/{dist/types → dist-types}/commands/CountOpenWorkflowExecutionsCommand.d.ts +3 -3
  118. package/{dist/types → dist-types}/commands/CountPendingActivityTasksCommand.d.ts +3 -3
  119. package/{dist/types → dist-types}/commands/CountPendingDecisionTasksCommand.d.ts +3 -3
  120. package/{dist/types → dist-types}/commands/DeprecateActivityTypeCommand.d.ts +3 -3
  121. package/{dist/types → dist-types}/commands/DeprecateDomainCommand.d.ts +3 -3
  122. package/{dist/types → dist-types}/commands/DeprecateWorkflowTypeCommand.d.ts +3 -3
  123. package/{dist/types → dist-types}/commands/DescribeActivityTypeCommand.d.ts +3 -3
  124. package/{dist/types → dist-types}/commands/DescribeDomainCommand.d.ts +3 -3
  125. package/{dist/types → dist-types}/commands/DescribeWorkflowExecutionCommand.d.ts +3 -3
  126. package/{dist/types → dist-types}/commands/DescribeWorkflowTypeCommand.d.ts +3 -3
  127. package/{dist/types → dist-types}/commands/GetWorkflowExecutionHistoryCommand.d.ts +3 -3
  128. package/{dist/types → dist-types}/commands/ListActivityTypesCommand.d.ts +3 -3
  129. package/{dist/types → dist-types}/commands/ListClosedWorkflowExecutionsCommand.d.ts +3 -3
  130. package/{dist/types → dist-types}/commands/ListDomainsCommand.d.ts +3 -3
  131. package/{dist/types → dist-types}/commands/ListOpenWorkflowExecutionsCommand.d.ts +3 -3
  132. package/{dist/types → dist-types}/commands/ListTagsForResourceCommand.d.ts +3 -3
  133. package/{dist/types → dist-types}/commands/ListWorkflowTypesCommand.d.ts +3 -3
  134. package/{dist/types → dist-types}/commands/PollForActivityTaskCommand.d.ts +3 -3
  135. package/{dist/types → dist-types}/commands/PollForDecisionTaskCommand.d.ts +3 -3
  136. package/{dist/types → dist-types}/commands/RecordActivityTaskHeartbeatCommand.d.ts +3 -3
  137. package/{dist/types → dist-types}/commands/RegisterActivityTypeCommand.d.ts +3 -3
  138. package/{dist/types → dist-types}/commands/RegisterDomainCommand.d.ts +3 -3
  139. package/{dist/types → dist-types}/commands/RegisterWorkflowTypeCommand.d.ts +3 -3
  140. package/{dist/types → dist-types}/commands/RequestCancelWorkflowExecutionCommand.d.ts +3 -3
  141. package/{dist/types → dist-types}/commands/RespondActivityTaskCanceledCommand.d.ts +3 -3
  142. package/{dist/types → dist-types}/commands/RespondActivityTaskCompletedCommand.d.ts +3 -3
  143. package/{dist/types → dist-types}/commands/RespondActivityTaskFailedCommand.d.ts +3 -3
  144. package/{dist/types → dist-types}/commands/RespondDecisionTaskCompletedCommand.d.ts +3 -3
  145. package/{dist/types → dist-types}/commands/SignalWorkflowExecutionCommand.d.ts +3 -3
  146. package/{dist/types → dist-types}/commands/StartWorkflowExecutionCommand.d.ts +3 -3
  147. package/{dist/types → dist-types}/commands/TagResourceCommand.d.ts +3 -3
  148. package/{dist/types → dist-types}/commands/TerminateWorkflowExecutionCommand.d.ts +3 -3
  149. package/{dist/types → dist-types}/commands/UndeprecateActivityTypeCommand.d.ts +3 -3
  150. package/{dist/types → dist-types}/commands/UndeprecateDomainCommand.d.ts +3 -3
  151. package/{dist/types → dist-types}/commands/UndeprecateWorkflowTypeCommand.d.ts +3 -3
  152. package/{dist/types → dist-types}/commands/UntagResourceCommand.d.ts +3 -3
  153. package/{dist/types → dist-types}/endpoints.d.ts +0 -0
  154. package/{index.ts → dist-types/index.d.ts} +0 -0
  155. package/{models/index.ts → dist-types/models/index.d.ts} +0 -0
  156. package/{dist/types → dist-types}/models/models_0.d.ts +0 -0
  157. package/{dist/types → dist-types}/pagination/GetWorkflowExecutionHistoryPaginator.d.ts +1 -1
  158. package/{dist/types → dist-types}/pagination/Interfaces.d.ts +1 -1
  159. package/{dist/types → dist-types}/pagination/ListActivityTypesPaginator.d.ts +1 -1
  160. package/{dist/types → dist-types}/pagination/ListClosedWorkflowExecutionsPaginator.d.ts +1 -1
  161. package/{dist/types → dist-types}/pagination/ListDomainsPaginator.d.ts +1 -1
  162. package/{dist/types → dist-types}/pagination/ListOpenWorkflowExecutionsPaginator.d.ts +1 -1
  163. package/{dist/types → dist-types}/pagination/ListWorkflowTypesPaginator.d.ts +1 -1
  164. package/{dist/types → dist-types}/pagination/PollForDecisionTaskPaginator.d.ts +1 -1
  165. package/{dist/types → dist-types}/protocols/Aws_json1_0.d.ts +2 -2
  166. package/{dist/types → dist-types}/runtimeConfig.browser.d.ts +1 -0
  167. package/{dist/types/ts3.4 → dist-types}/runtimeConfig.d.ts +37 -36
  168. package/{dist/types/ts3.4 → dist-types}/runtimeConfig.native.d.ts +36 -35
  169. package/{dist/types → dist-types}/runtimeConfig.shared.d.ts +0 -0
  170. package/{dist/types → dist-types}/ts3.4/SWF.d.ts +2 -2
  171. package/{dist/types → dist-types}/ts3.4/SWFClient.d.ts +8 -8
  172. package/{dist/types → dist-types}/ts3.4/commands/CountClosedWorkflowExecutionsCommand.d.ts +3 -3
  173. package/{dist/types → dist-types}/ts3.4/commands/CountOpenWorkflowExecutionsCommand.d.ts +3 -3
  174. package/{dist/types → dist-types}/ts3.4/commands/CountPendingActivityTasksCommand.d.ts +3 -3
  175. package/{dist/types → dist-types}/ts3.4/commands/CountPendingDecisionTasksCommand.d.ts +3 -3
  176. package/{dist/types → dist-types}/ts3.4/commands/DeprecateActivityTypeCommand.d.ts +3 -3
  177. package/{dist/types → dist-types}/ts3.4/commands/DeprecateDomainCommand.d.ts +3 -3
  178. package/{dist/types → dist-types}/ts3.4/commands/DeprecateWorkflowTypeCommand.d.ts +3 -3
  179. package/{dist/types → dist-types}/ts3.4/commands/DescribeActivityTypeCommand.d.ts +3 -3
  180. package/{dist/types → dist-types}/ts3.4/commands/DescribeDomainCommand.d.ts +3 -3
  181. package/{dist/types → dist-types}/ts3.4/commands/DescribeWorkflowExecutionCommand.d.ts +3 -3
  182. package/{dist/types → dist-types}/ts3.4/commands/DescribeWorkflowTypeCommand.d.ts +3 -3
  183. package/{dist/types → dist-types}/ts3.4/commands/GetWorkflowExecutionHistoryCommand.d.ts +3 -3
  184. package/{dist/types → dist-types}/ts3.4/commands/ListActivityTypesCommand.d.ts +3 -3
  185. package/{dist/types → dist-types}/ts3.4/commands/ListClosedWorkflowExecutionsCommand.d.ts +3 -3
  186. package/{dist/types → dist-types}/ts3.4/commands/ListDomainsCommand.d.ts +3 -3
  187. package/{dist/types → dist-types}/ts3.4/commands/ListOpenWorkflowExecutionsCommand.d.ts +3 -3
  188. package/{dist/types → dist-types}/ts3.4/commands/ListTagsForResourceCommand.d.ts +3 -3
  189. package/{dist/types → dist-types}/ts3.4/commands/ListWorkflowTypesCommand.d.ts +3 -3
  190. package/{dist/types → dist-types}/ts3.4/commands/PollForActivityTaskCommand.d.ts +3 -3
  191. package/{dist/types → dist-types}/ts3.4/commands/PollForDecisionTaskCommand.d.ts +3 -3
  192. package/{dist/types → dist-types}/ts3.4/commands/RecordActivityTaskHeartbeatCommand.d.ts +3 -3
  193. package/{dist/types → dist-types}/ts3.4/commands/RegisterActivityTypeCommand.d.ts +3 -3
  194. package/{dist/types → dist-types}/ts3.4/commands/RegisterDomainCommand.d.ts +3 -3
  195. package/{dist/types → dist-types}/ts3.4/commands/RegisterWorkflowTypeCommand.d.ts +3 -3
  196. package/{dist/types → dist-types}/ts3.4/commands/RequestCancelWorkflowExecutionCommand.d.ts +3 -3
  197. package/{dist/types → dist-types}/ts3.4/commands/RespondActivityTaskCanceledCommand.d.ts +3 -3
  198. package/{dist/types → dist-types}/ts3.4/commands/RespondActivityTaskCompletedCommand.d.ts +3 -3
  199. package/{dist/types → dist-types}/ts3.4/commands/RespondActivityTaskFailedCommand.d.ts +3 -3
  200. package/{dist/types → dist-types}/ts3.4/commands/RespondDecisionTaskCompletedCommand.d.ts +3 -3
  201. package/{dist/types → dist-types}/ts3.4/commands/SignalWorkflowExecutionCommand.d.ts +3 -3
  202. package/{dist/types → dist-types}/ts3.4/commands/StartWorkflowExecutionCommand.d.ts +3 -3
  203. package/{dist/types → dist-types}/ts3.4/commands/TagResourceCommand.d.ts +3 -3
  204. package/{dist/types → dist-types}/ts3.4/commands/TerminateWorkflowExecutionCommand.d.ts +3 -3
  205. package/{dist/types → dist-types}/ts3.4/commands/UndeprecateActivityTypeCommand.d.ts +3 -3
  206. package/{dist/types → dist-types}/ts3.4/commands/UndeprecateDomainCommand.d.ts +3 -3
  207. package/{dist/types → dist-types}/ts3.4/commands/UndeprecateWorkflowTypeCommand.d.ts +3 -3
  208. package/{dist/types → dist-types}/ts3.4/commands/UntagResourceCommand.d.ts +3 -3
  209. package/{dist/types → dist-types}/ts3.4/endpoints.d.ts +0 -0
  210. package/{dist/types → dist-types}/ts3.4/index.d.ts +0 -0
  211. package/{dist/types → dist-types}/ts3.4/models/index.d.ts +0 -0
  212. package/{dist/types → dist-types}/ts3.4/models/models_0.d.ts +0 -0
  213. package/{dist/types → dist-types}/ts3.4/pagination/GetWorkflowExecutionHistoryPaginator.d.ts +1 -1
  214. package/{dist/types → dist-types}/ts3.4/pagination/Interfaces.d.ts +1 -1
  215. package/{dist/types → dist-types}/ts3.4/pagination/ListActivityTypesPaginator.d.ts +1 -1
  216. package/{dist/types → dist-types}/ts3.4/pagination/ListClosedWorkflowExecutionsPaginator.d.ts +1 -1
  217. package/{dist/types → dist-types}/ts3.4/pagination/ListDomainsPaginator.d.ts +1 -1
  218. package/{dist/types → dist-types}/ts3.4/pagination/ListOpenWorkflowExecutionsPaginator.d.ts +1 -1
  219. package/{dist/types → dist-types}/ts3.4/pagination/ListWorkflowTypesPaginator.d.ts +1 -1
  220. package/{dist/types → dist-types}/ts3.4/pagination/PollForDecisionTaskPaginator.d.ts +1 -1
  221. package/{dist/types → dist-types}/ts3.4/protocols/Aws_json1_0.d.ts +2 -2
  222. package/{dist/types → dist-types}/ts3.4/runtimeConfig.browser.d.ts +1 -0
  223. package/{dist/types → dist-types/ts3.4}/runtimeConfig.d.ts +37 -36
  224. package/{dist/types → dist-types/ts3.4}/runtimeConfig.native.d.ts +36 -35
  225. package/{dist/types → dist-types}/ts3.4/runtimeConfig.shared.d.ts +0 -0
  226. package/package.json +52 -49
  227. package/SWF.ts +0 -2639
  228. package/SWFClient.ts +0 -445
  229. package/commands/CountClosedWorkflowExecutionsCommand.ts +0 -143
  230. package/commands/CountOpenWorkflowExecutionsCommand.ts +0 -143
  231. package/commands/CountPendingActivityTasksCommand.ts +0 -124
  232. package/commands/CountPendingDecisionTasksCommand.ts +0 -124
  233. package/commands/DeprecateActivityTypeCommand.ts +0 -136
  234. package/commands/DeprecateDomainCommand.ts +0 -125
  235. package/commands/DeprecateWorkflowTypeCommand.ts +0 -137
  236. package/commands/DescribeActivityTypeCommand.ts +0 -132
  237. package/commands/DescribeDomainCommand.ts +0 -118
  238. package/commands/DescribeWorkflowExecutionCommand.ts +0 -125
  239. package/commands/DescribeWorkflowTypeCommand.ts +0 -132
  240. package/commands/GetWorkflowExecutionHistoryCommand.ts +0 -126
  241. package/commands/ListActivityTypesCommand.ts +0 -121
  242. package/commands/ListClosedWorkflowExecutionsCommand.ts +0 -144
  243. package/commands/ListDomainsCommand.ts +0 -125
  244. package/commands/ListOpenWorkflowExecutionsCommand.ts +0 -144
  245. package/commands/ListTagsForResourceCommand.ts +0 -94
  246. package/commands/ListWorkflowTypesCommand.ts +0 -118
  247. package/commands/PollForActivityTaskCommand.ts +0 -129
  248. package/commands/PollForDecisionTaskCommand.ts +0 -141
  249. package/commands/RecordActivityTaskHeartbeatCommand.ts +0 -144
  250. package/commands/RegisterActivityTypeCommand.ts +0 -140
  251. package/commands/RegisterDomainCommand.ts +0 -117
  252. package/commands/RegisterWorkflowTypeCommand.ts +0 -141
  253. package/commands/RequestCancelWorkflowExecutionCommand.ts +0 -138
  254. package/commands/RespondActivityTaskCanceledCommand.ts +0 -138
  255. package/commands/RespondActivityTaskCompletedCommand.ts +0 -136
  256. package/commands/RespondActivityTaskFailedCommand.ts +0 -129
  257. package/commands/RespondDecisionTaskCompletedCommand.ts +0 -116
  258. package/commands/SignalWorkflowExecutionCommand.ts +0 -132
  259. package/commands/StartWorkflowExecutionCommand.ts +0 -159
  260. package/commands/TagResourceCommand.ts +0 -97
  261. package/commands/TerminateWorkflowExecutionCommand.ts +0 -140
  262. package/commands/UndeprecateActivityTypeCommand.ts +0 -135
  263. package/commands/UndeprecateDomainCommand.ts +0 -122
  264. package/commands/UndeprecateWorkflowTypeCommand.ts +0 -135
  265. package/commands/UntagResourceCommand.ts +0 -94
  266. package/dist/cjs/SWF.js.map +0 -1
  267. package/dist/cjs/SWFClient.js.map +0 -1
  268. package/dist/cjs/commands/CountClosedWorkflowExecutionsCommand.js.map +0 -1
  269. package/dist/cjs/commands/CountOpenWorkflowExecutionsCommand.js.map +0 -1
  270. package/dist/cjs/commands/CountPendingActivityTasksCommand.js.map +0 -1
  271. package/dist/cjs/commands/CountPendingDecisionTasksCommand.js.map +0 -1
  272. package/dist/cjs/commands/DeprecateActivityTypeCommand.js.map +0 -1
  273. package/dist/cjs/commands/DeprecateDomainCommand.js.map +0 -1
  274. package/dist/cjs/commands/DeprecateWorkflowTypeCommand.js.map +0 -1
  275. package/dist/cjs/commands/DescribeActivityTypeCommand.js.map +0 -1
  276. package/dist/cjs/commands/DescribeDomainCommand.js.map +0 -1
  277. package/dist/cjs/commands/DescribeWorkflowExecutionCommand.js.map +0 -1
  278. package/dist/cjs/commands/DescribeWorkflowTypeCommand.js.map +0 -1
  279. package/dist/cjs/commands/GetWorkflowExecutionHistoryCommand.js.map +0 -1
  280. package/dist/cjs/commands/ListActivityTypesCommand.js.map +0 -1
  281. package/dist/cjs/commands/ListClosedWorkflowExecutionsCommand.js.map +0 -1
  282. package/dist/cjs/commands/ListDomainsCommand.js.map +0 -1
  283. package/dist/cjs/commands/ListOpenWorkflowExecutionsCommand.js.map +0 -1
  284. package/dist/cjs/commands/ListTagsForResourceCommand.js.map +0 -1
  285. package/dist/cjs/commands/ListWorkflowTypesCommand.js.map +0 -1
  286. package/dist/cjs/commands/PollForActivityTaskCommand.js.map +0 -1
  287. package/dist/cjs/commands/PollForDecisionTaskCommand.js.map +0 -1
  288. package/dist/cjs/commands/RecordActivityTaskHeartbeatCommand.js.map +0 -1
  289. package/dist/cjs/commands/RegisterActivityTypeCommand.js.map +0 -1
  290. package/dist/cjs/commands/RegisterDomainCommand.js.map +0 -1
  291. package/dist/cjs/commands/RegisterWorkflowTypeCommand.js.map +0 -1
  292. package/dist/cjs/commands/RequestCancelWorkflowExecutionCommand.js.map +0 -1
  293. package/dist/cjs/commands/RespondActivityTaskCanceledCommand.js.map +0 -1
  294. package/dist/cjs/commands/RespondActivityTaskCompletedCommand.js.map +0 -1
  295. package/dist/cjs/commands/RespondActivityTaskFailedCommand.js.map +0 -1
  296. package/dist/cjs/commands/RespondDecisionTaskCompletedCommand.js.map +0 -1
  297. package/dist/cjs/commands/SignalWorkflowExecutionCommand.js.map +0 -1
  298. package/dist/cjs/commands/StartWorkflowExecutionCommand.js.map +0 -1
  299. package/dist/cjs/commands/TagResourceCommand.js.map +0 -1
  300. package/dist/cjs/commands/TerminateWorkflowExecutionCommand.js.map +0 -1
  301. package/dist/cjs/commands/UndeprecateActivityTypeCommand.js.map +0 -1
  302. package/dist/cjs/commands/UndeprecateDomainCommand.js.map +0 -1
  303. package/dist/cjs/commands/UndeprecateWorkflowTypeCommand.js.map +0 -1
  304. package/dist/cjs/commands/UntagResourceCommand.js.map +0 -1
  305. package/dist/cjs/endpoints.js.map +0 -1
  306. package/dist/cjs/index.js.map +0 -1
  307. package/dist/cjs/models/index.js.map +0 -1
  308. package/dist/cjs/models/models_0.js.map +0 -1
  309. package/dist/cjs/package.json +0 -91
  310. package/dist/cjs/pagination/GetWorkflowExecutionHistoryPaginator.js.map +0 -1
  311. package/dist/cjs/pagination/Interfaces.js.map +0 -1
  312. package/dist/cjs/pagination/ListActivityTypesPaginator.js.map +0 -1
  313. package/dist/cjs/pagination/ListClosedWorkflowExecutionsPaginator.js.map +0 -1
  314. package/dist/cjs/pagination/ListDomainsPaginator.js.map +0 -1
  315. package/dist/cjs/pagination/ListOpenWorkflowExecutionsPaginator.js.map +0 -1
  316. package/dist/cjs/pagination/ListWorkflowTypesPaginator.js.map +0 -1
  317. package/dist/cjs/pagination/PollForDecisionTaskPaginator.js.map +0 -1
  318. package/dist/cjs/protocols/Aws_json1_0.js.map +0 -1
  319. package/dist/cjs/runtimeConfig.browser.js.map +0 -1
  320. package/dist/cjs/runtimeConfig.js.map +0 -1
  321. package/dist/cjs/runtimeConfig.native.js.map +0 -1
  322. package/dist/cjs/runtimeConfig.shared.js.map +0 -1
  323. package/dist/es/SWF.js.map +0 -1
  324. package/dist/es/SWFClient.js.map +0 -1
  325. package/dist/es/commands/CountClosedWorkflowExecutionsCommand.js +0 -111
  326. package/dist/es/commands/CountClosedWorkflowExecutionsCommand.js.map +0 -1
  327. package/dist/es/commands/CountOpenWorkflowExecutionsCommand.js +0 -111
  328. package/dist/es/commands/CountOpenWorkflowExecutionsCommand.js.map +0 -1
  329. package/dist/es/commands/CountPendingActivityTasksCommand.js +0 -92
  330. package/dist/es/commands/CountPendingActivityTasksCommand.js.map +0 -1
  331. package/dist/es/commands/CountPendingDecisionTasksCommand.js +0 -92
  332. package/dist/es/commands/CountPendingDecisionTasksCommand.js.map +0 -1
  333. package/dist/es/commands/DeprecateActivityTypeCommand.js +0 -107
  334. package/dist/es/commands/DeprecateActivityTypeCommand.js.map +0 -1
  335. package/dist/es/commands/DeprecateDomainCommand.js +0 -96
  336. package/dist/es/commands/DeprecateDomainCommand.js.map +0 -1
  337. package/dist/es/commands/DeprecateWorkflowTypeCommand.js +0 -108
  338. package/dist/es/commands/DeprecateWorkflowTypeCommand.js.map +0 -1
  339. package/dist/es/commands/DescribeActivityTypeCommand.js +0 -103
  340. package/dist/es/commands/DescribeActivityTypeCommand.js.map +0 -1
  341. package/dist/es/commands/DescribeDomainCommand.js +0 -89
  342. package/dist/es/commands/DescribeDomainCommand.js.map +0 -1
  343. package/dist/es/commands/DescribeWorkflowExecutionCommand.js +0 -93
  344. package/dist/es/commands/DescribeWorkflowExecutionCommand.js.map +0 -1
  345. package/dist/es/commands/DescribeWorkflowTypeCommand.js +0 -103
  346. package/dist/es/commands/DescribeWorkflowTypeCommand.js.map +0 -1
  347. package/dist/es/commands/GetWorkflowExecutionHistoryCommand.js +0 -94
  348. package/dist/es/commands/GetWorkflowExecutionHistoryCommand.js.map +0 -1
  349. package/dist/es/commands/ListActivityTypesCommand.js +0 -92
  350. package/dist/es/commands/ListActivityTypesCommand.js.map +0 -1
  351. package/dist/es/commands/ListClosedWorkflowExecutionsCommand.js +0 -112
  352. package/dist/es/commands/ListClosedWorkflowExecutionsCommand.js.map +0 -1
  353. package/dist/es/commands/ListDomainsCommand.js +0 -96
  354. package/dist/es/commands/ListDomainsCommand.js.map +0 -1
  355. package/dist/es/commands/ListOpenWorkflowExecutionsCommand.js +0 -112
  356. package/dist/es/commands/ListOpenWorkflowExecutionsCommand.js.map +0 -1
  357. package/dist/es/commands/ListTagsForResourceCommand.js.map +0 -1
  358. package/dist/es/commands/ListWorkflowTypesCommand.js +0 -89
  359. package/dist/es/commands/ListWorkflowTypesCommand.js.map +0 -1
  360. package/dist/es/commands/PollForActivityTaskCommand.js +0 -100
  361. package/dist/es/commands/PollForActivityTaskCommand.js.map +0 -1
  362. package/dist/es/commands/PollForDecisionTaskCommand.js +0 -112
  363. package/dist/es/commands/PollForDecisionTaskCommand.js.map +0 -1
  364. package/dist/es/commands/RecordActivityTaskHeartbeatCommand.js +0 -112
  365. package/dist/es/commands/RecordActivityTaskHeartbeatCommand.js.map +0 -1
  366. package/dist/es/commands/RegisterActivityTypeCommand.js +0 -111
  367. package/dist/es/commands/RegisterActivityTypeCommand.js.map +0 -1
  368. package/dist/es/commands/RegisterDomainCommand.js +0 -88
  369. package/dist/es/commands/RegisterDomainCommand.js.map +0 -1
  370. package/dist/es/commands/RegisterWorkflowTypeCommand.js +0 -112
  371. package/dist/es/commands/RegisterWorkflowTypeCommand.js.map +0 -1
  372. package/dist/es/commands/RequestCancelWorkflowExecutionCommand.js +0 -103
  373. package/dist/es/commands/RequestCancelWorkflowExecutionCommand.js.map +0 -1
  374. package/dist/es/commands/RespondActivityTaskCanceledCommand.js +0 -106
  375. package/dist/es/commands/RespondActivityTaskCanceledCommand.js.map +0 -1
  376. package/dist/es/commands/RespondActivityTaskCompletedCommand.js +0 -104
  377. package/dist/es/commands/RespondActivityTaskCompletedCommand.js.map +0 -1
  378. package/dist/es/commands/RespondActivityTaskFailedCommand.js +0 -97
  379. package/dist/es/commands/RespondActivityTaskFailedCommand.js.map +0 -1
  380. package/dist/es/commands/RespondDecisionTaskCompletedCommand.js +0 -84
  381. package/dist/es/commands/RespondDecisionTaskCompletedCommand.js.map +0 -1
  382. package/dist/es/commands/SignalWorkflowExecutionCommand.js +0 -103
  383. package/dist/es/commands/SignalWorkflowExecutionCommand.js.map +0 -1
  384. package/dist/es/commands/StartWorkflowExecutionCommand.js +0 -130
  385. package/dist/es/commands/StartWorkflowExecutionCommand.js.map +0 -1
  386. package/dist/es/commands/TagResourceCommand.js.map +0 -1
  387. package/dist/es/commands/TerminateWorkflowExecutionCommand.js +0 -108
  388. package/dist/es/commands/TerminateWorkflowExecutionCommand.js.map +0 -1
  389. package/dist/es/commands/UndeprecateActivityTypeCommand.js +0 -106
  390. package/dist/es/commands/UndeprecateActivityTypeCommand.js.map +0 -1
  391. package/dist/es/commands/UndeprecateDomainCommand.js +0 -93
  392. package/dist/es/commands/UndeprecateDomainCommand.js.map +0 -1
  393. package/dist/es/commands/UndeprecateWorkflowTypeCommand.js +0 -106
  394. package/dist/es/commands/UndeprecateWorkflowTypeCommand.js.map +0 -1
  395. package/dist/es/commands/UntagResourceCommand.js.map +0 -1
  396. package/dist/es/endpoints.js.map +0 -1
  397. package/dist/es/index.js +0 -49
  398. package/dist/es/index.js.map +0 -1
  399. package/dist/es/models/index.js +0 -2
  400. package/dist/es/models/index.js.map +0 -1
  401. package/dist/es/models/models_0.js.map +0 -1
  402. package/dist/es/package.json +0 -91
  403. package/dist/es/pagination/GetWorkflowExecutionHistoryPaginator.js.map +0 -1
  404. package/dist/es/pagination/Interfaces.js +0 -2
  405. package/dist/es/pagination/Interfaces.js.map +0 -1
  406. package/dist/es/pagination/ListActivityTypesPaginator.js.map +0 -1
  407. package/dist/es/pagination/ListClosedWorkflowExecutionsPaginator.js.map +0 -1
  408. package/dist/es/pagination/ListDomainsPaginator.js.map +0 -1
  409. package/dist/es/pagination/ListOpenWorkflowExecutionsPaginator.js.map +0 -1
  410. package/dist/es/pagination/ListWorkflowTypesPaginator.js.map +0 -1
  411. package/dist/es/pagination/PollForDecisionTaskPaginator.js.map +0 -1
  412. package/dist/es/protocols/Aws_json1_0.js.map +0 -1
  413. package/dist/es/runtimeConfig.browser.js.map +0 -1
  414. package/dist/es/runtimeConfig.js.map +0 -1
  415. package/dist/es/runtimeConfig.native.js.map +0 -1
  416. package/dist/es/runtimeConfig.shared.js.map +0 -1
  417. package/endpoints.ts +0 -86
  418. package/jest.config.js +0 -4
  419. package/models/models_0.ts +0 -7233
  420. package/pagination/GetWorkflowExecutionHistoryPaginator.ts +0 -58
  421. package/pagination/Interfaces.ts +0 -7
  422. package/pagination/ListActivityTypesPaginator.ts +0 -58
  423. package/pagination/ListClosedWorkflowExecutionsPaginator.ts +0 -58
  424. package/pagination/ListDomainsPaginator.ts +0 -54
  425. package/pagination/ListOpenWorkflowExecutionsPaginator.ts +0 -58
  426. package/pagination/ListWorkflowTypesPaginator.ts +0 -58
  427. package/pagination/PollForDecisionTaskPaginator.ts +0 -58
  428. package/protocols/Aws_json1_0.ts +0 -5977
  429. package/runtimeConfig.browser.ts +0 -40
  430. package/runtimeConfig.native.ts +0 -16
  431. package/runtimeConfig.shared.ts +0 -16
  432. package/runtimeConfig.ts +0 -45
  433. package/tsconfig.es.json +0 -12
  434. package/tsconfig.json +0 -32
@@ -1,7 +1,7 @@
1
- import { SWFClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SWFClient";
2
- import { RegisterWorkflowTypeInput } from "../models/models_0";
3
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { RegisterWorkflowTypeInput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
5
  export interface RegisterWorkflowTypeCommandInput extends RegisterWorkflowTypeInput {
6
6
  }
7
7
  export interface RegisterWorkflowTypeCommandOutput extends __MetadataBearer {
@@ -1,7 +1,7 @@
1
- import { SWFClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SWFClient";
2
- import { RequestCancelWorkflowExecutionInput } from "../models/models_0";
3
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { RequestCancelWorkflowExecutionInput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
5
  export interface RequestCancelWorkflowExecutionCommandInput extends RequestCancelWorkflowExecutionInput {
6
6
  }
7
7
  export interface RequestCancelWorkflowExecutionCommandOutput extends __MetadataBearer {
@@ -1,7 +1,7 @@
1
- import { SWFClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SWFClient";
2
- import { RespondActivityTaskCanceledInput } from "../models/models_0";
3
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { RespondActivityTaskCanceledInput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
5
  export interface RespondActivityTaskCanceledCommandInput extends RespondActivityTaskCanceledInput {
6
6
  }
7
7
  export interface RespondActivityTaskCanceledCommandOutput extends __MetadataBearer {
@@ -1,7 +1,7 @@
1
- import { SWFClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SWFClient";
2
- import { RespondActivityTaskCompletedInput } from "../models/models_0";
3
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { RespondActivityTaskCompletedInput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
5
  export interface RespondActivityTaskCompletedCommandInput extends RespondActivityTaskCompletedInput {
6
6
  }
7
7
  export interface RespondActivityTaskCompletedCommandOutput extends __MetadataBearer {
@@ -1,7 +1,7 @@
1
- import { SWFClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SWFClient";
2
- import { RespondActivityTaskFailedInput } from "../models/models_0";
3
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { RespondActivityTaskFailedInput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
5
  export interface RespondActivityTaskFailedCommandInput extends RespondActivityTaskFailedInput {
6
6
  }
7
7
  export interface RespondActivityTaskFailedCommandOutput extends __MetadataBearer {
@@ -1,7 +1,7 @@
1
- import { SWFClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SWFClient";
2
- import { RespondDecisionTaskCompletedInput } from "../models/models_0";
3
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { RespondDecisionTaskCompletedInput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
5
  export interface RespondDecisionTaskCompletedCommandInput extends RespondDecisionTaskCompletedInput {
6
6
  }
7
7
  export interface RespondDecisionTaskCompletedCommandOutput extends __MetadataBearer {
@@ -1,7 +1,7 @@
1
- import { SWFClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SWFClient";
2
- import { SignalWorkflowExecutionInput } from "../models/models_0";
3
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { SignalWorkflowExecutionInput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
5
  export interface SignalWorkflowExecutionCommandInput extends SignalWorkflowExecutionInput {
6
6
  }
7
7
  export interface SignalWorkflowExecutionCommandOutput extends __MetadataBearer {
@@ -1,7 +1,7 @@
1
- import { SWFClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SWFClient";
2
- import { Run, StartWorkflowExecutionInput } from "../models/models_0";
3
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { Run, StartWorkflowExecutionInput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
5
  export interface StartWorkflowExecutionCommandInput extends StartWorkflowExecutionInput {
6
6
  }
7
7
  export interface StartWorkflowExecutionCommandOutput extends Run, __MetadataBearer {
@@ -1,7 +1,7 @@
1
- import { SWFClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SWFClient";
2
- import { TagResourceInput } from "../models/models_0";
3
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { TagResourceInput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
5
  export interface TagResourceCommandInput extends TagResourceInput {
6
6
  }
7
7
  export interface TagResourceCommandOutput extends __MetadataBearer {
@@ -1,7 +1,7 @@
1
- import { SWFClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SWFClient";
2
- import { TerminateWorkflowExecutionInput } from "../models/models_0";
3
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { TerminateWorkflowExecutionInput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
5
  export interface TerminateWorkflowExecutionCommandInput extends TerminateWorkflowExecutionInput {
6
6
  }
7
7
  export interface TerminateWorkflowExecutionCommandOutput extends __MetadataBearer {
@@ -1,7 +1,7 @@
1
- import { SWFClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SWFClient";
2
- import { UndeprecateActivityTypeInput } from "../models/models_0";
3
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { UndeprecateActivityTypeInput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
5
  export interface UndeprecateActivityTypeCommandInput extends UndeprecateActivityTypeInput {
6
6
  }
7
7
  export interface UndeprecateActivityTypeCommandOutput extends __MetadataBearer {
@@ -1,7 +1,7 @@
1
- import { SWFClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SWFClient";
2
- import { UndeprecateDomainInput } from "../models/models_0";
3
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { UndeprecateDomainInput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
5
  export interface UndeprecateDomainCommandInput extends UndeprecateDomainInput {
6
6
  }
7
7
  export interface UndeprecateDomainCommandOutput extends __MetadataBearer {
@@ -1,7 +1,7 @@
1
- import { SWFClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SWFClient";
2
- import { UndeprecateWorkflowTypeInput } from "../models/models_0";
3
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { UndeprecateWorkflowTypeInput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
5
  export interface UndeprecateWorkflowTypeCommandInput extends UndeprecateWorkflowTypeInput {
6
6
  }
7
7
  export interface UndeprecateWorkflowTypeCommandOutput extends __MetadataBearer {
@@ -1,7 +1,7 @@
1
- import { SWFClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SWFClient";
2
- import { UntagResourceInput } from "../models/models_0";
3
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@aws-sdk/types";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { UntagResourceInput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient";
5
5
  export interface UntagResourceCommandInput extends UntagResourceInput {
6
6
  }
7
7
  export interface UntagResourceCommandOutput extends __MetadataBearer {
File without changes
File without changes
@@ -1,4 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
1
2
  import { GetWorkflowExecutionHistoryCommandInput, GetWorkflowExecutionHistoryCommandOutput } from "../commands/GetWorkflowExecutionHistoryCommand";
2
3
  import { SWFPaginationConfiguration } from "./Interfaces";
3
- import { Paginator } from "@aws-sdk/types";
4
4
  export declare function paginateGetWorkflowExecutionHistory(config: SWFPaginationConfiguration, input: GetWorkflowExecutionHistoryCommandInput, ...additionalArguments: any): Paginator<GetWorkflowExecutionHistoryCommandOutput>;
@@ -1,6 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
1
2
  import { SWF } from "../SWF";
2
3
  import { SWFClient } from "../SWFClient";
3
- import { PaginationConfiguration } from "@aws-sdk/types";
4
4
  export interface SWFPaginationConfiguration extends PaginationConfiguration {
5
5
  client: SWF | SWFClient;
6
6
  }
@@ -1,4 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
1
2
  import { ListActivityTypesCommandInput, ListActivityTypesCommandOutput } from "../commands/ListActivityTypesCommand";
2
3
  import { SWFPaginationConfiguration } from "./Interfaces";
3
- import { Paginator } from "@aws-sdk/types";
4
4
  export declare function paginateListActivityTypes(config: SWFPaginationConfiguration, input: ListActivityTypesCommandInput, ...additionalArguments: any): Paginator<ListActivityTypesCommandOutput>;
@@ -1,4 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
1
2
  import { ListClosedWorkflowExecutionsCommandInput, ListClosedWorkflowExecutionsCommandOutput } from "../commands/ListClosedWorkflowExecutionsCommand";
2
3
  import { SWFPaginationConfiguration } from "./Interfaces";
3
- import { Paginator } from "@aws-sdk/types";
4
4
  export declare function paginateListClosedWorkflowExecutions(config: SWFPaginationConfiguration, input: ListClosedWorkflowExecutionsCommandInput, ...additionalArguments: any): Paginator<ListClosedWorkflowExecutionsCommandOutput>;
@@ -1,4 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
1
2
  import { ListDomainsCommandInput, ListDomainsCommandOutput } from "../commands/ListDomainsCommand";
2
3
  import { SWFPaginationConfiguration } from "./Interfaces";
3
- import { Paginator } from "@aws-sdk/types";
4
4
  export declare function paginateListDomains(config: SWFPaginationConfiguration, input: ListDomainsCommandInput, ...additionalArguments: any): Paginator<ListDomainsCommandOutput>;
@@ -1,4 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
1
2
  import { ListOpenWorkflowExecutionsCommandInput, ListOpenWorkflowExecutionsCommandOutput } from "../commands/ListOpenWorkflowExecutionsCommand";
2
3
  import { SWFPaginationConfiguration } from "./Interfaces";
3
- import { Paginator } from "@aws-sdk/types";
4
4
  export declare function paginateListOpenWorkflowExecutions(config: SWFPaginationConfiguration, input: ListOpenWorkflowExecutionsCommandInput, ...additionalArguments: any): Paginator<ListOpenWorkflowExecutionsCommandOutput>;
@@ -1,4 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
1
2
  import { ListWorkflowTypesCommandInput, ListWorkflowTypesCommandOutput } from "../commands/ListWorkflowTypesCommand";
2
3
  import { SWFPaginationConfiguration } from "./Interfaces";
3
- import { Paginator } from "@aws-sdk/types";
4
4
  export declare function paginateListWorkflowTypes(config: SWFPaginationConfiguration, input: ListWorkflowTypesCommandInput, ...additionalArguments: any): Paginator<ListWorkflowTypesCommandOutput>;
@@ -1,4 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
1
2
  import { PollForDecisionTaskCommandInput, PollForDecisionTaskCommandOutput } from "../commands/PollForDecisionTaskCommand";
2
3
  import { SWFPaginationConfiguration } from "./Interfaces";
3
- import { Paginator } from "@aws-sdk/types";
4
4
  export declare function paginatePollForDecisionTask(config: SWFPaginationConfiguration, input: PollForDecisionTaskCommandInput, ...additionalArguments: any): Paginator<PollForDecisionTaskCommandOutput>;
@@ -1,3 +1,5 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
1
3
  import { CountClosedWorkflowExecutionsCommandInput, CountClosedWorkflowExecutionsCommandOutput } from "../commands/CountClosedWorkflowExecutionsCommand";
2
4
  import { CountOpenWorkflowExecutionsCommandInput, CountOpenWorkflowExecutionsCommandOutput } from "../commands/CountOpenWorkflowExecutionsCommand";
3
5
  import { CountPendingActivityTasksCommandInput, CountPendingActivityTasksCommandOutput } from "../commands/CountPendingActivityTasksCommand";
@@ -35,8 +37,6 @@ import { UndeprecateActivityTypeCommandInput, UndeprecateActivityTypeCommandOutp
35
37
  import { UndeprecateDomainCommandInput, UndeprecateDomainCommandOutput } from "../commands/UndeprecateDomainCommand";
36
38
  import { UndeprecateWorkflowTypeCommandInput, UndeprecateWorkflowTypeCommandOutput } from "../commands/UndeprecateWorkflowTypeCommand";
37
39
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
38
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
39
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
40
40
  export declare const serializeAws_json1_0CountClosedWorkflowExecutionsCommand: (input: CountClosedWorkflowExecutionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
41
  export declare const serializeAws_json1_0CountOpenWorkflowExecutionsCommand: (input: CountOpenWorkflowExecutionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
42
  export declare const serializeAws_json1_0CountPendingActivityTasksCommand: (input: CountPendingActivityTasksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -32,5 +32,6 @@ export declare const getRuntimeConfig: (config: SWFClientConfig) => {
32
32
  signingEscapePath?: boolean | undefined;
33
33
  systemClockOffset?: number | undefined;
34
34
  signingRegion?: string | undefined;
35
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
35
36
  customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
36
37
  };
@@ -1,36 +1,37 @@
1
- import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
2
- import { SWFClientConfig } from "./SWFClient";
3
- /**
4
- * @internal
5
- */
6
- export declare const getRuntimeConfig: (config: SWFClientConfig) => {
7
- runtime: string;
8
- base64Decoder: import("@aws-sdk/types").Decoder;
9
- base64Encoder: import("@aws-sdk/types").Encoder;
10
- bodyLengthChecker: (body: any) => number | undefined;
11
- credentialDefaultProvider: import("@aws-sdk/client-sts/dist/types/defaultStsRoleAssumers").DefaultCredentialProvider;
12
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
13
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
14
- region: string | import("@aws-sdk/types").Provider<string>;
15
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | NodeHttpHandler;
16
- retryMode: string | import("@aws-sdk/types").Provider<string>;
17
- sha256: import("@aws-sdk/types").HashConstructor;
18
- streamCollector: import("@aws-sdk/types").StreamCollector;
19
- utf8Decoder: import("@aws-sdk/types").Decoder;
20
- utf8Encoder: import("@aws-sdk/types").Encoder;
21
- apiVersion: string;
22
- urlParser: import("@aws-sdk/types").UrlParser;
23
- disableHostPrefix: boolean;
24
- logger: import("@aws-sdk/types").Logger;
25
- serviceId: string;
26
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
27
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
- tls?: boolean | undefined;
29
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
- signingEscapePath?: boolean | undefined;
33
- systemClockOffset?: number | undefined;
34
- signingRegion?: string | undefined;
35
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
36
- };
1
+ import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
2
+ import { SWFClientConfig } from "./SWFClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: SWFClientConfig) => {
7
+ runtime: string;
8
+ base64Decoder: import("@aws-sdk/types").Decoder;
9
+ base64Encoder: import("@aws-sdk/types").Encoder;
10
+ bodyLengthChecker: (body: any) => number | undefined;
11
+ credentialDefaultProvider: import("@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers").DefaultCredentialProvider;
12
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
13
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
14
+ region: string | import("@aws-sdk/types").Provider<string>;
15
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | NodeHttpHandler;
16
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
17
+ sha256: import("@aws-sdk/types").HashConstructor;
18
+ streamCollector: import("@aws-sdk/types").StreamCollector;
19
+ utf8Decoder: import("@aws-sdk/types").Decoder;
20
+ utf8Encoder: import("@aws-sdk/types").Encoder;
21
+ apiVersion: string;
22
+ urlParser: import("@aws-sdk/types").UrlParser;
23
+ disableHostPrefix: boolean;
24
+ logger: import("@aws-sdk/types").Logger;
25
+ serviceId: string;
26
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
27
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
+ tls?: boolean | undefined;
29
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
+ signingEscapePath?: boolean | undefined;
33
+ systemClockOffset?: number | undefined;
34
+ signingRegion?: string | undefined;
35
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
+ };
@@ -1,35 +1,36 @@
1
- import { SWFClientConfig } from "./SWFClient";
2
- /**
3
- * @internal
4
- */
5
- export declare const getRuntimeConfig: (config: SWFClientConfig) => {
6
- runtime: string;
7
- sha256: import("@aws-sdk/types").HashConstructor;
8
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
9
- apiVersion: string;
10
- urlParser: import("@aws-sdk/types").UrlParser;
11
- bodyLengthChecker: (body: any) => number | undefined;
12
- streamCollector: import("@aws-sdk/types").StreamCollector;
13
- base64Decoder: import("@aws-sdk/types").Decoder;
14
- base64Encoder: import("@aws-sdk/types").Encoder;
15
- utf8Decoder: import("@aws-sdk/types").Decoder;
16
- utf8Encoder: import("@aws-sdk/types").Encoder;
17
- disableHostPrefix: boolean;
18
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
- retryMode: string | import("@aws-sdk/types").Provider<string>;
20
- logger: import("@aws-sdk/types").Logger;
21
- serviceId: string;
22
- region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
23
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
27
- tls?: boolean | undefined;
28
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
29
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
30
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
31
- signingEscapePath?: boolean | undefined;
32
- systemClockOffset?: number | undefined;
33
- signingRegion?: string | undefined;
34
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
35
- };
1
+ import { SWFClientConfig } from "./SWFClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: SWFClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@aws-sdk/types").HashConstructor;
8
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
9
+ apiVersion: string;
10
+ urlParser: import("@aws-sdk/types").UrlParser;
11
+ bodyLengthChecker: (body: any) => number | undefined;
12
+ streamCollector: import("@aws-sdk/types").StreamCollector;
13
+ base64Decoder: import("@aws-sdk/types").Decoder;
14
+ base64Encoder: import("@aws-sdk/types").Encoder;
15
+ utf8Decoder: import("@aws-sdk/types").Decoder;
16
+ utf8Encoder: import("@aws-sdk/types").Encoder;
17
+ disableHostPrefix: boolean;
18
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
20
+ logger: import("@aws-sdk/types").Logger;
21
+ serviceId: string;
22
+ region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
23
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
27
+ tls?: boolean | undefined;
28
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
29
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
30
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
31
+ signingEscapePath?: boolean | undefined;
32
+ systemClockOffset?: number | undefined;
33
+ signingRegion?: string | undefined;
34
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
35
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
36
+ };
package/package.json CHANGED
@@ -1,64 +1,58 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-swf",
3
3
  "description": "AWS SDK for JavaScript Swf Client for Node.js, Browser and React Native",
4
- "version": "3.32.0",
4
+ "version": "3.36.0",
5
5
  "scripts": {
6
- "clean": "yarn remove-definitions && yarn remove-dist && yarn remove-documentation",
7
- "build-documentation": "yarn remove-documentation && typedoc ./",
8
- "remove-definitions": "rimraf ./types",
9
- "remove-dist": "rimraf ./dist",
10
- "remove-documentation": "rimraf ./docs",
11
- "test": "exit 0",
6
+ "build": "yarn build:cjs && yarn build:es && yarn build:types",
12
7
  "build:cjs": "tsc -p tsconfig.json",
8
+ "build:docs": "yarn clean:docs && typedoc ./",
13
9
  "build:es": "tsc -p tsconfig.es.json",
14
- "build": "yarn build:cjs && yarn build:es",
15
- "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4"
16
- },
17
- "main": "./dist/cjs/index.js",
18
- "types": "./dist/types/index.d.ts",
19
- "module": "./dist/es/index.js",
20
- "browser": {
21
- "./runtimeConfig": "./runtimeConfig.browser"
22
- },
23
- "react-native": {
24
- "./runtimeConfig": "./runtimeConfig.native"
10
+ "build:types": "tsc -p tsconfig.types.json",
11
+ "clean": "yarn clean:dist && yarn clean:docs",
12
+ "clean:dist": "rimraf ./dist",
13
+ "clean:docs": "rimraf ./docs",
14
+ "downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
15
+ "test": "exit 0"
25
16
  },
17
+ "main": "./dist-cjs/index.js",
18
+ "types": "./dist-types/index.d.ts",
19
+ "module": "./dist-es/index.js",
26
20
  "sideEffects": false,
27
21
  "dependencies": {
28
22
  "@aws-crypto/sha256-browser": "^1.0.0",
29
23
  "@aws-crypto/sha256-js": "^1.0.0",
30
- "@aws-sdk/client-sts": "3.32.0",
31
- "@aws-sdk/config-resolver": "3.32.0",
32
- "@aws-sdk/credential-provider-node": "3.32.0",
33
- "@aws-sdk/fetch-http-handler": "3.32.0",
34
- "@aws-sdk/hash-node": "3.32.0",
35
- "@aws-sdk/invalid-dependency": "3.32.0",
36
- "@aws-sdk/middleware-content-length": "3.32.0",
37
- "@aws-sdk/middleware-host-header": "3.32.0",
38
- "@aws-sdk/middleware-logger": "3.32.0",
39
- "@aws-sdk/middleware-retry": "3.32.0",
40
- "@aws-sdk/middleware-serde": "3.32.0",
41
- "@aws-sdk/middleware-signing": "3.32.0",
42
- "@aws-sdk/middleware-stack": "3.32.0",
43
- "@aws-sdk/middleware-user-agent": "3.32.0",
44
- "@aws-sdk/node-config-provider": "3.32.0",
45
- "@aws-sdk/node-http-handler": "3.32.0",
46
- "@aws-sdk/protocol-http": "3.32.0",
47
- "@aws-sdk/smithy-client": "3.32.0",
48
- "@aws-sdk/types": "3.32.0",
49
- "@aws-sdk/url-parser": "3.32.0",
50
- "@aws-sdk/util-base64-browser": "3.32.0",
51
- "@aws-sdk/util-base64-node": "3.32.0",
52
- "@aws-sdk/util-body-length-browser": "3.32.0",
53
- "@aws-sdk/util-body-length-node": "3.32.0",
54
- "@aws-sdk/util-user-agent-browser": "3.32.0",
55
- "@aws-sdk/util-user-agent-node": "3.32.0",
56
- "@aws-sdk/util-utf8-browser": "3.32.0",
57
- "@aws-sdk/util-utf8-node": "3.32.0",
24
+ "@aws-sdk/client-sts": "3.36.0",
25
+ "@aws-sdk/config-resolver": "3.36.0",
26
+ "@aws-sdk/credential-provider-node": "3.36.0",
27
+ "@aws-sdk/fetch-http-handler": "3.36.0",
28
+ "@aws-sdk/hash-node": "3.36.0",
29
+ "@aws-sdk/invalid-dependency": "3.36.0",
30
+ "@aws-sdk/middleware-content-length": "3.36.0",
31
+ "@aws-sdk/middleware-host-header": "3.36.0",
32
+ "@aws-sdk/middleware-logger": "3.36.0",
33
+ "@aws-sdk/middleware-retry": "3.36.0",
34
+ "@aws-sdk/middleware-serde": "3.36.0",
35
+ "@aws-sdk/middleware-signing": "3.36.0",
36
+ "@aws-sdk/middleware-stack": "3.36.0",
37
+ "@aws-sdk/middleware-user-agent": "3.36.0",
38
+ "@aws-sdk/node-config-provider": "3.36.0",
39
+ "@aws-sdk/node-http-handler": "3.36.0",
40
+ "@aws-sdk/protocol-http": "3.36.0",
41
+ "@aws-sdk/smithy-client": "3.36.0",
42
+ "@aws-sdk/types": "3.36.0",
43
+ "@aws-sdk/url-parser": "3.36.0",
44
+ "@aws-sdk/util-base64-browser": "3.36.0",
45
+ "@aws-sdk/util-base64-node": "3.36.0",
46
+ "@aws-sdk/util-body-length-browser": "3.36.0",
47
+ "@aws-sdk/util-body-length-node": "3.36.0",
48
+ "@aws-sdk/util-user-agent-browser": "3.36.0",
49
+ "@aws-sdk/util-user-agent-node": "3.36.0",
50
+ "@aws-sdk/util-utf8-browser": "3.36.0",
51
+ "@aws-sdk/util-utf8-node": "3.36.0",
58
52
  "tslib": "^2.3.0"
59
53
  },
60
54
  "devDependencies": {
61
- "@aws-sdk/client-documentation-generator": "3.32.0",
55
+ "@aws-sdk/client-documentation-generator": "3.36.0",
62
56
  "@types/node": "^12.7.5",
63
57
  "downlevel-dts": "0.7.0",
64
58
  "jest": "^26.1.0",
@@ -72,16 +66,25 @@
72
66
  },
73
67
  "typesVersions": {
74
68
  "<4.0": {
75
- "dist/types/*": [
76
- "dist/types/ts3.4/*"
69
+ "dist-types/*": [
70
+ "dist-types/ts3.4/*"
77
71
  ]
78
72
  }
79
73
  },
74
+ "files": [
75
+ "dist-*"
76
+ ],
80
77
  "author": {
81
78
  "name": "AWS SDK for JavaScript Team",
82
79
  "url": "https://aws.amazon.com/javascript/"
83
80
  },
84
81
  "license": "Apache-2.0",
82
+ "browser": {
83
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
84
+ },
85
+ "react-native": {
86
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
87
+ },
85
88
  "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-swf",
86
89
  "repository": {
87
90
  "type": "git",