@ind-rcg/modeler-sfdx-cli-plugin 246.1042.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/LICENSE.md +37 -0
- package/README.md +756 -0
- package/lib/commands/modeler/workspace/add.js +1 -0
- package/lib/commands/modeler/workspace/build.js +1 -0
- package/lib/commands/modeler/workspace/cleanup.js +1 -0
- package/lib/commands/modeler/workspace/create.js +1 -0
- package/lib/commands/modeler/workspace/package.js +1 -0
- package/lib/commands/modeler/workspace/refreshLocale.js +1 -0
- package/lib/commands/modeler/workspace/server/start.js +1 -0
- package/lib/commands/modeler/workspace/upgrade.js +1 -0
- package/lib/commands/modeler/workspace/utils/base64encode.js +1 -0
- package/lib/commands/modeler/workspace/utils/generateManifest.js +1 -0
- package/lib/commands/modeler/workspace/utils/migrateContracts.js +1 -0
- package/lib/commands/modeler/workspace/validate.js +1 -0
- package/lib/constants.js +1 -0
- package/lib/hooks/init/updateCheck.js +1 -0
- package/lib/model/buildStatus.js +1 -0
- package/lib/model/workspace.js +1 -0
- package/lib/model/workspaceCommand.js +1 -0
- package/lib/shared/commandBuilder.js +1 -0
- package/lib/shared/commandExecutor.js +1 -0
- package/lib/shared/commandOutput.js +1 -0
- package/lib/types/config.js +1 -0
- package/lib/types/errors.js +1 -0
- package/lib/types/messages.js +1 -0
- package/lib/types/package.js +1 -0
- package/lib/types/results.js +1 -0
- package/lib/utils/componentHelper.js +1 -0
- package/lib/utils/errorHelper.js +1 -0
- package/lib/utils/fsHelper.js +1 -0
- package/lib/utils/generateManifestHelper.js +1 -0
- package/lib/utils/messageHelper.js +1 -0
- package/lib/utils/packageHelper.js +1 -0
- package/lib/utils/serverHelper.js +1 -0
- package/lib/utils/templateEngine.js +1 -0
- package/lib/utils/templateHelper.js +1 -0
- package/lib/utils/updateChecker.js +1 -0
- package/lib/utils/validationHelper.js +1 -0
- package/messages/modeler-workspace-add.md +45 -0
- package/messages/modeler-workspace-build.md +29 -0
- package/messages/modeler-workspace-cleanup.md +17 -0
- package/messages/modeler-workspace-create.md +21 -0
- package/messages/modeler-workspace-package.md +21 -0
- package/messages/modeler-workspace-refresh-locale.md +27 -0
- package/messages/modeler-workspace-server-start.md +37 -0
- package/messages/modeler-workspace-upgrade.md +21 -0
- package/messages/modeler-workspace-utils-base64encode.md +25 -0
- package/messages/modeler-workspace-utils-generateManifest.md +15 -0
- package/messages/modeler-workspace-utils-migrateContracts.md +23 -0
- package/messages/modeler-workspace-validate.md +29 -0
- package/messages/modeler-workspace.md +19 -0
- package/oclif.manifest.json +429 -0
- package/package.json +108 -0
- package/templates/.gitignore.tmp +4 -0
- package/templates/README.md.tmp +77 -0
- package/templates/contractTemplates/#ModuleName#/BO/README.md +1 -0
- package/templates/contractTemplates/#ModuleName#/DS/README.md +1 -0
- package/templates/contractTemplates/#ModuleName#/PL/README.md +1 -0
- package/templates/contractTemplates/#ModuleName#/PR/README.md +1 -0
- package/templates/contractTemplates/#ModuleName#/TB/README.md +1 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Bo${NAME}.businessobject.xml +22 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/CreateAsync/Bo${NAME}.AfterCreateAsync.bl.js +54 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/CreateAsync/Bo${NAME}.BeforeCreateAsync.bl.js +56 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/DoValidateAsync/Bo${NAME}.AfterDoValidateAsync.bl.js +57 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/DoValidateAsync/Bo${NAME}.BeforeDoValidateAsync.bl.js +56 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/Initialize/Bo${NAME}.AfterInitialize.bl.js +54 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/Initialize/Bo${NAME}.BeforeInitialize.bl.js +54 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/LoadAsync/Bo${NAME}.AfterLoadAsync.bl.js +57 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/LoadAsync/Bo${NAME}.BeforeLoadAsync.bl.js +56 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/SaveAsync/Bo${NAME}.AfterSaveAsync.bl.js +57 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/SaveAsync/Bo${NAME}.BeforeSaveAsync.bl.js +56 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/BusinessObject.md +186 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectListObjectsListObjectEventsSnipp.xml +3 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectListObjectsListObjectSnipp.xml +1 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectNestedObjectsNestedObjectSnipp.xml +1 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectObjectLookupsObjectLookupEventsSnipp.xml +3 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectObjectLookupsObjectLookupSnipp.xml +1 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectSimplePropertiesSimplePropertyEventsSnipp.xml +3 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectSimplePropertiesSimplePropertySnipp.xml +1 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobjecthelper/snippets/BusinessObjectHelperSimplePropertiesSimplePropertySnipp.xml +1 -0
- package/templates/contractTemplates/BO_BusinessObject/validationmessages/ValidationMessage.md +38 -0
- package/templates/contractTemplates/BO_BusinessObject/validationmessages/snippets/ValidationMessagesValidationMessageSnipp.xml +1 -0
- package/templates/contractTemplates/DS_DataSource/DataSource.md +319 -0
- package/templates/contractTemplates/DS_DataSource/Ds${NAME}_sf.datasource.xml +11 -0
- package/templates/contractTemplates/DS_DataSource/snippets/DataSourceAttributesAttributeSnipp.xml +1 -0
- package/templates/contractTemplates/DS_DataSource/snippets/DataSourceAttributesDerivedAttributeSnipp.xml +1 -0
- package/templates/contractTemplates/DS_DataSource/snippets/DataSourceEntitiesEntityJoinSimpleJoinConditionAttributeSnipp.xml +1 -0
- package/templates/contractTemplates/DS_DataSource/snippets/DataSourceEntitiesEntityJoinSimpleJoinConditionLiteralSnipp.xml +1 -0
- package/templates/contractTemplates/DS_DataSource/snippets/DataSourceEntitiesEntitySnipp.xml +1 -0
- package/templates/contractTemplates/ExternalFiles/#Name#.externalfile.xml +6 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Li${NAME}.listitem.xml +5 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/ListItem.md +114 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/ListObject.md +354 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Lo${NAME}.listobject.xml +12 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/DoValidateAsync/Lo${NAME}.AfterDoValidateAsync.bl.js +57 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/DoValidateAsync/Lo${NAME}.BeforeDoValidateAsync.bl.js +56 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/LoadAsync/Lo${NAME}.AfterLoadAsync.bl.js +57 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/LoadAsync/Lo${NAME}.BeforeLoadAsync.bl.js +56 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/SaveAsync/Lo${NAME}.AfterSaveAsync.bl.js +57 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/SaveAsync/Lo${NAME}.BeforeSaveAsync.bl.js +56 -0
- package/templates/contractTemplates/LO_ListObject/snippets/ListItemSimplePropertiesSimplepropertySnipp.xml +1 -0
- package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/LookupObject.md +97 -0
- package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/Lu${NAME}.lookupobject.xml +12 -0
- package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/Mv2/LoadAsync/Lu${NAME}.AfterLoadAsync.bl.js +57 -0
- package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/Mv2/LoadAsync/Lu${NAME}.BeforeLoadAsync.bl.js +56 -0
- package/templates/contractTemplates/LU_LookupObject/snippets/LookupObjectSimplePropertiesSimplePropertySnipp.xml +1 -0
- package/templates/contractTemplates/PL_PrintLayout/#Name#PDF/#Name#PDF.printlayoutv2.xml +4 -0
- package/templates/contractTemplates/PR_Process_&_UI/#ModuleName#_#Name#/#ModuleName#_#Name#.userinterface.xml +4 -0
- package/templates/contractTemplates/PR_Process_&_UI/#ModuleName#_#Name#/#ModuleName#_#Name#Process.processflow.xml +12 -0
- package/templates/contractTemplates/PR_Process_&_UI/Process.md +790 -0
- package/templates/contractTemplates/PR_Process_&_UI/UserInterface.md +1545 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionConfirmSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionCreateSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionDecisionSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionEndSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionLoadSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionLogicSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionMasterDetailSnipp.xml +24 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionNavigationSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionPrintSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionPrintV2Snipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionProcessSnipp.xml +9 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionValidationSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionViewSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessEntryEntryActionsActionCreateSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessEntryEntryActionsActionLoadSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessEntryEntryActionsActionLogicSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Attachment/AttachmentFolderInfoSectionSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Attachment/AttachmentFolderSnipp.xml +24 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Banner/BannerFilterSnipp.xml +19 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Banner/Banner_WithFilterSnipp.xml +25 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Banner/Banner_WithoutFilterSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BindingList/BindingsList_DecisionsSnipp.xml +9 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BindingList/BindingsList_GroupsSnipp.xml +11 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BindingList/BindingsList_ResultsSnipp.xml +13 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlEventsSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyBindingsBindingAddItemSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyBindingsBindingCategoriesSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyBindingsBindingShowCategorySnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyDataSourcesSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingButtonSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingComboSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingDateSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingDecimalSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingDynamicSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingImageSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingStepperSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingStepper_CorrelationIdSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingTextSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsResourceImageSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsResourceLabelSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsContextMenuSnipp.xml +13 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlSearchAttributesSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlSnipp.xml +22 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/MultiSelectionBreadCrumbControlSnipp.xml +23 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlEventsSnipp.xml +11 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingDateSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingDecimalSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingImageSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingLabelSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingTextSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlSettingsSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/CheckBox/CheckBoxEventsSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/CheckBox/CheckBoxSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Cockpit/CockpitSectionsSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/DataImportWizard/DataImportWizardSnipp.xml +12 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/DatePicker/DatePickerFieldSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/EmbededList/EmbeddedListSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/EnhanceDecisionList/EnhancedDecisionListSnipp.xml +52 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/FastEntry/FastDataEntryGridSnipp.xml +69 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GoogleMaps/GoogleMapDetailsSnipp.xml +20 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GoogleMaps/GoogleMapSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupElement/GroupElementSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedButtonList/GroupedButtonListEventsSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedButtonList/GroupedButtonListFooterSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedButtonList/GroupedButtonListSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/GroupedListEventsSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/GroupedListSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/MultiSelectionGroupedListEventsSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/MultiSelectionGroupedListSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ImageButton/ImageButtonSnipp.xml +10 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ImageSelector/ImageSelectorSnipp.xml +16 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/InputArea/InputAreaMultiLineSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/InputArea/InputAreaSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ItemListLayout/ItemListLayout_ComplexSnipp.xml +13 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ItemListLayout/ItemListLayout_GridSnipp.xml +10 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ItemListLayout/ItemListLayout_TwoRowsSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/LinkBar/LinkBarSnipp.xml +12 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Lookup/LookupEventSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Lookup/LookupSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaControl/MediaControlSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingDescriptionSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingIsTaggedSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingMediaPathSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingTypeSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlEventsSnipp.xml +4 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Menu/LongPressMenuSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Menu/MenuItemSnipp.xml +9 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerOneInputControlTwoButtonsMaxSnipp.xml +2 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerTwoInputControlsCombinedSnipp.xml +2 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerTwoInputControlsNoneSnipp.xml +2 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerTwoInputControlsOwnSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/NoDataMessageSnipp.xml +9 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithDetailGroupsSnipp.xml +43 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithDetailListSnipp.xml +44 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithDetailTabsSnipp.xml +61 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithExtendedDetailSnipp.xml +44 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_GroupedElementsSnipp.xml +33 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_ListSnipp.xml +41 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_TabSnipp.xml +39 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_WizardSnipp.xml +34 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SplitScreen/Page_SplitScreenSnipp.xml +27 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SelectionBox/SelectionBoxBindingSnipp.xml +13 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SelectionBox/SelectionBoxEventsSnipp.xml +4 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SelectionBox/SelectionBoxToggleSnipp.xml +13 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingEditableParametersSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingEditableSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingVisibleParametersSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingVisibleSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlEditabilityRolesSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlVisibilityRolesSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Stepper/StepperSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/TextBar/TextBarSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ThemeSelection/ThemeSelectionSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/TimePicker/TimePickerFieldSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/UserWelcomeSnipp.xml +24 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/VisitDetailsSnipp.xml +21 -0
- package/templates/contractTemplates/TB_Table/#Name#_T.temptable.xml +11 -0
- package/templates/contractTemplates/TB_Table/snippets/#Name#.dbtable.xml +10 -0
- package/templates/contractTemplates/TB_Table/snippets/dbtable/DBTablecolumnscolumnSnipp.xml +1 -0
- package/templates/contractTemplates/TB_Table/snippets/dbtable/DBTableindexesindexSnipp.xml +3 -0
- package/templates/contractTemplates/TB_Table/snippets/temptable/TempTableColumnsColumnIsDeletedSnipp.xml +1 -0
- package/templates/contractTemplates/TB_Table/snippets/temptable/TempTableColumnsColumnSnipp.xml +1 -0
- package/templates/contractTemplates/TB_Table/snippets/temptable/TempTableindexesindexSnipp.xml +3 -0
- package/templates/contractTemplates/UI_Plugins/#Name#UiPluginV2.uipluginv2.xml +16 -0
- package/templates/templateDefinitions.json +167 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# CommandDescription
|
|
2
|
+
|
|
3
|
+
Migrate existing contracts in your Modeler workspace to support the latest version of Modeler.
|
|
4
|
+
|
|
5
|
+
# MigrationInProgress
|
|
6
|
+
|
|
7
|
+
Migration of contracts is in progress.
|
|
8
|
+
|
|
9
|
+
# MissingSrcDirectory
|
|
10
|
+
|
|
11
|
+
Missing src directory in the workspace. Verify that the workspace exists.
|
|
12
|
+
|
|
13
|
+
# WorkspaceNotFound
|
|
14
|
+
|
|
15
|
+
Invalid workspace at '%s'. Verify that a valid workspace exists.
|
|
16
|
+
|
|
17
|
+
# MigrationFailed
|
|
18
|
+
|
|
19
|
+
Failed to migrate the contracts. See the log messages for more details.
|
|
20
|
+
|
|
21
|
+
# MigrationComplete
|
|
22
|
+
|
|
23
|
+
Migration of contracts is complete.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# commandDescription
|
|
2
|
+
|
|
3
|
+
Validate the contracts in a modeler workspace
|
|
4
|
+
|
|
5
|
+
# ValidationErrors
|
|
6
|
+
|
|
7
|
+
Validation Errors - Please check '%s'
|
|
8
|
+
|
|
9
|
+
# ValidationSuccessful
|
|
10
|
+
|
|
11
|
+
Validation successful
|
|
12
|
+
|
|
13
|
+
# ValidationFailed
|
|
14
|
+
|
|
15
|
+
Validation failed
|
|
16
|
+
|
|
17
|
+
# NoOutput
|
|
18
|
+
|
|
19
|
+
No output was created. Make sure contracts exist in the workspace.
|
|
20
|
+
|
|
21
|
+
# ValidationProgress
|
|
22
|
+
|
|
23
|
+
Validation status for Modeler workspace at path '%s'.
|
|
24
|
+
|
|
25
|
+
# examples
|
|
26
|
+
|
|
27
|
+
- <%= config.bin %> <%= command.id %>
|
|
28
|
+
|
|
29
|
+
- <%= config.bin %> <%= command.id %> --path ./testWorkspace
|
|
@@ -0,0 +1,429 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "246.1042.1",
|
|
3
|
+
"commands": {
|
|
4
|
+
"modeler:workspace:add": {
|
|
5
|
+
"id": "modeler:workspace:add",
|
|
6
|
+
"description": "Adds a new resource to a Modeler workspace.",
|
|
7
|
+
"strict": true,
|
|
8
|
+
"pluginName": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
9
|
+
"pluginAlias": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
10
|
+
"pluginType": "core",
|
|
11
|
+
"aliases": [
|
|
12
|
+
"mdl:add",
|
|
13
|
+
"mdl:ws:add"
|
|
14
|
+
],
|
|
15
|
+
"examples": [
|
|
16
|
+
"<%= config.bin %> <%= command.id %>",
|
|
17
|
+
"<%= config.bin %> <%= command.id %> --type businessobject --module Visit --name VisitKpi",
|
|
18
|
+
"<%= config.bin %> <%= command.id %> --path ./workspacePath --type businessobject --module Visit --name VisitKpi"
|
|
19
|
+
],
|
|
20
|
+
"flags": {
|
|
21
|
+
"json": {
|
|
22
|
+
"name": "json",
|
|
23
|
+
"type": "boolean",
|
|
24
|
+
"description": "Format output as json.",
|
|
25
|
+
"helpGroup": "GLOBAL",
|
|
26
|
+
"allowNo": false
|
|
27
|
+
},
|
|
28
|
+
"path": {
|
|
29
|
+
"name": "path",
|
|
30
|
+
"type": "option",
|
|
31
|
+
"char": "p",
|
|
32
|
+
"description": "path to the Modeler workspace",
|
|
33
|
+
"required": false,
|
|
34
|
+
"multiple": false
|
|
35
|
+
},
|
|
36
|
+
"type": {
|
|
37
|
+
"name": "type",
|
|
38
|
+
"type": "option",
|
|
39
|
+
"char": "t",
|
|
40
|
+
"description": "Type of the resource to add.",
|
|
41
|
+
"required": false,
|
|
42
|
+
"multiple": false
|
|
43
|
+
},
|
|
44
|
+
"module": {
|
|
45
|
+
"name": "module",
|
|
46
|
+
"type": "option",
|
|
47
|
+
"char": "m",
|
|
48
|
+
"description": "Name of the module to which the resource should be added.",
|
|
49
|
+
"required": false,
|
|
50
|
+
"multiple": false
|
|
51
|
+
},
|
|
52
|
+
"name": {
|
|
53
|
+
"name": "name",
|
|
54
|
+
"type": "option",
|
|
55
|
+
"char": "n",
|
|
56
|
+
"description": "Name of the resource to add.",
|
|
57
|
+
"required": false,
|
|
58
|
+
"multiple": false
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"args": {}
|
|
62
|
+
},
|
|
63
|
+
"modeler:workspace:build": {
|
|
64
|
+
"id": "modeler:workspace:build",
|
|
65
|
+
"description": "Build a Modeler workspace.",
|
|
66
|
+
"strict": true,
|
|
67
|
+
"pluginName": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
68
|
+
"pluginAlias": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
69
|
+
"pluginType": "core",
|
|
70
|
+
"aliases": [
|
|
71
|
+
"mdl:ws:build",
|
|
72
|
+
"mdl:build"
|
|
73
|
+
],
|
|
74
|
+
"examples": [
|
|
75
|
+
"<%= config.bin %> <%= command.id %>",
|
|
76
|
+
"<%= config.bin %> <%= command.id %> --path ./testWorkspace"
|
|
77
|
+
],
|
|
78
|
+
"flags": {
|
|
79
|
+
"json": {
|
|
80
|
+
"name": "json",
|
|
81
|
+
"type": "boolean",
|
|
82
|
+
"description": "Format output as json.",
|
|
83
|
+
"helpGroup": "GLOBAL",
|
|
84
|
+
"allowNo": false
|
|
85
|
+
},
|
|
86
|
+
"path": {
|
|
87
|
+
"name": "path",
|
|
88
|
+
"type": "option",
|
|
89
|
+
"char": "p",
|
|
90
|
+
"description": "path to the Modeler workspace",
|
|
91
|
+
"required": false,
|
|
92
|
+
"multiple": false
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"args": {}
|
|
96
|
+
},
|
|
97
|
+
"modeler:workspace:cleanup": {
|
|
98
|
+
"id": "modeler:workspace:cleanup",
|
|
99
|
+
"description": "Clean up an existing Modeler workspace.",
|
|
100
|
+
"strict": true,
|
|
101
|
+
"pluginName": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
102
|
+
"pluginAlias": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
103
|
+
"pluginType": "core",
|
|
104
|
+
"aliases": [
|
|
105
|
+
"mdl:ws:cleanup",
|
|
106
|
+
"mdl:ws:clean",
|
|
107
|
+
"mdl:cleanup",
|
|
108
|
+
"mdl:clean"
|
|
109
|
+
],
|
|
110
|
+
"examples": [
|
|
111
|
+
"<%= config.bin %> <%= command.id %>",
|
|
112
|
+
"<%= config.bin %> <%= command.id %> --path ./workspacePath"
|
|
113
|
+
],
|
|
114
|
+
"flags": {
|
|
115
|
+
"json": {
|
|
116
|
+
"name": "json",
|
|
117
|
+
"type": "boolean",
|
|
118
|
+
"description": "Format output as json.",
|
|
119
|
+
"helpGroup": "GLOBAL",
|
|
120
|
+
"allowNo": false
|
|
121
|
+
},
|
|
122
|
+
"path": {
|
|
123
|
+
"name": "path",
|
|
124
|
+
"type": "option",
|
|
125
|
+
"char": "p",
|
|
126
|
+
"description": "path to the Modeler workspace",
|
|
127
|
+
"required": false,
|
|
128
|
+
"multiple": false
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
"args": {}
|
|
132
|
+
},
|
|
133
|
+
"modeler:workspace:create": {
|
|
134
|
+
"id": "modeler:workspace:create",
|
|
135
|
+
"description": "Create a Modeler workspace.",
|
|
136
|
+
"strict": true,
|
|
137
|
+
"pluginName": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
138
|
+
"pluginAlias": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
139
|
+
"pluginType": "core",
|
|
140
|
+
"aliases": [],
|
|
141
|
+
"examples": [
|
|
142
|
+
"<%= config.bin %> <%= command.id %>",
|
|
143
|
+
"<%= config.bin %> <%= command.id %> --path ./workspacePath"
|
|
144
|
+
],
|
|
145
|
+
"flags": {
|
|
146
|
+
"json": {
|
|
147
|
+
"name": "json",
|
|
148
|
+
"type": "boolean",
|
|
149
|
+
"description": "Format output as json.",
|
|
150
|
+
"helpGroup": "GLOBAL",
|
|
151
|
+
"allowNo": false
|
|
152
|
+
},
|
|
153
|
+
"path": {
|
|
154
|
+
"name": "path",
|
|
155
|
+
"type": "option",
|
|
156
|
+
"char": "p",
|
|
157
|
+
"description": "path to the Modeler workspace",
|
|
158
|
+
"required": false,
|
|
159
|
+
"multiple": false
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"args": {}
|
|
163
|
+
},
|
|
164
|
+
"modeler:workspace:package": {
|
|
165
|
+
"id": "modeler:workspace:package",
|
|
166
|
+
"description": "Create a deployment package of a Modeler workspace.",
|
|
167
|
+
"strict": true,
|
|
168
|
+
"pluginName": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
169
|
+
"pluginAlias": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
170
|
+
"pluginType": "core",
|
|
171
|
+
"aliases": [
|
|
172
|
+
"mdl:ws:package",
|
|
173
|
+
"mdl:package"
|
|
174
|
+
],
|
|
175
|
+
"examples": [
|
|
176
|
+
"<%= config.bin %> <%= command.id %>",
|
|
177
|
+
"<%= config.bin %> <%= command.id %> --path ./workspacePath"
|
|
178
|
+
],
|
|
179
|
+
"flags": {
|
|
180
|
+
"json": {
|
|
181
|
+
"name": "json",
|
|
182
|
+
"type": "boolean",
|
|
183
|
+
"description": "Format output as json.",
|
|
184
|
+
"helpGroup": "GLOBAL",
|
|
185
|
+
"allowNo": false
|
|
186
|
+
},
|
|
187
|
+
"path": {
|
|
188
|
+
"name": "path",
|
|
189
|
+
"type": "option",
|
|
190
|
+
"char": "p",
|
|
191
|
+
"description": "path to the Modeler workspace",
|
|
192
|
+
"required": false,
|
|
193
|
+
"multiple": false
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
"args": {}
|
|
197
|
+
},
|
|
198
|
+
"modeler:workspace:refreshLocale": {
|
|
199
|
+
"id": "modeler:workspace:refreshLocale",
|
|
200
|
+
"description": "Refresh locale translation in workspace.",
|
|
201
|
+
"strict": true,
|
|
202
|
+
"pluginName": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
203
|
+
"pluginAlias": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
204
|
+
"pluginType": "core",
|
|
205
|
+
"aliases": [],
|
|
206
|
+
"flags": {
|
|
207
|
+
"json": {
|
|
208
|
+
"name": "json",
|
|
209
|
+
"type": "boolean",
|
|
210
|
+
"description": "Format output as json.",
|
|
211
|
+
"helpGroup": "GLOBAL",
|
|
212
|
+
"allowNo": false
|
|
213
|
+
},
|
|
214
|
+
"path": {
|
|
215
|
+
"name": "path",
|
|
216
|
+
"type": "option",
|
|
217
|
+
"char": "p",
|
|
218
|
+
"description": "path to the Modeler workspace",
|
|
219
|
+
"required": false,
|
|
220
|
+
"multiple": false
|
|
221
|
+
},
|
|
222
|
+
"contract": {
|
|
223
|
+
"name": "contract",
|
|
224
|
+
"type": "option",
|
|
225
|
+
"char": "c",
|
|
226
|
+
"summary": "Name of the locale contracts to be refreshed. To specify multiple values, use a comma (,) separator.",
|
|
227
|
+
"required": false,
|
|
228
|
+
"multiple": false
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
"args": {}
|
|
232
|
+
},
|
|
233
|
+
"modeler:workspace:upgrade": {
|
|
234
|
+
"id": "modeler:workspace:upgrade",
|
|
235
|
+
"description": "Upgrades a Modeler workspace.",
|
|
236
|
+
"strict": true,
|
|
237
|
+
"pluginName": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
238
|
+
"pluginAlias": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
239
|
+
"pluginType": "core",
|
|
240
|
+
"aliases": [],
|
|
241
|
+
"examples": [
|
|
242
|
+
"<%= config.bin %> <%= command.id %>",
|
|
243
|
+
"<%= config.bin %> <%= command.id %> --path ./workspacePath"
|
|
244
|
+
],
|
|
245
|
+
"flags": {
|
|
246
|
+
"json": {
|
|
247
|
+
"name": "json",
|
|
248
|
+
"type": "boolean",
|
|
249
|
+
"description": "Format output as json.",
|
|
250
|
+
"helpGroup": "GLOBAL",
|
|
251
|
+
"allowNo": false
|
|
252
|
+
},
|
|
253
|
+
"path": {
|
|
254
|
+
"name": "path",
|
|
255
|
+
"type": "option",
|
|
256
|
+
"char": "p",
|
|
257
|
+
"description": "path to the Modeler workspace",
|
|
258
|
+
"required": false,
|
|
259
|
+
"multiple": false
|
|
260
|
+
}
|
|
261
|
+
},
|
|
262
|
+
"args": {}
|
|
263
|
+
},
|
|
264
|
+
"modeler:workspace:validate": {
|
|
265
|
+
"id": "modeler:workspace:validate",
|
|
266
|
+
"description": "Validate the contracts in a modeler workspace",
|
|
267
|
+
"strict": true,
|
|
268
|
+
"pluginName": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
269
|
+
"pluginAlias": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
270
|
+
"pluginType": "core",
|
|
271
|
+
"aliases": [
|
|
272
|
+
"mdl:ws:validate",
|
|
273
|
+
"mdl:validate"
|
|
274
|
+
],
|
|
275
|
+
"examples": [
|
|
276
|
+
"<%= config.bin %> <%= command.id %>",
|
|
277
|
+
"<%= config.bin %> <%= command.id %> --path ./testWorkspace"
|
|
278
|
+
],
|
|
279
|
+
"flags": {
|
|
280
|
+
"json": {
|
|
281
|
+
"name": "json",
|
|
282
|
+
"type": "boolean",
|
|
283
|
+
"description": "Format output as json.",
|
|
284
|
+
"helpGroup": "GLOBAL",
|
|
285
|
+
"allowNo": false
|
|
286
|
+
},
|
|
287
|
+
"path": {
|
|
288
|
+
"name": "path",
|
|
289
|
+
"type": "option",
|
|
290
|
+
"char": "p",
|
|
291
|
+
"description": "path to the Modeler workspace",
|
|
292
|
+
"required": false,
|
|
293
|
+
"multiple": false
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
"args": {}
|
|
297
|
+
},
|
|
298
|
+
"modeler:workspace:server:start": {
|
|
299
|
+
"id": "modeler:workspace:server:start",
|
|
300
|
+
"description": "Start the server",
|
|
301
|
+
"strict": true,
|
|
302
|
+
"pluginName": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
303
|
+
"pluginAlias": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
304
|
+
"pluginType": "core",
|
|
305
|
+
"aliases": [
|
|
306
|
+
"mdl:ws:server:start",
|
|
307
|
+
"mdl:ws:simulate",
|
|
308
|
+
"mdl:simulate"
|
|
309
|
+
],
|
|
310
|
+
"examples": [
|
|
311
|
+
"<%= config.bin %> <%= command.id %>",
|
|
312
|
+
"<%= config.bin %> <%= command.id %> --path ./testWorkspace"
|
|
313
|
+
],
|
|
314
|
+
"flags": {
|
|
315
|
+
"json": {
|
|
316
|
+
"name": "json",
|
|
317
|
+
"type": "boolean",
|
|
318
|
+
"description": "Format output as json.",
|
|
319
|
+
"helpGroup": "GLOBAL",
|
|
320
|
+
"allowNo": false
|
|
321
|
+
},
|
|
322
|
+
"path": {
|
|
323
|
+
"name": "path",
|
|
324
|
+
"type": "option",
|
|
325
|
+
"char": "p",
|
|
326
|
+
"description": "path to the Modeler workspace",
|
|
327
|
+
"required": false,
|
|
328
|
+
"multiple": false
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
"args": {}
|
|
332
|
+
},
|
|
333
|
+
"modeler:workspace:utils:base64encode": {
|
|
334
|
+
"id": "modeler:workspace:utils:base64encode",
|
|
335
|
+
"description": "Returns a Base64-encoded string from a given input file.",
|
|
336
|
+
"strict": true,
|
|
337
|
+
"pluginName": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
338
|
+
"pluginAlias": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
339
|
+
"pluginType": "core",
|
|
340
|
+
"aliases": [],
|
|
341
|
+
"examples": [
|
|
342
|
+
"<%= config.bin %> <%= command.id %> --input ./image.svg",
|
|
343
|
+
"<%= config.bin %> <%= command.id %> --input ./c3js.zip"
|
|
344
|
+
],
|
|
345
|
+
"flags": {
|
|
346
|
+
"json": {
|
|
347
|
+
"name": "json",
|
|
348
|
+
"type": "boolean",
|
|
349
|
+
"description": "Format output as json.",
|
|
350
|
+
"helpGroup": "GLOBAL",
|
|
351
|
+
"allowNo": false
|
|
352
|
+
},
|
|
353
|
+
"path": {
|
|
354
|
+
"name": "path",
|
|
355
|
+
"type": "option",
|
|
356
|
+
"char": "p",
|
|
357
|
+
"description": "path to the Modeler workspace",
|
|
358
|
+
"required": false,
|
|
359
|
+
"multiple": false
|
|
360
|
+
},
|
|
361
|
+
"input": {
|
|
362
|
+
"name": "input",
|
|
363
|
+
"type": "option",
|
|
364
|
+
"char": "i",
|
|
365
|
+
"summary": "path to the input file for Base64 encoding",
|
|
366
|
+
"required": true,
|
|
367
|
+
"multiple": false
|
|
368
|
+
}
|
|
369
|
+
},
|
|
370
|
+
"args": {}
|
|
371
|
+
},
|
|
372
|
+
"modeler:workspace:utils:generateManifest": {
|
|
373
|
+
"id": "modeler:workspace:utils:generateManifest",
|
|
374
|
+
"description": "Generates a manifest.json file in the src folder of the workspace. The manifest.json file contains the fingerprints of all contracts.",
|
|
375
|
+
"strict": true,
|
|
376
|
+
"pluginName": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
377
|
+
"pluginAlias": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
378
|
+
"pluginType": "core",
|
|
379
|
+
"hidden": true,
|
|
380
|
+
"aliases": [],
|
|
381
|
+
"flags": {
|
|
382
|
+
"json": {
|
|
383
|
+
"name": "json",
|
|
384
|
+
"type": "boolean",
|
|
385
|
+
"description": "Format output as json.",
|
|
386
|
+
"helpGroup": "GLOBAL",
|
|
387
|
+
"allowNo": false
|
|
388
|
+
},
|
|
389
|
+
"path": {
|
|
390
|
+
"name": "path",
|
|
391
|
+
"type": "option",
|
|
392
|
+
"char": "p",
|
|
393
|
+
"description": "path to the Modeler workspace",
|
|
394
|
+
"required": false,
|
|
395
|
+
"multiple": false
|
|
396
|
+
}
|
|
397
|
+
},
|
|
398
|
+
"args": {},
|
|
399
|
+
"FINGERPRINT_KEY": "fingerprints"
|
|
400
|
+
},
|
|
401
|
+
"modeler:workspace:utils:migrateContracts": {
|
|
402
|
+
"id": "modeler:workspace:utils:migrateContracts",
|
|
403
|
+
"description": "Migrate existing contracts in your Modeler workspace to support the latest version of Modeler.",
|
|
404
|
+
"strict": true,
|
|
405
|
+
"pluginName": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
406
|
+
"pluginAlias": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
407
|
+
"pluginType": "core",
|
|
408
|
+
"aliases": [],
|
|
409
|
+
"flags": {
|
|
410
|
+
"json": {
|
|
411
|
+
"name": "json",
|
|
412
|
+
"type": "boolean",
|
|
413
|
+
"description": "Format output as json.",
|
|
414
|
+
"helpGroup": "GLOBAL",
|
|
415
|
+
"allowNo": false
|
|
416
|
+
},
|
|
417
|
+
"path": {
|
|
418
|
+
"name": "path",
|
|
419
|
+
"type": "option",
|
|
420
|
+
"char": "p",
|
|
421
|
+
"description": "path to the Modeler workspace",
|
|
422
|
+
"required": false,
|
|
423
|
+
"multiple": false
|
|
424
|
+
}
|
|
425
|
+
},
|
|
426
|
+
"args": {}
|
|
427
|
+
}
|
|
428
|
+
}
|
|
429
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ind-rcg/modeler-sfdx-cli-plugin",
|
|
3
|
+
"displayName": "modeler-sfdx-cli-plugin",
|
|
4
|
+
"version": "246.1042.1",
|
|
5
|
+
"author": "Salesforce",
|
|
6
|
+
"license": "BSD-3-Clause",
|
|
7
|
+
"description": "This plugin is an enhancement of the sfdx cli and provide you features to customize the Consumer Goods Cloud Mobility application. This version will be the replacement for the Consumer Goods Mobile Modeler which was hosted on a Windows Server machine.",
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"@ind-rcg/backend": "246.1008.0",
|
|
10
|
+
"@ind-rcg/framework": "246.1014.0",
|
|
11
|
+
"@ind-rcg/generator": "246.1018.0",
|
|
12
|
+
"@oclif/core": "2.9.4",
|
|
13
|
+
"@salesforce/core": "4.1.0",
|
|
14
|
+
"@salesforce/sf-plugins-core": "3.1.3",
|
|
15
|
+
"cross-spawn": "6.0.5",
|
|
16
|
+
"crypto-js": "4.1.1",
|
|
17
|
+
"fs-extra": "10.0.0",
|
|
18
|
+
"inquirer": "8.2.5",
|
|
19
|
+
"jszip": "3.10.1",
|
|
20
|
+
"klaw-sync": "6.0.0",
|
|
21
|
+
"latest-version": "7.0.0",
|
|
22
|
+
"lodash": "4.17.21",
|
|
23
|
+
"rxjs": "5.4.1",
|
|
24
|
+
"tree-kill": "1.2.2",
|
|
25
|
+
"tslib": "2.4.0"
|
|
26
|
+
},
|
|
27
|
+
"resolutions": {
|
|
28
|
+
"@ind-rcg/plugins-printengine": "246.1010.0"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@istanbuljs/nyc-config-typescript": "1.0.2",
|
|
32
|
+
"@oclif/test": "2.1.1",
|
|
33
|
+
"@salesforce/cli-plugins-testkit": "4.1.1",
|
|
34
|
+
"@salesforce/ts-sinon": "1.3.21",
|
|
35
|
+
"@types/chai": "4.3.3",
|
|
36
|
+
"@types/fs-extra": "9.0.13",
|
|
37
|
+
"@types/klaw-sync": "6.0.1",
|
|
38
|
+
"@types/mocha": "8.2.3",
|
|
39
|
+
"@typescript-eslint/eslint-plugin": "5.31.0",
|
|
40
|
+
"@typescript-eslint/parser": "5.31.0",
|
|
41
|
+
"chai": "4.3.4",
|
|
42
|
+
"eslint": "8.23.0",
|
|
43
|
+
"eslint-config-prettier": "8.5.0",
|
|
44
|
+
"eslint-plugin-header": "3.1.1",
|
|
45
|
+
"eslint-plugin-import": "2.25.3",
|
|
46
|
+
"eslint-plugin-jsdoc": "35.5.1",
|
|
47
|
+
"eslint-plugin-prettier": "3.4.1",
|
|
48
|
+
"eslint-plugin-typescript": "0.14.0",
|
|
49
|
+
"mocha": "9.2.2",
|
|
50
|
+
"nyc": "15.1.0",
|
|
51
|
+
"oclif": "3.9.1",
|
|
52
|
+
"prettier": "2.7.1",
|
|
53
|
+
"sinon": "10.0.0",
|
|
54
|
+
"ts-node": "10.9.1",
|
|
55
|
+
"typescript": "4.8.3",
|
|
56
|
+
"uglifyjs-folder": "3.3.0"
|
|
57
|
+
},
|
|
58
|
+
"engines": {
|
|
59
|
+
"node": ">=16.0.0"
|
|
60
|
+
},
|
|
61
|
+
"files": [
|
|
62
|
+
"/lib/**/*.js",
|
|
63
|
+
"/messages",
|
|
64
|
+
"/templates",
|
|
65
|
+
"/oclif.manifest.json"
|
|
66
|
+
],
|
|
67
|
+
"oclif": {
|
|
68
|
+
"commands": "./lib/commands",
|
|
69
|
+
"hooks": {
|
|
70
|
+
"init": "./lib/hooks/init/updateCheck"
|
|
71
|
+
},
|
|
72
|
+
"bin": "sf",
|
|
73
|
+
"topics": {
|
|
74
|
+
"modeler": {
|
|
75
|
+
"description": "Modeler commands"
|
|
76
|
+
},
|
|
77
|
+
"modeler:workspace": {
|
|
78
|
+
"description": "Modeler workspace commands"
|
|
79
|
+
},
|
|
80
|
+
"modeler:workspace:utils": {
|
|
81
|
+
"description": "Modeler workspace utils commands"
|
|
82
|
+
},
|
|
83
|
+
"modeler:workspace:server": {
|
|
84
|
+
"description": "Modeler workspace server commands"
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"scripts": {
|
|
89
|
+
"build": "rm -rf lib && yarn lint && tsc -p . && yarn uglify",
|
|
90
|
+
"lint": "eslint src/**/*.ts test/**/*.ts",
|
|
91
|
+
"prepack": "rm -rf lib && tsc -b && yarn uglify && oclif manifest && oclif readme",
|
|
92
|
+
"postpack": "rm -f oclif.manifest.json",
|
|
93
|
+
"pretest": "rm -rf lib && yarn build",
|
|
94
|
+
"test": "yarn test-unit",
|
|
95
|
+
"test-all": "nyc mocha --extension .ts --require ts-node/register --forbid-only \"test/**/*.test.ts\" \"test/**/*.test.nut.ts\"",
|
|
96
|
+
"test-unit": "nyc mocha --extension .ts --require ts-node/register --forbid-only \"test/**/*.test.ts\"",
|
|
97
|
+
"test-nut": "nyc mocha --extension .ts --require ts-node/register --forbid-only \"test/**/*.test.nut.ts\"",
|
|
98
|
+
"test-single": "nyc mocha --extension .ts --require ts-node/register --forbid-only \"test/**/validate.test.ts\"",
|
|
99
|
+
"posttest": "yarn lint",
|
|
100
|
+
"version": "oclif readme && git add README.md",
|
|
101
|
+
"readme": "oclif readme",
|
|
102
|
+
"uglify": "uglifyjs-folder lib -e -x .js -o lib --log-level error"
|
|
103
|
+
},
|
|
104
|
+
"sfdx": {
|
|
105
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@ind-rcg/modeler-sfdx-cli-plugin/246.1042.1.crt",
|
|
106
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@ind-rcg/modeler-sfdx-cli-plugin/246.1042.1.sig"
|
|
107
|
+
}
|
|
108
|
+
}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
# Visual Studio code base Modeler of Salesforce CGCloud mobile app
|
|
2
|
+
|
|
3
|
+
This tool is used to customize the Salesforce CGCloud mobile app for client needs.
|
|
4
|
+
Use this README to document the details of your project and related information. The format and structure provided in this file are purely for reference, feel free to modify as needed.
|
|
5
|
+
|
|
6
|
+
## Description
|
|
7
|
+
|
|
8
|
+
TODO: An in-depth paragraph about your project and overview of use.
|
|
9
|
+
|
|
10
|
+
## Getting Started
|
|
11
|
+
|
|
12
|
+
### Dependencies
|
|
13
|
+
|
|
14
|
+
* Node
|
|
15
|
+
* Visual Studio code
|
|
16
|
+
* Python
|
|
17
|
+
* Salesforce DX
|
|
18
|
+
|
|
19
|
+
### Installing
|
|
20
|
+
|
|
21
|
+
* How/where to download your program
|
|
22
|
+
* Any modifications needed to be made to files/folders
|
|
23
|
+
|
|
24
|
+
### Executing program
|
|
25
|
+
|
|
26
|
+
* How to run the program
|
|
27
|
+
* Step-by-step bullets
|
|
28
|
+
```
|
|
29
|
+
see [@document](https://docs.google.com/document/d/17NSPTXFnglzkDhOixF5qUaRwRiuY2woeT3DmM6coxC0/edit#heading=h.s9auy9z21lwm)
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Folder structure explanation
|
|
33
|
+
|
|
34
|
+
### appl
|
|
35
|
+
|
|
36
|
+
* contains the build results (build folder), downloaded data during test (data folder) and a config section for the simulation of the app (config folder)
|
|
37
|
+
|
|
38
|
+
### src
|
|
39
|
+
|
|
40
|
+
* contains the source code and contracts of your salesforce mobile app
|
|
41
|
+
|
|
42
|
+
### templates
|
|
43
|
+
|
|
44
|
+
* snippets for new contracts to improve customizer efficiency
|
|
45
|
+
|
|
46
|
+
### test
|
|
47
|
+
|
|
48
|
+
* location for your unit test of the corresponding source section
|
|
49
|
+
|
|
50
|
+
## Help
|
|
51
|
+
|
|
52
|
+
Any advise for common problems or issues.
|
|
53
|
+
```
|
|
54
|
+
command to run if program contains helper info
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## Authors
|
|
58
|
+
|
|
59
|
+
Contributors names and contact info
|
|
60
|
+
|
|
61
|
+
ex. [@Salesforce](https://salesforce.com)
|
|
62
|
+
|
|
63
|
+
## Version History
|
|
64
|
+
|
|
65
|
+
* 1.0
|
|
66
|
+
* Basic version
|
|
67
|
+
* 0.1
|
|
68
|
+
* Initial Release
|
|
69
|
+
|
|
70
|
+
## License
|
|
71
|
+
|
|
72
|
+
TODO: This project is licensed under the [NAME HERE] License - see the LICENSE.md file for details
|
|
73
|
+
|
|
74
|
+
## Acknowledgments
|
|
75
|
+
|
|
76
|
+
Inspiration, code snippets, etc.
|
|
77
|
+
* [TODO]
|