├── .gitignore ├── LICENSE ├── README.md ├── demo ├── app │ ├── App_Resources │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── app.gradle │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── icon.png │ │ │ └── drawable-nodpi │ │ │ │ └── splashscreen.9.png │ │ └── iOS │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667h@2x.png │ │ │ ├── Default-736h@3x.png │ │ │ ├── Default-Landscape-568h@2x.png │ │ │ ├── Default-Landscape-667h@2x.png │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Landscape@2x.png │ │ │ ├── Default-Landscape@3x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-Small-50.png │ │ │ ├── Icon-Small-50@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Info.plist │ │ │ ├── build.xcconfig │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-60.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ ├── icon.png │ │ │ └── icon@2x.png │ ├── app.css │ ├── app.ts │ ├── main-page.ts │ ├── main-page.xml │ ├── main-view-model.ts │ ├── package.json │ └── references.d.ts ├── hooks │ ├── before-prepare │ │ └── nativescript-dev-typescript.js │ └── before-watch │ │ └── nativescript-dev-typescript.js ├── livesync.cmd ├── package.json ├── references.d.ts └── tsconfig.json └── plugin ├── .npmignore ├── README.md ├── index.d.ts ├── index.ts ├── package.json ├── references.d.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/README.md -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/Android/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/Android/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/Android/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-nodpi/splashscreen.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/Android/drawable-nodpi/splashscreen.9.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/Default-568h@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/Default-667h@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/Default-736h@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default-Landscape-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/Default-Landscape-568h@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default-Landscape-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/Default-Landscape-667h@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/Default-Landscape.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/Default-Landscape@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/Default-Landscape@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/Default-Portrait.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/Default-Portrait@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/Default.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/Default@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/Icon-Small-50.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/Icon-Small.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/Icon-Small@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/icon-40.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/icon-40@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/icon-60.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/icon-60@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/icon-72.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/icon-72@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/icon-76.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/icon-76@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/App_Resources/iOS/icon@2x.png -------------------------------------------------------------------------------- /demo/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/app.css -------------------------------------------------------------------------------- /demo/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/app.ts -------------------------------------------------------------------------------- /demo/app/main-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/main-page.ts -------------------------------------------------------------------------------- /demo/app/main-page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/main-page.xml -------------------------------------------------------------------------------- /demo/app/main-view-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/main-view-model.ts -------------------------------------------------------------------------------- /demo/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/package.json -------------------------------------------------------------------------------- /demo/app/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/app/references.d.ts -------------------------------------------------------------------------------- /demo/hooks/before-prepare/nativescript-dev-typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/hooks/before-prepare/nativescript-dev-typescript.js -------------------------------------------------------------------------------- /demo/hooks/before-watch/nativescript-dev-typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/hooks/before-watch/nativescript-dev-typescript.js -------------------------------------------------------------------------------- /demo/livesync.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/livesync.cmd -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/references.d.ts -------------------------------------------------------------------------------- /demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/demo/tsconfig.json -------------------------------------------------------------------------------- /plugin/.npmignore: -------------------------------------------------------------------------------- 1 | *.map 2 | index.ts 3 | tsconfig.json 4 | references.d.ts -------------------------------------------------------------------------------- /plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/plugin/README.md -------------------------------------------------------------------------------- /plugin/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/plugin/index.d.ts -------------------------------------------------------------------------------- /plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/plugin/index.ts -------------------------------------------------------------------------------- /plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/plugin/package.json -------------------------------------------------------------------------------- /plugin/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/plugin/references.d.ts -------------------------------------------------------------------------------- /plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkloubert/nativescript-apiclient/HEAD/plugin/tsconfig.json --------------------------------------------------------------------------------