@ukhomeoffice/cop-react-form-renderer 7.3.2 → 8.0.0-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +106 -32
- package/dist/components/CheckYourAnswers/Answer.d.ts +10 -0
- package/dist/components/CheckYourAnswers/CheckYourAnswers.d.ts +35 -0
- package/dist/components/CheckYourAnswers/index.d.ts +2 -0
- package/dist/components/CollectionPage/CollectionPage.d.ts +24 -0
- package/dist/components/CollectionPage/index.d.ts +1 -0
- package/dist/components/CollectionSummary/BannerStrip.d.ts +9 -0
- package/dist/components/CollectionSummary/CollectionSummary.d.ts +53 -0
- package/dist/components/CollectionSummary/Confirmation.d.ts +15 -0
- package/dist/components/CollectionSummary/RenderListView.d.ts +42 -0
- package/dist/components/CollectionSummary/SummaryCard.d.ts +62 -0
- package/dist/components/CollectionSummary/SummaryCardButtons.d.ts +21 -0
- package/dist/components/CollectionSummary/SummaryCardDetails.d.ts +14 -0
- package/dist/components/CollectionSummary/SummaryCardValidationContext.d.ts +9 -0
- package/dist/components/CollectionSummary/index.d.ts +2 -0
- package/dist/components/FormComponent/Collection.d.ts +39 -0
- package/dist/components/FormComponent/Container.d.ts +26 -0
- package/dist/components/FormComponent/FormComponent.d.ts +39 -0
- package/dist/components/FormComponent/helpers/addLabel.d.ts +7 -0
- package/dist/components/FormComponent/helpers/getComponentDisabled.d.ts +2 -0
- package/dist/components/FormComponent/helpers/getComponentError.d.ts +4 -0
- package/dist/components/FormComponent/helpers/getComponentFieldSet.d.ts +2 -0
- package/dist/components/FormComponent/helpers/index.d.ts +5 -0
- package/dist/components/FormComponent/index.d.ts +2 -0
- package/dist/components/FormPage/FormPage.d.ts +36 -0
- package/dist/components/FormPage/index.d.ts +2 -0
- package/dist/components/FormRenderer/FormRenderer.d.ts +39 -0
- package/dist/components/FormRenderer/handlers/cyaAction.d.ts +9 -0
- package/dist/components/FormRenderer/handlers/getPageId.d.ts +8 -0
- package/dist/components/FormRenderer/handlers/index.d.ts +6 -0
- package/dist/components/FormRenderer/handlers/navigate.d.ts +10 -0
- package/dist/components/FormRenderer/handlers/submissionError.d.ts +7 -0
- package/dist/components/FormRenderer/helpers/canActionProceed.d.ts +12 -0
- package/dist/components/FormRenderer/helpers/canCYASubmit.d.ts +10 -0
- package/dist/components/FormRenderer/helpers/cleanHiddenNestedData.d.ts +2 -0
- package/dist/components/FormRenderer/helpers/clearOutUncompletedRoutes.d.ts +51 -0
- package/dist/components/FormRenderer/helpers/clearOutUncompletedRoutesUtils.d.ts +179 -0
- package/dist/components/FormRenderer/helpers/getCYA.d.ts +20 -0
- package/dist/components/FormRenderer/helpers/getFormState.d.ts +25 -0
- package/dist/components/FormRenderer/helpers/getNextPageId.d.ts +2 -0
- package/dist/components/FormRenderer/helpers/getPage.d.ts +9 -0
- package/dist/components/FormRenderer/helpers/getRelevantPages.d.ts +2 -0
- package/dist/components/FormRenderer/helpers/getSubmissionStatus.d.ts +2 -0
- package/dist/components/FormRenderer/helpers/getUpdatedSectionStates.d.ts +10 -0
- package/dist/components/FormRenderer/helpers/index.d.ts +29 -0
- package/dist/components/FormRenderer/index.d.ts +2 -0
- package/dist/components/FormRenderer/onCYAAction.d.ts +6 -0
- package/dist/components/FormRenderer/onPageAction.d.ts +2 -0
- package/dist/components/FormRenderer/onTaskAction.d.ts +2 -0
- package/dist/components/PageActions/ActionButton.d.ts +7 -0
- package/dist/components/PageActions/PageActions.d.ts +7 -0
- package/dist/components/PageActions/index.d.ts +2 -0
- package/dist/components/SummaryList/GroupAction.d.ts +12 -0
- package/dist/components/SummaryList/RowAction.d.ts +12 -0
- package/dist/components/SummaryList/SummaryList.d.ts +28 -0
- package/dist/components/SummaryList/SummaryList.stories.d.ts +10 -0
- package/dist/components/SummaryList/SummaryListHeadingRow.d.ts +7 -0
- package/dist/components/SummaryList/SummaryListHeadingRowWithAction.d.ts +16 -0
- package/dist/components/SummaryList/SummaryListRow.d.ts +19 -0
- package/dist/components/SummaryList/SummaryListTitleRow.d.ts +7 -0
- package/dist/components/SummaryList/helpers/getGroupActionAttributes.d.ts +17 -0
- package/dist/components/SummaryList/helpers/getRowActionAttributes.d.ts +17 -0
- package/dist/components/SummaryList/helpers/index.d.ts +2 -0
- package/dist/components/SummaryList/index.d.ts +2 -0
- package/dist/components/TaskList/Task.d.ts +12 -0
- package/dist/components/TaskList/TaskList.d.ts +40 -0
- package/dist/components/TaskList/TaskState.d.ts +6 -0
- package/dist/components/TaskList/index.d.ts +2 -0
- package/dist/components/index.d.ts +8 -0
- package/dist/context/HooksContext/HooksContext.d.ts +23 -0
- package/dist/context/HooksContext/index.d.ts +3 -0
- package/dist/context/ValidationContext/ValidationContext.d.ts +7 -0
- package/dist/context/ValidationContext/index.d.ts +3 -0
- package/dist/context/index.d.ts +3 -0
- package/dist/hooks/index.d.ts +6 -0
- package/dist/hooks/useAxios.d.ts +2 -0
- package/dist/hooks/useGetRequest.d.ts +12 -0
- package/dist/hooks/useHooks.d.ts +2 -0
- package/dist/hooks/useRefData.d.ts +7 -0
- package/dist/hooks/useValidation.d.ts +2 -0
- package/dist/index.cjs +5 -0
- package/dist/index.css +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +6124 -81
- package/dist/models/CollectionLabels.d.ts +7 -0
- package/dist/models/ComponentTypes.d.ts +27 -0
- package/dist/models/EventTypes.d.ts +6 -0
- package/dist/models/FormPages.d.ts +6 -0
- package/dist/models/FormTypes.d.ts +10 -0
- package/dist/models/HubFormats.d.ts +5 -0
- package/dist/models/PageAction.d.ts +89 -0
- package/dist/models/TaskStates.d.ts +39 -0
- package/dist/models/index.d.ts +143 -0
- package/dist/setupTests.d.ts +14 -0
- package/dist/utils/CheckYourAnswers/getCYAAction.d.ts +20 -0
- package/dist/utils/CheckYourAnswers/getCYACollectionChangeAction.d.ts +22 -0
- package/dist/utils/CheckYourAnswers/getCYACollectionDeleteAction.d.ts +22 -0
- package/dist/utils/CheckYourAnswers/getCYARow.d.ts +26 -0
- package/dist/utils/CheckYourAnswers/getCYARowForGroup.d.ts +17 -0
- package/dist/utils/CheckYourAnswers/getCYARowsForCollection.d.ts +2 -0
- package/dist/utils/CheckYourAnswers/getCYARowsForCollectionPage.d.ts +23 -0
- package/dist/utils/CheckYourAnswers/getCYARowsForContainer.d.ts +2 -0
- package/dist/utils/CheckYourAnswers/getCYARowsForPage.d.ts +11 -0
- package/dist/utils/CheckYourAnswers/getSummaryListRowForDetails.d.ts +3 -0
- package/dist/utils/CheckYourAnswers/index.d.ts +5 -0
- package/dist/utils/CheckYourAnswers/showComponentCYA.d.ts +11 -0
- package/dist/utils/CollectionPage/addCollectionPageEntry.d.ts +12 -0
- package/dist/utils/CollectionPage/duplicateCollectionPageActiveEntry.d.ts +13 -0
- package/dist/utils/CollectionPage/duplicateCollectionPageEntry.d.ts +13 -0
- package/dist/utils/CollectionPage/getCollectionPageActiveId.d.ts +14 -0
- package/dist/utils/CollectionPage/getCollectionPageActiveIndex.d.ts +15 -0
- package/dist/utils/CollectionPage/getCollectionPageData.d.ts +15 -0
- package/dist/utils/CollectionPage/getErrorsForCollection.d.ts +2 -0
- package/dist/utils/CollectionPage/getQuickEditPage.d.ts +40 -0
- package/dist/utils/CollectionPage/index.d.ts +13 -0
- package/dist/utils/CollectionPage/mergeCollectionPages.d.ts +13 -0
- package/dist/utils/CollectionPage/removeCollectionPageEntry.d.ts +11 -0
- package/dist/utils/CollectionPage/setCollectionPageData.d.ts +16 -0
- package/dist/utils/Component/addShowWhen.d.ts +13 -0
- package/dist/utils/Component/applyToComponentTree.d.ts +15 -0
- package/dist/utils/Component/cleanAttributes.d.ts +14 -0
- package/dist/utils/Component/elevateNestedComponents.d.ts +28 -0
- package/dist/utils/Component/getDefaultValue.d.ts +2 -0
- package/dist/utils/Component/getDefaultValueFromConfig.d.ts +2 -0
- package/dist/utils/Component/index.d.ts +12 -0
- package/dist/utils/Component/isEditable.d.ts +3 -0
- package/dist/utils/Component/optionIsSelected.d.ts +10 -0
- package/dist/utils/Component/setupContainerComponentsPath.d.ts +2 -0
- package/dist/utils/Component/showComponent.d.ts +2 -0
- package/dist/utils/Condition/index.d.ts +6 -0
- package/dist/utils/Condition/meetsAllConditions.d.ts +8 -0
- package/dist/utils/Condition/meetsCondition.d.ts +14 -0
- package/dist/utils/Condition/meetsOneCondition.d.ts +8 -0
- package/dist/utils/Condition/setupConditions.d.ts +2 -0
- package/dist/utils/Container/getEditableComponents.d.ts +7 -0
- package/dist/utils/Container/index.d.ts +6 -0
- package/dist/utils/Container/setupNesting.d.ts +2 -0
- package/dist/utils/Container/showContainer.d.ts +8 -0
- package/dist/utils/Data/applyFormula.d.ts +2 -0
- package/dist/utils/Data/deleteValues.d.ts +8 -0
- package/dist/utils/Data/getAutocompleteSource.d.ts +2 -0
- package/dist/utils/Data/getDataPath.d.ts +21 -0
- package/dist/utils/Data/getOptions.d.ts +2 -0
- package/dist/utils/Data/getSourceData.d.ts +17 -0
- package/dist/utils/Data/index.d.ts +15 -0
- package/dist/utils/Data/nestInRefdataOptions.d.ts +10 -0
- package/dist/utils/Data/refDataToOptions.d.ts +8 -0
- package/dist/utils/Data/setDataItem.d.ts +2 -0
- package/dist/utils/Data/setupFormData.d.ts +15 -0
- package/dist/utils/Data/setupRefDataUrlForComponent.d.ts +2 -0
- package/dist/utils/FormPage/applyConditionalProperties.d.ts +8 -0
- package/dist/utils/FormPage/getConditionalText.d.ts +23 -0
- package/dist/utils/FormPage/getFormPage.d.ts +9 -0
- package/dist/utils/FormPage/getFormPages.d.ts +9 -0
- package/dist/utils/FormPage/getPageActions.d.ts +13 -0
- package/dist/utils/FormPage/getParagraphFromText.d.ts +11 -0
- package/dist/utils/FormPage/index.d.ts +10 -0
- package/dist/utils/FormPage/showFormPage.d.ts +8 -0
- package/dist/utils/FormPage/showFormPageCYA.d.ts +8 -0
- package/dist/utils/FormPage/useComponent.d.ts +9 -0
- package/dist/utils/Format/formatData.d.ts +8 -0
- package/dist/utils/Format/formatDataForComponent.d.ts +15 -0
- package/dist/utils/Format/formatDataForForm.d.ts +8 -0
- package/dist/utils/Format/formatDataForPage.d.ts +15 -0
- package/dist/utils/Format/index.d.ts +7 -0
- package/dist/utils/Hub/getFormHub.d.ts +15 -0
- package/dist/utils/Hub/index.d.ts +4 -0
- package/dist/utils/Meta/constants.d.ts +2 -0
- package/dist/utils/Meta/documents/getDocuments.d.ts +2 -0
- package/dist/utils/Meta/documents/index.d.ts +6 -0
- package/dist/utils/Meta/documents/setDocumentsForField.d.ts +2 -0
- package/dist/utils/Meta/index.d.ts +9 -0
- package/dist/utils/Operate/checkValueIsTruthy.d.ts +9 -0
- package/dist/utils/Operate/deleteValueInFormData.d.ts +8 -0
- package/dist/utils/Operate/doesContainValue.d.ts +11 -0
- package/dist/utils/Operate/getFirstOf.d.ts +2 -0
- package/dist/utils/Operate/getIndexOfMatchingValueIn.d.ts +11 -0
- package/dist/utils/Operate/getLength.d.ts +11 -0
- package/dist/utils/Operate/index.d.ts +4 -0
- package/dist/utils/Operate/persistValueInFormData.d.ts +9 -0
- package/dist/utils/Operate/runPageOperations.d.ts +19 -0
- package/dist/utils/Operate/setValueInFormData.d.ts +2 -0
- package/dist/utils/Operate/shouldRun.d.ts +9 -0
- package/dist/utils/Validate/additional/conditionallyPermittedChange.d.ts +14 -0
- package/dist/utils/Validate/additional/conditionallyRequired.d.ts +11 -0
- package/dist/utils/Validate/additional/index.d.ts +2 -0
- package/dist/utils/Validate/additional/mustBeAfter.d.ts +14 -0
- package/dist/utils/Validate/additional/mustBeBefore.d.ts +14 -0
- package/dist/utils/Validate/additional/mustBeEarlierDateTime.d.ts +15 -0
- package/dist/utils/Validate/additional/mustBeGreaterThan.d.ts +7 -0
- package/dist/utils/Validate/additional/mustBeInTheFuture.d.ts +8 -0
- package/dist/utils/Validate/additional/mustBeInThePast.d.ts +9 -0
- package/dist/utils/Validate/additional/mustBeLessThan.d.ts +7 -0
- package/dist/utils/Validate/additional/mustBeLongerThan.d.ts +9 -0
- package/dist/utils/Validate/additional/mustBeNumbersOnly.d.ts +9 -0
- package/dist/utils/Validate/additional/mustBeOneOf.d.ts +8 -0
- package/dist/utils/Validate/additional/mustBeShorterThan.d.ts +9 -0
- package/dist/utils/Validate/additional/mustBeUniqueInCollection.d.ts +10 -0
- package/dist/utils/Validate/additional/mustEnterAtLeastOne.d.ts +9 -0
- package/dist/utils/Validate/additional/mustHaveLessThanDecimalPlaces.d.ts +7 -0
- package/dist/utils/Validate/additional/mustNotContainSql.d.ts +2 -0
- package/dist/utils/Validate/additional/mustSelectOnlyOne.d.ts +8 -0
- package/dist/utils/Validate/additional/utils.d.ts +4 -0
- package/dist/utils/Validate/index.d.ts +42 -0
- package/dist/utils/Validate/validateCollection.d.ts +9 -0
- package/dist/utils/Validate/validateComponent.d.ts +16 -0
- package/dist/utils/Validate/validateContainer.d.ts +12 -0
- package/dist/utils/Validate/validateDate.d.ts +29 -0
- package/dist/utils/Validate/validateEmail.d.ts +13 -0
- package/dist/utils/Validate/validateMultifile.d.ts +3 -0
- package/dist/utils/Validate/validateOnPageLoad.d.ts +1 -0
- package/dist/utils/Validate/validatePage.d.ts +8 -0
- package/dist/utils/Validate/validateRegex.d.ts +13 -0
- package/dist/utils/Validate/validateRequired.d.ts +9 -0
- package/dist/utils/Validate/validateTextArea.d.ts +13 -0
- package/dist/utils/Validate/validateTime.d.ts +20 -0
- package/dist/utils/canOverrideFieldRequired.d.ts +9 -0
- package/dist/utils/index.d.ts +140 -0
- package/package.json +80 -167
- package/LICENCE.md +0 -21
- package/dist/components/CheckYourAnswers/Answer.js +0 -59
- package/dist/components/CheckYourAnswers/Answer.test.js +0 -142
- package/dist/components/CheckYourAnswers/CheckYourAnswers.js +0 -252
- package/dist/components/CheckYourAnswers/CheckYourAnswers.scss +0 -43
- package/dist/components/CheckYourAnswers/CheckYourAnswers.stories.mdx +0 -409
- package/dist/components/CheckYourAnswers/CheckYourAnswers.test.js +0 -603
- package/dist/components/CheckYourAnswers/index.js +0 -10
- package/dist/components/CollectionPage/CollectionPage.js +0 -178
- package/dist/components/CollectionPage/CollectionPage.test.js +0 -507
- package/dist/components/CollectionPage/index.js +0 -10
- package/dist/components/CollectionSummary/BannerStrip.js +0 -65
- package/dist/components/CollectionSummary/BannerStrip.scss +0 -60
- package/dist/components/CollectionSummary/BannerStrip.test.js +0 -167
- package/dist/components/CollectionSummary/CollectionSummary.js +0 -362
- package/dist/components/CollectionSummary/CollectionSummary.scss +0 -26
- package/dist/components/CollectionSummary/CollectionSummary.test.js +0 -368
- package/dist/components/CollectionSummary/Confirmation.js +0 -65
- package/dist/components/CollectionSummary/Confirmation.scss +0 -26
- package/dist/components/CollectionSummary/Confirmation.test.js +0 -109
- package/dist/components/CollectionSummary/RenderListView.js +0 -162
- package/dist/components/CollectionSummary/RenderListView.scss +0 -295
- package/dist/components/CollectionSummary/RenderListView.test.js +0 -303
- package/dist/components/CollectionSummary/SummaryCard.js +0 -277
- package/dist/components/CollectionSummary/SummaryCard.scss +0 -114
- package/dist/components/CollectionSummary/SummaryCard.test.js +0 -1442
- package/dist/components/CollectionSummary/SummaryCardButtons.js +0 -76
- package/dist/components/CollectionSummary/SummaryCardButtons.test.js +0 -87
- package/dist/components/CollectionSummary/SummaryCardDetails.js +0 -206
- package/dist/components/CollectionSummary/SummaryCardDetails.scss +0 -216
- package/dist/components/CollectionSummary/SummaryCardDetails.test.js +0 -654
- package/dist/components/CollectionSummary/SummaryCardValidationContext.js +0 -79
- package/dist/components/CollectionSummary/SummaryCardValidationContext.test.js +0 -104
- package/dist/components/CollectionSummary/index.js +0 -10
- package/dist/components/FormComponent/Collection.js +0 -234
- package/dist/components/FormComponent/Collection.scss +0 -24
- package/dist/components/FormComponent/Collection.test.js +0 -934
- package/dist/components/FormComponent/Container.js +0 -130
- package/dist/components/FormComponent/Container.scss +0 -15
- package/dist/components/FormComponent/Container.test.js +0 -456
- package/dist/components/FormComponent/FormComponent.js +0 -238
- package/dist/components/FormComponent/FormComponent.stories.mdx +0 -186
- package/dist/components/FormComponent/FormComponent.test.js +0 -436
- package/dist/components/FormComponent/helpers/addLabel.js +0 -25
- package/dist/components/FormComponent/helpers/getComponentDisabled.js +0 -15
- package/dist/components/FormComponent/helpers/getComponentDisabled.test.js +0 -27
- package/dist/components/FormComponent/helpers/getComponentError.js +0 -23
- package/dist/components/FormComponent/helpers/getComponentError.test.js +0 -51
- package/dist/components/FormComponent/helpers/getComponentFieldSet.js +0 -11
- package/dist/components/FormComponent/helpers/getComponentFieldSet.test.js +0 -30
- package/dist/components/FormComponent/helpers/index.js +0 -35
- package/dist/components/FormComponent/index.js +0 -10
- package/dist/components/FormPage/FormPage.js +0 -212
- package/dist/components/FormPage/FormPage.scss +0 -7
- package/dist/components/FormPage/FormPage.stories.mdx +0 -157
- package/dist/components/FormPage/FormPage.test.js +0 -454
- package/dist/components/FormPage/index.js +0 -10
- package/dist/components/FormRenderer/FormRenderer.js +0 -426
- package/dist/components/FormRenderer/FormRenderer.scss +0 -5
- package/dist/components/FormRenderer/FormRenderer.stories.mdx +0 -178
- package/dist/components/FormRenderer/FormRenderer.test.js +0 -799
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/cop-reassign-task-to-rcc.json +0 -446
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-chained-component-show-whens-containerised.json +0 -120
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-chained-component-show-whens-dependent-component-nested-block.json +0 -113
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-chained-component-show-whens-dependent-component-nested.json +0 -106
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-chained-component-show-whens-refdata.json +0 -106
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-chained-component-show-whens-target-component-nested.json +0 -99
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-chained-component-show-whens.json +0 -106
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-chained-show-whens-page-hidden.json +0 -113
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-cop-airpax.json +0 -26408
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-cop-mandec.json +0 -9405
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-hidden-collection-component-dependent-on-external-data.json +0 -158
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-hidden-collection-component.json +0 -86
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-hidden-component-referring-to-collection.json +0 -173
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-hidden-component-referring-to-hidden-collection.json +0 -202
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-hidden-component-show-when-in-component-and-page.json +0 -63
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-hidden-component-with-nested-questions-visible-elsewhere.json +0 -118
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-hidden-component-with-nested-questions.json +0 -112
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-hidden-component.json +0 -58
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-hidden-containerised-component.json +0 -97
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-hidden-embedded-collection-component.json +0 -83
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-hidden-embedded-component.json +0 -55
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-hidden-entire-collection.json +0 -114
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-hidden-multilevel-containerised-component-leaf-hidden.json +0 -106
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-hidden-multilevel-containerised-component.json +0 -106
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-hidden-options.json +0 -99
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-hidden-page-collection.json +0 -128
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-hidden-page-component-used-elsewhere.json +0 -109
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-hidden-page-same-component-reused.json +0 -62
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-hidden-page.json +0 -96
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-nested-answers-hidden-by-option-visible-elsewhere.json +0 -113
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-nested-answers-hidden-by-option.json +0 -112
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-page-nested-component.json +0 -26003
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-page-nested-radio-component.json +0 -201
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-page-same-component-reused-one-shown.json +0 -75
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/forms/form-variance-breach.json +0 -4272
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/cop-airpax-carrier.json +0 -407
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/cop-airpax-change-what-happened-before.json +0 -300
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/cop-airpax-remove-photos-before.json +0 -384
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/cop-mandec-remove-business-interests-before.json +0 -140
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/cop-mandec-remove-criminality-before.json +0 -186
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/cop-mandec-remove-unspent-convictions-before.json +0 -143
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/cop-variance-breach-with-upload-files.json +0 -1264
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-chained-component-show-whens-containerised.json +0 -11
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-chained-component-show-whens-dependent-component-nested-block.json +0 -10
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-chained-component-show-whens-dependent-component-nested.json +0 -9
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-chained-component-show-whens-refdata.json +0 -11
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-chained-component-show-whens-target-component-nested.json +0 -9
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-chained-component-show-whens.json +0 -9
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-chained-show-whens-page-hidden.json +0 -9
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-hidden-collection-component-dependent-on-external-data.json +0 -26
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-hidden-collection-component.json +0 -15
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-hidden-component-referring-to-collection.json +0 -25
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-hidden-component-referring-to-hidden-collection.json +0 -26
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-hidden-component-show-when-in-component-and-page.json +0 -6
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-hidden-component-with-nested-questions-visible-elsewhere.json +0 -12
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-hidden-component-with-nested-questions.json +0 -12
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-hidden-component.json +0 -5
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-hidden-containerised-component.json +0 -11
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-hidden-embedded-collection-component.json +0 -15
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-hidden-embedded-component.json +0 -5
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-hidden-entire-collection.json +0 -20
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-hidden-multilevel-containerised-component-leaf-hidden.json +0 -14
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-hidden-multilevel-containerised-component.json +0 -14
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-hidden-options.json +0 -10
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-hidden-page-collection.json +0 -18
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-hidden-page-component-used-elsewhere.json +0 -9
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-hidden-page-same-component-reused.json +0 -6
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-hidden-page.json +0 -9
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-nested-answers-hidden-by-option-visible-elsewhere.json +0 -12
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-nested-answers-hidden-by-option.json +0 -12
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-page-nested-component.json +0 -63
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-page-nested-radio-component.json +0 -45
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/data-page-same-component-reused-one-shown.json +0 -8
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/input/reassign-to-rcc.json +0 -72
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/cop-airpax-change-what-happened-after.json +0 -280
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/cop-airpax-remove-photos-after.json +0 -355
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/cop-mandec-base-file.json +0 -80
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/cop-mandec-remove-business-interests-after.json +0 -122
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/cop-mandec-remove-criminality-after.json +0 -86
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/cop-mandec-remove-unspent-convictions-after.json +0 -127
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-chained-component-show-whens-containerised-removed.json +0 -11
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-chained-component-show-whens-dependent-component-nested-block-removed.json +0 -7
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-chained-component-show-whens-dependent-component-nested-removed.json +0 -7
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-chained-component-show-whens-refdata-removed.json +0 -7
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-chained-component-show-whens-removed.json +0 -7
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-chained-component-show-whens-target-component-nested-removed.json +0 -6
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-chained-show-whens-page-hidden-removed.json +0 -6
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-hidden-collection-component-dependent-on-external-data-removed.json +0 -23
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-hidden-collection-component-removed.json +0 -4
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-hidden-component-referring-to-collection-removed.json +0 -21
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-hidden-component-referring-to-hidden-collection-removed.json +0 -6
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-hidden-component-removed.json +0 -4
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-hidden-component-show-when-in-component-and-page-removed.json +0 -5
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-hidden-component-with-nested-questions-removed.json +0 -10
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-hidden-component-with-nested-questions-visible-elsewhere-removed.json +0 -11
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-hidden-containerised-component-removed.json +0 -10
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-hidden-embedded-collection-component-removed.json +0 -4
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-hidden-embedded-component-removed.json +0 -4
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-hidden-entire-collection-removed.json +0 -3
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-hidden-multilevel-containerised-component-leaf-hidden-removed.json +0 -13
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-hidden-multilevel-containerised-component-removed.json +0 -10
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-hidden-options-removed.json +0 -8
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-hidden-page-collection-removed.json +0 -15
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-hidden-page-component-used-elsewhere-removed.json +0 -5
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-hidden-page-removed.json +0 -4
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-hidden-page-same-component-reused-removed.json +0 -5
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-nested-answers-hidden-by-option-removed.json +0 -11
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-nested-answers-hidden-by-option-visible-elsewhere-removed.json +0 -12
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-page-nested-component.json +0 -63
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-page-nested-radio-component-removed.json +0 -45
- package/dist/components/FormRenderer/clear-uncompleted-routes/test-data/output/data-page-same-component-reused-one-shown-removed.json +0 -7
- package/dist/components/FormRenderer/handlers/cyaAction.js +0 -23
- package/dist/components/FormRenderer/handlers/getPageId.js +0 -15
- package/dist/components/FormRenderer/handlers/getPageId.test.js +0 -35
- package/dist/components/FormRenderer/handlers/handlers.test.js +0 -81
- package/dist/components/FormRenderer/handlers/index.js +0 -17
- package/dist/components/FormRenderer/handlers/navigate.js +0 -25
- package/dist/components/FormRenderer/handlers/submissionError.js +0 -18
- package/dist/components/FormRenderer/helpers/canActionProceed.js +0 -27
- package/dist/components/FormRenderer/helpers/canActionProceed.test.js +0 -84
- package/dist/components/FormRenderer/helpers/canCYASubmit.js +0 -17
- package/dist/components/FormRenderer/helpers/canCYASubmit.test.js +0 -75
- package/dist/components/FormRenderer/helpers/cleanHiddenNestedData.js +0 -63
- package/dist/components/FormRenderer/helpers/cleanHiddenNestedData.test.js +0 -191
- package/dist/components/FormRenderer/helpers/clearOutUncompletedRoutes.js +0 -338
- package/dist/components/FormRenderer/helpers/clearOutUncompletedRoutes.test.js +0 -434
- package/dist/components/FormRenderer/helpers/clearOutUncompletedRoutesUtils.js +0 -399
- package/dist/components/FormRenderer/helpers/clearOutUncompletedRoutesUtils.test.js +0 -559
- package/dist/components/FormRenderer/helpers/getCYA.js +0 -42
- package/dist/components/FormRenderer/helpers/getCYA.test.js +0 -46
- package/dist/components/FormRenderer/helpers/getFormState.js +0 -25
- package/dist/components/FormRenderer/helpers/getFormState.test.js +0 -60
- package/dist/components/FormRenderer/helpers/getNextPageId.js +0 -76
- package/dist/components/FormRenderer/helpers/getNextPageId.test.js +0 -292
- package/dist/components/FormRenderer/helpers/getPage.js +0 -27
- package/dist/components/FormRenderer/helpers/getPage.test.js +0 -45
- package/dist/components/FormRenderer/helpers/getRelevantPages.js +0 -27
- package/dist/components/FormRenderer/helpers/getRelevantPages.test.js +0 -70
- package/dist/components/FormRenderer/helpers/getSubmissionStatus.js +0 -65
- package/dist/components/FormRenderer/helpers/getSubmissionStatus.test.js +0 -309
- package/dist/components/FormRenderer/helpers/getUpdatedSectionStates.js +0 -201
- package/dist/components/FormRenderer/helpers/getUpdatedSectionStates.test.js +0 -473
- package/dist/components/FormRenderer/helpers/index.js +0 -33
- package/dist/components/FormRenderer/index.js +0 -10
- package/dist/components/FormRenderer/onCYAAction.js +0 -150
- package/dist/components/FormRenderer/onCYAAction.test.js +0 -741
- package/dist/components/FormRenderer/onPageAction.js +0 -227
- package/dist/components/FormRenderer/onPageAction.test.js +0 -960
- package/dist/components/FormRenderer/onTaskAction.js +0 -47
- package/dist/components/FormRenderer/onTaskAction.test.js +0 -247
- package/dist/components/PageActions/ActionButton.js +0 -48
- package/dist/components/PageActions/ActionButton.test.js +0 -73
- package/dist/components/PageActions/PageActions.js +0 -37
- package/dist/components/PageActions/PageActions.stories.mdx +0 -74
- package/dist/components/PageActions/PageActions.test.js +0 -106
- package/dist/components/PageActions/index.js +0 -10
- package/dist/components/SummaryList/GroupAction.js +0 -50
- package/dist/components/SummaryList/GroupAction.test.js +0 -86
- package/dist/components/SummaryList/RowAction.js +0 -48
- package/dist/components/SummaryList/RowAction.test.js +0 -86
- package/dist/components/SummaryList/SummaryList.js +0 -128
- package/dist/components/SummaryList/SummaryList.scss +0 -79
- package/dist/components/SummaryList/SummaryList.stories.mdx +0 -84
- package/dist/components/SummaryList/SummaryList.test.js +0 -504
- package/dist/components/SummaryList/SummaryListHeadingRow.js +0 -39
- package/dist/components/SummaryList/SummaryListHeadingRowWithAction.js +0 -65
- package/dist/components/SummaryList/SummaryListHeadingRowWithAction.scss +0 -38
- package/dist/components/SummaryList/SummaryListRow.js +0 -58
- package/dist/components/SummaryList/SummaryListTitleRow.js +0 -32
- package/dist/components/SummaryList/helpers/getGroupActionAttributes.js +0 -29
- package/dist/components/SummaryList/helpers/getGroupActionAttributes.test.js +0 -72
- package/dist/components/SummaryList/helpers/getRowActionAttributes.js +0 -29
- package/dist/components/SummaryList/helpers/getRowActionAttributes.test.js +0 -72
- package/dist/components/SummaryList/helpers/index.js +0 -14
- package/dist/components/SummaryList/index.js +0 -10
- package/dist/components/TaskList/Task.js +0 -62
- package/dist/components/TaskList/Task.test.js +0 -176
- package/dist/components/TaskList/TaskList.js +0 -175
- package/dist/components/TaskList/TaskList.scss +0 -123
- package/dist/components/TaskList/TaskList.stories.mdx +0 -164
- package/dist/components/TaskList/TaskList.test.js +0 -535
- package/dist/components/TaskList/TaskState.js +0 -37
- package/dist/components/TaskList/TaskState.test.js +0 -95
- package/dist/components/TaskList/index.js +0 -10
- package/dist/components/index.js +0 -56
- package/dist/context/HooksContext/HooksContext.js +0 -122
- package/dist/context/HooksContext/HooksContext.test.js +0 -45
- package/dist/context/HooksContext/index.js +0 -16
- package/dist/context/ValidationContext/ValidationContext.js +0 -98
- package/dist/context/ValidationContext/ValidationContext.test.js +0 -107
- package/dist/context/ValidationContext/index.js +0 -16
- package/dist/context/index.js +0 -21
- package/dist/hooks/index.js +0 -55
- package/dist/hooks/useAxios.js +0 -36
- package/dist/hooks/useGetRequest.js +0 -89
- package/dist/hooks/useHooks.js +0 -15
- package/dist/hooks/useRefData.js +0 -62
- package/dist/hooks/useValidation.js +0 -15
- package/dist/json/actions.json +0 -17
- package/dist/json/actionsNoSave.json +0 -17
- package/dist/json/addressDetails.json +0 -149
- package/dist/json/areYouACivilServant.json +0 -7
- package/dist/json/firstForm.json +0 -94
- package/dist/json/grade.json +0 -108
- package/dist/json/group.data.json +0 -21
- package/dist/json/group.json +0 -402
- package/dist/json/groupOfRow.json +0 -137
- package/dist/json/groupOfRowData.json +0 -15
- package/dist/json/port.json +0 -346
- package/dist/json/saveAndContinue.json +0 -98
- package/dist/json/sublocation.json +0 -859
- package/dist/json/taskList.json +0 -265
- package/dist/json/team.json +0 -17351
- package/dist/json/terminal.json +0 -81
- package/dist/json/userProfile.data.json +0 -21
- package/dist/json/userProfile.json +0 -276
- package/dist/models/CollectionLabels.js +0 -15
- package/dist/models/ComponentTypes.js +0 -58
- package/dist/models/EventTypes.js +0 -16
- package/dist/models/FormPages.js +0 -16
- package/dist/models/FormTypes.js +0 -24
- package/dist/models/HubFormats.js +0 -14
- package/dist/models/PageAction.js +0 -65
- package/dist/models/TaskStates.js +0 -46
- package/dist/models/index.js +0 -77
- package/dist/setupTests.js +0 -54
- package/dist/utils/CheckYourAnswers/getCYAAction.js +0 -44
- package/dist/utils/CheckYourAnswers/getCYAAction.test.js +0 -120
- package/dist/utils/CheckYourAnswers/getCYACollectionChangeAction.js +0 -57
- package/dist/utils/CheckYourAnswers/getCYACollectionChangeAction.test.js +0 -162
- package/dist/utils/CheckYourAnswers/getCYACollectionDeleteAction.js +0 -66
- package/dist/utils/CheckYourAnswers/getCYACollectionDeleteAction.test.js +0 -198
- package/dist/utils/CheckYourAnswers/getCYARow.js +0 -58
- package/dist/utils/CheckYourAnswers/getCYARow.test.js +0 -373
- package/dist/utils/CheckYourAnswers/getCYARowForGroup.js +0 -69
- package/dist/utils/CheckYourAnswers/getCYARowForGroup.test.js +0 -70
- package/dist/utils/CheckYourAnswers/getCYARowsForCollection.js +0 -71
- package/dist/utils/CheckYourAnswers/getCYARowsForCollection.test.js +0 -285
- package/dist/utils/CheckYourAnswers/getCYARowsForCollectionPage.js +0 -237
- package/dist/utils/CheckYourAnswers/getCYARowsForCollectionPage.test.js +0 -844
- package/dist/utils/CheckYourAnswers/getCYARowsForContainer.js +0 -45
- package/dist/utils/CheckYourAnswers/getCYARowsForContainer.test.js +0 -535
- package/dist/utils/CheckYourAnswers/getCYARowsForPage.js +0 -72
- package/dist/utils/CheckYourAnswers/getCYARowsForPage.test.js +0 -343
- package/dist/utils/CheckYourAnswers/getSummaryListRowForDetails.js +0 -42
- package/dist/utils/CheckYourAnswers/getSummaryListRowForDetails.test.js +0 -56
- package/dist/utils/CheckYourAnswers/index.js +0 -15
- package/dist/utils/CheckYourAnswers/showComponentCYA.js +0 -53
- package/dist/utils/CheckYourAnswers/showComponentCYA.test.js +0 -149
- package/dist/utils/CollectionPage/addCollectionPageEntry.js +0 -23
- package/dist/utils/CollectionPage/addCollectionPageEntry.test.js +0 -17
- package/dist/utils/CollectionPage/duplicateCollectionPageActiveEntry.js +0 -26
- package/dist/utils/CollectionPage/duplicateCollectionPageActiveEntry.test.js +0 -70
- package/dist/utils/CollectionPage/duplicateCollectionPageEntry.js +0 -51
- package/dist/utils/CollectionPage/duplicateCollectionPageEntry.test.js +0 -125
- package/dist/utils/CollectionPage/getCollectionPageActiveId.js +0 -24
- package/dist/utils/CollectionPage/getCollectionPageActiveId.test.js +0 -26
- package/dist/utils/CollectionPage/getCollectionPageActiveIndex.js +0 -44
- package/dist/utils/CollectionPage/getCollectionPageActiveIndex.test.js +0 -88
- package/dist/utils/CollectionPage/getCollectionPageData.js +0 -53
- package/dist/utils/CollectionPage/getCollectionPageData.test.js +0 -103
- package/dist/utils/CollectionPage/getErrorsForCollection.js +0 -55
- package/dist/utils/CollectionPage/getErrorsForCollection.test.js +0 -154
- package/dist/utils/CollectionPage/getQuickEditPage.js +0 -122
- package/dist/utils/CollectionPage/getQuickEditPage.test.js +0 -143
- package/dist/utils/CollectionPage/index.js +0 -33
- package/dist/utils/CollectionPage/mergeCollectionPages.js +0 -128
- package/dist/utils/CollectionPage/mergeCollectionPages.test.js +0 -198
- package/dist/utils/CollectionPage/removeCollectionPageEntry.js +0 -36
- package/dist/utils/CollectionPage/removeCollectionPageEntry.test.js +0 -62
- package/dist/utils/CollectionPage/setCollectionPageData.js +0 -60
- package/dist/utils/CollectionPage/setCollectionPageData.test.js +0 -182
- package/dist/utils/Component/addShowWhen.js +0 -43
- package/dist/utils/Component/addShowWhen.test.js +0 -217
- package/dist/utils/Component/applyToComponentTree.js +0 -68
- package/dist/utils/Component/applyToComponentTree.test.js +0 -125
- package/dist/utils/Component/cleanAttributes.js +0 -42
- package/dist/utils/Component/cleanAttributes.test.js +0 -67
- package/dist/utils/Component/elevateNestedComponents.js +0 -58
- package/dist/utils/Component/elevateNestedComponents.test.js +0 -305
- package/dist/utils/Component/getComponent.js +0 -305
- package/dist/utils/Component/getComponentTests/getComponent.autocomplete.test.js +0 -73
- package/dist/utils/Component/getComponentTests/getComponent.calculation.test.js +0 -251
- package/dist/utils/Component/getComponentTests/getComponent.checkboxes.test.js +0 -156
- package/dist/utils/Component/getComponentTests/getComponent.date.test.js +0 -104
- package/dist/utils/Component/getComponentTests/getComponent.details.test.js +0 -56
- package/dist/utils/Component/getComponentTests/getComponent.email.test.js +0 -60
- package/dist/utils/Component/getComponentTests/getComponent.file.test.js +0 -60
- package/dist/utils/Component/getComponentTests/getComponent.heading.test.js +0 -31
- package/dist/utils/Component/getComponentTests/getComponent.html.test.js +0 -42
- package/dist/utils/Component/getComponentTests/getComponent.insetText.test.js +0 -29
- package/dist/utils/Component/getComponentTests/getComponent.list.test.js +0 -47
- package/dist/utils/Component/getComponentTests/getComponent.multifile.test.js +0 -66
- package/dist/utils/Component/getComponentTests/getComponent.nested.test.js +0 -211
- package/dist/utils/Component/getComponentTests/getComponent.paragraph.test.js +0 -46
- package/dist/utils/Component/getComponentTests/getComponent.phoneNumber.test.js +0 -60
- package/dist/utils/Component/getComponentTests/getComponent.radios.test.js +0 -221
- package/dist/utils/Component/getComponentTests/getComponent.select.test.js +0 -62
- package/dist/utils/Component/getComponentTests/getComponent.text.test.js +0 -60
- package/dist/utils/Component/getComponentTests/getComponent.textArea.test.js +0 -104
- package/dist/utils/Component/getComponentTests/getComponent.time.test.js +0 -80
- package/dist/utils/Component/getComponentTests/getComponent.unknown.test.js +0 -14
- package/dist/utils/Component/getComponentTests/getComponent.warningText.test.js +0 -29
- package/dist/utils/Component/getDefaultValue.js +0 -22
- package/dist/utils/Component/getDefaultValue.test.js +0 -62
- package/dist/utils/Component/getDefaultValueFromConfig.js +0 -106
- package/dist/utils/Component/getDefaultValueFromConfig.test.js +0 -141
- package/dist/utils/Component/index.js +0 -29
- package/dist/utils/Component/isEditable.js +0 -13
- package/dist/utils/Component/isEditable.test.js +0 -42
- package/dist/utils/Component/optionIsSelected.js +0 -25
- package/dist/utils/Component/optionIsSelected.test.js +0 -69
- package/dist/utils/Component/setupContainerComponentsPath.js +0 -35
- package/dist/utils/Component/setupContainerComponentsPath.test.js +0 -79
- package/dist/utils/Component/showComponent.js +0 -25
- package/dist/utils/Component/showComponent.test.js +0 -157
- package/dist/utils/Component/wrapInFormGroup.js +0 -26
- package/dist/utils/Condition/index.js +0 -17
- package/dist/utils/Condition/meetsAllConditions.js +0 -44
- package/dist/utils/Condition/meetsAllConditions.test.js +0 -109
- package/dist/utils/Condition/meetsCondition.js +0 -165
- package/dist/utils/Condition/meetsCondition.test.js +0 -899
- package/dist/utils/Condition/meetsOneCondition.js +0 -32
- package/dist/utils/Condition/meetsOneCondition.test.js +0 -101
- package/dist/utils/Condition/setupConditions.js +0 -36
- package/dist/utils/Condition/setupConditions.test.js +0 -34
- package/dist/utils/Container/getEditableComponents.js +0 -29
- package/dist/utils/Container/getEditableComponents.test.js +0 -134
- package/dist/utils/Container/index.js +0 -17
- package/dist/utils/Container/setupNesting.js +0 -53
- package/dist/utils/Container/setupNesting.test.js +0 -143
- package/dist/utils/Container/showContainer.js +0 -52
- package/dist/utils/Container/showContainer.test.js +0 -179
- package/dist/utils/Data/applyFormula.js +0 -90
- package/dist/utils/Data/applyFormula.test.js +0 -264
- package/dist/utils/Data/deleteValues.js +0 -19
- package/dist/utils/Data/deleteValues.test.js +0 -58
- package/dist/utils/Data/getAutocompleteSource.js +0 -87
- package/dist/utils/Data/getAutocompleteSource.test.js +0 -335
- package/dist/utils/Data/getDataPath.js +0 -66
- package/dist/utils/Data/getDataPath.test.js +0 -49
- package/dist/utils/Data/getOptions.js +0 -86
- package/dist/utils/Data/getOptions.test.js +0 -279
- package/dist/utils/Data/getSourceData.js +0 -44
- package/dist/utils/Data/getSourceData.test.js +0 -158
- package/dist/utils/Data/index.js +0 -35
- package/dist/utils/Data/nestInRefdataOptions.js +0 -47
- package/dist/utils/Data/nestInRefdataOptions.test.js +0 -237
- package/dist/utils/Data/refDataToOptions.js +0 -44
- package/dist/utils/Data/refDataToOptions.test.js +0 -197
- package/dist/utils/Data/setDataItem.js +0 -26
- package/dist/utils/Data/setDataItem.test.js +0 -136
- package/dist/utils/Data/setupFormData.js +0 -49
- package/dist/utils/Data/setupFormData.test.js +0 -215
- package/dist/utils/Data/setupRefDataUrlForComponent.js +0 -44
- package/dist/utils/Data/setupRefDataUrlForComponent.test.js +0 -150
- package/dist/utils/FormPage/applyConditionalProperties.js +0 -34
- package/dist/utils/FormPage/applyConditionalProperties.test.js +0 -61
- package/dist/utils/FormPage/getConditionalText.js +0 -55
- package/dist/utils/FormPage/getConditionalText.test.js +0 -163
- package/dist/utils/FormPage/getFormPage.js +0 -54
- package/dist/utils/FormPage/getFormPage.test.js +0 -206
- package/dist/utils/FormPage/getFormPages.js +0 -30
- package/dist/utils/FormPage/getFormPages.test.js +0 -97
- package/dist/utils/FormPage/getPageActions.js +0 -58
- package/dist/utils/FormPage/getPageActions.test.js +0 -115
- package/dist/utils/FormPage/getParagraphFromText.js +0 -21
- package/dist/utils/FormPage/getParagraphFromText.test.js +0 -28
- package/dist/utils/FormPage/index.js +0 -24
- package/dist/utils/FormPage/showFormPage.js +0 -52
- package/dist/utils/FormPage/showFormPage.test.js +0 -181
- package/dist/utils/FormPage/showFormPageCYA.js +0 -23
- package/dist/utils/FormPage/showFormPageCYA.test.js +0 -29
- package/dist/utils/FormPage/useComponent.js +0 -83
- package/dist/utils/FormPage/useComponent.test.js +0 -216
- package/dist/utils/Format/formatData.js +0 -27
- package/dist/utils/Format/formatData.test.js +0 -46
- package/dist/utils/Format/formatDataForComponent.js +0 -35
- package/dist/utils/Format/formatDataForComponent.test.js +0 -114
- package/dist/utils/Format/formatDataForForm.js +0 -27
- package/dist/utils/Format/formatDataForForm.test.js +0 -79
- package/dist/utils/Format/formatDataForPage.js +0 -31
- package/dist/utils/Format/formatDataForPage.test.js +0 -94
- package/dist/utils/Format/index.js +0 -21
- package/dist/utils/Hub/getFormHub.js +0 -40
- package/dist/utils/Hub/getFormHub.test.js +0 -105
- package/dist/utils/Hub/index.js +0 -15
- package/dist/utils/Meta/constants.js +0 -9
- package/dist/utils/Meta/documents/getDocuments.js +0 -15
- package/dist/utils/Meta/documents/getDocuments.test.js +0 -46
- package/dist/utils/Meta/documents/index.js +0 -19
- package/dist/utils/Meta/documents/setDocumentsForField.js +0 -30
- package/dist/utils/Meta/documents/setDocumentsForField.test.js +0 -97
- package/dist/utils/Meta/index.js +0 -17
- package/dist/utils/Operate/checkValueIsTruthy.js +0 -29
- package/dist/utils/Operate/checkValueIsTruthy.test.js +0 -43
- package/dist/utils/Operate/deleteValueInFormData.js +0 -27
- package/dist/utils/Operate/deleteValueInFormData.test.js +0 -61
- package/dist/utils/Operate/doesContainValue.js +0 -35
- package/dist/utils/Operate/doesContainValue.test.js +0 -76
- package/dist/utils/Operate/getFirstOf.js +0 -31
- package/dist/utils/Operate/getFirstOf.test.js +0 -87
- package/dist/utils/Operate/getIndexOfMatchingValueIn.js +0 -68
- package/dist/utils/Operate/getIndexOfMatchingValueIn.test.js +0 -158
- package/dist/utils/Operate/getLength.js +0 -51
- package/dist/utils/Operate/getLength.test.js +0 -90
- package/dist/utils/Operate/index.js +0 -13
- package/dist/utils/Operate/persistValueInFormData.js +0 -40
- package/dist/utils/Operate/persistValueInFormData.test.js +0 -118
- package/dist/utils/Operate/runPageOperations.js +0 -75
- package/dist/utils/Operate/runPageOperations.test.js +0 -105
- package/dist/utils/Operate/setValueInFormData.js +0 -22
- package/dist/utils/Operate/setValueInFormData.test.js +0 -45
- package/dist/utils/Operate/shouldRun.js +0 -57
- package/dist/utils/Operate/shouldRun.test.js +0 -65
- package/dist/utils/Validate/additional/conditionallyPermittedChange.js +0 -26
- package/dist/utils/Validate/additional/conditionallyPermittedChange.test.js +0 -34
- package/dist/utils/Validate/additional/conditionallyRequired.js +0 -24
- package/dist/utils/Validate/additional/conditionallyRequired.test.js +0 -74
- package/dist/utils/Validate/additional/index.js +0 -74
- package/dist/utils/Validate/additional/index.test.js +0 -130
- package/dist/utils/Validate/additional/mustBeAfter.js +0 -34
- package/dist/utils/Validate/additional/mustBeAfter.test.js +0 -109
- package/dist/utils/Validate/additional/mustBeBefore.js +0 -34
- package/dist/utils/Validate/additional/mustBeBefore.test.js +0 -77
- package/dist/utils/Validate/additional/mustBeEarlierDateTime.js +0 -57
- package/dist/utils/Validate/additional/mustBeEarlierDateTime.test.js +0 -128
- package/dist/utils/Validate/additional/mustBeGreaterThan.js +0 -22
- package/dist/utils/Validate/additional/mustBeGreaterThan.test.js +0 -57
- package/dist/utils/Validate/additional/mustBeInTheFuture.js +0 -33
- package/dist/utils/Validate/additional/mustBeInTheFuture.test.js +0 -32
- package/dist/utils/Validate/additional/mustBeInThePast.js +0 -36
- package/dist/utils/Validate/additional/mustBeInThePast.test.js +0 -32
- package/dist/utils/Validate/additional/mustBeLessThan.js +0 -22
- package/dist/utils/Validate/additional/mustBeLessThan.test.js +0 -53
- package/dist/utils/Validate/additional/mustBeLongerThan.js +0 -23
- package/dist/utils/Validate/additional/mustBeLongerThan.test.js +0 -49
- package/dist/utils/Validate/additional/mustBeNumbersOnly.js +0 -24
- package/dist/utils/Validate/additional/mustBeNumbersOnly.test.js +0 -45
- package/dist/utils/Validate/additional/mustBeOneOf.js +0 -22
- package/dist/utils/Validate/additional/mustBeOneOf.test.js +0 -37
- package/dist/utils/Validate/additional/mustBeShorterThan.js +0 -23
- package/dist/utils/Validate/additional/mustBeShorterThan.test.js +0 -49
- package/dist/utils/Validate/additional/mustBeUniqueInCollection.js +0 -40
- package/dist/utils/Validate/additional/mustBeUniqueInCollection.test.js +0 -163
- package/dist/utils/Validate/additional/mustEnterAtLeastOne.js +0 -26
- package/dist/utils/Validate/additional/mustEnterAtLeastOne.test.js +0 -37
- package/dist/utils/Validate/additional/mustHaveLessThanDecimalPlaces.js +0 -19
- package/dist/utils/Validate/additional/mustHaveLessThanDecimalPlaces.test.js +0 -37
- package/dist/utils/Validate/additional/mustNotContainSql.js +0 -19
- package/dist/utils/Validate/additional/mustNotContainSql.test.js +0 -33
- package/dist/utils/Validate/additional/mustSelectOnlyOne.js +0 -29
- package/dist/utils/Validate/additional/mustSelectOnlyOne.test.js +0 -55
- package/dist/utils/Validate/additional/utils.js +0 -35
- package/dist/utils/Validate/index.js +0 -33
- package/dist/utils/Validate/validateCollection.js +0 -50
- package/dist/utils/Validate/validateCollection.test.js +0 -134
- package/dist/utils/Validate/validateComponent.js +0 -126
- package/dist/utils/Validate/validateComponent.test.js +0 -435
- package/dist/utils/Validate/validateContainer.js +0 -52
- package/dist/utils/Validate/validateContainer.test.js +0 -115
- package/dist/utils/Validate/validateDate.js +0 -112
- package/dist/utils/Validate/validateDate.test.js +0 -133
- package/dist/utils/Validate/validateEmail.js +0 -45
- package/dist/utils/Validate/validateEmail.test.js +0 -78
- package/dist/utils/Validate/validateMultifile.js +0 -29
- package/dist/utils/Validate/validateMultifile.test.js +0 -46
- package/dist/utils/Validate/validateOnPageLoad.js +0 -24
- package/dist/utils/Validate/validateOnPageLoad.test.js +0 -89
- package/dist/utils/Validate/validatePage.js +0 -56
- package/dist/utils/Validate/validatePage.test.js +0 -795
- package/dist/utils/Validate/validateRegex.js +0 -41
- package/dist/utils/Validate/validateRegex.test.js +0 -43
- package/dist/utils/Validate/validateRequired.js +0 -37
- package/dist/utils/Validate/validateRequired.test.js +0 -64
- package/dist/utils/Validate/validateTextArea.js +0 -36
- package/dist/utils/Validate/validateTextArea.test.js +0 -71
- package/dist/utils/Validate/validateTime.js +0 -76
- package/dist/utils/Validate/validateTime.test.js +0 -116
- package/dist/utils/canOverrideFieldRequired.js +0 -23
- package/dist/utils/index.js +0 -42
|
@@ -1,859 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"data": [
|
|
3
|
-
{
|
|
4
|
-
"id": 1,
|
|
5
|
-
"sublocation": "Freight (inward)",
|
|
6
|
-
"description": null,
|
|
7
|
-
"validfrom": "2020-03-08T23:59:00.000Z",
|
|
8
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
9
|
-
"updatedby": null,
|
|
10
|
-
"uoflocation": null
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
"id": 2,
|
|
14
|
-
"sublocation": "Freight (outward)",
|
|
15
|
-
"description": null,
|
|
16
|
-
"validfrom": "2020-03-08T23:59:00.000Z",
|
|
17
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
18
|
-
"updatedby": null,
|
|
19
|
-
"uoflocation": null
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
"id": 3,
|
|
23
|
-
"sublocation": "Tourist (inbound)",
|
|
24
|
-
"description": null,
|
|
25
|
-
"validfrom": "2020-03-08T23:59:00.000Z",
|
|
26
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
27
|
-
"updatedby": null,
|
|
28
|
-
"uoflocation": null
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"id": 4,
|
|
32
|
-
"sublocation": "Cargo Centre",
|
|
33
|
-
"description": null,
|
|
34
|
-
"validfrom": "2020-03-08T23:59:00.000Z",
|
|
35
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
36
|
-
"updatedby": null,
|
|
37
|
-
"uoflocation": null
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"id": 5,
|
|
41
|
-
"sublocation": "Lane",
|
|
42
|
-
"description": null,
|
|
43
|
-
"validfrom": "2020-03-08T23:59:00.000Z",
|
|
44
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
45
|
-
"updatedby": null,
|
|
46
|
-
"uoflocation": null
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"id": 6,
|
|
50
|
-
"sublocation": "Shed",
|
|
51
|
-
"description": null,
|
|
52
|
-
"validfrom": "2020-03-08T23:59:00.000Z",
|
|
53
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
54
|
-
"updatedby": null,
|
|
55
|
-
"uoflocation": null
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"id": 7,
|
|
59
|
-
"sublocation": "Tourist (outbound)",
|
|
60
|
-
"description": null,
|
|
61
|
-
"validfrom": "2020-03-08T23:59:00.000Z",
|
|
62
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
63
|
-
"updatedby": null,
|
|
64
|
-
"uoflocation": null
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
"id": 8,
|
|
68
|
-
"sublocation": "Channels",
|
|
69
|
-
"description": null,
|
|
70
|
-
"validfrom": "2020-03-08T23:59:00.000Z",
|
|
71
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
72
|
-
"updatedby": null,
|
|
73
|
-
"uoflocation": null
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
"id": 9,
|
|
77
|
-
"sublocation": "Baggage reclaim",
|
|
78
|
-
"description": null,
|
|
79
|
-
"validfrom": "2020-03-08T23:59:00.000Z",
|
|
80
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
81
|
-
"updatedby": null,
|
|
82
|
-
"uoflocation": null
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
"id": 10,
|
|
86
|
-
"sublocation": "Warehouse",
|
|
87
|
-
"description": null,
|
|
88
|
-
"validfrom": "2020-03-08T23:59:00.000Z",
|
|
89
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
90
|
-
"updatedby": null,
|
|
91
|
-
"uoflocation": null
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
"id": 11,
|
|
95
|
-
"sublocation": "Custody Suite",
|
|
96
|
-
"description": null,
|
|
97
|
-
"validfrom": "2020-03-08T23:59:00.000Z",
|
|
98
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
99
|
-
"updatedby": null,
|
|
100
|
-
"uoflocation": null
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
"id": 12,
|
|
104
|
-
"sublocation": "Controlled Waiting Area (CWA)",
|
|
105
|
-
"description": null,
|
|
106
|
-
"validfrom": "2020-03-08T23:59:00.000Z",
|
|
107
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
108
|
-
"updatedby": null,
|
|
109
|
-
"uoflocation": null
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
"id": 13,
|
|
113
|
-
"sublocation": "Short Term Holding Facility (STHF)",
|
|
114
|
-
"description": null,
|
|
115
|
-
"validfrom": "2020-03-08T23:59:00.000Z",
|
|
116
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
117
|
-
"updatedby": null,
|
|
118
|
-
"uoflocation": null
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
"id": 14,
|
|
122
|
-
"sublocation": "Escort/transportation",
|
|
123
|
-
"description": null,
|
|
124
|
-
"validfrom": "2020-03-08T23:59:00.000Z",
|
|
125
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
126
|
-
"updatedby": null,
|
|
127
|
-
"uoflocation": null
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
"id": 15,
|
|
131
|
-
"sublocation": "Tug haven",
|
|
132
|
-
"description": null,
|
|
133
|
-
"validfrom": "2020-03-26T23:59:00.000Z",
|
|
134
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
135
|
-
"updatedby": null,
|
|
136
|
-
"uoflocation": null
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
"id": 16,
|
|
140
|
-
"sublocation": "Berths",
|
|
141
|
-
"description": null,
|
|
142
|
-
"validfrom": "2020-03-26T23:59:00.000Z",
|
|
143
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
144
|
-
"updatedby": null,
|
|
145
|
-
"uoflocation": null
|
|
146
|
-
},
|
|
147
|
-
{
|
|
148
|
-
"id": 17,
|
|
149
|
-
"sublocation": "Cargo",
|
|
150
|
-
"description": null,
|
|
151
|
-
"validfrom": "2020-05-27T00:00:00.000Z",
|
|
152
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
153
|
-
"updatedby": null,
|
|
154
|
-
"uoflocation": null
|
|
155
|
-
},
|
|
156
|
-
{
|
|
157
|
-
"id": 18,
|
|
158
|
-
"sublocation": "Departure Lounge",
|
|
159
|
-
"description": null,
|
|
160
|
-
"validfrom": "2020-05-27T00:00:00.000Z",
|
|
161
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
162
|
-
"updatedby": null,
|
|
163
|
-
"uoflocation": null
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
"id": 19,
|
|
167
|
-
"sublocation": "Arrival Lounge",
|
|
168
|
-
"description": null,
|
|
169
|
-
"validfrom": "2020-05-27T00:00:00.000Z",
|
|
170
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
171
|
-
"updatedby": null,
|
|
172
|
-
"uoflocation": null
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
"id": 20,
|
|
176
|
-
"sublocation": "Slipway",
|
|
177
|
-
"description": null,
|
|
178
|
-
"validfrom": "2020-08-05T00:00:00.000Z",
|
|
179
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
180
|
-
"updatedby": null,
|
|
181
|
-
"uoflocation": null
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
"id": 21,
|
|
185
|
-
"sublocation": "Marina",
|
|
186
|
-
"description": null,
|
|
187
|
-
"validfrom": "2020-08-05T00:00:00.000Z",
|
|
188
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
189
|
-
"updatedby": null,
|
|
190
|
-
"uoflocation": null
|
|
191
|
-
},
|
|
192
|
-
{
|
|
193
|
-
"id": 22,
|
|
194
|
-
"sublocation": "Habour",
|
|
195
|
-
"description": null,
|
|
196
|
-
"validfrom": "2020-08-05T00:00:00.000Z",
|
|
197
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
198
|
-
"updatedby": null,
|
|
199
|
-
"uoflocation": null
|
|
200
|
-
},
|
|
201
|
-
{
|
|
202
|
-
"id": 23,
|
|
203
|
-
"sublocation": "Beach",
|
|
204
|
-
"description": null,
|
|
205
|
-
"validfrom": "2020-08-05T00:00:00.000Z",
|
|
206
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
207
|
-
"updatedby": null,
|
|
208
|
-
"uoflocation": null
|
|
209
|
-
},
|
|
210
|
-
{
|
|
211
|
-
"id": 24,
|
|
212
|
-
"sublocation": "Coves",
|
|
213
|
-
"description": null,
|
|
214
|
-
"validfrom": "2020-08-05T00:00:00.000Z",
|
|
215
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
216
|
-
"updatedby": null,
|
|
217
|
-
"uoflocation": null
|
|
218
|
-
},
|
|
219
|
-
{
|
|
220
|
-
"id": 25,
|
|
221
|
-
"sublocation": "Farm fields",
|
|
222
|
-
"description": null,
|
|
223
|
-
"validfrom": "2020-08-05T00:00:00.000Z",
|
|
224
|
-
"validto": "2021-05-07T00:00:01.000Z",
|
|
225
|
-
"updatedby": null,
|
|
226
|
-
"uoflocation": null
|
|
227
|
-
},
|
|
228
|
-
{
|
|
229
|
-
"id": 26,
|
|
230
|
-
"sublocation": "Freight (inward)",
|
|
231
|
-
"description": null,
|
|
232
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
233
|
-
"validto": "2021-05-06T14:00:02.000Z",
|
|
234
|
-
"updatedby": "Ben Milnes",
|
|
235
|
-
"uoflocation": false
|
|
236
|
-
},
|
|
237
|
-
{
|
|
238
|
-
"id": 27,
|
|
239
|
-
"sublocation": "Freight (outward)",
|
|
240
|
-
"description": null,
|
|
241
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
242
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
243
|
-
"updatedby": "Ben Milnes",
|
|
244
|
-
"uoflocation": false
|
|
245
|
-
},
|
|
246
|
-
{
|
|
247
|
-
"id": 28,
|
|
248
|
-
"sublocation": "Tourist (inbound)",
|
|
249
|
-
"description": null,
|
|
250
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
251
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
252
|
-
"updatedby": "Ben Milnes",
|
|
253
|
-
"uoflocation": false
|
|
254
|
-
},
|
|
255
|
-
{
|
|
256
|
-
"id": 29,
|
|
257
|
-
"sublocation": "Cargo Centre",
|
|
258
|
-
"description": null,
|
|
259
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
260
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
261
|
-
"updatedby": "Ben Milnes",
|
|
262
|
-
"uoflocation": false
|
|
263
|
-
},
|
|
264
|
-
{
|
|
265
|
-
"id": 30,
|
|
266
|
-
"sublocation": "Lane",
|
|
267
|
-
"description": null,
|
|
268
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
269
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
270
|
-
"updatedby": "Ben Milnes",
|
|
271
|
-
"uoflocation": false
|
|
272
|
-
},
|
|
273
|
-
{
|
|
274
|
-
"id": 31,
|
|
275
|
-
"sublocation": "Shed",
|
|
276
|
-
"description": null,
|
|
277
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
278
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
279
|
-
"updatedby": "Ben Milnes",
|
|
280
|
-
"uoflocation": false
|
|
281
|
-
},
|
|
282
|
-
{
|
|
283
|
-
"id": 32,
|
|
284
|
-
"sublocation": "Tourist (outbound)",
|
|
285
|
-
"description": null,
|
|
286
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
287
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
288
|
-
"updatedby": "Ben Milnes",
|
|
289
|
-
"uoflocation": false
|
|
290
|
-
},
|
|
291
|
-
{
|
|
292
|
-
"id": 33,
|
|
293
|
-
"sublocation": "Channels",
|
|
294
|
-
"description": null,
|
|
295
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
296
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
297
|
-
"updatedby": "Ben Milnes",
|
|
298
|
-
"uoflocation": false
|
|
299
|
-
},
|
|
300
|
-
{
|
|
301
|
-
"id": 34,
|
|
302
|
-
"sublocation": "Baggage reclaim",
|
|
303
|
-
"description": null,
|
|
304
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
305
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
306
|
-
"updatedby": "Ben Milnes",
|
|
307
|
-
"uoflocation": true
|
|
308
|
-
},
|
|
309
|
-
{
|
|
310
|
-
"id": 35,
|
|
311
|
-
"sublocation": "Warehouse",
|
|
312
|
-
"description": null,
|
|
313
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
314
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
315
|
-
"updatedby": "Ben Milnes",
|
|
316
|
-
"uoflocation": false
|
|
317
|
-
},
|
|
318
|
-
{
|
|
319
|
-
"id": 36,
|
|
320
|
-
"sublocation": "Custody Suite",
|
|
321
|
-
"description": null,
|
|
322
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
323
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
324
|
-
"updatedby": "Ben Milnes",
|
|
325
|
-
"uoflocation": false
|
|
326
|
-
},
|
|
327
|
-
{
|
|
328
|
-
"id": 37,
|
|
329
|
-
"sublocation": "Controlled Waiting Area (CWA)",
|
|
330
|
-
"description": null,
|
|
331
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
332
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
333
|
-
"updatedby": "Ben Milnes",
|
|
334
|
-
"uoflocation": true
|
|
335
|
-
},
|
|
336
|
-
{
|
|
337
|
-
"id": 38,
|
|
338
|
-
"sublocation": "Short Term Holding Facility (STHF)",
|
|
339
|
-
"description": null,
|
|
340
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
341
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
342
|
-
"updatedby": "Ben Milnes",
|
|
343
|
-
"uoflocation": false
|
|
344
|
-
},
|
|
345
|
-
{
|
|
346
|
-
"id": 39,
|
|
347
|
-
"sublocation": "Escort/transportation",
|
|
348
|
-
"description": null,
|
|
349
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
350
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
351
|
-
"updatedby": "Ben Milnes",
|
|
352
|
-
"uoflocation": false
|
|
353
|
-
},
|
|
354
|
-
{
|
|
355
|
-
"id": 40,
|
|
356
|
-
"sublocation": "Tug haven",
|
|
357
|
-
"description": null,
|
|
358
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
359
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
360
|
-
"updatedby": "Ben Milnes",
|
|
361
|
-
"uoflocation": false
|
|
362
|
-
},
|
|
363
|
-
{
|
|
364
|
-
"id": 41,
|
|
365
|
-
"sublocation": "Berths / Allocation Lanes",
|
|
366
|
-
"description": null,
|
|
367
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
368
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
369
|
-
"updatedby": "Ben Milnes",
|
|
370
|
-
"uoflocation": true
|
|
371
|
-
},
|
|
372
|
-
{
|
|
373
|
-
"id": 42,
|
|
374
|
-
"sublocation": "Cargo",
|
|
375
|
-
"description": null,
|
|
376
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
377
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
378
|
-
"updatedby": "Ben Milnes",
|
|
379
|
-
"uoflocation": false
|
|
380
|
-
},
|
|
381
|
-
{
|
|
382
|
-
"id": 43,
|
|
383
|
-
"sublocation": "Departure Lounge",
|
|
384
|
-
"description": null,
|
|
385
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
386
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
387
|
-
"updatedby": "Ben Milnes",
|
|
388
|
-
"uoflocation": false
|
|
389
|
-
},
|
|
390
|
-
{
|
|
391
|
-
"id": 44,
|
|
392
|
-
"sublocation": "Arrival Lounge",
|
|
393
|
-
"description": null,
|
|
394
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
395
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
396
|
-
"updatedby": "Ben Milnes",
|
|
397
|
-
"uoflocation": false
|
|
398
|
-
},
|
|
399
|
-
{
|
|
400
|
-
"id": 45,
|
|
401
|
-
"sublocation": "Slipway",
|
|
402
|
-
"description": null,
|
|
403
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
404
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
405
|
-
"updatedby": "Ben Milnes",
|
|
406
|
-
"uoflocation": false
|
|
407
|
-
},
|
|
408
|
-
{
|
|
409
|
-
"id": 46,
|
|
410
|
-
"sublocation": "Marina",
|
|
411
|
-
"description": null,
|
|
412
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
413
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
414
|
-
"updatedby": "Ben Milnes",
|
|
415
|
-
"uoflocation": false
|
|
416
|
-
},
|
|
417
|
-
{
|
|
418
|
-
"id": 47,
|
|
419
|
-
"sublocation": "Harbour",
|
|
420
|
-
"description": null,
|
|
421
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
422
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
423
|
-
"updatedby": "Ben Milnes",
|
|
424
|
-
"uoflocation": true
|
|
425
|
-
},
|
|
426
|
-
{
|
|
427
|
-
"id": 48,
|
|
428
|
-
"sublocation": "Beach",
|
|
429
|
-
"description": null,
|
|
430
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
431
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
432
|
-
"updatedby": "Ben Milnes",
|
|
433
|
-
"uoflocation": false
|
|
434
|
-
},
|
|
435
|
-
{
|
|
436
|
-
"id": 49,
|
|
437
|
-
"sublocation": "Coves",
|
|
438
|
-
"description": null,
|
|
439
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
440
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
441
|
-
"updatedby": "Ben Milnes",
|
|
442
|
-
"uoflocation": false
|
|
443
|
-
},
|
|
444
|
-
{
|
|
445
|
-
"id": 50,
|
|
446
|
-
"sublocation": "Farm fields",
|
|
447
|
-
"description": null,
|
|
448
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
449
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
450
|
-
"updatedby": "Ben Milnes",
|
|
451
|
-
"uoflocation": false
|
|
452
|
-
},
|
|
453
|
-
{
|
|
454
|
-
"id": 51,
|
|
455
|
-
"sublocation": "Disembarkation (prior to PCP)",
|
|
456
|
-
"description": null,
|
|
457
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
458
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
459
|
-
"updatedby": "Ben Milnes",
|
|
460
|
-
"uoflocation": true
|
|
461
|
-
},
|
|
462
|
-
{
|
|
463
|
-
"id": 52,
|
|
464
|
-
"sublocation": "PCP",
|
|
465
|
-
"description": null,
|
|
466
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
467
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
468
|
-
"updatedby": "Ben Milnes",
|
|
469
|
-
"uoflocation": true
|
|
470
|
-
},
|
|
471
|
-
{
|
|
472
|
-
"id": 53,
|
|
473
|
-
"sublocation": "Customs channel/lanes",
|
|
474
|
-
"description": null,
|
|
475
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
476
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
477
|
-
"updatedby": "Ben Milnes",
|
|
478
|
-
"uoflocation": true
|
|
479
|
-
},
|
|
480
|
-
{
|
|
481
|
-
"id": 54,
|
|
482
|
-
"sublocation": "Further examination area",
|
|
483
|
-
"description": "Further examination area/Detention suite/Interview room",
|
|
484
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
485
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
486
|
-
"updatedby": "Ben Milnes",
|
|
487
|
-
"uoflocation": true
|
|
488
|
-
},
|
|
489
|
-
{
|
|
490
|
-
"id": 55,
|
|
491
|
-
"sublocation": "Check-in/security",
|
|
492
|
-
"description": "Check-in/security/ Others’ control area",
|
|
493
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
494
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
495
|
-
"updatedby": "Ben Milnes",
|
|
496
|
-
"uoflocation": true
|
|
497
|
-
},
|
|
498
|
-
{
|
|
499
|
-
"id": 56,
|
|
500
|
-
"sublocation": "Embarkation controls",
|
|
501
|
-
"description": null,
|
|
502
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
503
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
504
|
-
"updatedby": "Ben Milnes",
|
|
505
|
-
"uoflocation": true
|
|
506
|
-
},
|
|
507
|
-
{
|
|
508
|
-
"id": 57,
|
|
509
|
-
"sublocation": "GA/GM site",
|
|
510
|
-
"description": null,
|
|
511
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
512
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
513
|
-
"updatedby": "Ben Milnes",
|
|
514
|
-
"uoflocation": true
|
|
515
|
-
},
|
|
516
|
-
{
|
|
517
|
-
"id": 58,
|
|
518
|
-
"sublocation": "Docks/Containers/Freight area",
|
|
519
|
-
"description": null,
|
|
520
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
521
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
522
|
-
"updatedby": "Ben Milnes",
|
|
523
|
-
"uoflocation": true
|
|
524
|
-
},
|
|
525
|
-
{
|
|
526
|
-
"id": 59,
|
|
527
|
-
"sublocation": "Hospital/Hospital duties",
|
|
528
|
-
"description": null,
|
|
529
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
530
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
531
|
-
"updatedby": "Ben Milnes",
|
|
532
|
-
"uoflocation": true
|
|
533
|
-
},
|
|
534
|
-
{
|
|
535
|
-
"id": 60,
|
|
536
|
-
"sublocation": "Other",
|
|
537
|
-
"description": null,
|
|
538
|
-
"validfrom": "2021-05-07T00:00:01.000Z",
|
|
539
|
-
"validto": "2021-05-07T00:00:02.000Z",
|
|
540
|
-
"updatedby": "Ben Milnes",
|
|
541
|
-
"uoflocation": true
|
|
542
|
-
},
|
|
543
|
-
{
|
|
544
|
-
"id": 1,
|
|
545
|
-
"sublocation": "Freight (inward)",
|
|
546
|
-
"description": null,
|
|
547
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
548
|
-
"validto": null,
|
|
549
|
-
"updatedby": "BethStephenson",
|
|
550
|
-
"uoflocation": false
|
|
551
|
-
},
|
|
552
|
-
{
|
|
553
|
-
"id": 2,
|
|
554
|
-
"sublocation": "Freight (outward)",
|
|
555
|
-
"description": null,
|
|
556
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
557
|
-
"validto": null,
|
|
558
|
-
"updatedby": "BethStephenson",
|
|
559
|
-
"uoflocation": false
|
|
560
|
-
},
|
|
561
|
-
{
|
|
562
|
-
"id": 3,
|
|
563
|
-
"sublocation": "Tourist (inbound)",
|
|
564
|
-
"description": null,
|
|
565
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
566
|
-
"validto": null,
|
|
567
|
-
"updatedby": "BethStephenson",
|
|
568
|
-
"uoflocation": false
|
|
569
|
-
},
|
|
570
|
-
{
|
|
571
|
-
"id": 4,
|
|
572
|
-
"sublocation": "Cargo Centre",
|
|
573
|
-
"description": null,
|
|
574
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
575
|
-
"validto": null,
|
|
576
|
-
"updatedby": "BethStephenson",
|
|
577
|
-
"uoflocation": false
|
|
578
|
-
},
|
|
579
|
-
{
|
|
580
|
-
"id": 5,
|
|
581
|
-
"sublocation": "Lane",
|
|
582
|
-
"description": null,
|
|
583
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
584
|
-
"validto": null,
|
|
585
|
-
"updatedby": "BethStephenson",
|
|
586
|
-
"uoflocation": false
|
|
587
|
-
},
|
|
588
|
-
{
|
|
589
|
-
"id": 6,
|
|
590
|
-
"sublocation": "Shed",
|
|
591
|
-
"description": null,
|
|
592
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
593
|
-
"validto": null,
|
|
594
|
-
"updatedby": "BethStephenson",
|
|
595
|
-
"uoflocation": false
|
|
596
|
-
},
|
|
597
|
-
{
|
|
598
|
-
"id": 7,
|
|
599
|
-
"sublocation": "Tourist (outbound)",
|
|
600
|
-
"description": null,
|
|
601
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
602
|
-
"validto": null,
|
|
603
|
-
"updatedby": "BethStephenson",
|
|
604
|
-
"uoflocation": false
|
|
605
|
-
},
|
|
606
|
-
{
|
|
607
|
-
"id": 8,
|
|
608
|
-
"sublocation": "Channels",
|
|
609
|
-
"description": null,
|
|
610
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
611
|
-
"validto": null,
|
|
612
|
-
"updatedby": "BethStephenson",
|
|
613
|
-
"uoflocation": false
|
|
614
|
-
},
|
|
615
|
-
{
|
|
616
|
-
"id": 9,
|
|
617
|
-
"sublocation": "Baggage reclaim",
|
|
618
|
-
"description": null,
|
|
619
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
620
|
-
"validto": null,
|
|
621
|
-
"updatedby": "BethStephenson",
|
|
622
|
-
"uoflocation": true
|
|
623
|
-
},
|
|
624
|
-
{
|
|
625
|
-
"id": 10,
|
|
626
|
-
"sublocation": "Warehouse",
|
|
627
|
-
"description": null,
|
|
628
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
629
|
-
"validto": null,
|
|
630
|
-
"updatedby": "BethStephenson",
|
|
631
|
-
"uoflocation": false
|
|
632
|
-
},
|
|
633
|
-
{
|
|
634
|
-
"id": 11,
|
|
635
|
-
"sublocation": "Custody Suite",
|
|
636
|
-
"description": null,
|
|
637
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
638
|
-
"validto": null,
|
|
639
|
-
"updatedby": "BethStephenson",
|
|
640
|
-
"uoflocation": false
|
|
641
|
-
},
|
|
642
|
-
{
|
|
643
|
-
"id": 12,
|
|
644
|
-
"sublocation": "Controlled Waiting Area (CWA)",
|
|
645
|
-
"description": null,
|
|
646
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
647
|
-
"validto": null,
|
|
648
|
-
"updatedby": "BethStephenson",
|
|
649
|
-
"uoflocation": true
|
|
650
|
-
},
|
|
651
|
-
{
|
|
652
|
-
"id": 13,
|
|
653
|
-
"sublocation": "Short Term Holding Facility (STHF)",
|
|
654
|
-
"description": null,
|
|
655
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
656
|
-
"validto": null,
|
|
657
|
-
"updatedby": "BethStephenson",
|
|
658
|
-
"uoflocation": false
|
|
659
|
-
},
|
|
660
|
-
{
|
|
661
|
-
"id": 14,
|
|
662
|
-
"sublocation": "Escort/transportation",
|
|
663
|
-
"description": null,
|
|
664
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
665
|
-
"validto": null,
|
|
666
|
-
"updatedby": "BethStephenson",
|
|
667
|
-
"uoflocation": false
|
|
668
|
-
},
|
|
669
|
-
{
|
|
670
|
-
"id": 15,
|
|
671
|
-
"sublocation": "Tug haven",
|
|
672
|
-
"description": null,
|
|
673
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
674
|
-
"validto": null,
|
|
675
|
-
"updatedby": "BethStephenson",
|
|
676
|
-
"uoflocation": false
|
|
677
|
-
},
|
|
678
|
-
{
|
|
679
|
-
"id": 16,
|
|
680
|
-
"sublocation": "Berths / Allocation Lanes",
|
|
681
|
-
"description": null,
|
|
682
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
683
|
-
"validto": null,
|
|
684
|
-
"updatedby": "BethStephenson",
|
|
685
|
-
"uoflocation": true
|
|
686
|
-
},
|
|
687
|
-
{
|
|
688
|
-
"id": 17,
|
|
689
|
-
"sublocation": "Cargo",
|
|
690
|
-
"description": null,
|
|
691
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
692
|
-
"validto": null,
|
|
693
|
-
"updatedby": "BethStephenson",
|
|
694
|
-
"uoflocation": false
|
|
695
|
-
},
|
|
696
|
-
{
|
|
697
|
-
"id": 18,
|
|
698
|
-
"sublocation": "Departure Lounge",
|
|
699
|
-
"description": null,
|
|
700
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
701
|
-
"validto": null,
|
|
702
|
-
"updatedby": "BethStephenson",
|
|
703
|
-
"uoflocation": false
|
|
704
|
-
},
|
|
705
|
-
{
|
|
706
|
-
"id": 19,
|
|
707
|
-
"sublocation": "Arrival Lounge",
|
|
708
|
-
"description": null,
|
|
709
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
710
|
-
"validto": null,
|
|
711
|
-
"updatedby": "BethStephenson",
|
|
712
|
-
"uoflocation": false
|
|
713
|
-
},
|
|
714
|
-
{
|
|
715
|
-
"id": 20,
|
|
716
|
-
"sublocation": "Slipway",
|
|
717
|
-
"description": null,
|
|
718
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
719
|
-
"validto": null,
|
|
720
|
-
"updatedby": "BethStephenson",
|
|
721
|
-
"uoflocation": false
|
|
722
|
-
},
|
|
723
|
-
{
|
|
724
|
-
"id": 21,
|
|
725
|
-
"sublocation": "Marina",
|
|
726
|
-
"description": null,
|
|
727
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
728
|
-
"validto": null,
|
|
729
|
-
"updatedby": "BethStephenson",
|
|
730
|
-
"uoflocation": false
|
|
731
|
-
},
|
|
732
|
-
{
|
|
733
|
-
"id": 22,
|
|
734
|
-
"sublocation": "Harbour",
|
|
735
|
-
"description": null,
|
|
736
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
737
|
-
"validto": null,
|
|
738
|
-
"updatedby": "BethStephenson",
|
|
739
|
-
"uoflocation": true
|
|
740
|
-
},
|
|
741
|
-
{
|
|
742
|
-
"id": 23,
|
|
743
|
-
"sublocation": "Beach",
|
|
744
|
-
"description": null,
|
|
745
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
746
|
-
"validto": null,
|
|
747
|
-
"updatedby": "BethStephenson",
|
|
748
|
-
"uoflocation": false
|
|
749
|
-
},
|
|
750
|
-
{
|
|
751
|
-
"id": 24,
|
|
752
|
-
"sublocation": "Coves",
|
|
753
|
-
"description": null,
|
|
754
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
755
|
-
"validto": null,
|
|
756
|
-
"updatedby": "BethStephenson",
|
|
757
|
-
"uoflocation": false
|
|
758
|
-
},
|
|
759
|
-
{
|
|
760
|
-
"id": 25,
|
|
761
|
-
"sublocation": "Farm fields",
|
|
762
|
-
"description": null,
|
|
763
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
764
|
-
"validto": null,
|
|
765
|
-
"updatedby": "BethStephenson",
|
|
766
|
-
"uoflocation": false
|
|
767
|
-
},
|
|
768
|
-
{
|
|
769
|
-
"id": 26,
|
|
770
|
-
"sublocation": "Disembarkation (prior to PCP)",
|
|
771
|
-
"description": null,
|
|
772
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
773
|
-
"validto": null,
|
|
774
|
-
"updatedby": "BethStephenson",
|
|
775
|
-
"uoflocation": true
|
|
776
|
-
},
|
|
777
|
-
{
|
|
778
|
-
"id": 27,
|
|
779
|
-
"sublocation": "PCP",
|
|
780
|
-
"description": null,
|
|
781
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
782
|
-
"validto": null,
|
|
783
|
-
"updatedby": "BethStephenson",
|
|
784
|
-
"uoflocation": true
|
|
785
|
-
},
|
|
786
|
-
{
|
|
787
|
-
"id": 28,
|
|
788
|
-
"sublocation": "Customs channel/lanes",
|
|
789
|
-
"description": null,
|
|
790
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
791
|
-
"validto": null,
|
|
792
|
-
"updatedby": "BethStephenson",
|
|
793
|
-
"uoflocation": true
|
|
794
|
-
},
|
|
795
|
-
{
|
|
796
|
-
"id": 29,
|
|
797
|
-
"sublocation": "Further examination area",
|
|
798
|
-
"description": "Further examination area/Detention suite/Interview room",
|
|
799
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
800
|
-
"validto": null,
|
|
801
|
-
"updatedby": "BethStephenson",
|
|
802
|
-
"uoflocation": true
|
|
803
|
-
},
|
|
804
|
-
{
|
|
805
|
-
"id": 30,
|
|
806
|
-
"sublocation": "Check-in/security",
|
|
807
|
-
"description": "Check-in/security/ Others’ control area",
|
|
808
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
809
|
-
"validto": null,
|
|
810
|
-
"updatedby": "BethStephenson",
|
|
811
|
-
"uoflocation": true
|
|
812
|
-
},
|
|
813
|
-
{
|
|
814
|
-
"id": 31,
|
|
815
|
-
"sublocation": "Embarkation controls",
|
|
816
|
-
"description": null,
|
|
817
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
818
|
-
"validto": null,
|
|
819
|
-
"updatedby": "BethStephenson",
|
|
820
|
-
"uoflocation": true
|
|
821
|
-
},
|
|
822
|
-
{
|
|
823
|
-
"id": 32,
|
|
824
|
-
"sublocation": "GA/GM site",
|
|
825
|
-
"description": null,
|
|
826
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
827
|
-
"validto": null,
|
|
828
|
-
"updatedby": "BethStephenson",
|
|
829
|
-
"uoflocation": true
|
|
830
|
-
},
|
|
831
|
-
{
|
|
832
|
-
"id": 33,
|
|
833
|
-
"sublocation": "Docks/Containers/Freight area",
|
|
834
|
-
"description": null,
|
|
835
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
836
|
-
"validto": null,
|
|
837
|
-
"updatedby": "BethStephenson",
|
|
838
|
-
"uoflocation": true
|
|
839
|
-
},
|
|
840
|
-
{
|
|
841
|
-
"id": 34,
|
|
842
|
-
"sublocation": "Hospital/Hospital duties",
|
|
843
|
-
"description": null,
|
|
844
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
845
|
-
"validto": null,
|
|
846
|
-
"updatedby": "BethStephenson",
|
|
847
|
-
"uoflocation": true
|
|
848
|
-
},
|
|
849
|
-
{
|
|
850
|
-
"id": 35,
|
|
851
|
-
"sublocation": "Other",
|
|
852
|
-
"description": null,
|
|
853
|
-
"validfrom": "2021-05-07T00:00:03.000Z",
|
|
854
|
-
"validto": null,
|
|
855
|
-
"updatedby": "BethStephenson",
|
|
856
|
-
"uoflocation": true
|
|
857
|
-
}
|
|
858
|
-
]
|
|
859
|
-
}
|