@kineticdata/react 5.1.1 → 6.0.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 (305) hide show
  1. package/assets/task/icons/drag-handle.svg +3 -0
  2. package/assets/task/icons/plus_small.svg +2 -4
  3. package/lib/apis/agent/adapters.js +16 -12
  4. package/lib/apis/agent/bridges.js +54 -41
  5. package/lib/apis/agent/handlers.js +51 -38
  6. package/lib/apis/core/activity.js +19 -11
  7. package/lib/apis/core/attributeDefinitions.js +54 -46
  8. package/lib/apis/core/attributeDefinitions.test.js +47 -55
  9. package/lib/apis/core/authentication.js +58 -63
  10. package/lib/apis/core/backgroundJobs.js +38 -30
  11. package/lib/apis/core/bridgeModelAttributeMappings.js +42 -34
  12. package/lib/apis/core/bridgeModelAttributes.js +47 -37
  13. package/lib/apis/core/bridgeModelMappings.js +42 -34
  14. package/lib/apis/core/bridgeModelQualificationMappings.js +42 -34
  15. package/lib/apis/core/bridgeModelQualifications.js +42 -34
  16. package/lib/apis/core/bridgeModels.js +61 -45
  17. package/lib/apis/core/bridgeModels.test.js +64 -80
  18. package/lib/apis/core/bridgedresources.js +64 -71
  19. package/lib/apis/core/bridgedresources.test.js +34 -31
  20. package/lib/apis/core/categories.js +59 -52
  21. package/lib/apis/core/categories.test.js +36 -33
  22. package/lib/apis/core/fileResources.js +41 -33
  23. package/lib/apis/core/filestores.js +42 -34
  24. package/lib/apis/core/formTypes.js +50 -44
  25. package/lib/apis/core/forms.js +53 -48
  26. package/lib/apis/core/forms.test.js +60 -74
  27. package/lib/apis/core/kapps.js +45 -39
  28. package/lib/apis/core/kapps.test.js +45 -52
  29. package/lib/apis/core/logs.js +20 -16
  30. package/lib/apis/core/memberships.js +23 -20
  31. package/lib/apis/core/meta.js +31 -19
  32. package/lib/apis/core/notices.js +17 -9
  33. package/lib/apis/core/oauthClients.js +49 -45
  34. package/lib/apis/core/platformComponents.js +73 -57
  35. package/lib/apis/core/platformItems.js +30 -0
  36. package/lib/apis/core/profile.js +28 -21
  37. package/lib/apis/core/profile.test.js +20 -17
  38. package/lib/apis/core/securityPolicyDefinitions.js +48 -41
  39. package/lib/apis/core/securityPolicyDefinitions.test.js +50 -60
  40. package/lib/apis/core/space.js +23 -16
  41. package/lib/apis/core/space.test.js +31 -38
  42. package/lib/apis/core/submissions.js +220 -172
  43. package/lib/apis/core/submissions.test.js +81 -51
  44. package/lib/apis/core/teams.js +51 -44
  45. package/lib/apis/core/teams.test.js +42 -39
  46. package/lib/apis/core/translations.js +123 -130
  47. package/lib/apis/core/translations.test.js +278 -368
  48. package/lib/apis/core/users.js +56 -49
  49. package/lib/apis/core/users.test.js +42 -39
  50. package/lib/apis/core/version.js +20 -11
  51. package/lib/apis/core/webApis.js +42 -34
  52. package/lib/apis/core/webhooks.js +48 -41
  53. package/lib/apis/core/webhooks.test.js +50 -60
  54. package/lib/apis/core/webhooksJobs.js +30 -26
  55. package/lib/apis/core/workflows.js +64 -0
  56. package/lib/apis/http.js +89 -80
  57. package/lib/apis/http.test.js +37 -38
  58. package/lib/apis/index.js +506 -48
  59. package/lib/apis/system/index.js +228 -211
  60. package/lib/apis/task/index.js +283 -226
  61. package/lib/components/agent/bridge/BridgeForm.js +50 -50
  62. package/lib/components/agent/bridge/BridgeTable.js +12 -8
  63. package/lib/components/agent/filestore/FilestoreForm.js +49 -48
  64. package/lib/components/agent/filestore/FilestoreTable.js +12 -8
  65. package/lib/components/agent/handler/AgentHandlerForm.js +24 -27
  66. package/lib/components/agent/handler/AgentHandlerTable.js +12 -8
  67. package/lib/components/common/AttributeSelect.js +15 -9
  68. package/lib/components/common/BridgeSelect.js +48 -43
  69. package/lib/components/common/ComponentConfigContext.js +9 -2
  70. package/lib/components/common/ContentEditable.js +36 -60
  71. package/lib/components/common/FormSelect.js +70 -58
  72. package/lib/components/common/NodeSelect.js +23 -19
  73. package/lib/components/common/Scroller.js +24 -23
  74. package/lib/components/common/StaticSelect.js +57 -50
  75. package/lib/components/common/TableInput.js +54 -57
  76. package/lib/components/common/TeamSelect.js +42 -39
  77. package/lib/components/common/Typeahead.js +121 -138
  78. package/lib/components/common/UserSelect.js +42 -41
  79. package/lib/components/common/authentication/AuthInterceptor.js +15 -19
  80. package/lib/components/common/authentication/AuthInterceptor.test.js +46 -64
  81. package/lib/components/common/authentication/AuthenticationContainer.js +350 -454
  82. package/lib/components/common/authentication/RequestInterceptor.js +16 -19
  83. package/lib/components/common/code_input/CodeInput.js +92 -122
  84. package/lib/components/common/code_input/draftHelpers.js +96 -90
  85. package/lib/components/common/code_input/languageHelpers.js +49 -47
  86. package/lib/components/common/code_input/languageHelpers.test.js +21 -16
  87. package/lib/components/core/CoreFormModal.js +26 -24
  88. package/lib/components/core/CoreModal.js +37 -31
  89. package/lib/components/core/attribute_definition/AttributeDefinitionForm.js +24 -23
  90. package/lib/components/core/attribute_definition/AttributeDefinitionTable.js +18 -15
  91. package/lib/components/core/bridge_model/BridgeModelForm.js +27 -37
  92. package/lib/components/core/bridge_model/BridgeModelTable.js +12 -8
  93. package/lib/components/core/bridge_model_attribute/BridgeModelAttributeForm.js +17 -16
  94. package/lib/components/core/bridge_model_attribute/BridgeModelAttributeTable.js +25 -21
  95. package/lib/components/core/bridge_model_qualification/BridgeModelQualificationForm.js +20 -20
  96. package/lib/components/core/bridge_model_qualification/BridgeModelQualificationTable.js +27 -22
  97. package/lib/components/core/category/CategoryForm.js +22 -22
  98. package/lib/components/core/category/CategoryTable.js +15 -10
  99. package/lib/components/core/core_form/CoreForm.js +209 -285
  100. package/lib/components/core/core_form/CoreForm.test.js +12 -10
  101. package/lib/components/core/core_form/defaults/index.js +52 -44
  102. package/lib/components/core/core_form/globals.js +14 -5
  103. package/lib/components/core/field_definition/FieldDefinitionForm.js +23 -21
  104. package/lib/components/core/field_definition/FieldDefinitionTable.js +15 -10
  105. package/lib/components/core/file_resource/FileResourceForm.js +38 -37
  106. package/lib/components/core/file_resource/FileResourceTable.js +16 -12
  107. package/lib/components/core/form/FormForm.js +56 -61
  108. package/lib/components/core/form/FormTable.js +25 -22
  109. package/lib/components/core/form_type/FormTypeForm.js +14 -13
  110. package/lib/components/core/form_type/FormTypeTable.js +12 -8
  111. package/lib/components/core/i18n/I18n.js +54 -61
  112. package/lib/components/core/i18n/I18nContext.js +9 -2
  113. package/lib/components/core/i18n/I18nProvider.js +40 -43
  114. package/lib/components/core/i18n/Moment.js +40 -50
  115. package/lib/components/core/index_definition/IndexDefinitionForm.js +23 -24
  116. package/lib/components/core/index_definition/IndexDefinitionTable.js +19 -11
  117. package/lib/components/core/index_job/IndexJobTable.js +20 -15
  118. package/lib/components/core/kapp/KappForm.js +57 -58
  119. package/lib/components/core/kapp/KappTable.js +17 -12
  120. package/lib/components/core/log/LogTable.js +35 -33
  121. package/lib/components/core/oauth_client/OAuthClientForm.js +17 -17
  122. package/lib/components/core/oauth_client/OAuthClientTable.js +12 -8
  123. package/lib/components/core/platform_component/AgentComponentForm.js +15 -15
  124. package/lib/components/core/platform_component/AgentComponentTable.js +10 -5
  125. package/lib/components/core/platform_component/TaskComponentForm.js +14 -14
  126. package/lib/components/core/profile/ProfileForm.js +40 -39
  127. package/lib/components/core/security_definition/SecurityDefinitionForm.js +28 -25
  128. package/lib/components/core/security_definition/SecurityDefinitionTable.js +18 -13
  129. package/lib/components/core/space/SpaceForm.js +79 -90
  130. package/lib/components/core/submission/DatastoreSubmissionFilters.js +39 -40
  131. package/lib/components/core/submission/DatastoreSubmissionTable.js +37 -34
  132. package/lib/components/core/submission/FormSubmissionFilters.js +79 -75
  133. package/lib/components/core/submission/FormSubmissionTable.js +27 -20
  134. package/lib/components/core/submission/KappSubmissionTable.js +30 -29
  135. package/lib/components/core/submission/SubmissionForm.js +126 -55
  136. package/lib/components/core/submission/SubmissionTable.js +24 -20
  137. package/lib/components/core/submission/helpers.js +37 -33
  138. package/lib/components/core/submission/helpers.test.js +69 -20
  139. package/lib/components/core/team/TeamForm.js +24 -21
  140. package/lib/components/core/team/TeamTable.js +16 -11
  141. package/lib/components/core/translation/ContextForm.js +13 -10
  142. package/lib/components/core/translation/ContextTable.js +13 -10
  143. package/lib/components/core/translation/EntryForm.js +27 -24
  144. package/lib/components/core/translation/EntryTable.js +19 -16
  145. package/lib/components/core/translation/LocaleForm.js +16 -13
  146. package/lib/components/core/translation/LocaleTable.js +12 -8
  147. package/lib/components/core/user/UserForm.js +38 -37
  148. package/lib/components/core/user/UserTable.js +19 -15
  149. package/lib/components/core/webapi/WebApiForm.js +49 -61
  150. package/lib/components/core/webapi/WebApiTable.js +14 -10
  151. package/lib/components/core/webhook/WebhookForm.js +33 -32
  152. package/lib/components/core/webhook/WebhookTable.js +22 -20
  153. package/lib/components/core/webhook_job/WebhookJobTable.js +19 -16
  154. package/lib/components/form/Form.helpers.js +102 -90
  155. package/lib/components/form/Form.js +467 -524
  156. package/lib/components/form/Form.models.js +38 -24
  157. package/lib/components/form/FormState.js +8 -5
  158. package/lib/components/form/KitchenSinkForm.js +135 -4
  159. package/lib/components/form/defaults/AttributesField.js +48 -59
  160. package/lib/components/form/defaults/CheckboxField.js +14 -6
  161. package/lib/components/form/defaults/CodeField.js +15 -7
  162. package/lib/components/form/defaults/FormButtons.js +12 -4
  163. package/lib/components/form/defaults/FormError.js +12 -4
  164. package/lib/components/form/defaults/FormField.js +15 -7
  165. package/lib/components/form/defaults/FormLayout.js +12 -4
  166. package/lib/components/form/defaults/FormMultiField.js +15 -7
  167. package/lib/components/form/defaults/PasswordField.js +14 -6
  168. package/lib/components/form/defaults/RadioField.js +15 -7
  169. package/lib/components/form/defaults/SampleTeamsRolesFIeld.js +17 -9
  170. package/lib/components/form/defaults/SelectField.js +16 -8
  171. package/lib/components/form/defaults/SelectMultiField.js +15 -7
  172. package/lib/components/form/defaults/TableField.js +14 -6
  173. package/lib/components/form/defaults/TeamField.js +15 -7
  174. package/lib/components/form/defaults/TeamMultiField.js +15 -7
  175. package/lib/components/form/defaults/TextField.js +14 -6
  176. package/lib/components/form/defaults/TextMultiField.js +26 -28
  177. package/lib/components/form/defaults/UserField.js +15 -7
  178. package/lib/components/form/defaults/UserMultiField.js +15 -7
  179. package/lib/components/form/defaults/index.js +48 -41
  180. package/lib/components/form/tests/Form.test.js +568 -864
  181. package/lib/components/form/tests/components.js +15 -25
  182. package/lib/components/form/tests/helpers.test.js +35 -33
  183. package/lib/components/index.js +981 -133
  184. package/lib/components/system/SystemBackgroundTasksTable.js +14 -10
  185. package/lib/components/system/SystemFilestoreForm.js +28 -25
  186. package/lib/components/system/SystemForm.js +19 -16
  187. package/lib/components/system/SystemIngressForm.js +10 -9
  188. package/lib/components/system/SystemSecurityForm.js +17 -14
  189. package/lib/components/system/SystemSmtpForm.js +13 -13
  190. package/lib/components/system/SystemTaskAdapterForm.js +21 -17
  191. package/lib/components/system/SystemUserForm.js +15 -14
  192. package/lib/components/system/helpers.js +62 -60
  193. package/lib/components/system/helpers.test.js +16 -12
  194. package/lib/components/system/spaces/SystemSpaceForm.js +25 -24
  195. package/lib/components/system/spaces/SystemTenantForm.js +43 -40
  196. package/lib/components/system/spaces/SystemTenantTable.js +12 -8
  197. package/lib/components/table/Table.js +219 -225
  198. package/lib/components/table/Table.redux.js +298 -327
  199. package/lib/components/table/Table.redux.test.js +49 -47
  200. package/lib/components/table/Table.test.js +107 -132
  201. package/lib/components/table/defaults/BodyCell.js +12 -6
  202. package/lib/components/table/defaults/BodyRow.js +10 -4
  203. package/lib/components/table/defaults/BooleanFilter.js +17 -11
  204. package/lib/components/table/defaults/EmptyBodyRow.js +12 -6
  205. package/lib/components/table/defaults/FilterLayout.js +17 -11
  206. package/lib/components/table/defaults/Footer.js +11 -5
  207. package/lib/components/table/defaults/FooterCell.js +10 -4
  208. package/lib/components/table/defaults/FooterRow.js +10 -4
  209. package/lib/components/table/defaults/Header.js +10 -4
  210. package/lib/components/table/defaults/HeaderCell.js +16 -10
  211. package/lib/components/table/defaults/HeaderRow.js +10 -4
  212. package/lib/components/table/defaults/PaginationControl.js +18 -9
  213. package/lib/components/table/defaults/TableBody.js +10 -4
  214. package/lib/components/table/defaults/TableLayout.js +12 -6
  215. package/lib/components/table/defaults/TextFilter.js +16 -10
  216. package/lib/components/table/defaults/index.js +41 -33
  217. package/lib/components/task/builder/Connector.js +100 -111
  218. package/lib/components/task/builder/ConnectorForm.js +17 -11
  219. package/lib/components/task/builder/Node.js +101 -83
  220. package/lib/components/task/builder/NodeForm.js +30 -27
  221. package/lib/components/task/builder/NodeParametersForm.js +27 -24
  222. package/lib/components/task/builder/SvgCanvas.js +67 -96
  223. package/lib/components/task/builder/SvgText.js +19 -134
  224. package/lib/components/task/builder/TaskDefinitionConfigForm.js +28 -23
  225. package/lib/components/task/builder/TreeBuilder.js +140 -115
  226. package/lib/components/task/builder/builder.redux.js +322 -300
  227. package/lib/components/task/builder/constants.js +94 -45
  228. package/lib/components/task/builder/helpers.js +184 -173
  229. package/lib/components/task/builder/helpers.test.js +20 -18
  230. package/lib/components/task/builder/models.js +133 -91
  231. package/lib/components/task/category/TaskCategoryForm.js +31 -29
  232. package/lib/components/task/category/TaskCategoryTable.js +12 -8
  233. package/lib/components/task/common/UsageTable.js +16 -12
  234. package/lib/components/task/engine/EngineSettingsForm.js +13 -11
  235. package/lib/components/task/errors/RunErrorTable.js +17 -13
  236. package/lib/components/task/errors/SystemErrorsTable.js +13 -9
  237. package/lib/components/task/handlers/HandlerForm.js +55 -55
  238. package/lib/components/task/handlers/HandlerTable.js +12 -8
  239. package/lib/components/task/handlers/MissingHandlerTable.js +12 -8
  240. package/lib/components/task/policy_rule/PolicyRuleForm.js +33 -32
  241. package/lib/components/task/policy_rule/PolicyRuleTable.js +12 -8
  242. package/lib/components/task/runs/CreateManualTriggerForm.js +17 -15
  243. package/lib/components/task/runs/RunTable.js +23 -20
  244. package/lib/components/task/runs/RunTaskTable.js +10 -6
  245. package/lib/components/task/sources/SourceForm.js +47 -47
  246. package/lib/components/task/sources/SourceTable.js +14 -11
  247. package/lib/components/task/triggers/TriggerTable.js +21 -18
  248. package/lib/components/task/workflows/LinkedWorkflowForm.js +249 -0
  249. package/lib/components/task/workflows/LinkedWorkflowTable.js +137 -0
  250. package/lib/components/task/workflows/MissingRoutineTable.js +12 -8
  251. package/lib/components/task/workflows/WorkflowForm.js +61 -46
  252. package/lib/components/task/workflows/WorkflowTable.js +17 -14
  253. package/lib/helpers/SearchBuilder.js +73 -127
  254. package/lib/helpers/SearchBuilder.test.js +184 -175
  255. package/lib/helpers/index.js +116 -74
  256. package/lib/index.js +86 -38
  257. package/lib/reducer.js +11 -3
  258. package/lib/saga.js +42 -38
  259. package/lib/store.js +59 -35
  260. package/package.json +4 -29
  261. package/proxyhelper.js +105 -47
  262. package/assets/discussions/images/avi_128.png +0 -0
  263. package/assets/discussions/images/excel_128.png +0 -0
  264. package/assets/discussions/images/html_128.png +0 -0
  265. package/assets/discussions/images/illustrator_128.png +0 -0
  266. package/assets/discussions/images/indesign_128.png +0 -0
  267. package/assets/discussions/images/movie_128.png +0 -0
  268. package/assets/discussions/images/mpeg_128.png +0 -0
  269. package/assets/discussions/images/pdf_128.png +0 -0
  270. package/assets/discussions/images/photoshop_128.png +0 -0
  271. package/assets/discussions/images/powerpoint_128.png +0 -0
  272. package/assets/discussions/images/txt_128.png +0 -0
  273. package/assets/discussions/images/unknown_128.png +0 -0
  274. package/assets/discussions/images/word_128.png +0 -0
  275. package/assets/discussions/styles/_discussion.scss +0 -506
  276. package/lib/apis/discussions/index.js +0 -395
  277. package/lib/apis/socket/index.js +0 -77
  278. package/lib/apis/socket/socket.js +0 -350
  279. package/lib/apis/socket/socket.test.js +0 -90
  280. package/lib/apis/socket/timer.js +0 -45
  281. package/lib/apis/socket/timer.test.js +0 -51
  282. package/lib/apis/socket/topic.js +0 -185
  283. package/lib/apis/topics/index.js +0 -19
  284. package/lib/components/discussions/ChatInputForm.js +0 -424
  285. package/lib/components/discussions/DateBanner.js +0 -10
  286. package/lib/components/discussions/Discussion.js +0 -202
  287. package/lib/components/discussions/DiscussionForm.js +0 -227
  288. package/lib/components/discussions/InvitationForm.js +0 -107
  289. package/lib/components/discussions/MessageHistory.js +0 -110
  290. package/lib/components/discussions/MessagesByDate.js +0 -40
  291. package/lib/components/discussions/MessagesList.js +0 -30
  292. package/lib/components/discussions/MoreMessagesBanner.js +0 -26
  293. package/lib/components/discussions/ScrollHelper.js +0 -84
  294. package/lib/components/discussions/SystemMessage.js +0 -88
  295. package/lib/components/discussions/SystemMessageGroup.js +0 -15
  296. package/lib/components/discussions/UserMessage.js +0 -163
  297. package/lib/components/discussions/UserMessageGroup.js +0 -34
  298. package/lib/components/discussions/redux.js +0 -178
  299. package/lib/components/discussions/sagas.js +0 -500
  300. package/lib/helpers/discussions/canManage.js +0 -30
  301. package/lib/helpers/discussions/canManage.test.js +0 -69
  302. package/lib/helpers/discussions/generateSystemMessageContent.js +0 -131
  303. package/lib/helpers/discussions/generateSystemMessageContent.test.js +0 -450
  304. package/lib/models/discussions.js +0 -76
  305. package/lib/models/index.js +0 -1
@@ -1,32 +1,39 @@
1
- import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray";
2
- import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
3
- import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
4
- import _createClass from "@babel/runtime/helpers/esm/createClass";
5
- import axios from 'axios';
6
- import qs from 'qs';
7
- import { bundle } from '../../helpers';
8
- import { handleErrors, headerBuilder, paramBuilder } from '../http'; // TODO: datastore is deprecated, remove datastore routes from paths.
9
-
10
- export var VALID_TIMELINES = ['closedAt', 'createdAt', 'submittedAt', 'updatedAt'];
11
- export var VALID_KAPP_CORE_STATES = ['Draft', 'Submitted', 'Closed'];
12
- export var VALID_DS_CORE_STATES = ['Draft', 'Submitted'];
13
-
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault")["default"];
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.updateSubmission = exports.submitSubmission = exports.searchSubmissions = exports.saveSubmissionMultipart = exports.importSubmissions = exports.importSubmissionStatus = exports.fetchSubmission = exports.exportSubmissions = exports.deleteSubmission = exports.createSubmission = exports.VALID_TIMELINES = exports.VALID_KAPP_CORE_STATES = exports.VALID_DS_CORE_STATES = exports.SubmissionSearch = exports.MODE_IMPORT = exports.MODE_BULK = void 0;
8
+ var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/toConsumableArray"));
9
+ var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectSpread2"));
10
+ var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/classCallCheck"));
11
+ var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/createClass"));
12
+ var _axios = _interopRequireDefault(require("axios"));
13
+ var _qs = _interopRequireDefault(require("qs"));
14
+ var _helpers = require("../../helpers");
15
+ var _http = require("../http");
16
+ var _immutable = require("immutable");
17
+ // TODO: datastore is deprecated, remove datastore routes from paths.
18
+
19
+ var VALID_TIMELINES = ['closedAt', 'createdAt', 'submittedAt', 'updatedAt'];
20
+ exports.VALID_TIMELINES = VALID_TIMELINES;
21
+ var VALID_KAPP_CORE_STATES = ['Draft', 'Submitted', 'Closed'];
22
+ exports.VALID_KAPP_CORE_STATES = VALID_KAPP_CORE_STATES;
23
+ var VALID_DS_CORE_STATES = ['Draft', 'Submitted'];
24
+ exports.VALID_DS_CORE_STATES = VALID_DS_CORE_STATES;
14
25
  var getValidCoreStates = function getValidCoreStates() {
15
26
  var datastore = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
16
27
  return datastore ? VALID_DS_CORE_STATES : VALID_KAPP_CORE_STATES;
17
28
  };
18
-
19
29
  var nullFix = function nullFix(val) {
20
30
  var nullable = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
21
31
  return nullable ? val === '' || val === null ? 'null' : "\"".concat(val, "\"") : val === null ? '""' : "\"".concat(val, "\"");
22
32
  };
23
-
24
- export var SubmissionSearch = /*#__PURE__*/function () {
33
+ var SubmissionSearch = /*#__PURE__*/function () {
25
34
  function SubmissionSearch() {
26
35
  var datastore = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
27
-
28
- _classCallCheck(this, SubmissionSearch);
29
-
36
+ (0, _classCallCheck2["default"])(this, SubmissionSearch);
30
37
  this.searchMeta = {
31
38
  include: []
32
39
  };
@@ -35,12 +42,11 @@ export var SubmissionSearch = /*#__PURE__*/function () {
35
42
  this.queryContext.push(this.query);
36
43
  this.isDatastore = datastore;
37
44
  }
45
+
38
46
  /*
39
47
  * Context Management
40
48
  */
41
-
42
-
43
- _createClass(SubmissionSearch, [{
49
+ (0, _createClass2["default"])(SubmissionSearch, [{
44
50
  key: "currentContext",
45
51
  value: function currentContext() {
46
52
  return this.queryContext[this.queryContext.length - 1];
@@ -55,20 +61,20 @@ export var SubmissionSearch = /*#__PURE__*/function () {
55
61
  value: function endContext() {
56
62
  return this.queryContext.pop();
57
63
  }
64
+
58
65
  /*
59
66
  * Execution Methods
60
67
  */
61
-
62
68
  }, {
63
69
  key: "build",
64
70
  value: function build() {
65
71
  // Validate our attempt to search:
66
- this.validateOuter('Attempted to execute query before ending all groupings.'); // * if core state it set to something other than draft we must have an
72
+ this.validateOuter('Attempted to execute query before ending all groupings.');
73
+ // * if core state it set to something other than draft we must have an
67
74
  // beginning and ending date.
68
75
  // * ...?
69
-
70
76
  var query = this.compileQueryString();
71
- return _objectSpread(_objectSpread({}, this.searchMeta), {}, {
77
+ return (0, _objectSpread2["default"])((0, _objectSpread2["default"])({}, this.searchMeta), {}, {
72
78
  query: query
73
79
  });
74
80
  }
@@ -77,10 +83,10 @@ export var SubmissionSearch = /*#__PURE__*/function () {
77
83
  value: function raw() {
78
84
  return this.query;
79
85
  }
86
+
80
87
  /*
81
88
  * Equality Methods
82
89
  */
83
-
84
90
  }, {
85
91
  key: "eq",
86
92
  value: function eq(lvalue, rvalue) {
@@ -168,10 +174,10 @@ export var SubmissionSearch = /*#__PURE__*/function () {
168
174
  });
169
175
  return this;
170
176
  }
177
+
171
178
  /*
172
179
  * Grouping Methods
173
180
  */
174
-
175
181
  }, {
176
182
  key: "or",
177
183
  value: function or() {
@@ -201,31 +207,28 @@ export var SubmissionSearch = /*#__PURE__*/function () {
201
207
  this.endContext();
202
208
  return this;
203
209
  }
210
+
204
211
  /*
205
212
  * Sorting Methods
206
213
  */
207
-
208
214
  }, {
209
215
  key: "sortBy",
210
216
  value: function sortBy(timeline) {
211
217
  this.validateDatastore(false);
212
- this.validateOuter('Sorting cannot be nested.'); // Check to see that timeline is in valid timelines.
213
-
218
+ this.validateOuter('Sorting cannot be nested.');
219
+ // Check to see that timeline is in valid timelines.
214
220
  if (VALID_TIMELINES.includes(timeline)) {
215
221
  this.searchMeta.timeline = timeline;
216
222
  }
217
-
218
223
  return this;
219
224
  }
220
225
  }, {
221
226
  key: "sortDirection",
222
227
  value: function sortDirection(direction) {
223
228
  this.validateOuter('Sorting cannot be nested.');
224
-
225
229
  if (direction !== 'ASC' && direction !== 'DESC') {
226
230
  throw new Error("Invalid sort direction: ".concat(direction));
227
231
  }
228
-
229
232
  this.searchMeta.direction = direction;
230
233
  return this;
231
234
  }
@@ -242,11 +245,9 @@ export var SubmissionSearch = /*#__PURE__*/function () {
242
245
  value: function coreState(_coreState) {
243
246
  this.validateOuter('Core State cannot be nested');
244
247
  var validCoreStates = getValidCoreStates(this.isDatastore);
245
-
246
248
  if (!validCoreStates.includes(_coreState)) {
247
249
  throw new Error("Invalid Core State \"".concat(_coreState, "\". Expected: ").concat(validCoreStates.join()));
248
250
  }
249
-
250
251
  this.searchMeta.coreState = _coreState;
251
252
  return this;
252
253
  }
@@ -255,11 +256,9 @@ export var SubmissionSearch = /*#__PURE__*/function () {
255
256
  value: function startDate(_startDate) {
256
257
  this.validateDatastore(false);
257
258
  this.validateOuter('Start Date cannot be nested.');
258
-
259
259
  if (!(_startDate instanceof Date)) {
260
260
  throw new Error('Start Date must be a Date object.');
261
261
  }
262
-
263
262
  this.searchMeta.start = _startDate.toISOString();
264
263
  return this;
265
264
  }
@@ -268,11 +267,9 @@ export var SubmissionSearch = /*#__PURE__*/function () {
268
267
  value: function endDate(_endDate) {
269
268
  this.validateDatastore(false);
270
269
  this.validateOuter('End Date cannot be nested.');
271
-
272
270
  if (!(_endDate instanceof Date)) {
273
271
  throw new Error('End Date must be a Date object.');
274
272
  }
275
-
276
273
  this.searchMeta.end = _endDate.toISOString();
277
274
  return this;
278
275
  }
@@ -299,8 +296,8 @@ export var SubmissionSearch = /*#__PURE__*/function () {
299
296
  }, {
300
297
  key: "includes",
301
298
  value: function includes(_includes) {
302
- this.searchMeta.include = _toConsumableArray(new Set([].concat(_toConsumableArray(this.searchMeta.include), _toConsumableArray(_includes)))); // _.uniq(_.concat(this.searchMeta.include, includes));
303
-
299
+ this.searchMeta.include = (0, _toConsumableArray2["default"])(new Set([].concat((0, _toConsumableArray2["default"])(this.searchMeta.include), (0, _toConsumableArray2["default"])(_includes))));
300
+ // _.uniq(_.concat(this.searchMeta.include, includes));
304
301
  return this;
305
302
  }
306
303
  }, {
@@ -310,10 +307,10 @@ export var SubmissionSearch = /*#__PURE__*/function () {
310
307
  this.searchMeta.index = _index ? _index.replace(/:UNIQUE$/, '') : _index;
311
308
  return this;
312
309
  }
310
+
313
311
  /*
314
312
  * Privately used utilities.
315
313
  */
316
-
317
314
  }, {
318
315
  key: "validateOuter",
319
316
  value: function validateOuter(message) {
@@ -325,7 +322,6 @@ export var SubmissionSearch = /*#__PURE__*/function () {
325
322
  key: "validateDatastore",
326
323
  value: function validateDatastore() {
327
324
  var datastore = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true;
328
-
329
325
  if (datastore === false && this.isDatastore) {
330
326
  throw new Error('This cannot be used with datastore searches.');
331
327
  } else if (datastore && !this.isDatastore) {
@@ -347,96 +343,88 @@ export var SubmissionSearch = /*#__PURE__*/function () {
347
343
  if (i > 0) {
348
344
  query += and ? ' AND ' : ' OR ';
349
345
  }
350
-
351
346
  switch (op.op) {
352
347
  case 'eq':
353
348
  query += "".concat(op.lvalue, " = ").concat(nullFix(op.rvalue));
354
349
  break;
355
-
356
350
  case 'sw':
357
351
  query += "".concat(op.lvalue, " =* ").concat(nullFix(op.rvalue));
358
352
  break;
359
-
360
353
  case 'gt':
361
354
  query += "".concat(op.lvalue, " > ").concat(nullFix(op.rvalue, false));
362
355
  break;
363
-
364
356
  case 'lt':
365
357
  query += "".concat(op.lvalue, " < ").concat(nullFix(op.rvalue, false));
366
358
  break;
367
-
368
359
  case 'gteq':
369
360
  query += "".concat(op.lvalue, " >= ").concat(nullFix(op.rvalue, false));
370
361
  break;
371
-
372
362
  case 'lteq':
373
363
  query += "".concat(op.lvalue, " <= ").concat(nullFix(op.rvalue, false));
374
364
  break;
375
-
376
365
  case 'between':
377
366
  query += "".concat(op.lvalue, " BETWEEN (").concat(nullFix(op.rvalue1, false), ", ").concat(nullFix(op.rvalue2, false), ")");
378
367
  break;
379
-
380
368
  case 'in':
381
369
  query += "".concat(op.lvalue, " IN (");
382
370
  op.rvalue.forEach(function (rval, rvi) {
383
371
  if (rvi > 0) {
384
372
  query += ', ';
385
373
  }
386
-
387
374
  query += "".concat(nullFix(op.rvalue[rvi]));
388
375
  });
389
376
  query += ')';
390
377
  break;
391
-
392
378
  case 'or':
393
379
  case 'and':
394
380
  query += '( ';
395
381
  query += doCompileQueryString(op.context, '', op.op === 'and');
396
382
  query += ')';
397
383
  break;
398
-
399
384
  default:
400
385
  throw new Error("Unexpected operator type \"".concat(op.op, "\" encountered. Expected: eq, in, or, and."));
401
386
  }
402
387
  });
403
388
  return query;
404
389
  }
405
-
406
390
  return doCompileQueryString(this.query, '', true);
407
391
  }
408
392
  }]);
409
-
410
393
  return SubmissionSearch;
411
394
  }();
412
- export var searchSubmissions = function searchSubmissions(options) {
395
+ exports.SubmissionSearch = SubmissionSearch;
396
+ var searchSubmissions = function searchSubmissions(options) {
413
397
  var kapp = options.kapp,
414
- form = options.form,
415
- search = options.search;
416
- var path = kapp ? form ? "".concat(bundle.apiLocation(), "/kapps/").concat(kapp, "/forms/").concat(form, "/submissions") : "".concat(bundle.apiLocation(), "/kapps/").concat(kapp, "/submissions") : form ? "".concat(bundle.apiLocation(), "/datastore/forms/").concat(form, "/submissions") : "".concat(bundle.apiLocation(), "/submissions");
417
-
418
- var meta = _objectSpread({}, search); // Format includes.
419
-
420
-
398
+ form = options.form,
399
+ search = options.search,
400
+ _options$get = options.get,
401
+ get = _options$get === void 0 ? false : _options$get;
402
+ var endpoint = !get ? 'submissions-search' : 'submissions';
403
+ // Default kapp to 'datastore' if not provided to support deprecated datastore functionality
404
+ var kappSlug = kapp || 'datastore';
405
+ var path = form ? "".concat(_helpers.bundle.apiLocation(), "/kapps/").concat(kappSlug, "/forms/").concat(form, "/").concat(endpoint) : "".concat(_helpers.bundle.apiLocation(), "/kapps/").concat(kappSlug, "/").concat(endpoint);
406
+ var meta = (0, _objectSpread2["default"])({}, search);
407
+ // Format includes.
421
408
  if (search.include.length > 0) {
422
409
  meta.include = search.include.join();
423
410
  }
424
-
425
411
  delete meta.query;
426
-
427
412
  if (typeof search.query === 'string' && search.query.length > 0) {
428
413
  meta.q = search.query;
429
- } // Fetch the submissions.
430
-
414
+ }
431
415
 
432
- var promise = axios.get(path, {
416
+ // Fetch the submissions.
417
+ var promise = !get ? _axios["default"].post(path, (0, _objectSpread2["default"])((0, _objectSpread2["default"])({}, meta), (0, _http.paramBuilder)(options)), {
418
+ headers: (0, _http.headerBuilder)(options)
419
+ }) : _axios["default"].get(path, {
433
420
  paramsSerializer: function paramsSerializer(params) {
434
- return qs.stringify(params);
421
+ return _qs["default"].stringify(params);
435
422
  },
436
- params: _objectSpread(_objectSpread({}, meta), paramBuilder(options)),
437
- headers: headerBuilder(options)
438
- }); // Remove the response envelop and leave us with the submissions.
423
+ params: (0, _objectSpread2["default"])((0, _objectSpread2["default"])({}, meta), (0, _http.paramBuilder)(options)),
424
+ headers: (0, _http.headerBuilder)(options)
425
+ });
439
426
 
427
+ // Remove the response envelop and leave us with the submissions.
440
428
  promise = promise.then(function (response) {
441
429
  return {
442
430
  submissions: response.data.submissions,
@@ -445,194 +433,253 @@ export var searchSubmissions = function searchSubmissions(options) {
445
433
  count: response.data.count,
446
434
  countPageToken: response.data.countPageToken
447
435
  };
448
- }); // Clean up any errors we receive. Make srue this is the last thing so that it
449
- // cleans up all errors.
436
+ });
450
437
 
451
- promise = promise["catch"](handleErrors);
438
+ // Clean up any errors we receive. Make srue this is the last thing so that it
439
+ // cleans up all errors.
440
+ promise = promise["catch"](_http.handleErrors);
452
441
  return promise;
453
442
  };
454
- export var fetchSubmission = function fetchSubmission(options) {
443
+ exports.searchSubmissions = searchSubmissions;
444
+ var fetchSubmission = function fetchSubmission(options) {
455
445
  var id = options.id;
456
-
457
446
  if (!id) {
458
447
  throw new Error('fetchSubmission failed! The option "id" is required.');
459
448
  }
460
-
461
- var path = options.datastore ? "".concat(bundle.apiLocation(), "/datastore/submissions/").concat(id) : "".concat(bundle.apiLocation(), "/submissions/").concat(id);
462
- return axios.get(path, {
463
- params: paramBuilder(options),
464
- headers: headerBuilder(options)
465
- }) // Remove the response envelop and leave us with the submission one.
449
+ var path = options.datastore ? "".concat(_helpers.bundle.apiLocation(), "/datastore/submissions/").concat(id) : "".concat(_helpers.bundle.apiLocation(), "/submissions/").concat(id);
450
+ return _axios["default"].get(path, {
451
+ params: (0, _http.paramBuilder)(options),
452
+ headers: (0, _http.headerBuilder)(options)
453
+ })
454
+ // Remove the response envelop and leave us with the submission one.
466
455
  .then(function (response) {
467
456
  return {
468
457
  submission: response.data.submission
469
458
  };
470
- }) // Clean up any errors we receive. Make sure this the last thing so that it
459
+ })
460
+ // Clean up any errors we receive. Make sure this the last thing so that it
471
461
  // cleans up any errors.
472
- ["catch"](handleErrors);
462
+ ["catch"](_http.handleErrors);
473
463
  };
474
- export var createSubmission = function createSubmission(options) {
464
+ exports.fetchSubmission = fetchSubmission;
465
+ var createSubmission = function createSubmission(options) {
475
466
  var _options$kappSlug = options.kappSlug,
476
- kappSlug = _options$kappSlug === void 0 ? bundle.kappSlug() : _options$kappSlug,
477
- formSlug = options.formSlug,
478
- values = options.values,
479
- _options$completed = options.completed,
480
- completed = _options$completed === void 0 ? true : _options$completed,
481
- coreState = options.coreState,
482
- parent = options.parent;
483
-
467
+ kappSlug = _options$kappSlug === void 0 ? _helpers.bundle.kappSlug() : _options$kappSlug,
468
+ formSlug = options.formSlug,
469
+ values = options.values,
470
+ _options$completed = options.completed,
471
+ completed = _options$completed === void 0 ? true : _options$completed,
472
+ coreState = options.coreState,
473
+ parent = options.parent;
484
474
  if (!formSlug) {
485
475
  throw new Error('createSubmission failed! The option "formSlug" is required.');
486
476
  } else if (!values) {
487
477
  throw new Error('createSubmission failed! The option "values" is required.');
488
478
  }
489
-
490
- var path = kappSlug ? "".concat(bundle.apiLocation(), "/kapps/").concat(kappSlug, "/forms/").concat(formSlug, "/submissions") : "".concat(bundle.apiLocation(), "/datastore/forms/").concat(formSlug, "/submissions");
491
-
492
- var params = _objectSpread(_objectSpread({}, paramBuilder(options)), {}, {
479
+ var path = kappSlug ? "".concat(_helpers.bundle.apiLocation(), "/kapps/").concat(kappSlug, "/forms/").concat(formSlug, "/submissions") : "".concat(_helpers.bundle.apiLocation(), "/datastore/forms/").concat(formSlug, "/submissions");
480
+ var params = (0, _objectSpread2["default"])((0, _objectSpread2["default"])({}, (0, _http.paramBuilder)(options)), {}, {
493
481
  completed: completed,
494
482
  coreState: coreState,
495
483
  parent: parent
496
484
  });
497
-
498
- return axios.post(path, {
485
+ return _axios["default"].post(path, {
499
486
  values: values
500
487
  }, {
501
488
  params: params,
502
- headers: headerBuilder(options)
503
- }) // Remove the response envelop and leave us with the submission one.
489
+ headers: (0, _http.headerBuilder)(options)
490
+ })
491
+ // Remove the response envelop and leave us with the submission one.
504
492
  .then(function (response) {
505
493
  return {
506
494
  submission: response.data.submission
507
495
  };
508
- }) // Clean up any errors we receive. Make sure this the last thing so that it
496
+ })
497
+ // Clean up any errors we receive. Make sure this the last thing so that it
509
498
  // cleans up any errors.
510
- ["catch"](handleErrors);
499
+ ["catch"](_http.handleErrors);
511
500
  };
512
- export var updateSubmission = function updateSubmission(options) {
501
+ exports.createSubmission = createSubmission;
502
+ var updateSubmission = function updateSubmission(options) {
513
503
  var id = options.id,
514
- values = options.values;
515
- var path = options.datastore ? "".concat(bundle.apiLocation(), "/datastore/submissions/").concat(id) : "".concat(bundle.apiLocation(), "/submissions/").concat(id);
516
-
517
- var params = _objectSpread({}, paramBuilder(options));
518
-
519
- return axios.put(path, {
504
+ values = options.values;
505
+ var path = options.datastore ? "".concat(_helpers.bundle.apiLocation(), "/datastore/submissions/").concat(id) : "".concat(_helpers.bundle.apiLocation(), "/submissions/").concat(id);
506
+ var params = (0, _objectSpread2["default"])({}, (0, _http.paramBuilder)(options));
507
+ return _axios["default"].put(path, {
520
508
  values: values
521
509
  }, {
522
510
  params: params,
523
- headers: headerBuilder(options)
524
- }) // Remove the response envelop and leave us with the submission one.
511
+ headers: (0, _http.headerBuilder)(options)
512
+ })
513
+ // Remove the response envelop and leave us with the submission one.
525
514
  .then(function (response) {
526
515
  return {
527
516
  submission: response.data.submission
528
517
  };
529
- }) // Clean up any errors we receive. Make sure this the last thing so that it
518
+ })
519
+ // Clean up any errors we receive. Make sure this the last thing so that it
530
520
  // cleans up any errors.
531
- ["catch"](handleErrors);
521
+ ["catch"](_http.handleErrors);
532
522
  };
533
- export var submitSubmission = function submitSubmission(options) {
523
+ exports.updateSubmission = updateSubmission;
524
+ var saveSubmissionMultipart = function saveSubmissionMultipart(options) {
525
+ var kappSlug = options.kappSlug,
526
+ formSlug = options.formSlug,
527
+ id = options.id,
528
+ values = options.values,
529
+ files = options.files,
530
+ coreState = options.coreState,
531
+ parent = options.parent,
532
+ _options$completed2 = options.completed,
533
+ completed = _options$completed2 === void 0 ? !id : _options$completed2;
534
+
535
+ // Determine whether we should use the create or update endpoint based on the
536
+ // options provided (the rest of the HTTP request behaves the same way
537
+ // regardless).
538
+ var path;
539
+ if (!!id) {
540
+ path = "".concat(_helpers.bundle.apiLocation(), "/submissions-multipart/").concat(id);
541
+ } else if (!!kappSlug && !!formSlug) {
542
+ path = "".concat(_helpers.bundle.apiLocation(), "/kapps/").concat(kappSlug, "/forms/").concat(formSlug, "/submissions-multipart");
543
+ } else {
544
+ throw new Error('saveSubmissionMultipart failed! Either the "id" option or the "kappSlug" and "formSlug" options need to be provided.');
545
+ }
546
+ var headers = (0, _http.headerBuilder)(options);
547
+ var params = (0, _objectSpread2["default"])((0, _objectSpread2["default"])({}, (0, _http.paramBuilder)(options)), {}, {
548
+ completed: completed,
549
+ coreState: coreState,
550
+ parent: parent
551
+ });
552
+ var data = new FormData();
553
+ data.append('_submission', JSON.stringify({
554
+ values: values
555
+ }));
556
+ files.forEach(function (fileValue) {
557
+ data.append((0, _immutable.get)(fileValue, 'field'), (0, _immutable.get)(fileValue, 'file'));
558
+ });
559
+ return _axios["default"].post(path, data, {
560
+ params: params,
561
+ headers: headers
562
+ }).then(function (response) {
563
+ return {
564
+ submission: response.data.submission
565
+ };
566
+ })["catch"](_http.handleErrors);
567
+ };
568
+ exports.saveSubmissionMultipart = saveSubmissionMultipart;
569
+ var submitSubmission = function submitSubmission(options) {
534
570
  var id = options.id,
535
- values = options.values,
536
- page = options.page,
537
- staged = options.staged,
538
- defer = options.defer;
539
- var path = options.datastore ? "".concat(bundle.apiLocation(), "/datastore/submissions/").concat(id) : "".concat(bundle.apiLocation(), "/submissions/").concat(id);
540
-
541
- var params = _objectSpread(_objectSpread({}, paramBuilder(options)), {}, {
571
+ values = options.values,
572
+ page = options.page,
573
+ staged = options.staged,
574
+ defer = options.defer;
575
+ var path = options.datastore ? "".concat(_helpers.bundle.apiLocation(), "/datastore/submissions/").concat(id) : "".concat(_helpers.bundle.apiLocation(), "/submissions/").concat(id);
576
+ var params = (0, _objectSpread2["default"])((0, _objectSpread2["default"])({}, (0, _http.paramBuilder)(options)), {}, {
542
577
  page: page,
543
578
  staged: staged,
544
579
  defer: defer
545
580
  });
546
-
547
- return axios.post(path, {
581
+ return _axios["default"].post(path, {
548
582
  values: values
549
583
  }, {
550
584
  params: params,
551
- headers: headerBuilder(options)
552
- }) // Remove the response envelop and leave us with the submission one.
585
+ headers: (0, _http.headerBuilder)(options)
586
+ })
587
+ // Remove the response envelop and leave us with the submission one.
553
588
  .then(function (response) {
554
589
  return {
555
590
  submission: response.data.submission
556
591
  };
557
- }) // Clean up any errors we receive. Make sure this the last thing so that it
592
+ })
593
+ // Clean up any errors we receive. Make sure this the last thing so that it
558
594
  // cleans up any errors.
559
- ["catch"](handleErrors);
595
+ ["catch"](_http.handleErrors);
560
596
  };
561
- export var deleteSubmission = function deleteSubmission(options) {
597
+ exports.submitSubmission = submitSubmission;
598
+ var deleteSubmission = function deleteSubmission(options) {
562
599
  var id = options.id;
563
-
564
600
  if (!id) {
565
601
  throw new Error('deleteSubmission failed! The option "id" is required.');
566
602
  }
567
-
568
- var path = options.datastore ? "".concat(bundle.apiLocation(), "/datastore/submissions/").concat(id) : "".concat(bundle.apiLocation(), "/submissions/").concat(id);
569
- return axios["delete"](path, {
570
- params: paramBuilder(options),
571
- headers: headerBuilder(options)
572
- }) // Remove the response envelop and leave us with the submission one.
603
+ var path = options.datastore ? "".concat(_helpers.bundle.apiLocation(), "/datastore/submissions/").concat(id) : "".concat(_helpers.bundle.apiLocation(), "/submissions/").concat(id);
604
+ return _axios["default"]["delete"](path, {
605
+ params: (0, _http.paramBuilder)(options),
606
+ headers: (0, _http.headerBuilder)(options)
607
+ })
608
+ // Remove the response envelop and leave us with the submission one.
573
609
  .then(function (response) {
574
610
  return {
575
611
  submission: response.data.submission
576
612
  };
577
- }) // Clean up any errors we receive. Make sure this the last thing so that it
613
+ })
614
+ // Clean up any errors we receive. Make sure this the last thing so that it
578
615
  // cleans up any errors.
579
- ["catch"](handleErrors);
616
+ ["catch"](_http.handleErrors);
580
617
  };
581
- export var exportSubmissions = function exportSubmissions(options) {
618
+ exports.deleteSubmission = deleteSubmission;
619
+ var exportSubmissions = function exportSubmissions(options) {
582
620
  var kappSlug = options.kappSlug,
583
- formSlug = options.formSlug,
584
- onDownloadProgress = options.onDownloadProgress;
585
-
621
+ formSlug = options.formSlug,
622
+ onDownloadProgress = options.onDownloadProgress;
586
623
  if (!kappSlug) {
587
624
  throw new Error('exportSubmissions failed! The option "kappSlug" is required.');
588
625
  }
589
-
590
626
  if (!formSlug) {
591
627
  throw new Error('exportSubmissions failed! The option "formSlug" is required.');
592
628
  }
593
-
594
- var path = "".concat(bundle.apiLocation(), "/kapps/").concat(kappSlug, "/forms/").concat(formSlug, "/submissions-search?export");
595
- return axios.post(path, {}, {
596
- params: paramBuilder(options),
597
- headers: headerBuilder(options),
629
+ var path = "".concat(_helpers.bundle.apiLocation(), "/kapps/").concat(kappSlug, "/forms/").concat(formSlug, "/submissions-search?export");
630
+ return _axios["default"].post(path, {}, {
631
+ params: (0, _http.paramBuilder)(options),
632
+ headers: (0, _http.headerBuilder)(options),
598
633
  onDownloadProgress: onDownloadProgress,
599
634
  responseType: 'blob'
600
635
  });
601
636
  };
602
- export var MODE_IMPORT = 'import';
603
- export var MODE_BULK = 'bulk';
604
-
637
+ exports.exportSubmissions = exportSubmissions;
638
+ var MODE_IMPORT = 'import';
639
+ exports.MODE_IMPORT = MODE_IMPORT;
640
+ var MODE_BULK = 'bulk';
641
+ exports.MODE_BULK = MODE_BULK;
605
642
  var modeToFn = function modeToFn(mode) {
606
643
  return mode === MODE_BULK ? 'post' : 'patch';
607
644
  };
608
-
609
- export var importSubmissions = function importSubmissions(options) {
645
+ var importSubmissionStatus = function importSubmissionStatus(options) {
610
646
  var kappSlug = options.kappSlug,
611
- formSlug = options.formSlug,
612
- onUploadProgress = options.onUploadProgress,
613
- file = options.file,
614
- _options$mode = options.mode,
615
- mode = _options$mode === void 0 ? MODE_IMPORT : _options$mode,
616
- cancelToken = options.cancelToken;
617
-
647
+ formSlug = options.formSlug,
648
+ jobId = options.jobId;
649
+ var path = "".concat(_helpers.bundle.apiLocation(), "/kapps/").concat(kappSlug, "/forms/").concat(formSlug, "/submission-import/").concat(jobId);
650
+ return _axios["default"].get(path, {
651
+ params: (0, _http.paramBuilder)(options),
652
+ headers: (0, _http.headerBuilder)(options)
653
+ }).then(function (response) {
654
+ return {
655
+ backgroundJob: response.data.backgroundJob
656
+ };
657
+ })["catch"](_http.handleErrors);
658
+ };
659
+ exports.importSubmissionStatus = importSubmissionStatus;
660
+ var importSubmissions = function importSubmissions(options) {
661
+ var kappSlug = options.kappSlug,
662
+ formSlug = options.formSlug,
663
+ onUploadProgress = options.onUploadProgress,
664
+ file = options.file,
665
+ _options$mode = options.mode,
666
+ mode = _options$mode === void 0 ? MODE_IMPORT : _options$mode,
667
+ cancelToken = options.cancelToken;
618
668
  if (!kappSlug) {
619
669
  throw new Error('importSubmissions failed! The option "kappSlug" is required.');
620
670
  }
621
-
622
671
  if (!formSlug) {
623
672
  throw new Error('importSubmissions failed! The option "formSlug" is required.');
624
673
  }
625
-
626
674
  if (!file) {
627
675
  throw new Error('importSubmissions failed! The option "file" is required.');
628
676
  }
629
-
630
- var path = "".concat(bundle.apiLocation(), "/kapps/").concat(kappSlug, "/forms/").concat(formSlug, "/submissions?import");
631
- return axios[modeToFn(mode)](path, file, {
677
+ var path = "".concat(_helpers.bundle.apiLocation(), "/kapps/").concat(kappSlug, "/forms/").concat(formSlug, "/submissions?import");
678
+ return _axios["default"][modeToFn(mode)](path, file, {
632
679
  cancelToken: cancelToken,
633
680
  data: file,
634
- params: paramBuilder(options),
635
- headers: _objectSpread(_objectSpread({}, headerBuilder(options)), {}, {
681
+ params: (0, _http.paramBuilder)(options),
682
+ headers: (0, _objectSpread2["default"])((0, _objectSpread2["default"])({}, (0, _http.headerBuilder)(options)), {}, {
636
683
  'Content-Type': 'application/csv'
637
684
  }),
638
685
  onUploadProgress: onUploadProgress
@@ -642,7 +689,8 @@ export var importSubmissions = function importSubmissions(options) {
642
689
  if (error.response && error.response.data && error.response.data.errors) {
643
690
  return error.response.data;
644
691
  } else {
645
- return handleErrors(error);
692
+ return (0, _http.handleErrors)(error);
646
693
  }
647
694
  });
648
- };
695
+ };
696
+ exports.importSubmissions = importSubmissions;