├── .gitignore ├── .nvmrc ├── .vscode └── settings.json ├── README.md ├── apis ├── abap-deploy │ ├── CHANGELOG.md │ ├── LICENSE.txt │ └── README.md ├── adp-abap │ ├── LICENSE.txt │ └── README.md ├── adp-cf │ ├── LICENSE.txt │ └── README.md ├── adp-cli │ ├── LICENSE │ ├── LICENSE.txt │ └── README.md ├── adp-common │ ├── LICENSE.txt │ └── README.md ├── adp-ve-bas-ext │ ├── LICENSE │ ├── LICENSE.txt │ └── README.md ├── ams-dev │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── ams │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── doc │ │ ├── API │ │ │ ├── AttributeName.md │ │ │ ├── Attributes.md │ │ │ ├── Call.md │ │ │ ├── Middleware.md │ │ │ └── PolicyDecisionPoint.md │ │ ├── CapIntegration.md │ │ ├── DeveloperTools.md │ │ ├── Logging │ │ │ ├── AuditLog.md │ │ │ └── LogPdp.md │ │ ├── Maintenance.md │ │ ├── V1_V2_Migration_Guide.md │ │ ├── V2_V3_Migration_Guide.md │ │ └── doc │ │ │ ├── API │ │ │ ├── AttributeName.md │ │ │ ├── Attributes.md │ │ │ ├── Call.md │ │ │ ├── Middleware.md │ │ │ └── PolicyDecisionPoint.md │ │ │ ├── CapIntegration.md │ │ │ ├── DeveloperTools.md │ │ │ ├── Logging │ │ │ ├── AuditLog.md │ │ │ └── LogPdp.md │ │ │ ├── Maintenance.md │ │ │ ├── V1_V2_Migration_Guide.md │ │ │ └── V2_V3_Migration_Guide.md │ ├── lib │ │ └── cap │ │ │ └── README.md │ └── src │ │ └── xcode │ │ └── dcn-engine │ │ ├── README.md │ │ └── doc │ │ └── readme.md ├── apihub-enterprise-service-provider │ ├── LICENSE.txt │ └── README.md ├── apihub-service-provider │ ├── LICENSE.txt │ └── README.md ├── appfront-cli │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── approuter │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ └── doc │ │ ├── doc │ │ ├── app-router-diagram.png │ │ ├── extending.md │ │ ├── sessionManagement.md │ │ └── sizingGuide.md │ │ ├── extending.md │ │ ├── sessionManagement.md │ │ └── sizingGuide.md ├── artifact-management-base-types │ ├── LICENSE │ └── README.md ├── artifact-management-base │ ├── LICENSE │ ├── README.md │ └── dist │ │ └── types │ │ └── README.md ├── artifact-management-fioriplugin-types │ ├── LICENSE │ └── README.md ├── artifact-management-fioriplugin │ ├── LICENSE │ ├── README.md │ └── dist │ │ └── types │ │ └── README.md ├── artifact-management-hanaplugin │ ├── LICENSE │ └── README.md ├── artifact-management-mdkplugin-types │ ├── LICENSE │ └── README.md ├── artifact-management-mdkplugin │ ├── LICENSE │ ├── README.md │ └── dist │ │ └── types │ │ └── README.md ├── artifact-management-types │ ├── LICENSE │ └── README.md ├── artifact-management │ ├── LICENSE │ ├── README.md │ └── dist │ │ └── types │ │ └── README.md ├── asp-middleware │ ├── LICENSE.txt │ └── README.md ├── async-xsjs │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── differences.md │ └── npm-shrinkwrap.json ├── audit-logging │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── bas-sdk │ └── README.md ├── cds-adapter-ina-js │ └── LICENSE ├── cds-analytics │ └── LICENSE ├── cds-attic │ ├── CHANGELOG.md │ └── README.md ├── cds-common-content │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── cds-compiler │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── doc │ │ ├── API.md │ │ ├── CHANGELOG_ARCHIVE.md │ │ ├── CHANGELOG_BETA.md │ │ ├── CHANGELOG_DEPRECATED.md │ │ ├── DeprecatedOptions_v2.md │ │ ├── IncompatibleChanges_v5.md │ │ ├── IncompatibleChanges_v6.md │ │ ├── NameResolution.md │ │ ├── Versioning.md │ │ └── doc │ │ │ ├── API.md │ │ │ ├── CHANGELOG_ARCHIVE.md │ │ │ ├── CHANGELOG_BETA.md │ │ │ ├── CHANGELOG_DEPRECATED.md │ │ │ ├── DeprecatedOptions_v2.md │ │ │ ├── IncompatibleChanges_v5.md │ │ │ ├── IncompatibleChanges_v6.md │ │ │ ├── NameResolution.md │ │ │ └── Versioning.md │ └── share │ │ └── messages │ │ ├── README.md │ │ ├── anno-duplicate-unrelated-layer.md │ │ ├── anno-missing-rewrite.md │ │ ├── check-proper-type-of.md │ │ ├── check-proper-type.md │ │ ├── def-duplicate-autoexposed.md │ │ ├── def-missing-type.md │ │ ├── def-upcoming-virtual-change.md │ │ ├── duplicate-autoexposed.md │ │ ├── extend-repeated-intralayer.md │ │ ├── extend-unrelated-layer.md │ │ ├── file-unexpected-case-mismatch.md │ │ ├── redirected-to-ambiguous.md │ │ ├── redirected-to-complex.md │ │ ├── redirected-to-unrelated.md │ │ ├── rewrite-not-supported.md │ │ ├── rewrite-undefined-key.md │ │ ├── syntax-expecting-unsigned-int.md │ │ ├── type-missing-enum-value.md │ │ ├── type-unexpected-foreign-keys.md │ │ ├── type-unexpected-on-condition.md │ │ └── wildcard-excluding-one.md ├── cds-dk │ ├── CHANGELOG.md │ ├── LICENSE │ ├── bin │ │ └── help │ │ │ ├── export.md │ │ │ ├── import.md │ │ │ └── minify.md │ ├── lib │ │ └── init │ │ │ └── template │ │ │ ├── helm │ │ │ ├── subchart │ │ │ │ └── values.md │ │ │ └── subcharts │ │ │ │ ├── content-deployment │ │ │ │ ├── templating.md │ │ │ │ └── values.md │ │ │ │ ├── service-instance │ │ │ │ ├── templating.md │ │ │ │ └── values.md │ │ │ │ └── web-application │ │ │ │ ├── templating.md │ │ │ │ └── values.md │ │ │ └── nodejs │ │ │ └── files │ │ │ └── README.md │ ├── npm-shrinkwrap.json │ └── readme.md ├── cds-fiori │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── cds-foss │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── cds-hana │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── cds-lsp │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ └── doc │ │ ├── CDL.md │ │ ├── CONTRIBUTING.md │ │ ├── CQL.md │ │ ├── CSN.md │ │ ├── Formatting-Options.md │ │ ├── INSTALLATION.md │ │ ├── TYPES.md │ │ ├── annotationHandler.md │ │ ├── common.cds.md │ │ ├── common.md │ │ ├── doc │ │ ├── CDL.md │ │ ├── CONTRIBUTING.md │ │ ├── CQL.md │ │ ├── CSN.md │ │ ├── Formatting-Options.md │ │ ├── Formatting-Options.md.template │ │ ├── INSTALLATION.md │ │ ├── TYPES.md │ │ ├── annotationHandler.md │ │ ├── common.cds.md │ │ ├── common.md │ │ ├── grammar-changes.md │ │ └── settings.md │ │ ├── grammar-changes.md │ │ └── settings.md ├── cds-mtxs │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── cds-odata-v2-adapter-proxy │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── cds-oyster │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── cds-rfc │ ├── CHANGELOG.md │ ├── LICENSE │ └── readme.md ├── cds │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ └── libx │ │ ├── _runtime │ │ └── cds-services │ │ │ └── adapter │ │ │ └── odata-v4 │ │ │ └── okra │ │ │ └── odata-commons │ │ │ └── uri │ │ │ └── info.md │ │ ├── common │ │ └── readme.md │ │ ├── connect │ │ └── readme.md │ │ ├── fiori │ │ ├── draft │ │ │ └── readme.md │ │ └── readme.md │ │ ├── hana │ │ └── readme.md │ │ ├── msg │ │ └── readme.md │ │ ├── readme.md │ │ ├── rest │ │ └── readme.md │ │ └── sqlite │ │ └── readme.md ├── cf-tools-local │ ├── LICENSE.txt │ └── README.md ├── cf-tools │ ├── LICENSE │ └── README.md ├── cli-core │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── consume-services-types │ ├── LICENSE.txt │ └── README.md ├── consume-services │ ├── LICENSE.txt │ └── README.md ├── create-hana-database-artifact │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── csn-interop-renderer │ ├── LICENSE │ └── README.md ├── csn-interop-specification │ ├── LICENSE │ └── README.md ├── datasphere-cli │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── destination-instance-service-provider │ ├── LICENSE.txt │ └── README.md ├── dev-cap-tools │ ├── LICENSE │ └── README.md ├── di.code-validation.core │ └── README.md ├── di.code-validation.grunt │ ├── README.md │ └── npm-shrinkwrap.json ├── di.code-validation.js │ ├── LICENSE.txt │ └── README.md ├── di.code-validation.json │ └── LICENSE.txt ├── di.code-validation.xml │ ├── LICENSE.txt │ └── README.md ├── dwf-core │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── dwf-deploy │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ └── npm-shrinkwrap.json ├── dwf-dlm-backend │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ └── npm-shrinkwrap.json ├── dwf-dws-client │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ └── npm-shrinkwrap.json ├── dwf-generator │ └── npm-shrinkwrap.json ├── dwf-ndso-backend │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ └── npm-shrinkwrap.json ├── e2e-trace │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── eslint-config │ ├── LICENSE │ └── README.md ├── eslint-plugin-cds │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── eslint-plugin-ui5-jsdocs │ ├── LICENSE.txt │ ├── README.md │ └── docs │ │ └── rules │ │ ├── check-jsdoc-param-type.md │ │ ├── duplicate-jsdoc-params.md │ │ ├── no-jsdoc-param.md │ │ └── no-jsdoc.md ├── eslint-plugin-webide-feature │ ├── CHANGELOG.md │ ├── README.md │ └── docs │ │ ├── predefined-plugins.md │ │ └── rules │ │ ├── bundled-uris-valid.md │ │ ├── consistent-ids.md │ │ ├── feature-author-valid.md │ │ ├── feature-description-valid.md │ │ ├── feature-name-valid.md │ │ ├── feature-version-valid.md │ │ ├── homepage-url-valid.md │ │ ├── no-deprecated-fields.md │ │ ├── no-optional-features.md │ │ ├── no-private-apis.md │ │ ├── no-private-methods.md │ │ ├── no-unused-required-services.md │ │ ├── package-json-exists.md │ │ ├── plugin-name-valid.md │ │ ├── plugin-provides-valid.md │ │ ├── valid-json-files.md │ │ └── webide-dependencies-consistent.md ├── external-service-mashup │ ├── LICENSE │ └── README.md ├── faas │ ├── CHANGELOG.md │ └── README.md ├── fibers │ ├── ISSUE_TEMPLATE.md │ ├── LICENSE │ ├── README.md │ └── npm-shrinkwrap.json ├── fibrous │ ├── LICENSE.md │ └── README.md ├── fiori-json-services │ └── README.md ├── generator-adaptation-project │ ├── LICENSE.txt │ └── README.md ├── generator-add-hdb-module │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── generator-aicore │ ├── LICENSE.txt │ ├── README.md │ ├── generators │ │ └── app │ │ │ └── templates │ │ │ ├── app-creditclassification-h2o │ │ │ └── README.md │ │ │ ├── app-generic-basic │ │ │ └── README.md │ │ │ └── app-recommendation │ │ │ └── README.md │ └── src │ │ └── app │ │ └── templates │ │ ├── app-creditclassification-h2o │ │ └── README.md │ │ ├── app-generic-basic │ │ └── README.md │ │ └── app-recommendation │ │ └── README.md ├── generator-base-mta-module │ ├── LICENSE │ └── README.md ├── generator-cap-project │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── generator-cds │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ └── npm-shrinkwrap.json ├── generator-fiori │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ └── generators │ │ ├── fiori-elements-writer │ │ └── templates │ │ │ └── readme.md │ │ ├── fiori-generator-shared │ │ └── templates │ │ │ └── README.md │ │ └── project-generator │ │ └── templates │ │ └── README.md ├── generator-hdb-project │ ├── CHANGELOG.md │ └── LICENSE ├── generator-mdk │ ├── LICENSE │ └── README.md ├── graph-toolkit │ ├── LICENSE.txt │ └── README.md ├── grunt-sapui5-bestpractice-build │ ├── LICENSE.txt │ └── README.md ├── grunt-sapui5-bestpractice-test │ └── README.md ├── grunt-sapui5module-bestpractice-build │ ├── README.md │ └── npm-shrinkwrap.json ├── grunt-tests-webide-bestpractice │ ├── README.md │ └── npm-shrinkwrap.json ├── hana-client │ ├── CHANGELOG.md │ ├── README.md │ └── npm-shrinkwrap.json ├── hana-database-explorer │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── hana-eim-sditools-vscode │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── hana-performance-tools │ ├── .github │ │ └── ISSUE_TEMPLATE │ │ │ └── bug_report.md │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── doc │ │ └── doc │ │ │ ├── commentOpener.jpg │ │ │ ├── comment_imageview.jpg │ │ │ ├── comment_overview.jpg │ │ │ ├── comment_search.jpg │ │ │ ├── comment_updateIdentity.jpg │ │ │ ├── default_sql_view.jpg │ │ │ ├── deploy_pluginId.jpg │ │ │ ├── deploy_upload.jpg │ │ │ ├── newCommentIndication.jpg │ │ │ ├── newview_sql_view.jpg │ │ │ ├── vs_code_test_debug.jpg │ │ │ ├── vsc-ext-sa-capture.jpg │ │ │ └── vsc-ext-sa-capture1.jpg │ └── packages │ │ └── vscode │ │ ├── CHANGELOG.md │ │ └── README.md ├── hana-project-explorer │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── hana-sqlscript-lsp │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── hana-theme-vscode │ ├── LICENSE │ └── README.md ├── hana-tooling-feature-toggles │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ └── npm-shrinkwrap.json ├── hana-xs-tools │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── hdbext │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── migration.md │ └── npm-shrinkwrap.json ├── hdi-deploy │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── hdi-dynamic-deploy │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── hdi │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── hrtt-core-vscode │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── html5-app-deployer │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── html5-repo-mock │ ├── CHANGELOG.md │ ├── LICENSE.txt │ └── README.md ├── instance-manager │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── iq-client │ ├── CHANGELOG.md │ ├── README.md │ └── npm-shrinkwrap.json ├── jobs-client │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ └── npm-shrinkwrap.json ├── logger-for-bas-extensions │ ├── LICENSE │ └── README.md ├── logging │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ └── migration.md ├── low-code-event-handler │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── mdk-mcp-server │ ├── LICENSE │ ├── README.md │ └── res │ │ ├── schemas │ │ ├── 24.11 │ │ │ ├── Action │ │ │ │ ├── AICore │ │ │ │ │ └── ChatCompletions.schema.example.md │ │ │ │ ├── ApplicationUpdate.schema.example.md │ │ │ │ ├── BannerMessage.schema.example.md │ │ │ │ ├── ChangeUserPasscode.schema.example.md │ │ │ │ ├── CheckBarcodeScannerPrerequisite.schema.example.md │ │ │ │ ├── CheckRequiredFields.schema.example.md │ │ │ │ ├── ClosePage.schema.example.md │ │ │ │ ├── CrossAppNavigation.schema.example.md │ │ │ │ ├── Filter.schema.example.md │ │ │ │ ├── Logger │ │ │ │ │ ├── LogMessage.schema.example.md │ │ │ │ │ ├── SetLevel.schema.example.md │ │ │ │ │ ├── SetState.schema.example.md │ │ │ │ │ └── Upload.schema.example.md │ │ │ │ ├── Logout.schema.example.md │ │ │ │ ├── Message.schema.example.md │ │ │ │ ├── Navigation.schema.example.md │ │ │ │ ├── ODataService │ │ │ │ │ ├── CallFunction.schema.example.md │ │ │ │ │ ├── ChangeSet.schema.example.md │ │ │ │ │ ├── CreateEntity.schema.example.md │ │ │ │ │ ├── CreateMedia.schema.example.md │ │ │ │ │ ├── CreateRelatedEntity.schema.example.md │ │ │ │ │ ├── CreateRelatedMedia.schema.example.md │ │ │ │ │ ├── DeleteEntity.schema.example.md │ │ │ │ │ ├── DeleteMedia.schema.example.md │ │ │ │ │ ├── DownloadMedia.schema.example.md │ │ │ │ │ ├── DownloadStream.schema.example.md │ │ │ │ │ ├── DraftDiscard.schema.example.md │ │ │ │ │ ├── DraftEdit.schema.example.md │ │ │ │ │ ├── DraftSave.schema.example.md │ │ │ │ │ ├── Initialize.schema.example.md │ │ │ │ │ ├── Read.schema.example.md │ │ │ │ │ ├── UpdateEntity.schema.example.md │ │ │ │ │ ├── UploadMedia.schema.example.md │ │ │ │ │ └── UploadStream.schema.example.md │ │ │ │ ├── OfflineOData │ │ │ │ │ ├── CancelDownload.schema.example.md │ │ │ │ │ ├── CancelUpload.schema.example.md │ │ │ │ │ ├── Clear.schema.example.md │ │ │ │ │ ├── Close.schema.example.md │ │ │ │ │ ├── Download.schema.example.md │ │ │ │ │ ├── RemoveDefiningRequest.schema.example.md │ │ │ │ │ ├── UndoPendingChanges.schema.example.md │ │ │ │ │ └── Upload.schema.example.md │ │ │ │ ├── OpenBarcodeScanner.schema.example.md │ │ │ │ ├── OpenDocument.schema.example.md │ │ │ │ ├── PopoverMenu.schema.example.md │ │ │ │ ├── ProgressBanner.schema.example.md │ │ │ │ ├── PushNotificationRegister.schema.example.md │ │ │ │ ├── PushNotificationUnregister.schema.example.md │ │ │ │ ├── RestService │ │ │ │ │ └── SendRequest.schema.example.md │ │ │ │ ├── SetDebugSettings.schema.example.md │ │ │ │ ├── SetLanguage.schema.example.md │ │ │ │ ├── SetRegion.schema.example.md │ │ │ │ ├── SetTheme.schema.example.md │ │ │ │ ├── ToastMessage.schema.example.md │ │ │ │ └── VerifyPasscode.schema.example.md │ │ │ ├── App.schema.example.md │ │ │ ├── Images.md │ │ │ ├── Page.schema.example.md │ │ │ ├── Page │ │ │ │ ├── ActionBar.schema.example.md │ │ │ │ ├── Common │ │ │ │ │ ├── Extension.schema.example.md │ │ │ │ │ ├── FixedObjectCellCollection.schema.example.md │ │ │ │ │ └── ObjectCellEntitySetTarget.schema.example.md │ │ │ │ ├── FioriToolbar.schema.example.md │ │ │ │ ├── FlexibleColumnLayout │ │ │ │ │ └── FlexibleColumnLayout.schema.example.md │ │ │ │ ├── FormCell │ │ │ │ │ ├── Attachment.schema.example.md │ │ │ │ │ ├── Button.schema.example.md │ │ │ │ │ ├── DatePicker.schema.example.md │ │ │ │ │ ├── Document.schema.example.md │ │ │ │ │ ├── DurationPicker.schema.example.md │ │ │ │ │ ├── Extension.schema.example.md │ │ │ │ │ ├── Filter.schema.example.md │ │ │ │ │ ├── InlineSignatureCapture.schema.example.md │ │ │ │ │ ├── Label.schema.example.md │ │ │ │ │ ├── ListPicker.schema.example.md │ │ │ │ │ ├── MultiSorter.schema.example.md │ │ │ │ │ ├── Note.schema.example.md │ │ │ │ │ ├── Segmented.schema.example.md │ │ │ │ │ ├── SignatureCapture.schema.example.md │ │ │ │ │ ├── SimpleProperty.schema.example.md │ │ │ │ │ ├── Sorter.schema.example.md │ │ │ │ │ ├── Switch.schema.example.md │ │ │ │ │ └── Title.schema.example.md │ │ │ │ ├── NavigationDrawer │ │ │ │ │ └── SideDrawer.schema.example.md │ │ │ │ ├── SectionedTable │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── Footer.schema.example.md │ │ │ │ │ │ └── Header.schema.example.md │ │ │ │ │ ├── Container │ │ │ │ │ │ ├── AnalyticCardCollection.schema.example.md │ │ │ │ │ │ ├── ButtonTable.schema.example.md │ │ │ │ │ │ ├── Calendar.schema.example.md │ │ │ │ │ │ ├── CardCollection.schema.example.md │ │ │ │ │ │ ├── ChartContent.schema.example.md │ │ │ │ │ │ ├── ContactTable.schema.example.md │ │ │ │ │ │ ├── DataTable.schema.example.md │ │ │ │ │ │ ├── Extension.schema.example.md │ │ │ │ │ │ ├── FormCell.schema.example.md │ │ │ │ │ │ ├── GridTable.schema.example.md │ │ │ │ │ │ ├── Image.schema.example.md │ │ │ │ │ │ ├── ImageCollection.schema.example.md │ │ │ │ │ │ ├── KPIHeader.schema.example.md │ │ │ │ │ │ ├── KPISection.schema.example.md │ │ │ │ │ │ ├── KeyValue.schema.example.md │ │ │ │ │ │ ├── ObjectCardCollection.schema.example.md │ │ │ │ │ │ ├── ObjectCollection.schema.example.md │ │ │ │ │ │ ├── ObjectHeader.schema.example.md │ │ │ │ │ │ ├── ObjectTable.schema.example.md │ │ │ │ │ │ ├── ProfileHeader.schema.example.md │ │ │ │ │ │ ├── Timeline.schema.example.md │ │ │ │ │ │ └── TimelinePreview.schema.example.md │ │ │ │ │ ├── Control │ │ │ │ │ │ ├── Card │ │ │ │ │ │ │ └── Card.schema.example.md │ │ │ │ │ │ ├── ContactCellItem.schema.example.md │ │ │ │ │ │ ├── ObjectCard.schema.example.md │ │ │ │ │ │ ├── ObjectCell.schema.example.md │ │ │ │ │ │ ├── SimplePropertyCell.schema.example.md │ │ │ │ │ │ ├── TimelineCell.schema.example.md │ │ │ │ │ │ └── TimelinePreviewCell.schema.example.md │ │ │ │ │ └── SectionedTable.schema.example.md │ │ │ │ ├── TabControl │ │ │ │ │ ├── BottomNavigation │ │ │ │ │ │ └── BottomNavigation.schema.example.md │ │ │ │ │ └── Tabs │ │ │ │ │ │ └── Tabs.schema.example.md │ │ │ │ └── ToolBar.schema.example.md │ │ │ ├── README.md │ │ │ ├── Rule.md │ │ │ ├── Service.schema.example.md │ │ │ ├── Styles.less.md │ │ │ ├── Styles │ │ │ │ ├── ActionBarClass.style.md │ │ │ │ ├── AvatarClass.style.md │ │ │ │ ├── BackgroundClass.style.md │ │ │ │ ├── BannerMessageClass.style.md │ │ │ │ ├── ButtonClass.style.md │ │ │ │ ├── ButtonNewClass.style.md │ │ │ │ ├── CalendarClass.style.md │ │ │ │ ├── CalendarDatesClass.style.md │ │ │ │ ├── CaptionClass.style.md │ │ │ │ ├── FilterFeedbackBarClass.style.md │ │ │ │ ├── FilterFeedbackItemClass.style.md │ │ │ │ ├── FioriToolbarClass.style.md │ │ │ │ ├── HeaderFooterClass.style.md │ │ │ │ ├── ImageClass.style.md │ │ │ │ ├── ImageTextClass.style.md │ │ │ │ ├── LabelFormCellClass.style.md │ │ │ │ ├── MessageClass.style.md │ │ │ │ ├── ObjectHeaderTextClass.style.md │ │ │ │ ├── ProgressBannerClass.style.md │ │ │ │ ├── SignatureCaptureClass.style.md │ │ │ │ ├── SignatureCaptureUnderlineClass.style.md │ │ │ │ ├── SwitchClass.style.md │ │ │ │ ├── TabStripClass.style.md │ │ │ │ ├── TagItemClass.style.md │ │ │ │ ├── TextClass.style.md │ │ │ │ ├── TextPaintClass.style.md │ │ │ │ ├── TextPaintObjectCardClass.style.md │ │ │ │ ├── TintClass.style.md │ │ │ │ ├── TintColorClass.style.md │ │ │ │ ├── ValidationMessageClass.style.md │ │ │ │ ├── ValidationViewClass.style.md │ │ │ │ ├── ValueClass.style.md │ │ │ │ └── ValueInputClass.style.md │ │ │ └── definitions │ │ │ │ ├── ButtonLayout.schema.example.md │ │ │ │ ├── CSDLOptions.enum.md │ │ │ │ ├── CallFunctionTarget.schema.example.md │ │ │ │ ├── DefiningRequest.schema.example.md │ │ │ │ ├── DeviceId.md │ │ │ │ ├── EmptySection.schema.example.md │ │ │ │ ├── EntitySetTarget.schema.example.md │ │ │ │ ├── FixedCollection.schema.example.md │ │ │ │ ├── FixedCollectionSpecifier.schema.example.md │ │ │ │ ├── FormCellSectionLayout.schema.example.md │ │ │ │ ├── Image.schema.example.md │ │ │ │ ├── Layout.schema.example.md │ │ │ │ ├── MultiSorterFixedCollection.schema.example.md │ │ │ │ ├── ObjectCardCollectionLayout.schema.example.md │ │ │ │ ├── OverrideAction.schema.example.md │ │ │ │ ├── PullDown.schema.example.md │ │ │ │ ├── RestServiceTarget.schema.example.md │ │ │ │ ├── Rule.schema.example.md │ │ │ │ ├── Search.schema.example.md │ │ │ │ ├── Target.schema.example.md │ │ │ │ ├── TargetPath.schema.example.md │ │ │ │ └── Transition.schema.example.md │ │ ├── 24.7 │ │ │ ├── Action │ │ │ │ ├── ApplicationUpdate.schema.example.md │ │ │ │ ├── BannerMessage.schema.example.md │ │ │ │ ├── ChangeUserPasscode.schema.example.md │ │ │ │ ├── CheckBarcodeScannerPrerequisite.schema.example.md │ │ │ │ ├── CheckRequiredFields.schema.example.md │ │ │ │ ├── ClosePage.schema.example.md │ │ │ │ ├── CrossAppNavigation.schema.example.md │ │ │ │ ├── Filter.schema.example.md │ │ │ │ ├── Logger │ │ │ │ │ ├── LogMessage.schema.example.md │ │ │ │ │ ├── SetLevel.schema.example.md │ │ │ │ │ ├── SetState.schema.example.md │ │ │ │ │ └── Upload.schema.example.md │ │ │ │ ├── Logout.schema.example.md │ │ │ │ ├── Message.schema.example.md │ │ │ │ ├── Navigation.schema.example.md │ │ │ │ ├── ODataService │ │ │ │ │ ├── CallFunction.schema.example.md │ │ │ │ │ ├── ChangeSet.schema.example.md │ │ │ │ │ ├── Create.schema.example.md │ │ │ │ │ ├── CreateEntity.schema.example.md │ │ │ │ │ ├── CreateMedia.schema.example.md │ │ │ │ │ ├── CreateRelatedEntity.schema.example.md │ │ │ │ │ ├── CreateRelatedMedia.schema.example.md │ │ │ │ │ ├── DeleteEntity.schema.example.md │ │ │ │ │ ├── DeleteMedia.schema.example.md │ │ │ │ │ ├── DownloadMedia.schema.example.md │ │ │ │ │ ├── DownloadStream.schema.example.md │ │ │ │ │ ├── DraftDiscard.schema.example.md │ │ │ │ │ ├── DraftEdit.schema.example.md │ │ │ │ │ ├── DraftSave.schema.example.md │ │ │ │ │ ├── Initialize.schema.example.md │ │ │ │ │ ├── Open.schema.example.md │ │ │ │ │ ├── Read.schema.example.md │ │ │ │ │ ├── UpdateEntity.schema.example.md │ │ │ │ │ ├── UploadMedia.schema.example.md │ │ │ │ │ └── UploadStream.schema.example.md │ │ │ │ ├── OfflineOData │ │ │ │ │ ├── CancelDownload.schema.example.md │ │ │ │ │ ├── CancelUpload.schema.example.md │ │ │ │ │ ├── Clear.schema.example.md │ │ │ │ │ ├── Close.schema.example.md │ │ │ │ │ ├── Download.schema.example.md │ │ │ │ │ ├── Initialize.schema.example.md │ │ │ │ │ ├── RemoveDefiningRequest.schema.example.md │ │ │ │ │ ├── UndoPendingChanges.schema.example.md │ │ │ │ │ └── Upload.schema.example.md │ │ │ │ ├── OpenBarcodeScanner.schema.example.md │ │ │ │ ├── OpenDocument.schema.example.md │ │ │ │ ├── PopoverMenu.schema.example.md │ │ │ │ ├── ProgressBanner.schema.example.md │ │ │ │ ├── PushNotificationRegister.schema.example.md │ │ │ │ ├── PushNotificationUnregister.schema.example.md │ │ │ │ ├── RestService │ │ │ │ │ └── SendRequest.schema.example.md │ │ │ │ ├── SetDebugSettings.schema.example.md │ │ │ │ ├── SetLanguage.schema.example.md │ │ │ │ ├── SetRegion.schema.example.md │ │ │ │ ├── SetTheme.schema.example.md │ │ │ │ ├── ToastMessage.schema.example.md │ │ │ │ └── VerifyPasscode.schema.example.md │ │ │ ├── App.schema.example.md │ │ │ ├── Images.md │ │ │ ├── Page.schema.example.md │ │ │ ├── Page │ │ │ │ ├── ActionBar.schema.example.md │ │ │ │ ├── Common │ │ │ │ │ ├── Extension.schema.example.md │ │ │ │ │ ├── FixedObjectCellCollection.schema.example.md │ │ │ │ │ └── ObjectCellEntitySetTarget.schema.example.md │ │ │ │ ├── FioriToolbar.schema.example.md │ │ │ │ ├── FlexibleColumnLayout │ │ │ │ │ └── FlexibleColumnLayout.schema.example.md │ │ │ │ ├── FormCell │ │ │ │ │ ├── Attachment.schema.example.md │ │ │ │ │ ├── Button.schema.example.md │ │ │ │ │ ├── DatePicker.schema.example.md │ │ │ │ │ ├── Document.schema.example.md │ │ │ │ │ ├── DurationPicker.schema.example.md │ │ │ │ │ ├── Extension.schema.example.md │ │ │ │ │ ├── Filter.schema.example.md │ │ │ │ │ ├── InlineSignatureCapture.schema.example.md │ │ │ │ │ ├── ListPicker.schema.example.md │ │ │ │ │ ├── Note.schema.example.md │ │ │ │ │ ├── Segmented.schema.example.md │ │ │ │ │ ├── SignatureCapture.schema.example.md │ │ │ │ │ ├── SimpleProperty.schema.example.md │ │ │ │ │ ├── Sorter.schema.example.md │ │ │ │ │ ├── Switch.schema.example.md │ │ │ │ │ └── Title.schema.example.md │ │ │ │ ├── NavigationDrawer │ │ │ │ │ └── SideDrawer.schema.example.md │ │ │ │ ├── SectionedTable │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── Footer.schema.example.md │ │ │ │ │ │ └── Header.schema.example.md │ │ │ │ │ ├── Container │ │ │ │ │ │ ├── AnalyticCardCollection.schema.example.md │ │ │ │ │ │ ├── ButtonTable.schema.example.md │ │ │ │ │ │ ├── Calendar.schema.example.md │ │ │ │ │ │ ├── CardCollection.schema.example.md │ │ │ │ │ │ ├── ChartContent.schema.example.md │ │ │ │ │ │ ├── ContactTable.schema.example.md │ │ │ │ │ │ ├── DataTable.schema.example.md │ │ │ │ │ │ ├── Extension.schema.example.md │ │ │ │ │ │ ├── FormCell.schema.example.md │ │ │ │ │ │ ├── GridTable.schema.example.md │ │ │ │ │ │ ├── Image.schema.example.md │ │ │ │ │ │ ├── ImageCollection.schema.example.md │ │ │ │ │ │ ├── KPIHeader.schema.example.md │ │ │ │ │ │ ├── KPISection.schema.example.md │ │ │ │ │ │ ├── KeyValue.schema.example.md │ │ │ │ │ │ ├── ObjectCardCollection.schema.example.md │ │ │ │ │ │ ├── ObjectCollection.schema.example.md │ │ │ │ │ │ ├── ObjectHeader.schema.example.md │ │ │ │ │ │ ├── ObjectTable.schema.example.md │ │ │ │ │ │ ├── ProfileHeader.schema.example.md │ │ │ │ │ │ ├── Timeline.schema.example.md │ │ │ │ │ │ └── TimelinePreview.schema.example.md │ │ │ │ │ ├── Control │ │ │ │ │ │ ├── Card │ │ │ │ │ │ │ └── Card.schema.example.md │ │ │ │ │ │ ├── ContactCellItem.schema.example.md │ │ │ │ │ │ ├── ObjectCard.schema.example.md │ │ │ │ │ │ ├── ObjectCell.schema.example.md │ │ │ │ │ │ ├── SimplePropertyCell.schema.example.md │ │ │ │ │ │ ├── TimelineCell.schema.example.md │ │ │ │ │ │ └── TimelinePreviewCell.schema.example.md │ │ │ │ │ └── SectionedTable.schema.example.md │ │ │ │ ├── TabControl │ │ │ │ │ ├── BottomNavigation │ │ │ │ │ │ └── BottomNavigation.schema.example.md │ │ │ │ │ └── Tabs │ │ │ │ │ │ └── Tabs.schema.example.md │ │ │ │ └── ToolBar.schema.example.md │ │ │ ├── README.md │ │ │ ├── Rule.md │ │ │ ├── Service.schema.example.md │ │ │ ├── Styles.less.md │ │ │ ├── Styles │ │ │ │ ├── AvatarClass.style.md │ │ │ │ ├── BackgroundClass.style.md │ │ │ │ ├── BannerMessageClass.style.md │ │ │ │ ├── ButtonClass.style.md │ │ │ │ ├── ButtonNewClass.style.md │ │ │ │ ├── CalendarClass.style.md │ │ │ │ ├── CalendarDatesClass.style.md │ │ │ │ ├── CaptionClass.style.md │ │ │ │ ├── FilterFeedbackBarClass.style.md │ │ │ │ ├── FilterFeedbackItemClass.style.md │ │ │ │ ├── FioriToolbarClass.style.md │ │ │ │ ├── HeaderFooterClass.style.md │ │ │ │ ├── ImageClass.style.md │ │ │ │ ├── ImageTextClass.style.md │ │ │ │ ├── ObjectHeaderTextClass.style.md │ │ │ │ ├── ProgressBannerClass.style.md │ │ │ │ ├── SignatureCaptureClass.style.md │ │ │ │ ├── SignatureCaptureUnderlineClass.style.md │ │ │ │ ├── SwitchClass.style.md │ │ │ │ ├── TabStripClass.style.md │ │ │ │ ├── TagItemClass.style.md │ │ │ │ ├── TextClass.style.md │ │ │ │ ├── TextPaintClass.style.md │ │ │ │ ├── TintColorClass.style.md │ │ │ │ ├── ValueClass.style.md │ │ │ │ └── ValueInputClass.style.md │ │ │ └── definitions │ │ │ │ ├── ButtonLayout.schema.example.md │ │ │ │ ├── CSDLOptions.enum.md │ │ │ │ ├── CallFunctionTarget.schema.example.md │ │ │ │ ├── DefiningRequest.schema.example.md │ │ │ │ ├── DeviceId.md │ │ │ │ ├── EmptySection.schema.example.md │ │ │ │ ├── EntitySetTarget.schema.example.md │ │ │ │ ├── FixedCollection.schema.example.md │ │ │ │ ├── FixedCollectionSpecifier.schema.example.md │ │ │ │ ├── FormCellSectionLayout.schema.example.md │ │ │ │ ├── Image.schema.example.md │ │ │ │ ├── Layout.schema.example.md │ │ │ │ ├── ObjectCardCollectionLayout.schema.example.md │ │ │ │ ├── OverrideAction.schema.example.md │ │ │ │ ├── PullDown.schema.example.md │ │ │ │ ├── RestServiceTarget.schema.example.md │ │ │ │ ├── Rule.schema.example.md │ │ │ │ ├── Search.schema.example.md │ │ │ │ ├── Target.schema.example.md │ │ │ │ ├── TargetPath.schema.example.md │ │ │ │ └── Transition.schema.example.md │ │ ├── 25.6 │ │ │ ├── Action │ │ │ │ ├── AICore │ │ │ │ │ ├── ChatCompletions.schema.example.md │ │ │ │ │ └── GenerateContent.schema.example.md │ │ │ │ ├── ApplicationUpdate.schema.example.md │ │ │ │ ├── BannerMessage.schema.example.md │ │ │ │ ├── ChangeUserPasscode.schema.example.md │ │ │ │ ├── CheckBarcodeScannerPrerequisite.schema.example.md │ │ │ │ ├── CheckRequiredFields.schema.example.md │ │ │ │ ├── ClosePage.schema.example.md │ │ │ │ ├── CrossAppNavigation.schema.example.md │ │ │ │ ├── Filter.schema.example.md │ │ │ │ ├── Logger │ │ │ │ │ ├── LogMessage.schema.example.md │ │ │ │ │ ├── SetLevel.schema.example.md │ │ │ │ │ ├── SetState.schema.example.md │ │ │ │ │ └── Upload.schema.example.md │ │ │ │ ├── Logout.schema.example.md │ │ │ │ ├── Message.schema.example.md │ │ │ │ ├── Navigation.schema.example.md │ │ │ │ ├── ODataService │ │ │ │ │ ├── CallFunction.schema.example.md │ │ │ │ │ ├── ChangeSet.schema.example.md │ │ │ │ │ ├── CreateEntity.schema.example.md │ │ │ │ │ ├── CreateMedia.schema.example.md │ │ │ │ │ ├── CreateRelatedEntity.schema.example.md │ │ │ │ │ ├── CreateRelatedMedia.schema.example.md │ │ │ │ │ ├── DeleteEntity.schema.example.md │ │ │ │ │ ├── DeleteMedia.schema.example.md │ │ │ │ │ ├── DownloadMedia.schema.example.md │ │ │ │ │ ├── DownloadStream.schema.example.md │ │ │ │ │ ├── DraftDiscard.schema.example.md │ │ │ │ │ ├── DraftEdit.schema.example.md │ │ │ │ │ ├── DraftSave.schema.example.md │ │ │ │ │ ├── Initialize.schema.example.md │ │ │ │ │ ├── Read.schema.example.md │ │ │ │ │ ├── UpdateEntity.schema.example.md │ │ │ │ │ ├── UploadMedia.schema.example.md │ │ │ │ │ └── UploadStream.schema.example.md │ │ │ │ ├── OfflineOData │ │ │ │ │ ├── CancelDownload.schema.example.md │ │ │ │ │ ├── CancelUpload.schema.example.md │ │ │ │ │ ├── Clear.schema.example.md │ │ │ │ │ ├── Close.schema.example.md │ │ │ │ │ ├── Download.schema.example.md │ │ │ │ │ ├── RemoveDefiningRequest.schema.example.md │ │ │ │ │ ├── UndoPendingChanges.schema.example.md │ │ │ │ │ ├── Upload.schema.example.md │ │ │ │ │ └── UploadStore.md │ │ │ │ ├── OpenBarcodeScanner.schema.example.md │ │ │ │ ├── OpenDocument.schema.example.md │ │ │ │ ├── PopoverMenu.schema.example.md │ │ │ │ ├── ProgressBanner.schema.example.md │ │ │ │ ├── PushNotificationRegister.schema.example.md │ │ │ │ ├── PushNotificationUnregister.schema.example.md │ │ │ │ ├── RestService │ │ │ │ │ └── SendRequest.schema.example.md │ │ │ │ ├── SetDebugSettings.schema.example.md │ │ │ │ ├── SetLanguage.schema.example.md │ │ │ │ ├── SetRegion.schema.example.md │ │ │ │ ├── SetTheme.schema.example.md │ │ │ │ ├── ToastMessage.schema.example.md │ │ │ │ └── VerifyPasscode.schema.example.md │ │ │ ├── App.schema.example.md │ │ │ ├── Images.md │ │ │ ├── Page.schema.example.md │ │ │ ├── Page │ │ │ │ ├── ActionBar.schema.example.md │ │ │ │ ├── Common │ │ │ │ │ ├── Extension.schema.example.md │ │ │ │ │ ├── FixedObjectCellCollection.schema.example.md │ │ │ │ │ └── ObjectCellEntitySetTarget.schema.example.md │ │ │ │ ├── FioriToolbar.schema.example.md │ │ │ │ ├── FlexibleColumnLayout │ │ │ │ │ └── FlexibleColumnLayout.schema.example.md │ │ │ │ ├── FormCell │ │ │ │ │ ├── Attachment.schema.example.md │ │ │ │ │ ├── Button.schema.example.md │ │ │ │ │ ├── DatePicker.schema.example.md │ │ │ │ │ ├── Document.schema.example.md │ │ │ │ │ ├── DurationPicker.schema.example.md │ │ │ │ │ ├── Extension.schema.example.md │ │ │ │ │ ├── Filter.schema.example.md │ │ │ │ │ ├── InlineSignatureCapture.schema.example.md │ │ │ │ │ ├── Label.schema.example.md │ │ │ │ │ ├── ListPicker.schema.example.md │ │ │ │ │ ├── MultiSorter.schema.example.md │ │ │ │ │ ├── Note.schema.example.md │ │ │ │ │ ├── Segmented.schema.example.md │ │ │ │ │ ├── SignatureCapture.schema.example.md │ │ │ │ │ ├── SimpleProperty.schema.example.md │ │ │ │ │ ├── Sorter.schema.example.md │ │ │ │ │ ├── Switch.schema.example.md │ │ │ │ │ └── Title.schema.example.md │ │ │ │ ├── NavigationDrawer │ │ │ │ │ └── SideDrawer.schema.example.md │ │ │ │ ├── SectionedTable │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── Footer.schema.example.md │ │ │ │ │ │ └── Header.schema.example.md │ │ │ │ │ ├── Container │ │ │ │ │ │ ├── AnalyticCardCollection.schema.example.md │ │ │ │ │ │ ├── ButtonTable.schema.example.md │ │ │ │ │ │ ├── Calendar.schema.example.md │ │ │ │ │ │ ├── CardCollection.schema.example.md │ │ │ │ │ │ ├── ChartContent.schema.example.md │ │ │ │ │ │ ├── ContactTable.schema.example.md │ │ │ │ │ │ ├── DataTable.schema.example.md │ │ │ │ │ │ ├── Extension.schema.example.md │ │ │ │ │ │ ├── FormCell.schema.example.md │ │ │ │ │ │ ├── GridTable.schema.example.md │ │ │ │ │ │ ├── Image.schema.example.md │ │ │ │ │ │ ├── ImageCollection.schema.example.md │ │ │ │ │ │ ├── KPIHeader.schema.example.md │ │ │ │ │ │ ├── KPISection.schema.example.md │ │ │ │ │ │ ├── KeyValue.schema.example.md │ │ │ │ │ │ ├── ObjectCardCollection.schema.example.md │ │ │ │ │ │ ├── ObjectCollection.schema.example.md │ │ │ │ │ │ ├── ObjectHeader.schema.example.md │ │ │ │ │ │ ├── ObjectTable.schema.example.md │ │ │ │ │ │ ├── ProfileHeader.schema.example.md │ │ │ │ │ │ ├── Timeline.schema.example.md │ │ │ │ │ │ └── TimelinePreview.schema.example.md │ │ │ │ │ ├── Control │ │ │ │ │ │ ├── Card │ │ │ │ │ │ │ └── Card.schema.example.md │ │ │ │ │ │ ├── ContactCellItem.schema.example.md │ │ │ │ │ │ ├── ObjectCard.schema.example.md │ │ │ │ │ │ ├── ObjectCell.schema.example.md │ │ │ │ │ │ ├── SimplePropertyCell.schema.example.md │ │ │ │ │ │ ├── TimelineCell.schema.example.md │ │ │ │ │ │ └── TimelinePreviewCell.schema.example.md │ │ │ │ │ └── SectionedTable.schema.example.md │ │ │ │ ├── TabControl │ │ │ │ │ ├── BottomNavigation │ │ │ │ │ │ └── BottomNavigation.schema.example.md │ │ │ │ │ └── Tabs │ │ │ │ │ │ └── Tabs.schema.example.md │ │ │ │ └── ToolBar.schema.example.md │ │ │ ├── README.md │ │ │ ├── Rule.md │ │ │ ├── Service.schema.example.md │ │ │ ├── Styles.less.md │ │ │ ├── Styles │ │ │ │ ├── ActionBarClass.style.md │ │ │ │ ├── AvatarClass.style.md │ │ │ │ ├── BackgroundClass.style.md │ │ │ │ ├── BannerMessageClass.style.md │ │ │ │ ├── ButtonClass.style.md │ │ │ │ ├── ButtonNewClass.style.md │ │ │ │ ├── CalendarClass.style.md │ │ │ │ ├── CalendarDatesClass.style.md │ │ │ │ ├── CaptionClass.style.md │ │ │ │ ├── FilterFeedbackBarClass.style.md │ │ │ │ ├── FilterFeedbackItemClass.style.md │ │ │ │ ├── FioriToolbarClass.style.md │ │ │ │ ├── HeaderFooterClass.style.md │ │ │ │ ├── ImageClass.style.md │ │ │ │ ├── ImageTextClass.style.md │ │ │ │ ├── LabelFormCellClass.style.md │ │ │ │ ├── MessageClass.style.md │ │ │ │ ├── ObjectHeaderTextClass.style.md │ │ │ │ ├── ProgressBannerClass.style.md │ │ │ │ ├── SeparatorClass.style.md │ │ │ │ ├── SignatureCaptureClass.style.md │ │ │ │ ├── SignatureCaptureUnderlineClass.style.md │ │ │ │ ├── SwitchClass.style.md │ │ │ │ ├── TabStripClass.style.md │ │ │ │ ├── TagItemClass.style.md │ │ │ │ ├── TextClass.style.md │ │ │ │ ├── TextPaintClass.style.md │ │ │ │ ├── TextPaintObjectCardClass.style.md │ │ │ │ ├── TintClass.style.md │ │ │ │ ├── TintColorClass.style.md │ │ │ │ ├── ValidationMessageClass.style.md │ │ │ │ ├── ValidationViewClass.style.md │ │ │ │ ├── ValueClass.style.md │ │ │ │ └── ValueInputClass.style.md │ │ │ └── definitions │ │ │ │ ├── ButtonLayout.schema.example.md │ │ │ │ ├── CSDLOptions.enum.md │ │ │ │ ├── CallFunctionTarget.schema.example.md │ │ │ │ ├── DefiningRequest.schema.example.md │ │ │ │ ├── DeviceId.md │ │ │ │ ├── EmptySection.schema.example.md │ │ │ │ ├── EntitySetTarget.schema.example.md │ │ │ │ ├── FixedCollection.schema.example.md │ │ │ │ ├── FixedCollectionSpecifier.schema.example.md │ │ │ │ ├── FormCellSectionLayout.schema.example.md │ │ │ │ ├── Grouping.schema.example.md │ │ │ │ ├── Image.schema.example.md │ │ │ │ ├── Layout.schema.example.md │ │ │ │ ├── MultiSorterFixedCollection.schema.example.md │ │ │ │ ├── ObjectCardCollectionLayout.schema.example.md │ │ │ │ ├── OverrideAction.schema.example.md │ │ │ │ ├── PullDown.schema.example.md │ │ │ │ ├── RestServiceTarget.schema.example.md │ │ │ │ ├── Rule.schema.example.md │ │ │ │ ├── Search.schema.example.md │ │ │ │ ├── Target.schema.example.md │ │ │ │ ├── TargetPath.schema.example.md │ │ │ │ └── Transition.schema.example.md │ │ ├── 25.9 │ │ │ ├── Action │ │ │ │ ├── AICore │ │ │ │ │ ├── ChatCompletions.schema.example.md │ │ │ │ │ └── GenerateContent.schema.example.md │ │ │ │ ├── ApplicationUpdate.schema.example.md │ │ │ │ ├── BannerMessage.schema.example.md │ │ │ │ ├── ChangeUserPasscode.schema.example.md │ │ │ │ ├── CheckBarcodeScannerPrerequisite.schema.example.md │ │ │ │ ├── CheckRequiredFields.schema.example.md │ │ │ │ ├── ClosePage.schema.example.md │ │ │ │ ├── CrossAppNavigation.schema.example.md │ │ │ │ ├── Filter.schema.example.md │ │ │ │ ├── Logger │ │ │ │ │ ├── LogMessage.schema.example.md │ │ │ │ │ ├── SetLevel.schema.example.md │ │ │ │ │ ├── SetState.schema.example.md │ │ │ │ │ └── Upload.schema.example.md │ │ │ │ ├── Logout.schema.example.md │ │ │ │ ├── Message.schema.example.md │ │ │ │ ├── Navigation.schema.example.md │ │ │ │ ├── ODataService │ │ │ │ │ ├── CallFunction.schema.example.md │ │ │ │ │ ├── ChangeSet.schema.example.md │ │ │ │ │ ├── CreateEntity.schema.example.md │ │ │ │ │ ├── CreateMedia.schema.example.md │ │ │ │ │ ├── CreateRelatedEntity.schema.example.md │ │ │ │ │ ├── CreateRelatedMedia.schema.example.md │ │ │ │ │ ├── DeleteEntity.schema.example.md │ │ │ │ │ ├── DeleteMedia.schema.example.md │ │ │ │ │ ├── DownloadMedia.schema.example.md │ │ │ │ │ ├── DownloadStream.schema.example.md │ │ │ │ │ ├── DraftDiscard.schema.example.md │ │ │ │ │ ├── DraftEdit.schema.example.md │ │ │ │ │ ├── DraftSave.schema.example.md │ │ │ │ │ ├── Initialize.schema.example.md │ │ │ │ │ ├── Read.schema.example.md │ │ │ │ │ ├── UpdateEntity.schema.example.md │ │ │ │ │ ├── UploadMedia.schema.example.md │ │ │ │ │ └── UploadStream.schema.example.md │ │ │ │ ├── OfflineOData │ │ │ │ │ ├── CancelDownload.schema.example.md │ │ │ │ │ ├── CancelUpload.schema.example.md │ │ │ │ │ ├── Clear.schema.example.md │ │ │ │ │ ├── Close.schema.example.md │ │ │ │ │ ├── Download.schema.example.md │ │ │ │ │ ├── RemoveDefiningRequest.schema.example.md │ │ │ │ │ ├── UndoPendingChanges.schema.example.md │ │ │ │ │ ├── Upload.schema.example.md │ │ │ │ │ └── UploadStore.md │ │ │ │ ├── OpenBarcodeScanner.schema.example.md │ │ │ │ ├── OpenDocument.schema.example.md │ │ │ │ ├── PopoverMenu.schema.example.md │ │ │ │ ├── ProgressBanner.schema.example.md │ │ │ │ ├── PushNotificationRegister.schema.example.md │ │ │ │ ├── PushNotificationUnregister.schema.example.md │ │ │ │ ├── RestService │ │ │ │ │ └── SendRequest.schema.example.md │ │ │ │ ├── SetDebugSettings.schema.example.md │ │ │ │ ├── SetLanguage.schema.example.md │ │ │ │ ├── SetRegion.schema.example.md │ │ │ │ ├── SetTheme.schema.example.md │ │ │ │ ├── ToastMessage.schema.example.md │ │ │ │ └── VerifyPasscode.schema.example.md │ │ │ ├── App.schema.example.md │ │ │ ├── Images.md │ │ │ ├── Page.schema.example.md │ │ │ ├── Page │ │ │ │ ├── ActionBar.schema.example.md │ │ │ │ ├── Common │ │ │ │ │ ├── Extension.schema.example.md │ │ │ │ │ ├── FixedObjectCellCollection.schema.example.md │ │ │ │ │ └── ObjectCellEntitySetTarget.schema.example.md │ │ │ │ ├── FioriToolbar.schema.example.md │ │ │ │ ├── FlexibleColumnLayout │ │ │ │ │ └── FlexibleColumnLayout.schema.example.md │ │ │ │ ├── FormCell │ │ │ │ │ ├── Attachment.schema.example.md │ │ │ │ │ ├── Button.schema.example.md │ │ │ │ │ ├── DatePicker.schema.example.md │ │ │ │ │ ├── Document.schema.example.md │ │ │ │ │ ├── DurationPicker.schema.example.md │ │ │ │ │ ├── Extension.schema.example.md │ │ │ │ │ ├── Filter.schema.example.md │ │ │ │ │ ├── InlineSignatureCapture.schema.example.md │ │ │ │ │ ├── Label.schema.example.md │ │ │ │ │ ├── ListPicker.schema.example.md │ │ │ │ │ ├── MultiSorter.schema.example.md │ │ │ │ │ ├── Note.schema.example.md │ │ │ │ │ ├── Segmented.schema.example.md │ │ │ │ │ ├── SignatureCapture.schema.example.md │ │ │ │ │ ├── SimpleProperty.schema.example.md │ │ │ │ │ ├── Sorter.schema.example.md │ │ │ │ │ ├── Switch.schema.example.md │ │ │ │ │ └── Title.schema.example.md │ │ │ │ ├── NavigationDrawer │ │ │ │ │ └── SideDrawer.schema.example.md │ │ │ │ ├── SectionedTable │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── Footer.schema.example.md │ │ │ │ │ │ └── Header.schema.example.md │ │ │ │ │ ├── Container │ │ │ │ │ │ ├── AnalyticCardCollection.schema.example.md │ │ │ │ │ │ ├── ButtonTable.schema.example.md │ │ │ │ │ │ ├── Calendar.schema.example.md │ │ │ │ │ │ ├── CardCollection.schema.example.md │ │ │ │ │ │ ├── ChartContent.schema.example.md │ │ │ │ │ │ ├── ContactTable.schema.example.md │ │ │ │ │ │ ├── DataTable.schema.example.md │ │ │ │ │ │ ├── Extension.schema.example.md │ │ │ │ │ │ ├── FormCell.schema.example.md │ │ │ │ │ │ ├── GridTable.schema.example.md │ │ │ │ │ │ ├── Image.schema.example.md │ │ │ │ │ │ ├── ImageCollection.schema.example.md │ │ │ │ │ │ ├── KPIHeader.schema.example.md │ │ │ │ │ │ ├── KPISection.schema.example.md │ │ │ │ │ │ ├── KeyValue.schema.example.md │ │ │ │ │ │ ├── ObjectCardCollection.schema.example.md │ │ │ │ │ │ ├── ObjectCollection.schema.example.md │ │ │ │ │ │ ├── ObjectHeader.schema.example.md │ │ │ │ │ │ ├── ObjectTable.schema.example.md │ │ │ │ │ │ ├── ProfileHeader.schema.example.md │ │ │ │ │ │ ├── Timeline.schema.example.md │ │ │ │ │ │ └── TimelinePreview.schema.example.md │ │ │ │ │ ├── Control │ │ │ │ │ │ ├── Card │ │ │ │ │ │ │ └── Card.schema.example.md │ │ │ │ │ │ ├── ContactCellItem.schema.example.md │ │ │ │ │ │ ├── ObjectCard.schema.example.md │ │ │ │ │ │ ├── ObjectCell.schema.example.md │ │ │ │ │ │ ├── SimplePropertyCell.schema.example.md │ │ │ │ │ │ ├── TimelineCell.schema.example.md │ │ │ │ │ │ └── TimelinePreviewCell.schema.example.md │ │ │ │ │ └── SectionedTable.schema.example.md │ │ │ │ ├── TabControl │ │ │ │ │ ├── BottomNavigation │ │ │ │ │ │ └── BottomNavigation.schema.example.md │ │ │ │ │ └── Tabs │ │ │ │ │ │ └── Tabs.schema.example.md │ │ │ │ └── ToolBar.schema.example.md │ │ │ ├── README.md │ │ │ ├── Rule.md │ │ │ ├── Service.schema.example.md │ │ │ ├── Styles.less.md │ │ │ ├── Styles │ │ │ │ ├── ActionBarClass.style.md │ │ │ │ ├── AvatarClass.style.md │ │ │ │ ├── BackgroundClass.style.md │ │ │ │ ├── BannerMessageClass.style.md │ │ │ │ ├── ButtonClass.style.md │ │ │ │ ├── ButtonNewClass.style.md │ │ │ │ ├── CalendarClass.style.md │ │ │ │ ├── CalendarDatesClass.style.md │ │ │ │ ├── CaptionClass.style.md │ │ │ │ ├── FilterFeedbackBarClass.style.md │ │ │ │ ├── FilterFeedbackItemClass.style.md │ │ │ │ ├── FioriToolbarClass.style.md │ │ │ │ ├── HeaderFooterClass.style.md │ │ │ │ ├── ImageClass.style.md │ │ │ │ ├── ImageTextClass.style.md │ │ │ │ ├── LabelFormCellClass.style.md │ │ │ │ ├── MessageClass.style.md │ │ │ │ ├── ObjectHeaderTextClass.style.md │ │ │ │ ├── ProgressBannerClass.style.md │ │ │ │ ├── RequiredIndicatorColorClass.style.md │ │ │ │ ├── SeparatorClass.style.md │ │ │ │ ├── SignatureCaptureClass.style.md │ │ │ │ ├── SignatureCaptureUnderlineClass.style.md │ │ │ │ ├── SwitchClass.style.md │ │ │ │ ├── TabStripClass.style.md │ │ │ │ ├── TagItemClass.style.md │ │ │ │ ├── TextClass.style.md │ │ │ │ ├── TextPaintClass.style.md │ │ │ │ ├── TextPaintObjectCardClass.style.md │ │ │ │ ├── TintClass.style.md │ │ │ │ ├── TintColorClass.style.md │ │ │ │ ├── ValidationMessageClass.style.md │ │ │ │ ├── ValidationViewClass.style.md │ │ │ │ ├── ValueClass.style.md │ │ │ │ └── ValueInputClass.style.md │ │ │ └── definitions │ │ │ │ ├── ButtonLayout.schema.example.md │ │ │ │ ├── CSDLOptions.enum.md │ │ │ │ ├── CallFunctionTarget.schema.example.md │ │ │ │ ├── DefiningRequest.schema.example.md │ │ │ │ ├── DeviceId.md │ │ │ │ ├── EmptySection.schema.example.md │ │ │ │ ├── EntitySetTarget.schema.example.md │ │ │ │ ├── FixedCollection.schema.example.md │ │ │ │ ├── FixedCollectionSpecifier.schema.example.md │ │ │ │ ├── FormCellSectionLayout.schema.example.md │ │ │ │ ├── Grouping.schema.example.md │ │ │ │ ├── Image.schema.example.md │ │ │ │ ├── Layout.schema.example.md │ │ │ │ ├── MultiSorterFixedCollection.schema.example.md │ │ │ │ ├── ObjectCardCollectionLayout.schema.example.md │ │ │ │ ├── OverrideAction.schema.example.md │ │ │ │ ├── PullDown.schema.example.md │ │ │ │ ├── RestServiceTarget.schema.example.md │ │ │ │ ├── Rule.schema.example.md │ │ │ │ ├── Search.schema.example.md │ │ │ │ ├── Target.schema.example.md │ │ │ │ ├── TargetPath.schema.example.md │ │ │ │ └── Transition.schema.example.md │ │ ├── Action │ │ │ ├── AICore │ │ │ │ ├── ChatCompletions.schema.example.md │ │ │ │ └── GenerateContent.schema.example.md │ │ │ ├── ApplicationUpdate.schema.example.md │ │ │ ├── BannerMessage.schema.example.md │ │ │ ├── ChangeUserPasscode.schema.example.md │ │ │ ├── CheckBarcodeScannerPrerequisite.schema.example.md │ │ │ ├── CheckRequiredFields.schema.example.md │ │ │ ├── ClosePage.schema.example.md │ │ │ ├── CrossAppNavigation.schema.example.md │ │ │ ├── Filter.schema.example.md │ │ │ ├── Logger │ │ │ │ ├── LogMessage.schema.example.md │ │ │ │ ├── SetLevel.schema.example.md │ │ │ │ ├── SetState.schema.example.md │ │ │ │ └── Upload.schema.example.md │ │ │ ├── Logout.schema.example.md │ │ │ ├── Message.schema.example.md │ │ │ ├── Navigation.schema.example.md │ │ │ ├── ODataService │ │ │ │ ├── CallFunction.schema.example.md │ │ │ │ ├── ChangeSet.schema.example.md │ │ │ │ ├── CreateEntity.schema.example.md │ │ │ │ ├── CreateMedia.schema.example.md │ │ │ │ ├── CreateRelatedEntity.schema.example.md │ │ │ │ ├── CreateRelatedMedia.schema.example.md │ │ │ │ ├── DeleteEntity.schema.example.md │ │ │ │ ├── DeleteMedia.schema.example.md │ │ │ │ ├── DownloadMedia.schema.example.md │ │ │ │ ├── DownloadStream.schema.example.md │ │ │ │ ├── DraftDiscard.schema.example.md │ │ │ │ ├── DraftEdit.schema.example.md │ │ │ │ ├── DraftSave.schema.example.md │ │ │ │ ├── Initialize.schema.example.md │ │ │ │ ├── Read.schema.example.md │ │ │ │ ├── UpdateEntity.schema.example.md │ │ │ │ ├── UploadMedia.schema.example.md │ │ │ │ └── UploadStream.schema.example.md │ │ │ ├── OfflineOData │ │ │ │ ├── CancelDownload.schema.example.md │ │ │ │ ├── CancelUpload.schema.example.md │ │ │ │ ├── Clear.schema.example.md │ │ │ │ ├── Close.schema.example.md │ │ │ │ ├── Download.schema.example.md │ │ │ │ ├── RemoveDefiningRequest.schema.example.md │ │ │ │ ├── UndoPendingChanges.schema.example.md │ │ │ │ ├── Upload.schema.example.md │ │ │ │ └── UploadStore.md │ │ │ ├── OpenBarcodeScanner.schema.example.md │ │ │ ├── OpenDocument.schema.example.md │ │ │ ├── PopoverMenu.schema.example.md │ │ │ ├── ProgressBanner.schema.example.md │ │ │ ├── PushNotificationRegister.schema.example.md │ │ │ ├── PushNotificationUnregister.schema.example.md │ │ │ ├── RestService │ │ │ │ └── SendRequest.schema.example.md │ │ │ ├── SetDebugSettings.schema.example.md │ │ │ ├── SetLanguage.schema.example.md │ │ │ ├── SetRegion.schema.example.md │ │ │ ├── SetTheme.schema.example.md │ │ │ ├── ToastMessage.schema.example.md │ │ │ └── VerifyPasscode.schema.example.md │ │ ├── App.schema.example.md │ │ ├── Images.md │ │ ├── Page.schema.example.md │ │ ├── Page │ │ │ ├── ActionBar.schema.example.md │ │ │ ├── Common │ │ │ │ ├── Extension.schema.example.md │ │ │ │ ├── FixedObjectCellCollection.schema.example.md │ │ │ │ └── ObjectCellEntitySetTarget.schema.example.md │ │ │ ├── FioriToolbar.schema.example.md │ │ │ ├── FlexibleColumnLayout │ │ │ │ └── FlexibleColumnLayout.schema.example.md │ │ │ ├── FormCell │ │ │ │ ├── Attachment.schema.example.md │ │ │ │ ├── Button.schema.example.md │ │ │ │ ├── DatePicker.schema.example.md │ │ │ │ ├── Document.schema.example.md │ │ │ │ ├── DurationPicker.schema.example.md │ │ │ │ ├── Extension.schema.example.md │ │ │ │ ├── Filter.schema.example.md │ │ │ │ ├── InlineSignatureCapture.schema.example.md │ │ │ │ ├── Label.schema.example.md │ │ │ │ ├── ListPicker.schema.example.md │ │ │ │ ├── MultiSorter.schema.example.md │ │ │ │ ├── Note.schema.example.md │ │ │ │ ├── Segmented.schema.example.md │ │ │ │ ├── SignatureCapture.schema.example.md │ │ │ │ ├── SimpleProperty.schema.example.md │ │ │ │ ├── Sorter.schema.example.md │ │ │ │ ├── Switch.schema.example.md │ │ │ │ └── Title.schema.example.md │ │ │ ├── NavigationDrawer │ │ │ │ └── SideDrawer.schema.example.md │ │ │ ├── SectionedTable │ │ │ │ ├── Common │ │ │ │ │ ├── Footer.schema.example.md │ │ │ │ │ └── Header.schema.example.md │ │ │ │ ├── Container │ │ │ │ │ ├── AnalyticCardCollection.schema.example.md │ │ │ │ │ ├── ButtonTable.schema.example.md │ │ │ │ │ ├── Calendar.schema.example.md │ │ │ │ │ ├── CardCollection.schema.example.md │ │ │ │ │ ├── ChartContent.schema.example.md │ │ │ │ │ ├── ContactTable.schema.example.md │ │ │ │ │ ├── DataTable.schema.example.md │ │ │ │ │ ├── Extension.schema.example.md │ │ │ │ │ ├── FormCell.schema.example.md │ │ │ │ │ ├── GridTable.schema.example.md │ │ │ │ │ ├── Image.schema.example.md │ │ │ │ │ ├── ImageCollection.schema.example.md │ │ │ │ │ ├── KPIHeader.schema.example.md │ │ │ │ │ ├── KPISection.schema.example.md │ │ │ │ │ ├── KeyValue.schema.example.md │ │ │ │ │ ├── ObjectCardCollection.schema.example.md │ │ │ │ │ ├── ObjectCollection.schema.example.md │ │ │ │ │ ├── ObjectHeader.schema.example.md │ │ │ │ │ ├── ObjectTable.schema.example.md │ │ │ │ │ ├── ProfileHeader.schema.example.md │ │ │ │ │ ├── Timeline.schema.example.md │ │ │ │ │ └── TimelinePreview.schema.example.md │ │ │ │ ├── Control │ │ │ │ │ ├── Card │ │ │ │ │ │ └── Card.schema.example.md │ │ │ │ │ ├── ContactCellItem.schema.example.md │ │ │ │ │ ├── ObjectCard.schema.example.md │ │ │ │ │ ├── ObjectCell.schema.example.md │ │ │ │ │ ├── SimplePropertyCell.schema.example.md │ │ │ │ │ ├── TimelineCell.schema.example.md │ │ │ │ │ └── TimelinePreviewCell.schema.example.md │ │ │ │ └── SectionedTable.schema.example.md │ │ │ ├── TabControl │ │ │ │ ├── BottomNavigation │ │ │ │ │ └── BottomNavigation.schema.example.md │ │ │ │ └── Tabs │ │ │ │ │ └── Tabs.schema.example.md │ │ │ └── ToolBar.schema.example.md │ │ ├── README.md │ │ ├── Rule.md │ │ ├── Service.schema.example.md │ │ ├── Styles.less.md │ │ ├── Styles │ │ │ ├── ActionBarClass.style.md │ │ │ ├── AvatarClass.style.md │ │ │ ├── BackgroundClass.style.md │ │ │ ├── BannerMessageClass.style.md │ │ │ ├── ButtonClass.style.md │ │ │ ├── ButtonNewClass.style.md │ │ │ ├── CalendarClass.style.md │ │ │ ├── CalendarDatesClass.style.md │ │ │ ├── CaptionClass.style.md │ │ │ ├── FilterFeedbackBarClass.style.md │ │ │ ├── FilterFeedbackItemClass.style.md │ │ │ ├── FioriToolbarClass.style.md │ │ │ ├── HeaderFooterClass.style.md │ │ │ ├── ImageClass.style.md │ │ │ ├── ImageTextClass.style.md │ │ │ ├── LabelFormCellClass.style.md │ │ │ ├── MessageClass.style.md │ │ │ ├── ObjectHeaderTextClass.style.md │ │ │ ├── ProgressBannerClass.style.md │ │ │ ├── RequiredIndicatorColorClass.style.md │ │ │ ├── SeparatorClass.style.md │ │ │ ├── SignatureCaptureClass.style.md │ │ │ ├── SignatureCaptureUnderlineClass.style.md │ │ │ ├── SwitchClass.style.md │ │ │ ├── TabStripClass.style.md │ │ │ ├── TagItemClass.style.md │ │ │ ├── TextClass.style.md │ │ │ ├── TextPaintClass.style.md │ │ │ ├── TextPaintObjectCardClass.style.md │ │ │ ├── TintClass.style.md │ │ │ ├── TintColorClass.style.md │ │ │ ├── ValidationMessageClass.style.md │ │ │ ├── ValidationViewClass.style.md │ │ │ ├── ValueClass.style.md │ │ │ └── ValueInputClass.style.md │ │ └── definitions │ │ │ ├── ButtonLayout.schema.example.md │ │ │ ├── CSDLOptions.enum.md │ │ │ ├── CallFunctionTarget.schema.example.md │ │ │ ├── DefiningRequest.schema.example.md │ │ │ ├── DeviceId.md │ │ │ ├── EmptySection.schema.example.md │ │ │ ├── EntitySetTarget.schema.example.md │ │ │ ├── FixedCollection.schema.example.md │ │ │ ├── FixedCollectionSpecifier.schema.example.md │ │ │ ├── FormCellSectionLayout.schema.example.md │ │ │ ├── Grouping.schema.example.md │ │ │ ├── Image.schema.example.md │ │ │ ├── Layout.schema.example.md │ │ │ ├── MultiSorterFixedCollection.schema.example.md │ │ │ ├── ObjectCardCollectionLayout.schema.example.md │ │ │ ├── OverrideAction.schema.example.md │ │ │ ├── PullDown.schema.example.md │ │ │ ├── RestServiceTarget.schema.example.md │ │ │ ├── Rule.schema.example.md │ │ │ ├── Search.schema.example.md │ │ │ ├── Target.schema.example.md │ │ │ ├── TargetPath.schema.example.md │ │ │ └── Transition.schema.example.md │ │ └── templates │ │ ├── Action │ │ ├── Banner.md │ │ ├── CancelDownloadOfflineOData.md │ │ ├── CancelUploadOfflineOData.md │ │ ├── ChangeSet.md │ │ ├── ChatCompletion.md │ │ ├── CheckRequiredFields.md │ │ ├── ClearOfflineOData.md │ │ ├── CloseOfflineOData.md │ │ ├── CreateODataEntity.md │ │ ├── CreateODataMedia.md │ │ ├── CreateODataRelatedEntity.md │ │ ├── CreateODataRelatedMedia.md │ │ ├── CreateODataService.md │ │ ├── DeleteODataEntity.md │ │ ├── DeleteODataMedia.md │ │ ├── DownloadMediaOData.md │ │ ├── DownloadOfflineOData.md │ │ ├── Filter.md │ │ ├── InitializeOfflineOData.md │ │ ├── LogMessage.md │ │ ├── Message.md │ │ ├── Navigation.md │ │ ├── OpenDocument.md │ │ ├── OpenODataService.md │ │ ├── PopoverMenu.md │ │ ├── ProgressBanner.md │ │ ├── PushNotificationRegister.md │ │ ├── PushNotificationUnregister.md │ │ ├── ReadODataService.md │ │ ├── RemoveDefiningRequest.md │ │ ├── SendRequest.md │ │ ├── SetLevel.md │ │ ├── SetState.md │ │ ├── ToastMessage.md │ │ ├── UndoPendingChanges.md │ │ ├── UpdateODataEntity.md │ │ ├── UploadLog.md │ │ ├── UploadODataMedia.md │ │ ├── UploadOfflineOData.md │ │ └── UploadStreamOData.md │ │ └── Page │ │ ├── DataBinding │ │ ├── Calendar.md │ │ ├── ContactTable.md │ │ ├── DataTable.md │ │ ├── FormCell.md │ │ ├── KPIHeader.md │ │ ├── KeyValue.md │ │ ├── ObjectCard.md │ │ ├── ObjectCollection.md │ │ ├── ObjectHeader.md │ │ ├── ObjectTable.md │ │ ├── ProfileHeader.md │ │ ├── SectionedTable.md │ │ ├── SimplePropertyCollection.md │ │ ├── Timeline.md │ │ └── TimelinePreview.md │ │ └── Layout │ │ ├── BottomNavigation.md │ │ ├── Extension.md │ │ ├── FlexibleColumnLayout.md │ │ ├── Section.md │ │ ├── SideDrawerNavigation.md │ │ └── Tabs.md ├── mdk-tools │ ├── .github │ │ └── PULL_REQUEST_TEMPLATE.md │ ├── LICENSE.txt │ ├── README.md │ └── lib │ │ └── bundler │ │ └── README.md ├── modules-exploration │ ├── LICENSE.txt │ └── README.md ├── mta-lib │ ├── LICENSE │ └── README.md ├── node-jwt │ ├── LICENSE │ └── README.md ├── node-vsi │ ├── LICENSE │ └── README.md ├── odata-v4 │ ├── CHANGELOG.md │ ├── README.md │ ├── lib │ │ ├── csdl │ │ │ └── info.md │ │ ├── info.md │ │ ├── serializer │ │ │ └── ResourceJsonSerialization.md │ │ ├── uri │ │ │ └── info.md │ │ └── utils │ │ │ └── info.md │ └── npm-shrinkwrap.json ├── open-resource-discovery │ ├── LICENSE │ └── README.md ├── open.fe │ ├── LICENSE.txt │ ├── README.md │ └── packages │ │ ├── sap.fe.core │ │ └── test │ │ │ └── sap │ │ │ └── fe │ │ │ └── core │ │ │ └── fpmExplorer │ │ │ ├── common │ │ │ └── projectDownload │ │ │ │ └── README.md │ │ │ ├── fpm │ │ │ ├── common │ │ │ │ └── projectDownload │ │ │ │ │ └── README.md │ │ │ └── topics │ │ │ │ ├── advancedFeatures │ │ │ │ └── advancedFeaturesOverview.md │ │ │ │ ├── buildingBlocks │ │ │ │ └── buildingBlockOverview.md │ │ │ │ ├── controllerExtensions │ │ │ │ └── controllerExtensionsOverview.md │ │ │ │ ├── customElements │ │ │ │ └── customElementsOverview.md │ │ │ │ └── overview │ │ │ │ └── introduction.md │ │ │ ├── template │ │ │ └── README.md │ │ │ ├── topics │ │ │ ├── advancedFeatures │ │ │ │ └── advancedFeaturesOverview.md │ │ │ ├── buildingBlocks │ │ │ │ └── buildingBlockOverview.md │ │ │ ├── controllerExtensions │ │ │ │ └── controllerExtensionsOverview.md │ │ │ ├── customElements │ │ │ │ └── customElementsOverview.md │ │ │ ├── floorplans │ │ │ │ └── floorplansOverview.md │ │ │ └── overview │ │ │ │ └── introduction.md │ │ │ └── topicsNextGen │ │ │ └── floorplans │ │ │ └── floorplansOverview.md │ │ └── sap.fe.macros │ │ └── test │ │ └── sap │ │ └── fe │ │ └── macros │ │ └── jest │ │ └── addTemplatingTest.md ├── openapi-specification │ ├── LICENSE │ └── README.md ├── opentelemetry-exporter-for-sap-cloud-logging │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ └── sample │ │ └── README.md ├── oyster-metadata-aarch64-apple-darwin │ ├── LICENSE │ └── README.md ├── oyster-metadata-aarch64-unknown-linux-gnu │ ├── LICENSE │ └── README.md ├── oyster-metadata-aarch64-unknown-linux-musl │ ├── LICENSE │ └── README.md ├── oyster-metadata-x86_64-apple-darwin │ ├── LICENSE │ └── README.md ├── oyster-metadata-x86_64-pc-windows-msvc │ ├── LICENSE │ └── README.md ├── oyster-metadata-x86_64-unknown-linux-gnu │ ├── LICENSE │ └── README.md ├── oyster-metadata-x86_64-unknown-linux-musl │ ├── LICENSE │ └── README.md ├── oyster-metadata │ ├── LICENSE │ └── README.md ├── oyster-runtime-aarch64-apple-darwin │ ├── LICENSE │ └── README.md ├── oyster-runtime-aarch64-unknown-linux-gnu │ ├── LICENSE │ └── README.md ├── oyster-runtime-aarch64-unknown-linux-musl │ ├── LICENSE │ └── README.md ├── oyster-runtime-x86_64-apple-darwin │ ├── LICENSE │ └── README.md ├── oyster-runtime-x86_64-pc-windows-msvc │ ├── LICENSE │ └── README.md ├── oyster-runtime-x86_64-unknown-linux-gnu │ ├── LICENSE │ └── README.md ├── oyster-runtime-x86_64-unknown-linux-musl │ ├── LICENSE │ └── README.md ├── oyster-runtime │ ├── LICENSE │ └── README.md ├── oyster-sdk-js-aarch64-apple-darwin │ ├── LICENSE │ └── README.md ├── oyster-sdk-js-aarch64-unknown-linux-gnu │ ├── LICENSE │ └── README.md ├── oyster-sdk-js-aarch64-unknown-linux-musl │ ├── LICENSE │ └── README.md ├── oyster-sdk-js-bundler │ └── LICENSE ├── oyster-sdk-js-x86_64-apple-darwin │ ├── LICENSE │ └── README.md ├── oyster-sdk-js-x86_64-pc-windows-msvc │ ├── LICENSE │ └── README.md ├── oyster-sdk-js-x86_64-unknown-linux-gnu │ ├── LICENSE │ └── README.md ├── oyster-sdk-js-x86_64-unknown-linux-musl │ ├── LICENSE │ └── README.md ├── oyster-sdk-js │ ├── LICENSE │ └── README.md ├── pdms-sdk │ ├── CHANGELOG.md │ └── README.md ├── portal-cf-content-deployer │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ └── npm-shrinkwrap.json ├── sbf │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ └── migration.md ├── sbss │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ └── migration.md ├── sds-deploy │ ├── CHANGELOG.md │ ├── README.md │ └── npm-shrinkwrap.json ├── service-provider-apis │ ├── LICENSE.txt │ └── README.md ├── service-providers │ ├── LICENSE.txt │ └── README.md ├── site-app-server │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── site-content-deployer │ ├── LICENSE │ └── README.md ├── site-entry │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── sql-interface-specification │ ├── LICENSE │ └── README.md ├── subaccount-destination-service-provider │ ├── LICENSE.txt │ └── README.md ├── swa-for-sapbas-vsx │ ├── LICENSE │ └── README.md ├── textanalysis │ └── README.md ├── textbundle │ ├── API.md │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── textmining │ └── README.md ├── ucl-provider │ ├── LICENSE.txt │ └── README.md ├── ui-annotations │ └── README.md ├── ui5-builder-webide-extension │ ├── CHANGELOG.md │ ├── LICENSE.txt │ └── README.md ├── ui5-webcomponents-vscode-css-mapping │ ├── LICENSE │ └── README.md ├── ux-annotation-modeler-bas-ext │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── ux-application-modeler-bas-ext │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── ux-cds-compiler-facade │ ├── LICENSE │ └── README.md ├── ux-cds-odata-language-server-extension │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── ux-help-bas-ext │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── ux-service-modeler-bas-ext │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── ux-specification │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── ux-ui5-fe-mockserver-middleware │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── ux-ui5-tooling │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ └── dist │ │ └── markdowns │ │ ├── add │ │ └── add.en.md │ │ ├── cfDeploy │ │ └── cfDeploy.en.md │ │ ├── deploy │ │ └── deploy.en.md │ │ ├── index │ │ └── index.en.md │ │ ├── run │ │ └── run.en.md │ │ └── undeploy │ │ └── undeploy.en.md ├── vscode-cds │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── webide-hdi-base-feature-vscode │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── webide-hdi-feature-vscode │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── wing-run-config-types │ ├── LICENSE.txt │ └── README.md ├── wing-service-binding │ ├── LICENSE.txt │ └── README.md ├── wing-service-explorer │ ├── LICENSE.txt │ └── README.md ├── xb-msg-amqp-v091 │ ├── CHANGELOG.md │ ├── README.md │ └── npm-shrinkwrap.json ├── xb-msg-amqp-v100 │ ├── CHANGELOG.md │ └── README.md ├── xb-msg-env │ ├── CHANGELOG.md │ ├── README.md │ └── npm-shrinkwrap.json ├── xb-msg-mqtt-v311 │ ├── CHANGELOG.md │ └── README.md ├── xb-msg │ ├── CHANGELOG.md │ └── README.md ├── xs-tools │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md ├── xsenv │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ └── migration.md ├── xsjs-test │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ └── npm-shrinkwrap.json ├── xsodata │ ├── CHANGELOG.md │ ├── README.md │ └── documentation │ │ ├── aggregations.md │ │ ├── annotations.md │ │ ├── authorization.md │ │ ├── calcviewSample.md │ │ ├── code_samples_pure_node │ │ └── readme.md │ │ ├── customExits.md │ │ ├── db.md │ │ ├── debugView.md │ │ ├── generatedKeys.md │ │ ├── limitations.md │ │ ├── modes.md │ │ ├── readme.md │ │ ├── supportedMethods.md │ │ ├── supportedSystemQueryOptions.md │ │ ├── typemapping.md │ │ ├── xsodataEbnf.md │ │ └── xsodataSettings.md ├── xss-secure │ ├── CHANGELOG.md │ ├── LICENSE │ └── README.md └── xssec │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ └── doc │ ├── IAS.md │ ├── IAStoXSUAA.md │ ├── MultiConfiguration.md │ ├── TokenFlows.md │ ├── TokenInfo.md │ └── doc │ ├── IAS.md │ ├── IAStoXSUAA.md │ ├── MultiConfiguration.md │ ├── TokenFlows.md │ └── TokenInfo.md ├── docs ├── 404.html ├── apis │ ├── approuter │ │ ├── CHANGELOG │ │ │ └── index.html │ │ ├── doc │ │ │ ├── app-router-diagram.png │ │ │ ├── doc │ │ │ │ ├── app-router-diagram.png │ │ │ │ ├── extending │ │ │ │ │ └── index.html │ │ │ │ ├── sessionManagement │ │ │ │ │ └── index.html │ │ │ │ └── sizingGuide │ │ │ │ │ └── index.html │ │ │ ├── extending │ │ │ │ └── index.html │ │ │ ├── sessionManagement │ │ │ │ └── index.html │ │ │ └── sizingGuide │ │ │ │ └── index.html │ │ └── index.html │ ├── audit-logging │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cds-compiler │ │ ├── CHANGELOG │ │ │ └── index.html │ │ ├── doc │ │ │ ├── ApiMigration │ │ │ │ └── index.html │ │ │ ├── CommandLineMigration │ │ │ │ └── index.html │ │ │ ├── ErrorMessages │ │ │ │ └── index.html │ │ │ ├── FioriAnnotations │ │ │ │ └── index.html │ │ │ ├── NameResolution │ │ │ │ └── index.html │ │ │ ├── ODataTransformation │ │ │ │ └── index.html │ │ │ ├── doc │ │ │ │ ├── ApiMigration │ │ │ │ │ └── index.html │ │ │ │ ├── CHANGELOG_ARCHIVE │ │ │ │ │ └── index.html │ │ │ │ ├── CommandLineMigration │ │ │ │ │ └── index.html │ │ │ │ ├── ErrorMessages │ │ │ │ │ └── index.html │ │ │ │ ├── FioriAnnotations │ │ │ │ │ └── index.html │ │ │ │ ├── NameResolution │ │ │ │ │ └── index.html │ │ │ │ ├── ODataTransformation │ │ │ │ │ └── index.html │ │ │ │ └── toSwagger │ │ │ │ │ └── index.html │ │ │ └── toSwagger │ │ │ │ └── index.html │ │ └── index.html │ ├── cds-dk │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── readme │ │ │ └── index.html │ ├── cds-foss │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cds-hana │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cds-lsp │ │ ├── CHANGELOG │ │ │ └── index.html │ │ ├── doc │ │ │ ├── 00-Intro-and-Benefits- │ │ │ │ └── index.html │ │ │ ├── 01-Common-Aspects- │ │ │ │ └── index.html │ │ │ ├── 02-Common-Types- │ │ │ │ └── index.html │ │ │ ├── 03-Entities- │ │ │ │ └── index.html │ │ │ ├── 04-Elements-Types- │ │ │ │ └── index.html │ │ │ ├── 05-Associations- │ │ │ │ └── index.html │ │ │ ├── 06-Annotations- │ │ │ │ └── index.html │ │ │ ├── 06-Excluding-Clause- │ │ │ │ └── index.html │ │ │ ├── 07-Aspects- │ │ │ │ └── index.html │ │ │ ├── 07-Query-local-Mixins- │ │ │ │ └── index.html │ │ │ ├── 08-Services- │ │ │ │ └── index.html │ │ │ ├── 10-Namespaces- │ │ │ │ └── index.html │ │ │ ├── 11-Imports- │ │ │ │ └── index.html │ │ │ ├── Formatting-Options │ │ │ │ └── index.html │ │ │ ├── doc │ │ │ │ ├── 00-Intro-and-Benefits- │ │ │ │ │ └── index.html │ │ │ │ ├── 01-Common-Aspects- │ │ │ │ │ └── index.html │ │ │ │ ├── 02-Common-Types- │ │ │ │ │ └── index.html │ │ │ │ ├── 03-Entities- │ │ │ │ │ └── index.html │ │ │ │ ├── 04-Elements-Types- │ │ │ │ │ └── index.html │ │ │ │ ├── 05-Associations- │ │ │ │ │ └── index.html │ │ │ │ ├── 06-Annotations- │ │ │ │ │ └── index.html │ │ │ │ ├── 06-Excluding-Clause- │ │ │ │ │ └── index.html │ │ │ │ ├── 07-Aspects- │ │ │ │ │ └── index.html │ │ │ │ ├── 07-Query-local-Mixins- │ │ │ │ │ └── index.html │ │ │ │ ├── 08-Services- │ │ │ │ │ └── index.html │ │ │ │ ├── 10-Namespaces- │ │ │ │ │ └── index.html │ │ │ │ ├── 11-Imports- │ │ │ │ │ └── index.html │ │ │ │ ├── Formatting-Options │ │ │ │ │ └── index.html │ │ │ │ └── settings │ │ │ │ │ └── index.html │ │ │ └── settings │ │ │ │ └── index.html │ │ └── index.html │ ├── cds-messaging │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cds-mtx │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cds-odata-v2-adapter-proxy │ │ ├── CHANGELOG │ │ │ └── index.html │ │ ├── index.html │ │ └── lib │ │ │ └── index.js │ ├── cds-ql │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cds-reflect │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── readme │ │ │ └── index.html │ ├── cds-rest │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cds-runtime │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cds-services │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cds-sidecar-client │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cds-sql │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cds-sqlite │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cds │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-analytics │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-core │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-generator-rest │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-generator │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-test-util │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-util │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-accounting-document-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-activity-type-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-attachment-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-bank-detail-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-batch-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-bill-of-material-comparison-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-bill-of-material-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-bill-of-material-v2-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-bill-of-material-where-used-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-billing-document-request-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-billing-document-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-brazil-business-place-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-brazil-nota-fiscal-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-buffer-profile-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-buffer-sizing-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-business-area-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-business-event-queue-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-business-event-subscription-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-business-partner-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-business-situation-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-business-situation-type-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-central-purchase-contract-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-change-master-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-change-master-v2-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-change-record-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-characteristic-attribute-catalog-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-characteristic-data-for-classification-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-chart-of-accounts-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-class-data-for-classification-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-cloud-print-pull-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-commercial-project-detail-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-commercial-project-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-company-code-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-condition-contract-type-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-contract-accounting-sepa-mandate-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-controlling-area-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-controlling-debit-credit-code-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-cost-center-activity-type-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-cost-center-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-cost-center-test-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-cost-rate-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-country-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-credit-memo-request-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-customer-group-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-customer-material-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-customer-return-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-customer-returns-delivery-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-customer-returns-delivery-v2-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-customer-supplier-industry-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-debit-memo-request-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-defect-category-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-defect-class-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-defect-code-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-defect-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-delivery-document-with-credit-block-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-distribution-channel-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-division-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-document-management-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-enterprise-project-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-event-based-revenue-recognition-integration-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-external-job-scheduler-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-financial-planning-data-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-financial-planning-entry-item-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-forecast-demand-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-functional-area-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-glaccount-in-chart-of-accounts-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-glaccount-line-item-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-group-reporting-master-data-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-group-reporting-transaction-data-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-handling-unit-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-inbound-delivery-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-inbound-delivery-v2-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-incoming-vat-invoice-china-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-inspection-lot-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-inspection-method-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-inspection-plan-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-journal-entry-item-basic-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-just-in-time-call-process-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-kanban-control-cycle-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-kanban-control-cycle-v2-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-ledger-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-legal-category-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-legal-document-access-level-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-legal-document-content-type-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-legal-document-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-legal-transaction-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-master-inspection-characteristic-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-master-recipe-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-material-document-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-material-planning-data-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-material-stock-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-material-valuation-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-order-bill-of-material-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-outbound-delivery-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-outbound-delivery-v2-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-partner-company-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-payment-advice-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-personnel-settlement-document-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-phase-relationship-type-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-physical-inventory-doc-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-planned-independent-requirement-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-planned-orders-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-planning-category-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-process-order-confirmation-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-process-order-confirmation-v2-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-process-orders-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-product-allocation-object-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-product-allocation-sequence-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-product-availability-info-basic-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-product-group-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-product-master-data-including-classification-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-product-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-product-structure-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-production-order-confirmation-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-production-order-confirmation-v2-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-production-order-v2-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-production-orders-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-production-routing-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-production-supply-area-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-profit-center-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-purchase-contract-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-purchase-order-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-purchase-requisition-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-purchasing-category-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-purchasing-inforecord-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-purchasing-pricing-condition-record-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-purchasing-pricing-condition-type-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-purchasing-pricing-procedure-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-purchasing-quota-arrangement-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-purchasing-source-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-quality-info-record-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-raw-substance-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-real-substance-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-recipe-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-report-ehs-incident-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-request-for-quotation-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-reservation-document-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-sales-contract-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-sales-district-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-sales-doc-with-credit-block-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-sales-inquiry-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-sales-order-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-sales-order-simulation-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-sales-order-without-charge-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-sales-organization-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-sales-pricing-condition-record-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-sales-pricing-condition-type-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-sales-pricing-procedure-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-sales-quotation-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-sales-scheduling-agreement-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-sap-graph │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-scheduling-agreement-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-segment-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-service-confirmation-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-service-contract-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-service-entry-sheet-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-service-order-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-service-quotation-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-sold-to-party-assignment-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-statistical-key-figure-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-subsequent-billing-document-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-supplier-activity-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-supplier-activity-task-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-supplier-evaluation-response-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-supplier-evaluation-score-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-supplier-evaluation-scorecard-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-supplier-invoice-process-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-supplier-quotation-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-treasury-position-flow-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-treasury-posting-journal-entry-line-item-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-trial-balance-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-warehouse-inbound-delivery-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-warehouse-outbound-delivery-order-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-warehouse-physical-inventory-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-warehouse-resource-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-warehouse-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-warehouse-storage-bin-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-warehouse-task-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-work-centers-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-workforce-availability-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-workforce-skill-tags-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm-workforce-timesheet-service │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── cloud-sdk-vdm │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── consume-services-types │ │ └── index.html │ ├── consume-services │ │ └── index.html │ ├── destinations │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── di.code-validation.core │ │ └── index.html │ ├── di.code-validation.grunt │ │ └── index.html │ ├── di.code-validation.js │ │ └── index.html │ ├── di.code-validation.xml │ │ └── index.html │ ├── dwf-core │ │ └── CHANGELOG │ │ │ └── index.html │ ├── dwf-deploy │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── dwf-dlm-backend │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── dwf-dws-client │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── dwf-generator │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── dwf-ndso-backend │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── e2e-trace │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── edm-converters │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── edmx2csn │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── eslint-plugin-ui5-jsdocs │ │ └── index.html │ ├── eslint-plugin-webide-feature │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── faas │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── fibers │ │ ├── ISSUE_TEMPLATE │ │ │ └── index.html │ │ └── index.html │ ├── fibrous │ │ ├── LICENSE │ │ │ └── index.html │ │ └── index.html │ ├── fiori-json-services │ │ └── index.html │ ├── generator-cap-project │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── generator-cds │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── grunt-sapui5-bestpractice-build │ │ └── index.html │ ├── grunt-sapui5-bestpractice-test │ │ ├── CHANGELOG.MD │ │ └── index.html │ ├── grunt-sapui5module-bestpractice-build │ │ └── index.html │ ├── grunt-tests-webide-bestpractice │ │ └── index.html │ ├── hana-client │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── hdbext │ │ ├── CHANGELOG │ │ │ └── index.html │ │ ├── index.html │ │ └── migration │ │ │ └── index.html │ ├── hdi-deploy │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── hdi-dynamic-deploy │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── hdi │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── html5-app-deployer │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── html5-repo-mock │ │ └── index.html │ ├── instance-manager │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── jobs-client │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── logging │ │ ├── CHANGELOG │ │ │ └── index.html │ │ ├── index.html │ │ └── migration │ │ │ └── index.html │ ├── modules-exploration │ │ └── index.html │ ├── node-jwt │ │ └── index.html │ ├── node-vsi │ │ └── index.html │ ├── odata-commons │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── odata-server │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── odata-v4 │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── pdms-sdk │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── portal-cf-content-deployer │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── sbf │ │ ├── CHANGELOG │ │ │ └── index.html │ │ ├── index.html │ │ └── migration │ │ │ └── index.html │ ├── sbss │ │ ├── CHANGELOG │ │ │ └── index.html │ │ ├── index.html │ │ └── migration │ │ │ └── index.html │ ├── sds-deploy │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── service-providers │ │ └── index.html │ ├── site-app-server │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── site-content-deployer │ │ └── index.html │ ├── site-entry │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── test-nodejs-dmz-github │ │ └── index.html │ ├── textanalysis │ │ └── index.html │ ├── textbundle │ │ ├── API │ │ │ └── index.html │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── textmining │ │ └── index.html │ ├── ui-annotations │ │ └── index.html │ ├── ui5-builder-webide-extension │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── ui5-jsdocs │ │ └── index.html │ ├── ux-specification │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── ux-ui5-tooling │ │ ├── CHANGELOG │ │ │ └── index.html │ │ ├── doc │ │ │ ├── abap-deploy │ │ │ │ └── index.html │ │ │ ├── app-reload │ │ │ │ └── index.html │ │ │ ├── doc │ │ │ │ ├── abap-deploy │ │ │ │ │ └── index.html │ │ │ │ ├── app-reload │ │ │ │ │ └── index.html │ │ │ │ ├── proxy │ │ │ │ │ └── index.html │ │ │ │ └── servestatic │ │ │ │ │ └── index.html │ │ │ ├── proxy │ │ │ │ └── index.html │ │ │ └── servestatic │ │ │ │ └── index.html │ │ └── index.html │ ├── vscode-cds │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── wing-service-binding │ │ └── index.html │ ├── wing-service-explorer │ │ └── index.html │ ├── xb-msg-amqp-v091 │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── xb-msg-amqp-v100 │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── xb-msg-env │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── xb-msg-mqtt-v311 │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── xb-msg │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── xsenv │ │ ├── CHANGELOG │ │ │ └── index.html │ │ ├── index.html │ │ └── migration │ │ │ └── index.html │ ├── xsjs-test │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── xsjs │ │ ├── CHANGELOG │ │ │ └── index.html │ │ ├── differences │ │ │ └── index.html │ │ └── index.html │ ├── xsodata │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ ├── xss-secure │ │ ├── CHANGELOG │ │ │ └── index.html │ │ └── index.html │ └── xssec │ │ ├── CHANGELOG │ │ └── index.html │ │ └── index.html ├── assets │ ├── brands │ │ ├── cap-signet.svg │ │ ├── npm.svg │ │ └── sap-cloud-sdk-for-javascript.svg │ ├── icons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── udina-logo-signet.svg │ │ └── udina-logo.svg │ ├── images │ │ └── favicon.png │ ├── javascripts │ │ ├── bundle.4a5ba8d6.min.js │ │ ├── bundle.4a5ba8d6.min.js.map │ │ ├── lunr │ │ │ ├── min │ │ │ │ ├── lunr.ar.min.js │ │ │ │ ├── lunr.da.min.js │ │ │ │ ├── lunr.de.min.js │ │ │ │ ├── lunr.du.min.js │ │ │ │ ├── lunr.es.min.js │ │ │ │ ├── lunr.fi.min.js │ │ │ │ ├── lunr.fr.min.js │ │ │ │ ├── lunr.hu.min.js │ │ │ │ ├── lunr.it.min.js │ │ │ │ ├── lunr.ja.min.js │ │ │ │ ├── lunr.jp.min.js │ │ │ │ ├── lunr.multi.min.js │ │ │ │ ├── lunr.nl.min.js │ │ │ │ ├── lunr.no.min.js │ │ │ │ ├── lunr.pt.min.js │ │ │ │ ├── lunr.ro.min.js │ │ │ │ ├── lunr.ru.min.js │ │ │ │ ├── lunr.stemmer.support.min.js │ │ │ │ ├── lunr.sv.min.js │ │ │ │ ├── lunr.tr.min.js │ │ │ │ └── lunr.vi.min.js │ │ │ └── tinyseg.min.js │ │ ├── vendor.d710d30a.min.js │ │ ├── vendor.d710d30a.min.js.map │ │ └── worker │ │ │ ├── search.9b3611bd.min.js │ │ │ └── search.9b3611bd.min.js.map │ └── stylesheets │ │ ├── main.fe0cca5b.min.css │ │ ├── main.fe0cca5b.min.css.map │ │ ├── palette.a46bcfb3.min.css │ │ └── palette.a46bcfb3.min.css.map ├── index.html ├── manifest.webmanifest ├── search │ └── search_index.json ├── sitemap.xml └── sitemap.xml.gz ├── mkdocs.yml ├── new-package.json ├── npm_download.sh ├── package-original.json ├── package-template.json ├── package.json ├── packages.txt ├── source ├── apis ├── assets │ ├── brands │ │ ├── cap-signet.svg │ │ ├── npm.svg │ │ └── sap-cloud-sdk-for-javascript.svg │ └── icons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── udina-logo-signet.svg │ │ └── udina-logo.svg ├── index.md └── manifest.webmanifest └── update-package-json.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/README.md -------------------------------------------------------------------------------- /apis/abap-deploy/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/abap-deploy/CHANGELOG.md -------------------------------------------------------------------------------- /apis/abap-deploy/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/abap-deploy/LICENSE.txt -------------------------------------------------------------------------------- /apis/abap-deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/abap-deploy/README.md -------------------------------------------------------------------------------- /apis/adp-abap/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/adp-abap/LICENSE.txt -------------------------------------------------------------------------------- /apis/adp-abap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/adp-abap/README.md -------------------------------------------------------------------------------- /apis/adp-cf/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/adp-cf/LICENSE.txt -------------------------------------------------------------------------------- /apis/adp-cf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/adp-cf/README.md -------------------------------------------------------------------------------- /apis/adp-cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/adp-cli/LICENSE -------------------------------------------------------------------------------- /apis/adp-cli/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/adp-cli/LICENSE.txt -------------------------------------------------------------------------------- /apis/adp-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/adp-cli/README.md -------------------------------------------------------------------------------- /apis/adp-common/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/adp-common/LICENSE.txt -------------------------------------------------------------------------------- /apis/adp-common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/adp-common/README.md -------------------------------------------------------------------------------- /apis/adp-ve-bas-ext/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/adp-ve-bas-ext/LICENSE -------------------------------------------------------------------------------- /apis/adp-ve-bas-ext/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/adp-ve-bas-ext/LICENSE.txt -------------------------------------------------------------------------------- /apis/adp-ve-bas-ext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/adp-ve-bas-ext/README.md -------------------------------------------------------------------------------- /apis/ams-dev/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams-dev/CHANGELOG.md -------------------------------------------------------------------------------- /apis/ams-dev/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams-dev/LICENSE -------------------------------------------------------------------------------- /apis/ams-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams-dev/README.md -------------------------------------------------------------------------------- /apis/ams/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/CHANGELOG.md -------------------------------------------------------------------------------- /apis/ams/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/LICENSE -------------------------------------------------------------------------------- /apis/ams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/README.md -------------------------------------------------------------------------------- /apis/ams/doc/API/AttributeName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/API/AttributeName.md -------------------------------------------------------------------------------- /apis/ams/doc/API/Attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/API/Attributes.md -------------------------------------------------------------------------------- /apis/ams/doc/API/Call.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/API/Call.md -------------------------------------------------------------------------------- /apis/ams/doc/API/Middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/API/Middleware.md -------------------------------------------------------------------------------- /apis/ams/doc/API/PolicyDecisionPoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/API/PolicyDecisionPoint.md -------------------------------------------------------------------------------- /apis/ams/doc/CapIntegration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/CapIntegration.md -------------------------------------------------------------------------------- /apis/ams/doc/DeveloperTools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/DeveloperTools.md -------------------------------------------------------------------------------- /apis/ams/doc/Logging/AuditLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/Logging/AuditLog.md -------------------------------------------------------------------------------- /apis/ams/doc/Logging/LogPdp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/Logging/LogPdp.md -------------------------------------------------------------------------------- /apis/ams/doc/Maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/Maintenance.md -------------------------------------------------------------------------------- /apis/ams/doc/V1_V2_Migration_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/V1_V2_Migration_Guide.md -------------------------------------------------------------------------------- /apis/ams/doc/V2_V3_Migration_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/V2_V3_Migration_Guide.md -------------------------------------------------------------------------------- /apis/ams/doc/doc/API/AttributeName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/doc/API/AttributeName.md -------------------------------------------------------------------------------- /apis/ams/doc/doc/API/Attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/doc/API/Attributes.md -------------------------------------------------------------------------------- /apis/ams/doc/doc/API/Call.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/doc/API/Call.md -------------------------------------------------------------------------------- /apis/ams/doc/doc/API/Middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/doc/API/Middleware.md -------------------------------------------------------------------------------- /apis/ams/doc/doc/API/PolicyDecisionPoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/doc/API/PolicyDecisionPoint.md -------------------------------------------------------------------------------- /apis/ams/doc/doc/CapIntegration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/doc/CapIntegration.md -------------------------------------------------------------------------------- /apis/ams/doc/doc/DeveloperTools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/doc/DeveloperTools.md -------------------------------------------------------------------------------- /apis/ams/doc/doc/Logging/AuditLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/doc/Logging/AuditLog.md -------------------------------------------------------------------------------- /apis/ams/doc/doc/Logging/LogPdp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/doc/Logging/LogPdp.md -------------------------------------------------------------------------------- /apis/ams/doc/doc/Maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/doc/Maintenance.md -------------------------------------------------------------------------------- /apis/ams/doc/doc/V1_V2_Migration_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/doc/V1_V2_Migration_Guide.md -------------------------------------------------------------------------------- /apis/ams/doc/doc/V2_V3_Migration_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/doc/doc/V2_V3_Migration_Guide.md -------------------------------------------------------------------------------- /apis/ams/lib/cap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/lib/cap/README.md -------------------------------------------------------------------------------- /apis/ams/src/xcode/dcn-engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/src/xcode/dcn-engine/README.md -------------------------------------------------------------------------------- /apis/ams/src/xcode/dcn-engine/doc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ams/src/xcode/dcn-engine/doc/readme.md -------------------------------------------------------------------------------- /apis/apihub-enterprise-service-provider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/apihub-enterprise-service-provider/README.md -------------------------------------------------------------------------------- /apis/apihub-service-provider/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/apihub-service-provider/LICENSE.txt -------------------------------------------------------------------------------- /apis/apihub-service-provider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/apihub-service-provider/README.md -------------------------------------------------------------------------------- /apis/appfront-cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/appfront-cli/CHANGELOG.md -------------------------------------------------------------------------------- /apis/appfront-cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/appfront-cli/LICENSE -------------------------------------------------------------------------------- /apis/appfront-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/appfront-cli/README.md -------------------------------------------------------------------------------- /apis/approuter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/approuter/CHANGELOG.md -------------------------------------------------------------------------------- /apis/approuter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/approuter/LICENSE -------------------------------------------------------------------------------- /apis/approuter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/approuter/README.md -------------------------------------------------------------------------------- /apis/approuter/doc/doc/app-router-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/approuter/doc/doc/app-router-diagram.png -------------------------------------------------------------------------------- /apis/approuter/doc/doc/extending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/approuter/doc/doc/extending.md -------------------------------------------------------------------------------- /apis/approuter/doc/doc/sessionManagement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/approuter/doc/doc/sessionManagement.md -------------------------------------------------------------------------------- /apis/approuter/doc/doc/sizingGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/approuter/doc/doc/sizingGuide.md -------------------------------------------------------------------------------- /apis/approuter/doc/extending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/approuter/doc/extending.md -------------------------------------------------------------------------------- /apis/approuter/doc/sessionManagement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/approuter/doc/sessionManagement.md -------------------------------------------------------------------------------- /apis/approuter/doc/sizingGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/approuter/doc/sizingGuide.md -------------------------------------------------------------------------------- /apis/artifact-management-base-types/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/artifact-management-base-types/LICENSE -------------------------------------------------------------------------------- /apis/artifact-management-base-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/artifact-management-base-types/README.md -------------------------------------------------------------------------------- /apis/artifact-management-base/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/artifact-management-base/LICENSE -------------------------------------------------------------------------------- /apis/artifact-management-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/artifact-management-base/README.md -------------------------------------------------------------------------------- /apis/artifact-management-fioriplugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/artifact-management-fioriplugin/LICENSE -------------------------------------------------------------------------------- /apis/artifact-management-fioriplugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/artifact-management-fioriplugin/README.md -------------------------------------------------------------------------------- /apis/artifact-management-hanaplugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/artifact-management-hanaplugin/LICENSE -------------------------------------------------------------------------------- /apis/artifact-management-hanaplugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/artifact-management-hanaplugin/README.md -------------------------------------------------------------------------------- /apis/artifact-management-mdkplugin-types/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/artifact-management-mdkplugin-types/LICENSE -------------------------------------------------------------------------------- /apis/artifact-management-mdkplugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/artifact-management-mdkplugin/LICENSE -------------------------------------------------------------------------------- /apis/artifact-management-mdkplugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/artifact-management-mdkplugin/README.md -------------------------------------------------------------------------------- /apis/artifact-management-types/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/artifact-management-types/LICENSE -------------------------------------------------------------------------------- /apis/artifact-management-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/artifact-management-types/README.md -------------------------------------------------------------------------------- /apis/artifact-management/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/artifact-management/LICENSE -------------------------------------------------------------------------------- /apis/artifact-management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/artifact-management/README.md -------------------------------------------------------------------------------- /apis/artifact-management/dist/types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/artifact-management/dist/types/README.md -------------------------------------------------------------------------------- /apis/asp-middleware/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/asp-middleware/LICENSE.txt -------------------------------------------------------------------------------- /apis/asp-middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/asp-middleware/README.md -------------------------------------------------------------------------------- /apis/async-xsjs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/async-xsjs/CHANGELOG.md -------------------------------------------------------------------------------- /apis/async-xsjs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/async-xsjs/LICENSE -------------------------------------------------------------------------------- /apis/async-xsjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/async-xsjs/README.md -------------------------------------------------------------------------------- /apis/async-xsjs/differences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/async-xsjs/differences.md -------------------------------------------------------------------------------- /apis/async-xsjs/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/async-xsjs/npm-shrinkwrap.json -------------------------------------------------------------------------------- /apis/audit-logging/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/audit-logging/CHANGELOG.md -------------------------------------------------------------------------------- /apis/audit-logging/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/audit-logging/LICENSE -------------------------------------------------------------------------------- /apis/audit-logging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/audit-logging/README.md -------------------------------------------------------------------------------- /apis/bas-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/bas-sdk/README.md -------------------------------------------------------------------------------- /apis/cds-adapter-ina-js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-adapter-ina-js/LICENSE -------------------------------------------------------------------------------- /apis/cds-analytics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-analytics/LICENSE -------------------------------------------------------------------------------- /apis/cds-attic/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-attic/CHANGELOG.md -------------------------------------------------------------------------------- /apis/cds-attic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-attic/README.md -------------------------------------------------------------------------------- /apis/cds-common-content/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-common-content/CHANGELOG.md -------------------------------------------------------------------------------- /apis/cds-common-content/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-common-content/LICENSE -------------------------------------------------------------------------------- /apis/cds-common-content/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-common-content/README.md -------------------------------------------------------------------------------- /apis/cds-compiler/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-compiler/CHANGELOG.md -------------------------------------------------------------------------------- /apis/cds-compiler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-compiler/LICENSE -------------------------------------------------------------------------------- /apis/cds-compiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-compiler/README.md -------------------------------------------------------------------------------- /apis/cds-compiler/doc/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-compiler/doc/API.md -------------------------------------------------------------------------------- /apis/cds-compiler/doc/CHANGELOG_ARCHIVE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-compiler/doc/CHANGELOG_ARCHIVE.md -------------------------------------------------------------------------------- /apis/cds-compiler/doc/CHANGELOG_BETA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-compiler/doc/CHANGELOG_BETA.md -------------------------------------------------------------------------------- /apis/cds-compiler/doc/CHANGELOG_DEPRECATED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-compiler/doc/CHANGELOG_DEPRECATED.md -------------------------------------------------------------------------------- /apis/cds-compiler/doc/DeprecatedOptions_v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-compiler/doc/DeprecatedOptions_v2.md -------------------------------------------------------------------------------- /apis/cds-compiler/doc/IncompatibleChanges_v5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-compiler/doc/IncompatibleChanges_v5.md -------------------------------------------------------------------------------- /apis/cds-compiler/doc/IncompatibleChanges_v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-compiler/doc/IncompatibleChanges_v6.md -------------------------------------------------------------------------------- /apis/cds-compiler/doc/NameResolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-compiler/doc/NameResolution.md -------------------------------------------------------------------------------- /apis/cds-compiler/doc/Versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-compiler/doc/Versioning.md -------------------------------------------------------------------------------- /apis/cds-compiler/doc/doc/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-compiler/doc/doc/API.md -------------------------------------------------------------------------------- /apis/cds-compiler/doc/doc/CHANGELOG_ARCHIVE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-compiler/doc/doc/CHANGELOG_ARCHIVE.md -------------------------------------------------------------------------------- /apis/cds-compiler/doc/doc/CHANGELOG_BETA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-compiler/doc/doc/CHANGELOG_BETA.md -------------------------------------------------------------------------------- /apis/cds-compiler/doc/doc/CHANGELOG_DEPRECATED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-compiler/doc/doc/CHANGELOG_DEPRECATED.md -------------------------------------------------------------------------------- /apis/cds-compiler/doc/doc/DeprecatedOptions_v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-compiler/doc/doc/DeprecatedOptions_v2.md -------------------------------------------------------------------------------- /apis/cds-compiler/doc/doc/NameResolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-compiler/doc/doc/NameResolution.md -------------------------------------------------------------------------------- /apis/cds-compiler/doc/doc/Versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-compiler/doc/doc/Versioning.md -------------------------------------------------------------------------------- /apis/cds-compiler/share/messages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-compiler/share/messages/README.md -------------------------------------------------------------------------------- /apis/cds-dk/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-dk/CHANGELOG.md -------------------------------------------------------------------------------- /apis/cds-dk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-dk/LICENSE -------------------------------------------------------------------------------- /apis/cds-dk/bin/help/export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-dk/bin/help/export.md -------------------------------------------------------------------------------- /apis/cds-dk/bin/help/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-dk/bin/help/import.md -------------------------------------------------------------------------------- /apis/cds-dk/bin/help/minify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-dk/bin/help/minify.md -------------------------------------------------------------------------------- /apis/cds-dk/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-dk/npm-shrinkwrap.json -------------------------------------------------------------------------------- /apis/cds-dk/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-dk/readme.md -------------------------------------------------------------------------------- /apis/cds-fiori/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-fiori/CHANGELOG.md -------------------------------------------------------------------------------- /apis/cds-fiori/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-fiori/LICENSE -------------------------------------------------------------------------------- /apis/cds-fiori/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-fiori/README.md -------------------------------------------------------------------------------- /apis/cds-foss/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-foss/CHANGELOG.md -------------------------------------------------------------------------------- /apis/cds-foss/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-foss/LICENSE -------------------------------------------------------------------------------- /apis/cds-foss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-foss/README.md -------------------------------------------------------------------------------- /apis/cds-hana/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-hana/CHANGELOG.md -------------------------------------------------------------------------------- /apis/cds-hana/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-hana/LICENSE -------------------------------------------------------------------------------- /apis/cds-hana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-hana/README.md -------------------------------------------------------------------------------- /apis/cds-lsp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/CHANGELOG.md -------------------------------------------------------------------------------- /apis/cds-lsp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/LICENSE -------------------------------------------------------------------------------- /apis/cds-lsp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/README.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/CDL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/CDL.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/CONTRIBUTING.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/CQL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/CQL.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/CSN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/CSN.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/Formatting-Options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/Formatting-Options.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/INSTALLATION.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/TYPES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/TYPES.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/annotationHandler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/annotationHandler.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/common.cds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/common.cds.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/common.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/doc/CDL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/doc/CDL.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/doc/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/doc/CONTRIBUTING.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/doc/CQL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/doc/CQL.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/doc/CSN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/doc/CSN.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/doc/Formatting-Options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/doc/Formatting-Options.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/doc/INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/doc/INSTALLATION.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/doc/TYPES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/doc/TYPES.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/doc/annotationHandler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/doc/annotationHandler.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/doc/common.cds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/doc/common.cds.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/doc/common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/doc/common.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/doc/grammar-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/doc/grammar-changes.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/doc/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/doc/settings.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/grammar-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/grammar-changes.md -------------------------------------------------------------------------------- /apis/cds-lsp/doc/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-lsp/doc/settings.md -------------------------------------------------------------------------------- /apis/cds-mtxs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-mtxs/CHANGELOG.md -------------------------------------------------------------------------------- /apis/cds-mtxs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-mtxs/LICENSE -------------------------------------------------------------------------------- /apis/cds-mtxs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-mtxs/README.md -------------------------------------------------------------------------------- /apis/cds-odata-v2-adapter-proxy/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-odata-v2-adapter-proxy/CHANGELOG.md -------------------------------------------------------------------------------- /apis/cds-odata-v2-adapter-proxy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-odata-v2-adapter-proxy/LICENSE -------------------------------------------------------------------------------- /apis/cds-odata-v2-adapter-proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-odata-v2-adapter-proxy/README.md -------------------------------------------------------------------------------- /apis/cds-oyster/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-oyster/CHANGELOG.md -------------------------------------------------------------------------------- /apis/cds-oyster/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-oyster/LICENSE -------------------------------------------------------------------------------- /apis/cds-oyster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-oyster/README.md -------------------------------------------------------------------------------- /apis/cds-rfc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-rfc/CHANGELOG.md -------------------------------------------------------------------------------- /apis/cds-rfc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-rfc/LICENSE -------------------------------------------------------------------------------- /apis/cds-rfc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds-rfc/readme.md -------------------------------------------------------------------------------- /apis/cds/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds/CHANGELOG.md -------------------------------------------------------------------------------- /apis/cds/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds/LICENSE -------------------------------------------------------------------------------- /apis/cds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds/README.md -------------------------------------------------------------------------------- /apis/cds/libx/common/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds/libx/common/readme.md -------------------------------------------------------------------------------- /apis/cds/libx/connect/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds/libx/connect/readme.md -------------------------------------------------------------------------------- /apis/cds/libx/fiori/draft/readme.md: -------------------------------------------------------------------------------- 1 | All Draft-related stuff goes here -------------------------------------------------------------------------------- /apis/cds/libx/fiori/readme.md: -------------------------------------------------------------------------------- 1 | # Fiori-related Service Providers -------------------------------------------------------------------------------- /apis/cds/libx/hana/readme.md: -------------------------------------------------------------------------------- 1 | hana service -------------------------------------------------------------------------------- /apis/cds/libx/msg/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds/libx/msg/readme.md -------------------------------------------------------------------------------- /apis/cds/libx/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cds/libx/readme.md -------------------------------------------------------------------------------- /apis/cds/libx/rest/readme.md: -------------------------------------------------------------------------------- 1 | # REST Protocol Adapter -------------------------------------------------------------------------------- /apis/cds/libx/sqlite/readme.md: -------------------------------------------------------------------------------- 1 | sqlite service -------------------------------------------------------------------------------- /apis/cf-tools-local/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cf-tools-local/LICENSE.txt -------------------------------------------------------------------------------- /apis/cf-tools-local/README.md: -------------------------------------------------------------------------------- 1 | The cf cli service info plugin installer. -------------------------------------------------------------------------------- /apis/cf-tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cf-tools/LICENSE -------------------------------------------------------------------------------- /apis/cf-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cf-tools/README.md -------------------------------------------------------------------------------- /apis/cli-core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cli-core/CHANGELOG.md -------------------------------------------------------------------------------- /apis/cli-core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cli-core/LICENSE -------------------------------------------------------------------------------- /apis/cli-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/cli-core/README.md -------------------------------------------------------------------------------- /apis/consume-services-types/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/consume-services-types/LICENSE.txt -------------------------------------------------------------------------------- /apis/consume-services-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/consume-services-types/README.md -------------------------------------------------------------------------------- /apis/consume-services/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/consume-services/LICENSE.txt -------------------------------------------------------------------------------- /apis/consume-services/README.md: -------------------------------------------------------------------------------- 1 | # consume-services 2 | -------------------------------------------------------------------------------- /apis/create-hana-database-artifact/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/create-hana-database-artifact/CHANGELOG.md -------------------------------------------------------------------------------- /apis/create-hana-database-artifact/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/create-hana-database-artifact/LICENSE -------------------------------------------------------------------------------- /apis/create-hana-database-artifact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/create-hana-database-artifact/README.md -------------------------------------------------------------------------------- /apis/csn-interop-renderer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/csn-interop-renderer/LICENSE -------------------------------------------------------------------------------- /apis/csn-interop-renderer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/csn-interop-renderer/README.md -------------------------------------------------------------------------------- /apis/csn-interop-specification/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/csn-interop-specification/LICENSE -------------------------------------------------------------------------------- /apis/csn-interop-specification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/csn-interop-specification/README.md -------------------------------------------------------------------------------- /apis/datasphere-cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/datasphere-cli/CHANGELOG.md -------------------------------------------------------------------------------- /apis/datasphere-cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/datasphere-cli/LICENSE -------------------------------------------------------------------------------- /apis/datasphere-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/datasphere-cli/README.md -------------------------------------------------------------------------------- /apis/dev-cap-tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/dev-cap-tools/LICENSE -------------------------------------------------------------------------------- /apis/dev-cap-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/dev-cap-tools/README.md -------------------------------------------------------------------------------- /apis/di.code-validation.core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/di.code-validation.core/README.md -------------------------------------------------------------------------------- /apis/di.code-validation.grunt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/di.code-validation.grunt/README.md -------------------------------------------------------------------------------- /apis/di.code-validation.grunt/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/di.code-validation.grunt/npm-shrinkwrap.json -------------------------------------------------------------------------------- /apis/di.code-validation.js/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/di.code-validation.js/LICENSE.txt -------------------------------------------------------------------------------- /apis/di.code-validation.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/di.code-validation.js/README.md -------------------------------------------------------------------------------- /apis/di.code-validation.json/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/di.code-validation.json/LICENSE.txt -------------------------------------------------------------------------------- /apis/di.code-validation.xml/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/di.code-validation.xml/LICENSE.txt -------------------------------------------------------------------------------- /apis/di.code-validation.xml/README.md: -------------------------------------------------------------------------------- 1 | # di.code-validation.xml 2 | -------------------------------------------------------------------------------- /apis/dwf-core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/dwf-core/CHANGELOG.md -------------------------------------------------------------------------------- /apis/dwf-core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/dwf-core/LICENSE -------------------------------------------------------------------------------- /apis/dwf-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/dwf-core/README.md -------------------------------------------------------------------------------- /apis/dwf-deploy/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/dwf-deploy/CHANGELOG.md -------------------------------------------------------------------------------- /apis/dwf-deploy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/dwf-deploy/LICENSE -------------------------------------------------------------------------------- /apis/dwf-deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/dwf-deploy/README.md -------------------------------------------------------------------------------- /apis/dwf-deploy/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/dwf-deploy/npm-shrinkwrap.json -------------------------------------------------------------------------------- /apis/dwf-dlm-backend/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/dwf-dlm-backend/CHANGELOG.md -------------------------------------------------------------------------------- /apis/dwf-dlm-backend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/dwf-dlm-backend/LICENSE -------------------------------------------------------------------------------- /apis/dwf-dlm-backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/dwf-dlm-backend/README.md -------------------------------------------------------------------------------- /apis/dwf-dlm-backend/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/dwf-dlm-backend/npm-shrinkwrap.json -------------------------------------------------------------------------------- /apis/dwf-dws-client/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/dwf-dws-client/CHANGELOG.md -------------------------------------------------------------------------------- /apis/dwf-dws-client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/dwf-dws-client/LICENSE -------------------------------------------------------------------------------- /apis/dwf-dws-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/dwf-dws-client/README.md -------------------------------------------------------------------------------- /apis/dwf-dws-client/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/dwf-dws-client/npm-shrinkwrap.json -------------------------------------------------------------------------------- /apis/dwf-generator/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/dwf-generator/npm-shrinkwrap.json -------------------------------------------------------------------------------- /apis/dwf-ndso-backend/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/dwf-ndso-backend/CHANGELOG.md -------------------------------------------------------------------------------- /apis/dwf-ndso-backend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/dwf-ndso-backend/LICENSE -------------------------------------------------------------------------------- /apis/dwf-ndso-backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/dwf-ndso-backend/README.md -------------------------------------------------------------------------------- /apis/dwf-ndso-backend/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/dwf-ndso-backend/npm-shrinkwrap.json -------------------------------------------------------------------------------- /apis/e2e-trace/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/e2e-trace/CHANGELOG.md -------------------------------------------------------------------------------- /apis/e2e-trace/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/e2e-trace/LICENSE -------------------------------------------------------------------------------- /apis/e2e-trace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/e2e-trace/README.md -------------------------------------------------------------------------------- /apis/eslint-config/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/eslint-config/LICENSE -------------------------------------------------------------------------------- /apis/eslint-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/eslint-config/README.md -------------------------------------------------------------------------------- /apis/eslint-plugin-cds/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/eslint-plugin-cds/CHANGELOG.md -------------------------------------------------------------------------------- /apis/eslint-plugin-cds/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/eslint-plugin-cds/LICENSE -------------------------------------------------------------------------------- /apis/eslint-plugin-cds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/eslint-plugin-cds/README.md -------------------------------------------------------------------------------- /apis/eslint-plugin-ui5-jsdocs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/eslint-plugin-ui5-jsdocs/LICENSE.txt -------------------------------------------------------------------------------- /apis/eslint-plugin-ui5-jsdocs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/eslint-plugin-ui5-jsdocs/README.md -------------------------------------------------------------------------------- /apis/eslint-plugin-webide-feature/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/eslint-plugin-webide-feature/CHANGELOG.md -------------------------------------------------------------------------------- /apis/eslint-plugin-webide-feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/eslint-plugin-webide-feature/README.md -------------------------------------------------------------------------------- /apis/external-service-mashup/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/external-service-mashup/LICENSE -------------------------------------------------------------------------------- /apis/external-service-mashup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/external-service-mashup/README.md -------------------------------------------------------------------------------- /apis/faas/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/faas/CHANGELOG.md -------------------------------------------------------------------------------- /apis/faas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/faas/README.md -------------------------------------------------------------------------------- /apis/fibers/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/fibers/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /apis/fibers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/fibers/LICENSE -------------------------------------------------------------------------------- /apis/fibers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/fibers/README.md -------------------------------------------------------------------------------- /apis/fibers/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/fibers/npm-shrinkwrap.json -------------------------------------------------------------------------------- /apis/fibrous/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/fibrous/LICENSE.md -------------------------------------------------------------------------------- /apis/fibrous/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/fibrous/README.md -------------------------------------------------------------------------------- /apis/fiori-json-services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/fiori-json-services/README.md -------------------------------------------------------------------------------- /apis/generator-adaptation-project/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-adaptation-project/LICENSE.txt -------------------------------------------------------------------------------- /apis/generator-adaptation-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-adaptation-project/README.md -------------------------------------------------------------------------------- /apis/generator-add-hdb-module/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-add-hdb-module/CHANGELOG.md -------------------------------------------------------------------------------- /apis/generator-add-hdb-module/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-add-hdb-module/LICENSE -------------------------------------------------------------------------------- /apis/generator-add-hdb-module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-add-hdb-module/README.md -------------------------------------------------------------------------------- /apis/generator-aicore/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-aicore/LICENSE.txt -------------------------------------------------------------------------------- /apis/generator-aicore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-aicore/README.md -------------------------------------------------------------------------------- /apis/generator-base-mta-module/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-base-mta-module/LICENSE -------------------------------------------------------------------------------- /apis/generator-base-mta-module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-base-mta-module/README.md -------------------------------------------------------------------------------- /apis/generator-cap-project/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-cap-project/CHANGELOG.md -------------------------------------------------------------------------------- /apis/generator-cap-project/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-cap-project/LICENSE -------------------------------------------------------------------------------- /apis/generator-cap-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-cap-project/README.md -------------------------------------------------------------------------------- /apis/generator-cds/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-cds/CHANGELOG.md -------------------------------------------------------------------------------- /apis/generator-cds/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-cds/LICENSE -------------------------------------------------------------------------------- /apis/generator-cds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-cds/README.md -------------------------------------------------------------------------------- /apis/generator-cds/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-cds/npm-shrinkwrap.json -------------------------------------------------------------------------------- /apis/generator-fiori/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-fiori/CHANGELOG.md -------------------------------------------------------------------------------- /apis/generator-fiori/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-fiori/LICENSE -------------------------------------------------------------------------------- /apis/generator-fiori/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-fiori/README.md -------------------------------------------------------------------------------- /apis/generator-hdb-project/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-hdb-project/CHANGELOG.md -------------------------------------------------------------------------------- /apis/generator-hdb-project/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-hdb-project/LICENSE -------------------------------------------------------------------------------- /apis/generator-mdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-mdk/LICENSE -------------------------------------------------------------------------------- /apis/generator-mdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/generator-mdk/README.md -------------------------------------------------------------------------------- /apis/graph-toolkit/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/graph-toolkit/LICENSE.txt -------------------------------------------------------------------------------- /apis/graph-toolkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/graph-toolkit/README.md -------------------------------------------------------------------------------- /apis/grunt-sapui5-bestpractice-build/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/grunt-sapui5-bestpractice-build/LICENSE.txt -------------------------------------------------------------------------------- /apis/grunt-sapui5-bestpractice-build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/grunt-sapui5-bestpractice-build/README.md -------------------------------------------------------------------------------- /apis/grunt-sapui5-bestpractice-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/grunt-sapui5-bestpractice-test/README.md -------------------------------------------------------------------------------- /apis/grunt-tests-webide-bestpractice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/grunt-tests-webide-bestpractice/README.md -------------------------------------------------------------------------------- /apis/hana-client/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-client/CHANGELOG.md -------------------------------------------------------------------------------- /apis/hana-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-client/README.md -------------------------------------------------------------------------------- /apis/hana-client/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-client/npm-shrinkwrap.json -------------------------------------------------------------------------------- /apis/hana-database-explorer/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-database-explorer/CHANGELOG.md -------------------------------------------------------------------------------- /apis/hana-database-explorer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-database-explorer/LICENSE -------------------------------------------------------------------------------- /apis/hana-database-explorer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-database-explorer/README.md -------------------------------------------------------------------------------- /apis/hana-eim-sditools-vscode/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-eim-sditools-vscode/CHANGELOG.md -------------------------------------------------------------------------------- /apis/hana-eim-sditools-vscode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-eim-sditools-vscode/LICENSE -------------------------------------------------------------------------------- /apis/hana-eim-sditools-vscode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-eim-sditools-vscode/README.md -------------------------------------------------------------------------------- /apis/hana-performance-tools/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-performance-tools/CHANGELOG.md -------------------------------------------------------------------------------- /apis/hana-performance-tools/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-performance-tools/LICENSE.txt -------------------------------------------------------------------------------- /apis/hana-performance-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-performance-tools/README.md -------------------------------------------------------------------------------- /apis/hana-project-explorer/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-project-explorer/CHANGELOG.md -------------------------------------------------------------------------------- /apis/hana-project-explorer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-project-explorer/LICENSE -------------------------------------------------------------------------------- /apis/hana-project-explorer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-project-explorer/README.md -------------------------------------------------------------------------------- /apis/hana-sqlscript-lsp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-sqlscript-lsp/CHANGELOG.md -------------------------------------------------------------------------------- /apis/hana-sqlscript-lsp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-sqlscript-lsp/LICENSE -------------------------------------------------------------------------------- /apis/hana-sqlscript-lsp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-sqlscript-lsp/README.md -------------------------------------------------------------------------------- /apis/hana-theme-vscode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-theme-vscode/LICENSE -------------------------------------------------------------------------------- /apis/hana-theme-vscode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-theme-vscode/README.md -------------------------------------------------------------------------------- /apis/hana-tooling-feature-toggles/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-tooling-feature-toggles/CHANGELOG.md -------------------------------------------------------------------------------- /apis/hana-tooling-feature-toggles/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-tooling-feature-toggles/LICENSE -------------------------------------------------------------------------------- /apis/hana-tooling-feature-toggles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-tooling-feature-toggles/README.md -------------------------------------------------------------------------------- /apis/hana-xs-tools/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-xs-tools/CHANGELOG.md -------------------------------------------------------------------------------- /apis/hana-xs-tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-xs-tools/LICENSE -------------------------------------------------------------------------------- /apis/hana-xs-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hana-xs-tools/README.md -------------------------------------------------------------------------------- /apis/hdbext/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hdbext/CHANGELOG.md -------------------------------------------------------------------------------- /apis/hdbext/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hdbext/LICENSE -------------------------------------------------------------------------------- /apis/hdbext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hdbext/README.md -------------------------------------------------------------------------------- /apis/hdbext/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hdbext/migration.md -------------------------------------------------------------------------------- /apis/hdbext/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hdbext/npm-shrinkwrap.json -------------------------------------------------------------------------------- /apis/hdi-deploy/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hdi-deploy/CHANGELOG.md -------------------------------------------------------------------------------- /apis/hdi-deploy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hdi-deploy/LICENSE -------------------------------------------------------------------------------- /apis/hdi-deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hdi-deploy/README.md -------------------------------------------------------------------------------- /apis/hdi-dynamic-deploy/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hdi-dynamic-deploy/CHANGELOG.md -------------------------------------------------------------------------------- /apis/hdi-dynamic-deploy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hdi-dynamic-deploy/LICENSE -------------------------------------------------------------------------------- /apis/hdi-dynamic-deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hdi-dynamic-deploy/README.md -------------------------------------------------------------------------------- /apis/hdi/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hdi/CHANGELOG.md -------------------------------------------------------------------------------- /apis/hdi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hdi/LICENSE -------------------------------------------------------------------------------- /apis/hdi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hdi/README.md -------------------------------------------------------------------------------- /apis/hrtt-core-vscode/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hrtt-core-vscode/CHANGELOG.md -------------------------------------------------------------------------------- /apis/hrtt-core-vscode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hrtt-core-vscode/LICENSE -------------------------------------------------------------------------------- /apis/hrtt-core-vscode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/hrtt-core-vscode/README.md -------------------------------------------------------------------------------- /apis/html5-app-deployer/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/html5-app-deployer/CHANGELOG.md -------------------------------------------------------------------------------- /apis/html5-app-deployer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/html5-app-deployer/LICENSE -------------------------------------------------------------------------------- /apis/html5-app-deployer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/html5-app-deployer/README.md -------------------------------------------------------------------------------- /apis/html5-repo-mock/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/html5-repo-mock/CHANGELOG.md -------------------------------------------------------------------------------- /apis/html5-repo-mock/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/html5-repo-mock/LICENSE.txt -------------------------------------------------------------------------------- /apis/html5-repo-mock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/html5-repo-mock/README.md -------------------------------------------------------------------------------- /apis/instance-manager/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/instance-manager/CHANGELOG.md -------------------------------------------------------------------------------- /apis/instance-manager/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/instance-manager/LICENSE -------------------------------------------------------------------------------- /apis/instance-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/instance-manager/README.md -------------------------------------------------------------------------------- /apis/iq-client/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/iq-client/CHANGELOG.md -------------------------------------------------------------------------------- /apis/iq-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/iq-client/README.md -------------------------------------------------------------------------------- /apis/iq-client/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/iq-client/npm-shrinkwrap.json -------------------------------------------------------------------------------- /apis/jobs-client/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/jobs-client/CHANGELOG.md -------------------------------------------------------------------------------- /apis/jobs-client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/jobs-client/LICENSE -------------------------------------------------------------------------------- /apis/jobs-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/jobs-client/README.md -------------------------------------------------------------------------------- /apis/jobs-client/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/jobs-client/npm-shrinkwrap.json -------------------------------------------------------------------------------- /apis/logger-for-bas-extensions/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/logger-for-bas-extensions/LICENSE -------------------------------------------------------------------------------- /apis/logger-for-bas-extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/logger-for-bas-extensions/README.md -------------------------------------------------------------------------------- /apis/logging/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/logging/CHANGELOG.md -------------------------------------------------------------------------------- /apis/logging/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/logging/LICENSE -------------------------------------------------------------------------------- /apis/logging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/logging/README.md -------------------------------------------------------------------------------- /apis/logging/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/logging/migration.md -------------------------------------------------------------------------------- /apis/low-code-event-handler/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/low-code-event-handler/CHANGELOG.md -------------------------------------------------------------------------------- /apis/low-code-event-handler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/low-code-event-handler/LICENSE -------------------------------------------------------------------------------- /apis/low-code-event-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/low-code-event-handler/README.md -------------------------------------------------------------------------------- /apis/mdk-mcp-server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mdk-mcp-server/LICENSE -------------------------------------------------------------------------------- /apis/mdk-mcp-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mdk-mcp-server/README.md -------------------------------------------------------------------------------- /apis/mdk-mcp-server/res/schemas/24.11/Images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mdk-mcp-server/res/schemas/24.11/Images.md -------------------------------------------------------------------------------- /apis/mdk-mcp-server/res/schemas/24.11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mdk-mcp-server/res/schemas/24.11/README.md -------------------------------------------------------------------------------- /apis/mdk-mcp-server/res/schemas/24.11/Rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mdk-mcp-server/res/schemas/24.11/Rule.md -------------------------------------------------------------------------------- /apis/mdk-mcp-server/res/schemas/24.7/Images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mdk-mcp-server/res/schemas/24.7/Images.md -------------------------------------------------------------------------------- /apis/mdk-mcp-server/res/schemas/24.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mdk-mcp-server/res/schemas/24.7/README.md -------------------------------------------------------------------------------- /apis/mdk-mcp-server/res/schemas/24.7/Rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mdk-mcp-server/res/schemas/24.7/Rule.md -------------------------------------------------------------------------------- /apis/mdk-mcp-server/res/schemas/25.6/Images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mdk-mcp-server/res/schemas/25.6/Images.md -------------------------------------------------------------------------------- /apis/mdk-mcp-server/res/schemas/25.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mdk-mcp-server/res/schemas/25.6/README.md -------------------------------------------------------------------------------- /apis/mdk-mcp-server/res/schemas/25.6/Rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mdk-mcp-server/res/schemas/25.6/Rule.md -------------------------------------------------------------------------------- /apis/mdk-mcp-server/res/schemas/25.9/Images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mdk-mcp-server/res/schemas/25.9/Images.md -------------------------------------------------------------------------------- /apis/mdk-mcp-server/res/schemas/25.9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mdk-mcp-server/res/schemas/25.9/README.md -------------------------------------------------------------------------------- /apis/mdk-mcp-server/res/schemas/25.9/Rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mdk-mcp-server/res/schemas/25.9/Rule.md -------------------------------------------------------------------------------- /apis/mdk-mcp-server/res/schemas/Images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mdk-mcp-server/res/schemas/Images.md -------------------------------------------------------------------------------- /apis/mdk-mcp-server/res/schemas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mdk-mcp-server/res/schemas/README.md -------------------------------------------------------------------------------- /apis/mdk-mcp-server/res/schemas/Rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mdk-mcp-server/res/schemas/Rule.md -------------------------------------------------------------------------------- /apis/mdk-mcp-server/res/schemas/Styles.less.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mdk-mcp-server/res/schemas/Styles.less.md -------------------------------------------------------------------------------- /apis/mdk-tools/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mdk-tools/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /apis/mdk-tools/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mdk-tools/LICENSE.txt -------------------------------------------------------------------------------- /apis/mdk-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mdk-tools/README.md -------------------------------------------------------------------------------- /apis/mdk-tools/lib/bundler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mdk-tools/lib/bundler/README.md -------------------------------------------------------------------------------- /apis/modules-exploration/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/modules-exploration/LICENSE.txt -------------------------------------------------------------------------------- /apis/modules-exploration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/modules-exploration/README.md -------------------------------------------------------------------------------- /apis/mta-lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mta-lib/LICENSE -------------------------------------------------------------------------------- /apis/mta-lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/mta-lib/README.md -------------------------------------------------------------------------------- /apis/node-jwt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/node-jwt/LICENSE -------------------------------------------------------------------------------- /apis/node-jwt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/node-jwt/README.md -------------------------------------------------------------------------------- /apis/node-vsi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/node-vsi/LICENSE -------------------------------------------------------------------------------- /apis/node-vsi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/node-vsi/README.md -------------------------------------------------------------------------------- /apis/odata-v4/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/odata-v4/CHANGELOG.md -------------------------------------------------------------------------------- /apis/odata-v4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/odata-v4/README.md -------------------------------------------------------------------------------- /apis/odata-v4/lib/csdl/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/odata-v4/lib/csdl/info.md -------------------------------------------------------------------------------- /apis/odata-v4/lib/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/odata-v4/lib/info.md -------------------------------------------------------------------------------- /apis/odata-v4/lib/uri/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/odata-v4/lib/uri/info.md -------------------------------------------------------------------------------- /apis/odata-v4/lib/utils/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/odata-v4/lib/utils/info.md -------------------------------------------------------------------------------- /apis/odata-v4/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/odata-v4/npm-shrinkwrap.json -------------------------------------------------------------------------------- /apis/open-resource-discovery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/open-resource-discovery/LICENSE -------------------------------------------------------------------------------- /apis/open-resource-discovery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/open-resource-discovery/README.md -------------------------------------------------------------------------------- /apis/open.fe/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/open.fe/LICENSE.txt -------------------------------------------------------------------------------- /apis/open.fe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/open.fe/README.md -------------------------------------------------------------------------------- /apis/openapi-specification/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/openapi-specification/LICENSE -------------------------------------------------------------------------------- /apis/openapi-specification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/openapi-specification/README.md -------------------------------------------------------------------------------- /apis/oyster-metadata-aarch64-apple-darwin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/oyster-metadata-aarch64-apple-darwin/LICENSE -------------------------------------------------------------------------------- /apis/oyster-metadata-x86_64-apple-darwin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/oyster-metadata-x86_64-apple-darwin/LICENSE -------------------------------------------------------------------------------- /apis/oyster-metadata/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/oyster-metadata/LICENSE -------------------------------------------------------------------------------- /apis/oyster-metadata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/oyster-metadata/README.md -------------------------------------------------------------------------------- /apis/oyster-runtime-aarch64-apple-darwin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/oyster-runtime-aarch64-apple-darwin/LICENSE -------------------------------------------------------------------------------- /apis/oyster-runtime-x86_64-apple-darwin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/oyster-runtime-x86_64-apple-darwin/LICENSE -------------------------------------------------------------------------------- /apis/oyster-runtime-x86_64-apple-darwin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/oyster-runtime-x86_64-apple-darwin/README.md -------------------------------------------------------------------------------- /apis/oyster-runtime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/oyster-runtime/LICENSE -------------------------------------------------------------------------------- /apis/oyster-runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/oyster-runtime/README.md -------------------------------------------------------------------------------- /apis/oyster-sdk-js-aarch64-apple-darwin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/oyster-sdk-js-aarch64-apple-darwin/LICENSE -------------------------------------------------------------------------------- /apis/oyster-sdk-js-aarch64-apple-darwin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/oyster-sdk-js-aarch64-apple-darwin/README.md -------------------------------------------------------------------------------- /apis/oyster-sdk-js-bundler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/oyster-sdk-js-bundler/LICENSE -------------------------------------------------------------------------------- /apis/oyster-sdk-js-x86_64-apple-darwin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/oyster-sdk-js-x86_64-apple-darwin/LICENSE -------------------------------------------------------------------------------- /apis/oyster-sdk-js-x86_64-apple-darwin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/oyster-sdk-js-x86_64-apple-darwin/README.md -------------------------------------------------------------------------------- /apis/oyster-sdk-js-x86_64-pc-windows-msvc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/oyster-sdk-js-x86_64-pc-windows-msvc/LICENSE -------------------------------------------------------------------------------- /apis/oyster-sdk-js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/oyster-sdk-js/LICENSE -------------------------------------------------------------------------------- /apis/oyster-sdk-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/oyster-sdk-js/README.md -------------------------------------------------------------------------------- /apis/pdms-sdk/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/pdms-sdk/CHANGELOG.md -------------------------------------------------------------------------------- /apis/pdms-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/pdms-sdk/README.md -------------------------------------------------------------------------------- /apis/portal-cf-content-deployer/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/portal-cf-content-deployer/CHANGELOG.md -------------------------------------------------------------------------------- /apis/portal-cf-content-deployer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/portal-cf-content-deployer/LICENSE -------------------------------------------------------------------------------- /apis/portal-cf-content-deployer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/portal-cf-content-deployer/README.md -------------------------------------------------------------------------------- /apis/sbf/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/sbf/CHANGELOG.md -------------------------------------------------------------------------------- /apis/sbf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/sbf/LICENSE -------------------------------------------------------------------------------- /apis/sbf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/sbf/README.md -------------------------------------------------------------------------------- /apis/sbf/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/sbf/migration.md -------------------------------------------------------------------------------- /apis/sbss/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/sbss/CHANGELOG.md -------------------------------------------------------------------------------- /apis/sbss/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/sbss/LICENSE -------------------------------------------------------------------------------- /apis/sbss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/sbss/README.md -------------------------------------------------------------------------------- /apis/sbss/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/sbss/migration.md -------------------------------------------------------------------------------- /apis/sds-deploy/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/sds-deploy/CHANGELOG.md -------------------------------------------------------------------------------- /apis/sds-deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/sds-deploy/README.md -------------------------------------------------------------------------------- /apis/sds-deploy/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/sds-deploy/npm-shrinkwrap.json -------------------------------------------------------------------------------- /apis/service-provider-apis/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/service-provider-apis/LICENSE.txt -------------------------------------------------------------------------------- /apis/service-provider-apis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/service-provider-apis/README.md -------------------------------------------------------------------------------- /apis/service-providers/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/service-providers/LICENSE.txt -------------------------------------------------------------------------------- /apis/service-providers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/service-providers/README.md -------------------------------------------------------------------------------- /apis/site-app-server/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/site-app-server/CHANGELOG.md -------------------------------------------------------------------------------- /apis/site-app-server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/site-app-server/LICENSE -------------------------------------------------------------------------------- /apis/site-app-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/site-app-server/README.md -------------------------------------------------------------------------------- /apis/site-content-deployer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/site-content-deployer/LICENSE -------------------------------------------------------------------------------- /apis/site-content-deployer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/site-content-deployer/README.md -------------------------------------------------------------------------------- /apis/site-entry/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/site-entry/CHANGELOG.md -------------------------------------------------------------------------------- /apis/site-entry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/site-entry/LICENSE -------------------------------------------------------------------------------- /apis/site-entry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/site-entry/README.md -------------------------------------------------------------------------------- /apis/sql-interface-specification/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/sql-interface-specification/LICENSE -------------------------------------------------------------------------------- /apis/sql-interface-specification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/sql-interface-specification/README.md -------------------------------------------------------------------------------- /apis/swa-for-sapbas-vsx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/swa-for-sapbas-vsx/LICENSE -------------------------------------------------------------------------------- /apis/swa-for-sapbas-vsx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/swa-for-sapbas-vsx/README.md -------------------------------------------------------------------------------- /apis/textanalysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/textanalysis/README.md -------------------------------------------------------------------------------- /apis/textbundle/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/textbundle/API.md -------------------------------------------------------------------------------- /apis/textbundle/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/textbundle/CHANGELOG.md -------------------------------------------------------------------------------- /apis/textbundle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/textbundle/LICENSE -------------------------------------------------------------------------------- /apis/textbundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/textbundle/README.md -------------------------------------------------------------------------------- /apis/textmining/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/textmining/README.md -------------------------------------------------------------------------------- /apis/ucl-provider/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ucl-provider/LICENSE.txt -------------------------------------------------------------------------------- /apis/ucl-provider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ucl-provider/README.md -------------------------------------------------------------------------------- /apis/ui-annotations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ui-annotations/README.md -------------------------------------------------------------------------------- /apis/ui5-builder-webide-extension/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ui5-builder-webide-extension/CHANGELOG.md -------------------------------------------------------------------------------- /apis/ui5-builder-webide-extension/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ui5-builder-webide-extension/LICENSE.txt -------------------------------------------------------------------------------- /apis/ui5-builder-webide-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ui5-builder-webide-extension/README.md -------------------------------------------------------------------------------- /apis/ui5-webcomponents-vscode-css-mapping/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ui5-webcomponents-vscode-css-mapping/LICENSE -------------------------------------------------------------------------------- /apis/ux-annotation-modeler-bas-ext/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-annotation-modeler-bas-ext/CHANGELOG.md -------------------------------------------------------------------------------- /apis/ux-annotation-modeler-bas-ext/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-annotation-modeler-bas-ext/LICENSE -------------------------------------------------------------------------------- /apis/ux-annotation-modeler-bas-ext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-annotation-modeler-bas-ext/README.md -------------------------------------------------------------------------------- /apis/ux-application-modeler-bas-ext/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-application-modeler-bas-ext/CHANGELOG.md -------------------------------------------------------------------------------- /apis/ux-application-modeler-bas-ext/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-application-modeler-bas-ext/LICENSE -------------------------------------------------------------------------------- /apis/ux-application-modeler-bas-ext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-application-modeler-bas-ext/README.md -------------------------------------------------------------------------------- /apis/ux-cds-compiler-facade/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-cds-compiler-facade/LICENSE -------------------------------------------------------------------------------- /apis/ux-cds-compiler-facade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-cds-compiler-facade/README.md -------------------------------------------------------------------------------- /apis/ux-help-bas-ext/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-help-bas-ext/CHANGELOG.md -------------------------------------------------------------------------------- /apis/ux-help-bas-ext/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-help-bas-ext/LICENSE -------------------------------------------------------------------------------- /apis/ux-help-bas-ext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-help-bas-ext/README.md -------------------------------------------------------------------------------- /apis/ux-service-modeler-bas-ext/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-service-modeler-bas-ext/CHANGELOG.md -------------------------------------------------------------------------------- /apis/ux-service-modeler-bas-ext/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-service-modeler-bas-ext/LICENSE -------------------------------------------------------------------------------- /apis/ux-service-modeler-bas-ext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-service-modeler-bas-ext/README.md -------------------------------------------------------------------------------- /apis/ux-specification/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-specification/CHANGELOG.md -------------------------------------------------------------------------------- /apis/ux-specification/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-specification/LICENSE -------------------------------------------------------------------------------- /apis/ux-specification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-specification/README.md -------------------------------------------------------------------------------- /apis/ux-ui5-fe-mockserver-middleware/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-ui5-fe-mockserver-middleware/CHANGELOG.md -------------------------------------------------------------------------------- /apis/ux-ui5-fe-mockserver-middleware/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-ui5-fe-mockserver-middleware/LICENSE -------------------------------------------------------------------------------- /apis/ux-ui5-fe-mockserver-middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-ui5-fe-mockserver-middleware/README.md -------------------------------------------------------------------------------- /apis/ux-ui5-tooling/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-ui5-tooling/CHANGELOG.md -------------------------------------------------------------------------------- /apis/ux-ui5-tooling/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-ui5-tooling/LICENSE -------------------------------------------------------------------------------- /apis/ux-ui5-tooling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-ui5-tooling/README.md -------------------------------------------------------------------------------- /apis/ux-ui5-tooling/dist/markdowns/add/add.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-ui5-tooling/dist/markdowns/add/add.en.md -------------------------------------------------------------------------------- /apis/ux-ui5-tooling/dist/markdowns/run/run.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/ux-ui5-tooling/dist/markdowns/run/run.en.md -------------------------------------------------------------------------------- /apis/vscode-cds/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/vscode-cds/CHANGELOG.md -------------------------------------------------------------------------------- /apis/vscode-cds/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/vscode-cds/LICENSE -------------------------------------------------------------------------------- /apis/vscode-cds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/vscode-cds/README.md -------------------------------------------------------------------------------- /apis/webide-hdi-base-feature-vscode/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/webide-hdi-base-feature-vscode/CHANGELOG.md -------------------------------------------------------------------------------- /apis/webide-hdi-base-feature-vscode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/webide-hdi-base-feature-vscode/LICENSE -------------------------------------------------------------------------------- /apis/webide-hdi-base-feature-vscode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/webide-hdi-base-feature-vscode/README.md -------------------------------------------------------------------------------- /apis/webide-hdi-feature-vscode/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/webide-hdi-feature-vscode/CHANGELOG.md -------------------------------------------------------------------------------- /apis/webide-hdi-feature-vscode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/webide-hdi-feature-vscode/LICENSE -------------------------------------------------------------------------------- /apis/webide-hdi-feature-vscode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/webide-hdi-feature-vscode/README.md -------------------------------------------------------------------------------- /apis/wing-run-config-types/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/wing-run-config-types/LICENSE.txt -------------------------------------------------------------------------------- /apis/wing-run-config-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/wing-run-config-types/README.md -------------------------------------------------------------------------------- /apis/wing-service-binding/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/wing-service-binding/LICENSE.txt -------------------------------------------------------------------------------- /apis/wing-service-binding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/wing-service-binding/README.md -------------------------------------------------------------------------------- /apis/wing-service-explorer/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/wing-service-explorer/LICENSE.txt -------------------------------------------------------------------------------- /apis/wing-service-explorer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/wing-service-explorer/README.md -------------------------------------------------------------------------------- /apis/xb-msg-amqp-v091/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xb-msg-amqp-v091/CHANGELOG.md -------------------------------------------------------------------------------- /apis/xb-msg-amqp-v091/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xb-msg-amqp-v091/README.md -------------------------------------------------------------------------------- /apis/xb-msg-amqp-v091/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xb-msg-amqp-v091/npm-shrinkwrap.json -------------------------------------------------------------------------------- /apis/xb-msg-amqp-v100/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xb-msg-amqp-v100/CHANGELOG.md -------------------------------------------------------------------------------- /apis/xb-msg-amqp-v100/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xb-msg-amqp-v100/README.md -------------------------------------------------------------------------------- /apis/xb-msg-env/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xb-msg-env/CHANGELOG.md -------------------------------------------------------------------------------- /apis/xb-msg-env/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xb-msg-env/README.md -------------------------------------------------------------------------------- /apis/xb-msg-env/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xb-msg-env/npm-shrinkwrap.json -------------------------------------------------------------------------------- /apis/xb-msg-mqtt-v311/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xb-msg-mqtt-v311/CHANGELOG.md -------------------------------------------------------------------------------- /apis/xb-msg-mqtt-v311/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xb-msg-mqtt-v311/README.md -------------------------------------------------------------------------------- /apis/xb-msg/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xb-msg/CHANGELOG.md -------------------------------------------------------------------------------- /apis/xb-msg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xb-msg/README.md -------------------------------------------------------------------------------- /apis/xs-tools/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xs-tools/CHANGELOG.md -------------------------------------------------------------------------------- /apis/xs-tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xs-tools/LICENSE -------------------------------------------------------------------------------- /apis/xs-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xs-tools/README.md -------------------------------------------------------------------------------- /apis/xsenv/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsenv/CHANGELOG.md -------------------------------------------------------------------------------- /apis/xsenv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsenv/LICENSE -------------------------------------------------------------------------------- /apis/xsenv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsenv/README.md -------------------------------------------------------------------------------- /apis/xsenv/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsenv/migration.md -------------------------------------------------------------------------------- /apis/xsjs-test/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsjs-test/CHANGELOG.md -------------------------------------------------------------------------------- /apis/xsjs-test/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsjs-test/LICENSE -------------------------------------------------------------------------------- /apis/xsjs-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsjs-test/README.md -------------------------------------------------------------------------------- /apis/xsjs-test/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsjs-test/npm-shrinkwrap.json -------------------------------------------------------------------------------- /apis/xsodata/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsodata/CHANGELOG.md -------------------------------------------------------------------------------- /apis/xsodata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsodata/README.md -------------------------------------------------------------------------------- /apis/xsodata/documentation/aggregations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsodata/documentation/aggregations.md -------------------------------------------------------------------------------- /apis/xsodata/documentation/annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsodata/documentation/annotations.md -------------------------------------------------------------------------------- /apis/xsodata/documentation/authorization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsodata/documentation/authorization.md -------------------------------------------------------------------------------- /apis/xsodata/documentation/calcviewSample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsodata/documentation/calcviewSample.md -------------------------------------------------------------------------------- /apis/xsodata/documentation/customExits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsodata/documentation/customExits.md -------------------------------------------------------------------------------- /apis/xsodata/documentation/db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsodata/documentation/db.md -------------------------------------------------------------------------------- /apis/xsodata/documentation/debugView.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsodata/documentation/debugView.md -------------------------------------------------------------------------------- /apis/xsodata/documentation/generatedKeys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsodata/documentation/generatedKeys.md -------------------------------------------------------------------------------- /apis/xsodata/documentation/limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsodata/documentation/limitations.md -------------------------------------------------------------------------------- /apis/xsodata/documentation/modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsodata/documentation/modes.md -------------------------------------------------------------------------------- /apis/xsodata/documentation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsodata/documentation/readme.md -------------------------------------------------------------------------------- /apis/xsodata/documentation/supportedMethods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsodata/documentation/supportedMethods.md -------------------------------------------------------------------------------- /apis/xsodata/documentation/typemapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsodata/documentation/typemapping.md -------------------------------------------------------------------------------- /apis/xsodata/documentation/xsodataEbnf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsodata/documentation/xsodataEbnf.md -------------------------------------------------------------------------------- /apis/xsodata/documentation/xsodataSettings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xsodata/documentation/xsodataSettings.md -------------------------------------------------------------------------------- /apis/xss-secure/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xss-secure/CHANGELOG.md -------------------------------------------------------------------------------- /apis/xss-secure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xss-secure/LICENSE -------------------------------------------------------------------------------- /apis/xss-secure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xss-secure/README.md -------------------------------------------------------------------------------- /apis/xssec/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xssec/CHANGELOG.md -------------------------------------------------------------------------------- /apis/xssec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xssec/LICENSE -------------------------------------------------------------------------------- /apis/xssec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xssec/README.md -------------------------------------------------------------------------------- /apis/xssec/doc/IAS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xssec/doc/IAS.md -------------------------------------------------------------------------------- /apis/xssec/doc/IAStoXSUAA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xssec/doc/IAStoXSUAA.md -------------------------------------------------------------------------------- /apis/xssec/doc/MultiConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xssec/doc/MultiConfiguration.md -------------------------------------------------------------------------------- /apis/xssec/doc/TokenFlows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xssec/doc/TokenFlows.md -------------------------------------------------------------------------------- /apis/xssec/doc/TokenInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xssec/doc/TokenInfo.md -------------------------------------------------------------------------------- /apis/xssec/doc/doc/IAS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xssec/doc/doc/IAS.md -------------------------------------------------------------------------------- /apis/xssec/doc/doc/IAStoXSUAA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xssec/doc/doc/IAStoXSUAA.md -------------------------------------------------------------------------------- /apis/xssec/doc/doc/MultiConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xssec/doc/doc/MultiConfiguration.md -------------------------------------------------------------------------------- /apis/xssec/doc/doc/TokenFlows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xssec/doc/doc/TokenFlows.md -------------------------------------------------------------------------------- /apis/xssec/doc/doc/TokenInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/apis/xssec/doc/doc/TokenInfo.md -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/apis/approuter/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/approuter/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/approuter/doc/app-router-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/approuter/doc/app-router-diagram.png -------------------------------------------------------------------------------- /docs/apis/approuter/doc/doc/extending/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/approuter/doc/doc/extending/index.html -------------------------------------------------------------------------------- /docs/apis/approuter/doc/extending/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/approuter/doc/extending/index.html -------------------------------------------------------------------------------- /docs/apis/approuter/doc/sizingGuide/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/approuter/doc/sizingGuide/index.html -------------------------------------------------------------------------------- /docs/apis/approuter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/approuter/index.html -------------------------------------------------------------------------------- /docs/apis/audit-logging/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/audit-logging/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/audit-logging/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/audit-logging/index.html -------------------------------------------------------------------------------- /docs/apis/cds-compiler/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-compiler/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/cds-compiler/doc/toSwagger/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-compiler/doc/toSwagger/index.html -------------------------------------------------------------------------------- /docs/apis/cds-compiler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-compiler/index.html -------------------------------------------------------------------------------- /docs/apis/cds-dk/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-dk/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/cds-dk/readme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-dk/readme/index.html -------------------------------------------------------------------------------- /docs/apis/cds-foss/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-foss/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/cds-foss/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-foss/index.html -------------------------------------------------------------------------------- /docs/apis/cds-hana/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-hana/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/cds-hana/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-hana/index.html -------------------------------------------------------------------------------- /docs/apis/cds-lsp/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-lsp/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/cds-lsp/doc/02-Common-Types-/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-lsp/doc/02-Common-Types-/index.html -------------------------------------------------------------------------------- /docs/apis/cds-lsp/doc/03-Entities-/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-lsp/doc/03-Entities-/index.html -------------------------------------------------------------------------------- /docs/apis/cds-lsp/doc/05-Associations-/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-lsp/doc/05-Associations-/index.html -------------------------------------------------------------------------------- /docs/apis/cds-lsp/doc/06-Annotations-/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-lsp/doc/06-Annotations-/index.html -------------------------------------------------------------------------------- /docs/apis/cds-lsp/doc/07-Aspects-/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-lsp/doc/07-Aspects-/index.html -------------------------------------------------------------------------------- /docs/apis/cds-lsp/doc/08-Services-/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-lsp/doc/08-Services-/index.html -------------------------------------------------------------------------------- /docs/apis/cds-lsp/doc/10-Namespaces-/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-lsp/doc/10-Namespaces-/index.html -------------------------------------------------------------------------------- /docs/apis/cds-lsp/doc/11-Imports-/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-lsp/doc/11-Imports-/index.html -------------------------------------------------------------------------------- /docs/apis/cds-lsp/doc/doc/03-Entities-/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-lsp/doc/doc/03-Entities-/index.html -------------------------------------------------------------------------------- /docs/apis/cds-lsp/doc/doc/07-Aspects-/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-lsp/doc/doc/07-Aspects-/index.html -------------------------------------------------------------------------------- /docs/apis/cds-lsp/doc/doc/08-Services-/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-lsp/doc/doc/08-Services-/index.html -------------------------------------------------------------------------------- /docs/apis/cds-lsp/doc/doc/11-Imports-/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-lsp/doc/doc/11-Imports-/index.html -------------------------------------------------------------------------------- /docs/apis/cds-lsp/doc/doc/settings/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-lsp/doc/doc/settings/index.html -------------------------------------------------------------------------------- /docs/apis/cds-lsp/doc/settings/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-lsp/doc/settings/index.html -------------------------------------------------------------------------------- /docs/apis/cds-lsp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-lsp/index.html -------------------------------------------------------------------------------- /docs/apis/cds-messaging/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-messaging/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/cds-messaging/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-messaging/index.html -------------------------------------------------------------------------------- /docs/apis/cds-mtx/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-mtx/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/cds-mtx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-mtx/index.html -------------------------------------------------------------------------------- /docs/apis/cds-odata-v2-adapter-proxy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-odata-v2-adapter-proxy/index.html -------------------------------------------------------------------------------- /docs/apis/cds-odata-v2-adapter-proxy/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-odata-v2-adapter-proxy/lib/index.js -------------------------------------------------------------------------------- /docs/apis/cds-ql/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-ql/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/cds-ql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-ql/index.html -------------------------------------------------------------------------------- /docs/apis/cds-reflect/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-reflect/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/cds-reflect/readme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-reflect/readme/index.html -------------------------------------------------------------------------------- /docs/apis/cds-rest/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-rest/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/cds-rest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-rest/index.html -------------------------------------------------------------------------------- /docs/apis/cds-runtime/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-runtime/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/cds-runtime/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-runtime/index.html -------------------------------------------------------------------------------- /docs/apis/cds-services/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-services/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/cds-services/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-services/index.html -------------------------------------------------------------------------------- /docs/apis/cds-sidecar-client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-sidecar-client/index.html -------------------------------------------------------------------------------- /docs/apis/cds-sql/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-sql/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/cds-sql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-sql/index.html -------------------------------------------------------------------------------- /docs/apis/cds-sqlite/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-sqlite/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/cds-sqlite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds-sqlite/index.html -------------------------------------------------------------------------------- /docs/apis/cds/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/cds/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cds/index.html -------------------------------------------------------------------------------- /docs/apis/cloud-sdk-analytics/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cloud-sdk-analytics/index.html -------------------------------------------------------------------------------- /docs/apis/cloud-sdk-core/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cloud-sdk-core/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/cloud-sdk-core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cloud-sdk-core/index.html -------------------------------------------------------------------------------- /docs/apis/cloud-sdk-generator-rest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cloud-sdk-generator-rest/index.html -------------------------------------------------------------------------------- /docs/apis/cloud-sdk-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cloud-sdk-generator/index.html -------------------------------------------------------------------------------- /docs/apis/cloud-sdk-test-util/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cloud-sdk-test-util/index.html -------------------------------------------------------------------------------- /docs/apis/cloud-sdk-util/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cloud-sdk-util/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/cloud-sdk-util/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cloud-sdk-util/index.html -------------------------------------------------------------------------------- /docs/apis/cloud-sdk-vdm-sap-graph/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cloud-sdk-vdm-sap-graph/index.html -------------------------------------------------------------------------------- /docs/apis/cloud-sdk-vdm/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cloud-sdk-vdm/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/cloud-sdk-vdm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/cloud-sdk-vdm/index.html -------------------------------------------------------------------------------- /docs/apis/consume-services-types/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/consume-services-types/index.html -------------------------------------------------------------------------------- /docs/apis/consume-services/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/consume-services/index.html -------------------------------------------------------------------------------- /docs/apis/destinations/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/destinations/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/destinations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/destinations/index.html -------------------------------------------------------------------------------- /docs/apis/di.code-validation.core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/di.code-validation.core/index.html -------------------------------------------------------------------------------- /docs/apis/di.code-validation.grunt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/di.code-validation.grunt/index.html -------------------------------------------------------------------------------- /docs/apis/di.code-validation.js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/di.code-validation.js/index.html -------------------------------------------------------------------------------- /docs/apis/di.code-validation.xml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/di.code-validation.xml/index.html -------------------------------------------------------------------------------- /docs/apis/dwf-core/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/dwf-core/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/dwf-deploy/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/dwf-deploy/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/dwf-deploy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/dwf-deploy/index.html -------------------------------------------------------------------------------- /docs/apis/dwf-dlm-backend/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/dwf-dlm-backend/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/dwf-dlm-backend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/dwf-dlm-backend/index.html -------------------------------------------------------------------------------- /docs/apis/dwf-dws-client/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/dwf-dws-client/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/dwf-dws-client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/dwf-dws-client/index.html -------------------------------------------------------------------------------- /docs/apis/dwf-generator/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/dwf-generator/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/dwf-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/dwf-generator/index.html -------------------------------------------------------------------------------- /docs/apis/dwf-ndso-backend/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/dwf-ndso-backend/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/dwf-ndso-backend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/dwf-ndso-backend/index.html -------------------------------------------------------------------------------- /docs/apis/e2e-trace/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/e2e-trace/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/e2e-trace/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/e2e-trace/index.html -------------------------------------------------------------------------------- /docs/apis/edm-converters/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/edm-converters/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/edm-converters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/edm-converters/index.html -------------------------------------------------------------------------------- /docs/apis/edmx2csn/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/edmx2csn/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/edmx2csn/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/edmx2csn/index.html -------------------------------------------------------------------------------- /docs/apis/eslint-plugin-ui5-jsdocs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/eslint-plugin-ui5-jsdocs/index.html -------------------------------------------------------------------------------- /docs/apis/faas/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/faas/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/faas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/faas/index.html -------------------------------------------------------------------------------- /docs/apis/fibers/ISSUE_TEMPLATE/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/fibers/ISSUE_TEMPLATE/index.html -------------------------------------------------------------------------------- /docs/apis/fibers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/fibers/index.html -------------------------------------------------------------------------------- /docs/apis/fibrous/LICENSE/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/fibrous/LICENSE/index.html -------------------------------------------------------------------------------- /docs/apis/fibrous/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/fibrous/index.html -------------------------------------------------------------------------------- /docs/apis/fiori-json-services/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/fiori-json-services/index.html -------------------------------------------------------------------------------- /docs/apis/generator-cap-project/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/generator-cap-project/index.html -------------------------------------------------------------------------------- /docs/apis/generator-cds/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/generator-cds/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/generator-cds/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/generator-cds/index.html -------------------------------------------------------------------------------- /docs/apis/grunt-sapui5-bestpractice-test/CHANGELOG.MD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/apis/hana-client/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/hana-client/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/hana-client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/hana-client/index.html -------------------------------------------------------------------------------- /docs/apis/hdbext/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/hdbext/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/hdbext/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/hdbext/index.html -------------------------------------------------------------------------------- /docs/apis/hdbext/migration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/hdbext/migration/index.html -------------------------------------------------------------------------------- /docs/apis/hdi-deploy/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/hdi-deploy/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/hdi-deploy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/hdi-deploy/index.html -------------------------------------------------------------------------------- /docs/apis/hdi-dynamic-deploy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/hdi-dynamic-deploy/index.html -------------------------------------------------------------------------------- /docs/apis/hdi/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/hdi/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/hdi/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/hdi/index.html -------------------------------------------------------------------------------- /docs/apis/html5-app-deployer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/html5-app-deployer/index.html -------------------------------------------------------------------------------- /docs/apis/html5-repo-mock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/html5-repo-mock/index.html -------------------------------------------------------------------------------- /docs/apis/instance-manager/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/instance-manager/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/instance-manager/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/instance-manager/index.html -------------------------------------------------------------------------------- /docs/apis/jobs-client/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/jobs-client/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/jobs-client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/jobs-client/index.html -------------------------------------------------------------------------------- /docs/apis/logging/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/logging/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/logging/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/logging/index.html -------------------------------------------------------------------------------- /docs/apis/logging/migration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/logging/migration/index.html -------------------------------------------------------------------------------- /docs/apis/modules-exploration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/modules-exploration/index.html -------------------------------------------------------------------------------- /docs/apis/node-jwt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/node-jwt/index.html -------------------------------------------------------------------------------- /docs/apis/node-vsi/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/node-vsi/index.html -------------------------------------------------------------------------------- /docs/apis/odata-commons/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/odata-commons/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/odata-commons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/odata-commons/index.html -------------------------------------------------------------------------------- /docs/apis/odata-server/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/odata-server/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/odata-server/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/odata-server/index.html -------------------------------------------------------------------------------- /docs/apis/odata-v4/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/odata-v4/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/odata-v4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/odata-v4/index.html -------------------------------------------------------------------------------- /docs/apis/pdms-sdk/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/pdms-sdk/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/pdms-sdk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/pdms-sdk/index.html -------------------------------------------------------------------------------- /docs/apis/portal-cf-content-deployer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/portal-cf-content-deployer/index.html -------------------------------------------------------------------------------- /docs/apis/sbf/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/sbf/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/sbf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/sbf/index.html -------------------------------------------------------------------------------- /docs/apis/sbf/migration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/sbf/migration/index.html -------------------------------------------------------------------------------- /docs/apis/sbss/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/sbss/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/sbss/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/sbss/index.html -------------------------------------------------------------------------------- /docs/apis/sbss/migration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/sbss/migration/index.html -------------------------------------------------------------------------------- /docs/apis/sds-deploy/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/sds-deploy/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/sds-deploy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/sds-deploy/index.html -------------------------------------------------------------------------------- /docs/apis/service-providers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/service-providers/index.html -------------------------------------------------------------------------------- /docs/apis/site-app-server/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/site-app-server/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/site-app-server/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/site-app-server/index.html -------------------------------------------------------------------------------- /docs/apis/site-content-deployer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/site-content-deployer/index.html -------------------------------------------------------------------------------- /docs/apis/site-entry/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/site-entry/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/site-entry/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/site-entry/index.html -------------------------------------------------------------------------------- /docs/apis/test-nodejs-dmz-github/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/test-nodejs-dmz-github/index.html -------------------------------------------------------------------------------- /docs/apis/textanalysis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/textanalysis/index.html -------------------------------------------------------------------------------- /docs/apis/textbundle/API/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/textbundle/API/index.html -------------------------------------------------------------------------------- /docs/apis/textbundle/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/textbundle/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/textbundle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/textbundle/index.html -------------------------------------------------------------------------------- /docs/apis/textmining/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/textmining/index.html -------------------------------------------------------------------------------- /docs/apis/ui-annotations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/ui-annotations/index.html -------------------------------------------------------------------------------- /docs/apis/ui5-jsdocs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/ui5-jsdocs/index.html -------------------------------------------------------------------------------- /docs/apis/ux-specification/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/ux-specification/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/ux-specification/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/ux-specification/index.html -------------------------------------------------------------------------------- /docs/apis/ux-ui5-tooling/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/ux-ui5-tooling/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/ux-ui5-tooling/doc/proxy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/ux-ui5-tooling/doc/proxy/index.html -------------------------------------------------------------------------------- /docs/apis/ux-ui5-tooling/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/ux-ui5-tooling/index.html -------------------------------------------------------------------------------- /docs/apis/vscode-cds/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/vscode-cds/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/vscode-cds/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/vscode-cds/index.html -------------------------------------------------------------------------------- /docs/apis/wing-service-binding/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/wing-service-binding/index.html -------------------------------------------------------------------------------- /docs/apis/wing-service-explorer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/wing-service-explorer/index.html -------------------------------------------------------------------------------- /docs/apis/xb-msg-amqp-v091/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xb-msg-amqp-v091/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/xb-msg-amqp-v091/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xb-msg-amqp-v091/index.html -------------------------------------------------------------------------------- /docs/apis/xb-msg-amqp-v100/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xb-msg-amqp-v100/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/xb-msg-amqp-v100/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xb-msg-amqp-v100/index.html -------------------------------------------------------------------------------- /docs/apis/xb-msg-env/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xb-msg-env/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/xb-msg-env/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xb-msg-env/index.html -------------------------------------------------------------------------------- /docs/apis/xb-msg-mqtt-v311/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xb-msg-mqtt-v311/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/xb-msg-mqtt-v311/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xb-msg-mqtt-v311/index.html -------------------------------------------------------------------------------- /docs/apis/xb-msg/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xb-msg/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/xb-msg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xb-msg/index.html -------------------------------------------------------------------------------- /docs/apis/xsenv/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xsenv/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/xsenv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xsenv/index.html -------------------------------------------------------------------------------- /docs/apis/xsenv/migration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xsenv/migration/index.html -------------------------------------------------------------------------------- /docs/apis/xsjs-test/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xsjs-test/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/xsjs-test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xsjs-test/index.html -------------------------------------------------------------------------------- /docs/apis/xsjs/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xsjs/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/xsjs/differences/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xsjs/differences/index.html -------------------------------------------------------------------------------- /docs/apis/xsjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xsjs/index.html -------------------------------------------------------------------------------- /docs/apis/xsodata/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xsodata/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/xsodata/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xsodata/index.html -------------------------------------------------------------------------------- /docs/apis/xss-secure/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xss-secure/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/xss-secure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xss-secure/index.html -------------------------------------------------------------------------------- /docs/apis/xssec/CHANGELOG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xssec/CHANGELOG/index.html -------------------------------------------------------------------------------- /docs/apis/xssec/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/apis/xssec/index.html -------------------------------------------------------------------------------- /docs/assets/brands/cap-signet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/brands/cap-signet.svg -------------------------------------------------------------------------------- /docs/assets/brands/npm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/brands/npm.svg -------------------------------------------------------------------------------- /docs/assets/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/assets/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/assets/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/icons/favicon-32x32.png -------------------------------------------------------------------------------- /docs/assets/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/icons/favicon.ico -------------------------------------------------------------------------------- /docs/assets/icons/udina-logo-signet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/icons/udina-logo-signet.svg -------------------------------------------------------------------------------- /docs/assets/icons/udina-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/icons/udina-logo.svg -------------------------------------------------------------------------------- /docs/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/images/favicon.png -------------------------------------------------------------------------------- /docs/assets/javascripts/bundle.4a5ba8d6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/javascripts/bundle.4a5ba8d6.min.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/min/lunr.ar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/javascripts/lunr/min/lunr.ar.min.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/min/lunr.da.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/javascripts/lunr/min/lunr.da.min.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/min/lunr.de.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/javascripts/lunr/min/lunr.de.min.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/min/lunr.du.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/javascripts/lunr/min/lunr.du.min.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/min/lunr.es.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/javascripts/lunr/min/lunr.es.min.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/min/lunr.fi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/javascripts/lunr/min/lunr.fi.min.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/min/lunr.fr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/javascripts/lunr/min/lunr.fr.min.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/min/lunr.hu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/javascripts/lunr/min/lunr.hu.min.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/min/lunr.it.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/javascripts/lunr/min/lunr.it.min.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/min/lunr.ja.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/javascripts/lunr/min/lunr.ja.min.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/min/lunr.jp.min.js: -------------------------------------------------------------------------------- 1 | module.exports=require("./lunr.ja"); -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/min/lunr.nl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/javascripts/lunr/min/lunr.nl.min.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/min/lunr.no.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/javascripts/lunr/min/lunr.no.min.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/min/lunr.pt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/javascripts/lunr/min/lunr.pt.min.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/min/lunr.ro.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/javascripts/lunr/min/lunr.ro.min.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/min/lunr.ru.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/javascripts/lunr/min/lunr.ru.min.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/min/lunr.sv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/javascripts/lunr/min/lunr.sv.min.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/min/lunr.tr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/javascripts/lunr/min/lunr.tr.min.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/min/lunr.vi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/javascripts/lunr/min/lunr.vi.min.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/tinyseg.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/javascripts/lunr/tinyseg.min.js -------------------------------------------------------------------------------- /docs/assets/javascripts/vendor.d710d30a.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/javascripts/vendor.d710d30a.min.js -------------------------------------------------------------------------------- /docs/assets/stylesheets/main.fe0cca5b.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/assets/stylesheets/main.fe0cca5b.min.css -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/manifest.webmanifest -------------------------------------------------------------------------------- /docs/search/search_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/search/search_index.json -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /docs/sitemap.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/docs/sitemap.xml.gz -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /new-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/new-package.json -------------------------------------------------------------------------------- /npm_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/npm_download.sh -------------------------------------------------------------------------------- /package-original.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/package-original.json -------------------------------------------------------------------------------- /package-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/package-template.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/package.json -------------------------------------------------------------------------------- /packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/packages.txt -------------------------------------------------------------------------------- /source/apis: -------------------------------------------------------------------------------- 1 | ../apis -------------------------------------------------------------------------------- /source/assets/brands/cap-signet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/source/assets/brands/cap-signet.svg -------------------------------------------------------------------------------- /source/assets/brands/npm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/source/assets/brands/npm.svg -------------------------------------------------------------------------------- /source/assets/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/source/assets/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /source/assets/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/source/assets/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /source/assets/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/source/assets/icons/favicon-32x32.png -------------------------------------------------------------------------------- /source/assets/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/source/assets/icons/favicon.ico -------------------------------------------------------------------------------- /source/assets/icons/udina-logo-signet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/source/assets/icons/udina-logo-signet.svg -------------------------------------------------------------------------------- /source/assets/icons/udina-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/source/assets/icons/udina-logo.svg -------------------------------------------------------------------------------- /source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/source/index.md -------------------------------------------------------------------------------- /source/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/source/manifest.webmanifest -------------------------------------------------------------------------------- /update-package-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregorwolf/SAP-NPM-API-collection/HEAD/update-package-json.js --------------------------------------------------------------------------------