├── .gitignore ├── LICENSE ├── README.md ├── images ├── icons │ ├── disclaimer.png │ └── exclamacao.png ├── tlpp_logo.jpg ├── tlpp_logo_black.png └── tlpp_logo_white.png ├── output └── api_doc_8080.yaml └── src ├── components └── sample_components.tlpp ├── main.tlpp └── rest ├── basic ├── sample_01_basic.tlpp ├── sample_02_basic_by_annotation.tlpp ├── sample_03_basic_by_id-i18n.tlpp ├── sample_03_basic_by_id.tlpp ├── sample_04_basic_by_function.tlpp └── sample_05_basic_multiline.tlpp ├── complete ├── complete.md ├── sample_complete-i18n.tlpp ├── sample_complete.tlpp ├── sample_complete_DOC-i18n.tlpp └── sample_complete_DOC.tlpp └── dynamic endpoints ├── dynamic_list_functions.tlpp ├── dynamic_rest_services.tlpp ├── dynamic_rest_services_DOC.tlpp └── dynamic_rest_start.tlpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/README.md -------------------------------------------------------------------------------- /images/icons/disclaimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/images/icons/disclaimer.png -------------------------------------------------------------------------------- /images/icons/exclamacao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/images/icons/exclamacao.png -------------------------------------------------------------------------------- /images/tlpp_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/images/tlpp_logo.jpg -------------------------------------------------------------------------------- /images/tlpp_logo_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/images/tlpp_logo_black.png -------------------------------------------------------------------------------- /images/tlpp_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/images/tlpp_logo_white.png -------------------------------------------------------------------------------- /output/api_doc_8080.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/output/api_doc_8080.yaml -------------------------------------------------------------------------------- /src/components/sample_components.tlpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/src/components/sample_components.tlpp -------------------------------------------------------------------------------- /src/main.tlpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/src/main.tlpp -------------------------------------------------------------------------------- /src/rest/basic/sample_01_basic.tlpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/src/rest/basic/sample_01_basic.tlpp -------------------------------------------------------------------------------- /src/rest/basic/sample_02_basic_by_annotation.tlpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/src/rest/basic/sample_02_basic_by_annotation.tlpp -------------------------------------------------------------------------------- /src/rest/basic/sample_03_basic_by_id-i18n.tlpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/src/rest/basic/sample_03_basic_by_id-i18n.tlpp -------------------------------------------------------------------------------- /src/rest/basic/sample_03_basic_by_id.tlpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/src/rest/basic/sample_03_basic_by_id.tlpp -------------------------------------------------------------------------------- /src/rest/basic/sample_04_basic_by_function.tlpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/src/rest/basic/sample_04_basic_by_function.tlpp -------------------------------------------------------------------------------- /src/rest/basic/sample_05_basic_multiline.tlpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/src/rest/basic/sample_05_basic_multiline.tlpp -------------------------------------------------------------------------------- /src/rest/complete/complete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/src/rest/complete/complete.md -------------------------------------------------------------------------------- /src/rest/complete/sample_complete-i18n.tlpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/src/rest/complete/sample_complete-i18n.tlpp -------------------------------------------------------------------------------- /src/rest/complete/sample_complete.tlpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/src/rest/complete/sample_complete.tlpp -------------------------------------------------------------------------------- /src/rest/complete/sample_complete_DOC-i18n.tlpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/src/rest/complete/sample_complete_DOC-i18n.tlpp -------------------------------------------------------------------------------- /src/rest/complete/sample_complete_DOC.tlpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/src/rest/complete/sample_complete_DOC.tlpp -------------------------------------------------------------------------------- /src/rest/dynamic endpoints/dynamic_list_functions.tlpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/src/rest/dynamic endpoints/dynamic_list_functions.tlpp -------------------------------------------------------------------------------- /src/rest/dynamic endpoints/dynamic_rest_services.tlpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/src/rest/dynamic endpoints/dynamic_rest_services.tlpp -------------------------------------------------------------------------------- /src/rest/dynamic endpoints/dynamic_rest_services_DOC.tlpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/src/rest/dynamic endpoints/dynamic_rest_services_DOC.tlpp -------------------------------------------------------------------------------- /src/rest/dynamic endpoints/dynamic_rest_start.tlpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/tlpp-sample-rest-documentation/HEAD/src/rest/dynamic endpoints/dynamic_rest_start.tlpp --------------------------------------------------------------------------------