├── .gitignore ├── .reuse └── dep5 ├── LICENSE ├── LICENSES └── Apache-2.0.txt ├── README.md ├── card ├── .editorconfig ├── .eslintrc ├── .gitignore ├── README.md ├── package.json ├── scripts │ └── build.js ├── src │ ├── .card │ │ └── card.project │ ├── configuration │ │ └── configuration.js │ ├── ext │ │ └── extension.js │ ├── i18n │ │ ├── i18n.properties │ │ └── i18n_en.properties │ ├── manifest.json │ └── test │ │ └── manual │ │ └── index.html └── ui5.yaml ├── content-package ├── .gitignore ├── README.md ├── content.json ├── i18n │ ├── i18n.properties │ └── i18n_en.properties ├── local │ ├── build.js │ ├── pull.js │ └── validate.js ├── manifest.json ├── package.json └── scripts │ ├── build.js │ ├── pull.js │ └── validate.js ├── homepage ├── README.md ├── package.json ├── scripts │ └── build.js └── src │ ├── homepage.zip │ ├── i18n │ ├── i18n.properties │ ├── i18n_en.properties │ ├── i18n_en_GB.properties │ └── i18n_en_US.properties │ └── manifest.json ├── index.js ├── journey ├── card │ ├── .editorconfig │ ├── .eslintrc │ ├── .gitignore │ ├── package.json │ ├── scripts │ │ └── build.js │ ├── src │ │ ├── .card │ │ │ └── card.project │ │ ├── configuration │ │ │ └── configuration.js │ │ ├── ext │ │ │ └── extension.js │ │ ├── i18n │ │ │ ├── i18n.properties │ │ │ └── i18n_en.properties │ │ ├── manifest.json │ │ └── test │ │ │ └── manual │ │ │ └── index.html │ └── ui5.yaml └── workflow │ ├── .gitignore │ ├── package.json │ ├── scripts │ └── build.js │ └── src │ ├── i18n │ ├── i18n.properties │ └── i18n_en.properties │ ├── manifest.json │ ├── mta.yaml │ └── workflow │ ├── forms │ ├── ApproveFirst.form │ ├── ApproveSecond.form │ └── StartApproval.form │ ├── sample-data │ └── SimpleApproval.json │ └── workflows │ └── SimpleApproval.workflow ├── package.json ├── tools ├── .DS_Store ├── .gitignore ├── README.md ├── card │ └── build.js ├── content-package │ ├── artifactBuild.js │ ├── build.js │ ├── pull.js │ └── validate.js ├── homepage │ └── build.js ├── index.js ├── package.json ├── resources │ ├── card-package.json.template │ ├── card-ui5.yaml.template │ └── package.json.template ├── test │ ├── card.js │ ├── validatePackage.js │ └── zip.js ├── util │ ├── util.js │ └── validation.js ├── workflow │ └── build.js ├── workspace-template │ └── build.js └── workspace │ └── build.js ├── workflow ├── .gitignore ├── README.md ├── package.json ├── scripts │ └── build.js └── src │ ├── i18n │ ├── i18n.properties │ └── i18n_en.properties │ ├── manifest.json │ ├── mta.yaml │ └── workflow │ ├── forms │ ├── ApproveFirst.form │ ├── ApproveSecond.form │ └── StartApproval.form │ ├── sample-data │ └── SimpleApproval.json │ └── workflows │ └── SimpleApproval.workflow ├── workspace-template ├── .gitignore ├── README.md ├── package.json ├── scripts │ └── build.js └── src │ ├── i18n │ ├── i18n.properties │ └── i18n_en.properties │ ├── manifest.json │ └── workspace-template.zip └── workspace ├── README.md ├── package.json ├── scripts └── build.js └── src ├── i18n ├── i18n.properties ├── i18n_en.properties ├── i18n_en_GB.properties └── i18n_en_US.properties ├── manifest.json └── workspace.zip /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/README.md -------------------------------------------------------------------------------- /card/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/card/.editorconfig -------------------------------------------------------------------------------- /card/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/card/.eslintrc -------------------------------------------------------------------------------- /card/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/card/.gitignore -------------------------------------------------------------------------------- /card/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/card/README.md -------------------------------------------------------------------------------- /card/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/card/package.json -------------------------------------------------------------------------------- /card/scripts/build.js: -------------------------------------------------------------------------------- 1 | require("sap-workzone-cpkg-tools").card.build(__dirname); 2 | -------------------------------------------------------------------------------- /card/src/.card/card.project: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /card/src/configuration/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/card/src/configuration/configuration.js -------------------------------------------------------------------------------- /card/src/ext/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/card/src/ext/extension.js -------------------------------------------------------------------------------- /card/src/i18n/i18n.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/card/src/i18n/i18n.properties -------------------------------------------------------------------------------- /card/src/i18n/i18n_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/card/src/i18n/i18n_en.properties -------------------------------------------------------------------------------- /card/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/card/src/manifest.json -------------------------------------------------------------------------------- /card/src/test/manual/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/card/src/test/manual/index.html -------------------------------------------------------------------------------- /card/ui5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/card/ui5.yaml -------------------------------------------------------------------------------- /content-package/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/content-package/.gitignore -------------------------------------------------------------------------------- /content-package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/content-package/README.md -------------------------------------------------------------------------------- /content-package/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/content-package/content.json -------------------------------------------------------------------------------- /content-package/i18n/i18n.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/content-package/i18n/i18n.properties -------------------------------------------------------------------------------- /content-package/i18n/i18n_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/content-package/i18n/i18n_en.properties -------------------------------------------------------------------------------- /content-package/local/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/content-package/local/build.js -------------------------------------------------------------------------------- /content-package/local/pull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/content-package/local/pull.js -------------------------------------------------------------------------------- /content-package/local/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/content-package/local/validate.js -------------------------------------------------------------------------------- /content-package/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/content-package/manifest.json -------------------------------------------------------------------------------- /content-package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/content-package/package.json -------------------------------------------------------------------------------- /content-package/scripts/build.js: -------------------------------------------------------------------------------- 1 | require("sap-workzone-cpkg-tools").contentpackage.build(__dirname); -------------------------------------------------------------------------------- /content-package/scripts/pull.js: -------------------------------------------------------------------------------- 1 | require("sap-workzone-cpkg-tools").contentpackage.pull(__dirname); -------------------------------------------------------------------------------- /content-package/scripts/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/content-package/scripts/validate.js -------------------------------------------------------------------------------- /homepage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/homepage/README.md -------------------------------------------------------------------------------- /homepage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/homepage/package.json -------------------------------------------------------------------------------- /homepage/scripts/build.js: -------------------------------------------------------------------------------- 1 | require("sap-workzone-cpkg-tools")["homepage"].build(__dirname); -------------------------------------------------------------------------------- /homepage/src/homepage.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/homepage/src/homepage.zip -------------------------------------------------------------------------------- /homepage/src/i18n/i18n.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/homepage/src/i18n/i18n.properties -------------------------------------------------------------------------------- /homepage/src/i18n/i18n_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/homepage/src/i18n/i18n_en.properties -------------------------------------------------------------------------------- /homepage/src/i18n/i18n_en_GB.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/homepage/src/i18n/i18n_en_GB.properties -------------------------------------------------------------------------------- /homepage/src/i18n/i18n_en_US.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/homepage/src/i18n/i18n_en_US.properties -------------------------------------------------------------------------------- /homepage/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/homepage/src/manifest.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./tools/index"); -------------------------------------------------------------------------------- /journey/card/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/journey/card/.editorconfig -------------------------------------------------------------------------------- /journey/card/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/journey/card/.eslintrc -------------------------------------------------------------------------------- /journey/card/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/journey/card/.gitignore -------------------------------------------------------------------------------- /journey/card/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/journey/card/package.json -------------------------------------------------------------------------------- /journey/card/scripts/build.js: -------------------------------------------------------------------------------- 1 | require("sap-workzone-cpkg-tools").card.build(__dirname); -------------------------------------------------------------------------------- /journey/card/src/.card/card.project: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /journey/card/src/configuration/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/journey/card/src/configuration/configuration.js -------------------------------------------------------------------------------- /journey/card/src/ext/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/journey/card/src/ext/extension.js -------------------------------------------------------------------------------- /journey/card/src/i18n/i18n.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/journey/card/src/i18n/i18n.properties -------------------------------------------------------------------------------- /journey/card/src/i18n/i18n_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/journey/card/src/i18n/i18n_en.properties -------------------------------------------------------------------------------- /journey/card/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/journey/card/src/manifest.json -------------------------------------------------------------------------------- /journey/card/src/test/manual/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/journey/card/src/test/manual/index.html -------------------------------------------------------------------------------- /journey/card/ui5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/journey/card/ui5.yaml -------------------------------------------------------------------------------- /journey/workflow/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | .DS_Store 4 | *.zip 5 | *.mtar 6 | dist -------------------------------------------------------------------------------- /journey/workflow/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/journey/workflow/package.json -------------------------------------------------------------------------------- /journey/workflow/scripts/build.js: -------------------------------------------------------------------------------- 1 | require("sap-workzone-cpkg-tools").workflow.build(__dirname); -------------------------------------------------------------------------------- /journey/workflow/src/i18n/i18n.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/journey/workflow/src/i18n/i18n.properties -------------------------------------------------------------------------------- /journey/workflow/src/i18n/i18n_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/journey/workflow/src/i18n/i18n_en.properties -------------------------------------------------------------------------------- /journey/workflow/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/journey/workflow/src/manifest.json -------------------------------------------------------------------------------- /journey/workflow/src/mta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/journey/workflow/src/mta.yaml -------------------------------------------------------------------------------- /journey/workflow/src/workflow/forms/ApproveFirst.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/journey/workflow/src/workflow/forms/ApproveFirst.form -------------------------------------------------------------------------------- /journey/workflow/src/workflow/forms/ApproveSecond.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/journey/workflow/src/workflow/forms/ApproveSecond.form -------------------------------------------------------------------------------- /journey/workflow/src/workflow/forms/StartApproval.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/journey/workflow/src/workflow/forms/StartApproval.form -------------------------------------------------------------------------------- /journey/workflow/src/workflow/sample-data/SimpleApproval.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/journey/workflow/src/workflow/sample-data/SimpleApproval.json -------------------------------------------------------------------------------- /journey/workflow/src/workflow/workflows/SimpleApproval.workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/journey/workflow/src/workflow/workflows/SimpleApproval.workflow -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/package.json -------------------------------------------------------------------------------- /tools/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/tools/.DS_Store -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/card/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/tools/card/build.js -------------------------------------------------------------------------------- /tools/content-package/artifactBuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/tools/content-package/artifactBuild.js -------------------------------------------------------------------------------- /tools/content-package/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/tools/content-package/build.js -------------------------------------------------------------------------------- /tools/content-package/pull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/tools/content-package/pull.js -------------------------------------------------------------------------------- /tools/content-package/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/tools/content-package/validate.js -------------------------------------------------------------------------------- /tools/homepage/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/tools/homepage/build.js -------------------------------------------------------------------------------- /tools/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/tools/index.js -------------------------------------------------------------------------------- /tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/tools/package.json -------------------------------------------------------------------------------- /tools/resources/card-package.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/tools/resources/card-package.json.template -------------------------------------------------------------------------------- /tools/resources/card-ui5.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/tools/resources/card-ui5.yaml.template -------------------------------------------------------------------------------- /tools/resources/package.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/tools/resources/package.json.template -------------------------------------------------------------------------------- /tools/test/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/tools/test/card.js -------------------------------------------------------------------------------- /tools/test/validatePackage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/tools/test/validatePackage.js -------------------------------------------------------------------------------- /tools/test/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/tools/test/zip.js -------------------------------------------------------------------------------- /tools/util/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/tools/util/util.js -------------------------------------------------------------------------------- /tools/util/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/tools/util/validation.js -------------------------------------------------------------------------------- /tools/workflow/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/tools/workflow/build.js -------------------------------------------------------------------------------- /tools/workspace-template/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/tools/workspace-template/build.js -------------------------------------------------------------------------------- /tools/workspace/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/tools/workspace/build.js -------------------------------------------------------------------------------- /workflow/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | .DS_Store 4 | *.zip 5 | *.mtar 6 | dist -------------------------------------------------------------------------------- /workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workflow/README.md -------------------------------------------------------------------------------- /workflow/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workflow/package.json -------------------------------------------------------------------------------- /workflow/scripts/build.js: -------------------------------------------------------------------------------- 1 | require("sap-workzone-cpkg-tools").workflow.build(__dirname); -------------------------------------------------------------------------------- /workflow/src/i18n/i18n.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workflow/src/i18n/i18n.properties -------------------------------------------------------------------------------- /workflow/src/i18n/i18n_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workflow/src/i18n/i18n_en.properties -------------------------------------------------------------------------------- /workflow/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workflow/src/manifest.json -------------------------------------------------------------------------------- /workflow/src/mta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workflow/src/mta.yaml -------------------------------------------------------------------------------- /workflow/src/workflow/forms/ApproveFirst.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workflow/src/workflow/forms/ApproveFirst.form -------------------------------------------------------------------------------- /workflow/src/workflow/forms/ApproveSecond.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workflow/src/workflow/forms/ApproveSecond.form -------------------------------------------------------------------------------- /workflow/src/workflow/forms/StartApproval.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workflow/src/workflow/forms/StartApproval.form -------------------------------------------------------------------------------- /workflow/src/workflow/sample-data/SimpleApproval.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workflow/src/workflow/sample-data/SimpleApproval.json -------------------------------------------------------------------------------- /workflow/src/workflow/workflows/SimpleApproval.workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workflow/src/workflow/workflows/SimpleApproval.workflow -------------------------------------------------------------------------------- /workspace-template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workspace-template/.gitignore -------------------------------------------------------------------------------- /workspace-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workspace-template/README.md -------------------------------------------------------------------------------- /workspace-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workspace-template/package.json -------------------------------------------------------------------------------- /workspace-template/scripts/build.js: -------------------------------------------------------------------------------- 1 | require("sap-workzone-cpkg-tools")["workspace-template"].build(__dirname); -------------------------------------------------------------------------------- /workspace-template/src/i18n/i18n.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workspace-template/src/i18n/i18n.properties -------------------------------------------------------------------------------- /workspace-template/src/i18n/i18n_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workspace-template/src/i18n/i18n_en.properties -------------------------------------------------------------------------------- /workspace-template/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workspace-template/src/manifest.json -------------------------------------------------------------------------------- /workspace-template/src/workspace-template.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workspace-template/src/workspace-template.zip -------------------------------------------------------------------------------- /workspace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workspace/README.md -------------------------------------------------------------------------------- /workspace/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workspace/package.json -------------------------------------------------------------------------------- /workspace/scripts/build.js: -------------------------------------------------------------------------------- 1 | require("sap-workzone-cpkg-tools")["workspace"].build(__dirname); -------------------------------------------------------------------------------- /workspace/src/i18n/i18n.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workspace/src/i18n/i18n.properties -------------------------------------------------------------------------------- /workspace/src/i18n/i18n_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workspace/src/i18n/i18n_en.properties -------------------------------------------------------------------------------- /workspace/src/i18n/i18n_en_GB.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workspace/src/i18n/i18n_en_GB.properties -------------------------------------------------------------------------------- /workspace/src/i18n/i18n_en_US.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workspace/src/i18n/i18n_en_US.properties -------------------------------------------------------------------------------- /workspace/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workspace/src/manifest.json -------------------------------------------------------------------------------- /workspace/src/workspace.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SAP-samples/workzone-content-package-templates/HEAD/workspace/src/workspace.zip --------------------------------------------------------------------------------