@zohodesk/library-platform 1.0.2 → 1.1.0-exp.1
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/es/bc/list-selection/Properties.js +21 -12
- package/es/bc/sort-by/Properties.js +20 -15
- package/es/bc/table-column-resizer/Properties.js +1 -1
- package/es/bc/zhttp/Properties.js +11 -1
- package/es/bc/zlist/Properties.js +12 -3
- package/es/cc/action-icon/Model.js +6 -2
- package/es/cc/action-icon/Properties.js +18 -0
- package/es/cc/action-location/Properties.js +54 -3
- package/es/cc/component/properties/PropertiesConverter.js +23 -0
- package/es/cc/fields/field/Properties.js +9 -1
- package/es/cc/fields/field/Types.js +16 -16
- package/es/cc/fields/multi-select/Properties.js +1 -1
- package/es/cc/fields/pick-list/Properties.js +1 -1
- package/es/cc/table-connected/Properties.js +49 -45
- package/es/cc/table-list/Properties.js +79 -318
- package/es/cc/table-list/model/RowModel.js +2 -4
- package/es/cc/table-list/row/Properties.js +3 -11
- package/es/desk-frameworks/table-connected/frameworks/TableConnectedView.js +10 -11
- package/es/library/behaviours/list-selection/adapters/gateways/Repository.js +1 -1
- package/es/library/behaviours/list-selection/adapters/gateways/Service.js +5 -5
- package/es/library/behaviours/sort-by/adapters/gateway/Repository.js +1 -1
- package/es/library/behaviours/sort-by/adapters/gateway/Service.js +1 -1
- package/es/library/behaviours/sort-by/{entities → domain/entities}/SortBy.js +1 -1
- package/es/library/behaviours/sort-by/frameworks/ui/SortByBehaviourFactory.js +2 -2
- package/es/library/behaviours/text-to-field-click/adapters/gateway/Repository.js +1 -1
- package/es/library/behaviours/text-to-field-click/{entities → domain/entities}/FieldEventConverter.js +1 -1
- package/es/library/behaviours/text-to-field-click/frameworks/ui/EventHandlersFactory.js +1 -1
- package/es/library/custom-component/adapters/gateways/event-manager/EventManager.js +1 -1
- package/es/library/custom-component/adapters/gateways/service/Service.js +6 -6
- package/es/library/custom-component/{usecases → applications}/entities-factory/BehavioursFactory.js +1 -1
- package/es/library/custom-component/{usecases → applications}/entities-factory/ComponentFactory.js +3 -3
- package/es/library/custom-component/{usecases → applications}/entities-factory/EventHandlersFactory.js +1 -1
- package/es/library/custom-component/{usecases → applications}/entities-factory/PropertiesFactory.js +9 -3
- package/es/library/custom-component/{usecases/interactors → applications/usecases}/UnmountUseCase.js +1 -1
- package/es/library/custom-component/{entities → domain/entities}/Component.js +36 -7
- package/es/library/custom-component/{entities → domain/entities}/DefaultAppendToActionPayload.js +2 -2
- package/es/library/custom-component/{entities → domain/entities}/Properties.js +4 -5
- package/es/library/custom-component/frameworks/ui/__testcases__/CreateCustomComponent.spec.js +106 -0
- package/es/library/dot/components/action-location/frameworks/ui/ActionComponentMapping.js +5 -0
- package/es/library/dot/components/action-location/frameworks/ui/ActionLocationView.js +8 -29
- package/es/library/dot/components/actions-renderer/frameworks/ui/ActionsRenderer.js +9 -0
- package/es/library/dot/components/actions-renderer/frameworks/ui/ActionsRendererView.js +37 -0
- package/es/library/dot/components/table-list/frameworks/ui/sub-components/Rows.js +3 -7
- package/es/library/dot/components/table-list/frameworks/ui/sub-components/header/HeaderData.js +5 -3
- package/es/library/dot/components/table-list/frameworks/ui/sub-components/row/Row.js +11 -7
- package/es/library/dot/components/table-list/frameworks/ui/sub-components/row/RowActions.js +3 -0
- package/es/library/dot/legacy-to-new-arch/action-icon/{ActionIcon.js → frameworks/ui/ActionIcon.js} +2 -2
- package/es/library/dot/legacy-to-new-arch/action-icon/{ActionIconView.js → frameworks/ui/ActionIconView.js} +11 -5
- package/es/library/dot/legacy-to-new-arch/action-icon/frameworks/ui/css/ActionIcon.module.css +3 -0
- package/es/library/dot/legacy-to-new-arch/index.js +1 -1
- package/es/platform/zdata-broker/adapters/gateways/Repository.js +1 -1
- package/es/platform/zdata-broker/adapters/gateways/Service.js +5 -5
- package/es/platform/zdata-broker/adapters/gateways/TemplateHelpers.js +21 -0
- package/es/platform/zdata-broker/{usecases → applications}/entities-factory/APITemplatesFactory.js +2 -2
- package/es/platform/zdata-broker/{usecases → applications}/entities-factory/DataBrokerFactory.js +1 -1
- package/es/platform/zdata-broker/applications/interfaces/gateways/ITemplateHelpers.js +1 -0
- package/es/platform/zdata-broker/{entities → domain/entities}/DataBroker.js +3 -3
- package/es/platform/zdata-broker/{entities → domain/entities}/interfaces/MetaData.js +1 -1
- package/es/platform/zfield/adapters/gateways/Repository.js +1 -1
- package/es/platform/zfield/adapters/gateways/Service.js +6 -6
- package/es/platform/zfield/{usecases → applications}/entities-factory/FieldsManagerBuilder.js +1 -1
- package/es/platform/zfield/applications/interfaces/input/FetchInputModel.js +2 -0
- package/es/platform/zfield/{entities → domain/entities}/fields-manager/AvailableFieldsManager.js +2 -2
- package/es/platform/zfield/{entities → domain/entities}/fields-manager/FieldsManager.js +3 -3
- package/es/platform/zfield/{entities → domain/entities}/fields-manager/SelectedFieldsManager.js +2 -2
- package/es/platform/zfield/{entities → domain/entities}/interfaces/MetaData.js +1 -1
- package/es/platform/zhttp/frameworks/ActionsHandlerFactory.js +1 -1
- package/es/platform/zhttp/frameworks/ZHttpBehaviourFactory.js +2 -1
- package/es/platform/zlist/adapters/gateways/Repository.js +1 -1
- package/es/platform/zlist/adapters/gateways/Service.js +10 -10
- package/es/platform/zlist/adapters/presenters/TableTranslator.js +2 -1
- package/es/platform/zlist/adapters/presenters/translators/Row.js +5 -1
- package/es/platform/zlist/adapters/presenters/translators/RowActionTranslator.js +18 -11
- package/es/platform/zlist/adapters/presenters/translators/RowsTranslator.js +3 -1
- package/es/platform/zlist/{usecases → applications}/entities-factory/ListFactory.js +1 -1
- package/es/platform/zlist/{entities → domain/entities}/List.js +3 -3
- package/es/platform/zrecord/adapters/gateways/Repository.js +1 -1
- package/es/platform/zrecord/adapters/gateways/Service.js +13 -13
- package/es/platform/zrecord/{usecases → applications}/entities-factory/RecordFactory.js +1 -1
- package/es/platform/zrecord/{usecases → applications}/entities-factory/RecordsManagerFactory.js +2 -2
- package/es/platform/zrecord/{entities → domain/entities}/DeleteMultipleRecordStrategy.js +1 -1
- package/es/platform/zrecord/{entities → domain/entities}/DeleteRecordStrategy.js +1 -1
- package/es/platform/zrecord/{entities → domain/entities}/GetRecordsStrategy.js +1 -1
- package/es/platform/zrecord/{entities → domain/entities}/RecordsManager.js +3 -3
- package/es/platform/zrecord/{entities → domain/entities}/UpdateRecordStrategy.js +1 -1
- package/es/platform/zrecord/domain/entities/interfaces/RecordModel.js +1 -0
- package/es/platform/zrecord/domain/entities/interfaces/RecordsModel.js +1 -0
- package/es/platform/zrecord/domain/entities/interfaces/StrategyMeta.js +1 -0
- package/package.json +10 -4
- package/es/cc/table-list/behaviour-properties/ResizerConfig.js +0 -18
- package/es/cc/table-list/behaviour-properties/SelectionConfig.js +0 -17
- package/es/cc/table-list/behaviour-properties/SortByConfig.js +0 -14
- package/es/cc/table-list/behaviour-properties/index.js +0 -3
- package/es/library/custom-component/entities/__tests__/Action.spec.js +0 -19
- package/es/library/custom-component/entities/__tests__/ActionHandlers.spec.js +0 -15
- package/es/library/custom-component/entities/__tests__/Behaviour.spec.js +0 -52
- package/es/library/custom-component/entities/__tests__/Component.spec.js +0 -109
- package/es/platform/zdata-broker/usecases/interfaces/gateways/ITemplateHelpers.js +0 -1
- package/es/platform/zfield/usecases/interfaces/gateways/ITemplateHelpers.js +0 -1
- package/es/platform/zfield/usecases/interfaces/input/FetchInputModel.js +0 -2
- /package/es/{library/behaviours/list-selection/entities/interfaces/IListItemSelection.js → cc/action-location/Action.js} +0 -0
- /package/es/{library/behaviours/list-selection/entities/interfaces/ListSelectionModel.js → cc/action-location/ActionLocation.js} +0 -0
- /package/es/{library/behaviours/list-selection/usecases/interfaces/UseCase.js → cc/table-list/data-types/RowAction.js} +0 -0
- /package/es/library/{custom-component/usecases → behaviours/list-selection/applications}/interfaces/UseCase.js +0 -0
- /package/es/library/behaviours/list-selection/{usecases → applications}/interfaces/UseCaseDependencies.js +0 -0
- /package/es/library/behaviours/list-selection/{usecases → applications}/interfaces/gateways/IRepository.js +0 -0
- /package/es/library/behaviours/list-selection/{usecases → applications}/interfaces/gateways/IService.js +0 -0
- /package/es/library/behaviours/list-selection/{usecases → applications}/interfaces/input/AllSelectionInputModel.js +0 -0
- /package/es/library/behaviours/list-selection/{usecases → applications}/interfaces/input/DestructInputModel.js +0 -0
- /package/es/library/behaviours/list-selection/{usecases → applications}/interfaces/input/InitializeInputModel.js +0 -0
- /package/es/library/behaviours/list-selection/{usecases → applications}/interfaces/input/RangeSelectionInputModel.js +0 -0
- /package/es/library/behaviours/list-selection/{usecases → applications}/interfaces/input/SelectionInputModel.js +0 -0
- /package/es/library/behaviours/list-selection/{usecases → applications}/interfaces/output/BehaviourStateModel.js +0 -0
- /package/es/library/behaviours/list-selection/{usecases → applications}/interfaces/output/IPresenter.js +0 -0
- /package/es/library/behaviours/list-selection/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
- /package/es/library/behaviours/list-selection/{usecases/interactors → applications/usecases}/AllItemSelection.js +0 -0
- /package/es/library/behaviours/list-selection/{usecases/interactors → applications/usecases}/Destruct.js +0 -0
- /package/es/library/behaviours/list-selection/{usecases/interactors → applications/usecases}/Initialize.js +0 -0
- /package/es/library/behaviours/list-selection/{usecases/interactors → applications/usecases}/ItemsSelection.js +0 -0
- /package/es/library/behaviours/list-selection/{usecases/interactors → applications/usecases}/RangeSelection.js +0 -0
- /package/es/library/behaviours/list-selection/{entities → domain/entities}/ListItemSelection.js +0 -0
- /package/es/library/behaviours/{sort-by/entities/interfaces/ISortBy.js → list-selection/domain/entities/interfaces/IListItemSelection.js} +0 -0
- /package/es/library/behaviours/{sort-by/usecases/interfaces/UseCaseDependencies.js → list-selection/domain/entities/interfaces/ListSelectionModel.js} +0 -0
- /package/es/library/behaviours/{text-to-field-click/usecases → sort-by/applications}/interfaces/UseCaseDependencies.js +0 -0
- /package/es/library/behaviours/sort-by/{usecases → applications}/interfaces/gateways/IRepository.js +0 -0
- /package/es/library/behaviours/sort-by/{usecases → applications}/interfaces/gateways/IService.js +0 -0
- /package/es/library/behaviours/sort-by/{usecases → applications}/interfaces/input/SortByInputModel.js +0 -0
- /package/es/library/behaviours/sort-by/{usecases → applications}/interfaces/output/IPresenter.js +0 -0
- /package/es/library/behaviours/sort-by/{usecases → applications}/interfaces/output/SortByOutputModel.js +0 -0
- /package/es/library/behaviours/sort-by/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
- /package/es/library/behaviours/sort-by/{usecases/interactors → applications/usecases}/SortBy.js +0 -0
- /package/es/{platform/zlist/usecases/interfaces/gateways → library/behaviours/sort-by/domain/entities/interfaces}/ISortBy.js +0 -0
- /package/es/{platform/zlist/usecases → library/behaviours/text-to-field-click/applications}/interfaces/UseCaseDependencies.js +0 -0
- /package/es/library/behaviours/text-to-field-click/{usecases → applications}/interfaces/gateways/IRepository.js +0 -0
- /package/es/library/behaviours/text-to-field-click/{usecases → applications}/interfaces/input/ClickUseCaseInputModel.js +0 -0
- /package/es/library/behaviours/text-to-field-click/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
- /package/es/library/behaviours/text-to-field-click/{usecases/interactors → applications/usecases}/ClickUseCase.js +0 -0
- /package/es/library/behaviours/text-to-field-click/{entities → domain/entities}/interfaces/IFieldEventConverter.js +0 -0
- /package/es/library/custom-component/{usecases → applications}/interfaces/InputDependencies.js +0 -0
- /package/es/library/custom-component/{usecases → applications}/interfaces/OutputDependencies.js +0 -0
- /package/es/{platform/zhttp/usecases → library/custom-component/applications}/interfaces/UseCase.js +0 -0
- /package/es/library/custom-component/{usecases → applications}/interfaces/gateways/IEventManager.js +0 -0
- /package/es/library/custom-component/{usecases → applications}/interfaces/gateways/IJSONValidator.js +0 -0
- /package/es/library/custom-component/{usecases → applications}/interfaces/gateways/IRepository.js +0 -0
- /package/es/library/custom-component/{usecases → applications}/interfaces/gateways/IService.js +0 -0
- /package/es/library/custom-component/{usecases → applications}/interfaces/input/DispatchInputModel.js +0 -0
- /package/es/library/custom-component/{usecases → applications}/interfaces/input/InitailizeInputModel.js +0 -0
- /package/es/library/custom-component/{usecases → applications}/interfaces/input/UpdatePropertiesInputModel.js +0 -0
- /package/es/library/custom-component/{usecases → applications}/interfaces/input/UpdateStateInputModel.js +0 -0
- /package/es/library/custom-component/{usecases → applications}/interfaces/output/OutputBoundary.js +0 -0
- /package/es/library/custom-component/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
- /package/es/library/custom-component/{usecases/interactors → applications/usecases}/DispatchUseCase.js +0 -0
- /package/es/library/custom-component/{usecases/interactors → applications/usecases}/InitializeUseCase.js +0 -0
- /package/es/library/custom-component/{usecases/interactors → applications/usecases}/MountUseCase.js +0 -0
- /package/es/library/custom-component/{usecases/interactors → applications/usecases}/UpdatePropertyUseCase.js +0 -0
- /package/es/library/custom-component/{usecases/interactors → applications/usecases}/UpdateStateUseCase.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/Behaviour.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/EventHandler.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/EventHandlers.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/Events.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/LifeCycleAction.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/Payload.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/Property.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/Schema.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/State.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/Style.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/interfaces/IBehaviour.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/interfaces/IComponent.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/interfaces/IEvent.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/interfaces/IEventHandler.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/interfaces/IEventHandlerHelpers.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/interfaces/IEventHandlers.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/interfaces/IEventWrapper.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/interfaces/ILifeCycleAction.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/interfaces/IPayload.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/interfaces/IProperties.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/interfaces/IProperty.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/interfaces/ISchema.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/interfaces/IState.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/interfaces/IStyle.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/interfaces/IUpdateHelper.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/interfaces/IValidator.js +0 -0
- /package/es/platform/zdata-broker/{usecases → applications}/interfaces/InputDependencies.js +0 -0
- /package/es/platform/zdata-broker/{usecases → applications}/interfaces/gateways/IRepository.js +0 -0
- /package/es/platform/zdata-broker/{usecases → applications}/interfaces/gateways/IService.js +0 -0
- /package/es/platform/zdata-broker/{usecases → applications}/interfaces/gateways/State.js +0 -0
- /package/es/platform/zdata-broker/{usecases → applications}/interfaces/input/ExecuteActionInputModel.js +0 -0
- /package/es/platform/zdata-broker/{usecases → applications}/interfaces/input/FailureInputModel.js +0 -0
- /package/es/platform/zdata-broker/{usecases → applications}/interfaces/input/NoContentInputModel.js +0 -0
- /package/es/platform/zdata-broker/{usecases → applications}/interfaces/input/RegisterInputModel.js +0 -0
- /package/es/platform/zdata-broker/{usecases → applications}/interfaces/input/SuccessInputModel.js +0 -0
- /package/es/platform/zdata-broker/{usecases → applications}/interfaces/output/IPresenter.js +0 -0
- /package/es/platform/zdata-broker/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
- /package/es/platform/zdata-broker/{usecases/interactors → applications/usecases}/ExecuteActionUseCase.js +0 -0
- /package/es/platform/zdata-broker/{usecases/interactors → applications/usecases}/FailureUseCase.js +0 -0
- /package/es/platform/zdata-broker/{usecases/interactors → applications/usecases}/NoContentUseCase.js +0 -0
- /package/es/platform/zdata-broker/{usecases/interactors → applications/usecases}/RegisterUseCase.js +0 -0
- /package/es/platform/zdata-broker/{usecases/interactors → applications/usecases}/SuccessUseCase.js +0 -0
- /package/es/platform/zdata-broker/{entities → domain/entities}/APITemplate.js +0 -0
- /package/es/platform/zdata-broker/{entities → domain/entities}/APITemplates.js +0 -0
- /package/es/platform/zdata-broker/{entities → domain/entities}/interfaces/APIDetailsModel.js +0 -0
- /package/es/platform/zdata-broker/{entities → domain/entities}/interfaces/APITemplateModel.js +0 -0
- /package/es/platform/zdata-broker/{entities → domain/entities}/interfaces/APITemplatesModel.js +0 -0
- /package/es/platform/zdata-broker/{entities → domain/entities}/interfaces/ApiEnum.js +0 -0
- /package/es/platform/zdata-broker/{entities → domain/entities}/interfaces/BehaviourState.js +0 -0
- /package/es/platform/zdata-broker/{entities → domain/entities}/interfaces/EventModel.js +0 -0
- /package/es/platform/zdata-broker/{entities → domain/entities}/interfaces/IAPITemplate.js +0 -0
- /package/es/platform/zdata-broker/{entities → domain/entities}/interfaces/IAPITemplates.js +0 -0
- /package/es/platform/zdata-broker/{entities → domain/entities}/interfaces/IDataBroker.js +0 -0
- /package/es/platform/zdata-broker/{entities → domain/entities}/interfaces/ITemplateHelpers.js +0 -0
- /package/es/platform/zfield/{usecases → applications}/entities-factory/FieldBuilder.js +0 -0
- /package/es/platform/zfield/{usecases → applications}/entities-factory/FieldFactory.js +0 -0
- /package/es/platform/zfield/{usecases → applications}/interfaces/UsecaseDependencies.js +0 -0
- /package/es/platform/zfield/{usecases → applications}/interfaces/gateways/IRepository.js +0 -0
- /package/es/platform/zfield/{usecases → applications}/interfaces/gateways/IRestApi.js +0 -0
- /package/es/platform/zfield/{usecases → applications}/interfaces/gateways/IService.js +0 -0
- /package/es/platform/zfield/{usecases → applications}/interfaces/input/ExecuteActionInputModel.js +0 -0
- /package/es/platform/zfield/{usecases → applications}/interfaces/input/InitialInputModel.js +0 -0
- /package/es/platform/zfield/{usecases → applications}/interfaces/input/InputModel.js +0 -0
- /package/es/platform/zfield/{usecases → applications}/interfaces/input/RefetchInputModel.js +0 -0
- /package/es/platform/zfield/{usecases → applications}/interfaces/input/SetValueInputModel.js +0 -0
- /package/es/platform/zfield/{usecases → applications}/interfaces/output/IPresenter.js +0 -0
- /package/es/platform/zfield/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
- /package/es/platform/zfield/{usecases/interactors → applications/usecases}/ExecuteActionUseCase.js +0 -0
- /package/es/platform/zfield/{usecases/interactors → applications/usecases}/FetchFailureUseCase.js +0 -0
- /package/es/platform/zfield/{usecases/interactors → applications/usecases}/FetchNoContentUseCase.js +0 -0
- /package/es/platform/zfield/{usecases/interactors → applications/usecases}/FetchSuccessUseCase.js +0 -0
- /package/es/platform/zfield/{usecases/interactors → applications/usecases}/InitializeUseCase.js +0 -0
- /package/es/platform/zfield/{usecases/interactors → applications/usecases}/RefetchUseCase.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/BooleanField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/CurrencyField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/DateField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/DateTimeField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/EmailField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/Field.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/LookupField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/MultiLineField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/MultiSelectField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/PercentageField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/PhoneField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/PickListField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/SingleLineField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/URLField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/index.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/interfaces/ActionModel.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/interfaces/BehaviourState.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/interfaces/FieldApiName.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/interfaces/FieldModel.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/interfaces/IField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/interfaces/IFieldManger.js +0 -0
- /package/es/platform/zhttp/{usecases → applications}/interfaces/InputDependencies.js +0 -0
- /package/es/platform/zhttp/{usecases/interfaces/gateway/IFetchGateWay.js → applications/interfaces/UseCase.js} +0 -0
- /package/es/platform/zhttp/{usecases/interfaces/input/FetchInputModel.js → applications/interfaces/gateway/IFetchGateWay.js} +0 -0
- /package/es/platform/{zlist/entities/interfaces/ActionModel.js → zhttp/applications/interfaces/input/FetchInputModel.js} +0 -0
- /package/es/platform/zhttp/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
- /package/es/platform/zhttp/{usecases/interactors → applications/usecases}/FetchUseCase.js +0 -0
- /package/es/platform/zlist/{usecases → applications}/interfaces/State.js +0 -0
- /package/es/platform/zlist/{entities/interfaces/ApiPropsModel.js → applications/interfaces/UseCaseDependencies.js} +0 -0
- /package/es/platform/zlist/{usecases → applications}/interfaces/gateways/IRepository.js +0 -0
- /package/es/platform/zlist/{usecases → applications}/interfaces/gateways/IService.js +0 -0
- /package/es/platform/zlist/{entities/interfaces/IList.js → applications/interfaces/gateways/ISortBy.js} +0 -0
- /package/es/platform/zlist/{usecases → applications}/interfaces/gateways/ITransformState.js +0 -0
- /package/es/platform/zlist/{usecases → applications}/interfaces/input/DeleteMultipleRecordUseCaseInput.js +0 -0
- /package/es/platform/zlist/{usecases → applications}/interfaces/input/DeleteSingleRecordUseCaseInput.js +0 -0
- /package/es/platform/zlist/{usecases → applications}/interfaces/input/FetchMoreInput.js +0 -0
- /package/es/platform/zlist/{usecases → applications}/interfaces/input/FieldChangeUseCaseInput.js +0 -0
- /package/es/platform/zlist/{usecases → applications}/interfaces/input/InitializeInput.js +0 -0
- /package/es/platform/zlist/{usecases → applications}/interfaces/input/PropertiesChangeUseCaseInput.js +0 -0
- /package/es/platform/zlist/{usecases → applications}/interfaces/input/RecordExecuteFailedUseCaseInput.js +0 -0
- /package/es/platform/zlist/{usecases → applications}/interfaces/input/RecordExecuteSucceededUseCaseInput.js +0 -0
- /package/es/platform/zlist/{usecases → applications}/interfaces/input/RecordUpdateUseCaseInput.js +0 -0
- /package/es/platform/zlist/{usecases → applications}/interfaces/input/SortingInputModel.js +0 -0
- /package/es/platform/zlist/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
- /package/es/platform/zlist/{usecases/interactors → applications/usecases}/DeleteMultipleRecordUseCase.js +0 -0
- /package/es/platform/zlist/{usecases/interactors → applications/usecases}/DeleteSingleRecordUseCase.js +0 -0
- /package/es/platform/zlist/{usecases/interactors → applications/usecases}/FetchMoreUseCase.js +0 -0
- /package/es/platform/zlist/{usecases/interactors → applications/usecases}/FieldChangeUseCase.js +0 -0
- /package/es/platform/zlist/{usecases/interactors → applications/usecases}/InitializeUseCase.js +0 -0
- /package/es/platform/zlist/{usecases/interactors → applications/usecases}/PropertiesChangeUseCase.js +0 -0
- /package/es/platform/zlist/{usecases/interactors → applications/usecases}/RecordExecuteFailedUseCase.js +0 -0
- /package/es/platform/zlist/{usecases/interactors → applications/usecases}/RecordExecuteSucceededUseCase.js +0 -0
- /package/es/platform/zlist/{usecases/interactors → applications/usecases}/RecordUpdateUseCase.js +0 -0
- /package/es/platform/zlist/{usecases/interactors → applications/usecases}/SortUseCase.js +0 -0
- /package/es/platform/zlist/{entities/interfaces/Properties.js → domain/entities/interfaces/ActionModel.js} +0 -0
- /package/es/platform/zlist/{entities/interfaces/RecordExecuteAfterMetaData.js → domain/entities/interfaces/ApiPropsModel.js} +0 -0
- /package/es/platform/{zrecord/entities/interfaces/BehaviourState.js → zlist/domain/entities/interfaces/IList.js} +0 -0
- /package/es/platform/{zrecord/entities/interfaces/EventModel.js → zlist/domain/entities/interfaces/Properties.js} +0 -0
- /package/es/platform/{zrecord/entities/interfaces/ICustomFieldValues.js → zlist/domain/entities/interfaces/RecordExecuteAfterMetaData.js} +0 -0
- /package/es/platform/zrecord/{usecases → applications}/interfaces/InputDependencies.js +0 -0
- /package/es/platform/zrecord/{usecases → applications}/interfaces/gateways/IRepository.js +0 -0
- /package/es/platform/zrecord/{usecases → applications}/interfaces/gateways/IService.js +0 -0
- /package/es/platform/zrecord/{usecases → applications}/interfaces/gateways/State.js +0 -0
- /package/es/platform/zrecord/{usecases → applications}/interfaces/input/AppendRecordsInputModel.js +0 -0
- /package/es/platform/zrecord/{usecases → applications}/interfaces/input/DeleteMultipleRecordInputModel.js +0 -0
- /package/es/platform/zrecord/{usecases → applications}/interfaces/input/ExecuteActionInputModel.js +0 -0
- /package/es/platform/zrecord/{usecases → applications}/interfaces/input/FailureInputModel.js +0 -0
- /package/es/platform/zrecord/{usecases → applications}/interfaces/input/FetchMoreInputModel.js +0 -0
- /package/es/platform/zrecord/{usecases → applications}/interfaces/input/FetchStateStopInputModel.js +0 -0
- /package/es/platform/zrecord/{usecases → applications}/interfaces/input/FieldChangeUseCaseInput.js +0 -0
- /package/es/platform/zrecord/{usecases → applications}/interfaces/input/InitializeInputModel.js +0 -0
- /package/es/platform/zrecord/{usecases → applications}/interfaces/input/NoContentInputModel.js +0 -0
- /package/es/platform/zrecord/{usecases → applications}/interfaces/input/RecordUpdateLocalUseCaseInputModel.js +0 -0
- /package/es/platform/zrecord/{usecases → applications}/interfaces/input/RefetchInputModel.js +0 -0
- /package/es/platform/zrecord/{usecases → applications}/interfaces/input/SetRecordsInputModel.js +0 -0
- /package/es/platform/zrecord/{usecases → applications}/interfaces/input/SuccessInputModel.js +0 -0
- /package/es/platform/zrecord/{usecases → applications}/interfaces/output/IPresenter.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/AppendRecordsUseCase.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/DeleteMultipleRecordUseCase.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/ExecuteActionUseCase.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/FailureUseCase.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/FetchMoreUseCase.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/FetchStateStopUseCase.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/FieldChangeUseCase.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/InitializeUseCase.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/NoContentUseCase.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/RecordUpdateLocalUseCase.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/RefetchUseCase.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/SetRecordsUseCase.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/SuccessUseCase.js +0 -0
- /package/es/platform/zrecord/{entities → domain/entities}/CustomFieldValues.js +0 -0
- /package/es/platform/zrecord/{entities → domain/entities}/Record.js +0 -0
- /package/es/platform/zrecord/{entities → domain/entities}/Records.js +0 -0
- /package/es/platform/zrecord/{entities → domain/entities}/interfaces/ApiEnum.js +0 -0
- /package/es/platform/zrecord/{entities/interfaces/IRecordName.js → domain/entities/interfaces/BehaviourState.js} +0 -0
- /package/es/platform/zrecord/{entities/interfaces/RecordModel.js → domain/entities/interfaces/EventModel.js} +0 -0
- /package/es/platform/zrecord/{entities/interfaces/RecordsModel.js → domain/entities/interfaces/ICustomFieldValues.js} +0 -0
- /package/es/platform/zrecord/{entities → domain/entities}/interfaces/IRecord.js +0 -0
- /package/es/platform/zrecord/{entities → domain/entities}/interfaces/IRecordExecuteStrategy.js +0 -0
- /package/es/platform/zrecord/{entities/interfaces/StrategyMeta.js → domain/entities/interfaces/IRecordName.js} +0 -0
- /package/es/platform/zrecord/{entities → domain/entities}/interfaces/IRecords.js +0 -0
- /package/es/platform/zrecord/{entities → domain/entities}/interfaces/IRecordsManager.js +0 -0
|
@@ -1,17 +1,26 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
selectionConfig: {
|
|
3
|
+
required: false,
|
|
4
|
+
defaultValue: {
|
|
5
|
+
isEnabled: false,
|
|
6
|
+
maxSelectionCount: 50,
|
|
7
|
+
limitExceedAlertMessage: 'Max records selected'
|
|
7
8
|
},
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
9
|
+
typeMetadata: {
|
|
10
|
+
schema: {
|
|
11
|
+
type: 'object',
|
|
12
|
+
properties: {
|
|
13
|
+
isEnabled: {
|
|
14
|
+
type: 'boolean'
|
|
15
|
+
},
|
|
16
|
+
maxSelectionCount: {
|
|
17
|
+
type: 'number'
|
|
18
|
+
},
|
|
19
|
+
limitExceedAlertMessage: {
|
|
20
|
+
type: 'string'
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
15
24
|
}
|
|
16
25
|
}
|
|
17
26
|
};
|
|
@@ -1,20 +1,25 @@
|
|
|
1
1
|
import SortOrder from "./SortOrderEnum";
|
|
2
2
|
export default {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
3
|
+
sortBy: {
|
|
4
|
+
required: false,
|
|
5
|
+
defaultValue: {
|
|
6
|
+
id: '',
|
|
7
|
+
order: 'none'
|
|
8
|
+
},
|
|
9
|
+
typeMetadata: {
|
|
10
|
+
schema: {
|
|
11
|
+
type: 'object',
|
|
12
|
+
properties: {
|
|
13
|
+
id: {
|
|
14
|
+
type: 'string'
|
|
15
|
+
},
|
|
16
|
+
order: {
|
|
17
|
+
type: 'string',
|
|
18
|
+
enum: Object.values(SortOrder),
|
|
19
|
+
defaultValue: 'none'
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
required: ['id', 'order']
|
|
18
23
|
}
|
|
19
24
|
}
|
|
20
25
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import SortByConfigSchema from "../sort-by/Properties";
|
|
2
1
|
export default {
|
|
3
2
|
moduleName: {
|
|
4
3
|
required: true,
|
|
@@ -53,9 +52,19 @@ export default {
|
|
|
53
52
|
}
|
|
54
53
|
},
|
|
55
54
|
sortBy: {
|
|
56
|
-
required:
|
|
55
|
+
required: false,
|
|
56
|
+
defaultValue: '',
|
|
57
57
|
typeMetadata: {
|
|
58
|
-
schema:
|
|
58
|
+
schema: {
|
|
59
|
+
type: 'string',
|
|
60
|
+
oneOf: [{
|
|
61
|
+
pattern: "^-.*"
|
|
62
|
+
}, {
|
|
63
|
+
not: {
|
|
64
|
+
pattern: "^-.*"
|
|
65
|
+
}
|
|
66
|
+
}]
|
|
67
|
+
}
|
|
59
68
|
}
|
|
60
69
|
},
|
|
61
70
|
limit: {
|
|
@@ -24,5 +24,23 @@ export default {
|
|
|
24
24
|
enum: ["primary", "danger"]
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
|
+
},
|
|
28
|
+
isDisabled: {
|
|
29
|
+
required: false,
|
|
30
|
+
defaultValue: false,
|
|
31
|
+
typeMetadata: {
|
|
32
|
+
schema: {
|
|
33
|
+
type: "boolean"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
isVisible: {
|
|
38
|
+
required: false,
|
|
39
|
+
defaultValue: true,
|
|
40
|
+
typeMetadata: {
|
|
41
|
+
schema: {
|
|
42
|
+
type: "boolean"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
27
45
|
}
|
|
28
46
|
};
|
|
@@ -1,10 +1,61 @@
|
|
|
1
|
+
export const actionsSchema = {
|
|
2
|
+
type: 'array',
|
|
3
|
+
minItems: 0,
|
|
4
|
+
items: {
|
|
5
|
+
type: 'object',
|
|
6
|
+
properties: {
|
|
7
|
+
type: {
|
|
8
|
+
type: 'string'
|
|
9
|
+
},
|
|
10
|
+
properties: {
|
|
11
|
+
type: 'object'
|
|
12
|
+
},
|
|
13
|
+
eventMappings: {
|
|
14
|
+
type: 'array',
|
|
15
|
+
minItems: 0,
|
|
16
|
+
items: {
|
|
17
|
+
type: 'object',
|
|
18
|
+
properties: {
|
|
19
|
+
action: {
|
|
20
|
+
type: 'object',
|
|
21
|
+
properties: {
|
|
22
|
+
id: {
|
|
23
|
+
type: 'string'
|
|
24
|
+
},
|
|
25
|
+
dispatchType: {
|
|
26
|
+
type: 'string'
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
required: ['id', 'dispatchType']
|
|
30
|
+
},
|
|
31
|
+
eventType: {
|
|
32
|
+
type: 'string'
|
|
33
|
+
},
|
|
34
|
+
payload: {
|
|
35
|
+
type: 'object'
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
required: ['action', 'payload', 'eventType']
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
required: ['type', 'properties']
|
|
43
|
+
}
|
|
44
|
+
};
|
|
1
45
|
export default {
|
|
2
|
-
|
|
3
|
-
required:
|
|
46
|
+
type: {
|
|
47
|
+
required: false,
|
|
4
48
|
typeMetadata: {
|
|
5
49
|
schema: {
|
|
6
|
-
type: '
|
|
50
|
+
type: 'string'
|
|
7
51
|
}
|
|
52
|
+
},
|
|
53
|
+
defaultValue: ''
|
|
54
|
+
},
|
|
55
|
+
actions: {
|
|
56
|
+
required: true,
|
|
57
|
+
typeMetadata: {
|
|
58
|
+
schema: actionsSchema
|
|
8
59
|
}
|
|
9
60
|
}
|
|
10
61
|
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export default class PropertiesConverter {
|
|
2
|
+
static toJsonSchema(properties) {
|
|
3
|
+
let required = [];
|
|
4
|
+
const updatedProperties = Object.entries(properties).reduce((value, _ref) => {
|
|
5
|
+
let [prop, schema] = _ref;
|
|
6
|
+
|
|
7
|
+
if (schema.required) {
|
|
8
|
+
required.push(prop);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
return { ...value,
|
|
12
|
+
[prop]: { ...schema.typeMetadata.schema
|
|
13
|
+
}
|
|
14
|
+
};
|
|
15
|
+
}, {});
|
|
16
|
+
return {
|
|
17
|
+
type: 'object',
|
|
18
|
+
properties: updatedProperties,
|
|
19
|
+
required
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
}
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
var Types = /*#__PURE__*/function (Types) {
|
|
2
|
-
Types["CheckboxField"] = "
|
|
3
|
-
Types["SwitchField"] = "
|
|
4
|
-
Types["SingleLineField"] = "
|
|
5
|
-
Types["MultiLineField"] = "
|
|
6
|
-
Types["EmailField"] = "
|
|
7
|
-
Types["URLField"] = "
|
|
8
|
-
Types["PhoneField"] = "
|
|
9
|
-
Types["CurrencyField"] = "
|
|
10
|
-
Types["LookUpField"] = "
|
|
11
|
-
Types["PickListField"] = "
|
|
12
|
-
Types["PercentageField"] = "
|
|
13
|
-
Types["DateField"] = "
|
|
14
|
-
Types["DateTimeField"] = "
|
|
15
|
-
Types["NumberField"] = "
|
|
16
|
-
Types["DecimalField"] = "
|
|
17
|
-
Types["MultiSelectField"] = "
|
|
2
|
+
Types["CheckboxField"] = "Checkbox";
|
|
3
|
+
Types["SwitchField"] = "Switch";
|
|
4
|
+
Types["SingleLineField"] = "SingleLine";
|
|
5
|
+
Types["MultiLineField"] = "MultiLine";
|
|
6
|
+
Types["EmailField"] = "Email";
|
|
7
|
+
Types["URLField"] = "URL";
|
|
8
|
+
Types["PhoneField"] = "Phone";
|
|
9
|
+
Types["CurrencyField"] = "Currency";
|
|
10
|
+
Types["LookUpField"] = "LookUp";
|
|
11
|
+
Types["PickListField"] = "PickList";
|
|
12
|
+
Types["PercentageField"] = "Percentage";
|
|
13
|
+
Types["DateField"] = "Date";
|
|
14
|
+
Types["DateTimeField"] = "DateTime";
|
|
15
|
+
Types["NumberField"] = "Number";
|
|
16
|
+
Types["DecimalField"] = "Decimal";
|
|
17
|
+
Types["MultiSelectField"] = "MultiSelect";
|
|
18
18
|
return Types;
|
|
19
19
|
}(Types || {});
|
|
20
20
|
|
|
@@ -1,15 +1,5 @@
|
|
|
1
|
-
import ZListProperties from "../../bc/zlist/Properties";
|
|
2
1
|
import SelectionConfigSchema from "../../bc/list-selection/Properties";
|
|
3
|
-
export default {
|
|
4
|
-
sortBy: {
|
|
5
|
-
required: false,
|
|
6
|
-
defaultValue: '',
|
|
7
|
-
typeMetadata: {
|
|
8
|
-
schema: {
|
|
9
|
-
type: 'string'
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
},
|
|
2
|
+
export default {
|
|
13
3
|
isFlexibleColumns: {
|
|
14
4
|
required: false,
|
|
15
5
|
defaultValue: false,
|
|
@@ -19,17 +9,7 @@ export default { ...ZListProperties,
|
|
|
19
9
|
}
|
|
20
10
|
}
|
|
21
11
|
},
|
|
22
|
-
|
|
23
|
-
required: false,
|
|
24
|
-
defaultValue: {
|
|
25
|
-
isEnabled: false,
|
|
26
|
-
maxSelectionCount: 50,
|
|
27
|
-
limitExceedAlertMessage: 'Max records selected'
|
|
28
|
-
},
|
|
29
|
-
typeMetadata: {
|
|
30
|
-
schema: SelectionConfigSchema
|
|
31
|
-
}
|
|
32
|
-
},
|
|
12
|
+
...SelectionConfigSchema,
|
|
33
13
|
uiMapping: {
|
|
34
14
|
required: false,
|
|
35
15
|
defaultValue: {
|
|
@@ -41,29 +21,17 @@ export default { ...ZListProperties,
|
|
|
41
21
|
type: 'object',
|
|
42
22
|
properties: {
|
|
43
23
|
fields: {
|
|
44
|
-
type: 'object'
|
|
45
|
-
defaultValue: {}
|
|
24
|
+
type: 'object'
|
|
46
25
|
},
|
|
47
26
|
emptyState: {
|
|
48
|
-
type: 'string'
|
|
49
|
-
defaultValue: ''
|
|
27
|
+
type: 'string'
|
|
50
28
|
}
|
|
51
29
|
}
|
|
52
30
|
}
|
|
53
31
|
}
|
|
54
32
|
},
|
|
55
|
-
headers: {
|
|
56
|
-
required: false,
|
|
57
|
-
defaultValue: '',
|
|
58
|
-
typeMetadata: {
|
|
59
|
-
schema: {
|
|
60
|
-
type: 'object'
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
},
|
|
64
33
|
moduleName: {
|
|
65
34
|
required: true,
|
|
66
|
-
defaultValue: 'ticket',
|
|
67
35
|
typeMetadata: {
|
|
68
36
|
schema: {
|
|
69
37
|
type: 'string'
|
|
@@ -75,15 +43,51 @@ export default { ...ZListProperties,
|
|
|
75
43
|
defaultValue: [],
|
|
76
44
|
typeMetadata: {
|
|
77
45
|
schema: {
|
|
78
|
-
type: 'array'
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
46
|
+
type: 'array',
|
|
47
|
+
minItems: 0,
|
|
48
|
+
items: {
|
|
49
|
+
type: 'object',
|
|
50
|
+
properties: {
|
|
51
|
+
uiType: {
|
|
52
|
+
type: 'string'
|
|
53
|
+
},
|
|
54
|
+
properties: {
|
|
55
|
+
type: 'object'
|
|
56
|
+
},
|
|
57
|
+
eventMappings: {
|
|
58
|
+
type: 'array',
|
|
59
|
+
minItems: 0,
|
|
60
|
+
items: {
|
|
61
|
+
type: 'object',
|
|
62
|
+
properties: {
|
|
63
|
+
id: {
|
|
64
|
+
type: 'string'
|
|
65
|
+
},
|
|
66
|
+
action: {
|
|
67
|
+
type: 'object',
|
|
68
|
+
properties: {
|
|
69
|
+
id: {
|
|
70
|
+
type: 'string'
|
|
71
|
+
},
|
|
72
|
+
dispatchType: {
|
|
73
|
+
type: 'string'
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
required: ['id', 'dispatchType']
|
|
77
|
+
},
|
|
78
|
+
eventType: {
|
|
79
|
+
type: 'string'
|
|
80
|
+
},
|
|
81
|
+
payloadMapping: {
|
|
82
|
+
type: 'string'
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
required: ['id', 'action', 'payloadMapping', 'eventType']
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
required: ['uiType', 'properties']
|
|
90
|
+
}
|
|
87
91
|
}
|
|
88
92
|
}
|
|
89
93
|
}
|