From 3c34e0afc26430043f136da933133d13f36f0557 Mon Sep 17 00:00:00 2001 From: Wizofgoz Date: Mon, 21 May 2018 20:03:43 -0700 Subject: [PATCH 1/5] Added Travis config --- .dockerignore | 1 + .travis.yml | 41 + Dockerfile | 13 + nginx-custom.conf | 8 + package-lock.json | 2029 ++++++++++++++++++++------------------------- package.json | 52 +- 6 files changed, 995 insertions(+), 1149 deletions(-) create mode 100644 .dockerignore create mode 100644 .travis.yml create mode 100644 Dockerfile create mode 100644 nginx-custom.conf diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/.dockerignore @@ -0,0 +1 @@ +node_modules diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..a285aa7 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,41 @@ +sudo: required +language: node_js + +node_js: + - "node" + +env: + global: + - COMMIT=${TRAVIS_COMMIT::8} + +services: + - docker + +addons: +apt: + sources: + - google-chrome + packages: + - google-chrome-stable + +before_install: + - export CHROME_BIN=chromium-browser + - export DISPLAY=:99.0 + - sh -e /etc/init.d/xvfb start + +before_script: + - npm install + +script: + - npm run test -- --watch=false + - npm run e2e + +after_success: + - if ["$TRAVIS_BRANCH" == "master"]; then + docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"; + export REPO=wizofgoz/evecommander-web; + docker build -t $REPO:$COMMIT .; + docker tag $REPO:$COMMIT $REPO:latest; + docker tag $REPO:$COMMIT $REPO:travis-$TRAVIS_BUILD_NUMBER; + docker push $REPO; + fi diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8aa730a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +# Stage 0, based on Node.js, to build and compile Angular +FROM node:latest as node +WORKDIR /app +COPY package.json /app/ +RUN npm install +COPY ./ /app/ +ARG env=prod +RUN npm run build -- --prod --environment $env + +# Stage 1, based on Nginx, to have only the compiled app, ready for production with Nginx +FROM nginx:alpine +COPY --from=node /app/dist/ /usr/share/nginx/html +COPY ./nginx-custom.conf /etc/nginx/conf.d/default.conf diff --git a/nginx-custom.conf b/nginx-custom.conf new file mode 100644 index 0000000..260aa42 --- /dev/null +++ b/nginx-custom.conf @@ -0,0 +1,8 @@ +server { + listen 80; + location / { + root /usr/share/nginx/html; + index index.html index.htm; + try_files $uri $uri/ /index.html =404; + } +} diff --git a/package-lock.json b/package-lock.json index 7ed087d..fbf2392 100644 --- a/package-lock.json +++ b/package-lock.json @@ -32,7 +32,7 @@ "requires": { "ajv": "5.5.2", "chokidar": "1.7.0", - "rxjs": "5.5.7", + "rxjs": "5.5.10", "source-map": "0.5.7" } }, @@ -43,21 +43,21 @@ "dev": true, "requires": { "@ngtools/json-schema": "1.1.0", - "rxjs": "5.5.7" + "rxjs": "5.5.10" } }, "@angular/animations": { - "version": "5.2.9", - "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-5.2.9.tgz", - "integrity": "sha512-H/3fMs4PhYjKoA81II6D0PHifDrqlKet2u/EXzUBq3ehXby+N/0GBzqsBYwPeU5pTye7WPFfW+5sgoJpN8Ye6Q==", + "version": "5.2.11", + "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-5.2.11.tgz", + "integrity": "sha512-J7wKHkFn3wV28/Y1Qm4yjGXVCwXzj1JR5DRjGDTFnxTRacUFx7Nj0ApGhN0b2+V0NOvgxQOvEW415Y22kGoblw==", "requires": { "tslib": "1.9.0" } }, "@angular/cdk": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-5.2.4.tgz", - "integrity": "sha1-wKQpqHENj+2xV/VG4hy0nUM19/c=", + "version": "5.2.5", + "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-5.2.5.tgz", + "integrity": "sha512-GN8m1d+VcCE9+Bgwv06Y8YJKyZ0i9ZIq2ZPBcJYt+KVgnVVRg4JkyUNxud07LNsvzOX22DquHqmIZiC4hAG7Ag==", "requires": { "tslib": "1.9.0" } @@ -96,7 +96,7 @@ "less-loader": "4.1.0", "license-webpack-plugin": "1.2.3", "loader-utils": "1.1.0", - "lodash": "4.17.5", + "lodash": "4.17.10", "memory-fs": "0.4.1", "minimatch": "3.0.4", "node-modules-path": "1.0.1", @@ -109,7 +109,7 @@ "postcss-url": "7.3.1", "raw-loader": "0.5.1", "resolve": "1.5.0", - "rxjs": "5.5.7", + "rxjs": "5.5.10", "sass-loader": "6.0.7", "semver": "5.5.0", "silent-error": "1.1.0", @@ -129,31 +129,31 @@ } }, "@angular/common": { - "version": "5.2.9", - "resolved": "https://registry.npmjs.org/@angular/common/-/common-5.2.9.tgz", - "integrity": "sha512-g2hPcI0fnT4TV+Fd+1IohjuqBxPvxwyH9IzTn8PkU9X2M+F6cHCUvHxL1sWI2sF8pYcaHzVjq9WClym10X36Lg==", + "version": "5.2.11", + "resolved": "https://registry.npmjs.org/@angular/common/-/common-5.2.11.tgz", + "integrity": "sha512-LniJjGAeftUJDJh+2+LEjltcGen08C/VMxQ/eUYmesytKy1sN+MWzh3GbpKfEWtWmyUsYTG9lAAJNo3L3jPwsw==", "requires": { "tslib": "1.9.0" } }, "@angular/compiler": { - "version": "5.2.9", - "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-5.2.9.tgz", - "integrity": "sha512-mN+ofInk8y/tk2TCJZx8RrGdOKdrfunoCair7tfDy4XoQJE90waGfaYWo07hYU+UYwLhrg19m2Czy6rIDciUJA==", + "version": "5.2.11", + "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-5.2.11.tgz", + "integrity": "sha512-ICvB1ud1mxaXUYLb8vhJqiLhGBVocAZGxoHTglv6hMkbrRYcnlB3FZJFOzBvtj+krkd1jamoYLI43UAmesqQ6Q==", "requires": { "tslib": "1.9.0" } }, "@angular/compiler-cli": { - "version": "5.2.9", - "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-5.2.9.tgz", - "integrity": "sha512-LAEpL/6PAev3zwTow/43Atzv9AtKLAiLoS285X3EV1f80yQpYAmFRrPUtDlrIZdhZHBBv7CxnyCVpOLU3T8ohw==", + "version": "5.2.11", + "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-5.2.11.tgz", + "integrity": "sha512-dwrQ0yxoCM/XzKzlm7pTsyg4/6ECjT9emZufGj8t12bLMO8NDn1IJOsqXJA1+onEgQKhlr0Ziwi+96TvDTb1Cg==", "dev": true, "requires": { "chokidar": "1.7.0", "minimist": "1.2.0", "reflect-metadata": "0.1.12", - "tsickle": "0.27.2" + "tsickle": "0.27.5" }, "dependencies": { "minimist": { @@ -165,63 +165,63 @@ } }, "@angular/core": { - "version": "5.2.9", - "resolved": "https://registry.npmjs.org/@angular/core/-/core-5.2.9.tgz", - "integrity": "sha512-cvHBJGtasrIoARvbLFyHaOsiWKVwMNrrSTZLwrlyHP8oYzkDrE0qKGer6QCqyKt+51hF53cgWEffGzM/u/0wYg==", + "version": "5.2.11", + "resolved": "https://registry.npmjs.org/@angular/core/-/core-5.2.11.tgz", + "integrity": "sha512-h2vpvXNAdOqKzbVaZcHnHGMT5A8uDnizk6FgGq6SPyw9s3d+/VxZ9LJaPjUk3g2lICA7og1tUel+2YfF971MlQ==", "requires": { "tslib": "1.9.0" } }, "@angular/forms": { - "version": "5.2.9", - "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-5.2.9.tgz", - "integrity": "sha512-zyIOiZV/FAm1iVZWTk3Joz6Jt096hbhfDbBUrssmuiTKi9dU6rWG+Z4b88zStqulKe3HFVZkgdixWlminG8nKA==", + "version": "5.2.11", + "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-5.2.11.tgz", + "integrity": "sha512-wBllFlIubPclAFRXUc84Kc7TMeKOftzrQraVZ7ooTNeFLLa/FZLN2K8HGyRde8X/XDsMu1XAmjNfkz++spwTzA==", "requires": { "tslib": "1.9.0" } }, "@angular/http": { - "version": "5.2.9", - "resolved": "https://registry.npmjs.org/@angular/http/-/http-5.2.9.tgz", - "integrity": "sha512-DKjgIk+Dp0Xv1ieG8LawvUnL4dYZp1KroAq5cfKuO9EojP0zM3tUvBtw2vbPLsHYma7g7ZMjOoAbzVxtmTBZqw==", + "version": "5.2.11", + "resolved": "https://registry.npmjs.org/@angular/http/-/http-5.2.11.tgz", + "integrity": "sha512-eR7wNXh1+6MpcQNb3sq4bJVX03dx50Wl3kpPG+Q7N1VSL0oPQSobaTrR17ac3oFCEfSJn6kkUCqtUXha6wcNHg==", "requires": { "tslib": "1.9.0" } }, "@angular/language-service": { - "version": "5.2.9", - "resolved": "https://registry.npmjs.org/@angular/language-service/-/language-service-5.2.9.tgz", - "integrity": "sha512-aaLnGpW9NBDkG0JYqUeGc+al1Jd1CY9yrs3mew53x5nByetQbIdZwpYm1hnSTw7LBEZBxfHTMw5EZD2YYTDmJw==", + "version": "5.2.11", + "resolved": "https://registry.npmjs.org/@angular/language-service/-/language-service-5.2.11.tgz", + "integrity": "sha512-tgnFAhwBmUs1W0dmcmlBmUlMaOgkoyuSdrcF23lz8W5+nSLb+LnbH5a3blU2NVqA4ESvLKQkPW5dpKa/LuhrPQ==", "dev": true }, "@angular/material": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/@angular/material/-/material-5.2.4.tgz", - "integrity": "sha1-noI3mDJCg9I+qDkVb6xby3NEPVU=", + "version": "5.2.5", + "resolved": "https://registry.npmjs.org/@angular/material/-/material-5.2.5.tgz", + "integrity": "sha512-IltfBeTJWnmZehOQNQ7KoFs7MGWuZTe0g21hIitGkusVNt1cIoTD24xKH5jwztjH19c04IgiwonpurMKM6pBCQ==", "requires": { "tslib": "1.9.0" } }, "@angular/platform-browser": { - "version": "5.2.9", - "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-5.2.9.tgz", - "integrity": "sha512-P6iviRTuLsLRuqtZNOO0fd4cjTo8DWsDCecwntUlI08R3kH5qeqvqarTzlw/4oD+wBzZY6bfb89JyY+n5XbX3Q==", + "version": "5.2.11", + "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-5.2.11.tgz", + "integrity": "sha512-6YZ4IpBFqXx88vEzBZG2WWnaSYXbFWDgG0iT+bZPHAfwsbmqbcMcs7Ogu+XZ4VmK02dTqbrFh7U4P2W+sqrzow==", "requires": { "tslib": "1.9.0" } }, "@angular/platform-browser-dynamic": { - "version": "5.2.9", - "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-5.2.9.tgz", - "integrity": "sha512-8C3MtyguJKDTT8FcHIRDlBxswcIdpfugOf4S2t94pVedCr4h9w2da/lcfwJKUISw1aKjfA77Sl8TDUhoS8ymmQ==", + "version": "5.2.11", + "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-5.2.11.tgz", + "integrity": "sha512-5kKPNULcXNwkyBjpHfF+pq+Yxi8Zl866YSOK9t8txoiQ9Ctw97kMkEJcTetk6MJgBp/NP3YyjtoTAm8oXLerug==", "requires": { "tslib": "1.9.0" } }, "@angular/router": { - "version": "5.2.9", - "resolved": "https://registry.npmjs.org/@angular/router/-/router-5.2.9.tgz", - "integrity": "sha512-NtDbFK0EA1rfFc+5Dqd5mIv8E1Wcc5rDUnSty4cX2V+HxTEZvQ9DRdpO2Q0abWU5siXyqponuPHJzF08OVGyNA==", + "version": "5.2.11", + "resolved": "https://registry.npmjs.org/@angular/router/-/router-5.2.11.tgz", + "integrity": "sha512-NT8xYl7Vr3qPygisek3PlXqNROEjg48GXOEsDEc7c8lDBo3EB9Tf328fWJD0GbLtXZNhmmNNxwIe+qqPFFhFAA==", "requires": { "tslib": "1.9.0" } @@ -266,9 +266,9 @@ } }, "@types/jasmine": { - "version": "2.8.6", - "resolved": "https://registry.npmjs.org/@types/jasmine/-/jasmine-2.8.6.tgz", - "integrity": "sha512-clg9raJTY0EOo5pVZKX3ZlMjlYzVU73L71q5OV1jhE2Uezb7oF94jh4CvwrW6wInquQAdhOxJz5VDF2TLUGmmA==", + "version": "2.8.7", + "resolved": "https://registry.npmjs.org/@types/jasmine/-/jasmine-2.8.7.tgz", + "integrity": "sha512-RdbrPcW1aD78UmdLiDa9ZCKrbR5Go8PXh6GCpb4oIOkWVEusubSJJDrP4c5RYOu8m/CBz+ygZpicj6Pgms5a4Q==", "dev": true }, "@types/jasminewd2": { @@ -277,13 +277,13 @@ "integrity": "sha512-hYDVmQZT5VA2kigd4H4bv7vl/OhlympwREUemqBdOqtrYTo5Ytm12a5W5/nGgGYdanGVxj0x/VhZ7J3hOg/YKg==", "dev": true, "requires": { - "@types/jasmine": "2.8.6" + "@types/jasmine": "2.8.7" } }, "@types/node": { - "version": "6.0.103", - "resolved": "https://registry.npmjs.org/@types/node/-/node-6.0.103.tgz", - "integrity": "sha512-EHU5B9OlENiGEziLiC2XjhjBoVTiX6s4JwZrMHkLQzrzOA0bfZKfcT3fZaalgujcrs2O97VgKaxqguwV+12UJQ==", + "version": "6.0.111", + "resolved": "https://registry.npmjs.org/@types/node/-/node-6.0.111.tgz", + "integrity": "sha512-DoWK5a544Jcr6C1qBadalyj3gQT5V9B87qFBb+uOOq1Id309Lbe10zwsCGCURZEOBoS/pOsmbDN4FnD4sOwJaw==", "dev": true }, "@types/q": { @@ -310,16 +310,6 @@ "integrity": "sha512-7NQmHra/JILCd1QqpSzl8+mJRc8ZHz3uDm8YV1Ks9IhK0epEiTw8aIErbvH9PI+6XbqhyIQy3462nEsn7UVzjQ==", "dev": true }, - "JSONStream": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.2.tgz", - "integrity": "sha1-wQI3G27Dp887hHygDCC7D85Mbeo=", - "dev": true, - "requires": { - "jsonparse": "1.3.1", - "through": "2.3.8" - } - }, "abbrev": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", @@ -359,16 +349,6 @@ } } }, - "acorn-node": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.3.0.tgz", - "integrity": "sha512-efP54n3d1aLfjL2UMdaXa6DsswwzJeI5rqhbFvXMrKiJ6eJFpf+7R0zN7t8IC+XKn2YOAFAv6xbBNgHUkoHWLw==", - "dev": true, - "requires": { - "acorn": "5.5.3", - "xtend": "4.0.1" - } - }, "addressparser": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/addressparser/-/addressparser-1.0.1.tgz", @@ -495,6 +475,23 @@ "resolved": "https://registry.npmjs.org/angular-laravel-echo/-/angular-laravel-echo-1.1.1.tgz", "integrity": "sha512-SlKX03dnP7ULsktzEAFG8axY/hgL1/FhQmzGDRkHlUByLHi78cJGpeE+inmWy+z+waejqw+TAgoyWgKLZyjRCQ==" }, + "angular2-jsonapi": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/angular2-jsonapi/-/angular2-jsonapi-5.0.0.tgz", + "integrity": "sha512-OBbidkvjZi/5tE8bnCuNJ5R+esIkv9pMvdyDvSeQ8dr+cagHcB+nkjDpaLh/5uiDjZhvgQS3a8lK/zRzqDhr9w==", + "requires": { + "date-fns": "1.29.0", + "lodash-es": "4.17.8", + "qs": "6.5.1" + }, + "dependencies": { + "qs": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", + "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==" + } + } + }, "ansi-html": { "version": "0.0.7", "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", @@ -587,12 +584,6 @@ "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", "dev": true }, - "array-filter": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/array-filter/-/array-filter-0.0.1.tgz", - "integrity": "sha1-fajPLiZijtcygDWB/SH2fKzS7uw=", - "dev": true - }, "array-find-index": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", @@ -615,18 +606,6 @@ "es-abstract": "1.10.0" } }, - "array-map": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/array-map/-/array-map-0.0.0.tgz", - "integrity": "sha1-iKK6tz0c97zVwbEYoAP2b2ZfpmI=", - "dev": true - }, - "array-reduce": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/array-reduce/-/array-reduce-0.0.0.tgz", - "integrity": "sha1-FziZ0//Rx9k4PkR5Ul2+J4yrXys=", - "dev": true - }, "array-slice": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz", @@ -718,30 +697,13 @@ "dev": true, "optional": true }, - "astw": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/astw/-/astw-2.2.0.tgz", - "integrity": "sha1-e9QXhNMkk5h66yOba04cV6hzuRc=", - "dev": true, - "requires": { - "acorn": "4.0.13" - }, - "dependencies": { - "acorn": { - "version": "4.0.13", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz", - "integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=", - "dev": true - } - } - }, "async": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/async/-/async-2.6.0.tgz", "integrity": "sha512-xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw==", "dev": true, "requires": { - "lodash": "4.17.5" + "lodash": "4.17.10" } }, "async-each": { @@ -860,7 +822,7 @@ "babel-types": "6.26.0", "detect-indent": "4.0.0", "jsesc": "1.3.0", - "lodash": "4.17.5", + "lodash": "4.17.10", "source-map": "0.5.7", "trim-right": "1.0.1" }, @@ -888,7 +850,7 @@ "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", "dev": true, "requires": { - "core-js": "2.5.3", + "core-js": "2.5.6", "regenerator-runtime": "0.11.1" } }, @@ -902,7 +864,7 @@ "babel-traverse": "6.26.0", "babel-types": "6.26.0", "babylon": "6.18.0", - "lodash": "4.17.5" + "lodash": "4.17.10" } }, "babel-traverse": { @@ -919,7 +881,7 @@ "debug": "2.6.9", "globals": "9.18.0", "invariant": "2.2.3", - "lodash": "4.17.5" + "lodash": "4.17.10" } }, "babel-types": { @@ -930,7 +892,7 @@ "requires": { "babel-runtime": "6.26.0", "esutils": "2.0.2", - "lodash": "4.17.5", + "lodash": "4.17.10", "to-fast-properties": "1.0.3" } }, @@ -1217,158 +1179,6 @@ "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", "dev": true }, - "browser-pack": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/browser-pack/-/browser-pack-6.0.4.tgz", - "integrity": "sha512-Q4Rvn7P6ObyWfc4stqLWHtG1MJ8vVtjgT24Zbu+8UTzxYuZouqZsmNRRTFVMY/Ux0eIKv1d+JWzsInTX+fdHPQ==", - "dev": true, - "requires": { - "JSONStream": "1.3.2", - "combine-source-map": "0.8.0", - "defined": "1.0.0", - "safe-buffer": "5.1.1", - "through2": "2.0.3", - "umd": "3.0.1" - } - }, - "browser-resolve": { - "version": "1.11.2", - "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.2.tgz", - "integrity": "sha1-j/CbCixCFxihBRwmCzLkj0QpOM4=", - "dev": true, - "requires": { - "resolve": "1.1.7" - }, - "dependencies": { - "resolve": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", - "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=", - "dev": true - } - } - }, - "browserify": { - "version": "14.5.0", - "resolved": "https://registry.npmjs.org/browserify/-/browserify-14.5.0.tgz", - "integrity": "sha512-gKfOsNQv/toWz+60nSPfYzuwSEdzvV2WdxrVPUbPD/qui44rAkB3t3muNtmmGYHqrG56FGwX9SUEQmzNLAeS7g==", - "dev": true, - "requires": { - "JSONStream": "1.3.2", - "assert": "1.4.1", - "browser-pack": "6.0.4", - "browser-resolve": "1.11.2", - "browserify-zlib": "0.2.0", - "buffer": "5.1.0", - "cached-path-relative": "1.0.1", - "concat-stream": "1.5.2", - "console-browserify": "1.1.0", - "constants-browserify": "1.0.0", - "crypto-browserify": "3.12.0", - "defined": "1.0.0", - "deps-sort": "2.0.0", - "domain-browser": "1.1.7", - "duplexer2": "0.1.4", - "events": "1.1.1", - "glob": "7.1.2", - "has": "1.0.1", - "htmlescape": "1.1.1", - "https-browserify": "1.0.0", - "inherits": "2.0.3", - "insert-module-globals": "7.0.2", - "labeled-stream-splicer": "2.0.0", - "module-deps": "4.1.1", - "os-browserify": "0.3.0", - "parents": "1.0.1", - "path-browserify": "0.0.0", - "process": "0.11.10", - "punycode": "1.4.1", - "querystring-es3": "0.2.1", - "read-only-stream": "2.0.0", - "readable-stream": "2.3.5", - "resolve": "1.5.0", - "shasum": "1.0.2", - "shell-quote": "1.6.1", - "stream-browserify": "2.0.1", - "stream-http": "2.8.0", - "string_decoder": "1.0.3", - "subarg": "1.0.0", - "syntax-error": "1.4.0", - "through2": "2.0.3", - "timers-browserify": "1.4.2", - "tty-browserify": "0.0.0", - "url": "0.11.0", - "util": "0.10.3", - "vm-browserify": "0.0.4", - "xtend": "4.0.1" - }, - "dependencies": { - "buffer": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.1.0.tgz", - "integrity": "sha512-YkIRgwsZwJWTnyQrsBTWefizHh+8GYj3kbL1BTiAQ/9pwpino0G7B2gp5tx/FUBqUlvtxV85KNR3mwfAtv15Yw==", - "dev": true, - "requires": { - "base64-js": "1.2.3", - "ieee754": "1.1.8" - } - }, - "concat-stream": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz", - "integrity": "sha1-cIl4Yk2FavQaWnQd790mHadSwmY=", - "dev": true, - "requires": { - "inherits": "2.0.3", - "readable-stream": "2.0.6", - "typedarray": "0.0.6" - }, - "dependencies": { - "readable-stream": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", - "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", - "dev": true, - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "1.0.7", - "string_decoder": "0.10.31", - "util-deprecate": "1.0.2" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", - "dev": true - } - } - }, - "domain-browser": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.1.7.tgz", - "integrity": "sha1-hnqksJP6oF8d4IwG9NeyH9+GmLw=", - "dev": true - }, - "process-nextick-args": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", - "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", - "dev": true - }, - "timers-browserify": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.2.tgz", - "integrity": "sha1-ycWLV1voQHN1y14kYtrO50NZ9B0=", - "dev": true, - "requires": { - "process": "0.11.10" - } - } - } - }, "browserify-aes": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.1.1.tgz", @@ -1460,6 +1270,12 @@ "isarray": "1.0.0" } }, + "buffer-from": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.0.0.tgz", + "integrity": "sha512-83apNb8KK0Se60UE1+4Ukbe3HbfELJ6UlI4ldtOGs7So4KD26orJM8hIY9lxdzP+UpItH1Yh/Y8GUvNFWFFRxA==", + "dev": true + }, "buffer-indexof": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", @@ -1558,12 +1374,6 @@ } } }, - "cached-path-relative": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cached-path-relative/-/cached-path-relative-1.0.1.tgz", - "integrity": "sha1-0JxLUoAKpMB44t2BqGmqyQ0uVOc=", - "dev": true - }, "callsite": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", @@ -1699,9 +1509,9 @@ "dev": true }, "circular-json": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.5.1.tgz", - "integrity": "sha512-UjgcRlTAhAkLeXmDe2wK7ktwy/tgAqxiSndTIPiFZuIPLZmzHzWMwUIe9h9m/OokypG7snxCDEuwJshGBdPvaw==", + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.5.3.tgz", + "integrity": "sha512-YlxLOimeIoQGHnMe3kbf8qIV2Bj7uXLbljMPRguNT49GmSAzooNfS9EJ91rSJKbLBOOzM5agvtx0WyechZN/Hw==", "dev": true }, "clap": { @@ -1903,9 +1713,9 @@ "dev": true }, "codelyzer": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/codelyzer/-/codelyzer-4.2.1.tgz", - "integrity": "sha512-CKwfgpfkqi9dyzy4s6ELaxJ54QgJ6A8iTSsM4bzHbLuTpbKncvNc3DUlCvpnkHBhK47gEf4qFsWoYqLrJPhy6g==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/codelyzer/-/codelyzer-4.3.0.tgz", + "integrity": "sha512-RLMrtLwrBS0dfo2/KTP+2NHofCpzcuh0bEp/A/naqvQonbUL4AW/qWQdbpn8dMNudtpmzEx9eS8KEpGdVPg1BA==", "dev": true, "requires": { "app-root-path": "2.0.1", @@ -1984,33 +1794,7 @@ "integrity": "sha1-RYwH4J4NkA/Ci3Cj/sLazR0st/Y=", "dev": true, "requires": { - "lodash": "4.17.5" - } - }, - "combine-source-map": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/combine-source-map/-/combine-source-map-0.8.0.tgz", - "integrity": "sha1-pY0N8ELBhvz4IqjoAV9UUNLXmos=", - "dev": true, - "requires": { - "convert-source-map": "1.1.3", - "inline-source-map": "0.6.2", - "lodash.memoize": "3.0.4", - "source-map": "0.5.7" - }, - "dependencies": { - "convert-source-map": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.1.3.tgz", - "integrity": "sha1-SCnId+n+SbMWHzvzZziI4gRpmGA=", - "dev": true - }, - "lodash.memoize": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-3.0.4.tgz", - "integrity": "sha1-LcvSwofLwKVcxCMovQxzYVDVPj8=", - "dev": true - } + "lodash": "4.17.10" } }, "combined-stream": { @@ -2044,9 +1828,9 @@ "dev": true }, "compare-versions": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/compare-versions/-/compare-versions-3.1.0.tgz", - "integrity": "sha512-4hAxDSBypT/yp2ySFD346So6Ragw5xmBn/e/agIGl3bZr6DLUqnoRZPusxKrXdYRZpgexO9daejmIenlq/wrIQ==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/compare-versions/-/compare-versions-3.2.1.tgz", + "integrity": "sha512-2y2nHcopMG/NAyk6vWXlLs86XeM9sik4jmx1tKIgzMi9/RQ2eo758RGpxQO3ErihHmg0RlQITPqgz73y6s7quA==", "dev": true }, "component-bind": { @@ -2231,9 +2015,9 @@ } }, "core-js": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.3.tgz", - "integrity": "sha1-isw4NFgk8W2DZbfJtCWRaOjtYD4=" + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.6.tgz", + "integrity": "sha512-lQUVfQi0aLix2xpyjrrJEvfuYCqPc/HwmTKsC/VNf8q0zsjX7SQZtp4+oRONN5Tsur9GDETPjj+Ub2iDiGZfSQ==" }, "core-object": { "version": "3.1.5", @@ -2672,6 +2456,11 @@ "dev": true, "optional": true }, + "date-fns": { + "version": "1.29.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-1.29.0.tgz", + "integrity": "sha512-lbTXWZ6M20cWH8N9S6afb0SBm6tMk+uUg6z3MqHPKE9atmsY3kJkTm8vKe93izJ2B2+q5MV990sM2CHgtAZaOw==" + }, "date-format": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/date-format/-/date-format-1.2.0.tgz", @@ -2843,18 +2632,6 @@ "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", "dev": true }, - "deps-sort": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/deps-sort/-/deps-sort-2.0.0.tgz", - "integrity": "sha1-CRckkC6EZYJg65EHSMzNGvbiH7U=", - "dev": true, - "requires": { - "JSONStream": "1.3.2", - "shasum": "1.0.2", - "subarg": "1.0.0", - "through2": "2.0.3" - } - }, "des.js": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz", @@ -2886,16 +2663,6 @@ "integrity": "sha1-ogM8CcyOFY03dI+951B4Mr1s4Sc=", "dev": true }, - "detective": { - "version": "4.7.1", - "resolved": "https://registry.npmjs.org/detective/-/detective-4.7.1.tgz", - "integrity": "sha512-H6PmeeUcZloWtdt4DAkFyzFL94arpHr3NOwwmVILFiy+9Qd4JTxxXrzfyGk/lmct2qVGBwTSwSXagqu2BxmWig==", - "dev": true, - "requires": { - "acorn": "5.5.3", - "defined": "1.0.0" - } - }, "di": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/di/-/di-0.0.1.tgz", @@ -3039,15 +2806,6 @@ "dev": true, "optional": true }, - "duplexer2": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", - "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=", - "dev": true, - "requires": { - "readable-stream": "2.3.5" - } - }, "duplexify": { "version": "3.5.4", "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.5.4.tgz", @@ -5068,7 +4826,7 @@ "optional": true, "requires": { "glob": "7.1.2", - "lodash": "4.17.5", + "lodash": "4.17.10", "minimatch": "3.0.4" } }, @@ -5356,7 +5114,7 @@ "dev": true, "optional": true, "requires": { - "lodash": "4.17.5", + "lodash": "4.17.10", "request": "2.81.0" } }, @@ -5441,7 +5199,7 @@ "bluebird": "3.5.1", "html-minifier": "3.5.10", "loader-utils": "0.2.17", - "lodash": "4.17.5", + "lodash": "4.17.10", "pretty-error": "2.1.1", "toposort": "1.0.6" }, @@ -5460,12 +5218,6 @@ } } }, - "htmlescape": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/htmlescape/-/htmlescape-1.1.1.tgz", - "integrity": "sha1-OgPtwiFLyjtmQko+eVk0lQnLA1E=", - "dev": true - }, "htmlparser2": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.3.0.tgz", @@ -5580,7 +5332,7 @@ "requires": { "http-proxy": "1.16.2", "is-glob": "3.1.0", - "lodash": "4.17.5", + "lodash": "4.17.10", "micromatch": "2.3.11" }, "dependencies": { @@ -5764,94 +5516,6 @@ "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", "dev": true }, - "inline-source-map": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/inline-source-map/-/inline-source-map-0.6.2.tgz", - "integrity": "sha1-+Tk0ccGKedFyT4Y/o4tYY3Ct4qU=", - "dev": true, - "requires": { - "source-map": "0.5.7" - } - }, - "insert-module-globals": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/insert-module-globals/-/insert-module-globals-7.0.2.tgz", - "integrity": "sha512-p3s7g96Nm62MbHRuj9ZXab0DuJNWD7qcmdUXCOQ/ZZn42DtDXfsLill7bq19lDCx3K3StypqUnuE3H2VmIJFUw==", - "dev": true, - "requires": { - "JSONStream": "1.3.2", - "combine-source-map": "0.7.2", - "concat-stream": "1.5.2", - "is-buffer": "1.1.6", - "lexical-scope": "1.2.0", - "process": "0.11.10", - "through2": "2.0.3", - "xtend": "4.0.1" - }, - "dependencies": { - "combine-source-map": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/combine-source-map/-/combine-source-map-0.7.2.tgz", - "integrity": "sha1-CHAxKFazB6h8xKxIbzqaYq7MwJ4=", - "dev": true, - "requires": { - "convert-source-map": "1.1.3", - "inline-source-map": "0.6.2", - "lodash.memoize": "3.0.4", - "source-map": "0.5.7" - } - }, - "concat-stream": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz", - "integrity": "sha1-cIl4Yk2FavQaWnQd790mHadSwmY=", - "dev": true, - "requires": { - "inherits": "2.0.3", - "readable-stream": "2.0.6", - "typedarray": "0.0.6" - } - }, - "convert-source-map": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.1.3.tgz", - "integrity": "sha1-SCnId+n+SbMWHzvzZziI4gRpmGA=", - "dev": true - }, - "lodash.memoize": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-3.0.4.tgz", - "integrity": "sha1-LcvSwofLwKVcxCMovQxzYVDVPj8=", - "dev": true - }, - "process-nextick-args": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", - "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", - "dev": true - }, - "readable-stream": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", - "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", - "dev": true, - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "1.0.7", - "string_decoder": "0.10.31", - "util-deprecate": "1.0.2" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", - "dev": true - } - } - }, "internal-ip": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-1.2.0.tgz", @@ -6262,7 +5926,7 @@ "dev": true, "requires": { "async": "2.6.0", - "compare-versions": "3.1.0", + "compare-versions": "3.2.1", "fileset": "2.0.3", "istanbul-lib-coverage": "1.2.0", "istanbul-lib-hook": "1.2.0", @@ -6514,12 +6178,6 @@ "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", "dev": true }, - "jsonparse": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", - "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=", - "dev": true - }, "jsonpointer": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz", @@ -6548,19 +6206,18 @@ } }, "karma": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/karma/-/karma-2.0.0.tgz", - "integrity": "sha512-K9Kjp8CldLyL9ANSUctDyxC7zH3hpqXj/K09qVf06K3T/kXaHtFZ5tQciK7OzQu68FLvI89Na510kqQ2LCbpIw==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/karma/-/karma-2.0.2.tgz", + "integrity": "sha1-TS25QChQpmVR+nhLAWT7CCTtjEs=", "dev": true, "requires": { "bluebird": "3.5.1", "body-parser": "1.18.2", - "browserify": "14.5.0", "chokidar": "1.7.0", "colors": "1.1.2", "combine-lists": "1.0.1", "connect": "3.6.6", - "core-js": "2.5.3", + "core-js": "2.5.6", "di": "0.0.1", "dom-serialize": "2.2.1", "expand-braces": "0.1.2", @@ -6568,7 +6225,7 @@ "graceful-fs": "4.1.11", "http-proxy": "1.16.2", "isbinaryfile": "3.0.2", - "lodash": "4.17.5", + "lodash": "4.17.10", "log4js": "2.5.3", "mime": "1.6.0", "minimatch": "3.0.4", @@ -6580,7 +6237,7 @@ "socket.io": "2.0.4", "source-map": "0.6.1", "tmp": "0.0.33", - "useragent": "2.3.0" + "useragent": "2.2.1" }, "dependencies": { "source-map": { @@ -6611,9 +6268,9 @@ } }, "karma-coverage-istanbul-reporter": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-1.4.2.tgz", - "integrity": "sha512-sQHexslLF+QHzaKfK8+onTYMyvSwv+p5cDayVxhpEELGa3z0QuB+l0IMsicIkkBNMOJKQaqueiRoW7iuo7lsog==", + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-1.4.3.tgz", + "integrity": "sha1-O13/RmT6W41RlrmInj9hwforgNk=", "dev": true, "requires": { "istanbul-api": "1.3.1", @@ -6621,9 +6278,9 @@ } }, "karma-jasmine": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/karma-jasmine/-/karma-jasmine-1.1.1.tgz", - "integrity": "sha1-b+hA51oRYAydkehLM8RY4cRqNSk=", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/karma-jasmine/-/karma-jasmine-1.1.2.tgz", + "integrity": "sha1-OU8rJf+0pkS5rabyLUQ+L9CIhsM=", "dev": true }, "karma-jasmine-html-reporter": { @@ -6632,7 +6289,7 @@ "integrity": "sha1-SKjl7xiAdhfuK14zwRlMNbQ5Ukw=", "dev": true, "requires": { - "karma-jasmine": "1.1.1" + "karma-jasmine": "1.1.2" } }, "karma-source-map-support": { @@ -6659,25 +6316,6 @@ "is-buffer": "1.1.6" } }, - "labeled-stream-splicer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.0.tgz", - "integrity": "sha1-pS4dE4AkwAuGscDJH2d5GLiuClk=", - "dev": true, - "requires": { - "inherits": "2.0.3", - "isarray": "0.0.1", - "stream-splicer": "2.0.0" - }, - "dependencies": { - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", - "dev": true - } - } - }, "laravel-echo": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/laravel-echo/-/laravel-echo-1.3.5.tgz", @@ -6744,15 +6382,6 @@ "type-check": "0.3.2" } }, - "lexical-scope": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/lexical-scope/-/lexical-scope-1.2.0.tgz", - "integrity": "sha1-/Ope3HBKSzqHls3KQZw6CvryLfQ=", - "dev": true, - "requires": { - "astw": "2.2.0" - } - }, "libbase64": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/libbase64/-/libbase64-0.1.0.tgz", @@ -6842,9 +6471,14 @@ } }, "lodash": { - "version": "4.17.5", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.5.tgz", - "integrity": "sha512-svL3uiZf1RwhH+cWrfZn3A4+U58wbP0tGVTLQPbjplZxZ8ROD9VLuNgsRniTlLe7OlSqR79RUehXgpBW/s0IQw==" + "version": "4.17.10", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", + "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==" + }, + "lodash-es": { + "version": "4.17.8", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.8.tgz", + "integrity": "sha512-I9mjAxengFAleSThFhhAhvba6fsO0hunb9/0sQ6qQihSZsJRBofv2rYH58WXaOb/O++eUmYpCLywSQ22GfU+sA==" }, "lodash.assign": { "version": "4.2.0", @@ -6898,7 +6532,7 @@ "requires": { "amqplib": "0.5.2", "axios": "0.15.3", - "circular-json": "0.5.1", + "circular-json": "0.5.3", "date-format": "1.2.0", "debug": "3.1.0", "hipchat-notifier": "1.1.0", @@ -7145,7 +6779,7 @@ "dev": true, "optional": true, "requires": { - "lodash": "4.17.5" + "lodash": "4.17.10" } }, "debug": { @@ -7452,74 +7086,10 @@ "minimist": "0.0.8" } }, - "module-deps": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/module-deps/-/module-deps-4.1.1.tgz", - "integrity": "sha1-IyFYM/HaE/1gbMuAh7RIUty4If0=", - "dev": true, - "requires": { - "JSONStream": "1.3.2", - "browser-resolve": "1.11.2", - "cached-path-relative": "1.0.1", - "concat-stream": "1.5.2", - "defined": "1.0.0", - "detective": "4.7.1", - "duplexer2": "0.1.4", - "inherits": "2.0.3", - "parents": "1.0.1", - "readable-stream": "2.3.5", - "resolve": "1.5.0", - "stream-combiner2": "1.1.1", - "subarg": "1.0.0", - "through2": "2.0.3", - "xtend": "4.0.1" - }, - "dependencies": { - "concat-stream": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz", - "integrity": "sha1-cIl4Yk2FavQaWnQd790mHadSwmY=", - "dev": true, - "requires": { - "inherits": "2.0.3", - "readable-stream": "2.0.6", - "typedarray": "0.0.6" - }, - "dependencies": { - "readable-stream": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", - "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", - "dev": true, - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "1.0.7", - "string_decoder": "0.10.31", - "util-deprecate": "1.0.2" - } - } - } - }, - "process-nextick-args": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", - "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", - "dev": true - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", - "dev": true - } - } - }, "moment": { - "version": "2.21.0", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.21.0.tgz", - "integrity": "sha512-TCZ36BjURTeFTM/CwRcViQlfkMvL1/vFISuNLO5GkcVm1+QHfbSiNqZuWeMFjj1/3+uAjXswgRk30j1kkLYJBQ==" + "version": "2.22.1", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.22.1.tgz", + "integrity": "sha512-shJkRTSebXvsVqk56I+lkb2latjBs8I+pc2TzWc545y2iFnSjm7Wg0QMh+ZWcdSLQyGEau5jI8ocnmkyTgr9YQ==" }, "move-concurrently": { "version": "1.0.1", @@ -7632,6 +7202,15 @@ "dev": true, "optional": true }, + "ngx-moment": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ngx-moment/-/ngx-moment-2.0.0.tgz", + "integrity": "sha512-KVTiKeSbrnTTVVtEGvC/7cqN+SCTWtbFYcRP+o0gudOPOYPS35rjIRHygADSFWoq5XqctUr5tC4/ZsWv3vJDRw==", + "requires": { + "moment": "2.22.1", + "tslib": "1.9.0" + } + }, "no-case": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", @@ -7978,9 +7557,9 @@ } }, "npm": { - "version": "5.8.0", - "resolved": "https://registry.npmjs.org/npm/-/npm-5.8.0.tgz", - "integrity": "sha512-DowXzQwtSWDtbAjuWecuEiismR0VdNEYaL3VxNTYTdW6AGkYxfGk9LUZ/rt6etEyiH4IEk95HkJeGfXE5Rz9xQ==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/npm/-/npm-5.10.0.tgz", + "integrity": "sha512-lvjvjgR5wG2RJ2uqak1xtZcVAWMwVOzN5HkUlUj/n8rU1f3A0fNn+7HwOzH9Lyf0Ppyu9ApgsEpHczOSnx1cwA==", "requires": { "JSONStream": "1.3.2", "abbrev": "1.1.1", @@ -7991,9 +7570,11 @@ "archy": "1.0.0", "bin-links": "1.1.0", "bluebird": "3.5.1", + "byte-size": "4.0.2", "cacache": "10.0.4", "call-limit": "1.1.0", "chownr": "1.0.1", + "cli-columns": "3.1.2", "cli-table2": "0.2.0", "cmd-shim": "2.0.2", "columnify": "1.5.4", @@ -8018,11 +7599,12 @@ "ini": "1.3.5", "init-package-json": "1.10.3", "is-cidr": "1.0.0", - "json-parse-better-errors": "1.0.1", + "json-parse-better-errors": "1.0.2", "lazy-property": "1.0.0", - "libcipm": "1.6.0", - "libnpx": "10.0.1", - "lockfile": "1.0.3", + "libcipm": "1.6.2", + "libnpx": "10.2.0", + "lock-verify": "2.0.2", + "lockfile": "1.0.4", "lodash._baseindexof": "3.1.0", "lodash._baseuniq": "4.6.0", "lodash._bindcallback": "3.0.1", @@ -8034,20 +7616,23 @@ "lodash.union": "4.6.0", "lodash.uniq": "4.5.0", "lodash.without": "4.4.0", - "lru-cache": "4.1.1", + "lru-cache": "4.1.2", "meant": "1.0.1", "mississippi": "3.0.0", "mkdirp": "0.5.1", "move-concurrently": "1.0.1", + "node-gyp": "3.6.2", "nopt": "4.0.1", "normalize-package-data": "2.4.0", + "npm-audit-report": "1.0.9", "npm-cache-filename": "1.0.2", "npm-install-checks": "3.0.0", "npm-lifecycle": "2.0.1", - "npm-package-arg": "6.0.0", + "npm-package-arg": "6.1.0", "npm-packlist": "1.1.10", "npm-profile": "3.0.1", "npm-registry-client": "8.5.1", + "npm-registry-fetch": "1.1.0", "npm-user-validate": "1.0.0", "npmlog": "4.1.2", "once": "1.4.0", @@ -8056,39 +7641,40 @@ "pacote": "7.6.1", "path-is-inside": "1.0.2", "promise-inflight": "1.0.1", - "qrcode-terminal": "0.11.0", - "query-string": "5.1.0", + "qrcode-terminal": "0.12.0", + "query-string": "6.1.0", "qw": "1.0.1", "read": "1.0.7", "read-cmd-shim": "1.0.1", "read-installed": "4.0.3", "read-package-json": "2.0.13", - "read-package-tree": "5.1.6", - "readable-stream": "2.3.5", + "read-package-tree": "5.2.1", + "readable-stream": "2.3.6", "readdir-scoped-modules": "1.0.2", - "request": "2.83.0", - "retry": "0.10.1", + "request": "2.85.0", + "retry": "0.12.0", "rimraf": "2.6.2", - "safe-buffer": "5.1.1", + "safe-buffer": "5.1.2", "semver": "5.5.0", "sha": "2.0.1", "slide": "1.1.6", "sorted-object": "2.0.1", "sorted-union-stream": "2.1.3", - "ssri": "5.2.4", + "ssri": "5.3.0", "strip-ansi": "4.0.0", - "tar": "4.4.0", + "tar": "4.4.2", "text-table": "0.2.0", + "tiny-relative-date": "1.3.0", "uid-number": "0.0.6", "umask": "1.1.0", "unique-filename": "1.1.0", "unpipe": "1.0.0", - "update-notifier": "2.3.0", + "update-notifier": "2.5.0", "uuid": "3.2.1", - "validate-npm-package-license": "3.0.1", + "validate-npm-package-license": "3.0.3", "validate-npm-package-name": "3.0.0", "which": "1.3.0", - "worker-farm": "1.5.4", + "worker-farm": "1.6.0", "wrappy": "1.0.2", "write-file-atomic": "2.3.0" }, @@ -8151,6 +7737,10 @@ "version": "3.5.1", "bundled": true }, + "byte-size": { + "version": "4.0.2", + "bundled": true + }, "cacache": { "version": "10.0.4", "bundled": true, @@ -8159,13 +7749,13 @@ "chownr": "1.0.1", "glob": "7.1.2", "graceful-fs": "4.1.11", - "lru-cache": "4.1.1", + "lru-cache": "4.1.2", "mississippi": "2.0.0", "mkdirp": "0.5.1", "move-concurrently": "1.0.1", "promise-inflight": "1.0.1", "rimraf": "2.6.2", - "ssri": "5.2.4", + "ssri": "5.3.0", "unique-filename": "1.1.0", "y18n": "4.0.0" }, @@ -8191,7 +7781,7 @@ "bundled": true, "requires": { "inherits": "2.0.3", - "readable-stream": "2.3.5", + "readable-stream": "2.3.6", "typedarray": "0.0.6" }, "dependencies": { @@ -8207,7 +7797,7 @@ "requires": { "end-of-stream": "1.4.1", "inherits": "2.0.3", - "readable-stream": "2.3.5", + "readable-stream": "2.3.6", "stream-shift": "1.0.0" }, "dependencies": { @@ -8229,7 +7819,7 @@ "bundled": true, "requires": { "inherits": "2.0.3", - "readable-stream": "2.3.5" + "readable-stream": "2.3.6" } }, "from2": { @@ -8237,7 +7827,7 @@ "bundled": true, "requires": { "inherits": "2.0.3", - "readable-stream": "2.3.5" + "readable-stream": "2.3.6" } }, "parallel-transform": { @@ -8246,7 +7836,7 @@ "requires": { "cyclist": "0.2.2", "inherits": "2.0.3", - "readable-stream": "2.3.5" + "readable-stream": "2.3.6" }, "dependencies": { "cyclist": { @@ -8290,7 +7880,7 @@ "version": "2.0.3", "bundled": true, "requires": { - "readable-stream": "2.3.5", + "readable-stream": "2.3.6", "xtend": "4.0.1" }, "dependencies": { @@ -8316,6 +7906,50 @@ "version": "1.0.1", "bundled": true }, + "cli-columns": { + "version": "3.1.2", + "bundled": true, + "requires": { + "string-width": "2.1.1", + "strip-ansi": "3.0.1" + }, + "dependencies": { + "string-width": { + "version": "2.1.1", + "bundled": true, + "requires": { + "is-fullwidth-code-point": "2.0.0", + "strip-ansi": "4.0.0" + }, + "dependencies": { + "is-fullwidth-code-point": { + "version": "2.0.0", + "bundled": true + }, + "strip-ansi": { + "version": "4.0.0", + "bundled": true, + "requires": { + "ansi-regex": "3.0.0" + } + } + } + }, + "strip-ansi": { + "version": "3.0.1", + "bundled": true, + "requires": { + "ansi-regex": "2.1.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "bundled": true + } + } + } + } + }, "cli-table2": { "version": "0.2.0", "bundled": true, @@ -8494,7 +8128,7 @@ "graceful-fs": "4.1.11", "iferr": "0.1.5", "imurmurhash": "0.1.4", - "readable-stream": "2.3.5" + "readable-stream": "2.3.6" } }, "gentle-fs": { @@ -8601,12 +8235,12 @@ "bundled": true, "requires": { "glob": "7.1.2", - "npm-package-arg": "6.0.0", + "npm-package-arg": "6.1.0", "promzard": "0.3.0", "read": "1.0.7", "read-package-json": "2.0.13", "semver": "5.5.0", - "validate-npm-package-license": "3.0.1", + "validate-npm-package-license": "3.0.3", "validate-npm-package-name": "3.0.0" }, "dependencies": { @@ -8633,7 +8267,7 @@ } }, "json-parse-better-errors": { - "version": "1.0.1", + "version": "1.0.2", "bundled": true }, "lazy-property": { @@ -8641,26 +8275,26 @@ "bundled": true }, "libcipm": { - "version": "1.6.0", + "version": "1.6.2", "bundled": true, "requires": { "bin-links": "1.1.0", "bluebird": "3.5.1", "find-npm-prefix": "1.0.2", "graceful-fs": "4.1.11", - "lock-verify": "2.0.0", + "lock-verify": "2.0.1", "npm-lifecycle": "2.0.1", "npm-logical-tree": "1.2.1", - "npm-package-arg": "6.0.0", + "npm-package-arg": "6.1.0", "pacote": "7.6.1", "protoduck": "5.0.0", "read-package-json": "2.0.13", "rimraf": "2.6.2", - "worker-farm": "1.5.4" + "worker-farm": "1.6.0" }, "dependencies": { "lock-verify": { - "version": "2.0.0", + "version": "2.0.1", "bundled": true, "requires": { "npm-package-arg": "5.1.2", @@ -8695,45 +8329,18 @@ "bundled": true } } - }, - "worker-farm": { - "version": "1.5.4", - "bundled": true, - "requires": { - "errno": "0.1.7", - "xtend": "4.0.1" - }, - "dependencies": { - "errno": { - "version": "0.1.7", - "bundled": true, - "requires": { - "prr": "1.0.1" - }, - "dependencies": { - "prr": { - "version": "1.0.1", - "bundled": true - } - } - }, - "xtend": { - "version": "4.0.1", - "bundled": true - } - } } } }, "libnpx": { - "version": "10.0.1", + "version": "10.2.0", "bundled": true, "requires": { "dotenv": "5.0.1", - "npm-package-arg": "6.0.0", + "npm-package-arg": "6.1.0", "rimraf": "2.6.2", - "safe-buffer": "5.1.1", - "update-notifier": "2.3.0", + "safe-buffer": "5.1.2", + "update-notifier": "2.5.0", "which": "1.3.0", "y18n": "4.0.0", "yargs": "11.0.0" @@ -8751,7 +8358,7 @@ "version": "11.0.0", "bundled": true, "requires": { - "cliui": "4.0.0", + "cliui": "4.1.0", "decamelize": "1.2.0", "find-up": "2.1.0", "get-caller-file": "1.0.2", @@ -8766,7 +8373,7 @@ }, "dependencies": { "cliui": { - "version": "4.0.0", + "version": "4.1.0", "bundled": true, "requires": { "string-width": "2.1.1", @@ -8906,7 +8513,7 @@ "version": "5.1.0", "bundled": true, "requires": { - "lru-cache": "4.1.1", + "lru-cache": "4.1.2", "shebang-command": "1.2.0", "which": "1.3.0" }, @@ -9040,9 +8647,26 @@ } } }, + "lock-verify": { + "version": "2.0.2", + "bundled": true, + "requires": { + "npm-package-arg": "6.1.0", + "semver": "5.5.0" + } + }, "lockfile": { - "version": "1.0.3", - "bundled": true + "version": "1.0.4", + "bundled": true, + "requires": { + "signal-exit": "3.0.2" + }, + "dependencies": { + "signal-exit": { + "version": "3.0.2", + "bundled": true + } + } }, "lodash._baseindexof": { "version": "3.1.0", @@ -9106,7 +8730,7 @@ "bundled": true }, "lru-cache": { - "version": "4.1.1", + "version": "4.1.2", "bundled": true, "requires": { "pseudomap": "1.0.2", @@ -9148,7 +8772,7 @@ "bundled": true, "requires": { "inherits": "2.0.3", - "readable-stream": "2.3.5", + "readable-stream": "2.3.6", "typedarray": "0.0.6" }, "dependencies": { @@ -9164,7 +8788,7 @@ "requires": { "end-of-stream": "1.4.1", "inherits": "2.0.3", - "readable-stream": "2.3.5", + "readable-stream": "2.3.6", "stream-shift": "1.0.0" }, "dependencies": { @@ -9186,7 +8810,7 @@ "bundled": true, "requires": { "inherits": "2.0.3", - "readable-stream": "2.3.5" + "readable-stream": "2.3.6" } }, "from2": { @@ -9194,7 +8818,7 @@ "bundled": true, "requires": { "inherits": "2.0.3", - "readable-stream": "2.3.5" + "readable-stream": "2.3.6" } }, "parallel-transform": { @@ -9203,7 +8827,7 @@ "requires": { "cyclist": "0.2.2", "inherits": "2.0.3", - "readable-stream": "2.3.5" + "readable-stream": "2.3.6" }, "dependencies": { "cyclist": { @@ -9257,7 +8881,7 @@ "version": "2.0.3", "bundled": true, "requires": { - "readable-stream": "2.3.5", + "readable-stream": "2.3.6", "xtend": "4.0.1" }, "dependencies": { @@ -9315,6 +8939,93 @@ } } }, + "node-gyp": { + "version": "3.6.2", + "bundled": true, + "requires": { + "fstream": "1.0.11", + "glob": "7.1.2", + "graceful-fs": "4.1.11", + "minimatch": "3.0.4", + "mkdirp": "0.5.1", + "nopt": "3.0.6", + "npmlog": "4.1.2", + "osenv": "0.1.5", + "request": "2.85.0", + "rimraf": "2.6.2", + "semver": "5.3.0", + "tar": "2.2.1", + "which": "1.3.0" + }, + "dependencies": { + "fstream": { + "version": "1.0.11", + "bundled": true, + "requires": { + "graceful-fs": "4.1.11", + "inherits": "2.0.3", + "mkdirp": "0.5.1", + "rimraf": "2.6.2" + } + }, + "minimatch": { + "version": "3.0.4", + "bundled": true, + "requires": { + "brace-expansion": "1.1.11" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.11", + "bundled": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + }, + "dependencies": { + "balanced-match": { + "version": "1.0.0", + "bundled": true + }, + "concat-map": { + "version": "0.0.1", + "bundled": true + } + } + } + } + }, + "nopt": { + "version": "3.0.6", + "bundled": true, + "requires": { + "abbrev": "1.1.1" + } + }, + "semver": { + "version": "5.3.0", + "bundled": true + }, + "tar": { + "version": "2.2.1", + "bundled": true, + "requires": { + "block-stream": "0.0.9", + "fstream": "1.0.11", + "inherits": "2.0.3" + }, + "dependencies": { + "block-stream": { + "version": "0.0.9", + "bundled": true, + "requires": { + "inherits": "2.0.3" + } + } + } + } + } + }, "nopt": { "version": "4.0.1", "bundled": true, @@ -9330,7 +9041,7 @@ "hosted-git-info": "2.6.0", "is-builtin-module": "1.0.0", "semver": "5.5.0", - "validate-npm-package-license": "3.0.1" + "validate-npm-package-license": "3.0.3" }, "dependencies": { "is-builtin-module": { @@ -9348,6 +9059,20 @@ } } }, + "npm-audit-report": { + "version": "1.0.9", + "bundled": true, + "requires": { + "cli-table2": "0.2.0", + "console-control-strings": "1.1.0" + }, + "dependencies": { + "console-control-strings": { + "version": "1.1.0", + "bundled": true + } + } + }, "npm-cache-filename": { "version": "1.0.2", "bundled": true @@ -9377,126 +9102,39 @@ "version": "5.0.0", "bundled": true }, - "node-gyp": { - "version": "3.6.2", + "resolve-from": { + "version": "4.0.0", + "bundled": true + } + } + }, + "npm-package-arg": { + "version": "6.1.0", + "bundled": true, + "requires": { + "hosted-git-info": "2.6.0", + "osenv": "0.1.5", + "semver": "5.5.0", + "validate-npm-package-name": "3.0.0" + } + }, + "npm-packlist": { + "version": "1.1.10", + "bundled": true, + "requires": { + "ignore-walk": "3.0.1", + "npm-bundled": "1.0.3" + }, + "dependencies": { + "ignore-walk": { + "version": "3.0.1", "bundled": true, "requires": { - "fstream": "1.0.11", - "glob": "7.1.2", - "graceful-fs": "4.1.11", - "minimatch": "3.0.4", - "mkdirp": "0.5.1", - "nopt": "3.0.6", - "npmlog": "4.1.2", - "osenv": "0.1.5", - "request": "2.83.0", - "rimraf": "2.6.2", - "semver": "5.3.0", - "tar": "2.2.1", - "which": "1.3.0" + "minimatch": "3.0.4" }, "dependencies": { - "fstream": { - "version": "1.0.11", - "bundled": true, - "requires": { - "graceful-fs": "4.1.11", - "inherits": "2.0.3", - "mkdirp": "0.5.1", - "rimraf": "2.6.2" - } - }, - "minimatch": { - "version": "3.0.4", - "bundled": true, - "requires": { - "brace-expansion": "1.1.11" - }, - "dependencies": { - "brace-expansion": { - "version": "1.1.11", - "bundled": true, - "requires": { - "balanced-match": "1.0.0", - "concat-map": "0.0.1" - }, - "dependencies": { - "balanced-match": { - "version": "1.0.0", - "bundled": true - }, - "concat-map": { - "version": "0.0.1", - "bundled": true - } - } - } - } - }, - "nopt": { - "version": "3.0.6", - "bundled": true, - "requires": { - "abbrev": "1.1.1" - } - }, - "semver": { - "version": "5.3.0", - "bundled": true - }, - "tar": { - "version": "2.2.1", - "bundled": true, - "requires": { - "block-stream": "0.0.9", - "fstream": "1.0.11", - "inherits": "2.0.3" - }, - "dependencies": { - "block-stream": { - "version": "0.0.9", - "bundled": true, - "requires": { - "inherits": "2.0.3" - } - } - } - } - } - }, - "resolve-from": { - "version": "4.0.0", - "bundled": true - } - } - }, - "npm-package-arg": { - "version": "6.0.0", - "bundled": true, - "requires": { - "hosted-git-info": "2.6.0", - "osenv": "0.1.5", - "semver": "5.5.0", - "validate-npm-package-name": "3.0.0" - } - }, - "npm-packlist": { - "version": "1.1.10", - "bundled": true, - "requires": { - "ignore-walk": "3.0.1", - "npm-bundled": "1.0.3" - }, - "dependencies": { - "ignore-walk": { - "version": "3.0.1", - "bundled": true, - "requires": { - "minimatch": "3.0.4" - }, - "dependencies": { - "minimatch": { - "version": "3.0.4", + "minimatch": { + "version": "3.0.4", "bundled": true, "requires": { "brace-expansion": "1.1.8" @@ -9547,12 +9185,12 @@ "http-cache-semantics": "3.8.1", "http-proxy-agent": "2.0.0", "https-proxy-agent": "2.1.1", - "lru-cache": "4.1.1", + "lru-cache": "4.1.2", "mississippi": "1.3.1", "node-fetch-npm": "2.0.2", "promise-retry": "1.1.1", "socks-proxy-agent": "3.0.1", - "ssri": "5.2.4" + "ssri": "5.3.0" }, "dependencies": { "agentkeepalive": { @@ -9692,7 +9330,7 @@ "bundled": true, "requires": { "inherits": "2.0.3", - "readable-stream": "2.3.5", + "readable-stream": "2.3.6", "typedarray": "0.0.6" }, "dependencies": { @@ -9708,7 +9346,7 @@ "requires": { "end-of-stream": "1.4.1", "inherits": "2.0.3", - "readable-stream": "2.3.5", + "readable-stream": "2.3.6", "stream-shift": "1.0.0" }, "dependencies": { @@ -9730,7 +9368,7 @@ "bundled": true, "requires": { "inherits": "2.0.3", - "readable-stream": "2.3.5" + "readable-stream": "2.3.6" } }, "from2": { @@ -9738,7 +9376,7 @@ "bundled": true, "requires": { "inherits": "2.0.3", - "readable-stream": "2.3.5" + "readable-stream": "2.3.6" } }, "parallel-transform": { @@ -9747,7 +9385,7 @@ "requires": { "cyclist": "0.2.2", "inherits": "2.0.3", - "readable-stream": "2.3.5" + "readable-stream": "2.3.6" }, "dependencies": { "cyclist": { @@ -9801,7 +9439,7 @@ "version": "2.0.3", "bundled": true, "requires": { - "readable-stream": "2.3.5", + "readable-stream": "2.3.6", "xtend": "4.0.1" }, "dependencies": { @@ -9818,26 +9456,319 @@ "bundled": true, "requires": { "encoding": "0.1.12", - "json-parse-better-errors": "1.0.1", - "safe-buffer": "5.1.1" + "json-parse-better-errors": "1.0.1", + "safe-buffer": "5.1.2" + }, + "dependencies": { + "encoding": { + "version": "0.1.12", + "bundled": true, + "requires": { + "iconv-lite": "0.4.19" + }, + "dependencies": { + "iconv-lite": { + "version": "0.4.19", + "bundled": true + } + } + }, + "json-parse-better-errors": { + "version": "1.0.1", + "bundled": true + } + } + }, + "promise-retry": { + "version": "1.1.1", + "bundled": true, + "requires": { + "err-code": "1.1.2", + "retry": "0.10.1" + }, + "dependencies": { + "err-code": { + "version": "1.1.2", + "bundled": true + }, + "retry": { + "version": "0.10.1", + "bundled": true + } + } + }, + "socks-proxy-agent": { + "version": "3.0.1", + "bundled": true, + "requires": { + "agent-base": "4.2.0", + "socks": "1.1.10" + }, + "dependencies": { + "agent-base": { + "version": "4.2.0", + "bundled": true, + "requires": { + "es6-promisify": "5.0.0" + }, + "dependencies": { + "es6-promisify": { + "version": "5.0.0", + "bundled": true, + "requires": { + "es6-promise": "4.2.4" + }, + "dependencies": { + "es6-promise": { + "version": "4.2.4", + "bundled": true + } + } + } + } + }, + "socks": { + "version": "1.1.10", + "bundled": true, + "requires": { + "ip": "1.1.5", + "smart-buffer": "1.1.15" + }, + "dependencies": { + "ip": { + "version": "1.1.5", + "bundled": true + }, + "smart-buffer": { + "version": "1.1.15", + "bundled": true + } + } + } + } + } + } + } + } + }, + "npm-registry-client": { + "version": "8.5.1", + "bundled": true, + "requires": { + "concat-stream": "1.6.1", + "graceful-fs": "4.1.11", + "normalize-package-data": "2.4.0", + "npm-package-arg": "6.1.0", + "npmlog": "4.1.2", + "once": "1.4.0", + "request": "2.85.0", + "retry": "0.10.1", + "safe-buffer": "5.1.2", + "semver": "5.5.0", + "slide": "1.1.6", + "ssri": "5.3.0" + }, + "dependencies": { + "concat-stream": { + "version": "1.6.1", + "bundled": true, + "requires": { + "inherits": "2.0.3", + "readable-stream": "2.3.6", + "typedarray": "0.0.6" + }, + "dependencies": { + "typedarray": { + "version": "0.0.6", + "bundled": true + } + } + }, + "retry": { + "version": "0.10.1", + "bundled": true + } + } + }, + "npm-registry-fetch": { + "version": "1.1.0", + "bundled": true, + "requires": { + "bluebird": "3.5.1", + "figgy-pudding": "2.0.1", + "lru-cache": "4.1.2", + "make-fetch-happen": "3.0.0", + "npm-package-arg": "6.1.0", + "safe-buffer": "5.1.2" + }, + "dependencies": { + "figgy-pudding": { + "version": "2.0.1", + "bundled": true + }, + "make-fetch-happen": { + "version": "3.0.0", + "bundled": true, + "requires": { + "agentkeepalive": "3.4.1", + "cacache": "10.0.4", + "http-cache-semantics": "3.8.1", + "http-proxy-agent": "2.1.0", + "https-proxy-agent": "2.2.1", + "lru-cache": "4.1.2", + "mississippi": "3.0.0", + "node-fetch-npm": "2.0.2", + "promise-retry": "1.1.1", + "socks-proxy-agent": "3.0.1", + "ssri": "5.3.0" + }, + "dependencies": { + "agentkeepalive": { + "version": "3.4.1", + "bundled": true, + "requires": { + "humanize-ms": "1.2.1" + }, + "dependencies": { + "humanize-ms": { + "version": "1.2.1", + "bundled": true, + "requires": { + "ms": "2.1.1" + }, + "dependencies": { + "ms": { + "version": "2.1.1", + "bundled": true + } + } + } + } + }, + "http-cache-semantics": { + "version": "3.8.1", + "bundled": true + }, + "http-proxy-agent": { + "version": "2.1.0", + "bundled": true, + "requires": { + "agent-base": "4.2.0", + "debug": "3.1.0" + }, + "dependencies": { + "agent-base": { + "version": "4.2.0", + "bundled": true, + "requires": { + "es6-promisify": "5.0.0" + }, + "dependencies": { + "es6-promisify": { + "version": "5.0.0", + "bundled": true, + "requires": { + "es6-promise": "4.2.4" + }, + "dependencies": { + "es6-promise": { + "version": "4.2.4", + "bundled": true + } + } + } + } + }, + "debug": { + "version": "3.1.0", + "bundled": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "bundled": true + } + } + } + } + }, + "https-proxy-agent": { + "version": "2.2.1", + "bundled": true, + "requires": { + "agent-base": "4.2.0", + "debug": "3.1.0" + }, + "dependencies": { + "agent-base": { + "version": "4.2.0", + "bundled": true, + "requires": { + "es6-promisify": "5.0.0" + }, + "dependencies": { + "es6-promisify": { + "version": "5.0.0", + "bundled": true, + "requires": { + "es6-promise": "4.2.4" + }, + "dependencies": { + "es6-promise": { + "version": "4.2.4", + "bundled": true + } + } + } + } + }, + "debug": { + "version": "3.1.0", + "bundled": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "bundled": true + } + } + } + } + }, + "node-fetch-npm": { + "version": "2.0.2", + "bundled": true, + "requires": { + "encoding": "0.1.12", + "json-parse-better-errors": "1.0.2", + "safe-buffer": "5.1.2" }, "dependencies": { "encoding": { "version": "0.1.12", "bundled": true, "requires": { - "iconv-lite": "0.4.19" + "iconv-lite": "0.4.21" }, "dependencies": { "iconv-lite": { - "version": "0.4.19", - "bundled": true + "version": "0.4.21", + "bundled": true, + "requires": { + "safer-buffer": "2.1.2" + }, + "dependencies": { + "safer-buffer": { + "version": "2.1.2", + "bundled": true + } + } } } - }, - "json-parse-better-errors": { - "version": "1.0.1", - "bundled": true } } }, @@ -9852,6 +9783,10 @@ "err-code": { "version": "1.1.2", "bundled": true + }, + "retry": { + "version": "0.10.1", + "bundled": true } } }, @@ -9909,41 +9844,6 @@ } } }, - "npm-registry-client": { - "version": "8.5.1", - "bundled": true, - "requires": { - "concat-stream": "1.6.1", - "graceful-fs": "4.1.11", - "normalize-package-data": "2.4.0", - "npm-package-arg": "6.0.0", - "npmlog": "4.1.2", - "once": "1.4.0", - "request": "2.83.0", - "retry": "0.10.1", - "safe-buffer": "5.1.1", - "semver": "5.5.0", - "slide": "1.1.6", - "ssri": "5.2.4" - }, - "dependencies": { - "concat-stream": { - "version": "1.6.1", - "bundled": true, - "requires": { - "inherits": "2.0.3", - "readable-stream": "2.3.5", - "typedarray": "0.0.6" - }, - "dependencies": { - "typedarray": { - "version": "0.0.6", - "bundled": true - } - } - } - } - }, "npm-user-validate": { "version": "1.0.0", "bundled": true @@ -9963,7 +9863,7 @@ "bundled": true, "requires": { "delegates": "1.0.0", - "readable-stream": "2.3.5" + "readable-stream": "2.3.6" }, "dependencies": { "delegates": { @@ -10091,13 +9991,13 @@ "cacache": "10.0.4", "get-stream": "3.0.0", "glob": "7.1.2", - "lru-cache": "4.1.1", + "lru-cache": "4.1.2", "make-fetch-happen": "2.6.0", "minimatch": "3.0.4", "mississippi": "3.0.0", "mkdirp": "0.5.1", "normalize-package-data": "2.4.0", - "npm-package-arg": "6.0.0", + "npm-package-arg": "6.1.0", "npm-packlist": "1.1.10", "npm-pick-manifest": "2.1.0", "osenv": "0.1.5", @@ -10105,10 +10005,10 @@ "promise-retry": "1.1.1", "protoduck": "5.0.0", "rimraf": "2.6.2", - "safe-buffer": "5.1.1", + "safe-buffer": "5.1.2", "semver": "5.5.0", - "ssri": "5.2.4", - "tar": "4.4.0", + "ssri": "5.3.0", + "tar": "4.4.2", "unique-filename": "1.1.0", "which": "1.3.0" }, @@ -10126,12 +10026,12 @@ "http-cache-semantics": "3.8.1", "http-proxy-agent": "2.1.0", "https-proxy-agent": "2.2.0", - "lru-cache": "4.1.1", + "lru-cache": "4.1.2", "mississippi": "1.3.1", "node-fetch-npm": "2.0.2", "promise-retry": "1.1.1", "socks-proxy-agent": "3.0.1", - "ssri": "5.2.4" + "ssri": "5.3.0" }, "dependencies": { "agentkeepalive": { @@ -10271,7 +10171,7 @@ "bundled": true, "requires": { "inherits": "2.0.3", - "readable-stream": "2.3.5", + "readable-stream": "2.3.6", "typedarray": "0.0.6" }, "dependencies": { @@ -10287,7 +10187,7 @@ "requires": { "end-of-stream": "1.4.1", "inherits": "2.0.3", - "readable-stream": "2.3.5", + "readable-stream": "2.3.6", "stream-shift": "1.0.0" }, "dependencies": { @@ -10309,7 +10209,7 @@ "bundled": true, "requires": { "inherits": "2.0.3", - "readable-stream": "2.3.5" + "readable-stream": "2.3.6" } }, "from2": { @@ -10317,7 +10217,7 @@ "bundled": true, "requires": { "inherits": "2.0.3", - "readable-stream": "2.3.5" + "readable-stream": "2.3.6" } }, "parallel-transform": { @@ -10326,7 +10226,7 @@ "requires": { "cyclist": "0.2.2", "inherits": "2.0.3", - "readable-stream": "2.3.5" + "readable-stream": "2.3.6" }, "dependencies": { "cyclist": { @@ -10380,7 +10280,7 @@ "version": "2.0.3", "bundled": true, "requires": { - "readable-stream": "2.3.5", + "readable-stream": "2.3.6", "xtend": "4.0.1" }, "dependencies": { @@ -10398,7 +10298,7 @@ "requires": { "encoding": "0.1.12", "json-parse-better-errors": "1.0.1", - "safe-buffer": "5.1.1" + "safe-buffer": "5.1.2" }, "dependencies": { "encoding": { @@ -10503,7 +10403,7 @@ "version": "2.1.0", "bundled": true, "requires": { - "npm-package-arg": "6.0.0", + "npm-package-arg": "6.1.0", "semver": "5.5.0" } }, @@ -10518,6 +10418,10 @@ "err-code": { "version": "1.1.2", "bundled": true + }, + "retry": { + "version": "0.10.1", + "bundled": true } } }, @@ -10545,28 +10449,23 @@ "bundled": true }, "qrcode-terminal": { - "version": "0.11.0", + "version": "0.12.0", "bundled": true }, "query-string": { - "version": "5.1.0", + "version": "6.1.0", "bundled": true, "requires": { "decode-uri-component": "0.2.0", - "object-assign": "4.1.1", - "strict-uri-encode": "1.1.0" + "strict-uri-encode": "2.0.0" }, "dependencies": { "decode-uri-component": { "version": "0.2.0", "bundled": true }, - "object-assign": { - "version": "4.1.1", - "bundled": true - }, "strict-uri-encode": { - "version": "1.1.0", + "version": "2.0.0", "bundled": true } } @@ -10636,7 +10535,7 @@ } }, "read-package-tree": { - "version": "5.1.6", + "version": "5.2.1", "bundled": true, "requires": { "debuglog": "1.0.1", @@ -10647,15 +10546,15 @@ } }, "readable-stream": { - "version": "2.3.5", + "version": "2.3.6", "bundled": true, "requires": { "core-util-is": "1.0.2", "inherits": "2.0.3", "isarray": "1.0.0", "process-nextick-args": "2.0.0", - "safe-buffer": "5.1.1", - "string_decoder": "1.0.3", + "safe-buffer": "5.1.2", + "string_decoder": "1.1.1", "util-deprecate": "1.0.2" }, "dependencies": { @@ -10672,10 +10571,10 @@ "bundled": true }, "string_decoder": { - "version": "1.0.3", + "version": "1.1.1", "bundled": true, "requires": { - "safe-buffer": "5.1.1" + "safe-buffer": "5.1.2" } }, "util-deprecate": { @@ -10695,29 +10594,29 @@ } }, "request": { - "version": "2.83.0", + "version": "2.85.0", "bundled": true, "requires": { "aws-sign2": "0.7.0", "aws4": "1.6.0", "caseless": "0.12.0", - "combined-stream": "1.0.5", + "combined-stream": "1.0.6", "extend": "3.0.1", "forever-agent": "0.6.1", - "form-data": "2.3.1", + "form-data": "2.3.2", "har-validator": "5.0.3", "hawk": "6.0.2", "http-signature": "1.2.0", "is-typedarray": "1.0.0", "isstream": "0.1.2", "json-stringify-safe": "5.0.1", - "mime-types": "2.1.17", + "mime-types": "2.1.18", "oauth-sign": "0.8.2", "performance-now": "2.1.0", "qs": "6.5.1", - "safe-buffer": "5.1.1", + "safe-buffer": "5.1.2", "stringstream": "0.0.5", - "tough-cookie": "2.3.3", + "tough-cookie": "2.3.4", "tunnel-agent": "0.6.0", "uuid": "3.2.1" }, @@ -10735,7 +10634,7 @@ "bundled": true }, "combined-stream": { - "version": "1.0.5", + "version": "1.0.6", "bundled": true, "requires": { "delayed-stream": "1.0.0" @@ -10756,12 +10655,12 @@ "bundled": true }, "form-data": { - "version": "2.3.1", + "version": "2.3.2", "bundled": true, "requires": { "asynckit": "0.4.0", - "combined-stream": "1.0.5", - "mime-types": "2.1.17" + "combined-stream": "1.0.6", + "mime-types": "2.1.18" }, "dependencies": { "asynckit": { @@ -10774,18 +10673,18 @@ "version": "5.0.3", "bundled": true, "requires": { - "ajv": "5.2.3", + "ajv": "5.5.2", "har-schema": "2.0.0" }, "dependencies": { "ajv": { - "version": "5.2.3", + "version": "5.5.2", "bundled": true, "requires": { "co": "4.6.0", - "fast-deep-equal": "1.0.0", - "json-schema-traverse": "0.3.1", - "json-stable-stringify": "1.0.1" + "fast-deep-equal": "1.1.0", + "fast-json-stable-stringify": "2.0.0", + "json-schema-traverse": "0.3.1" }, "dependencies": { "co": { @@ -10793,25 +10692,16 @@ "bundled": true }, "fast-deep-equal": { - "version": "1.0.0", + "version": "1.1.0", + "bundled": true + }, + "fast-json-stable-stringify": { + "version": "2.0.0", "bundled": true }, "json-schema-traverse": { "version": "0.3.1", "bundled": true - }, - "json-stable-stringify": { - "version": "1.0.1", - "bundled": true, - "requires": { - "jsonify": "0.0.0" - }, - "dependencies": { - "jsonify": { - "version": "0.0.0", - "bundled": true - } - } } } }, @@ -10827,15 +10717,15 @@ "requires": { "boom": "4.3.1", "cryptiles": "3.1.2", - "hoek": "4.2.0", - "sntp": "2.0.2" + "hoek": "4.2.1", + "sntp": "2.1.0" }, "dependencies": { "boom": { "version": "4.3.1", "bundled": true, "requires": { - "hoek": "4.2.0" + "hoek": "4.2.1" } }, "cryptiles": { @@ -10849,20 +10739,20 @@ "version": "5.2.0", "bundled": true, "requires": { - "hoek": "4.2.0" + "hoek": "4.2.1" } } } }, "hoek": { - "version": "4.2.0", + "version": "4.2.1", "bundled": true }, "sntp": { - "version": "2.0.2", + "version": "2.1.0", "bundled": true, "requires": { - "hoek": "4.2.0" + "hoek": "4.2.1" } } } @@ -10873,7 +10763,7 @@ "requires": { "assert-plus": "1.0.0", "jsprim": "1.4.1", - "sshpk": "1.13.1" + "sshpk": "1.14.1" }, "dependencies": { "assert-plus": { @@ -10916,7 +10806,7 @@ } }, "sshpk": { - "version": "1.13.1", + "version": "1.14.1", "bundled": true, "requires": { "asn1": "0.2.3", @@ -10990,14 +10880,14 @@ "bundled": true }, "mime-types": { - "version": "2.1.17", + "version": "2.1.18", "bundled": true, "requires": { - "mime-db": "1.30.0" + "mime-db": "1.33.0" }, "dependencies": { "mime-db": { - "version": "1.30.0", + "version": "1.33.0", "bundled": true } } @@ -11019,7 +10909,7 @@ "bundled": true }, "tough-cookie": { - "version": "2.3.3", + "version": "2.3.4", "bundled": true, "requires": { "punycode": "1.4.1" @@ -11035,13 +10925,13 @@ "version": "0.6.0", "bundled": true, "requires": { - "safe-buffer": "5.1.1" + "safe-buffer": "5.1.2" } } } }, "retry": { - "version": "0.10.1", + "version": "0.12.0", "bundled": true }, "rimraf": { @@ -11052,7 +10942,7 @@ } }, "safe-buffer": { - "version": "5.1.1", + "version": "5.1.2", "bundled": true }, "semver": { @@ -11064,7 +10954,7 @@ "bundled": true, "requires": { "graceful-fs": "4.1.11", - "readable-stream": "2.3.5" + "readable-stream": "2.3.6" } }, "slide": { @@ -11121,7 +11011,7 @@ "version": "1.2.0", "bundled": true, "requires": { - "readable-stream": "2.3.5", + "readable-stream": "2.3.6", "stream-shift": "1.0.0" }, "dependencies": { @@ -11134,10 +11024,10 @@ } }, "ssri": { - "version": "5.2.4", + "version": "5.3.0", "bundled": true, "requires": { - "safe-buffer": "5.1.1" + "safe-buffer": "5.1.2" } }, "strip-ansi": { @@ -11154,14 +11044,15 @@ } }, "tar": { - "version": "4.4.0", + "version": "4.4.2", "bundled": true, "requires": { "chownr": "1.0.1", "fs-minipass": "1.2.5", - "minipass": "2.2.1", + "minipass": "2.2.4", "minizlib": "1.1.0", "mkdirp": "0.5.1", + "safe-buffer": "5.1.2", "yallist": "3.0.2" }, "dependencies": { @@ -11169,13 +11060,14 @@ "version": "1.2.5", "bundled": true, "requires": { - "minipass": "2.2.1" + "minipass": "2.2.4" } }, "minipass": { - "version": "2.2.1", + "version": "2.2.4", "bundled": true, "requires": { + "safe-buffer": "5.1.2", "yallist": "3.0.2" } }, @@ -11183,9 +11075,13 @@ "version": "1.1.0", "bundled": true, "requires": { - "minipass": "2.2.1" + "minipass": "2.2.4" } }, + "safe-buffer": { + "version": "5.1.2", + "bundled": true + }, "yallist": { "version": "3.0.2", "bundled": true @@ -11196,6 +11092,10 @@ "version": "0.2.0", "bundled": true }, + "tiny-relative-date": { + "version": "1.3.0", + "bundled": true + }, "uid-number": { "version": "0.0.6", "bundled": true @@ -11225,13 +11125,14 @@ "bundled": true }, "update-notifier": { - "version": "2.3.0", + "version": "2.5.0", "bundled": true, "requires": { - "boxen": "1.2.1", - "chalk": "2.1.0", - "configstore": "3.1.1", + "boxen": "1.3.0", + "chalk": "2.4.1", + "configstore": "3.1.2", "import-lazy": "2.1.0", + "is-ci": "1.1.0", "is-installed-globally": "0.1.0", "is-npm": "1.0.0", "latest-version": "3.1.0", @@ -11240,16 +11141,16 @@ }, "dependencies": { "boxen": { - "version": "1.2.1", + "version": "1.3.0", "bundled": true, "requires": { "ansi-align": "2.0.0", "camelcase": "4.1.0", - "chalk": "2.1.0", + "chalk": "2.4.1", "cli-boxes": "1.0.0", "string-width": "2.1.1", "term-size": "1.2.0", - "widest-line": "1.0.0" + "widest-line": "2.0.0" }, "dependencies": { "ansi-align": { @@ -11305,7 +11206,7 @@ "version": "5.1.0", "bundled": true, "requires": { - "lru-cache": "4.1.1", + "lru-cache": "4.1.2", "shebang-command": "1.2.0", "which": "1.3.0" }, @@ -11363,75 +11264,32 @@ } }, "widest-line": { - "version": "1.0.0", + "version": "2.0.0", "bundled": true, "requires": { - "string-width": "1.0.2" - }, - "dependencies": { - "string-width": { - "version": "1.0.2", - "bundled": true, - "requires": { - "code-point-at": "1.1.0", - "is-fullwidth-code-point": "1.0.0", - "strip-ansi": "3.0.1" - }, - "dependencies": { - "code-point-at": { - "version": "1.1.0", - "bundled": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "bundled": true, - "requires": { - "number-is-nan": "1.0.1" - }, - "dependencies": { - "number-is-nan": { - "version": "1.0.1", - "bundled": true - } - } - }, - "strip-ansi": { - "version": "3.0.1", - "bundled": true, - "requires": { - "ansi-regex": "2.1.1" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "bundled": true - } - } - } - } - } + "string-width": "2.1.1" } } } }, "chalk": { - "version": "2.1.0", + "version": "2.4.1", "bundled": true, "requires": { - "ansi-styles": "3.2.0", + "ansi-styles": "3.2.1", "escape-string-regexp": "1.0.5", - "supports-color": "4.4.0" + "supports-color": "5.4.0" }, "dependencies": { "ansi-styles": { - "version": "3.2.0", + "version": "3.2.1", "bundled": true, "requires": { - "color-convert": "1.9.0" + "color-convert": "1.9.1" }, "dependencies": { "color-convert": { - "version": "1.9.0", + "version": "1.9.1", "bundled": true, "requires": { "color-name": "1.1.3" @@ -11450,14 +11308,14 @@ "bundled": true }, "supports-color": { - "version": "4.4.0", + "version": "5.4.0", "bundled": true, "requires": { - "has-flag": "2.0.0" + "has-flag": "3.0.0" }, "dependencies": { "has-flag": { - "version": "2.0.0", + "version": "3.0.0", "bundled": true } } @@ -11465,12 +11323,12 @@ } }, "configstore": { - "version": "3.1.1", + "version": "3.1.2", "bundled": true, "requires": { "dot-prop": "4.2.0", "graceful-fs": "4.1.11", - "make-dir": "1.0.0", + "make-dir": "1.2.0", "unique-string": "1.0.0", "write-file-atomic": "2.3.0", "xdg-basedir": "3.0.0" @@ -11490,14 +11348,14 @@ } }, "make-dir": { - "version": "1.0.0", + "version": "1.2.0", "bundled": true, "requires": { - "pify": "2.3.0" + "pify": "3.0.0" }, "dependencies": { "pify": { - "version": "2.3.0", + "version": "3.0.0", "bundled": true } } @@ -11521,23 +11379,36 @@ "version": "2.1.0", "bundled": true }, + "is-ci": { + "version": "1.1.0", + "bundled": true, + "requires": { + "ci-info": "1.1.3" + }, + "dependencies": { + "ci-info": { + "version": "1.1.3", + "bundled": true + } + } + }, "is-installed-globally": { "version": "0.1.0", "bundled": true, "requires": { - "global-dirs": "0.1.0", - "is-path-inside": "1.0.0" + "global-dirs": "0.1.1", + "is-path-inside": "1.0.1" }, "dependencies": { "global-dirs": { - "version": "0.1.0", + "version": "0.1.1", "bundled": true, "requires": { "ini": "1.3.5" } }, "is-path-inside": { - "version": "1.0.0", + "version": "1.0.1", "bundled": true, "requires": { "path-is-inside": "1.0.2" @@ -11561,7 +11432,7 @@ "bundled": true, "requires": { "got": "6.7.1", - "registry-auth-token": "3.3.1", + "registry-auth-token": "3.3.2", "registry-url": "3.1.0", "semver": "5.5.0" }, @@ -11576,8 +11447,8 @@ "is-redirect": "1.0.0", "is-retry-allowed": "1.1.0", "is-stream": "1.1.0", - "lowercase-keys": "1.0.0", - "safe-buffer": "5.1.1", + "lowercase-keys": "1.0.1", + "safe-buffer": "5.1.2", "timed-out": "4.0.1", "unzip-response": "2.0.1", "url-parse-lax": "1.0.0" @@ -11617,7 +11488,7 @@ "bundled": true }, "lowercase-keys": { - "version": "1.0.0", + "version": "1.0.1", "bundled": true }, "timed-out": { @@ -11644,25 +11515,25 @@ } }, "registry-auth-token": { - "version": "3.3.1", + "version": "3.3.2", "bundled": true, "requires": { - "rc": "1.2.1", - "safe-buffer": "5.1.1" + "rc": "1.2.7", + "safe-buffer": "5.1.2" }, "dependencies": { "rc": { - "version": "1.2.1", + "version": "1.2.7", "bundled": true, "requires": { - "deep-extend": "0.4.2", + "deep-extend": "0.5.1", "ini": "1.3.5", "minimist": "1.2.0", "strip-json-comments": "2.0.1" }, "dependencies": { "deep-extend": { - "version": "0.4.2", + "version": "0.5.1", "bundled": true }, "minimist": { @@ -11681,21 +11552,21 @@ "version": "3.1.0", "bundled": true, "requires": { - "rc": "1.2.1" + "rc": "1.2.7" }, "dependencies": { "rc": { - "version": "1.2.1", + "version": "1.2.7", "bundled": true, "requires": { - "deep-extend": "0.4.2", + "deep-extend": "0.5.1", "ini": "1.3.5", "minimist": "1.2.0", "strip-json-comments": "2.0.1" }, "dependencies": { "deep-extend": { - "version": "0.4.2", + "version": "0.5.1", "bundled": true }, "minimist": { @@ -11732,29 +11603,44 @@ "bundled": true }, "validate-npm-package-license": { - "version": "3.0.1", + "version": "3.0.3", "bundled": true, "requires": { - "spdx-correct": "1.0.2", - "spdx-expression-parse": "1.0.4" + "spdx-correct": "3.0.0", + "spdx-expression-parse": "3.0.0" }, "dependencies": { "spdx-correct": { - "version": "1.0.2", + "version": "3.0.0", "bundled": true, "requires": { - "spdx-license-ids": "1.2.2" + "spdx-expression-parse": "3.0.0", + "spdx-license-ids": "3.0.0" }, "dependencies": { "spdx-license-ids": { - "version": "1.2.2", + "version": "3.0.0", "bundled": true } } }, "spdx-expression-parse": { - "version": "1.0.4", - "bundled": true + "version": "3.0.0", + "bundled": true, + "requires": { + "spdx-exceptions": "2.1.0", + "spdx-license-ids": "3.0.0" + }, + "dependencies": { + "spdx-exceptions": { + "version": "2.1.0", + "bundled": true + }, + "spdx-license-ids": { + "version": "3.0.0", + "bundled": true + } + } } } }, @@ -11785,11 +11671,10 @@ } }, "worker-farm": { - "version": "1.5.4", + "version": "1.6.0", "bundled": true, "requires": { - "errno": "0.1.7", - "xtend": "4.0.1" + "errno": "0.1.7" }, "dependencies": { "errno": { @@ -11804,10 +11689,6 @@ "bundled": true } } - }, - "xtend": { - "version": "4.0.1", - "bundled": true } } }, @@ -12254,15 +12135,6 @@ "no-case": "2.3.2" } }, - "parents": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parents/-/parents-1.0.1.tgz", - "integrity": "sha1-/t1NK/GTp3dF/nHjcdc8MwfZx1E=", - "dev": true, - "requires": { - "path-platform": "0.11.15" - } - }, "parse-asn1": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.0.tgz", @@ -12375,12 +12247,6 @@ "integrity": "sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME=", "dev": true }, - "path-platform": { - "version": "0.11.15", - "resolved": "https://registry.npmjs.org/path-platform/-/path-platform-0.11.15.tgz", - "integrity": "sha1-6GQhf3TDaFDwhSt43Hv31KVyG/I=", - "dev": true - }, "path-proxy": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/path-proxy/-/path-proxy-1.0.0.tgz", @@ -14421,7 +14287,7 @@ "integrity": "sha1-myIXQXCaTGLVzVPGqt1UpxE36V8=", "dev": true, "requires": { - "@types/node": "6.0.103", + "@types/node": "6.0.111", "@types/q": "0.0.32", "@types/selenium-webdriver": "2.53.43", "blocking-proxy": "0.0.5", @@ -14766,15 +14632,6 @@ } } }, - "read-only-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-only-stream/-/read-only-stream-2.0.0.tgz", - "integrity": "sha1-JyT9aoET1zdkrCiNQ4YnDB2/F/A=", - "dev": true, - "requires": { - "readable-stream": "2.3.5" - } - }, "read-pkg": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", @@ -15090,7 +14947,7 @@ "optional": true, "requires": { "extend": "3.0.1", - "lodash": "4.17.5", + "lodash": "4.17.10", "request": "2.81.0", "when": "3.7.8" }, @@ -15202,9 +15059,9 @@ } }, "rxjs": { - "version": "5.5.7", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-5.5.7.tgz", - "integrity": "sha512-Hxo2ac8gRQjwjtKgukMIwBRbq5+KAeEV5hXM4obYBOAghev41bDQWgFH4svYiU9UnQ5kNww2LgfyBdevCd2HXA==", + "version": "5.5.10", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-5.5.10.tgz", + "integrity": "sha512-SRjimIDUHJkon+2hFo7xnvNC4ZEHGzCRwh9P7nzX3zPkCGFEg/tuElrNR7L/rZMagnK2JeH2jQwPRpmyXyLB6A==", "requires": { "symbol-observable": "1.0.1" } @@ -15232,7 +15089,7 @@ "optional": true, "requires": { "glob": "7.1.2", - "lodash": "4.17.5", + "lodash": "4.17.10", "scss-tokenizer": "0.2.3", "yargs": "7.1.0" } @@ -15497,27 +15354,6 @@ } } }, - "shasum": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/shasum/-/shasum-1.0.2.tgz", - "integrity": "sha1-5wEjENj0F/TetXEhUOVni4euVl8=", - "dev": true, - "requires": { - "json-stable-stringify": "0.0.1", - "sha.js": "2.4.10" - }, - "dependencies": { - "json-stable-stringify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz", - "integrity": "sha1-YRwj6BTbN1Un34URk9tZ3Sryf0U=", - "dev": true, - "requires": { - "jsonify": "0.0.0" - } - } - } - }, "shebang-command": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", @@ -15533,18 +15369,6 @@ "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", "dev": true }, - "shell-quote": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.6.1.tgz", - "integrity": "sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c=", - "dev": true, - "requires": { - "array-filter": "0.0.1", - "array-map": "0.0.0", - "array-reduce": "0.0.0", - "jsonify": "0.0.0" - } - }, "signal-exit": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", @@ -16149,16 +15973,6 @@ "readable-stream": "2.3.5" } }, - "stream-combiner2": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz", - "integrity": "sha1-+02KFCDqNidk4hrUeAOXvry0HL4=", - "dev": true, - "requires": { - "duplexer2": "0.1.4", - "readable-stream": "2.3.5" - } - }, "stream-each": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.2.tgz", @@ -16188,16 +16002,6 @@ "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=", "dev": true }, - "stream-splicer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/stream-splicer/-/stream-splicer-2.0.0.tgz", - "integrity": "sha1-G2O+Q4oTPktnHMGTUZdgAXWRDYM=", - "dev": true, - "requires": { - "inherits": "2.0.3", - "readable-stream": "2.3.5" - } - }, "streamroller": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-0.7.0.tgz", @@ -16357,23 +16161,6 @@ "when": "3.6.4" } }, - "subarg": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/subarg/-/subarg-1.0.0.tgz", - "integrity": "sha1-9izxdYHplrSPyWVpn1TAauJouNI=", - "dev": true, - "requires": { - "minimist": "1.2.0" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - } - } - }, "supports-color": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", @@ -16403,15 +16190,6 @@ "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz", "integrity": "sha1-g0D8RwLDEi310iKI+IKD9RPT/dQ=" }, - "syntax-error": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/syntax-error/-/syntax-error-1.4.0.tgz", - "integrity": "sha512-YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w==", - "dev": true, - "requires": { - "acorn-node": "1.3.0" - } - }, "tapable": { "version": "0.2.8", "resolved": "https://registry.npmjs.org/tapable/-/tapable-0.2.8.tgz", @@ -16697,15 +16475,15 @@ } }, "tsickle": { - "version": "0.27.2", - "resolved": "https://registry.npmjs.org/tsickle/-/tsickle-0.27.2.tgz", - "integrity": "sha512-KW+ZgY0t2cq2Qib1sfdgMiRnk+cr3brUtzZoVWjv+Ot3jNxVorFBUH+6In6hl8Dg7BI2AAFf69NHkwvZNMSFwA==", + "version": "0.27.5", + "resolved": "https://registry.npmjs.org/tsickle/-/tsickle-0.27.5.tgz", + "integrity": "sha512-NP+CjM1EXza/M8mOXBLH3vkFEJiu1zfEAlC5WdJxHPn8l96QPz5eooP6uAgYtw1CcKfuSyIiheNUdKxtDWCNeg==", "dev": true, "requires": { "minimist": "1.2.0", "mkdirp": "0.5.1", "source-map": "0.6.1", - "source-map-support": "0.5.4" + "source-map-support": "0.5.6" }, "dependencies": { "minimist": { @@ -16721,11 +16499,12 @@ "dev": true }, "source-map-support": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.4.tgz", - "integrity": "sha512-PETSPG6BjY1AHs2t64vS2aqAgu6dMIMXJULWFBGbh2Gr8nVLbCFDo6i/RMMvviIQ2h1Z8+5gQhVKSn2je9nmdg==", + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.6.tgz", + "integrity": "sha512-N4KXEz7jcKqPf2b2vZF11lQIz9W5ZMuUcIOGj243lduidkf2fjkVKJS9vNxVWn3u/uxX38AcE8U9nnH9FPcq+g==", "dev": true, "requires": { + "buffer-from": "1.0.0", "source-map": "0.6.1" } } @@ -16945,12 +16724,6 @@ "integrity": "sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==", "dev": true }, - "umd": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/umd/-/umd-3.0.1.tgz", - "integrity": "sha1-iuVW4RAR9jwllnCKiDclnwGz1g4=", - "dev": true - }, "underscore": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz", @@ -17249,13 +17022,21 @@ } }, "useragent": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/useragent/-/useragent-2.3.0.tgz", - "integrity": "sha512-4AoH4pxuSvHCjqLO04sU6U/uE65BYza8l/KKBS0b0hnUPWi+cQ2BpeTEwejCSx9SPV5/U03nniDTrWx5NrmKdw==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/useragent/-/useragent-2.2.1.tgz", + "integrity": "sha1-z1k+9PLRdYdei7ZY6pLhik/QbY4=", "dev": true, "requires": { - "lru-cache": "4.1.2", + "lru-cache": "2.2.4", "tmp": "0.0.33" + }, + "dependencies": { + "lru-cache": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.2.4.tgz", + "integrity": "sha1-bGWGGb7PFAMdDQtZSxYELOTcBj0=", + "dev": true + } } }, "util": { @@ -18540,7 +18321,7 @@ "integrity": "sha512-/0QYwW/H1N/CdXYA2PNPVbsxO3u2Fpz34vs72xm03SRfg6bMNGfMJIQEpQjKRvkG2JvT6oRJFpDtSrwbX8Jzvw==", "dev": true, "requires": { - "lodash": "4.17.5" + "lodash": "4.17.10" } }, "webpack-sources": { @@ -18802,9 +18583,9 @@ "dev": true }, "zone.js": { - "version": "0.8.20", - "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.8.20.tgz", - "integrity": "sha512-FXlA37ErSXCMy5RNBcGFgCI/Zivqzr0D19GuvDxhcYIJc7xkFp6c29DKyODJu0Zo+EMyur/WPPgcBh1EHjB9jA==" + "version": "0.8.26", + "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.8.26.tgz", + "integrity": "sha512-W9Nj+UmBJG251wkCacIkETgra4QgBo/vgoEkb4a2uoLzpQG7qF9nzwoLXWU5xj3Fg2mxGvEDh47mg24vXccYjA==" } } } diff --git a/package.json b/package.json index ed768a6..0d7ef85 100644 --- a/package.json +++ b/package.json @@ -12,43 +12,45 @@ }, "private": true, "dependencies": { - "@angular/animations": "^5.2.9", - "@angular/cdk": "^5.2.4", - "@angular/common": "^5.2.9", - "@angular/compiler": "^5.2.9", - "@angular/core": "^5.2.9", - "@angular/forms": "^5.2.9", - "@angular/http": "^5.2.9", - "@angular/material": "^5.2.4", - "@angular/platform-browser": "^5.2.9", - "@angular/platform-browser-dynamic": "^5.2.9", - "@angular/router": "^5.2.9", + "@angular/animations": "^5.2.11", + "@angular/cdk": "^5.2.5", + "@angular/common": "^5.2.11", + "@angular/compiler": "^5.2.11", + "@angular/core": "^5.2.11", + "@angular/forms": "^5.2.11", + "@angular/http": "^5.2.11", + "@angular/material": "^5.2.5", + "@angular/platform-browser": "^5.2.11", + "@angular/platform-browser-dynamic": "^5.2.11", + "@angular/router": "^5.2.11", "angular-laravel-echo": "^1.1.1", - "core-js": "^2.4.1", + "angular2-jsonapi": "^5.0.0", + "core-js": "^2.5.6", "hammerjs": "^2.0.8", "laravel-echo": "^1.3.5", - "lodash": "^4.17.5", - "moment": "^2.21.0", - "npm": "^5.8.0", - "rxjs": "^5.5.7", + "lodash": "^4.17.10", + "moment": "^2.22.1", + "ngx-moment": "^2.0.0", + "npm": "^5.10.0", + "rxjs": "^5.5.10", "uuid": "^3.2.1", - "zone.js": "^0.8.19" + "zone.js": "^0.8.26" }, "devDependencies": { "@angular/cli": "1.6.5", - "@angular/compiler-cli": "^5.2.9", - "@angular/language-service": "^5.2.9", - "@types/jasmine": "~2.8.3", + "@angular/compiler-cli": "^5.2.11", + "@angular/language-service": "^5.2.11", + "@types/jasmine": "^2.8.7", "@types/jasminewd2": "~2.0.2", - "@types/node": "^6.0.103", - "codelyzer": "^4.0.1", + "@types/node": "^6.0.111", + "codelyzer": "^4.3.0", "jasmine-core": "~2.8.0", "jasmine-spec-reporter": "~4.2.1", - "karma": "~2.0.0", + "karma": "^2.0.2", "karma-chrome-launcher": "~2.2.0", "karma-cli": "~1.0.1", - "karma-coverage-istanbul-reporter": "^1.2.1", - "karma-jasmine": "~1.1.0", + "karma-coverage-istanbul-reporter": "^1.4.3", + "karma-jasmine": "^1.1.2", "karma-jasmine-html-reporter": "^0.2.2", "protractor": "~5.1.2", "ts-node": "~4.1.0", From 32cdb0b3885810f0c58124871e6c02fe5bd7f20d Mon Sep 17 00:00:00 2001 From: Wizofgoz Date: Mon, 21 May 2018 20:23:13 -0700 Subject: [PATCH 2/5] Add pending changes --- src/app/app.module.ts | 14 ++- .../alliance/alliance.card.component.css | 0 .../alliance/alliance.card.component.html | 26 +++++ .../alliance/alliance.card.component.spec.ts | 25 +++++ .../cards/alliance/alliance.card.component.ts | 61 +++++++++++ .../components/card/cards/card.component.ts | 1 + .../character/character.card.component.html | 21 ++-- .../character.card.component.spec.ts | 12 +- .../character/character.card.component.ts | 44 ++++---- .../coalition/coalition.card.component.css | 0 .../coalition/coalition.card.component.html | 3 + .../coalition.card.component.spec.ts | 25 +++++ .../coalition/coalition.card.component.ts | 15 +++ .../corporation.card.component.css | 0 .../corporation.card.component.html | 27 +++++ .../corporation.card.component.spec.ts | 25 +++++ .../corporation/corporation.card.component.ts | 51 +++++++++ .../cards/fitting/fitting.card.component.css | 0 .../cards/fitting/fitting.card.component.html | 3 + .../fitting/fitting.card.component.spec.ts | 25 +++++ .../cards/fitting/fitting.card.component.ts | 15 +++ .../handbook/handbook.card.component.css | 0 .../handbook/handbook.card.component.html | 3 + .../handbook/handbook.card.component.spec.ts | 25 +++++ .../cards/handbook/handbook.card.component.ts | 15 +++ src/app/components/card/cards/index.ts | 9 +- src/app/components/login/login.component.ts | 17 ++- src/app/guards/api.guard.ts | 4 +- src/app/guards/eve.guard.ts | 11 +- .../alliance/alliance.service.spec.ts | 15 +++ src/app/services/alliance/alliance.service.ts | 12 ++ src/app/services/api/api.service.spec.ts | 15 +++ src/app/services/api/api.service.ts | 37 +++++++ src/app/services/auth/auth.intercepter.ts | 3 +- src/app/services/base.service.ts | 26 ++++- src/app/services/cache/cache.service.spec.ts | 15 +++ src/app/services/cache/cache.service.ts | 100 +++++++++++++++++ .../services/character/character.service.ts | 79 ++------------ .../corporation/corporation.service.spec.ts | 15 +++ .../corporation/corporation.service.ts | 12 ++ .../eve-auth/eve-auth.service.spec.ts | 15 +++ src/app/services/eve-auth/eve-auth.service.ts | 103 ++++++++++++++++++ src/app/services/image/image.service.spec.ts | 15 +++ src/app/services/image/image.service.ts | 41 +++++++ 44 files changed, 855 insertions(+), 125 deletions(-) create mode 100644 src/app/components/card/cards/alliance/alliance.card.component.css create mode 100644 src/app/components/card/cards/alliance/alliance.card.component.html create mode 100644 src/app/components/card/cards/alliance/alliance.card.component.spec.ts create mode 100644 src/app/components/card/cards/alliance/alliance.card.component.ts create mode 100644 src/app/components/card/cards/coalition/coalition.card.component.css create mode 100644 src/app/components/card/cards/coalition/coalition.card.component.html create mode 100644 src/app/components/card/cards/coalition/coalition.card.component.spec.ts create mode 100644 src/app/components/card/cards/coalition/coalition.card.component.ts create mode 100644 src/app/components/card/cards/corporation/corporation.card.component.css create mode 100644 src/app/components/card/cards/corporation/corporation.card.component.html create mode 100644 src/app/components/card/cards/corporation/corporation.card.component.spec.ts create mode 100644 src/app/components/card/cards/corporation/corporation.card.component.ts create mode 100644 src/app/components/card/cards/fitting/fitting.card.component.css create mode 100644 src/app/components/card/cards/fitting/fitting.card.component.html create mode 100644 src/app/components/card/cards/fitting/fitting.card.component.spec.ts create mode 100644 src/app/components/card/cards/fitting/fitting.card.component.ts create mode 100644 src/app/components/card/cards/handbook/handbook.card.component.css create mode 100644 src/app/components/card/cards/handbook/handbook.card.component.html create mode 100644 src/app/components/card/cards/handbook/handbook.card.component.spec.ts create mode 100644 src/app/components/card/cards/handbook/handbook.card.component.ts create mode 100644 src/app/services/alliance/alliance.service.spec.ts create mode 100644 src/app/services/alliance/alliance.service.ts create mode 100644 src/app/services/api/api.service.spec.ts create mode 100644 src/app/services/api/api.service.ts create mode 100644 src/app/services/cache/cache.service.spec.ts create mode 100644 src/app/services/cache/cache.service.ts create mode 100644 src/app/services/corporation/corporation.service.spec.ts create mode 100644 src/app/services/corporation/corporation.service.ts create mode 100644 src/app/services/eve-auth/eve-auth.service.spec.ts create mode 100644 src/app/services/eve-auth/eve-auth.service.ts create mode 100644 src/app/services/image/image.service.spec.ts create mode 100644 src/app/services/image/image.service.ts diff --git a/src/app/app.module.ts b/src/app/app.module.ts index bcc97de..28ee596 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -10,9 +10,11 @@ import { ApiModule } from './eve-online-angular-client'; import { AngularLaravelEchoModule } from 'angular-laravel-echo'; import { CardComponent } from './components/card/card.component'; import { CardHostDirective } from './directives/card-host.directive'; -import { CharacterCardComponent } from './components/card/cards/character/character.card.component'; +import { CharacterCardComponent, CorporationCardComponent, AllianceCardComponent, + CoalitionCardComponent, HandbookCardComponent, FittingCardComponent } from './components/card/cards'; import { RouterModule } from '@angular/router'; import { ROUTES } from './app.routes'; +import { MomentModule } from 'ngx-moment'; @NgModule({ @@ -24,13 +26,19 @@ import { ROUTES } from './app.routes'; SidebarComponent, CardComponent, CardHostDirective, - CharacterCardComponent + CharacterCardComponent, + CorporationCardComponent, + AllianceCardComponent, + CoalitionCardComponent, + HandbookCardComponent, + FittingCardComponent ], imports: [ BrowserModule, ApiModule, AngularLaravelEchoModule, - RouterModule.forRoot(ROUTES) + RouterModule.forRoot(ROUTES), + MomentModule ], providers: [], bootstrap: [AppComponent] diff --git a/src/app/components/card/cards/alliance/alliance.card.component.css b/src/app/components/card/cards/alliance/alliance.card.component.css new file mode 100644 index 0000000..e69de29 diff --git a/src/app/components/card/cards/alliance/alliance.card.component.html b/src/app/components/card/cards/alliance/alliance.card.component.html new file mode 100644 index 0000000..a2bebe3 --- /dev/null +++ b/src/app/components/card/cards/alliance/alliance.card.component.html @@ -0,0 +1,26 @@ + + +
+ {{data.resource.name}} ({{data.resource.ticker}}) + + + +
+ + + + Founded: {{data.resource.dateFounded}} + Founder: {{founderCharacter.name}} + + Founding Corp: {{founderCorporation.name}} {{founderCorporation.ticker}} + + + + Executor: {{executor.name}} {{executor.ticker}} + + + + + + +
diff --git a/src/app/components/card/cards/alliance/alliance.card.component.spec.ts b/src/app/components/card/cards/alliance/alliance.card.component.spec.ts new file mode 100644 index 0000000..4ec9c0b --- /dev/null +++ b/src/app/components/card/cards/alliance/alliance.card.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { AllianceCardComponent } from './alliance.card.component'; + +describe('AllianceComponent', () => { + let component: AllianceCardComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ AllianceCardComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(AllianceCardComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/components/card/cards/alliance/alliance.card.component.ts b/src/app/components/card/cards/alliance/alliance.card.component.ts new file mode 100644 index 0000000..c91828d --- /dev/null +++ b/src/app/components/card/cards/alliance/alliance.card.component.ts @@ -0,0 +1,61 @@ +import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'; +import { + CharacterService, + CorporationService, + GetAlliancesAllianceIdOk, + GetCharactersCharacterIdOk, + GetCorporationsCorporationIdOk +} from '../../../../eve-online-angular-client'; +import { CardComponent } from '../card.component'; +import { CacheService } from '../../../../services/cache/cache.service'; +import { ImageService } from '../../../../services/image/image.service'; + +@Component({ + selector: 'app-alliance-card', + templateUrl: './alliance.card.component.html', + styleUrls: ['./alliance.card.component.css'] +}) +export class AllianceCardComponent implements OnInit { + @Input() data: CardComponent; + @Output() select: EventEmitter = new EventEmitter(); + @Output() delete: EventEmitter = new EventEmitter(); + @Output() edit: EventEmitter = new EventEmitter(); + founderCharacter: GetCharactersCharacterIdOk; + founderCorporation: GetCorporationsCorporationIdOk; + executor: GetCorporationsCorporationIdOk; + imageURL: string; + + constructor(private corporationService: CorporationService, + private characterService: CharacterService, + private imageService: ImageService, + private cache: CacheService) { } + + ngOnInit() { + this.imageURL = this.imageService.getAllianceImageURL(this.data.resource_id, 32); + + this.cache.get('character' + this.data.resource.creatorId, this.characterService.getCharactersCharacterId(this.data.resource.creatorId)) + .subscribe((creator: GetCharactersCharacterIdOk) => { + this.founderCharacter = creator; + }); + + this.cache.get('corporation' + this.data.resource.creatorCorporationId, + this.corporationService.getCorporationsCorporationId(this.data.resource.creatorCorporationId)) + .subscribe((creator: GetCorporationsCorporationIdOk) => { + this.founderCorporation = creator; + }); + + this.cache.get('corporation' + this.data.resource.executorCorporationId, + this.corporationService.getCorporationsCorporationId(this.data.resource.executorCorporationId)) + .subscribe((executor: GetCorporationsCorporationIdOk) => { + this.executor = executor; + }); + } + + onEdit() { + this.edit.emit(this.data.resource_id); + } + + onSelect() { + this.select.emit(this.data.resource_id); + } +} diff --git a/src/app/components/card/cards/card.component.ts b/src/app/components/card/cards/card.component.ts index 8f6c2f6..da86e0c 100644 --- a/src/app/components/card/cards/card.component.ts +++ b/src/app/components/card/cards/card.component.ts @@ -1,6 +1,7 @@ import { EventEmitter } from '@angular/core'; export interface CardComponent { + resource_id: number; resource: T; select?: EventEmitter; delete?: EventEmitter; diff --git a/src/app/components/card/cards/character/character.card.component.html b/src/app/components/card/cards/character/character.card.component.html index eac1274..899e674 100644 --- a/src/app/components/card/cards/character/character.card.component.html +++ b/src/app/components/card/cards/character/character.card.component.html @@ -1,24 +1,23 @@ -
- {{character.name}} - {{corporation.name}} +
+ {{data.resource.name}} + {{corporation.name}}
- Security Status: {{character.securityStatus}} - Birthday: {{character.birthday}} - - Skill Points: {{characterSkills.totalSp}} - Unallocated SP: {{characterSkills.unallocatedSp}} - - Description: {{character.description}} + Security Status: {{data.resource.securityStatus}} + Birthday: {{data.resource.birthday | amDateFormat:'LL'}} ({{data.resource.birthday | amTimeAgo}}) + + Skill Points: {{characterSkills.totalSp}} + Unallocated SP: {{characterSkills.unallocatedSp}} + + Description: {{data.resource.description}} -
diff --git a/src/app/components/card/cards/character/character.card.component.spec.ts b/src/app/components/card/cards/character/character.card.component.spec.ts index cabbbb9..5de2527 100644 --- a/src/app/components/card/cards/character/character.card.component.spec.ts +++ b/src/app/components/card/cards/character/character.card.component.spec.ts @@ -1,20 +1,20 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { Character.CardComponent } from './character.card.component'; +import { CharacterCardComponent } from './character.card.component'; -describe('Character.CardComponent', () => { - let component: Character.CardComponent; - let fixture: ComponentFixture; +describe('CharacterCardComponent', () => { + let component: CharacterCardComponent; + let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ - declarations: [ Character.CardComponent ] + declarations: [ CharacterCardComponent ] }) .compileComponents(); })); beforeEach(() => { - fixture = TestBed.createComponent(Character.CardComponent); + fixture = TestBed.createComponent(CharacterCardComponent); component = fixture.componentInstance; fixture.detectChanges(); }); diff --git a/src/app/components/card/cards/character/character.card.component.ts b/src/app/components/card/cards/character/character.card.component.ts index 86b1f6c..e904364 100644 --- a/src/app/components/card/cards/character/character.card.component.ts +++ b/src/app/components/card/cards/character/character.card.component.ts @@ -1,59 +1,59 @@ import {Component, EventEmitter, Input, OnInit, Output} from '@angular/core'; import { CardComponent } from '../card.component'; -import { Character, CharacterService } from '../../../../services/character/character.service'; +import { CharacterService } from '../../../../services/character/character.service'; import { CharacterService, CorporationService, GetCharactersCharacterIdOk, GetCharactersCharacterIdSkillsOk, GetCorporationsCorporationIdOk, SkillsService } from '../../../../eve-online-angular-client'; +import { CacheService } from '../../../../services/cache/cache.service'; @Component({ - selector: 'app-character.card', + selector: 'app-character-card', templateUrl: './character.card.component.html', styleUrls: ['./character.card.component.css'] }) export class CharacterCardComponent implements OnInit { - @Input() data: CardComponent; + @Input() data: CardComponent; @Output() select: EventEmitter = new EventEmitter(); @Output() delete: EventEmitter = new EventEmitter(); @Output() edit: EventEmitter = new EventEmitter(); imageURL: string; - character: GetCharactersCharacterIdOk; characterSkills: GetCharactersCharacterIdSkillsOk; corporation: GetCorporationsCorporationIdOk; constructor(private characterService: CharacterService, private eve: CharacterService, private corporationService: CorporationService, - private skillsService: SkillsService) { } + private skillsService: SkillsService, + private cache: CacheService) { } ngOnInit() { - this.imageURL = this.characterService.getCharacterImageURL(this.data.resource.eve_id, 32); - this.eve.getCharactersCharacterId(this.data.resource.eve_id).subscribe((character: GetCharactersCharacterIdOk) => { - this.character = character; - - this.skillsService.getCharactersCharacterIdSkills(this.data.resource.eve_id) - .subscribe((skills: GetCharactersCharacterIdSkillsOk) => { - this.characterSkills = skills; - }); - - this.corporationService.getCorporationsCorporationId(character.corporationId) - .subscribe((corporation: GetCorporationsCorporationIdOk) => { - this.corporation = corporation; - }); - }); + this.imageURL = this.characterService.getCharacterImageURL(this.data.resource_id, 32); + + this.cache.get('characterSkills' + this.data.resource_id, + this.skillsService.getCharactersCharacterIdSkills(this.data.resource_id)) + .subscribe((skills: GetCharactersCharacterIdSkillsOk) => { + this.characterSkills = skills; + }); + + this.cache.get('corporation' + this.data.resource.corporationId, + this.corporationService.getCorporationsCorporationId(this.data.resource.corporationId)) + .subscribe((corporation: GetCorporationsCorporationIdOk) => { + this.corporation = corporation; + }); } onDelete() { - this.delete.emit(this.data.resource.id); + this.delete.emit(this.data.resource_id); } onSelect() { - this.select.emit(this.data.resource.id); + this.select.emit(this.data.resource_id); } onEdit() { - this.edit.emit(this.data.resource.id); + this.edit.emit(this.data.resource_id); } } diff --git a/src/app/components/card/cards/coalition/coalition.card.component.css b/src/app/components/card/cards/coalition/coalition.card.component.css new file mode 100644 index 0000000..e69de29 diff --git a/src/app/components/card/cards/coalition/coalition.card.component.html b/src/app/components/card/cards/coalition/coalition.card.component.html new file mode 100644 index 0000000..90b6ebc --- /dev/null +++ b/src/app/components/card/cards/coalition/coalition.card.component.html @@ -0,0 +1,3 @@ +

+ coalition works! +

diff --git a/src/app/components/card/cards/coalition/coalition.card.component.spec.ts b/src/app/components/card/cards/coalition/coalition.card.component.spec.ts new file mode 100644 index 0000000..03e4878 --- /dev/null +++ b/src/app/components/card/cards/coalition/coalition.card.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { CoalitionCardComponent } from './coalition.card.component'; + +describe('CoalitionComponent', () => { + let component: CoalitionCardComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ CoalitionCardComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(CoalitionCardComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/components/card/cards/coalition/coalition.card.component.ts b/src/app/components/card/cards/coalition/coalition.card.component.ts new file mode 100644 index 0000000..f18125a --- /dev/null +++ b/src/app/components/card/cards/coalition/coalition.card.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-coalition', + templateUrl: './coalition.card.component.html', + styleUrls: ['./coalition.card.component.css'] +}) +export class CoalitionCardComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +} diff --git a/src/app/components/card/cards/corporation/corporation.card.component.css b/src/app/components/card/cards/corporation/corporation.card.component.css new file mode 100644 index 0000000..e69de29 diff --git a/src/app/components/card/cards/corporation/corporation.card.component.html b/src/app/components/card/cards/corporation/corporation.card.component.html new file mode 100644 index 0000000..6605caf --- /dev/null +++ b/src/app/components/card/cards/corporation/corporation.card.component.html @@ -0,0 +1,27 @@ + + +
+ {{data.resource.name}} ({{data.resource.ticker}}) + + {{alliance.name}} ({{alliance.ticker}}) + +
+ + + + Founded: {{data.resource.dateFounded}} + Members: {{data.resource.memberCount}} + + + CEO: {{ceo.name}} + Tax Rate: {{data.resource.taxRate}}% + + + Description: {{data.resource.description}} + + + + + + +
diff --git a/src/app/components/card/cards/corporation/corporation.card.component.spec.ts b/src/app/components/card/cards/corporation/corporation.card.component.spec.ts new file mode 100644 index 0000000..123541f --- /dev/null +++ b/src/app/components/card/cards/corporation/corporation.card.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { CorporationCardComponent } from './corporation.card.component'; + +describe('CorporationComponent', () => { + let component: CorporationCardComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ CorporationCardComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(CorporationCardComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/components/card/cards/corporation/corporation.card.component.ts b/src/app/components/card/cards/corporation/corporation.card.component.ts new file mode 100644 index 0000000..1c8abcf --- /dev/null +++ b/src/app/components/card/cards/corporation/corporation.card.component.ts @@ -0,0 +1,51 @@ +import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core'; +import { CardComponent } from '../card.component'; +import { + AllianceService, CharacterService, + GetAlliancesAllianceIdOk, GetCharactersCharacterIdOk, + GetCorporationsCorporationIdOk +} from '../../../../eve-online-angular-client'; +import { CacheService } from '../../../../services/cache/cache.service'; +import { ImageService } from '../../../../services/image/image.service'; + +@Component({ + selector: 'app-corporation-card', + templateUrl: './corporation.card.component.html', + styleUrls: ['./corporation.card.component.css'] +}) +export class CorporationCardComponent implements OnInit { + @Input() data: CardComponent; + @Output() select: EventEmitter = new EventEmitter(); + @Output() delete: EventEmitter = new EventEmitter(); + @Output() edit: EventEmitter = new EventEmitter(); + alliance: GetAlliancesAllianceIdOk; + ceo: GetCharactersCharacterIdOk; + imageURL: string; + + constructor(private characterService: CharacterService, + private allianceService: AllianceService, + private imageService: ImageService, + private cache: CacheService) { } + + ngOnInit() { + this.imageURL = this.imageService.getCorporationImageURL(this.data.resource_id, 32); + + this.cache.get('character' + this.data.resource.ceoId, this.characterService.getCharactersCharacterId(this.data.resource.ceoId)) + .subscribe((ceo: GetCharactersCharacterIdOk) => { + this.ceo = ceo; + }); + + this.cache.get('alliance' + this.data.resource.allianceId, this.allianceService.getAlliancesAllianceId(this.data.resource.allianceId)) + .subscribe((alliance: GetAlliancesAllianceIdOk) => { + this.alliance = alliance; + }); + } + + onEdit() { + this.edit.emit(this.data.resource_id); + } + + onSelect() { + this.select.emit(this.data.resource_id); + } +} diff --git a/src/app/components/card/cards/fitting/fitting.card.component.css b/src/app/components/card/cards/fitting/fitting.card.component.css new file mode 100644 index 0000000..e69de29 diff --git a/src/app/components/card/cards/fitting/fitting.card.component.html b/src/app/components/card/cards/fitting/fitting.card.component.html new file mode 100644 index 0000000..3900584 --- /dev/null +++ b/src/app/components/card/cards/fitting/fitting.card.component.html @@ -0,0 +1,3 @@ +

+ fitting works! +

diff --git a/src/app/components/card/cards/fitting/fitting.card.component.spec.ts b/src/app/components/card/cards/fitting/fitting.card.component.spec.ts new file mode 100644 index 0000000..3c45f93 --- /dev/null +++ b/src/app/components/card/cards/fitting/fitting.card.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { FittingCardComponent } from './fitting.card.component'; + +describe('FittingComponent', () => { + let component: FittingCardComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ FittingCardComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(FittingCardComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/components/card/cards/fitting/fitting.card.component.ts b/src/app/components/card/cards/fitting/fitting.card.component.ts new file mode 100644 index 0000000..014e44e --- /dev/null +++ b/src/app/components/card/cards/fitting/fitting.card.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-fitting', + templateUrl: './fitting.card.component.html', + styleUrls: ['./fitting.card.component.css'] +}) +export class FittingCardComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +} diff --git a/src/app/components/card/cards/handbook/handbook.card.component.css b/src/app/components/card/cards/handbook/handbook.card.component.css new file mode 100644 index 0000000..e69de29 diff --git a/src/app/components/card/cards/handbook/handbook.card.component.html b/src/app/components/card/cards/handbook/handbook.card.component.html new file mode 100644 index 0000000..21c2c0e --- /dev/null +++ b/src/app/components/card/cards/handbook/handbook.card.component.html @@ -0,0 +1,3 @@ +

+ handbook works! +

diff --git a/src/app/components/card/cards/handbook/handbook.card.component.spec.ts b/src/app/components/card/cards/handbook/handbook.card.component.spec.ts new file mode 100644 index 0000000..6005c1a --- /dev/null +++ b/src/app/components/card/cards/handbook/handbook.card.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { HandbookCardComponent } from './handbook.card.component'; + +describe('HandbookComponent', () => { + let component: HandbookCardComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ HandbookCardComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(HandbookCardComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/components/card/cards/handbook/handbook.card.component.ts b/src/app/components/card/cards/handbook/handbook.card.component.ts new file mode 100644 index 0000000..210b2be --- /dev/null +++ b/src/app/components/card/cards/handbook/handbook.card.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-handbook', + templateUrl: './handbook.card.component.html', + styleUrls: ['./handbook.card.component.css'] +}) +export class HandbookCardComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +} diff --git a/src/app/components/card/cards/index.ts b/src/app/components/card/cards/index.ts index 8789e08..637bd60 100644 --- a/src/app/components/card/cards/index.ts +++ b/src/app/components/card/cards/index.ts @@ -1,5 +1,12 @@ import { CardComponent } from './card.component'; +import { AllianceCardComponent } from './alliance/alliance.card.component'; +import { CharacterCardComponent } from './character/character.card.component'; +import { CoalitionCardComponent } from './coalition/coalition.card.component'; +import { CorporationCardComponent } from './corporation/corporation.card.component'; +import { FittingCardComponent } from './fitting/fitting.card.component'; +import { HandbookCardComponent } from './handbook/handbook.card.component'; export { - CardComponent + AllianceCardComponent, CardComponent, CharacterCardComponent, CoalitionCardComponent, + CorporationCardComponent, FittingCardComponent, HandbookCardComponent }; diff --git a/src/app/components/login/login.component.ts b/src/app/components/login/login.component.ts index ab4caef..24335a5 100644 --- a/src/app/components/login/login.component.ts +++ b/src/app/components/login/login.component.ts @@ -2,6 +2,9 @@ import { Component, OnInit } from '@angular/core'; import {FormBuilder, FormGroup, Validators} from '@angular/forms'; import {AuthService} from '../../services/auth/auth.service'; import {Router} from '@angular/router'; +import {Character, CharacterService} from '../../services/character/character.service'; +import {ResourceInterface} from '../../services/base.service'; +import {EveAuthService} from '../../services/eve-auth/eve-auth.service'; @Component({ selector: 'app-login', @@ -11,7 +14,11 @@ import {Router} from '@angular/router'; export class LoginComponent { form: FormGroup; - constructor(private fb: FormBuilder, private authService: AuthService, private router: Router) { + constructor(private fb: FormBuilder, + private authService: AuthService, + private router: Router, + private characterService: CharacterService, + private characterAuth: EveAuthService) { this.form = this.fb.group({ email: ['', Validators.required], password: ['', Validators.required] @@ -23,7 +30,13 @@ export class LoginComponent { if (val.email && val.password) { this.authService.login(val.email, val.password).subscribe(() => { console.log('User is logged in'); - this.router.navigateByUrl('/'); + this.characterService.getCharacters().subscribe((characters: ResourceInterface[]) => { + characters.map((character: ResourceInterface) => { + this.characterAuth.setCharacter(character); + }); + + this.router.navigateByUrl('/'); + }); }); } } diff --git a/src/app/guards/api.guard.ts b/src/app/guards/api.guard.ts index 2607ad2..ba74ba0 100644 --- a/src/app/guards/api.guard.ts +++ b/src/app/guards/api.guard.ts @@ -1,7 +1,7 @@ import { Injectable } from '@angular/core'; -import {CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, CanActivateChild} from '@angular/router'; +import { CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, CanActivateChild } from '@angular/router'; import { Observable } from 'rxjs/Observable'; -import {AuthService} from '../services/auth/auth.service'; +import { AuthService } from '../services/auth/auth.service'; @Injectable() export class ApiGuard implements CanActivate, CanActivateChild { diff --git a/src/app/guards/eve.guard.ts b/src/app/guards/eve.guard.ts index 52b4433..0e38cff 100644 --- a/src/app/guards/eve.guard.ts +++ b/src/app/guards/eve.guard.ts @@ -1,12 +1,21 @@ import { Injectable } from '@angular/core'; -import { CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router'; +import { CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, CanActivateChild } from '@angular/router'; import { Observable } from 'rxjs/Observable'; +import { EveAuthService } from '../services/eve-auth/eve-auth.service'; @Injectable() export class EveGuard implements CanActivate { + constructor(private auth: EveAuthService) {} + canActivate( next: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable | Promise | boolean { return true; } + + canActivateChild( + next: ActivatedRouteSnapshot, + state: RouterStateSnapshot): Observable | Promise | boolean { + return this.canActivate(next, state); + } } diff --git a/src/app/services/alliance/alliance.service.spec.ts b/src/app/services/alliance/alliance.service.spec.ts new file mode 100644 index 0000000..c774792 --- /dev/null +++ b/src/app/services/alliance/alliance.service.spec.ts @@ -0,0 +1,15 @@ +import { TestBed, inject } from '@angular/core/testing'; + +import { AllianceService } from './alliance.service'; + +describe('AllianceService', () => { + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [AllianceService] + }); + }); + + it('should be created', inject([AllianceService], (service: AllianceService) => { + expect(service).toBeTruthy(); + })); +}); diff --git a/src/app/services/alliance/alliance.service.ts b/src/app/services/alliance/alliance.service.ts new file mode 100644 index 0000000..65a1107 --- /dev/null +++ b/src/app/services/alliance/alliance.service.ts @@ -0,0 +1,12 @@ +import { Injectable } from '@angular/core'; +import { API_BASE } from '../base.service'; + +@Injectable() +export class AllianceService { + + constructor() { } + + getSettings() { + return; + } +} diff --git a/src/app/services/api/api.service.spec.ts b/src/app/services/api/api.service.spec.ts new file mode 100644 index 0000000..65b6c71 --- /dev/null +++ b/src/app/services/api/api.service.spec.ts @@ -0,0 +1,15 @@ +import { TestBed, inject } from '@angular/core/testing'; + +import { ApiService } from './api.service'; + +describe('ApiService', () => { + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [ApiService] + }); + }); + + it('should be created', inject([ApiService], (service: ApiService) => { + expect(service).toBeTruthy(); + })); +}); diff --git a/src/app/services/api/api.service.ts b/src/app/services/api/api.service.ts new file mode 100644 index 0000000..8ed754a --- /dev/null +++ b/src/app/services/api/api.service.ts @@ -0,0 +1,37 @@ +import { Injectable } from '@angular/core'; +import { AuthService } from '../auth/auth.service'; +import { HttpClient } from '@angular/common/http'; +import { API_BASE, BaseService, ResourceInterface } from '../base.service'; +import { Observable } from 'rxjs/Observable'; + +@Injectable() +export class ApiService extends BaseService { + + constructor(private auth: AuthService, private http: HttpClient) { + super(); + } + + all(path: string): Observable[]> { + return this.http.get[]>(API_BASE.EVE_COMMANDER + path).map((items: T[]) => { + return this.objectArrayToResourceArray(items); + }); + } + + find(path: string, id: number): Observable> { + return this.http.get>(API_BASE.EVE_COMMANDER + path + '/' + id).map((item: T) => { + return this.objectToResource(item); + }); + } + + create(path: string, object: T): Observable> { + return this.http.post>(API_BASE.EVE_COMMANDER + path, object).map((item: T) => { + return this.objectToResource(item); + }); + } + + update(path: string, id: number, object: T): Observable> { + return this.http.put(API_BASE.EVE_COMMANDER + path + '/' + id, object).map((item: T) => { + return this.objectToResource(item); + }); + } +} diff --git a/src/app/services/auth/auth.intercepter.ts b/src/app/services/auth/auth.intercepter.ts index 14c7671..78aac71 100644 --- a/src/app/services/auth/auth.intercepter.ts +++ b/src/app/services/auth/auth.intercepter.ts @@ -1,12 +1,13 @@ import { Injectable } from '@angular/core'; import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http'; import { Observable } from 'rxjs/Observable'; +import {API_BASE} from '../base.service'; @Injectable() export class AuthIntercepter implements HttpInterceptor { intercept(req: HttpRequest, next: HttpHandler): Observable> { const idToken = localStorage.getItem('id_token'); - if (idToken) { + if (idToken && req.url.includes(API_BASE.EVE_COMMANDER)) { const cloned = req.clone({headers: req.headers.set('Authorization', 'Bearer' + idToken)}); return next.handle(cloned); } diff --git a/src/app/services/base.service.ts b/src/app/services/base.service.ts index ce47740..8716d83 100644 --- a/src/app/services/base.service.ts +++ b/src/app/services/base.service.ts @@ -1,4 +1,4 @@ -import {Type} from '@angular/core/core'; +import { Type } from '@angular/core/core'; export enum API_BASE { EVE_COMMANDER = '/', @@ -8,15 +8,29 @@ export enum API_BASE { } export interface ResourceInterface { - cardComponent: Type; - listComponent: Type; + cardComponent?: Type; + listComponent?: Type; data: T; } export class BaseService { - protected defaultAttributes: object = {}; + protected resourceAttributes: {[key: string]: Type} = {}; - protected applyDefaultAttributes(object: object) { - return Object.assign(object, this.defaultAttributes); + protected applyResourceAttributes(object: T): T { + return Object.assign(object, this.resourceAttributes); + } + + protected objectToResource(item: T): ResourceInterface { + const resource: ResourceInterface = { + data: item + }; + + return this.applyResourceAttributes(resource); + } + + protected objectArrayToResourceArray(items: Array): ResourceInterface[] { + return items.map((item: T) => { + return this.objectToResource(item); + }); } } diff --git a/src/app/services/cache/cache.service.spec.ts b/src/app/services/cache/cache.service.spec.ts new file mode 100644 index 0000000..77b0875 --- /dev/null +++ b/src/app/services/cache/cache.service.spec.ts @@ -0,0 +1,15 @@ +import { TestBed, inject } from '@angular/core/testing'; + +import { CacheService } from './cache.service'; + +describe('CacheService', () => { + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [CacheService] + }); + }); + + it('should be created', inject([CacheService], (service: CacheService) => { + expect(service).toBeTruthy(); + })); +}); diff --git a/src/app/services/cache/cache.service.ts b/src/app/services/cache/cache.service.ts new file mode 100644 index 0000000..a0ee3a9 --- /dev/null +++ b/src/app/services/cache/cache.service.ts @@ -0,0 +1,100 @@ + +import { Subject } from 'rxjs/Subject'; +import { Injectable } from '@angular/core'; +import { Observable } from 'rxjs/Observable'; +import { of } from 'rxjs/observable/of'; + +interface CacheContent { + expiry: number; + value: any; +} + +/** + * Cache Service is an observables based in-memory cache implementation + * Keeps track of in-flight observables and sets a default expiry for cached values + * @export + * @class CacheService + */ +@Injectable() +export class CacheService { + private cache: Map = new Map(); + private inFlightObservables: Map> = new Map>(); + readonly DEFAULT_MAX_AGE: number = 300000; + + /** + * Gets the value from cache if the key is provided. + * If no value exists in cache, then check if the same call exists + * in flight, if so return the subject. If not create a new + * Subject inFlightObservable and return the source observable. + */ + get(key: string, fallback?: Observable, maxAge?: number): Observable | Subject { + + if (this.hasValidCachedValue(key)) { + console.log(`%cGetting from cache ${key}`, 'color: green'); + return of(this.cache.get(key).value); + } + + if (!maxAge) { + maxAge = this.DEFAULT_MAX_AGE; + } + + if (this.inFlightObservables.has(key)) { + return this.inFlightObservables.get(key); + } else if (fallback && fallback instanceof Observable) { + this.inFlightObservables.set(key, new Subject()); + console.log(`%c Calling api for ${key}`, 'color: purple'); + return fallback.do((value) => { this.set(key, value, maxAge); }); + } else { + return Observable.throw('Requested key is not available in Cache'); + } + + } + + /** + * Sets the value with key in the cache + * Notifies all observers of the new value + */ + set(key: string, value: any, maxAge: number = this.DEFAULT_MAX_AGE): void { + this.cache.set(key, { value: value, expiry: Date.now() + maxAge }); + this.notifyInFlightObservers(key, value); + } + + /** + * Checks if the a key exists in cache + */ + has(key: string): boolean { + return this.cache.has(key); + } + + /** + * Publishes the value to all observers of the given + * in progress observables if observers exist. + */ + private notifyInFlightObservers(key: string, value: any): void { + if (this.inFlightObservables.has(key)) { + const inFlight = this.inFlightObservables.get(key); + const observersCount = inFlight.observers.length; + if (observersCount) { + console.log(`%cNotifying ${inFlight.observers.length} flight subscribers for ${key}`, 'color: blue'); + inFlight.next(value); + } + inFlight.complete(); + this.inFlightObservables.delete(key); + } + } + + /** + * Checks if the key exists and has not expired. + */ + private hasValidCachedValue(key: string): boolean { + if (this.cache.has(key)) { + if (this.cache.get(key).expiry < Date.now()) { + this.cache.delete(key); + return false; + } + return true; + } else { + return false; + } + } +} diff --git a/src/app/services/character/character.service.ts b/src/app/services/character/character.service.ts index 450f93b..304e10b 100644 --- a/src/app/services/character/character.service.ts +++ b/src/app/services/character/character.service.ts @@ -1,20 +1,15 @@ -import { Injectable, OnInit } from '@angular/core'; +import { Injectable } from '@angular/core'; import { HttpClient } from '@angular/common/http'; import { Moment } from 'moment'; -import { API_BASE, BaseService } from '../base.service'; +import { API_BASE, BaseService, ResourceInterface } from '../base.service'; import { Router } from '@angular/router'; import { Moment } from 'moment'; import { Observable } from 'rxjs/Observable'; import { CharacterCardComponent } from '../../components/card/cards/character/character.card.component'; -import { EchoService } from 'angular-laravel-echo'; +import { OAuth2Token } from '../eve-auth/eve-auth.service'; -export interface OAuth2Token { - access_token: string; - refresh_token: string; - expires: Moment; -} - -export interface Character { +export class Character { + cardComponent = CharacterCardComponent; id: string; eve_id: number; name: string; @@ -24,79 +19,23 @@ export interface Character { } @Injectable() -export class CharacterService extends BaseService implements OnInit { +export class CharacterService extends BaseService { protected defaultAttributes = { cardComponent: CharacterCardComponent }; - protected clientID: number; - protected scopes: string[]; - constructor(private router: Router, private http: HttpClient, private echo: EchoService) { + constructor(private router: Router, private http: HttpClient) { super(); } - ngOnInit() { - // get client ID and required scopes from API - this.http.get<{client_id: number, scopes: string[]}>(API_BASE.EVE_COMMANDER + 'settings/sso').subscribe(response => { - this.clientID = response.client_id; - this.scopes = response.scopes; - }); - } - - /** - * Opens new window to SSO to authorize a character - * - * @returns {{windowRef: Window; observer: Observable}} - */ - authorizeCharacter() { - const windowRef = window.open(this.getSSOURL()); - return { - windowRef, - observer: this.echo.notification('character-auth') - }; - } - - /** - * Get URL for the EVE SSO including extras - * - * @returns {string} - */ - getSSOURL() { - return API_BASE.EVE_ONLINE_AUTH + 'oauth/authorize/?response_type=code&redirect_uri=' - + API_BASE.EVE_COMMANDER_AUTH_CALLBACK + '&client_id=' + this.clientID + '&scope=' + this.scopes.join(','); - } - /** * Get array of characters the logged in user has registered * * @returns {Observable} */ getCharacters() { - return this.http.get(API_BASE.EVE_COMMANDER + '/characters').map((characters: Character[]) => { - return characters.map((item: Character) => { - return this.applyDefaultAttributes(item); - }); + return this.http.get[]>(API_BASE.EVE_COMMANDER + '/characters').map((characters: Character[]) => { + return this.objectArrayToResourceArray(characters); }); } - - /** - * Get URL for the given character at a given size - * - * @param {number} character_id - * @param {number} size - * @returns {string} - */ - getCharacterImageURL(character_id: number, size: 32|64|128|256|512|1024) { - return API_BASE.EVE_ONLINE_IMAGE_BASE + 'Character/' + character_id + '_' + size + '.jpg'; - } - - /** - * Refresh a character's Eve Online token - * - * @param character_id - * @returns {Observable} - */ - refreshToken(character_id) { - return this.http.get(API_BASE.EVE_COMMANDER + '/characters/' + character_id + '/refresh'); - } } diff --git a/src/app/services/corporation/corporation.service.spec.ts b/src/app/services/corporation/corporation.service.spec.ts new file mode 100644 index 0000000..71bce1e --- /dev/null +++ b/src/app/services/corporation/corporation.service.spec.ts @@ -0,0 +1,15 @@ +import { TestBed, inject } from '@angular/core/testing'; + +import { CorporationService } from './corporation.service'; + +describe('CorporationService', () => { + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [CorporationService] + }); + }); + + it('should be created', inject([CorporationService], (service: CorporationService) => { + expect(service).toBeTruthy(); + })); +}); diff --git a/src/app/services/corporation/corporation.service.ts b/src/app/services/corporation/corporation.service.ts new file mode 100644 index 0000000..38d93d7 --- /dev/null +++ b/src/app/services/corporation/corporation.service.ts @@ -0,0 +1,12 @@ +import { Injectable } from '@angular/core'; +import { API_BASE } from '../base.service'; + +@Injectable() +export class CorporationService { + + constructor() { } + + getSettings() { + return; + } +} diff --git a/src/app/services/eve-auth/eve-auth.service.spec.ts b/src/app/services/eve-auth/eve-auth.service.spec.ts new file mode 100644 index 0000000..e99d3e4 --- /dev/null +++ b/src/app/services/eve-auth/eve-auth.service.spec.ts @@ -0,0 +1,15 @@ +import { TestBed, inject } from '@angular/core/testing'; + +import { EveAuthService } from './eve-auth.service'; + +describe('EveAuthService', () => { + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [EveAuthService] + }); + }); + + it('should be created', inject([EveAuthService], (service: EveAuthService) => { + expect(service).toBeTruthy(); + })); +}); diff --git a/src/app/services/eve-auth/eve-auth.service.ts b/src/app/services/eve-auth/eve-auth.service.ts new file mode 100644 index 0000000..cba3d5b --- /dev/null +++ b/src/app/services/eve-auth/eve-auth.service.ts @@ -0,0 +1,103 @@ +import { Injectable, OnInit } from '@angular/core'; +import { Character } from '../character/character.service'; +import {API_BASE, BaseService, ResourceInterface} from '../base.service'; +import { EchoService } from 'angular-laravel-echo'; +import { HttpClient } from '@angular/common/http'; +import { Observable } from 'rxjs/Observable'; +import { Observer } from 'rxjs/Observer'; +import { Moment } from 'moment'; + +export interface OAuth2Token { + access_token: string; + refresh_token: string; + expires: Moment; +} + +@Injectable() +export class EveAuthService extends BaseService implements OnInit { + protected clientID: number; + protected scopes: string[]; + protected authenticatedCharacters: Map> = new Map>(); + + constructor(private http: HttpClient, private echo: EchoService) { + super(); + } + + /** + * Get client ID and required scopes from API + */ + ngOnInit() { + this.http.get<{client_id: number, scopes: string[]}>(API_BASE.EVE_COMMANDER + 'settings/sso').subscribe(response => { + this.clientID = response.client_id; + this.scopes = response.scopes; + }); + } + + getCharacter(character_eve_id: number): ResourceInterface { + return this.authenticatedCharacters.get(character_eve_id); + } + + setCharacter(character: ResourceInterface) { + this.authenticatedCharacters.set(character.data.eve_id, character); + } + + /** + * Opens new window to SSO to authorize a character + * + * @returns {{windowRef: Window; observer: Observable}} + */ + authorizeCharacter() { + const windowRef = window.open(this.getSSOURL()); + this.echo.notification('character-auth').map().subscribe((character: Character) => { + this.setCharacter(this.objectToResource(character)); + windowRef.close(); + }); + } + + /** + * Get URL for the EVE SSO including extras + * + * @returns {string} + */ + getSSOURL() { + return API_BASE.EVE_ONLINE_AUTH + 'oauth/authorize/?response_type=code&redirect_uri=' + + API_BASE.EVE_COMMANDER_AUTH_CALLBACK + '&client_id=' + this.clientID + '&scope=' + this.scopes.join(','); + } + + /** + * Refresh a character's Eve Online token + * + * @param character_eve_id + */ + refreshToken(character_eve_id: number) { + return this.http.get(API_BASE.EVE_COMMANDER + '/characters/' + character_eve_id + '/refresh') + .subscribe((token: OAuth2Token) => { + const tempChar = this.getCharacter(character_eve_id); + tempChar.data.token = token; + this.setCharacter(tempChar); + return token; + }); + } + + /** + * Check if the token for the character is valid, refresh it if not, and return the token + * + * @param {number} character_eve_id + * @returns {Observable} + */ + getToken(character_eve_id: number): Observable { + if (!this.authenticatedCharacters.has(character_eve_id)) { + throw Error('Character with ID ' + character_eve_id + 'does not exist in the list of authenticated characters'); + } + + const char = this.getCharacter(character_eve_id); + + return Observable.create((observer: Observer) => { + if (char.data.token.expires.isBefore()) { + observer.next(this.refreshToken(character_eve_id)); + } else { + observer.next(char.data.token); + } + }); + } +} diff --git a/src/app/services/image/image.service.spec.ts b/src/app/services/image/image.service.spec.ts new file mode 100644 index 0000000..319664e --- /dev/null +++ b/src/app/services/image/image.service.spec.ts @@ -0,0 +1,15 @@ +import { TestBed, inject } from '@angular/core/testing'; + +import { ImageService } from './image.service'; + +describe('ImageService', () => { + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [ImageService] + }); + }); + + it('should be created', inject([ImageService], (service: ImageService) => { + expect(service).toBeTruthy(); + })); +}); diff --git a/src/app/services/image/image.service.ts b/src/app/services/image/image.service.ts new file mode 100644 index 0000000..a2c3d98 --- /dev/null +++ b/src/app/services/image/image.service.ts @@ -0,0 +1,41 @@ +import { Injectable } from '@angular/core'; +import { API_BASE } from '../base.service'; + +@Injectable() +export class ImageService { + + constructor() { } + + /** + * Get URL for the given character at a given size + * + * @param {number} character_id + * @param {number} size + * @returns {string} + */ + getCharacterImageURL(character_id: number, size: 32|64|128|256|512|1024) { + return API_BASE.EVE_ONLINE_IMAGE_BASE + 'Character/' + character_id + '_' + size + '.jpg'; + } + + /** + * Get URL for the given corporation at a given size + * + * @param {number} corporation_id + * @param {number} size + * @returns {string} + */ + getCorporationImageURL(corporation_id: number, size: 32|64|128|256) { + return API_BASE.EVE_ONLINE_IMAGE_BASE + 'Corporation/' + corporation_id + '_' + size + '.jpg'; + } + + /** + * Get URL for the given alliance at a given size + * + * @param {number} alliance_id + * @param {number} size + * @returns {string} + */ + getAllianceImageURL(alliance_id: number, size: 32|64|128|256) { + return API_BASE.EVE_ONLINE_IMAGE_BASE + 'Alliance/' + alliance_id + '_' + size + '.jpg'; + } +} From 5314072dd24b6c5306fdb1918234760e27d385a8 Mon Sep 17 00:00:00 2001 From: Wizofgoz Date: Tue, 22 May 2018 10:44:58 -0700 Subject: [PATCH 3/5] Fix test errors --- src/app/components/card/card.component.ts | 2 +- .../character/character.card.component.ts | 10 +++---- src/app/components/menu/menu.component.ts | 2 +- src/app/services/api/api.service.ts | 8 +++--- src/app/services/auth/auth.service.ts | 2 +- .../services/character/character.service.ts | 10 +++---- src/app/services/eve-auth/eve-auth.service.ts | 28 ++++++++++--------- src/app/services/menu/menu.service.ts | 9 ++---- 8 files changed, 34 insertions(+), 37 deletions(-) diff --git a/src/app/components/card/card.component.ts b/src/app/components/card/card.component.ts index 26855e6..3827f09 100644 --- a/src/app/components/card/card.component.ts +++ b/src/app/components/card/card.component.ts @@ -9,7 +9,7 @@ import { ResourceInterface } from '../../services/base.service'; styleUrls: ['./card.component.css'] }) export class CardComponent implements OnChanges { - @Input() resource: ResourceInterface; + @Input() resource: ResourceInterface; @Output() select: EventEmitter = new EventEmitter(); @Output() delete: EventEmitter = new EventEmitter(); @Output() edit: EventEmitter = new EventEmitter(); diff --git a/src/app/components/card/cards/character/character.card.component.ts b/src/app/components/card/cards/character/character.card.component.ts index e904364..229660c 100644 --- a/src/app/components/card/cards/character/character.card.component.ts +++ b/src/app/components/card/cards/character/character.card.component.ts @@ -1,13 +1,12 @@ -import {Component, EventEmitter, Input, OnInit, Output} from '@angular/core'; +import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'; import { CardComponent } from '../card.component'; -import { CharacterService } from '../../../../services/character/character.service'; import { - CharacterService, CorporationService, GetCharactersCharacterIdOk, GetCharactersCharacterIdSkillsOk, GetCorporationsCorporationIdOk, SkillsService } from '../../../../eve-online-angular-client'; import { CacheService } from '../../../../services/cache/cache.service'; +import {ImageService} from '../../../../services/image/image.service'; @Component({ selector: 'app-character-card', @@ -23,14 +22,13 @@ export class CharacterCardComponent implements OnInit { characterSkills: GetCharactersCharacterIdSkillsOk; corporation: GetCorporationsCorporationIdOk; - constructor(private characterService: CharacterService, - private eve: CharacterService, + constructor(private imageService: ImageService, private corporationService: CorporationService, private skillsService: SkillsService, private cache: CacheService) { } ngOnInit() { - this.imageURL = this.characterService.getCharacterImageURL(this.data.resource_id, 32); + this.imageURL = this.imageService.getCharacterImageURL(this.data.resource_id, 32); this.cache.get('characterSkills' + this.data.resource_id, this.skillsService.getCharactersCharacterIdSkills(this.data.resource_id)) diff --git a/src/app/components/menu/menu.component.ts b/src/app/components/menu/menu.component.ts index 3c8ecfa..ea292a6 100644 --- a/src/app/components/menu/menu.component.ts +++ b/src/app/components/menu/menu.component.ts @@ -7,7 +7,7 @@ import { MenuService, MenuItem } from '../../services/menu/menu.service'; styleUrls: ['./menu.component.css'] }) export class MenuComponent implements OnInit { - @Input items: MenuItem[]; + @Input() items: MenuItem[]; constructor(private menuService: MenuService) { } diff --git a/src/app/services/api/api.service.ts b/src/app/services/api/api.service.ts index 8ed754a..dbe3432 100644 --- a/src/app/services/api/api.service.ts +++ b/src/app/services/api/api.service.ts @@ -12,25 +12,25 @@ export class ApiService extends BaseService { } all(path: string): Observable[]> { - return this.http.get[]>(API_BASE.EVE_COMMANDER + path).map((items: T[]) => { + return this.http.get[]>(API_BASE.EVE_COMMANDER + path).map((items: ResourceInterface[]) => { return this.objectArrayToResourceArray(items); }); } find(path: string, id: number): Observable> { - return this.http.get>(API_BASE.EVE_COMMANDER + path + '/' + id).map((item: T) => { + return this.http.get>(API_BASE.EVE_COMMANDER + path + '/' + id).map((item: ResourceInterface) => { return this.objectToResource(item); }); } create(path: string, object: T): Observable> { - return this.http.post>(API_BASE.EVE_COMMANDER + path, object).map((item: T) => { + return this.http.post>(API_BASE.EVE_COMMANDER + path, object).map((item: ResourceInterface) => { return this.objectToResource(item); }); } update(path: string, id: number, object: T): Observable> { - return this.http.put(API_BASE.EVE_COMMANDER + path + '/' + id, object).map((item: T) => { + return this.http.put(API_BASE.EVE_COMMANDER + path + '/' + id, object).map((item: ResourceInterface) => { return this.objectToResource(item); }); } diff --git a/src/app/services/auth/auth.service.ts b/src/app/services/auth/auth.service.ts index e5f78df..389e2ab 100644 --- a/src/app/services/auth/auth.service.ts +++ b/src/app/services/auth/auth.service.ts @@ -1,7 +1,7 @@ import { Injectable } from '@angular/core'; import { HttpClient } from '@angular/common/http'; import * as moment from 'moment'; -import { User } from '../user'; +import { User } from '../user/user.service'; @Injectable() export class AuthService { diff --git a/src/app/services/character/character.service.ts b/src/app/services/character/character.service.ts index 304e10b..9d1d507 100644 --- a/src/app/services/character/character.service.ts +++ b/src/app/services/character/character.service.ts @@ -1,11 +1,10 @@ import { Injectable } from '@angular/core'; import { HttpClient } from '@angular/common/http'; -import { Moment } from 'moment'; import { API_BASE, BaseService, ResourceInterface } from '../base.service'; import { Router } from '@angular/router'; import { Moment } from 'moment'; import { Observable } from 'rxjs/Observable'; -import { CharacterCardComponent } from '../../components/card/cards/character/character.card.component'; +import { CharacterCardComponent } from '../../components/card/cards/character'; import { OAuth2Token } from '../eve-auth/eve-auth.service'; export class Character { @@ -34,8 +33,9 @@ export class CharacterService extends BaseService { * @returns {Observable} */ getCharacters() { - return this.http.get[]>(API_BASE.EVE_COMMANDER + '/characters').map((characters: Character[]) => { - return this.objectArrayToResourceArray(characters); - }); + return this.http.get[]>(API_BASE.EVE_COMMANDER + '/characters') + .map((characters: ResourceInterface[]) => { + return this.objectArrayToResourceArray(characters); + }); } } diff --git a/src/app/services/eve-auth/eve-auth.service.ts b/src/app/services/eve-auth/eve-auth.service.ts index cba3d5b..0fea580 100644 --- a/src/app/services/eve-auth/eve-auth.service.ts +++ b/src/app/services/eve-auth/eve-auth.service.ts @@ -43,12 +43,10 @@ export class EveAuthService extends BaseService implements OnInit { /** * Opens new window to SSO to authorize a character - * - * @returns {{windowRef: Window; observer: Observable}} */ authorizeCharacter() { const windowRef = window.open(this.getSSOURL()); - this.echo.notification('character-auth').map().subscribe((character: Character) => { + this.echo.notification('character-auth').subscribe((character: Character) => { this.setCharacter(this.objectToResource(character)); windowRef.close(); }); @@ -69,14 +67,16 @@ export class EveAuthService extends BaseService implements OnInit { * * @param character_eve_id */ - refreshToken(character_eve_id: number) { - return this.http.get(API_BASE.EVE_COMMANDER + '/characters/' + character_eve_id + '/refresh') - .subscribe((token: OAuth2Token) => { - const tempChar = this.getCharacter(character_eve_id); - tempChar.data.token = token; - this.setCharacter(tempChar); - return token; - }); + refreshToken(character_eve_id: number): Observable { + return Observable.create((observer: Observer) => { + this.http.get(API_BASE.EVE_COMMANDER + '/characters/' + character_eve_id + '/refresh') + .subscribe((token: OAuth2Token) => { + const tempChar = this.getCharacter(character_eve_id); + tempChar.data.token = token; + this.setCharacter(tempChar); + observer.next(token); + }); + }); } /** @@ -92,9 +92,11 @@ export class EveAuthService extends BaseService implements OnInit { const char = this.getCharacter(character_eve_id); - return Observable.create((observer: Observer) => { + return Observable.create((observer: Observer) => { if (char.data.token.expires.isBefore()) { - observer.next(this.refreshToken(character_eve_id)); + this.refreshToken(character_eve_id).subscribe((token: OAuth2Token) => { + observer.next(token); + }); } else { observer.next(char.data.token); } diff --git a/src/app/services/menu/menu.service.ts b/src/app/services/menu/menu.service.ts index ff097d2..613ac5c 100644 --- a/src/app/services/menu/menu.service.ts +++ b/src/app/services/menu/menu.service.ts @@ -14,7 +14,7 @@ export class MenuItem { @Injectable() export class MenuService { - private menuItems: MenuItem[]; + private menuItems: MenuItem[] = []; activeMenuItem$: Observable; constructor(private router: Router, private titleService: Title) { @@ -58,11 +58,8 @@ export class MenuService { this.menuItems.splice(position, 0, item); } - removeMenuItem(item: MenuItem|number) { - let position = item; - if (item instanceof MenuItem) { - position = _.find(this.getMenuItems(), item); - } + removeMenuItem(item: MenuItem) { + const position = _.find(this.getMenuItems(), item); if (isNaN(position)) { return false; From b868ee2259b25c1a7f5948a1c1475afa9c69376f Mon Sep 17 00:00:00 2001 From: Wizofgoz Date: Tue, 22 May 2018 11:08:42 -0700 Subject: [PATCH 4/5] More test errors --- src/app/components/card/card.component.ts | 8 ++++---- src/app/components/login/login.component.ts | 12 ++++++------ src/app/services/api/api.service.ts | 8 ++++---- src/app/services/auth/auth.service.ts | 1 + src/app/services/cache/cache.service.ts | 1 + src/app/services/character/character.service.ts | 11 ++++------- src/app/services/eve-auth/eve-auth.service.ts | 2 +- 7 files changed, 21 insertions(+), 22 deletions(-) diff --git a/src/app/components/card/card.component.ts b/src/app/components/card/card.component.ts index 3827f09..1f6e136 100644 --- a/src/app/components/card/card.component.ts +++ b/src/app/components/card/card.component.ts @@ -30,10 +30,10 @@ export class CardComponent implements OnChanges { const viewContainerRef = this.cardHost.viewContainerRef; viewContainerRef.clear(); const componentRef = viewContainerRef.createComponent(componentFactory); - (componentRef.instance).resource = this.resource; - (componentRef.instance).select.subscribe(e => this.select.next(e)); - (componentRef.instance).delete.subscribe(e => this.delete.next(e)); - (componentRef.instance).edit.subscribe(e => this.edit.next(e)); + (>componentRef.instance).resource = this.resource; + (>componentRef.instance).select.subscribe(e => this.select.next(e)); + (>componentRef.instance).delete.subscribe(e => this.delete.next(e)); + (>componentRef.instance).edit.subscribe(e => this.edit.next(e)); this.ready = true; this.ref.detectChanges(); } diff --git a/src/app/components/login/login.component.ts b/src/app/components/login/login.component.ts index 24335a5..a0ddc18 100644 --- a/src/app/components/login/login.component.ts +++ b/src/app/components/login/login.component.ts @@ -1,10 +1,10 @@ import { Component, OnInit } from '@angular/core'; -import {FormBuilder, FormGroup, Validators} from '@angular/forms'; -import {AuthService} from '../../services/auth/auth.service'; -import {Router} from '@angular/router'; -import {Character, CharacterService} from '../../services/character/character.service'; -import {ResourceInterface} from '../../services/base.service'; -import {EveAuthService} from '../../services/eve-auth/eve-auth.service'; +import { FormBuilder, FormGroup, Validators } from '@angular/forms'; +import { AuthService } from '../../services/auth/auth.service'; +import { Router } from '@angular/router'; +import { Character, CharacterService } from '../../services/character/character.service'; +import { ResourceInterface } from '../../services/base.service'; +import { EveAuthService } from '../../services/eve-auth/eve-auth.service'; @Component({ selector: 'app-login', diff --git a/src/app/services/api/api.service.ts b/src/app/services/api/api.service.ts index dbe3432..8ed754a 100644 --- a/src/app/services/api/api.service.ts +++ b/src/app/services/api/api.service.ts @@ -12,25 +12,25 @@ export class ApiService extends BaseService { } all(path: string): Observable[]> { - return this.http.get[]>(API_BASE.EVE_COMMANDER + path).map((items: ResourceInterface[]) => { + return this.http.get[]>(API_BASE.EVE_COMMANDER + path).map((items: T[]) => { return this.objectArrayToResourceArray(items); }); } find(path: string, id: number): Observable> { - return this.http.get>(API_BASE.EVE_COMMANDER + path + '/' + id).map((item: ResourceInterface) => { + return this.http.get>(API_BASE.EVE_COMMANDER + path + '/' + id).map((item: T) => { return this.objectToResource(item); }); } create(path: string, object: T): Observable> { - return this.http.post>(API_BASE.EVE_COMMANDER + path, object).map((item: ResourceInterface) => { + return this.http.post>(API_BASE.EVE_COMMANDER + path, object).map((item: T) => { return this.objectToResource(item); }); } update(path: string, id: number, object: T): Observable> { - return this.http.put(API_BASE.EVE_COMMANDER + path + '/' + id, object).map((item: ResourceInterface) => { + return this.http.put(API_BASE.EVE_COMMANDER + path + '/' + id, object).map((item: T) => { return this.objectToResource(item); }); } diff --git a/src/app/services/auth/auth.service.ts b/src/app/services/auth/auth.service.ts index 389e2ab..911ee64 100644 --- a/src/app/services/auth/auth.service.ts +++ b/src/app/services/auth/auth.service.ts @@ -2,6 +2,7 @@ import { Injectable } from '@angular/core'; import { HttpClient } from '@angular/common/http'; import * as moment from 'moment'; import { User } from '../user/user.service'; +import 'rxjs/add/operator/do'; @Injectable() export class AuthService { diff --git a/src/app/services/cache/cache.service.ts b/src/app/services/cache/cache.service.ts index a0ee3a9..c6ff94d 100644 --- a/src/app/services/cache/cache.service.ts +++ b/src/app/services/cache/cache.service.ts @@ -3,6 +3,7 @@ import { Subject } from 'rxjs/Subject'; import { Injectable } from '@angular/core'; import { Observable } from 'rxjs/Observable'; import { of } from 'rxjs/observable/of'; +import 'rxjs/add/operator/do'; interface CacheContent { expiry: number; diff --git a/src/app/services/character/character.service.ts b/src/app/services/character/character.service.ts index 9d1d507..33fe95e 100644 --- a/src/app/services/character/character.service.ts +++ b/src/app/services/character/character.service.ts @@ -1,11 +1,11 @@ import { Injectable } from '@angular/core'; -import { HttpClient } from '@angular/common/http'; import { API_BASE, BaseService, ResourceInterface } from '../base.service'; import { Router } from '@angular/router'; import { Moment } from 'moment'; import { Observable } from 'rxjs/Observable'; -import { CharacterCardComponent } from '../../components/card/cards/character'; +import { CharacterCardComponent } from '../../components/card/cards'; import { OAuth2Token } from '../eve-auth/eve-auth.service'; +import { ApiService } from '../api/api.service'; export class Character { cardComponent = CharacterCardComponent; @@ -23,7 +23,7 @@ export class CharacterService extends BaseService { cardComponent: CharacterCardComponent }; - constructor(private router: Router, private http: HttpClient) { + constructor(private router: Router, private api: ApiService) { super(); } @@ -33,9 +33,6 @@ export class CharacterService extends BaseService { * @returns {Observable} */ getCharacters() { - return this.http.get[]>(API_BASE.EVE_COMMANDER + '/characters') - .map((characters: ResourceInterface[]) => { - return this.objectArrayToResourceArray(characters); - }); + return this.api.all[]>(API_BASE.EVE_COMMANDER + '/characters'); } } diff --git a/src/app/services/eve-auth/eve-auth.service.ts b/src/app/services/eve-auth/eve-auth.service.ts index 0fea580..14d531a 100644 --- a/src/app/services/eve-auth/eve-auth.service.ts +++ b/src/app/services/eve-auth/eve-auth.service.ts @@ -46,7 +46,7 @@ export class EveAuthService extends BaseService implements OnInit { */ authorizeCharacter() { const windowRef = window.open(this.getSSOURL()); - this.echo.notification('character-auth').subscribe((character: Character) => { + this.echo.notification('character-auth').subscribe((character: Character) => { this.setCharacter(this.objectToResource(character)); windowRef.close(); }); From 56fc8c250057ab1aed760e2d40b28b452dd8c871 Mon Sep 17 00:00:00 2001 From: Wizofgoz Date: Wed, 23 May 2018 13:29:23 -0700 Subject: [PATCH 5/5] Split ESI client into separate package --- package-lock.json | 5 + package.json | 1 + src/app/app.module.ts | 2 +- .../directives/card-host.directive.spec.ts | 8 - src/app/eve-online-angular-client/.gitignore | 4 - .../.swagger-codegen-ignore | 23 - .../.swagger-codegen/VERSION | 1 - .../eve-online-angular-client/api.module.ts | 90 - .../api/alliance.service.ts | 338 ---- src/app/eve-online-angular-client/api/api.ts | 65 - .../api/assets.service.ts | 512 ----- .../api/bookmarks.service.ts | 348 ---- .../api/calendar.service.ts | 357 ---- .../api/character.service.ts | 1179 ----------- .../api/clones.service.ts | 195 -- .../api/contacts.service.ts | 600 ------ .../api/contracts.service.ts | 496 ----- .../api/corporation.service.ts | 1756 ----------------- .../api/dogma.service.ts | 275 --- .../api/factionWarfare.service.ts | 508 ----- .../api/fittings.service.ts | 277 --- .../api/fleets.service.ts | 1109 ----------- .../api/incursions.service.ts | 111 -- .../api/industry.service.ts | 604 ------ .../api/insurance.service.ts | 115 -- .../api/killmails.service.ts | 269 --- .../api/location.service.ts | 264 --- .../api/loyalty.service.ts | 185 -- .../api/mail.service.ts | 725 ------- .../api/market.service.ts | 775 -------- .../api/opportunities.service.ts | 346 ---- .../api/planetaryInteraction.service.ts | 330 ---- .../api/routes.service.ts | 131 -- .../api/search.service.ts | 224 --- .../api/skills.service.ts | 264 --- .../api/sovereignty.service.ts | 215 -- .../api/status.service.ts | 111 -- .../api/universe.service.ts | 1708 ---------------- .../api/userInterface.service.ts | 432 ---- .../api/wallet.service.ts | 491 ----- .../api/wars.service.ts | 232 --- .../configuration.ts | 79 - src/app/eve-online-angular-client/encoder.ts | 18 - src/app/eve-online-angular-client/git_push.sh | 52 - src/app/eve-online-angular-client/index.ts | 5 - ...rIdMailLabelsLabelIdUnprocessableEntity.ts | 22 - ...eteFleetsFleetIdMembersMemberIdNotFound.ts | 22 - ...eleteFleetsFleetIdSquadsSquadIdNotFound.ts | 22 - .../deleteFleetsFleetIdWingsWingIdNotFound.ts | 22 - .../model/forbidden.ts | 26 - .../getAlliancesAllianceIdContacts200Ok.ts | 43 - .../getAlliancesAllianceIdIconsNotFound.ts | 22 - .../model/getAlliancesAllianceIdIconsOk.ts | 26 - .../model/getAlliancesAllianceIdNotFound.ts | 22 - .../model/getAlliancesAllianceIdOk.ts | 46 - .../model/getAlliancesNames200Ok.ts | 26 - ...haractersCharacterIdAgentsResearch200Ok.ts | 38 - .../getCharactersCharacterIdAssets200Ok.ts | 135 -- .../getCharactersCharacterIdAttributesOk.ts | 50 - ...getCharactersCharacterIdBlueprints200Ok.ts | 131 -- .../getCharactersCharacterIdBookmarks200Ok.ts | 50 - ...aractersCharacterIdBookmarksCoordinates.ts | 30 - ...ractersCharacterIdBookmarksFolders200Ok.ts | 26 - .../getCharactersCharacterIdBookmarksItem.ts | 26 - .../getCharactersCharacterIdCalendar200Ok.ts | 47 - ...haracterIdCalendarEventIdAttendees200Ok.ts | 35 - ...tCharactersCharacterIdCalendarEventIdOk.ts | 68 - ...tCharactersCharacterIdChatChannels200Ok.ts | 62 - ...haractersCharacterIdChatChannelsAllowed.ts | 34 - ...haractersCharacterIdChatChannelsBlocked.ts | 42 - ...tCharactersCharacterIdChatChannelsMuted.ts | 42 - ...aractersCharacterIdChatChannelsOperator.ts | 34 - ...CharactersCharacterIdClonesHomeLocation.ts | 33 - ...getCharactersCharacterIdClonesJumpClone.ts | 45 - .../model/getCharactersCharacterIdClonesOk.ts | 33 - .../getCharactersCharacterIdContacts200Ok.ts | 51 - ...haractersCharacterIdContactsLabels200Ok.ts | 26 - .../getCharactersCharacterIdContracts200Ok.ts | 136 -- ...CharacterIdContractsContractIdBids200Ok.ts | 34 - ...haracterIdContractsContractIdItems200Ok.ts | 42 - ...ctersCharacterIdCorporationhistory200Ok.ts | 34 - .../getCharactersCharacterIdFatigueOk.ts | 30 - .../getCharactersCharacterIdFittings200Ok.ts | 39 - .../getCharactersCharacterIdFittingsItem.ts | 30 - .../getCharactersCharacterIdFleetNotFound.ts | 22 - .../model/getCharactersCharacterIdFleetOk.ts | 43 - .../getCharactersCharacterIdFwStatsKills.ts | 30 - .../getCharactersCharacterIdFwStatsOk.ts | 38 - ...aractersCharacterIdFwStatsVictoryPoints.ts | 30 - ...tCharactersCharacterIdIndustryJobs200Ok.ts | 117 -- ...aractersCharacterIdKillmailsRecent200Ok.ts | 26 - .../getCharactersCharacterIdLocationOk.ts | 30 - ...CharactersCharacterIdLoyaltyPoints200Ok.ts | 26 - .../getCharactersCharacterIdMail200Ok.ts | 47 - ...getCharactersCharacterIdMailLabelsLabel.ts | 57 - .../getCharactersCharacterIdMailLabelsOk.ts | 27 - .../getCharactersCharacterIdMailLists200Ok.ts | 26 - ...CharactersCharacterIdMailMailIdNotFound.ts | 22 - .../getCharactersCharacterIdMailMailIdOk.ts | 47 - ...haractersCharacterIdMailMailIdRecipient.ts | 35 - .../getCharactersCharacterIdMailRecipient.ts | 35 - .../getCharactersCharacterIdMedals200Ok.ts | 62 - .../getCharactersCharacterIdMedalsGraphic.ts | 34 - .../getCharactersCharacterIdMining200Ok.ts | 34 - .../model/getCharactersCharacterIdNotFound.ts | 22 - ...CharactersCharacterIdNotifications200Ok.ts | 238 --- ...rsCharacterIdNotificationsContacts200Ok.ts | 38 - .../model/getCharactersCharacterIdOk.ts | 69 - .../model/getCharactersCharacterIdOnlineOk.ts | 34 - ...CharactersCharacterIdOpportunities200Ok.ts | 26 - .../getCharactersCharacterIdOrders200Ok.ts | 91 - ...CharactersCharacterIdOrdersHistory200Ok.ts | 100 - .../getCharactersCharacterIdPlanets200Ok.ts | 59 - ...actersCharacterIdPlanetsPlanetIdContent.ts | 26 - ...racterIdPlanetsPlanetIdExtractorDetails.ts | 39 - ...haracterIdPlanetsPlanetIdFactoryDetails.ts | 22 - ...haractersCharacterIdPlanetsPlanetIdHead.ts | 30 - ...haractersCharacterIdPlanetsPlanetIdLink.ts | 30 - ...ctersCharacterIdPlanetsPlanetIdNotFound.ts | 22 - ...tCharactersCharacterIdPlanetsPlanetIdOk.ts | 33 - ...CharactersCharacterIdPlanetsPlanetIdPin.ts | 59 - ...aractersCharacterIdPlanetsPlanetIdRoute.ts | 42 - ...etCharactersCharacterIdPortraitNotFound.ts | 22 - .../getCharactersCharacterIdPortraitOk.ts | 34 - .../model/getCharactersCharacterIdRolesOk.ts | 248 --- .../model/getCharactersCharacterIdSearchOk.ts | 62 - .../model/getCharactersCharacterIdShipOk.ts | 30 - ...getCharactersCharacterIdSkillqueue200Ok.ts | 50 - .../model/getCharactersCharacterIdSkillsOk.ts | 31 - .../getCharactersCharacterIdSkillsSkill.ts | 34 - .../getCharactersCharacterIdStandings200Ok.ts | 38 - .../getCharactersCharacterIdStats200Ok.ts | 46 - .../getCharactersCharacterIdStatsCharacter.ts | 30 - .../getCharactersCharacterIdStatsCombat.ts | 394 ---- .../getCharactersCharacterIdStatsIndustry.ts | 162 -- .../getCharactersCharacterIdStatsInventory.ts | 26 - .../model/getCharactersCharacterIdStatsIsk.ts | 26 - .../getCharactersCharacterIdStatsMarket.ts | 70 - .../getCharactersCharacterIdStatsMining.ts | 94 - .../getCharactersCharacterIdStatsModule.ts | 294 --- .../getCharactersCharacterIdStatsOrbital.ts | 30 - .../model/getCharactersCharacterIdStatsPve.ts | 34 - .../getCharactersCharacterIdStatsSocial.ts | 118 -- .../getCharactersCharacterIdStatsTravel.ts | 102 - .../getCharactersCharacterIdTitles200Ok.ts | 26 - ...CharactersCharacterIdWalletJournal200Ok.ts | 206 -- ...actersCharacterIdWalletJournalExtraInfo.ts | 66 - ...ctersCharacterIdWalletTransactions200Ok.ts | 58 - .../model/getCharactersNames200Ok.ts | 26 - ...tionCorporationIdMiningExtractions200Ok.ts | 38 - ...rationCorporationIdMiningObservers200Ok.ts | 36 - ...orationIdMiningObserversObserverId200Ok.ts | 38 - ...ationsCorporationIdAlliancehistory200Ok.ts | 34 - ...getCorporationsCorporationIdAssets200Ok.ts | 172 -- ...orporationsCorporationIdBlueprints200Ok.ts | 170 -- ...CorporationsCorporationIdBookmarks200Ok.ts | 50 - ...ationsCorporationIdBookmarksCoordinates.ts | 30 - ...tionsCorporationIdBookmarksFolders200Ok.ts | 30 - ...tCorporationsCorporationIdBookmarksItem.ts | 26 - ...tCorporationsCorporationIdContacts200Ok.ts | 47 - ...rationsCorporationIdContainersLogs200Ok.ts | 204 -- ...CorporationsCorporationIdContracts200Ok.ts | 136 -- ...rporationIdContractsContractIdBids200Ok.ts | 34 - ...porationIdContractsContractIdItems200Ok.ts | 42 - ...rationsCorporationIdCustomsOffices200Ok.ts | 84 - ...orporationsCorporationIdDivisionsHangar.ts | 26 - ...getCorporationsCorporationIdDivisionsOk.ts | 28 - ...orporationsCorporationIdDivisionsWallet.ts | 26 - ...orporationsCorporationIdFacilities200Ok.ts | 30 - ...etCorporationsCorporationIdFwStatsKills.ts | 30 - .../getCorporationsCorporationIdFwStatsOk.ts | 34 - ...ationsCorporationIdFwStatsVictoryPoints.ts | 30 - ...tCorporationsCorporationIdIconsNotFound.ts | 22 - .../getCorporationsCorporationIdIconsOk.ts | 30 - ...porationsCorporationIdIndustryJobs200Ok.ts | 117 -- ...ationsCorporationIdKillmailsRecent200Ok.ts | 26 - ...getCorporationsCorporationIdMedals200Ok.ts | 38 - ...porationsCorporationIdMedalsIssued200Ok.ts | 49 - ...orationsCorporationIdMembersTitles200Ok.ts | 26 - ...rationsCorporationIdMembertracking200Ok.ts | 46 - .../getCorporationsCorporationIdNotFound.ts | 22 - .../model/getCorporationsCorporationIdOk.ts | 70 - ...getCorporationsCorporationIdOrders200Ok.ts | 91 - ...orationsCorporationIdOrdersHistory200Ok.ts | 100 - ...rporationIdOutpostsOutpostIdCoordinates.ts | 30 - ...rationsCorporationIdOutpostsOutpostIdOk.ts | 57 - ...nsCorporationIdOutpostsOutpostIdService.ts | 66 - .../getCorporationsCorporationIdRoles200Ok.ts | 480 ----- ...porationsCorporationIdRolesHistory200Ok.ts | 161 -- ...porationsCorporationIdShareholders200Ok.ts | 37 - ...CorporationsCorporationIdStandings200Ok.ts | 38 - ...CorporationsCorporationIdStarbases200Ok.ts | 60 - ...onsCorporationIdStarbasesStarbaseIdFuel.ts | 26 - ...tionsCorporationIdStarbasesStarbaseIdOk.ts | 119 -- ...orporationsCorporationIdStructures200Ok.ts | 100 - ...porationsCorporationIdStructuresService.ts | 34 - ...getCorporationsCorporationIdTitles200Ok.ts | 484 ----- ...etCorporationsCorporationIdWallets200Ok.ts | 26 - ...orporationIdWalletsDivisionJournal200Ok.ts | 206 -- ...rationIdWalletsDivisionJournalExtraInfo.ts | 66 - ...ationIdWalletsDivisionTransactions200Ok.ts | 54 - .../model/getCorporationsNames200Ok.ts | 26 - .../getDogmaAttributesAttributeIdNotFound.ts | 22 - .../model/getDogmaAttributesAttributeIdOk.ts | 58 - .../model/getDogmaEffectsEffectIdModifier.ts | 42 - .../model/getDogmaEffectsEffectIdNotFound.ts | 22 - .../model/getDogmaEffectsEffectIdOk.ts | 103 - .../model/getFleetsFleetIdMembers200Ok.ts | 67 - .../model/getFleetsFleetIdMembersNotFound.ts | 22 - .../model/getFleetsFleetIdNotFound.ts | 22 - .../model/getFleetsFleetIdOk.ts | 34 - .../model/getFleetsFleetIdWings200Ok.ts | 31 - .../model/getFleetsFleetIdWingsNotFound.ts | 22 - .../model/getFleetsFleetIdWingsSquad.ts | 26 - .../model/getFwLeaderboardsActiveTotal.ts | 26 - .../model/getFwLeaderboardsActiveTotal1.ts | 26 - .../getFwLeaderboardsCharactersActiveTotal.ts | 26 - ...getFwLeaderboardsCharactersActiveTotal1.ts | 26 - .../model/getFwLeaderboardsCharactersKills.ts | 33 - .../getFwLeaderboardsCharactersLastWeek.ts | 26 - .../getFwLeaderboardsCharactersLastWeek1.ts | 26 - .../model/getFwLeaderboardsCharactersOk.ts | 22 - ...etFwLeaderboardsCharactersVictoryPoints.ts | 33 - .../getFwLeaderboardsCharactersYesterday.ts | 26 - .../getFwLeaderboardsCharactersYesterday1.ts | 26 - ...etFwLeaderboardsCorporationsActiveTotal.ts | 26 - ...tFwLeaderboardsCorporationsActiveTotal1.ts | 26 - .../getFwLeaderboardsCorporationsKills.ts | 33 - .../getFwLeaderboardsCorporationsLastWeek.ts | 26 - .../getFwLeaderboardsCorporationsLastWeek1.ts | 26 - .../model/getFwLeaderboardsCorporationsOk.ts | 22 - ...FwLeaderboardsCorporationsVictoryPoints.ts | 33 - .../getFwLeaderboardsCorporationsYesterday.ts | 26 - ...getFwLeaderboardsCorporationsYesterday1.ts | 26 - .../model/getFwLeaderboardsKills.ts | 33 - .../model/getFwLeaderboardsLastWeek.ts | 26 - .../model/getFwLeaderboardsLastWeek1.ts | 26 - .../model/getFwLeaderboardsOk.ts | 22 - .../model/getFwLeaderboardsVictoryPoints.ts | 33 - .../model/getFwLeaderboardsYesterday.ts | 26 - .../model/getFwLeaderboardsYesterday1.ts | 26 - .../model/getFwStats200Ok.ts | 34 - .../model/getFwStatsKills.ts | 30 - .../model/getFwStatsVictoryPoints.ts | 30 - .../model/getFwSystems200Ok.ts | 42 - .../model/getFwWars200Ok.ts | 26 - .../model/getIncursions200Ok.ts | 58 - .../model/getIndustryFacilities200Ok.ts | 42 - .../model/getIndustrySystems200Ok.ts | 27 - .../model/getIndustrySystemsCostIndice.ts | 41 - .../model/getInsurancePrices200Ok.ts | 27 - .../model/getInsurancePricesLevel.ts | 30 - ...KillmailsKillmailIdKillmailHashAttacker.ts | 54 - .../getKillmailsKillmailIdKillmailHashItem.ts | 38 - ...getKillmailsKillmailIdKillmailHashItem1.ts | 43 - .../getKillmailsKillmailIdKillmailHashOk.ts | 45 - ...KillmailsKillmailIdKillmailHashPosition.ts | 30 - ...llmailIdKillmailHashUnprocessableEntity.ts | 22 - ...etKillmailsKillmailIdKillmailHashVictim.ts | 49 - ...etLoyaltyStoresCorporationIdOffers200Ok.ts | 47 - ...oyaltyStoresCorporationIdOffersNotFound.ts | 22 - ...tyStoresCorporationIdOffersRequiredItem.ts | 26 - .../getMarketsGroupsMarketGroupIdNotFound.ts | 22 - .../model/getMarketsGroupsMarketGroupIdOk.ts | 38 - .../model/getMarketsPrices200Ok.ts | 30 - .../model/getMarketsRegionIdHistory200Ok.ts | 42 - ...rketsRegionIdHistoryUnprocessableEntity.ts | 22 - .../model/getMarketsRegionIdOrders200Ok.ts | 79 - ...arketsRegionIdOrdersUnprocessableEntity.ts | 22 - .../getMarketsStructuresStructureId200Ok.ts | 79 - .../model/getOpportunitiesGroupsGroupIdOk.ts | 42 - .../model/getOpportunitiesTasksTaskIdOk.ts | 34 - .../getRouteOriginDestinationNotFound.ts | 22 - .../model/getSearchOk.ts | 58 - .../model/getSovereigntyCampaigns200Ok.ts | 68 - .../getSovereigntyCampaignsParticipant.ts | 26 - .../model/getSovereigntyMap200Ok.ts | 34 - .../model/getSovereigntyStructures200Ok.ts | 46 - .../model/getStatusOk.ts | 34 - .../model/getUniverseAncestries200Ok.ts | 42 - .../model/getUniverseBloodlines200Ok.ts | 62 - ...getUniverseCategoriesCategoryIdNotFound.ts | 22 - .../getUniverseCategoriesCategoryIdOk.ts | 34 - ...seConstellationsConstellationIdNotFound.ts | 22 - ...UniverseConstellationsConstellationIdOk.ts | 36 - ...seConstellationsConstellationIdPosition.ts | 30 - .../model/getUniverseFactions200Ok.ts | 58 - .../getUniverseGraphicsGraphicIdNotFound.ts | 22 - .../model/getUniverseGraphicsGraphicIdOk.ts | 50 - .../model/getUniverseGroupsGroupIdNotFound.ts | 22 - .../model/getUniverseGroupsGroupIdOk.ts | 38 - .../model/getUniverseMoonsMoonIdNotFound.ts | 22 - .../model/getUniverseMoonsMoonIdOk.ts | 32 - .../model/getUniverseMoonsMoonIdPosition.ts | 30 - .../getUniversePlanetsPlanetIdNotFound.ts | 22 - .../model/getUniversePlanetsPlanetIdOk.ts | 36 - .../getUniversePlanetsPlanetIdPosition.ts | 30 - .../model/getUniverseRaces200Ok.ts | 34 - .../getUniverseRegionsRegionIdNotFound.ts | 22 - .../model/getUniverseRegionsRegionIdOk.ts | 34 - ...etUniverseSchematicsSchematicIdNotFound.ts | 22 - .../getUniverseSchematicsSchematicIdOk.ts | 26 - ...tUniverseStargatesStargateIdDestination.ts | 26 - .../getUniverseStargatesStargateIdNotFound.ts | 22 - .../model/getUniverseStargatesStargateIdOk.ts | 38 - .../getUniverseStargatesStargateIdPosition.ts | 30 - .../model/getUniverseStarsStarIdOk.ts | 144 -- .../getUniverseStationsStationIdNotFound.ts | 22 - .../model/getUniverseStationsStationIdOk.ts | 96 - .../getUniverseStationsStationIdPosition.ts | 30 - ...etUniverseStructuresStructureIdNotFound.ts | 22 - .../getUniverseStructuresStructureIdOk.ts | 32 - ...etUniverseStructuresStructureIdPosition.ts | 30 - .../model/getUniverseSystemJumps200Ok.ts | 26 - .../model/getUniverseSystemKills200Ok.ts | 34 - .../getUniverseSystemsSystemIdNotFound.ts | 22 - .../model/getUniverseSystemsSystemIdOk.ts | 57 - .../model/getUniverseSystemsSystemIdPlanet.ts | 26 - .../getUniverseSystemsSystemIdPosition.ts | 30 - .../getUniverseTypesTypeIdDogmaAttribute.ts | 26 - .../getUniverseTypesTypeIdDogmaEffect.ts | 26 - .../model/getUniverseTypesTypeIdNotFound.ts | 22 - .../model/getUniverseTypesTypeIdOk.ts | 84 - .../model/getWarsWarIdAggressor.ts | 34 - .../model/getWarsWarIdAlly.ts | 26 - .../model/getWarsWarIdDefender.ts | 34 - .../model/getWarsWarIdKillmails200Ok.ts | 26 - ...etWarsWarIdKillmailsUnprocessableEntity.ts | 22 - .../model/getWarsWarIdOk.ts | 55 - .../model/getWarsWarIdUnprocessableEntity.ts | 22 - .../model/internalServerError.ts | 22 - .../eve-online-angular-client/model/models.ts | 337 ---- .../model/postCharactersAffiliation200Ok.ts | 34 - .../postCharactersAffiliationNotFound.ts | 22 - ...aractersCharacterIdAssetsLocations200Ok.ts | 24 - ...ctersCharacterIdAssetsLocationsPosition.ts | 30 - ...stCharactersCharacterIdAssetsNames200Ok.ts | 26 - ...ostCharactersCharacterIdFittingsCreated.ts | 22 - ...ostCharactersCharacterIdFittingsFitting.ts | 35 - .../postCharactersCharacterIdFittingsItem.ts | 30 - ...postCharactersCharacterIdMailBadRequest.ts | 22 - ...ostCharactersCharacterIdMailLabelsLabel.ts | 49 - .../postCharactersCharacterIdMailMail.ts | 35 - .../postCharactersCharacterIdMailRecipient.ts | 35 - ...ationsCorporationIdAssetsLocations200Ok.ts | 24 - ...onsCorporationIdAssetsLocationsPosition.ts | 30 - ...rporationsCorporationIdAssetsNames200Ok.ts | 26 - .../postFleetsFleetIdMembersInvitation.ts | 43 - .../model/postFleetsFleetIdMembersNotFound.ts | 22 - ...FleetsFleetIdMembersUnprocessableEntity.ts | 22 - .../model/postFleetsFleetIdWingsCreated.ts | 22 - .../model/postFleetsFleetIdWingsNotFound.ts | 22 - ...stFleetsFleetIdWingsWingIdSquadsCreated.ts | 22 - ...tFleetsFleetIdWingsWingIdSquadsNotFound.ts | 22 - .../model/postUiOpenwindowNewmailNewMail.ts | 38 - ...tUiOpenwindowNewmailUnprocessableEntity.ts | 22 - .../model/postUniverseIdsAgent.ts | 26 - .../model/postUniverseIdsAlliance.ts | 26 - .../model/postUniverseIdsCharacter.ts | 26 - .../model/postUniverseIdsConstellation.ts | 26 - .../model/postUniverseIdsCorporation.ts | 26 - .../model/postUniverseIdsFaction.ts | 26 - .../model/postUniverseIdsInventoryType.ts | 26 - .../model/postUniverseIdsOk.ts | 68 - .../model/postUniverseIdsRegion.ts | 26 - .../postUniverseIdsServiceUnavailable.ts | 22 - .../model/postUniverseIdsStation.ts | 26 - .../model/postUniverseIdsSystem.ts | 26 - .../model/postUniverseNames200Ok.ts | 43 - .../model/postUniverseNamesNotFound.ts | 22 - ...ctersCharacterIdCalendarEventIdResponse.ts | 30 - ...aractersCharacterIdMailMailIdBadRequest.ts | 22 - ...CharactersCharacterIdMailMailIdContents.ts | 26 - .../model/putFleetsFleetIdBadRequest.ts | 22 - ...putFleetsFleetIdMembersMemberIdMovement.ts | 39 - ...putFleetsFleetIdMembersMemberIdNotFound.ts | 22 - ...eetIdMembersMemberIdUnprocessableEntity.ts | 22 - .../model/putFleetsFleetIdNewSettings.ts | 26 - .../model/putFleetsFleetIdNotFound.ts | 22 - .../putFleetsFleetIdSquadsSquadIdNaming.ts | 22 - .../putFleetsFleetIdSquadsSquadIdNotFound.ts | 22 - .../putFleetsFleetIdWingsWingIdNaming.ts | 22 - .../putFleetsFleetIdWingsWingIdNotFound.ts | 22 - .../eve-online-angular-client/variables.ts | 9 - 384 files changed, 7 insertions(+), 31974 deletions(-) delete mode 100644 src/app/directives/card-host.directive.spec.ts delete mode 100755 src/app/eve-online-angular-client/.gitignore delete mode 100755 src/app/eve-online-angular-client/.swagger-codegen-ignore delete mode 100755 src/app/eve-online-angular-client/.swagger-codegen/VERSION delete mode 100755 src/app/eve-online-angular-client/api.module.ts delete mode 100755 src/app/eve-online-angular-client/api/alliance.service.ts delete mode 100755 src/app/eve-online-angular-client/api/api.ts delete mode 100755 src/app/eve-online-angular-client/api/assets.service.ts delete mode 100755 src/app/eve-online-angular-client/api/bookmarks.service.ts delete mode 100755 src/app/eve-online-angular-client/api/calendar.service.ts delete mode 100755 src/app/eve-online-angular-client/api/character.service.ts delete mode 100755 src/app/eve-online-angular-client/api/clones.service.ts delete mode 100755 src/app/eve-online-angular-client/api/contacts.service.ts delete mode 100755 src/app/eve-online-angular-client/api/contracts.service.ts delete mode 100755 src/app/eve-online-angular-client/api/corporation.service.ts delete mode 100755 src/app/eve-online-angular-client/api/dogma.service.ts delete mode 100755 src/app/eve-online-angular-client/api/factionWarfare.service.ts delete mode 100755 src/app/eve-online-angular-client/api/fittings.service.ts delete mode 100755 src/app/eve-online-angular-client/api/fleets.service.ts delete mode 100755 src/app/eve-online-angular-client/api/incursions.service.ts delete mode 100755 src/app/eve-online-angular-client/api/industry.service.ts delete mode 100755 src/app/eve-online-angular-client/api/insurance.service.ts delete mode 100755 src/app/eve-online-angular-client/api/killmails.service.ts delete mode 100755 src/app/eve-online-angular-client/api/location.service.ts delete mode 100755 src/app/eve-online-angular-client/api/loyalty.service.ts delete mode 100755 src/app/eve-online-angular-client/api/mail.service.ts delete mode 100755 src/app/eve-online-angular-client/api/market.service.ts delete mode 100755 src/app/eve-online-angular-client/api/opportunities.service.ts delete mode 100755 src/app/eve-online-angular-client/api/planetaryInteraction.service.ts delete mode 100755 src/app/eve-online-angular-client/api/routes.service.ts delete mode 100755 src/app/eve-online-angular-client/api/search.service.ts delete mode 100755 src/app/eve-online-angular-client/api/skills.service.ts delete mode 100755 src/app/eve-online-angular-client/api/sovereignty.service.ts delete mode 100755 src/app/eve-online-angular-client/api/status.service.ts delete mode 100755 src/app/eve-online-angular-client/api/universe.service.ts delete mode 100755 src/app/eve-online-angular-client/api/userInterface.service.ts delete mode 100755 src/app/eve-online-angular-client/api/wallet.service.ts delete mode 100755 src/app/eve-online-angular-client/api/wars.service.ts delete mode 100755 src/app/eve-online-angular-client/configuration.ts delete mode 100755 src/app/eve-online-angular-client/encoder.ts delete mode 100755 src/app/eve-online-angular-client/git_push.sh delete mode 100755 src/app/eve-online-angular-client/index.ts delete mode 100755 src/app/eve-online-angular-client/model/deleteCharactersCharacterIdMailLabelsLabelIdUnprocessableEntity.ts delete mode 100755 src/app/eve-online-angular-client/model/deleteFleetsFleetIdMembersMemberIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/deleteFleetsFleetIdSquadsSquadIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/deleteFleetsFleetIdWingsWingIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/forbidden.ts delete mode 100755 src/app/eve-online-angular-client/model/getAlliancesAllianceIdContacts200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getAlliancesAllianceIdIconsNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getAlliancesAllianceIdIconsOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getAlliancesAllianceIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getAlliancesAllianceIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getAlliancesNames200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdAgentsResearch200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdAssets200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdAttributesOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdBlueprints200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdBookmarks200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdBookmarksCoordinates.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdBookmarksFolders200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdBookmarksItem.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdCalendar200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdCalendarEventIdAttendees200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdCalendarEventIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdChatChannels200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdChatChannelsAllowed.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdChatChannelsBlocked.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdChatChannelsMuted.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdChatChannelsOperator.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdClonesHomeLocation.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdClonesJumpClone.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdClonesOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdContacts200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdContactsLabels200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdContracts200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdContractsContractIdBids200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdContractsContractIdItems200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdCorporationhistory200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdFatigueOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdFittings200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdFittingsItem.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdFleetNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdFleetOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdFwStatsKills.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdFwStatsOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdFwStatsVictoryPoints.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdIndustryJobs200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdKillmailsRecent200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdLocationOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdLoyaltyPoints200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdMail200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdMailLabelsLabel.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdMailLabelsOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdMailLists200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdMailMailIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdMailMailIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdMailMailIdRecipient.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdMailRecipient.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdMedals200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdMedalsGraphic.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdMining200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdNotifications200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdNotificationsContacts200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdOnlineOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdOpportunities200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdOrders200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdOrdersHistory200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanets200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdContent.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdExtractorDetails.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdFactoryDetails.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdHead.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdLink.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdPin.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdRoute.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdPortraitNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdPortraitOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdRolesOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdSearchOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdShipOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdSkillqueue200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdSkillsOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdSkillsSkill.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdStandings200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdStats200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsCharacter.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsCombat.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsIndustry.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsInventory.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsIsk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsMarket.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsMining.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsModule.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsOrbital.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsPve.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsSocial.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsTravel.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdTitles200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdWalletJournal200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdWalletJournalExtraInfo.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersCharacterIdWalletTransactions200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCharactersNames200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationCorporationIdMiningExtractions200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationCorporationIdMiningObservers200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationCorporationIdMiningObserversObserverId200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdAlliancehistory200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdAssets200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdBlueprints200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdBookmarks200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdBookmarksCoordinates.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdBookmarksFolders200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdBookmarksItem.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdContacts200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdContainersLogs200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdContracts200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdContractsContractIdBids200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdContractsContractIdItems200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdCustomsOffices200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdDivisionsHangar.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdDivisionsOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdDivisionsWallet.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdFacilities200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdFwStatsKills.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdFwStatsOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdFwStatsVictoryPoints.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdIconsNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdIconsOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdIndustryJobs200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdKillmailsRecent200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdMedals200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdMedalsIssued200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdMembersTitles200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdMembertracking200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdOrders200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdOrdersHistory200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdOutpostsOutpostIdCoordinates.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdOutpostsOutpostIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdOutpostsOutpostIdService.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdRoles200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdRolesHistory200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdShareholders200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdStandings200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdStarbases200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdStarbasesStarbaseIdFuel.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdStarbasesStarbaseIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdStructures200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdStructuresService.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdTitles200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdWallets200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdWalletsDivisionJournal200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdWalletsDivisionJournalExtraInfo.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsCorporationIdWalletsDivisionTransactions200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getCorporationsNames200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getDogmaAttributesAttributeIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getDogmaAttributesAttributeIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getDogmaEffectsEffectIdModifier.ts delete mode 100755 src/app/eve-online-angular-client/model/getDogmaEffectsEffectIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getDogmaEffectsEffectIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getFleetsFleetIdMembers200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getFleetsFleetIdMembersNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getFleetsFleetIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getFleetsFleetIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getFleetsFleetIdWings200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getFleetsFleetIdWingsNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getFleetsFleetIdWingsSquad.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsActiveTotal.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsActiveTotal1.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersActiveTotal.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersActiveTotal1.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersKills.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersLastWeek.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersLastWeek1.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersVictoryPoints.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersYesterday.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersYesterday1.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsActiveTotal.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsActiveTotal1.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsKills.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsLastWeek.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsLastWeek1.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsVictoryPoints.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsYesterday.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsYesterday1.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsKills.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsLastWeek.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsLastWeek1.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsVictoryPoints.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsYesterday.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwLeaderboardsYesterday1.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwStats200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwStatsKills.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwStatsVictoryPoints.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwSystems200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getFwWars200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getIncursions200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getIndustryFacilities200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getIndustrySystems200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getIndustrySystemsCostIndice.ts delete mode 100755 src/app/eve-online-angular-client/model/getInsurancePrices200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getInsurancePricesLevel.ts delete mode 100755 src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashAttacker.ts delete mode 100755 src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashItem.ts delete mode 100755 src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashItem1.ts delete mode 100755 src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashPosition.ts delete mode 100755 src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashUnprocessableEntity.ts delete mode 100755 src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashVictim.ts delete mode 100755 src/app/eve-online-angular-client/model/getLoyaltyStoresCorporationIdOffers200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getLoyaltyStoresCorporationIdOffersNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getLoyaltyStoresCorporationIdOffersRequiredItem.ts delete mode 100755 src/app/eve-online-angular-client/model/getMarketsGroupsMarketGroupIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getMarketsGroupsMarketGroupIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getMarketsPrices200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getMarketsRegionIdHistory200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getMarketsRegionIdHistoryUnprocessableEntity.ts delete mode 100755 src/app/eve-online-angular-client/model/getMarketsRegionIdOrders200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getMarketsRegionIdOrdersUnprocessableEntity.ts delete mode 100755 src/app/eve-online-angular-client/model/getMarketsStructuresStructureId200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getOpportunitiesGroupsGroupIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getOpportunitiesTasksTaskIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getRouteOriginDestinationNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getSearchOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getSovereigntyCampaigns200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getSovereigntyCampaignsParticipant.ts delete mode 100755 src/app/eve-online-angular-client/model/getSovereigntyMap200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getSovereigntyStructures200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getStatusOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseAncestries200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseBloodlines200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseCategoriesCategoryIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseCategoriesCategoryIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseConstellationsConstellationIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseConstellationsConstellationIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseConstellationsConstellationIdPosition.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseFactions200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseGraphicsGraphicIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseGraphicsGraphicIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseGroupsGroupIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseGroupsGroupIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseMoonsMoonIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseMoonsMoonIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseMoonsMoonIdPosition.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniversePlanetsPlanetIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniversePlanetsPlanetIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniversePlanetsPlanetIdPosition.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseRaces200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseRegionsRegionIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseRegionsRegionIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseSchematicsSchematicIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseSchematicsSchematicIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseStargatesStargateIdDestination.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseStargatesStargateIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseStargatesStargateIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseStargatesStargateIdPosition.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseStarsStarIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseStationsStationIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseStationsStationIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseStationsStationIdPosition.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseStructuresStructureIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseStructuresStructureIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseStructuresStructureIdPosition.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseSystemJumps200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseSystemKills200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseSystemsSystemIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseSystemsSystemIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseSystemsSystemIdPlanet.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseSystemsSystemIdPosition.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseTypesTypeIdDogmaAttribute.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseTypesTypeIdDogmaEffect.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseTypesTypeIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/getUniverseTypesTypeIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getWarsWarIdAggressor.ts delete mode 100755 src/app/eve-online-angular-client/model/getWarsWarIdAlly.ts delete mode 100755 src/app/eve-online-angular-client/model/getWarsWarIdDefender.ts delete mode 100755 src/app/eve-online-angular-client/model/getWarsWarIdKillmails200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/getWarsWarIdKillmailsUnprocessableEntity.ts delete mode 100755 src/app/eve-online-angular-client/model/getWarsWarIdOk.ts delete mode 100755 src/app/eve-online-angular-client/model/getWarsWarIdUnprocessableEntity.ts delete mode 100755 src/app/eve-online-angular-client/model/internalServerError.ts delete mode 100755 src/app/eve-online-angular-client/model/models.ts delete mode 100755 src/app/eve-online-angular-client/model/postCharactersAffiliation200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/postCharactersAffiliationNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/postCharactersCharacterIdAssetsLocations200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/postCharactersCharacterIdAssetsLocationsPosition.ts delete mode 100755 src/app/eve-online-angular-client/model/postCharactersCharacterIdAssetsNames200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/postCharactersCharacterIdFittingsCreated.ts delete mode 100755 src/app/eve-online-angular-client/model/postCharactersCharacterIdFittingsFitting.ts delete mode 100755 src/app/eve-online-angular-client/model/postCharactersCharacterIdFittingsItem.ts delete mode 100755 src/app/eve-online-angular-client/model/postCharactersCharacterIdMailBadRequest.ts delete mode 100755 src/app/eve-online-angular-client/model/postCharactersCharacterIdMailLabelsLabel.ts delete mode 100755 src/app/eve-online-angular-client/model/postCharactersCharacterIdMailMail.ts delete mode 100755 src/app/eve-online-angular-client/model/postCharactersCharacterIdMailRecipient.ts delete mode 100755 src/app/eve-online-angular-client/model/postCorporationsCorporationIdAssetsLocations200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/postCorporationsCorporationIdAssetsLocationsPosition.ts delete mode 100755 src/app/eve-online-angular-client/model/postCorporationsCorporationIdAssetsNames200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/postFleetsFleetIdMembersInvitation.ts delete mode 100755 src/app/eve-online-angular-client/model/postFleetsFleetIdMembersNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/postFleetsFleetIdMembersUnprocessableEntity.ts delete mode 100755 src/app/eve-online-angular-client/model/postFleetsFleetIdWingsCreated.ts delete mode 100755 src/app/eve-online-angular-client/model/postFleetsFleetIdWingsNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/postFleetsFleetIdWingsWingIdSquadsCreated.ts delete mode 100755 src/app/eve-online-angular-client/model/postFleetsFleetIdWingsWingIdSquadsNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/postUiOpenwindowNewmailNewMail.ts delete mode 100755 src/app/eve-online-angular-client/model/postUiOpenwindowNewmailUnprocessableEntity.ts delete mode 100755 src/app/eve-online-angular-client/model/postUniverseIdsAgent.ts delete mode 100755 src/app/eve-online-angular-client/model/postUniverseIdsAlliance.ts delete mode 100755 src/app/eve-online-angular-client/model/postUniverseIdsCharacter.ts delete mode 100755 src/app/eve-online-angular-client/model/postUniverseIdsConstellation.ts delete mode 100755 src/app/eve-online-angular-client/model/postUniverseIdsCorporation.ts delete mode 100755 src/app/eve-online-angular-client/model/postUniverseIdsFaction.ts delete mode 100755 src/app/eve-online-angular-client/model/postUniverseIdsInventoryType.ts delete mode 100755 src/app/eve-online-angular-client/model/postUniverseIdsOk.ts delete mode 100755 src/app/eve-online-angular-client/model/postUniverseIdsRegion.ts delete mode 100755 src/app/eve-online-angular-client/model/postUniverseIdsServiceUnavailable.ts delete mode 100755 src/app/eve-online-angular-client/model/postUniverseIdsStation.ts delete mode 100755 src/app/eve-online-angular-client/model/postUniverseIdsSystem.ts delete mode 100755 src/app/eve-online-angular-client/model/postUniverseNames200Ok.ts delete mode 100755 src/app/eve-online-angular-client/model/postUniverseNamesNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/putCharactersCharacterIdCalendarEventIdResponse.ts delete mode 100755 src/app/eve-online-angular-client/model/putCharactersCharacterIdMailMailIdBadRequest.ts delete mode 100755 src/app/eve-online-angular-client/model/putCharactersCharacterIdMailMailIdContents.ts delete mode 100755 src/app/eve-online-angular-client/model/putFleetsFleetIdBadRequest.ts delete mode 100755 src/app/eve-online-angular-client/model/putFleetsFleetIdMembersMemberIdMovement.ts delete mode 100755 src/app/eve-online-angular-client/model/putFleetsFleetIdMembersMemberIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/putFleetsFleetIdMembersMemberIdUnprocessableEntity.ts delete mode 100755 src/app/eve-online-angular-client/model/putFleetsFleetIdNewSettings.ts delete mode 100755 src/app/eve-online-angular-client/model/putFleetsFleetIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/putFleetsFleetIdSquadsSquadIdNaming.ts delete mode 100755 src/app/eve-online-angular-client/model/putFleetsFleetIdSquadsSquadIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/model/putFleetsFleetIdWingsWingIdNaming.ts delete mode 100755 src/app/eve-online-angular-client/model/putFleetsFleetIdWingsWingIdNotFound.ts delete mode 100755 src/app/eve-online-angular-client/variables.ts diff --git a/package-lock.json b/package-lock.json index fbf2392..560cd57 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3147,6 +3147,11 @@ "estraverse": "4.2.0" } }, + "esi-client-angular": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/esi-client-angular/-/esi-client-angular-0.8.1.tgz", + "integrity": "sha512-kLo+gW+BtqppammXvJHVJqWetpFc2cliN9dULUxyZ/cgLMRLqbSAid8SAHSU0cMPqYUupPSzF7cnZjzA7syJGQ==" + }, "esprima": { "version": "2.7.3", "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", diff --git a/package.json b/package.json index 0d7ef85..7c7c3f4 100644 --- a/package.json +++ b/package.json @@ -26,6 +26,7 @@ "angular-laravel-echo": "^1.1.1", "angular2-jsonapi": "^5.0.0", "core-js": "^2.5.6", + "esi-client-angular": "^0.8.1", "hammerjs": "^2.0.8", "laravel-echo": "^1.3.5", "lodash": "^4.17.10", diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 28ee596..e7114e4 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -6,7 +6,7 @@ import { LoginComponent } from './components/login/login.component'; import { MenuComponent } from './components/menu/menu.component'; import { HeaderComponent } from './components/header/header.component'; import { SidebarComponent } from './components/sidebar/sidebar.component'; -import { ApiModule } from './eve-online-angular-client'; +import { ApiModule } from 'esi-client-angular'; import { AngularLaravelEchoModule } from 'angular-laravel-echo'; import { CardComponent } from './components/card/card.component'; import { CardHostDirective } from './directives/card-host.directive'; diff --git a/src/app/directives/card-host.directive.spec.ts b/src/app/directives/card-host.directive.spec.ts deleted file mode 100644 index ca1acbd..0000000 --- a/src/app/directives/card-host.directive.spec.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { CardHostDirective } from './card-host.directive'; - -describe('CardHostDirective', () => { - it('should create an instance', () => { - const directive = new CardHostDirective(); - expect(directive).toBeTruthy(); - }); -}); diff --git a/src/app/eve-online-angular-client/.gitignore b/src/app/eve-online-angular-client/.gitignore deleted file mode 100755 index 149b576..0000000 --- a/src/app/eve-online-angular-client/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -wwwroot/*.js -node_modules -typings -dist diff --git a/src/app/eve-online-angular-client/.swagger-codegen-ignore b/src/app/eve-online-angular-client/.swagger-codegen-ignore deleted file mode 100755 index c5fa491..0000000 --- a/src/app/eve-online-angular-client/.swagger-codegen-ignore +++ /dev/null @@ -1,23 +0,0 @@ -# Swagger Codegen Ignore -# Generated by swagger-codegen https://github.com/swagger-api/swagger-codegen - -# Use this file to prevent files from being overwritten by the generator. -# The patterns follow closely to .gitignore or .dockerignore. - -# As an example, the C# client generator defines ApiClient.cs. -# You can make changes and tell Swagger Codgen to ignore just this file by uncommenting the following line: -#ApiClient.cs - -# You can match any string of characters against a directory, file or extension with a single asterisk (*): -#foo/*/qux -# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux - -# You can recursively match patterns against a directory, file or extension with a double asterisk (**): -#foo/**/qux -# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux - -# You can also negate patterns with an exclamation (!). -# For example, you can ignore all files in a docs folder with the file extension .md: -#docs/*.md -# Then explicitly reverse the ignore rule for a single file: -#!docs/README.md diff --git a/src/app/eve-online-angular-client/.swagger-codegen/VERSION b/src/app/eve-online-angular-client/.swagger-codegen/VERSION deleted file mode 100755 index a625450..0000000 --- a/src/app/eve-online-angular-client/.swagger-codegen/VERSION +++ /dev/null @@ -1 +0,0 @@ -2.3.1 \ No newline at end of file diff --git a/src/app/eve-online-angular-client/api.module.ts b/src/app/eve-online-angular-client/api.module.ts deleted file mode 100755 index 3d38025..0000000 --- a/src/app/eve-online-angular-client/api.module.ts +++ /dev/null @@ -1,90 +0,0 @@ -import { NgModule, ModuleWithProviders, SkipSelf, Optional } from '@angular/core'; -import { CommonModule } from '@angular/common'; -import { HttpClientModule } from '@angular/common/http'; -import { Configuration } from './configuration'; - -import { AllianceService } from './api/alliance.service'; -import { AssetsService } from './api/assets.service'; -import { BookmarksService } from './api/bookmarks.service'; -import { CalendarService } from './api/calendar.service'; -import { CharacterService } from './api/character.service'; -import { ClonesService } from './api/clones.service'; -import { ContactsService } from './api/contacts.service'; -import { ContractsService } from './api/contracts.service'; -import { CorporationService } from './api/corporation.service'; -import { DogmaService } from './api/dogma.service'; -import { FactionWarfareService } from './api/factionWarfare.service'; -import { FittingsService } from './api/fittings.service'; -import { FleetsService } from './api/fleets.service'; -import { IncursionsService } from './api/incursions.service'; -import { IndustryService } from './api/industry.service'; -import { InsuranceService } from './api/insurance.service'; -import { KillmailsService } from './api/killmails.service'; -import { LocationService } from './api/location.service'; -import { LoyaltyService } from './api/loyalty.service'; -import { MailService } from './api/mail.service'; -import { MarketService } from './api/market.service'; -import { OpportunitiesService } from './api/opportunities.service'; -import { PlanetaryInteractionService } from './api/planetaryInteraction.service'; -import { RoutesService } from './api/routes.service'; -import { SearchService } from './api/search.service'; -import { SkillsService } from './api/skills.service'; -import { SovereigntyService } from './api/sovereignty.service'; -import { StatusService } from './api/status.service'; -import { UniverseService } from './api/universe.service'; -import { UserInterfaceService } from './api/userInterface.service'; -import { WalletService } from './api/wallet.service'; -import { WarsService } from './api/wars.service'; - -@NgModule({ - imports: [ CommonModule, HttpClientModule ], - declarations: [], - exports: [], - providers: [ - AllianceService, - AssetsService, - BookmarksService, - CalendarService, - CharacterService, - ClonesService, - ContactsService, - ContractsService, - CorporationService, - DogmaService, - FactionWarfareService, - FittingsService, - FleetsService, - IncursionsService, - IndustryService, - InsuranceService, - KillmailsService, - LocationService, - LoyaltyService, - MailService, - MarketService, - OpportunitiesService, - PlanetaryInteractionService, - RoutesService, - SearchService, - SkillsService, - SovereigntyService, - StatusService, - UniverseService, - UserInterfaceService, - WalletService, - WarsService ] -}) -export class ApiModule { - public static forRoot(configurationFactory: () => Configuration): ModuleWithProviders { - return { - ngModule: ApiModule, - providers: [ { provide: Configuration, useFactory: configurationFactory } ] - } - } - - constructor( @Optional() @SkipSelf() parentModule: ApiModule) { - if (parentModule) { - throw new Error('ApiModule is already loaded. Import your base AppModule only.'); - } - } -} diff --git a/src/app/eve-online-angular-client/api/alliance.service.ts b/src/app/eve-online-angular-client/api/alliance.service.ts deleted file mode 100755 index cc64829..0000000 --- a/src/app/eve-online-angular-client/api/alliance.service.ts +++ /dev/null @@ -1,338 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { GetAlliancesAllianceIdIconsNotFound } from '../model/getAlliancesAllianceIdIconsNotFound'; -import { GetAlliancesAllianceIdIconsOk } from '../model/getAlliancesAllianceIdIconsOk'; -import { GetAlliancesAllianceIdNotFound } from '../model/getAlliancesAllianceIdNotFound'; -import { GetAlliancesAllianceIdOk } from '../model/getAlliancesAllianceIdOk'; -import { GetAlliancesNames200Ok } from '../model/getAlliancesNames200Ok'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class AllianceService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * List all alliances - * List all active player alliances --- Alternate route: `/dev/alliances/` Alternate route: `/legacy/alliances/` Alternate route: `/v1/alliances/` --- This route is cached for up to 3600 seconds - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getAlliances(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getAlliances(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getAlliances(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getAlliances(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/alliances/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get alliance information - * Public information about an alliance --- Alternate route: `/dev/alliances/{alliance_id}/` Alternate route: `/v3/alliances/{alliance_id}/` --- This route is cached for up to 3600 seconds - * @param allianceId An EVE alliance ID - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getAlliancesAllianceId(allianceId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getAlliancesAllianceId(allianceId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getAlliancesAllianceId(allianceId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getAlliancesAllianceId(allianceId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (allianceId === null || allianceId === undefined) { - throw new Error('Required parameter allianceId was null or undefined when calling getAlliancesAllianceId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/alliances/${encodeURIComponent(String(allianceId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List alliance's corporations - * List all current member corporations of an alliance --- Alternate route: `/dev/alliances/{alliance_id}/corporations/` Alternate route: `/legacy/alliances/{alliance_id}/corporations/` Alternate route: `/v1/alliances/{alliance_id}/corporations/` --- This route is cached for up to 3600 seconds - * @param allianceId An EVE alliance ID - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getAlliancesAllianceIdCorporations(allianceId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getAlliancesAllianceIdCorporations(allianceId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getAlliancesAllianceIdCorporations(allianceId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getAlliancesAllianceIdCorporations(allianceId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (allianceId === null || allianceId === undefined) { - throw new Error('Required parameter allianceId was null or undefined when calling getAlliancesAllianceIdCorporations.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/alliances/${encodeURIComponent(String(allianceId))}/corporations/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get alliance icon - * Get the icon urls for a alliance --- Alternate route: `/dev/alliances/{alliance_id}/icons/` Alternate route: `/legacy/alliances/{alliance_id}/icons/` Alternate route: `/v1/alliances/{alliance_id}/icons/` --- This route is cached for up to 3600 seconds - * @param allianceId An EVE alliance ID - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getAlliancesAllianceIdIcons(allianceId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getAlliancesAllianceIdIcons(allianceId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getAlliancesAllianceIdIcons(allianceId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getAlliancesAllianceIdIcons(allianceId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (allianceId === null || allianceId === undefined) { - throw new Error('Required parameter allianceId was null or undefined when calling getAlliancesAllianceIdIcons.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/alliances/${encodeURIComponent(String(allianceId))}/icons/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get alliance names - * Resolve a set of alliance IDs to alliance names --- Alternate route: `/dev/alliances/names/` Alternate route: `/v2/alliances/names/` --- This route is cached for up to 3600 seconds - * @param allianceIds A comma separated list of alliance IDs - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getAlliancesNames(allianceIds: Array, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getAlliancesNames(allianceIds: Array, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getAlliancesNames(allianceIds: Array, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getAlliancesNames(allianceIds: Array, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (allianceIds === null || allianceIds === undefined) { - throw new Error('Required parameter allianceIds was null or undefined when calling getAlliancesNames.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (allianceIds) { - queryParameters = queryParameters.set('alliance_ids', allianceIds.join(COLLECTION_FORMATS['csv'])); - } - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/alliances/names/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/api.ts b/src/app/eve-online-angular-client/api/api.ts deleted file mode 100755 index 7bf6e8d..0000000 --- a/src/app/eve-online-angular-client/api/api.ts +++ /dev/null @@ -1,65 +0,0 @@ -export * from './alliance.service'; -import { AllianceService } from './alliance.service'; -export * from './assets.service'; -import { AssetsService } from './assets.service'; -export * from './bookmarks.service'; -import { BookmarksService } from './bookmarks.service'; -export * from './calendar.service'; -import { CalendarService } from './calendar.service'; -export * from './character.service'; -import { CharacterService } from './character.service'; -export * from './clones.service'; -import { ClonesService } from './clones.service'; -export * from './contacts.service'; -import { ContactsService } from './contacts.service'; -export * from './contracts.service'; -import { ContractsService } from './contracts.service'; -export * from './corporation.service'; -import { CorporationService } from './corporation.service'; -export * from './dogma.service'; -import { DogmaService } from './dogma.service'; -export * from './factionWarfare.service'; -import { FactionWarfareService } from './factionWarfare.service'; -export * from './fittings.service'; -import { FittingsService } from './fittings.service'; -export * from './fleets.service'; -import { FleetsService } from './fleets.service'; -export * from './incursions.service'; -import { IncursionsService } from './incursions.service'; -export * from './industry.service'; -import { IndustryService } from './industry.service'; -export * from './insurance.service'; -import { InsuranceService } from './insurance.service'; -export * from './killmails.service'; -import { KillmailsService } from './killmails.service'; -export * from './location.service'; -import { LocationService } from './location.service'; -export * from './loyalty.service'; -import { LoyaltyService } from './loyalty.service'; -export * from './mail.service'; -import { MailService } from './mail.service'; -export * from './market.service'; -import { MarketService } from './market.service'; -export * from './opportunities.service'; -import { OpportunitiesService } from './opportunities.service'; -export * from './planetaryInteraction.service'; -import { PlanetaryInteractionService } from './planetaryInteraction.service'; -export * from './routes.service'; -import { RoutesService } from './routes.service'; -export * from './search.service'; -import { SearchService } from './search.service'; -export * from './skills.service'; -import { SkillsService } from './skills.service'; -export * from './sovereignty.service'; -import { SovereigntyService } from './sovereignty.service'; -export * from './status.service'; -import { StatusService } from './status.service'; -export * from './universe.service'; -import { UniverseService } from './universe.service'; -export * from './userInterface.service'; -import { UserInterfaceService } from './userInterface.service'; -export * from './wallet.service'; -import { WalletService } from './wallet.service'; -export * from './wars.service'; -import { WarsService } from './wars.service'; -export const APIS = [AllianceService, AssetsService, BookmarksService, CalendarService, CharacterService, ClonesService, ContactsService, ContractsService, CorporationService, DogmaService, FactionWarfareService, FittingsService, FleetsService, IncursionsService, IndustryService, InsuranceService, KillmailsService, LocationService, LoyaltyService, MailService, MarketService, OpportunitiesService, PlanetaryInteractionService, RoutesService, SearchService, SkillsService, SovereigntyService, StatusService, UniverseService, UserInterfaceService, WalletService, WarsService]; diff --git a/src/app/eve-online-angular-client/api/assets.service.ts b/src/app/eve-online-angular-client/api/assets.service.ts deleted file mode 100755 index 49dce92..0000000 --- a/src/app/eve-online-angular-client/api/assets.service.ts +++ /dev/null @@ -1,512 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { Forbidden } from '../model/forbidden'; -import { GetCharactersCharacterIdAssets200Ok } from '../model/getCharactersCharacterIdAssets200Ok'; -import { GetCorporationsCorporationIdAssets200Ok } from '../model/getCorporationsCorporationIdAssets200Ok'; -import { InternalServerError } from '../model/internalServerError'; -import { PostCharactersCharacterIdAssetsLocations200Ok } from '../model/postCharactersCharacterIdAssetsLocations200Ok'; -import { PostCharactersCharacterIdAssetsNames200Ok } from '../model/postCharactersCharacterIdAssetsNames200Ok'; -import { PostCorporationsCorporationIdAssetsLocations200Ok } from '../model/postCorporationsCorporationIdAssetsLocations200Ok'; -import { PostCorporationsCorporationIdAssetsNames200Ok } from '../model/postCorporationsCorporationIdAssetsNames200Ok'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class AssetsService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Get character assets - * Return a list of the characters assets --- Alternate route: `/dev/characters/{character_id}/assets/` Alternate route: `/v3/characters/{character_id}/assets/` --- This route is cached for up to 3600 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdAssets(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdAssets(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdAssets(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdAssets(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdAssets.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/assets/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation assets - * Return a list of the corporation assets --- Alternate route: `/dev/corporations/{corporation_id}/assets/` Alternate route: `/v3/corporations/{corporation_id}/assets/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdAssets(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdAssets(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdAssets(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdAssets(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdAssets.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/assets/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get character asset locations - * Return locations for a set of item ids, which you can get from character assets endpoint. Coordinates for items in hangars or stations are set to (0,0,0) --- Alternate route: `/dev/characters/{character_id}/assets/locations/` Alternate route: `/v2/characters/{character_id}/assets/locations/` - * @param characterId An EVE character ID - * @param itemIds A list of item ids - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public postCharactersCharacterIdAssetsLocations(characterId: number, itemIds: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public postCharactersCharacterIdAssetsLocations(characterId: number, itemIds: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public postCharactersCharacterIdAssetsLocations(characterId: number, itemIds: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public postCharactersCharacterIdAssetsLocations(characterId: number, itemIds: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling postCharactersCharacterIdAssetsLocations.'); - } - if (itemIds === null || itemIds === undefined) { - throw new Error('Required parameter itemIds was null or undefined when calling postCharactersCharacterIdAssetsLocations.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - let httpContentTypeSelected:string | undefined = this.configuration.selectHeaderContentType(consumes); - if (httpContentTypeSelected != undefined) { - headers = headers.set("Content-Type", httpContentTypeSelected); - } - - return this.httpClient.post>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/assets/locations/`, - itemIds, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get character asset names - * Return names for a set of item ids, which you can get from character assets endpoint. Typically used for items that can customize names, like containers or ships. --- Alternate route: `/dev/characters/{character_id}/assets/names/` Alternate route: `/legacy/characters/{character_id}/assets/names/` Alternate route: `/v1/characters/{character_id}/assets/names/` - * @param characterId An EVE character ID - * @param itemIds A list of item ids - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public postCharactersCharacterIdAssetsNames(characterId: number, itemIds: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public postCharactersCharacterIdAssetsNames(characterId: number, itemIds: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public postCharactersCharacterIdAssetsNames(characterId: number, itemIds: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public postCharactersCharacterIdAssetsNames(characterId: number, itemIds: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling postCharactersCharacterIdAssetsNames.'); - } - if (itemIds === null || itemIds === undefined) { - throw new Error('Required parameter itemIds was null or undefined when calling postCharactersCharacterIdAssetsNames.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - let httpContentTypeSelected:string | undefined = this.configuration.selectHeaderContentType(consumes); - if (httpContentTypeSelected != undefined) { - headers = headers.set("Content-Type", httpContentTypeSelected); - } - - return this.httpClient.post>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/assets/names/`, - itemIds, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation asset locations - * Return locations for a set of item ids, which you can get from corporation assets endpoint. Coordinates for items in hangars or stations are set to (0,0,0) --- Alternate route: `/dev/corporations/{corporation_id}/assets/locations/` Alternate route: `/v2/corporations/{corporation_id}/assets/locations/` --- Requires one of the following EVE corporation role(s): Director - * @param corporationId An EVE corporation ID - * @param itemIds A list of item ids - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public postCorporationsCorporationIdAssetsLocations(corporationId: number, itemIds: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public postCorporationsCorporationIdAssetsLocations(corporationId: number, itemIds: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public postCorporationsCorporationIdAssetsLocations(corporationId: number, itemIds: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public postCorporationsCorporationIdAssetsLocations(corporationId: number, itemIds: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling postCorporationsCorporationIdAssetsLocations.'); - } - if (itemIds === null || itemIds === undefined) { - throw new Error('Required parameter itemIds was null or undefined when calling postCorporationsCorporationIdAssetsLocations.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - let httpContentTypeSelected:string | undefined = this.configuration.selectHeaderContentType(consumes); - if (httpContentTypeSelected != undefined) { - headers = headers.set("Content-Type", httpContentTypeSelected); - } - - return this.httpClient.post>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/assets/locations/`, - itemIds, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get coporation asset names - * Return names for a set of item ids, which you can get from corporation assets endpoint. Only valid for items that can customize names, like containers or ships. --- Alternate route: `/dev/corporations/{corporation_id}/assets/names/` Alternate route: `/legacy/corporations/{corporation_id}/assets/names/` Alternate route: `/v1/corporations/{corporation_id}/assets/names/` --- Requires one of the following EVE corporation role(s): Director - * @param corporationId An EVE corporation ID - * @param itemIds A list of item ids - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public postCorporationsCorporationIdAssetsNames(corporationId: number, itemIds: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public postCorporationsCorporationIdAssetsNames(corporationId: number, itemIds: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public postCorporationsCorporationIdAssetsNames(corporationId: number, itemIds: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public postCorporationsCorporationIdAssetsNames(corporationId: number, itemIds: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling postCorporationsCorporationIdAssetsNames.'); - } - if (itemIds === null || itemIds === undefined) { - throw new Error('Required parameter itemIds was null or undefined when calling postCorporationsCorporationIdAssetsNames.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - let httpContentTypeSelected:string | undefined = this.configuration.selectHeaderContentType(consumes); - if (httpContentTypeSelected != undefined) { - headers = headers.set("Content-Type", httpContentTypeSelected); - } - - return this.httpClient.post>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/assets/names/`, - itemIds, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/bookmarks.service.ts b/src/app/eve-online-angular-client/api/bookmarks.service.ts deleted file mode 100755 index 39b2953..0000000 --- a/src/app/eve-online-angular-client/api/bookmarks.service.ts +++ /dev/null @@ -1,348 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { Forbidden } from '../model/forbidden'; -import { GetCharactersCharacterIdBookmarks200Ok } from '../model/getCharactersCharacterIdBookmarks200Ok'; -import { GetCharactersCharacterIdBookmarksFolders200Ok } from '../model/getCharactersCharacterIdBookmarksFolders200Ok'; -import { GetCorporationsCorporationIdBookmarks200Ok } from '../model/getCorporationsCorporationIdBookmarks200Ok'; -import { GetCorporationsCorporationIdBookmarksFolders200Ok } from '../model/getCorporationsCorporationIdBookmarksFolders200Ok'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class BookmarksService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * List bookmarks - * A list of your character's personal bookmarks --- Alternate route: `/dev/characters/{character_id}/bookmarks/` Alternate route: `/v2/characters/{character_id}/bookmarks/` --- This route is cached for up to 3600 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdBookmarks(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdBookmarks(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdBookmarks(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdBookmarks(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdBookmarks.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/bookmarks/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List bookmark folders - * A list of your character's personal bookmark folders --- Alternate route: `/dev/characters/{character_id}/bookmarks/folders/` Alternate route: `/v2/characters/{character_id}/bookmarks/folders/` --- This route is cached for up to 3600 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdBookmarksFolders(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdBookmarksFolders(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdBookmarksFolders(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdBookmarksFolders(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdBookmarksFolders.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/bookmarks/folders/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List corporation bookmarks - * A list of your corporation's bookmarks --- Alternate route: `/dev/corporations/{corporation_id}/bookmarks/` Alternate route: `/legacy/corporations/{corporation_id}/bookmarks/` Alternate route: `/v1/corporations/{corporation_id}/bookmarks/` --- This route is cached for up to 3600 seconds - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdBookmarks(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdBookmarks(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdBookmarks(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdBookmarks(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdBookmarks.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/bookmarks/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List corporation bookmark folders - * A list of your corporation's bookmark folders --- Alternate route: `/dev/corporations/{corporation_id}/bookmarks/folders/` Alternate route: `/legacy/corporations/{corporation_id}/bookmarks/folders/` Alternate route: `/v1/corporations/{corporation_id}/bookmarks/folders/` --- This route is cached for up to 3600 seconds - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdBookmarksFolders(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdBookmarksFolders(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdBookmarksFolders(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdBookmarksFolders(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdBookmarksFolders.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/bookmarks/folders/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/calendar.service.ts b/src/app/eve-online-angular-client/api/calendar.service.ts deleted file mode 100755 index c3251f7..0000000 --- a/src/app/eve-online-angular-client/api/calendar.service.ts +++ /dev/null @@ -1,357 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { Forbidden } from '../model/forbidden'; -import { GetCharactersCharacterIdCalendar200Ok } from '../model/getCharactersCharacterIdCalendar200Ok'; -import { GetCharactersCharacterIdCalendarEventIdAttendees200Ok } from '../model/getCharactersCharacterIdCalendarEventIdAttendees200Ok'; -import { GetCharactersCharacterIdCalendarEventIdOk } from '../model/getCharactersCharacterIdCalendarEventIdOk'; -import { InternalServerError } from '../model/internalServerError'; -import { PutCharactersCharacterIdCalendarEventIdResponse } from '../model/putCharactersCharacterIdCalendarEventIdResponse'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class CalendarService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * List calendar event summaries - * Get 50 event summaries from the calendar. If no from_event ID is given, the resource will return the next 50 chronological event summaries from now. If a from_event ID is specified, it will return the next 50 chronological event summaries from after that event. --- Alternate route: `/dev/characters/{character_id}/calendar/` Alternate route: `/legacy/characters/{character_id}/calendar/` Alternate route: `/v1/characters/{character_id}/calendar/` --- This route is cached for up to 5 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param fromEvent The event ID to retrieve events from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdCalendar(characterId: number, datasource?: string, fromEvent?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdCalendar(characterId: number, datasource?: string, fromEvent?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdCalendar(characterId: number, datasource?: string, fromEvent?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdCalendar(characterId: number, datasource?: string, fromEvent?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdCalendar.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (fromEvent !== undefined) { - queryParameters = queryParameters.set('from_event', fromEvent); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/calendar/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get an event - * Get all the information for a specific event --- Alternate route: `/dev/characters/{character_id}/calendar/{event_id}/` Alternate route: `/v3/characters/{character_id}/calendar/{event_id}/` --- This route is cached for up to 5 seconds - * @param characterId An EVE character ID - * @param eventId The id of the event requested - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdCalendarEventId(characterId: number, eventId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCharactersCharacterIdCalendarEventId(characterId: number, eventId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdCalendarEventId(characterId: number, eventId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdCalendarEventId(characterId: number, eventId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdCalendarEventId.'); - } - if (eventId === null || eventId === undefined) { - throw new Error('Required parameter eventId was null or undefined when calling getCharactersCharacterIdCalendarEventId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/calendar/${encodeURIComponent(String(eventId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get attendees - * Get all invited attendees for a given event --- Alternate route: `/dev/characters/{character_id}/calendar/{event_id}/attendees/` Alternate route: `/legacy/characters/{character_id}/calendar/{event_id}/attendees/` Alternate route: `/v1/characters/{character_id}/calendar/{event_id}/attendees/` --- This route is cached for up to 600 seconds - * @param characterId An EVE character ID - * @param eventId The id of the event requested - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdCalendarEventIdAttendees(characterId: number, eventId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdCalendarEventIdAttendees(characterId: number, eventId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdCalendarEventIdAttendees(characterId: number, eventId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdCalendarEventIdAttendees(characterId: number, eventId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdCalendarEventIdAttendees.'); - } - if (eventId === null || eventId === undefined) { - throw new Error('Required parameter eventId was null or undefined when calling getCharactersCharacterIdCalendarEventIdAttendees.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/calendar/${encodeURIComponent(String(eventId))}/attendees/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Respond to an event - * Set your response status to an event --- Alternate route: `/dev/characters/{character_id}/calendar/{event_id}/` Alternate route: `/v3/characters/{character_id}/calendar/{event_id}/` - * @param characterId An EVE character ID - * @param eventId The ID of the event requested - * @param response The response value to set, overriding current value. - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public putCharactersCharacterIdCalendarEventId(characterId: number, eventId: number, response: PutCharactersCharacterIdCalendarEventIdResponse, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public putCharactersCharacterIdCalendarEventId(characterId: number, eventId: number, response: PutCharactersCharacterIdCalendarEventIdResponse, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public putCharactersCharacterIdCalendarEventId(characterId: number, eventId: number, response: PutCharactersCharacterIdCalendarEventIdResponse, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public putCharactersCharacterIdCalendarEventId(characterId: number, eventId: number, response: PutCharactersCharacterIdCalendarEventIdResponse, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling putCharactersCharacterIdCalendarEventId.'); - } - if (eventId === null || eventId === undefined) { - throw new Error('Required parameter eventId was null or undefined when calling putCharactersCharacterIdCalendarEventId.'); - } - if (response === null || response === undefined) { - throw new Error('Required parameter response was null or undefined when calling putCharactersCharacterIdCalendarEventId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - let httpContentTypeSelected:string | undefined = this.configuration.selectHeaderContentType(consumes); - if (httpContentTypeSelected != undefined) { - headers = headers.set("Content-Type", httpContentTypeSelected); - } - - return this.httpClient.put(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/calendar/${encodeURIComponent(String(eventId))}/`, - response, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/character.service.ts b/src/app/eve-online-angular-client/api/character.service.ts deleted file mode 100755 index 727641d..0000000 --- a/src/app/eve-online-angular-client/api/character.service.ts +++ /dev/null @@ -1,1179 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { Forbidden } from '../model/forbidden'; -import { GetCharactersCharacterIdAgentsResearch200Ok } from '../model/getCharactersCharacterIdAgentsResearch200Ok'; -import { GetCharactersCharacterIdBlueprints200Ok } from '../model/getCharactersCharacterIdBlueprints200Ok'; -import { GetCharactersCharacterIdChatChannels200Ok } from '../model/getCharactersCharacterIdChatChannels200Ok'; -import { GetCharactersCharacterIdCorporationhistory200Ok } from '../model/getCharactersCharacterIdCorporationhistory200Ok'; -import { GetCharactersCharacterIdFatigueOk } from '../model/getCharactersCharacterIdFatigueOk'; -import { GetCharactersCharacterIdMedals200Ok } from '../model/getCharactersCharacterIdMedals200Ok'; -import { GetCharactersCharacterIdNotFound } from '../model/getCharactersCharacterIdNotFound'; -import { GetCharactersCharacterIdNotifications200Ok } from '../model/getCharactersCharacterIdNotifications200Ok'; -import { GetCharactersCharacterIdNotificationsContacts200Ok } from '../model/getCharactersCharacterIdNotificationsContacts200Ok'; -import { GetCharactersCharacterIdOk } from '../model/getCharactersCharacterIdOk'; -import { GetCharactersCharacterIdPortraitNotFound } from '../model/getCharactersCharacterIdPortraitNotFound'; -import { GetCharactersCharacterIdPortraitOk } from '../model/getCharactersCharacterIdPortraitOk'; -import { GetCharactersCharacterIdRolesOk } from '../model/getCharactersCharacterIdRolesOk'; -import { GetCharactersCharacterIdStandings200Ok } from '../model/getCharactersCharacterIdStandings200Ok'; -import { GetCharactersCharacterIdStats200Ok } from '../model/getCharactersCharacterIdStats200Ok'; -import { GetCharactersCharacterIdTitles200Ok } from '../model/getCharactersCharacterIdTitles200Ok'; -import { GetCharactersNames200Ok } from '../model/getCharactersNames200Ok'; -import { InternalServerError } from '../model/internalServerError'; -import { PostCharactersAffiliation200Ok } from '../model/postCharactersAffiliation200Ok'; -import { PostCharactersAffiliationNotFound } from '../model/postCharactersAffiliationNotFound'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class CharacterService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Get character's public information - * Public information about a character --- Alternate route: `/dev/characters/{character_id}/` Alternate route: `/v4/characters/{character_id}/` --- This route is cached for up to 3600 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterId(characterId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCharactersCharacterId(characterId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCharactersCharacterId(characterId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCharactersCharacterId(characterId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get agents research - * Return a list of agents research information for a character. The formula for finding the current research points with an agent is: currentPoints = remainderPoints + pointsPerDay * days(currentTime - researchStartDate) --- Alternate route: `/dev/characters/{character_id}/agents_research/` Alternate route: `/legacy/characters/{character_id}/agents_research/` Alternate route: `/v1/characters/{character_id}/agents_research/` --- This route is cached for up to 3600 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdAgentsResearch(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdAgentsResearch(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdAgentsResearch(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdAgentsResearch(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdAgentsResearch.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/agents_research/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get blueprints - * Return a list of blueprints the character owns --- Alternate route: `/dev/characters/{character_id}/blueprints/` Alternate route: `/v2/characters/{character_id}/blueprints/` --- This route is cached for up to 3600 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdBlueprints(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdBlueprints(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdBlueprints(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdBlueprints(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdBlueprints.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/blueprints/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get chat channels - * Return chat channels that a character is the owner or operator of --- Alternate route: `/dev/characters/{character_id}/chat_channels/` Alternate route: `/legacy/characters/{character_id}/chat_channels/` Alternate route: `/v1/characters/{character_id}/chat_channels/` --- This route is cached for up to 300 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdChatChannels(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdChatChannels(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdChatChannels(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdChatChannels(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdChatChannels.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/chat_channels/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation history - * Get a list of all the corporations a character has been a member of --- Alternate route: `/dev/characters/{character_id}/corporationhistory/` Alternate route: `/legacy/characters/{character_id}/corporationhistory/` Alternate route: `/v1/characters/{character_id}/corporationhistory/` --- This route is cached for up to 3600 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdCorporationhistory(characterId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdCorporationhistory(characterId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdCorporationhistory(characterId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdCorporationhistory(characterId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdCorporationhistory.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/corporationhistory/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get jump fatigue - * Return a character's jump activation and fatigue information --- Alternate route: `/dev/characters/{character_id}/fatigue/` Alternate route: `/legacy/characters/{character_id}/fatigue/` Alternate route: `/v1/characters/{character_id}/fatigue/` --- This route is cached for up to 300 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdFatigue(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCharactersCharacterIdFatigue(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdFatigue(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdFatigue(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdFatigue.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/fatigue/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get medals - * Return a list of medals the character has --- Alternate route: `/dev/characters/{character_id}/medals/` Alternate route: `/legacy/characters/{character_id}/medals/` Alternate route: `/v1/characters/{character_id}/medals/` --- This route is cached for up to 3600 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdMedals(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdMedals(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdMedals(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdMedals(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdMedals.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/medals/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get character notifications - * Return character notifications --- Alternate route: `/dev/characters/{character_id}/notifications/` Alternate route: `/v2/characters/{character_id}/notifications/` --- This route is cached for up to 600 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdNotifications(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdNotifications(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdNotifications(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdNotifications(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdNotifications.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/notifications/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get new contact notifications - * Return notifications about having been added to someone's contact list --- Alternate route: `/dev/characters/{character_id}/notifications/contacts/` Alternate route: `/legacy/characters/{character_id}/notifications/contacts/` Alternate route: `/v1/characters/{character_id}/notifications/contacts/` --- This route is cached for up to 600 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdNotificationsContacts(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdNotificationsContacts(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdNotificationsContacts(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdNotificationsContacts(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdNotificationsContacts.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/notifications/contacts/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get character portraits - * Get portrait urls for a character --- Alternate route: `/dev/characters/{character_id}/portrait/` Alternate route: `/v2/characters/{character_id}/portrait/` --- This route is cached for up to 3600 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdPortrait(characterId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCharactersCharacterIdPortrait(characterId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdPortrait(characterId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdPortrait(characterId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdPortrait.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/portrait/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get character corporation roles - * Returns a character's corporation roles --- Alternate route: `/dev/characters/{character_id}/roles/` Alternate route: `/v2/characters/{character_id}/roles/` --- This route is cached for up to 3600 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdRoles(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCharactersCharacterIdRoles(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdRoles(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdRoles(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdRoles.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/roles/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get standings - * Return character standings from agents, NPC corporations, and factions --- Alternate route: `/dev/characters/{character_id}/standings/` Alternate route: `/legacy/characters/{character_id}/standings/` Alternate route: `/v1/characters/{character_id}/standings/` --- This route is cached for up to 3600 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdStandings(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdStandings(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdStandings(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdStandings(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdStandings.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/standings/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Yearly aggregate stats - * Returns aggregate yearly stats for a character --- Alternate route: `/dev/characters/{character_id}/stats/` Alternate route: `/v2/characters/{character_id}/stats/` --- This route is cached for up to 86400 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdStats(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdStats(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdStats(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdStats(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdStats.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/stats/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get character corporation titles - * Returns a character's titles --- Alternate route: `/dev/characters/{character_id}/titles/` Alternate route: `/legacy/characters/{character_id}/titles/` Alternate route: `/v1/characters/{character_id}/titles/` --- This route is cached for up to 3600 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdTitles(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdTitles(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdTitles(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdTitles(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdTitles.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/titles/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get character names - * Resolve a set of character IDs to character names --- Alternate route: `/dev/characters/names/` Alternate route: `/legacy/characters/names/` Alternate route: `/v1/characters/names/` --- This route is cached for up to 3600 seconds - * @param characterIds A comma separated list of character IDs - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersNames(characterIds: Array, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersNames(characterIds: Array, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersNames(characterIds: Array, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersNames(characterIds: Array, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterIds === null || characterIds === undefined) { - throw new Error('Required parameter characterIds was null or undefined when calling getCharactersNames.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (characterIds) { - queryParameters = queryParameters.set('character_ids', characterIds.join(COLLECTION_FORMATS['csv'])); - } - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/names/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Character affiliation - * Bulk lookup of character IDs to corporation, alliance and faction --- Alternate route: `/dev/characters/affiliation/` Alternate route: `/legacy/characters/affiliation/` Alternate route: `/v1/characters/affiliation/` --- This route is cached for up to 3600 seconds - * @param characters The character IDs to fetch affiliations for. All characters must exist, or none will be returned. - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public postCharactersAffiliation(characters: Array, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public postCharactersAffiliation(characters: Array, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public postCharactersAffiliation(characters: Array, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public postCharactersAffiliation(characters: Array, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characters === null || characters === undefined) { - throw new Error('Required parameter characters was null or undefined when calling postCharactersAffiliation.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - let httpContentTypeSelected:string | undefined = this.configuration.selectHeaderContentType(consumes); - if (httpContentTypeSelected != undefined) { - headers = headers.set("Content-Type", httpContentTypeSelected); - } - - return this.httpClient.post>(`${this.basePath}/characters/affiliation/`, - characters, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Calculate a CSPA charge cost - * Takes a source character ID in the url and a set of target character ID's in the body, returns a CSPA charge cost --- Alternate route: `/dev/characters/{character_id}/cspa/` Alternate route: `/v4/characters/{character_id}/cspa/` - * @param characterId An EVE character ID - * @param characters The target characters to calculate the charge for - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public postCharactersCharacterIdCspa(characterId: number, characters: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public postCharactersCharacterIdCspa(characterId: number, characters: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public postCharactersCharacterIdCspa(characterId: number, characters: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public postCharactersCharacterIdCspa(characterId: number, characters: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling postCharactersCharacterIdCspa.'); - } - if (characters === null || characters === undefined) { - throw new Error('Required parameter characters was null or undefined when calling postCharactersCharacterIdCspa.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - let httpContentTypeSelected:string | undefined = this.configuration.selectHeaderContentType(consumes); - if (httpContentTypeSelected != undefined) { - headers = headers.set("Content-Type", httpContentTypeSelected); - } - - return this.httpClient.post(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/cspa/`, - characters, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/clones.service.ts b/src/app/eve-online-angular-client/api/clones.service.ts deleted file mode 100755 index f25cce8..0000000 --- a/src/app/eve-online-angular-client/api/clones.service.ts +++ /dev/null @@ -1,195 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { Forbidden } from '../model/forbidden'; -import { GetCharactersCharacterIdClonesOk } from '../model/getCharactersCharacterIdClonesOk'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class ClonesService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Get clones - * A list of the character's clones --- Alternate route: `/dev/characters/{character_id}/clones/` Alternate route: `/v3/characters/{character_id}/clones/` --- This route is cached for up to 120 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdClones(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCharactersCharacterIdClones(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdClones(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdClones(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdClones.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/clones/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get active implants - * Return implants on the active clone of a character --- Alternate route: `/dev/characters/{character_id}/implants/` Alternate route: `/legacy/characters/{character_id}/implants/` Alternate route: `/v1/characters/{character_id}/implants/` --- This route is cached for up to 300 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdImplants(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdImplants(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdImplants(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdImplants(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdImplants.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/implants/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/contacts.service.ts b/src/app/eve-online-angular-client/api/contacts.service.ts deleted file mode 100755 index 60f4160..0000000 --- a/src/app/eve-online-angular-client/api/contacts.service.ts +++ /dev/null @@ -1,600 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { Forbidden } from '../model/forbidden'; -import { GetAlliancesAllianceIdContacts200Ok } from '../model/getAlliancesAllianceIdContacts200Ok'; -import { GetCharactersCharacterIdContacts200Ok } from '../model/getCharactersCharacterIdContacts200Ok'; -import { GetCharactersCharacterIdContactsLabels200Ok } from '../model/getCharactersCharacterIdContactsLabels200Ok'; -import { GetCorporationsCorporationIdContacts200Ok } from '../model/getCorporationsCorporationIdContacts200Ok'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class ContactsService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Delete contacts - * Bulk delete contacts --- Alternate route: `/dev/characters/{character_id}/contacts/` Alternate route: `/v2/characters/{character_id}/contacts/` - * @param characterId An EVE character ID - * @param contactIds A list of contacts to delete - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public deleteCharactersCharacterIdContacts(characterId: number, contactIds: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public deleteCharactersCharacterIdContacts(characterId: number, contactIds: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public deleteCharactersCharacterIdContacts(characterId: number, contactIds: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public deleteCharactersCharacterIdContacts(characterId: number, contactIds: Array, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling deleteCharactersCharacterIdContacts.'); - } - if (contactIds === null || contactIds === undefined) { - throw new Error('Required parameter contactIds was null or undefined when calling deleteCharactersCharacterIdContacts.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (contactIds) { - queryParameters = queryParameters.set('contact_ids', contactIds.join(COLLECTION_FORMATS['csv'])); - } - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.delete(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/contacts/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get alliance contacts - * Return contacts of an alliance --- Alternate route: `/dev/alliances/{alliance_id}/contacts/` Alternate route: `/legacy/alliances/{alliance_id}/contacts/` Alternate route: `/v1/alliances/{alliance_id}/contacts/` --- This route is cached for up to 300 seconds - * @param allianceId An EVE alliance ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getAlliancesAllianceIdContacts(allianceId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getAlliancesAllianceIdContacts(allianceId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getAlliancesAllianceIdContacts(allianceId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getAlliancesAllianceIdContacts(allianceId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (allianceId === null || allianceId === undefined) { - throw new Error('Required parameter allianceId was null or undefined when calling getAlliancesAllianceIdContacts.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/alliances/${encodeURIComponent(String(allianceId))}/contacts/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get contacts - * Return contacts of a character --- Alternate route: `/dev/characters/{character_id}/contacts/` Alternate route: `/legacy/characters/{character_id}/contacts/` Alternate route: `/v1/characters/{character_id}/contacts/` --- This route is cached for up to 300 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdContacts(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdContacts(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdContacts(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdContacts(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdContacts.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/contacts/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get contact labels - * Return custom labels for contacts the character defined --- Alternate route: `/dev/characters/{character_id}/contacts/labels/` Alternate route: `/legacy/characters/{character_id}/contacts/labels/` Alternate route: `/v1/characters/{character_id}/contacts/labels/` --- This route is cached for up to 300 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdContactsLabels(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdContactsLabels(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdContactsLabels(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdContactsLabels(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdContactsLabels.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/contacts/labels/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation contacts - * Return contacts of a corporation --- Alternate route: `/dev/corporations/{corporation_id}/contacts/` Alternate route: `/legacy/corporations/{corporation_id}/contacts/` Alternate route: `/v1/corporations/{corporation_id}/contacts/` --- This route is cached for up to 300 seconds - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdContacts(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdContacts(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdContacts(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdContacts(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdContacts.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/contacts/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Add contacts - * Bulk add contacts with same settings --- Alternate route: `/dev/characters/{character_id}/contacts/` Alternate route: `/legacy/characters/{character_id}/contacts/` Alternate route: `/v1/characters/{character_id}/contacts/` - * @param characterId An EVE character ID - * @param contactIds A list of contacts to add - * @param standing Standing for the new contact - * @param datasource The server name you would like data from - * @param labelId Add a custom label to the new contact - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param watched Whether the new contact should be watched, note this is only effective on characters - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public postCharactersCharacterIdContacts(characterId: number, contactIds: Array, standing: number, datasource?: string, labelId?: number, token?: string, userAgent?: string, watched?: boolean, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public postCharactersCharacterIdContacts(characterId: number, contactIds: Array, standing: number, datasource?: string, labelId?: number, token?: string, userAgent?: string, watched?: boolean, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public postCharactersCharacterIdContacts(characterId: number, contactIds: Array, standing: number, datasource?: string, labelId?: number, token?: string, userAgent?: string, watched?: boolean, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public postCharactersCharacterIdContacts(characterId: number, contactIds: Array, standing: number, datasource?: string, labelId?: number, token?: string, userAgent?: string, watched?: boolean, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling postCharactersCharacterIdContacts.'); - } - if (contactIds === null || contactIds === undefined) { - throw new Error('Required parameter contactIds was null or undefined when calling postCharactersCharacterIdContacts.'); - } - if (standing === null || standing === undefined) { - throw new Error('Required parameter standing was null or undefined when calling postCharactersCharacterIdContacts.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (labelId !== undefined) { - queryParameters = queryParameters.set('label_id', labelId); - } - if (standing !== undefined) { - queryParameters = queryParameters.set('standing', standing); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - if (watched !== undefined) { - queryParameters = queryParameters.set('watched', watched); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - let httpContentTypeSelected:string | undefined = this.configuration.selectHeaderContentType(consumes); - if (httpContentTypeSelected != undefined) { - headers = headers.set("Content-Type", httpContentTypeSelected); - } - - return this.httpClient.post>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/contacts/`, - contactIds, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Edit contacts - * Bulk edit contacts with same settings --- Alternate route: `/dev/characters/{character_id}/contacts/` Alternate route: `/legacy/characters/{character_id}/contacts/` Alternate route: `/v1/characters/{character_id}/contacts/` - * @param characterId An EVE character ID - * @param contactIds A list of contacts to edit - * @param standing Standing for the contact - * @param datasource The server name you would like data from - * @param labelId Add a custom label to the contact, use 0 for clearing label - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param watched Whether the contact should be watched, note this is only effective on characters - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public putCharactersCharacterIdContacts(characterId: number, contactIds: Array, standing: number, datasource?: string, labelId?: number, token?: string, userAgent?: string, watched?: boolean, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public putCharactersCharacterIdContacts(characterId: number, contactIds: Array, standing: number, datasource?: string, labelId?: number, token?: string, userAgent?: string, watched?: boolean, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public putCharactersCharacterIdContacts(characterId: number, contactIds: Array, standing: number, datasource?: string, labelId?: number, token?: string, userAgent?: string, watched?: boolean, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public putCharactersCharacterIdContacts(characterId: number, contactIds: Array, standing: number, datasource?: string, labelId?: number, token?: string, userAgent?: string, watched?: boolean, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling putCharactersCharacterIdContacts.'); - } - if (contactIds === null || contactIds === undefined) { - throw new Error('Required parameter contactIds was null or undefined when calling putCharactersCharacterIdContacts.'); - } - if (standing === null || standing === undefined) { - throw new Error('Required parameter standing was null or undefined when calling putCharactersCharacterIdContacts.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (labelId !== undefined) { - queryParameters = queryParameters.set('label_id', labelId); - } - if (standing !== undefined) { - queryParameters = queryParameters.set('standing', standing); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - if (watched !== undefined) { - queryParameters = queryParameters.set('watched', watched); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - let httpContentTypeSelected:string | undefined = this.configuration.selectHeaderContentType(consumes); - if (httpContentTypeSelected != undefined) { - headers = headers.set("Content-Type", httpContentTypeSelected); - } - - return this.httpClient.put(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/contacts/`, - contactIds, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/contracts.service.ts b/src/app/eve-online-angular-client/api/contracts.service.ts deleted file mode 100755 index 91fbbd4..0000000 --- a/src/app/eve-online-angular-client/api/contracts.service.ts +++ /dev/null @@ -1,496 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { Forbidden } from '../model/forbidden'; -import { GetCharactersCharacterIdContracts200Ok } from '../model/getCharactersCharacterIdContracts200Ok'; -import { GetCharactersCharacterIdContractsContractIdBids200Ok } from '../model/getCharactersCharacterIdContractsContractIdBids200Ok'; -import { GetCharactersCharacterIdContractsContractIdItems200Ok } from '../model/getCharactersCharacterIdContractsContractIdItems200Ok'; -import { GetCorporationsCorporationIdContracts200Ok } from '../model/getCorporationsCorporationIdContracts200Ok'; -import { GetCorporationsCorporationIdContractsContractIdBids200Ok } from '../model/getCorporationsCorporationIdContractsContractIdBids200Ok'; -import { GetCorporationsCorporationIdContractsContractIdItems200Ok } from '../model/getCorporationsCorporationIdContractsContractIdItems200Ok'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class ContractsService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Get contracts - * Returns contracts available to a character, only if the character is issuer, acceptor or assignee. Only returns contracts no older than 30 days, or if the status is \"in_progress\". --- Alternate route: `/dev/characters/{character_id}/contracts/` Alternate route: `/legacy/characters/{character_id}/contracts/` Alternate route: `/v1/characters/{character_id}/contracts/` --- This route is cached for up to 300 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdContracts(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdContracts(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdContracts(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdContracts(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdContracts.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/contracts/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get contract bids - * Lists bids on a particular auction contract --- Alternate route: `/dev/characters/{character_id}/contracts/{contract_id}/bids/` Alternate route: `/legacy/characters/{character_id}/contracts/{contract_id}/bids/` Alternate route: `/v1/characters/{character_id}/contracts/{contract_id}/bids/` --- This route is cached for up to 300 seconds - * @param characterId An EVE character ID - * @param contractId ID of a contract - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdContractsContractIdBids(characterId: number, contractId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdContractsContractIdBids(characterId: number, contractId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdContractsContractIdBids(characterId: number, contractId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdContractsContractIdBids(characterId: number, contractId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdContractsContractIdBids.'); - } - if (contractId === null || contractId === undefined) { - throw new Error('Required parameter contractId was null or undefined when calling getCharactersCharacterIdContractsContractIdBids.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/contracts/${encodeURIComponent(String(contractId))}/bids/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get contract items - * Lists items of a particular contract --- Alternate route: `/dev/characters/{character_id}/contracts/{contract_id}/items/` Alternate route: `/legacy/characters/{character_id}/contracts/{contract_id}/items/` Alternate route: `/v1/characters/{character_id}/contracts/{contract_id}/items/` --- This route is cached for up to 3600 seconds - * @param characterId An EVE character ID - * @param contractId ID of a contract - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdContractsContractIdItems(characterId: number, contractId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdContractsContractIdItems(characterId: number, contractId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdContractsContractIdItems(characterId: number, contractId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdContractsContractIdItems(characterId: number, contractId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdContractsContractIdItems.'); - } - if (contractId === null || contractId === undefined) { - throw new Error('Required parameter contractId was null or undefined when calling getCharactersCharacterIdContractsContractIdItems.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/contracts/${encodeURIComponent(String(contractId))}/items/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get coporation contracts - * Returns contracts available to a coporation, only if the corporation is issuer, acceptor or assignee. Only returns contracts no older than 30 days, or if the status is \"in_progress\". --- Alternate route: `/dev/corporations/{corporation_id}/contracts/` Alternate route: `/legacy/corporations/{corporation_id}/contracts/` Alternate route: `/v1/corporations/{corporation_id}/contracts/` --- This route is cached for up to 300 seconds - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdContracts(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdContracts(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdContracts(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdContracts(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdContracts.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/contracts/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation contract bids - * Lists bids on a particular auction contract --- Alternate route: `/dev/corporations/{corporation_id}/contracts/{contract_id}/bids/` Alternate route: `/legacy/corporations/{corporation_id}/contracts/{contract_id}/bids/` Alternate route: `/v1/corporations/{corporation_id}/contracts/{contract_id}/bids/` --- This route is cached for up to 3600 seconds - * @param contractId ID of a contract - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdContractsContractIdBids(contractId: number, corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdContractsContractIdBids(contractId: number, corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdContractsContractIdBids(contractId: number, corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdContractsContractIdBids(contractId: number, corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (contractId === null || contractId === undefined) { - throw new Error('Required parameter contractId was null or undefined when calling getCorporationsCorporationIdContractsContractIdBids.'); - } - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdContractsContractIdBids.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/contracts/${encodeURIComponent(String(contractId))}/bids/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation contract items - * Lists items of a particular contract --- Alternate route: `/dev/corporations/{corporation_id}/contracts/{contract_id}/items/` Alternate route: `/legacy/corporations/{corporation_id}/contracts/{contract_id}/items/` Alternate route: `/v1/corporations/{corporation_id}/contracts/{contract_id}/items/` --- This route is cached for up to 3600 seconds - * @param contractId ID of a contract - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdContractsContractIdItems(contractId: number, corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdContractsContractIdItems(contractId: number, corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdContractsContractIdItems(contractId: number, corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdContractsContractIdItems(contractId: number, corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (contractId === null || contractId === undefined) { - throw new Error('Required parameter contractId was null or undefined when calling getCorporationsCorporationIdContractsContractIdItems.'); - } - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdContractsContractIdItems.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/contracts/${encodeURIComponent(String(contractId))}/items/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/corporation.service.ts b/src/app/eve-online-angular-client/api/corporation.service.ts deleted file mode 100755 index ba62c7a..0000000 --- a/src/app/eve-online-angular-client/api/corporation.service.ts +++ /dev/null @@ -1,1756 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { Forbidden } from '../model/forbidden'; -import { GetCorporationsCorporationIdAlliancehistory200Ok } from '../model/getCorporationsCorporationIdAlliancehistory200Ok'; -import { GetCorporationsCorporationIdBlueprints200Ok } from '../model/getCorporationsCorporationIdBlueprints200Ok'; -import { GetCorporationsCorporationIdContainersLogs200Ok } from '../model/getCorporationsCorporationIdContainersLogs200Ok'; -import { GetCorporationsCorporationIdDivisionsOk } from '../model/getCorporationsCorporationIdDivisionsOk'; -import { GetCorporationsCorporationIdFacilities200Ok } from '../model/getCorporationsCorporationIdFacilities200Ok'; -import { GetCorporationsCorporationIdIconsNotFound } from '../model/getCorporationsCorporationIdIconsNotFound'; -import { GetCorporationsCorporationIdIconsOk } from '../model/getCorporationsCorporationIdIconsOk'; -import { GetCorporationsCorporationIdMedals200Ok } from '../model/getCorporationsCorporationIdMedals200Ok'; -import { GetCorporationsCorporationIdMedalsIssued200Ok } from '../model/getCorporationsCorporationIdMedalsIssued200Ok'; -import { GetCorporationsCorporationIdMembersTitles200Ok } from '../model/getCorporationsCorporationIdMembersTitles200Ok'; -import { GetCorporationsCorporationIdMembertracking200Ok } from '../model/getCorporationsCorporationIdMembertracking200Ok'; -import { GetCorporationsCorporationIdNotFound } from '../model/getCorporationsCorporationIdNotFound'; -import { GetCorporationsCorporationIdOk } from '../model/getCorporationsCorporationIdOk'; -import { GetCorporationsCorporationIdOutpostsOutpostIdOk } from '../model/getCorporationsCorporationIdOutpostsOutpostIdOk'; -import { GetCorporationsCorporationIdRoles200Ok } from '../model/getCorporationsCorporationIdRoles200Ok'; -import { GetCorporationsCorporationIdRolesHistory200Ok } from '../model/getCorporationsCorporationIdRolesHistory200Ok'; -import { GetCorporationsCorporationIdShareholders200Ok } from '../model/getCorporationsCorporationIdShareholders200Ok'; -import { GetCorporationsCorporationIdStandings200Ok } from '../model/getCorporationsCorporationIdStandings200Ok'; -import { GetCorporationsCorporationIdStarbases200Ok } from '../model/getCorporationsCorporationIdStarbases200Ok'; -import { GetCorporationsCorporationIdStarbasesStarbaseIdOk } from '../model/getCorporationsCorporationIdStarbasesStarbaseIdOk'; -import { GetCorporationsCorporationIdStructures200Ok } from '../model/getCorporationsCorporationIdStructures200Ok'; -import { GetCorporationsCorporationIdTitles200Ok } from '../model/getCorporationsCorporationIdTitles200Ok'; -import { GetCorporationsNames200Ok } from '../model/getCorporationsNames200Ok'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class CorporationService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Get corporation information - * Public information about a corporation --- Alternate route: `/dev/corporations/{corporation_id}/` Alternate route: `/v4/corporations/{corporation_id}/` --- This route is cached for up to 3600 seconds - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationId(corporationId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCorporationsCorporationId(corporationId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCorporationsCorporationId(corporationId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCorporationsCorporationId(corporationId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get alliance history - * Get a list of all the alliances a corporation has been a member of --- Alternate route: `/dev/corporations/{corporation_id}/alliancehistory/` Alternate route: `/v2/corporations/{corporation_id}/alliancehistory/` --- This route is cached for up to 3600 seconds - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdAlliancehistory(corporationId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdAlliancehistory(corporationId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdAlliancehistory(corporationId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdAlliancehistory(corporationId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdAlliancehistory.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/alliancehistory/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation blueprints - * Returns a list of blueprints the corporation owns --- Alternate route: `/dev/corporations/{corporation_id}/blueprints/` Alternate route: `/v2/corporations/{corporation_id}/blueprints/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdBlueprints(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdBlueprints(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdBlueprints(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdBlueprints(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdBlueprints.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/blueprints/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get all corporation ALSC logs - * Returns logs recorded in the past seven days from all audit log secure containers (ALSC) owned by a given corporation --- Alternate route: `/dev/corporations/{corporation_id}/containers/logs/` Alternate route: `/v2/corporations/{corporation_id}/containers/logs/` --- This route is cached for up to 600 seconds --- Requires one of the following EVE corporation role(s): Director - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdContainersLogs(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdContainersLogs(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdContainersLogs(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdContainersLogs(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdContainersLogs.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/containers/logs/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation divisions - * Return corporation hangar and wallet division names, only show if a division is not using the default name --- Alternate route: `/dev/corporations/{corporation_id}/divisions/` Alternate route: `/legacy/corporations/{corporation_id}/divisions/` Alternate route: `/v1/corporations/{corporation_id}/divisions/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdDivisions(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCorporationsCorporationIdDivisions(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdDivisions(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdDivisions(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdDivisions.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/divisions/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation facilities - * Return a corporation's facilities --- Alternate route: `/dev/corporations/{corporation_id}/facilities/` Alternate route: `/legacy/corporations/{corporation_id}/facilities/` Alternate route: `/v1/corporations/{corporation_id}/facilities/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Factory_Manager - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdFacilities(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdFacilities(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdFacilities(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdFacilities(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdFacilities.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/facilities/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation icon - * Get the icon urls for a corporation --- Alternate route: `/dev/corporations/{corporation_id}/icons/` Alternate route: `/legacy/corporations/{corporation_id}/icons/` Alternate route: `/v1/corporations/{corporation_id}/icons/` --- This route is cached for up to 3600 seconds - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdIcons(corporationId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCorporationsCorporationIdIcons(corporationId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdIcons(corporationId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdIcons(corporationId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdIcons.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/icons/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation medals - * Returns a corporation's medals --- Alternate route: `/dev/corporations/{corporation_id}/medals/` Alternate route: `/legacy/corporations/{corporation_id}/medals/` Alternate route: `/v1/corporations/{corporation_id}/medals/` --- This route is cached for up to 3600 seconds - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdMedals(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdMedals(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdMedals(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdMedals(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdMedals.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/medals/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation issued medals - * Returns medals issued by a corporation --- Alternate route: `/dev/corporations/{corporation_id}/medals/issued/` Alternate route: `/legacy/corporations/{corporation_id}/medals/issued/` Alternate route: `/v1/corporations/{corporation_id}/medals/issued/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdMedalsIssued(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdMedalsIssued(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdMedalsIssued(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdMedalsIssued(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdMedalsIssued.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/medals/issued/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation members - * Return the current member list of a corporation, the token's character need to be a member of the corporation. --- Alternate route: `/dev/corporations/{corporation_id}/members/` Alternate route: `/v3/corporations/{corporation_id}/members/` --- This route is cached for up to 3600 seconds - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdMembers(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdMembers(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdMembers(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdMembers(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdMembers.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/members/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation member limit - * Return a corporation's member limit, not including CEO himself --- Alternate route: `/dev/corporations/{corporation_id}/members/limit/` Alternate route: `/legacy/corporations/{corporation_id}/members/limit/` Alternate route: `/v1/corporations/{corporation_id}/members/limit/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdMembersLimit(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCorporationsCorporationIdMembersLimit(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdMembersLimit(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdMembersLimit(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdMembersLimit.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/members/limit/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation's members' titles - * Returns a corporation's members' titles --- Alternate route: `/dev/corporations/{corporation_id}/members/titles/` Alternate route: `/legacy/corporations/{corporation_id}/members/titles/` Alternate route: `/v1/corporations/{corporation_id}/members/titles/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdMembersTitles(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdMembersTitles(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdMembersTitles(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdMembersTitles(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdMembersTitles.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/members/titles/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Track corporation members - * Returns additional information about a corporation's members which helps tracking their activities --- Alternate route: `/dev/corporations/{corporation_id}/membertracking/` Alternate route: `/legacy/corporations/{corporation_id}/membertracking/` Alternate route: `/v1/corporations/{corporation_id}/membertracking/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdMembertracking(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdMembertracking(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdMembertracking(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdMembertracking(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdMembertracking.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/membertracking/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation outposts - * Get a list of corporation outpost IDs Note: This endpoint will be removed once outposts are migrated to Citadels as talked about in this blog: https://community.eveonline.com/news/dev-blogs/the-next-steps-in-structure-transition/ --- Alternate route: `/dev/corporations/{corporation_id}/outposts/` Alternate route: `/legacy/corporations/{corporation_id}/outposts/` Alternate route: `/v1/corporations/{corporation_id}/outposts/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdOutposts(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdOutposts(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdOutposts(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdOutposts(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdOutposts.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/outposts/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation outpost details - * Get details about a given outpost. Note: This endpoint will be removed once outposts are migrated to Citadels as talked about in this blog: https://community.eveonline.com/news/dev-blogs/the-next-steps-in-structure-transition/ --- Alternate route: `/dev/corporations/{corporation_id}/outposts/{outpost_id}/` Alternate route: `/legacy/corporations/{corporation_id}/outposts/{outpost_id}/` Alternate route: `/v1/corporations/{corporation_id}/outposts/{outpost_id}/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director - * @param corporationId An EVE corporation ID - * @param outpostId A station (outpost) ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdOutpostsOutpostId(corporationId: number, outpostId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCorporationsCorporationIdOutpostsOutpostId(corporationId: number, outpostId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdOutpostsOutpostId(corporationId: number, outpostId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdOutpostsOutpostId(corporationId: number, outpostId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdOutpostsOutpostId.'); - } - if (outpostId === null || outpostId === undefined) { - throw new Error('Required parameter outpostId was null or undefined when calling getCorporationsCorporationIdOutpostsOutpostId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/outposts/${encodeURIComponent(String(outpostId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation member roles - * Return the roles of all members if the character has the personnel manager role or any grantable role. --- Alternate route: `/dev/corporations/{corporation_id}/roles/` Alternate route: `/legacy/corporations/{corporation_id}/roles/` Alternate route: `/v1/corporations/{corporation_id}/roles/` --- This route is cached for up to 3600 seconds - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdRoles(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdRoles(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdRoles(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdRoles(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdRoles.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/roles/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation member roles history - * Return how roles have changed for a coporation's members, up to a month --- Alternate route: `/dev/corporations/{corporation_id}/roles/history/` Alternate route: `/legacy/corporations/{corporation_id}/roles/history/` Alternate route: `/v1/corporations/{corporation_id}/roles/history/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdRolesHistory(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdRolesHistory(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdRolesHistory(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdRolesHistory(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdRolesHistory.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/roles/history/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation shareholders - * Return the current shareholders of a corporation. --- Alternate route: `/dev/corporations/{corporation_id}/shareholders/` Alternate route: `/legacy/corporations/{corporation_id}/shareholders/` Alternate route: `/v1/corporations/{corporation_id}/shareholders/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdShareholders(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdShareholders(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdShareholders(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdShareholders(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdShareholders.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/shareholders/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation standings - * Return corporation standings from agents, NPC corporations, and factions --- Alternate route: `/dev/corporations/{corporation_id}/standings/` Alternate route: `/legacy/corporations/{corporation_id}/standings/` Alternate route: `/v1/corporations/{corporation_id}/standings/` --- This route is cached for up to 3600 seconds - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdStandings(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdStandings(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdStandings(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdStandings(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdStandings.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/standings/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation starbases (POSes) - * Returns list of corporation starbases (POSes) --- Alternate route: `/dev/corporations/{corporation_id}/starbases/` Alternate route: `/legacy/corporations/{corporation_id}/starbases/` Alternate route: `/v1/corporations/{corporation_id}/starbases/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdStarbases(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdStarbases(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdStarbases(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdStarbases(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdStarbases.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/starbases/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get starbase (POS) detail - * Returns various settings and fuels of a starbase (POS) --- Alternate route: `/dev/corporations/{corporation_id}/starbases/{starbase_id}/` Alternate route: `/legacy/corporations/{corporation_id}/starbases/{starbase_id}/` Alternate route: `/v1/corporations/{corporation_id}/starbases/{starbase_id}/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director - * @param corporationId An EVE corporation ID - * @param starbaseId An EVE starbase (POS) ID - * @param systemId The solar system this starbase (POS) is located in, - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdStarbasesStarbaseId(corporationId: number, starbaseId: number, systemId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCorporationsCorporationIdStarbasesStarbaseId(corporationId: number, starbaseId: number, systemId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdStarbasesStarbaseId(corporationId: number, starbaseId: number, systemId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdStarbasesStarbaseId(corporationId: number, starbaseId: number, systemId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdStarbasesStarbaseId.'); - } - if (starbaseId === null || starbaseId === undefined) { - throw new Error('Required parameter starbaseId was null or undefined when calling getCorporationsCorporationIdStarbasesStarbaseId.'); - } - if (systemId === null || systemId === undefined) { - throw new Error('Required parameter systemId was null or undefined when calling getCorporationsCorporationIdStarbasesStarbaseId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (systemId !== undefined) { - queryParameters = queryParameters.set('system_id', systemId); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/starbases/${encodeURIComponent(String(starbaseId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation structures - * Get a list of corporation structures. This route's version includes the changes to structures detailed in this blog: https://www.eveonline.com/article/upwell-2.0-structures-changes-coming-on-february-13th --- Alternate route: `/dev/corporations/{corporation_id}/structures/` Alternate route: `/v2/corporations/{corporation_id}/structures/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): StationManager - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param language Language to use in the response - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdStructures(corporationId: number, datasource?: string, language?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdStructures(corporationId: number, datasource?: string, language?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdStructures(corporationId: number, datasource?: string, language?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdStructures(corporationId: number, datasource?: string, language?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdStructures.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (language !== undefined) { - queryParameters = queryParameters.set('language', language); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/structures/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation titles - * Returns a corporation's titles --- Alternate route: `/dev/corporations/{corporation_id}/titles/` Alternate route: `/legacy/corporations/{corporation_id}/titles/` Alternate route: `/v1/corporations/{corporation_id}/titles/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdTitles(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdTitles(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdTitles(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdTitles(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdTitles.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/titles/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation names - * Resolve a set of corporation IDs to corporation names --- Alternate route: `/dev/corporations/names/` Alternate route: `/v2/corporations/names/` --- This route is cached for up to 3600 seconds - * @param corporationIds A comma separated list of corporation IDs - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsNames(corporationIds: Array, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsNames(corporationIds: Array, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsNames(corporationIds: Array, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsNames(corporationIds: Array, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationIds === null || corporationIds === undefined) { - throw new Error('Required parameter corporationIds was null or undefined when calling getCorporationsNames.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (corporationIds) { - queryParameters = queryParameters.set('corporation_ids', corporationIds.join(COLLECTION_FORMATS['csv'])); - } - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/names/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get npc corporations - * Get a list of npc corporations --- Alternate route: `/dev/corporations/npccorps/` Alternate route: `/legacy/corporations/npccorps/` Alternate route: `/v1/corporations/npccorps/` --- This route expires daily at 11:05 - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsNpccorps(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsNpccorps(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsNpccorps(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsNpccorps(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/npccorps/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/dogma.service.ts b/src/app/eve-online-angular-client/api/dogma.service.ts deleted file mode 100755 index 46cef40..0000000 --- a/src/app/eve-online-angular-client/api/dogma.service.ts +++ /dev/null @@ -1,275 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { GetDogmaAttributesAttributeIdNotFound } from '../model/getDogmaAttributesAttributeIdNotFound'; -import { GetDogmaAttributesAttributeIdOk } from '../model/getDogmaAttributesAttributeIdOk'; -import { GetDogmaEffectsEffectIdNotFound } from '../model/getDogmaEffectsEffectIdNotFound'; -import { GetDogmaEffectsEffectIdOk } from '../model/getDogmaEffectsEffectIdOk'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class DogmaService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Get attributes - * Get a list of dogma attribute ids --- Alternate route: `/dev/dogma/attributes/` Alternate route: `/legacy/dogma/attributes/` Alternate route: `/v1/dogma/attributes/` --- This route expires daily at 11:05 - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getDogmaAttributes(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getDogmaAttributes(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getDogmaAttributes(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getDogmaAttributes(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/dogma/attributes/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get attribute information - * Get information on a dogma attribute --- Alternate route: `/dev/dogma/attributes/{attribute_id}/` Alternate route: `/legacy/dogma/attributes/{attribute_id}/` Alternate route: `/v1/dogma/attributes/{attribute_id}/` --- This route expires daily at 11:05 - * @param attributeId A dogma attribute ID - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getDogmaAttributesAttributeId(attributeId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getDogmaAttributesAttributeId(attributeId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getDogmaAttributesAttributeId(attributeId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getDogmaAttributesAttributeId(attributeId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (attributeId === null || attributeId === undefined) { - throw new Error('Required parameter attributeId was null or undefined when calling getDogmaAttributesAttributeId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/dogma/attributes/${encodeURIComponent(String(attributeId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get effects - * Get a list of dogma effect ids --- Alternate route: `/dev/dogma/effects/` Alternate route: `/legacy/dogma/effects/` Alternate route: `/v1/dogma/effects/` --- This route expires daily at 11:05 - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getDogmaEffects(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getDogmaEffects(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getDogmaEffects(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getDogmaEffects(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/dogma/effects/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get effect information - * Get information on a dogma effect --- Alternate route: `/dev/dogma/effects/{effect_id}/` Alternate route: `/v2/dogma/effects/{effect_id}/` --- This route expires daily at 11:05 - * @param effectId A dogma effect ID - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getDogmaEffectsEffectId(effectId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getDogmaEffectsEffectId(effectId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getDogmaEffectsEffectId(effectId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getDogmaEffectsEffectId(effectId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (effectId === null || effectId === undefined) { - throw new Error('Required parameter effectId was null or undefined when calling getDogmaEffectsEffectId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/dogma/effects/${encodeURIComponent(String(effectId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/factionWarfare.service.ts b/src/app/eve-online-angular-client/api/factionWarfare.service.ts deleted file mode 100755 index 3606f43..0000000 --- a/src/app/eve-online-angular-client/api/factionWarfare.service.ts +++ /dev/null @@ -1,508 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { Forbidden } from '../model/forbidden'; -import { GetCharactersCharacterIdFwStatsOk } from '../model/getCharactersCharacterIdFwStatsOk'; -import { GetCorporationsCorporationIdFwStatsOk } from '../model/getCorporationsCorporationIdFwStatsOk'; -import { GetFwLeaderboardsCharactersOk } from '../model/getFwLeaderboardsCharactersOk'; -import { GetFwLeaderboardsCorporationsOk } from '../model/getFwLeaderboardsCorporationsOk'; -import { GetFwLeaderboardsOk } from '../model/getFwLeaderboardsOk'; -import { GetFwStats200Ok } from '../model/getFwStats200Ok'; -import { GetFwSystems200Ok } from '../model/getFwSystems200Ok'; -import { GetFwWars200Ok } from '../model/getFwWars200Ok'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class FactionWarfareService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Overview of a character involved in faction warfare - * Statistical overview of a character involved in faction warfare --- Alternate route: `/dev/characters/{character_id}/fw/stats/` Alternate route: `/legacy/characters/{character_id}/fw/stats/` Alternate route: `/v1/characters/{character_id}/fw/stats/` --- This route expires daily at 11:05 - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdFwStats(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCharactersCharacterIdFwStats(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdFwStats(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdFwStats(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdFwStats.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/fw/stats/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Overview of a corporation involved in faction warfare - * Statistics about a corporation involved in faction warfare --- Alternate route: `/dev/corporations/{corporation_id}/fw/stats/` Alternate route: `/legacy/corporations/{corporation_id}/fw/stats/` Alternate route: `/v1/corporations/{corporation_id}/fw/stats/` --- This route expires daily at 11:05 - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdFwStats(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCorporationsCorporationIdFwStats(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdFwStats(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdFwStats(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdFwStats.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/fw/stats/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List of the top factions in faction warfare - * Top 4 leaderboard of factions for kills and victory points separated by total, last week and yesterday. --- Alternate route: `/dev/fw/leaderboards/` Alternate route: `/legacy/fw/leaderboards/` Alternate route: `/v1/fw/leaderboards/` --- This route expires daily at 11:05 - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getFwLeaderboards(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getFwLeaderboards(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getFwLeaderboards(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getFwLeaderboards(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/fw/leaderboards/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List of the top pilots in faction warfare - * Top 100 leaderboard of pilots for kills and victory points separated by total, last week and yesterday. --- Alternate route: `/dev/fw/leaderboards/characters/` Alternate route: `/legacy/fw/leaderboards/characters/` Alternate route: `/v1/fw/leaderboards/characters/` --- This route expires daily at 11:05 - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getFwLeaderboardsCharacters(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getFwLeaderboardsCharacters(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getFwLeaderboardsCharacters(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getFwLeaderboardsCharacters(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/fw/leaderboards/characters/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List of the top corporations in faction warfare - * Top 10 leaderboard of corporations for kills and victory points separated by total, last week and yesterday. --- Alternate route: `/dev/fw/leaderboards/corporations/` Alternate route: `/legacy/fw/leaderboards/corporations/` Alternate route: `/v1/fw/leaderboards/corporations/` --- This route expires daily at 11:05 - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getFwLeaderboardsCorporations(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getFwLeaderboardsCorporations(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getFwLeaderboardsCorporations(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getFwLeaderboardsCorporations(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/fw/leaderboards/corporations/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * An overview of statistics about factions involved in faction warfare - * Statistical overviews of factions involved in faction warfare --- Alternate route: `/dev/fw/stats/` Alternate route: `/legacy/fw/stats/` Alternate route: `/v1/fw/stats/` --- This route expires daily at 11:05 - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getFwStats(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getFwStats(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getFwStats(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getFwStats(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/fw/stats/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Ownership of faction warfare systems - * An overview of the current ownership of faction warfare solar systems --- Alternate route: `/dev/fw/systems/` Alternate route: `/legacy/fw/systems/` Alternate route: `/v1/fw/systems/` --- This route is cached for up to 1800 seconds - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getFwSystems(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getFwSystems(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getFwSystems(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getFwSystems(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/fw/systems/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Data about which NPC factions are at war - * Data about which NPC factions are at war --- Alternate route: `/dev/fw/wars/` Alternate route: `/legacy/fw/wars/` Alternate route: `/v1/fw/wars/` --- This route expires daily at 11:05 - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getFwWars(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getFwWars(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getFwWars(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getFwWars(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/fw/wars/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/fittings.service.ts b/src/app/eve-online-angular-client/api/fittings.service.ts deleted file mode 100755 index e09068d..0000000 --- a/src/app/eve-online-angular-client/api/fittings.service.ts +++ /dev/null @@ -1,277 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { Forbidden } from '../model/forbidden'; -import { GetCharactersCharacterIdFittings200Ok } from '../model/getCharactersCharacterIdFittings200Ok'; -import { InternalServerError } from '../model/internalServerError'; -import { PostCharactersCharacterIdFittingsCreated } from '../model/postCharactersCharacterIdFittingsCreated'; -import { PostCharactersCharacterIdFittingsFitting } from '../model/postCharactersCharacterIdFittingsFitting'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class FittingsService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Delete fitting - * Delete a fitting from a character --- Alternate route: `/dev/characters/{character_id}/fittings/{fitting_id}/` Alternate route: `/legacy/characters/{character_id}/fittings/{fitting_id}/` Alternate route: `/v1/characters/{character_id}/fittings/{fitting_id}/` - * @param characterId An EVE character ID - * @param fittingId ID for a fitting of this character - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public deleteCharactersCharacterIdFittingsFittingId(characterId: number, fittingId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public deleteCharactersCharacterIdFittingsFittingId(characterId: number, fittingId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public deleteCharactersCharacterIdFittingsFittingId(characterId: number, fittingId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public deleteCharactersCharacterIdFittingsFittingId(characterId: number, fittingId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling deleteCharactersCharacterIdFittingsFittingId.'); - } - if (fittingId === null || fittingId === undefined) { - throw new Error('Required parameter fittingId was null or undefined when calling deleteCharactersCharacterIdFittingsFittingId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.delete(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/fittings/${encodeURIComponent(String(fittingId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get fittings - * Return fittings of a character --- Alternate route: `/dev/characters/{character_id}/fittings/` Alternate route: `/legacy/characters/{character_id}/fittings/` Alternate route: `/v1/characters/{character_id}/fittings/` --- This route is cached for up to 300 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdFittings(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdFittings(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdFittings(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdFittings(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdFittings.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/fittings/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Create fitting - * Save a new fitting for a character --- Alternate route: `/dev/characters/{character_id}/fittings/` Alternate route: `/legacy/characters/{character_id}/fittings/` Alternate route: `/v1/characters/{character_id}/fittings/` - * @param characterId An EVE character ID - * @param fitting Details about the new fitting - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public postCharactersCharacterIdFittings(characterId: number, fitting: PostCharactersCharacterIdFittingsFitting, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public postCharactersCharacterIdFittings(characterId: number, fitting: PostCharactersCharacterIdFittingsFitting, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public postCharactersCharacterIdFittings(characterId: number, fitting: PostCharactersCharacterIdFittingsFitting, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public postCharactersCharacterIdFittings(characterId: number, fitting: PostCharactersCharacterIdFittingsFitting, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling postCharactersCharacterIdFittings.'); - } - if (fitting === null || fitting === undefined) { - throw new Error('Required parameter fitting was null or undefined when calling postCharactersCharacterIdFittings.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - let httpContentTypeSelected:string | undefined = this.configuration.selectHeaderContentType(consumes); - if (httpContentTypeSelected != undefined) { - headers = headers.set("Content-Type", httpContentTypeSelected); - } - - return this.httpClient.post(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/fittings/`, - fitting, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/fleets.service.ts b/src/app/eve-online-angular-client/api/fleets.service.ts deleted file mode 100755 index a22a0f5..0000000 --- a/src/app/eve-online-angular-client/api/fleets.service.ts +++ /dev/null @@ -1,1109 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { DeleteFleetsFleetIdMembersMemberIdNotFound } from '../model/deleteFleetsFleetIdMembersMemberIdNotFound'; -import { DeleteFleetsFleetIdSquadsSquadIdNotFound } from '../model/deleteFleetsFleetIdSquadsSquadIdNotFound'; -import { DeleteFleetsFleetIdWingsWingIdNotFound } from '../model/deleteFleetsFleetIdWingsWingIdNotFound'; -import { Forbidden } from '../model/forbidden'; -import { GetCharactersCharacterIdFleetNotFound } from '../model/getCharactersCharacterIdFleetNotFound'; -import { GetCharactersCharacterIdFleetOk } from '../model/getCharactersCharacterIdFleetOk'; -import { GetFleetsFleetIdMembers200Ok } from '../model/getFleetsFleetIdMembers200Ok'; -import { GetFleetsFleetIdMembersNotFound } from '../model/getFleetsFleetIdMembersNotFound'; -import { GetFleetsFleetIdNotFound } from '../model/getFleetsFleetIdNotFound'; -import { GetFleetsFleetIdOk } from '../model/getFleetsFleetIdOk'; -import { GetFleetsFleetIdWings200Ok } from '../model/getFleetsFleetIdWings200Ok'; -import { GetFleetsFleetIdWingsNotFound } from '../model/getFleetsFleetIdWingsNotFound'; -import { InternalServerError } from '../model/internalServerError'; -import { PostFleetsFleetIdMembersInvitation } from '../model/postFleetsFleetIdMembersInvitation'; -import { PostFleetsFleetIdMembersNotFound } from '../model/postFleetsFleetIdMembersNotFound'; -import { PostFleetsFleetIdMembersUnprocessableEntity } from '../model/postFleetsFleetIdMembersUnprocessableEntity'; -import { PostFleetsFleetIdWingsCreated } from '../model/postFleetsFleetIdWingsCreated'; -import { PostFleetsFleetIdWingsNotFound } from '../model/postFleetsFleetIdWingsNotFound'; -import { PostFleetsFleetIdWingsWingIdSquadsCreated } from '../model/postFleetsFleetIdWingsWingIdSquadsCreated'; -import { PostFleetsFleetIdWingsWingIdSquadsNotFound } from '../model/postFleetsFleetIdWingsWingIdSquadsNotFound'; -import { PutFleetsFleetIdBadRequest } from '../model/putFleetsFleetIdBadRequest'; -import { PutFleetsFleetIdMembersMemberIdMovement } from '../model/putFleetsFleetIdMembersMemberIdMovement'; -import { PutFleetsFleetIdMembersMemberIdNotFound } from '../model/putFleetsFleetIdMembersMemberIdNotFound'; -import { PutFleetsFleetIdMembersMemberIdUnprocessableEntity } from '../model/putFleetsFleetIdMembersMemberIdUnprocessableEntity'; -import { PutFleetsFleetIdNewSettings } from '../model/putFleetsFleetIdNewSettings'; -import { PutFleetsFleetIdNotFound } from '../model/putFleetsFleetIdNotFound'; -import { PutFleetsFleetIdSquadsSquadIdNaming } from '../model/putFleetsFleetIdSquadsSquadIdNaming'; -import { PutFleetsFleetIdSquadsSquadIdNotFound } from '../model/putFleetsFleetIdSquadsSquadIdNotFound'; -import { PutFleetsFleetIdWingsWingIdNaming } from '../model/putFleetsFleetIdWingsWingIdNaming'; -import { PutFleetsFleetIdWingsWingIdNotFound } from '../model/putFleetsFleetIdWingsWingIdNotFound'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class FleetsService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Kick fleet member - * Kick a fleet member --- Alternate route: `/dev/fleets/{fleet_id}/members/{member_id}/` Alternate route: `/legacy/fleets/{fleet_id}/members/{member_id}/` Alternate route: `/v1/fleets/{fleet_id}/members/{member_id}/` - * @param fleetId ID for a fleet - * @param memberId The character ID of a member in this fleet - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public deleteFleetsFleetIdMembersMemberId(fleetId: number, memberId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public deleteFleetsFleetIdMembersMemberId(fleetId: number, memberId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public deleteFleetsFleetIdMembersMemberId(fleetId: number, memberId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public deleteFleetsFleetIdMembersMemberId(fleetId: number, memberId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (fleetId === null || fleetId === undefined) { - throw new Error('Required parameter fleetId was null or undefined when calling deleteFleetsFleetIdMembersMemberId.'); - } - if (memberId === null || memberId === undefined) { - throw new Error('Required parameter memberId was null or undefined when calling deleteFleetsFleetIdMembersMemberId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.delete(`${this.basePath}/fleets/${encodeURIComponent(String(fleetId))}/members/${encodeURIComponent(String(memberId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Delete fleet squad - * Delete a fleet squad, only empty squads can be deleted --- Alternate route: `/dev/fleets/{fleet_id}/squads/{squad_id}/` Alternate route: `/legacy/fleets/{fleet_id}/squads/{squad_id}/` Alternate route: `/v1/fleets/{fleet_id}/squads/{squad_id}/` - * @param fleetId ID for a fleet - * @param squadId The squad to delete - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public deleteFleetsFleetIdSquadsSquadId(fleetId: number, squadId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public deleteFleetsFleetIdSquadsSquadId(fleetId: number, squadId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public deleteFleetsFleetIdSquadsSquadId(fleetId: number, squadId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public deleteFleetsFleetIdSquadsSquadId(fleetId: number, squadId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (fleetId === null || fleetId === undefined) { - throw new Error('Required parameter fleetId was null or undefined when calling deleteFleetsFleetIdSquadsSquadId.'); - } - if (squadId === null || squadId === undefined) { - throw new Error('Required parameter squadId was null or undefined when calling deleteFleetsFleetIdSquadsSquadId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.delete(`${this.basePath}/fleets/${encodeURIComponent(String(fleetId))}/squads/${encodeURIComponent(String(squadId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Delete fleet wing - * Delete a fleet wing, only empty wings can be deleted. The wing may contain squads, but the squads must be empty --- Alternate route: `/dev/fleets/{fleet_id}/wings/{wing_id}/` Alternate route: `/legacy/fleets/{fleet_id}/wings/{wing_id}/` Alternate route: `/v1/fleets/{fleet_id}/wings/{wing_id}/` - * @param fleetId ID for a fleet - * @param wingId The wing to delete - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public deleteFleetsFleetIdWingsWingId(fleetId: number, wingId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public deleteFleetsFleetIdWingsWingId(fleetId: number, wingId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public deleteFleetsFleetIdWingsWingId(fleetId: number, wingId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public deleteFleetsFleetIdWingsWingId(fleetId: number, wingId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (fleetId === null || fleetId === undefined) { - throw new Error('Required parameter fleetId was null or undefined when calling deleteFleetsFleetIdWingsWingId.'); - } - if (wingId === null || wingId === undefined) { - throw new Error('Required parameter wingId was null or undefined when calling deleteFleetsFleetIdWingsWingId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.delete(`${this.basePath}/fleets/${encodeURIComponent(String(fleetId))}/wings/${encodeURIComponent(String(wingId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get character fleet info - * Return the fleet ID the character is in, if any. --- Alternate route: `/dev/characters/{character_id}/fleet/` Alternate route: `/legacy/characters/{character_id}/fleet/` Alternate route: `/v1/characters/{character_id}/fleet/` --- This route is cached for up to 60 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdFleet(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCharactersCharacterIdFleet(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdFleet(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdFleet(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdFleet.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/fleet/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get fleet information - * Return details about a fleet --- Alternate route: `/dev/fleets/{fleet_id}/` Alternate route: `/legacy/fleets/{fleet_id}/` Alternate route: `/v1/fleets/{fleet_id}/` --- This route is cached for up to 5 seconds - * @param fleetId ID for a fleet - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getFleetsFleetId(fleetId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getFleetsFleetId(fleetId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getFleetsFleetId(fleetId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getFleetsFleetId(fleetId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (fleetId === null || fleetId === undefined) { - throw new Error('Required parameter fleetId was null or undefined when calling getFleetsFleetId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/fleets/${encodeURIComponent(String(fleetId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get fleet members - * Return information about fleet members --- Alternate route: `/dev/fleets/{fleet_id}/members/` Alternate route: `/legacy/fleets/{fleet_id}/members/` Alternate route: `/v1/fleets/{fleet_id}/members/` --- This route is cached for up to 5 seconds - * @param fleetId ID for a fleet - * @param datasource The server name you would like data from - * @param language Language to use in the response - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getFleetsFleetIdMembers(fleetId: number, datasource?: string, language?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getFleetsFleetIdMembers(fleetId: number, datasource?: string, language?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getFleetsFleetIdMembers(fleetId: number, datasource?: string, language?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getFleetsFleetIdMembers(fleetId: number, datasource?: string, language?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (fleetId === null || fleetId === undefined) { - throw new Error('Required parameter fleetId was null or undefined when calling getFleetsFleetIdMembers.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (language !== undefined) { - queryParameters = queryParameters.set('language', language); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/fleets/${encodeURIComponent(String(fleetId))}/members/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get fleet wings - * Return information about wings in a fleet --- Alternate route: `/dev/fleets/{fleet_id}/wings/` Alternate route: `/legacy/fleets/{fleet_id}/wings/` Alternate route: `/v1/fleets/{fleet_id}/wings/` --- This route is cached for up to 5 seconds - * @param fleetId ID for a fleet - * @param datasource The server name you would like data from - * @param language Language to use in the response - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getFleetsFleetIdWings(fleetId: number, datasource?: string, language?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getFleetsFleetIdWings(fleetId: number, datasource?: string, language?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getFleetsFleetIdWings(fleetId: number, datasource?: string, language?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getFleetsFleetIdWings(fleetId: number, datasource?: string, language?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (fleetId === null || fleetId === undefined) { - throw new Error('Required parameter fleetId was null or undefined when calling getFleetsFleetIdWings.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (language !== undefined) { - queryParameters = queryParameters.set('language', language); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/fleets/${encodeURIComponent(String(fleetId))}/wings/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Create fleet invitation - * Invite a character into the fleet. If a character has a CSPA charge set it is not possible to invite them to the fleet using ESI --- Alternate route: `/dev/fleets/{fleet_id}/members/` Alternate route: `/legacy/fleets/{fleet_id}/members/` Alternate route: `/v1/fleets/{fleet_id}/members/` - * @param fleetId ID for a fleet - * @param invitation Details of the invitation - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public postFleetsFleetIdMembers(fleetId: number, invitation: PostFleetsFleetIdMembersInvitation, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public postFleetsFleetIdMembers(fleetId: number, invitation: PostFleetsFleetIdMembersInvitation, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public postFleetsFleetIdMembers(fleetId: number, invitation: PostFleetsFleetIdMembersInvitation, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public postFleetsFleetIdMembers(fleetId: number, invitation: PostFleetsFleetIdMembersInvitation, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (fleetId === null || fleetId === undefined) { - throw new Error('Required parameter fleetId was null or undefined when calling postFleetsFleetIdMembers.'); - } - if (invitation === null || invitation === undefined) { - throw new Error('Required parameter invitation was null or undefined when calling postFleetsFleetIdMembers.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - let httpContentTypeSelected:string | undefined = this.configuration.selectHeaderContentType(consumes); - if (httpContentTypeSelected != undefined) { - headers = headers.set("Content-Type", httpContentTypeSelected); - } - - return this.httpClient.post(`${this.basePath}/fleets/${encodeURIComponent(String(fleetId))}/members/`, - invitation, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Create fleet wing - * Create a new wing in a fleet --- Alternate route: `/dev/fleets/{fleet_id}/wings/` Alternate route: `/legacy/fleets/{fleet_id}/wings/` Alternate route: `/v1/fleets/{fleet_id}/wings/` - * @param fleetId ID for a fleet - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public postFleetsFleetIdWings(fleetId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public postFleetsFleetIdWings(fleetId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public postFleetsFleetIdWings(fleetId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public postFleetsFleetIdWings(fleetId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (fleetId === null || fleetId === undefined) { - throw new Error('Required parameter fleetId was null or undefined when calling postFleetsFleetIdWings.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.post(`${this.basePath}/fleets/${encodeURIComponent(String(fleetId))}/wings/`, - null, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Create fleet squad - * Create a new squad in a fleet --- Alternate route: `/dev/fleets/{fleet_id}/wings/{wing_id}/squads/` Alternate route: `/legacy/fleets/{fleet_id}/wings/{wing_id}/squads/` Alternate route: `/v1/fleets/{fleet_id}/wings/{wing_id}/squads/` - * @param fleetId ID for a fleet - * @param wingId The wing_id to create squad in - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public postFleetsFleetIdWingsWingIdSquads(fleetId: number, wingId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public postFleetsFleetIdWingsWingIdSquads(fleetId: number, wingId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public postFleetsFleetIdWingsWingIdSquads(fleetId: number, wingId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public postFleetsFleetIdWingsWingIdSquads(fleetId: number, wingId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (fleetId === null || fleetId === undefined) { - throw new Error('Required parameter fleetId was null or undefined when calling postFleetsFleetIdWingsWingIdSquads.'); - } - if (wingId === null || wingId === undefined) { - throw new Error('Required parameter wingId was null or undefined when calling postFleetsFleetIdWingsWingIdSquads.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.post(`${this.basePath}/fleets/${encodeURIComponent(String(fleetId))}/wings/${encodeURIComponent(String(wingId))}/squads/`, - null, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Update fleet - * Update settings about a fleet --- Alternate route: `/dev/fleets/{fleet_id}/` Alternate route: `/legacy/fleets/{fleet_id}/` Alternate route: `/v1/fleets/{fleet_id}/` - * @param fleetId ID for a fleet - * @param newSettings What to update for this fleet - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public putFleetsFleetId(fleetId: number, newSettings: PutFleetsFleetIdNewSettings, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public putFleetsFleetId(fleetId: number, newSettings: PutFleetsFleetIdNewSettings, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public putFleetsFleetId(fleetId: number, newSettings: PutFleetsFleetIdNewSettings, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public putFleetsFleetId(fleetId: number, newSettings: PutFleetsFleetIdNewSettings, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (fleetId === null || fleetId === undefined) { - throw new Error('Required parameter fleetId was null or undefined when calling putFleetsFleetId.'); - } - if (newSettings === null || newSettings === undefined) { - throw new Error('Required parameter newSettings was null or undefined when calling putFleetsFleetId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - let httpContentTypeSelected:string | undefined = this.configuration.selectHeaderContentType(consumes); - if (httpContentTypeSelected != undefined) { - headers = headers.set("Content-Type", httpContentTypeSelected); - } - - return this.httpClient.put(`${this.basePath}/fleets/${encodeURIComponent(String(fleetId))}/`, - newSettings, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Move fleet member - * Move a fleet member around --- Alternate route: `/dev/fleets/{fleet_id}/members/{member_id}/` Alternate route: `/legacy/fleets/{fleet_id}/members/{member_id}/` Alternate route: `/v1/fleets/{fleet_id}/members/{member_id}/` - * @param fleetId ID for a fleet - * @param memberId The character ID of a member in this fleet - * @param movement Details of the invitation - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public putFleetsFleetIdMembersMemberId(fleetId: number, memberId: number, movement: PutFleetsFleetIdMembersMemberIdMovement, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public putFleetsFleetIdMembersMemberId(fleetId: number, memberId: number, movement: PutFleetsFleetIdMembersMemberIdMovement, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public putFleetsFleetIdMembersMemberId(fleetId: number, memberId: number, movement: PutFleetsFleetIdMembersMemberIdMovement, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public putFleetsFleetIdMembersMemberId(fleetId: number, memberId: number, movement: PutFleetsFleetIdMembersMemberIdMovement, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (fleetId === null || fleetId === undefined) { - throw new Error('Required parameter fleetId was null or undefined when calling putFleetsFleetIdMembersMemberId.'); - } - if (memberId === null || memberId === undefined) { - throw new Error('Required parameter memberId was null or undefined when calling putFleetsFleetIdMembersMemberId.'); - } - if (movement === null || movement === undefined) { - throw new Error('Required parameter movement was null or undefined when calling putFleetsFleetIdMembersMemberId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - let httpContentTypeSelected:string | undefined = this.configuration.selectHeaderContentType(consumes); - if (httpContentTypeSelected != undefined) { - headers = headers.set("Content-Type", httpContentTypeSelected); - } - - return this.httpClient.put(`${this.basePath}/fleets/${encodeURIComponent(String(fleetId))}/members/${encodeURIComponent(String(memberId))}/`, - movement, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Rename fleet squad - * Rename a fleet squad --- Alternate route: `/dev/fleets/{fleet_id}/squads/{squad_id}/` Alternate route: `/legacy/fleets/{fleet_id}/squads/{squad_id}/` Alternate route: `/v1/fleets/{fleet_id}/squads/{squad_id}/` - * @param fleetId ID for a fleet - * @param naming New name of the squad - * @param squadId The squad to rename - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public putFleetsFleetIdSquadsSquadId(fleetId: number, naming: PutFleetsFleetIdSquadsSquadIdNaming, squadId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public putFleetsFleetIdSquadsSquadId(fleetId: number, naming: PutFleetsFleetIdSquadsSquadIdNaming, squadId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public putFleetsFleetIdSquadsSquadId(fleetId: number, naming: PutFleetsFleetIdSquadsSquadIdNaming, squadId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public putFleetsFleetIdSquadsSquadId(fleetId: number, naming: PutFleetsFleetIdSquadsSquadIdNaming, squadId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (fleetId === null || fleetId === undefined) { - throw new Error('Required parameter fleetId was null or undefined when calling putFleetsFleetIdSquadsSquadId.'); - } - if (naming === null || naming === undefined) { - throw new Error('Required parameter naming was null or undefined when calling putFleetsFleetIdSquadsSquadId.'); - } - if (squadId === null || squadId === undefined) { - throw new Error('Required parameter squadId was null or undefined when calling putFleetsFleetIdSquadsSquadId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - let httpContentTypeSelected:string | undefined = this.configuration.selectHeaderContentType(consumes); - if (httpContentTypeSelected != undefined) { - headers = headers.set("Content-Type", httpContentTypeSelected); - } - - return this.httpClient.put(`${this.basePath}/fleets/${encodeURIComponent(String(fleetId))}/squads/${encodeURIComponent(String(squadId))}/`, - naming, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Rename fleet wing - * Rename a fleet wing --- Alternate route: `/dev/fleets/{fleet_id}/wings/{wing_id}/` Alternate route: `/legacy/fleets/{fleet_id}/wings/{wing_id}/` Alternate route: `/v1/fleets/{fleet_id}/wings/{wing_id}/` - * @param fleetId ID for a fleet - * @param naming New name of the wing - * @param wingId The wing to rename - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public putFleetsFleetIdWingsWingId(fleetId: number, naming: PutFleetsFleetIdWingsWingIdNaming, wingId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public putFleetsFleetIdWingsWingId(fleetId: number, naming: PutFleetsFleetIdWingsWingIdNaming, wingId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public putFleetsFleetIdWingsWingId(fleetId: number, naming: PutFleetsFleetIdWingsWingIdNaming, wingId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public putFleetsFleetIdWingsWingId(fleetId: number, naming: PutFleetsFleetIdWingsWingIdNaming, wingId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (fleetId === null || fleetId === undefined) { - throw new Error('Required parameter fleetId was null or undefined when calling putFleetsFleetIdWingsWingId.'); - } - if (naming === null || naming === undefined) { - throw new Error('Required parameter naming was null or undefined when calling putFleetsFleetIdWingsWingId.'); - } - if (wingId === null || wingId === undefined) { - throw new Error('Required parameter wingId was null or undefined when calling putFleetsFleetIdWingsWingId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - let httpContentTypeSelected:string | undefined = this.configuration.selectHeaderContentType(consumes); - if (httpContentTypeSelected != undefined) { - headers = headers.set("Content-Type", httpContentTypeSelected); - } - - return this.httpClient.put(`${this.basePath}/fleets/${encodeURIComponent(String(fleetId))}/wings/${encodeURIComponent(String(wingId))}/`, - naming, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/incursions.service.ts b/src/app/eve-online-angular-client/api/incursions.service.ts deleted file mode 100755 index 90bec77..0000000 --- a/src/app/eve-online-angular-client/api/incursions.service.ts +++ /dev/null @@ -1,111 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { GetIncursions200Ok } from '../model/getIncursions200Ok'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class IncursionsService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * List incursions - * Return a list of current incursions --- Alternate route: `/dev/incursions/` Alternate route: `/legacy/incursions/` Alternate route: `/v1/incursions/` --- This route is cached for up to 300 seconds - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getIncursions(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getIncursions(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getIncursions(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getIncursions(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/incursions/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/industry.service.ts b/src/app/eve-online-angular-client/api/industry.service.ts deleted file mode 100755 index 63db7e1..0000000 --- a/src/app/eve-online-angular-client/api/industry.service.ts +++ /dev/null @@ -1,604 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { Forbidden } from '../model/forbidden'; -import { GetCharactersCharacterIdIndustryJobs200Ok } from '../model/getCharactersCharacterIdIndustryJobs200Ok'; -import { GetCharactersCharacterIdMining200Ok } from '../model/getCharactersCharacterIdMining200Ok'; -import { GetCorporationCorporationIdMiningExtractions200Ok } from '../model/getCorporationCorporationIdMiningExtractions200Ok'; -import { GetCorporationCorporationIdMiningObservers200Ok } from '../model/getCorporationCorporationIdMiningObservers200Ok'; -import { GetCorporationCorporationIdMiningObserversObserverId200Ok } from '../model/getCorporationCorporationIdMiningObserversObserverId200Ok'; -import { GetCorporationsCorporationIdIndustryJobs200Ok } from '../model/getCorporationsCorporationIdIndustryJobs200Ok'; -import { GetIndustryFacilities200Ok } from '../model/getIndustryFacilities200Ok'; -import { GetIndustrySystems200Ok } from '../model/getIndustrySystems200Ok'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class IndustryService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * List character industry jobs - * List industry jobs placed by a character --- Alternate route: `/dev/characters/{character_id}/industry/jobs/` Alternate route: `/legacy/characters/{character_id}/industry/jobs/` Alternate route: `/v1/characters/{character_id}/industry/jobs/` --- This route is cached for up to 300 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param includeCompleted Whether retrieve completed character industry jobs as well - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdIndustryJobs(characterId: number, datasource?: string, includeCompleted?: boolean, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdIndustryJobs(characterId: number, datasource?: string, includeCompleted?: boolean, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdIndustryJobs(characterId: number, datasource?: string, includeCompleted?: boolean, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdIndustryJobs(characterId: number, datasource?: string, includeCompleted?: boolean, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdIndustryJobs.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (includeCompleted !== undefined) { - queryParameters = queryParameters.set('include_completed', includeCompleted); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/industry/jobs/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Character mining ledger - * Paginated record of all mining done by a character for the past 30 days --- Alternate route: `/dev/characters/{character_id}/mining/` Alternate route: `/legacy/characters/{character_id}/mining/` Alternate route: `/v1/characters/{character_id}/mining/` --- This route is cached for up to 600 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdMining(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdMining(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdMining(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdMining(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdMining.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/mining/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Moon extraction timers - * Extraction timers for all moon chunks being extracted by refineries belonging to a corporation. --- Alternate route: `/dev/corporation/{corporation_id}/mining/extractions/` Alternate route: `/legacy/corporation/{corporation_id}/mining/extractions/` Alternate route: `/v1/corporation/{corporation_id}/mining/extractions/` --- This route is cached for up to 1800 seconds --- Requires one of the following EVE corporation role(s): Structure_manager - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationCorporationIdMiningExtractions(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationCorporationIdMiningExtractions(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationCorporationIdMiningExtractions(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationCorporationIdMiningExtractions(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationCorporationIdMiningExtractions.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporation/${encodeURIComponent(String(corporationId))}/mining/extractions/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Corporation mining observers - * Paginated list of all entities capable of observing and recording mining for a corporation --- Alternate route: `/dev/corporation/{corporation_id}/mining/observers/` Alternate route: `/legacy/corporation/{corporation_id}/mining/observers/` Alternate route: `/v1/corporation/{corporation_id}/mining/observers/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Accountant - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationCorporationIdMiningObservers(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationCorporationIdMiningObservers(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationCorporationIdMiningObservers(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationCorporationIdMiningObservers(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationCorporationIdMiningObservers.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporation/${encodeURIComponent(String(corporationId))}/mining/observers/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Observed corporation mining - * Paginated record of all mining seen by an observer --- Alternate route: `/dev/corporation/{corporation_id}/mining/observers/{observer_id}/` Alternate route: `/legacy/corporation/{corporation_id}/mining/observers/{observer_id}/` Alternate route: `/v1/corporation/{corporation_id}/mining/observers/{observer_id}/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Accountant - * @param corporationId An EVE corporation ID - * @param observerId A mining observer id - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationCorporationIdMiningObserversObserverId(corporationId: number, observerId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationCorporationIdMiningObserversObserverId(corporationId: number, observerId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationCorporationIdMiningObserversObserverId(corporationId: number, observerId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationCorporationIdMiningObserversObserverId(corporationId: number, observerId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationCorporationIdMiningObserversObserverId.'); - } - if (observerId === null || observerId === undefined) { - throw new Error('Required parameter observerId was null or undefined when calling getCorporationCorporationIdMiningObserversObserverId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporation/${encodeURIComponent(String(corporationId))}/mining/observers/${encodeURIComponent(String(observerId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List corporation industry jobs - * List industry jobs run by a corporation --- Alternate route: `/dev/corporations/{corporation_id}/industry/jobs/` Alternate route: `/legacy/corporations/{corporation_id}/industry/jobs/` Alternate route: `/v1/corporations/{corporation_id}/industry/jobs/` --- This route is cached for up to 300 seconds --- Requires one of the following EVE corporation role(s): FactoryManager - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param includeCompleted Whether retrieve completed industry jobs as well - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdIndustryJobs(corporationId: number, datasource?: string, includeCompleted?: boolean, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdIndustryJobs(corporationId: number, datasource?: string, includeCompleted?: boolean, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdIndustryJobs(corporationId: number, datasource?: string, includeCompleted?: boolean, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdIndustryJobs(corporationId: number, datasource?: string, includeCompleted?: boolean, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdIndustryJobs.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (includeCompleted !== undefined) { - queryParameters = queryParameters.set('include_completed', includeCompleted); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/industry/jobs/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List industry facilities - * Return a list of industry facilities --- Alternate route: `/dev/industry/facilities/` Alternate route: `/legacy/industry/facilities/` Alternate route: `/v1/industry/facilities/` --- This route is cached for up to 3600 seconds - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getIndustryFacilities(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getIndustryFacilities(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getIndustryFacilities(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getIndustryFacilities(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/industry/facilities/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List solar system cost indices - * Return cost indices for solar systems --- Alternate route: `/dev/industry/systems/` Alternate route: `/legacy/industry/systems/` Alternate route: `/v1/industry/systems/` --- This route is cached for up to 3600 seconds - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getIndustrySystems(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getIndustrySystems(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getIndustrySystems(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getIndustrySystems(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/industry/systems/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/insurance.service.ts b/src/app/eve-online-angular-client/api/insurance.service.ts deleted file mode 100755 index 633c52c..0000000 --- a/src/app/eve-online-angular-client/api/insurance.service.ts +++ /dev/null @@ -1,115 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { GetInsurancePrices200Ok } from '../model/getInsurancePrices200Ok'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class InsuranceService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * List insurance levels - * Return available insurance levels for all ship types --- Alternate route: `/dev/insurance/prices/` Alternate route: `/legacy/insurance/prices/` Alternate route: `/v1/insurance/prices/` --- This route is cached for up to 3600 seconds - * @param datasource The server name you would like data from - * @param language Language to use in the response - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getInsurancePrices(datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getInsurancePrices(datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getInsurancePrices(datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getInsurancePrices(datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (language !== undefined) { - queryParameters = queryParameters.set('language', language); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/insurance/prices/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/killmails.service.ts b/src/app/eve-online-angular-client/api/killmails.service.ts deleted file mode 100755 index 58e6489..0000000 --- a/src/app/eve-online-angular-client/api/killmails.service.ts +++ /dev/null @@ -1,269 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { Forbidden } from '../model/forbidden'; -import { GetCharactersCharacterIdKillmailsRecent200Ok } from '../model/getCharactersCharacterIdKillmailsRecent200Ok'; -import { GetCorporationsCorporationIdKillmailsRecent200Ok } from '../model/getCorporationsCorporationIdKillmailsRecent200Ok'; -import { GetKillmailsKillmailIdKillmailHashOk } from '../model/getKillmailsKillmailIdKillmailHashOk'; -import { GetKillmailsKillmailIdKillmailHashUnprocessableEntity } from '../model/getKillmailsKillmailIdKillmailHashUnprocessableEntity'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class KillmailsService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Get character kills and losses - * Return a list of character's recent kills and losses --- Alternate route: `/dev/characters/{character_id}/killmails/recent/` Alternate route: `/legacy/characters/{character_id}/killmails/recent/` Alternate route: `/v1/characters/{character_id}/killmails/recent/` --- This route is cached for up to 120 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param maxCount How many killmails to return at maximum - * @param maxKillId Only return killmails with ID smaller than this. - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdKillmailsRecent(characterId: number, datasource?: string, maxCount?: number, maxKillId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdKillmailsRecent(characterId: number, datasource?: string, maxCount?: number, maxKillId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdKillmailsRecent(characterId: number, datasource?: string, maxCount?: number, maxKillId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdKillmailsRecent(characterId: number, datasource?: string, maxCount?: number, maxKillId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdKillmailsRecent.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (maxCount !== undefined) { - queryParameters = queryParameters.set('max_count', maxCount); - } - if (maxKillId !== undefined) { - queryParameters = queryParameters.set('max_kill_id', maxKillId); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/killmails/recent/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation kills and losses - * Get a list of corporation's recent kills and losses --- Alternate route: `/dev/corporations/{corporation_id}/killmails/recent/` Alternate route: `/legacy/corporations/{corporation_id}/killmails/recent/` Alternate route: `/v1/corporations/{corporation_id}/killmails/recent/` --- This route is cached for up to 300 seconds --- Requires one of the following EVE corporation role(s): Director - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param maxKillId Only return killmails with ID smaller than this - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdKillmailsRecent(corporationId: number, datasource?: string, maxKillId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdKillmailsRecent(corporationId: number, datasource?: string, maxKillId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdKillmailsRecent(corporationId: number, datasource?: string, maxKillId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdKillmailsRecent(corporationId: number, datasource?: string, maxKillId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdKillmailsRecent.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (maxKillId !== undefined) { - queryParameters = queryParameters.set('max_kill_id', maxKillId); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/killmails/recent/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get a single killmail - * Return a single killmail from its ID and hash --- Alternate route: `/dev/killmails/{killmail_id}/{killmail_hash}/` Alternate route: `/legacy/killmails/{killmail_id}/{killmail_hash}/` Alternate route: `/v1/killmails/{killmail_id}/{killmail_hash}/` --- This route is cached for up to 1209600 seconds - * @param killmailHash The killmail hash for verification - * @param killmailId The killmail ID to be queried - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getKillmailsKillmailIdKillmailHash(killmailHash: string, killmailId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getKillmailsKillmailIdKillmailHash(killmailHash: string, killmailId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getKillmailsKillmailIdKillmailHash(killmailHash: string, killmailId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getKillmailsKillmailIdKillmailHash(killmailHash: string, killmailId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (killmailHash === null || killmailHash === undefined) { - throw new Error('Required parameter killmailHash was null or undefined when calling getKillmailsKillmailIdKillmailHash.'); - } - if (killmailId === null || killmailId === undefined) { - throw new Error('Required parameter killmailId was null or undefined when calling getKillmailsKillmailIdKillmailHash.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/killmails/${encodeURIComponent(String(killmailId))}/${encodeURIComponent(String(killmailHash))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/location.service.ts b/src/app/eve-online-angular-client/api/location.service.ts deleted file mode 100755 index 1d37a7d..0000000 --- a/src/app/eve-online-angular-client/api/location.service.ts +++ /dev/null @@ -1,264 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { Forbidden } from '../model/forbidden'; -import { GetCharactersCharacterIdLocationOk } from '../model/getCharactersCharacterIdLocationOk'; -import { GetCharactersCharacterIdOnlineOk } from '../model/getCharactersCharacterIdOnlineOk'; -import { GetCharactersCharacterIdShipOk } from '../model/getCharactersCharacterIdShipOk'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class LocationService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Get character location - * Information about the characters current location. Returns the current solar system id, and also the current station or structure ID if applicable. --- Alternate route: `/dev/characters/{character_id}/location/` Alternate route: `/legacy/characters/{character_id}/location/` Alternate route: `/v1/characters/{character_id}/location/` --- This route is cached for up to 5 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdLocation(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCharactersCharacterIdLocation(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdLocation(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdLocation(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdLocation.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/location/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get character online - * Checks if the character is currently online --- Alternate route: `/dev/characters/{character_id}/online/` Alternate route: `/v2/characters/{character_id}/online/` --- This route is cached for up to 60 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdOnline(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCharactersCharacterIdOnline(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdOnline(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdOnline(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdOnline.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/online/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get current ship - * Get the current ship type, name and id --- Alternate route: `/dev/characters/{character_id}/ship/` Alternate route: `/legacy/characters/{character_id}/ship/` Alternate route: `/v1/characters/{character_id}/ship/` --- This route is cached for up to 5 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdShip(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCharactersCharacterIdShip(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdShip(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdShip(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdShip.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/ship/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/loyalty.service.ts b/src/app/eve-online-angular-client/api/loyalty.service.ts deleted file mode 100755 index 330f05e..0000000 --- a/src/app/eve-online-angular-client/api/loyalty.service.ts +++ /dev/null @@ -1,185 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { Forbidden } from '../model/forbidden'; -import { GetCharactersCharacterIdLoyaltyPoints200Ok } from '../model/getCharactersCharacterIdLoyaltyPoints200Ok'; -import { GetLoyaltyStoresCorporationIdOffers200Ok } from '../model/getLoyaltyStoresCorporationIdOffers200Ok'; -import { GetLoyaltyStoresCorporationIdOffersNotFound } from '../model/getLoyaltyStoresCorporationIdOffersNotFound'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class LoyaltyService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Get loyalty points - * Return a list of loyalty points for all corporations the character has worked for --- Alternate route: `/dev/characters/{character_id}/loyalty/points/` Alternate route: `/legacy/characters/{character_id}/loyalty/points/` Alternate route: `/v1/characters/{character_id}/loyalty/points/` --- This route is cached for up to 3600 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdLoyaltyPoints(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdLoyaltyPoints(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdLoyaltyPoints(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdLoyaltyPoints(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdLoyaltyPoints.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/loyalty/points/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List loyalty store offers - * Return a list of offers from a specific corporation's loyalty store --- Alternate route: `/dev/loyalty/stores/{corporation_id}/offers/` Alternate route: `/legacy/loyalty/stores/{corporation_id}/offers/` Alternate route: `/v1/loyalty/stores/{corporation_id}/offers/` --- This route expires daily at 11:05 - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getLoyaltyStoresCorporationIdOffers(corporationId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getLoyaltyStoresCorporationIdOffers(corporationId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getLoyaltyStoresCorporationIdOffers(corporationId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getLoyaltyStoresCorporationIdOffers(corporationId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getLoyaltyStoresCorporationIdOffers.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/loyalty/stores/${encodeURIComponent(String(corporationId))}/offers/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/mail.service.ts b/src/app/eve-online-angular-client/api/mail.service.ts deleted file mode 100755 index 2c2c736..0000000 --- a/src/app/eve-online-angular-client/api/mail.service.ts +++ /dev/null @@ -1,725 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { DeleteCharactersCharacterIdMailLabelsLabelIdUnprocessableEntity } from '../model/deleteCharactersCharacterIdMailLabelsLabelIdUnprocessableEntity'; -import { Forbidden } from '../model/forbidden'; -import { GetCharactersCharacterIdMail200Ok } from '../model/getCharactersCharacterIdMail200Ok'; -import { GetCharactersCharacterIdMailLabelsOk } from '../model/getCharactersCharacterIdMailLabelsOk'; -import { GetCharactersCharacterIdMailLists200Ok } from '../model/getCharactersCharacterIdMailLists200Ok'; -import { GetCharactersCharacterIdMailMailIdNotFound } from '../model/getCharactersCharacterIdMailMailIdNotFound'; -import { GetCharactersCharacterIdMailMailIdOk } from '../model/getCharactersCharacterIdMailMailIdOk'; -import { InternalServerError } from '../model/internalServerError'; -import { PostCharactersCharacterIdMailBadRequest } from '../model/postCharactersCharacterIdMailBadRequest'; -import { PostCharactersCharacterIdMailLabelsLabel } from '../model/postCharactersCharacterIdMailLabelsLabel'; -import { PostCharactersCharacterIdMailMail } from '../model/postCharactersCharacterIdMailMail'; -import { PutCharactersCharacterIdMailMailIdBadRequest } from '../model/putCharactersCharacterIdMailMailIdBadRequest'; -import { PutCharactersCharacterIdMailMailIdContents } from '../model/putCharactersCharacterIdMailMailIdContents'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class MailService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Delete a mail label - * Delete a mail label --- Alternate route: `/dev/characters/{character_id}/mail/labels/{label_id}/` Alternate route: `/legacy/characters/{character_id}/mail/labels/{label_id}/` Alternate route: `/v1/characters/{character_id}/mail/labels/{label_id}/` - * @param characterId An EVE character ID - * @param labelId An EVE label id - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public deleteCharactersCharacterIdMailLabelsLabelId(characterId: number, labelId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public deleteCharactersCharacterIdMailLabelsLabelId(characterId: number, labelId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public deleteCharactersCharacterIdMailLabelsLabelId(characterId: number, labelId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public deleteCharactersCharacterIdMailLabelsLabelId(characterId: number, labelId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling deleteCharactersCharacterIdMailLabelsLabelId.'); - } - if (labelId === null || labelId === undefined) { - throw new Error('Required parameter labelId was null or undefined when calling deleteCharactersCharacterIdMailLabelsLabelId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.delete(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/mail/labels/${encodeURIComponent(String(labelId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Delete a mail - * Delete a mail --- Alternate route: `/dev/characters/{character_id}/mail/{mail_id}/` Alternate route: `/legacy/characters/{character_id}/mail/{mail_id}/` Alternate route: `/v1/characters/{character_id}/mail/{mail_id}/` - * @param characterId An EVE character ID - * @param mailId An EVE mail ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public deleteCharactersCharacterIdMailMailId(characterId: number, mailId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public deleteCharactersCharacterIdMailMailId(characterId: number, mailId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public deleteCharactersCharacterIdMailMailId(characterId: number, mailId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public deleteCharactersCharacterIdMailMailId(characterId: number, mailId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling deleteCharactersCharacterIdMailMailId.'); - } - if (mailId === null || mailId === undefined) { - throw new Error('Required parameter mailId was null or undefined when calling deleteCharactersCharacterIdMailMailId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.delete(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/mail/${encodeURIComponent(String(mailId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Return mail headers - * Return the 50 most recent mail headers belonging to the character that match the query criteria. Queries can be filtered by label, and last_mail_id can be used to paginate backwards. --- Alternate route: `/dev/characters/{character_id}/mail/` Alternate route: `/legacy/characters/{character_id}/mail/` Alternate route: `/v1/characters/{character_id}/mail/` --- This route is cached for up to 30 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param labels Fetch only mails that match one or more of the given labels - * @param lastMailId List only mail with an ID lower than the given ID, if present - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdMail(characterId: number, datasource?: string, labels?: Array, lastMailId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdMail(characterId: number, datasource?: string, labels?: Array, lastMailId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdMail(characterId: number, datasource?: string, labels?: Array, lastMailId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdMail(characterId: number, datasource?: string, labels?: Array, lastMailId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdMail.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (labels) { - queryParameters = queryParameters.set('labels', labels.join(COLLECTION_FORMATS['csv'])); - } - if (lastMailId !== undefined) { - queryParameters = queryParameters.set('last_mail_id', lastMailId); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/mail/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get mail labels and unread counts - * Return a list of the users mail labels, unread counts for each label and a total unread count. --- Alternate route: `/dev/characters/{character_id}/mail/labels/` Alternate route: `/v3/characters/{character_id}/mail/labels/` --- This route is cached for up to 30 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdMailLabels(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCharactersCharacterIdMailLabels(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdMailLabels(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdMailLabels(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdMailLabels.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/mail/labels/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Return mailing list subscriptions - * Return all mailing lists that the character is subscribed to --- Alternate route: `/dev/characters/{character_id}/mail/lists/` Alternate route: `/legacy/characters/{character_id}/mail/lists/` Alternate route: `/v1/characters/{character_id}/mail/lists/` --- This route is cached for up to 120 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdMailLists(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdMailLists(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdMailLists(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdMailLists(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdMailLists.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/mail/lists/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Return a mail - * Return the contents of an EVE mail --- Alternate route: `/dev/characters/{character_id}/mail/{mail_id}/` Alternate route: `/legacy/characters/{character_id}/mail/{mail_id}/` Alternate route: `/v1/characters/{character_id}/mail/{mail_id}/` --- This route is cached for up to 30 seconds - * @param characterId An EVE character ID - * @param mailId An EVE mail ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdMailMailId(characterId: number, mailId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCharactersCharacterIdMailMailId(characterId: number, mailId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdMailMailId(characterId: number, mailId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdMailMailId(characterId: number, mailId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdMailMailId.'); - } - if (mailId === null || mailId === undefined) { - throw new Error('Required parameter mailId was null or undefined when calling getCharactersCharacterIdMailMailId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/mail/${encodeURIComponent(String(mailId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Send a new mail - * Create and send a new mail --- Alternate route: `/dev/characters/{character_id}/mail/` Alternate route: `/legacy/characters/{character_id}/mail/` Alternate route: `/v1/characters/{character_id}/mail/` - * @param characterId An EVE character ID - * @param mail The mail to send - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public postCharactersCharacterIdMail(characterId: number, mail: PostCharactersCharacterIdMailMail, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public postCharactersCharacterIdMail(characterId: number, mail: PostCharactersCharacterIdMailMail, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public postCharactersCharacterIdMail(characterId: number, mail: PostCharactersCharacterIdMailMail, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public postCharactersCharacterIdMail(characterId: number, mail: PostCharactersCharacterIdMailMail, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling postCharactersCharacterIdMail.'); - } - if (mail === null || mail === undefined) { - throw new Error('Required parameter mail was null or undefined when calling postCharactersCharacterIdMail.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - let httpContentTypeSelected:string | undefined = this.configuration.selectHeaderContentType(consumes); - if (httpContentTypeSelected != undefined) { - headers = headers.set("Content-Type", httpContentTypeSelected); - } - - return this.httpClient.post(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/mail/`, - mail, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Create a mail label - * Create a mail label --- Alternate route: `/dev/characters/{character_id}/mail/labels/` Alternate route: `/legacy/characters/{character_id}/mail/labels/` Alternate route: `/v2/characters/{character_id}/mail/labels/` - * @param characterId An EVE character ID - * @param label Label to create - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public postCharactersCharacterIdMailLabels(characterId: number, label: PostCharactersCharacterIdMailLabelsLabel, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public postCharactersCharacterIdMailLabels(characterId: number, label: PostCharactersCharacterIdMailLabelsLabel, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public postCharactersCharacterIdMailLabels(characterId: number, label: PostCharactersCharacterIdMailLabelsLabel, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public postCharactersCharacterIdMailLabels(characterId: number, label: PostCharactersCharacterIdMailLabelsLabel, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling postCharactersCharacterIdMailLabels.'); - } - if (label === null || label === undefined) { - throw new Error('Required parameter label was null or undefined when calling postCharactersCharacterIdMailLabels.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - let httpContentTypeSelected:string | undefined = this.configuration.selectHeaderContentType(consumes); - if (httpContentTypeSelected != undefined) { - headers = headers.set("Content-Type", httpContentTypeSelected); - } - - return this.httpClient.post(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/mail/labels/`, - label, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Update metadata about a mail - * Update metadata about a mail --- Alternate route: `/dev/characters/{character_id}/mail/{mail_id}/` Alternate route: `/legacy/characters/{character_id}/mail/{mail_id}/` Alternate route: `/v1/characters/{character_id}/mail/{mail_id}/` - * @param characterId An EVE character ID - * @param contents Data used to update the mail - * @param mailId An EVE mail ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public putCharactersCharacterIdMailMailId(characterId: number, contents: PutCharactersCharacterIdMailMailIdContents, mailId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public putCharactersCharacterIdMailMailId(characterId: number, contents: PutCharactersCharacterIdMailMailIdContents, mailId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public putCharactersCharacterIdMailMailId(characterId: number, contents: PutCharactersCharacterIdMailMailIdContents, mailId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public putCharactersCharacterIdMailMailId(characterId: number, contents: PutCharactersCharacterIdMailMailIdContents, mailId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling putCharactersCharacterIdMailMailId.'); - } - if (contents === null || contents === undefined) { - throw new Error('Required parameter contents was null or undefined when calling putCharactersCharacterIdMailMailId.'); - } - if (mailId === null || mailId === undefined) { - throw new Error('Required parameter mailId was null or undefined when calling putCharactersCharacterIdMailMailId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - let httpContentTypeSelected:string | undefined = this.configuration.selectHeaderContentType(consumes); - if (httpContentTypeSelected != undefined) { - headers = headers.set("Content-Type", httpContentTypeSelected); - } - - return this.httpClient.put(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/mail/${encodeURIComponent(String(mailId))}/`, - contents, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/market.service.ts b/src/app/eve-online-angular-client/api/market.service.ts deleted file mode 100755 index d3a934f..0000000 --- a/src/app/eve-online-angular-client/api/market.service.ts +++ /dev/null @@ -1,775 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { Forbidden } from '../model/forbidden'; -import { GetCharactersCharacterIdOrders200Ok } from '../model/getCharactersCharacterIdOrders200Ok'; -import { GetCharactersCharacterIdOrdersHistory200Ok } from '../model/getCharactersCharacterIdOrdersHistory200Ok'; -import { GetCorporationsCorporationIdOrders200Ok } from '../model/getCorporationsCorporationIdOrders200Ok'; -import { GetCorporationsCorporationIdOrdersHistory200Ok } from '../model/getCorporationsCorporationIdOrdersHistory200Ok'; -import { GetMarketsGroupsMarketGroupIdNotFound } from '../model/getMarketsGroupsMarketGroupIdNotFound'; -import { GetMarketsGroupsMarketGroupIdOk } from '../model/getMarketsGroupsMarketGroupIdOk'; -import { GetMarketsPrices200Ok } from '../model/getMarketsPrices200Ok'; -import { GetMarketsRegionIdHistory200Ok } from '../model/getMarketsRegionIdHistory200Ok'; -import { GetMarketsRegionIdHistoryUnprocessableEntity } from '../model/getMarketsRegionIdHistoryUnprocessableEntity'; -import { GetMarketsRegionIdOrders200Ok } from '../model/getMarketsRegionIdOrders200Ok'; -import { GetMarketsRegionIdOrdersUnprocessableEntity } from '../model/getMarketsRegionIdOrdersUnprocessableEntity'; -import { GetMarketsStructuresStructureId200Ok } from '../model/getMarketsStructuresStructureId200Ok'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class MarketService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * List open orders from a character - * List open market orders placed by a character --- Alternate route: `/dev/characters/{character_id}/orders/` Alternate route: `/v2/characters/{character_id}/orders/` --- This route is cached for up to 1200 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdOrders(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdOrders(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdOrders(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdOrders(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdOrders.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/orders/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List historical orders by a character - * List cancelled and expired market orders placed by a character up to 90 days in the past. --- Alternate route: `/dev/characters/{character_id}/orders/history/` Alternate route: `/legacy/characters/{character_id}/orders/history/` Alternate route: `/v1/characters/{character_id}/orders/history/` --- This route is cached for up to 3600 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdOrdersHistory(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdOrdersHistory(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdOrdersHistory(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdOrdersHistory(characterId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdOrdersHistory.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/orders/history/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List open orders from a corporation - * List open market orders placed on behalf of a corporation --- Alternate route: `/dev/corporations/{corporation_id}/orders/` Alternate route: `/v2/corporations/{corporation_id}/orders/` --- This route is cached for up to 1200 seconds --- Requires one of the following EVE corporation role(s): Accountant, Trader - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdOrders(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdOrders(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdOrders(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdOrders(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdOrders.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/orders/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List historical orders from a corporation - * List cancelled and expired market orders placed on behalf of a corporation up to 90 days in the past. --- Alternate route: `/dev/corporations/{corporation_id}/orders/history/` Alternate route: `/legacy/corporations/{corporation_id}/orders/history/` Alternate route: `/v1/corporations/{corporation_id}/orders/history/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Accountant, Trader - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdOrdersHistory(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdOrdersHistory(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdOrdersHistory(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdOrdersHistory(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdOrdersHistory.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/orders/history/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get item groups - * Get a list of item groups --- Alternate route: `/dev/markets/groups/` Alternate route: `/legacy/markets/groups/` Alternate route: `/v1/markets/groups/` --- This route expires daily at 11:05 - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getMarketsGroups(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getMarketsGroups(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getMarketsGroups(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getMarketsGroups(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/markets/groups/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get item group information - * Get information on an item group --- Alternate route: `/dev/markets/groups/{market_group_id}/` Alternate route: `/legacy/markets/groups/{market_group_id}/` Alternate route: `/v1/markets/groups/{market_group_id}/` --- This route expires daily at 11:05 - * @param marketGroupId An Eve item group ID - * @param datasource The server name you would like data from - * @param language Language to use in the response - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getMarketsGroupsMarketGroupId(marketGroupId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getMarketsGroupsMarketGroupId(marketGroupId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getMarketsGroupsMarketGroupId(marketGroupId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getMarketsGroupsMarketGroupId(marketGroupId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (marketGroupId === null || marketGroupId === undefined) { - throw new Error('Required parameter marketGroupId was null or undefined when calling getMarketsGroupsMarketGroupId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (language !== undefined) { - queryParameters = queryParameters.set('language', language); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/markets/groups/${encodeURIComponent(String(marketGroupId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List market prices - * Return a list of prices --- Alternate route: `/dev/markets/prices/` Alternate route: `/legacy/markets/prices/` Alternate route: `/v1/markets/prices/` --- This route is cached for up to 3600 seconds - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getMarketsPrices(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getMarketsPrices(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getMarketsPrices(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getMarketsPrices(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/markets/prices/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List historical market statistics in a region - * Return a list of historical market statistics for the specified type in a region --- Alternate route: `/dev/markets/{region_id}/history/` Alternate route: `/legacy/markets/{region_id}/history/` Alternate route: `/v1/markets/{region_id}/history/` --- This route is cached for up to 3600 seconds - * @param regionId Return statistics in this region - * @param typeId Return statistics for this type - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getMarketsRegionIdHistory(regionId: number, typeId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getMarketsRegionIdHistory(regionId: number, typeId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getMarketsRegionIdHistory(regionId: number, typeId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getMarketsRegionIdHistory(regionId: number, typeId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (regionId === null || regionId === undefined) { - throw new Error('Required parameter regionId was null or undefined when calling getMarketsRegionIdHistory.'); - } - if (typeId === null || typeId === undefined) { - throw new Error('Required parameter typeId was null or undefined when calling getMarketsRegionIdHistory.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (typeId !== undefined) { - queryParameters = queryParameters.set('type_id', typeId); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/markets/${encodeURIComponent(String(regionId))}/history/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List orders in a region - * Return a list of orders in a region --- Alternate route: `/dev/markets/{region_id}/orders/` Alternate route: `/legacy/markets/{region_id}/orders/` Alternate route: `/v1/markets/{region_id}/orders/` --- This route is cached for up to 300 seconds - * @param orderType Filter buy/sell orders, return all orders by default. If you query without type_id, we always return both buy and sell orders. - * @param regionId Return orders in this region - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param typeId Return orders only for this type - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getMarketsRegionIdOrders(orderType: string, regionId: number, datasource?: string, page?: number, typeId?: number, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getMarketsRegionIdOrders(orderType: string, regionId: number, datasource?: string, page?: number, typeId?: number, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getMarketsRegionIdOrders(orderType: string, regionId: number, datasource?: string, page?: number, typeId?: number, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getMarketsRegionIdOrders(orderType: string, regionId: number, datasource?: string, page?: number, typeId?: number, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (orderType === null || orderType === undefined) { - throw new Error('Required parameter orderType was null or undefined when calling getMarketsRegionIdOrders.'); - } - if (regionId === null || regionId === undefined) { - throw new Error('Required parameter regionId was null or undefined when calling getMarketsRegionIdOrders.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (orderType !== undefined) { - queryParameters = queryParameters.set('order_type', orderType); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (typeId !== undefined) { - queryParameters = queryParameters.set('type_id', typeId); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/markets/${encodeURIComponent(String(regionId))}/orders/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List type IDs relevant to a market - * Return a list of type IDs that have active orders in the region, for efficient market indexing. --- Alternate route: `/dev/markets/{region_id}/types/` Alternate route: `/legacy/markets/{region_id}/types/` Alternate route: `/v1/markets/{region_id}/types/` --- This route is cached for up to 600 seconds - * @param regionId Return statistics in this region - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getMarketsRegionIdTypes(regionId: number, datasource?: string, page?: number, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getMarketsRegionIdTypes(regionId: number, datasource?: string, page?: number, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getMarketsRegionIdTypes(regionId: number, datasource?: string, page?: number, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getMarketsRegionIdTypes(regionId: number, datasource?: string, page?: number, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (regionId === null || regionId === undefined) { - throw new Error('Required parameter regionId was null or undefined when calling getMarketsRegionIdTypes.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/markets/${encodeURIComponent(String(regionId))}/types/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List orders in a structure - * Return all orders in a structure --- Alternate route: `/dev/markets/structures/{structure_id}/` Alternate route: `/legacy/markets/structures/{structure_id}/` Alternate route: `/v1/markets/structures/{structure_id}/` --- This route is cached for up to 300 seconds - * @param structureId Return orders in this structure - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getMarketsStructuresStructureId(structureId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getMarketsStructuresStructureId(structureId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getMarketsStructuresStructureId(structureId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getMarketsStructuresStructureId(structureId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (structureId === null || structureId === undefined) { - throw new Error('Required parameter structureId was null or undefined when calling getMarketsStructuresStructureId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/markets/structures/${encodeURIComponent(String(structureId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/opportunities.service.ts b/src/app/eve-online-angular-client/api/opportunities.service.ts deleted file mode 100755 index 89b41ee..0000000 --- a/src/app/eve-online-angular-client/api/opportunities.service.ts +++ /dev/null @@ -1,346 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { Forbidden } from '../model/forbidden'; -import { GetCharactersCharacterIdOpportunities200Ok } from '../model/getCharactersCharacterIdOpportunities200Ok'; -import { GetOpportunitiesGroupsGroupIdOk } from '../model/getOpportunitiesGroupsGroupIdOk'; -import { GetOpportunitiesTasksTaskIdOk } from '../model/getOpportunitiesTasksTaskIdOk'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class OpportunitiesService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Get a character's completed tasks - * Return a list of tasks finished by a character --- Alternate route: `/dev/characters/{character_id}/opportunities/` Alternate route: `/legacy/characters/{character_id}/opportunities/` Alternate route: `/v1/characters/{character_id}/opportunities/` --- This route is cached for up to 3600 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdOpportunities(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdOpportunities(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdOpportunities(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdOpportunities(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdOpportunities.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/opportunities/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get opportunities groups - * Return a list of opportunities groups --- Alternate route: `/dev/opportunities/groups/` Alternate route: `/legacy/opportunities/groups/` Alternate route: `/v1/opportunities/groups/` --- This route expires daily at 11:05 - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getOpportunitiesGroups(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getOpportunitiesGroups(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getOpportunitiesGroups(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getOpportunitiesGroups(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/opportunities/groups/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get opportunities group - * Return information of an opportunities group --- Alternate route: `/dev/opportunities/groups/{group_id}/` Alternate route: `/legacy/opportunities/groups/{group_id}/` Alternate route: `/v1/opportunities/groups/{group_id}/` --- This route expires daily at 11:05 - * @param groupId ID of an opportunities group - * @param datasource The server name you would like data from - * @param language Language to use in the response - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getOpportunitiesGroupsGroupId(groupId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getOpportunitiesGroupsGroupId(groupId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getOpportunitiesGroupsGroupId(groupId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getOpportunitiesGroupsGroupId(groupId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (groupId === null || groupId === undefined) { - throw new Error('Required parameter groupId was null or undefined when calling getOpportunitiesGroupsGroupId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (language !== undefined) { - queryParameters = queryParameters.set('language', language); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/opportunities/groups/${encodeURIComponent(String(groupId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get opportunities tasks - * Return a list of opportunities tasks --- Alternate route: `/dev/opportunities/tasks/` Alternate route: `/legacy/opportunities/tasks/` Alternate route: `/v1/opportunities/tasks/` --- This route expires daily at 11:05 - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getOpportunitiesTasks(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getOpportunitiesTasks(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getOpportunitiesTasks(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getOpportunitiesTasks(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/opportunities/tasks/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get opportunities task - * Return information of an opportunities task --- Alternate route: `/dev/opportunities/tasks/{task_id}/` Alternate route: `/legacy/opportunities/tasks/{task_id}/` Alternate route: `/v1/opportunities/tasks/{task_id}/` --- This route expires daily at 11:05 - * @param taskId ID of an opportunities task - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getOpportunitiesTasksTaskId(taskId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getOpportunitiesTasksTaskId(taskId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getOpportunitiesTasksTaskId(taskId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getOpportunitiesTasksTaskId(taskId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (taskId === null || taskId === undefined) { - throw new Error('Required parameter taskId was null or undefined when calling getOpportunitiesTasksTaskId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/opportunities/tasks/${encodeURIComponent(String(taskId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/planetaryInteraction.service.ts b/src/app/eve-online-angular-client/api/planetaryInteraction.service.ts deleted file mode 100755 index eee260c..0000000 --- a/src/app/eve-online-angular-client/api/planetaryInteraction.service.ts +++ /dev/null @@ -1,330 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { Forbidden } from '../model/forbidden'; -import { GetCharactersCharacterIdPlanets200Ok } from '../model/getCharactersCharacterIdPlanets200Ok'; -import { GetCharactersCharacterIdPlanetsPlanetIdNotFound } from '../model/getCharactersCharacterIdPlanetsPlanetIdNotFound'; -import { GetCharactersCharacterIdPlanetsPlanetIdOk } from '../model/getCharactersCharacterIdPlanetsPlanetIdOk'; -import { GetCorporationsCorporationIdCustomsOffices200Ok } from '../model/getCorporationsCorporationIdCustomsOffices200Ok'; -import { GetUniverseSchematicsSchematicIdNotFound } from '../model/getUniverseSchematicsSchematicIdNotFound'; -import { GetUniverseSchematicsSchematicIdOk } from '../model/getUniverseSchematicsSchematicIdOk'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class PlanetaryInteractionService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Get colonies - * Returns a list of all planetary colonies owned by a character. --- Alternate route: `/dev/characters/{character_id}/planets/` Alternate route: `/legacy/characters/{character_id}/planets/` Alternate route: `/v1/characters/{character_id}/planets/` --- This route is cached for up to 600 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdPlanets(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdPlanets(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdPlanets(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdPlanets(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdPlanets.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/planets/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get colony layout - * Returns full details on the layout of a single planetary colony, including links, pins and routes. Note: Planetary information is only recalculated when the colony is viewed through the client. Information will not update until this criteria is met. --- Alternate route: `/dev/characters/{character_id}/planets/{planet_id}/` Alternate route: `/v3/characters/{character_id}/planets/{planet_id}/` --- This route is cached for up to 600 seconds - * @param characterId An EVE character ID - * @param planetId Planet id of the target planet - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdPlanetsPlanetId(characterId: number, planetId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCharactersCharacterIdPlanetsPlanetId(characterId: number, planetId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdPlanetsPlanetId(characterId: number, planetId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdPlanetsPlanetId(characterId: number, planetId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdPlanetsPlanetId.'); - } - if (planetId === null || planetId === undefined) { - throw new Error('Required parameter planetId was null or undefined when calling getCharactersCharacterIdPlanetsPlanetId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/planets/${encodeURIComponent(String(planetId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List corporation customs offices - * List customs offices owned by a corporation --- Alternate route: `/dev/corporations/{corporation_id}/customs_offices/` Alternate route: `/legacy/corporations/{corporation_id}/customs_offices/` Alternate route: `/v1/corporations/{corporation_id}/customs_offices/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdCustomsOffices(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdCustomsOffices(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdCustomsOffices(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdCustomsOffices(corporationId: number, datasource?: string, page?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdCustomsOffices.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/customs_offices/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get schematic information - * Get information on a planetary factory schematic --- Alternate route: `/dev/universe/schematics/{schematic_id}/` Alternate route: `/legacy/universe/schematics/{schematic_id}/` Alternate route: `/v1/universe/schematics/{schematic_id}/` --- This route is cached for up to 3600 seconds - * @param schematicId A PI schematic ID - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseSchematicsSchematicId(schematicId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getUniverseSchematicsSchematicId(schematicId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getUniverseSchematicsSchematicId(schematicId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getUniverseSchematicsSchematicId(schematicId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (schematicId === null || schematicId === undefined) { - throw new Error('Required parameter schematicId was null or undefined when calling getUniverseSchematicsSchematicId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/universe/schematics/${encodeURIComponent(String(schematicId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/routes.service.ts b/src/app/eve-online-angular-client/api/routes.service.ts deleted file mode 100755 index f073d43..0000000 --- a/src/app/eve-online-angular-client/api/routes.service.ts +++ /dev/null @@ -1,131 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { GetRouteOriginDestinationNotFound } from '../model/getRouteOriginDestinationNotFound'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class RoutesService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Get route - * Get the systems between origin and destination --- Alternate route: `/dev/route/{origin}/{destination}/` Alternate route: `/legacy/route/{origin}/{destination}/` Alternate route: `/v1/route/{origin}/{destination}/` --- This route is cached for up to 86400 seconds - * @param destination destination solar system ID - * @param origin origin solar system ID - * @param avoid avoid solar system ID(s) - * @param connections connected solar system pairs - * @param datasource The server name you would like data from - * @param flag route security preference - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getRouteOriginDestination(destination: number, origin: number, avoid?: Array, connections?: Array>, datasource?: string, flag?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getRouteOriginDestination(destination: number, origin: number, avoid?: Array, connections?: Array>, datasource?: string, flag?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getRouteOriginDestination(destination: number, origin: number, avoid?: Array, connections?: Array>, datasource?: string, flag?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getRouteOriginDestination(destination: number, origin: number, avoid?: Array, connections?: Array>, datasource?: string, flag?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (destination === null || destination === undefined) { - throw new Error('Required parameter destination was null or undefined when calling getRouteOriginDestination.'); - } - if (origin === null || origin === undefined) { - throw new Error('Required parameter origin was null or undefined when calling getRouteOriginDestination.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (avoid) { - queryParameters = queryParameters.set('avoid', avoid.join(COLLECTION_FORMATS['csv'])); - } - if (connections) { - queryParameters = queryParameters.set('connections', connections.join(COLLECTION_FORMATS['csv'])); - } - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (flag !== undefined) { - queryParameters = queryParameters.set('flag', flag); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/route/${encodeURIComponent(String(origin))}/${encodeURIComponent(String(destination))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/search.service.ts b/src/app/eve-online-angular-client/api/search.service.ts deleted file mode 100755 index 9e144a9..0000000 --- a/src/app/eve-online-angular-client/api/search.service.ts +++ /dev/null @@ -1,224 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { Forbidden } from '../model/forbidden'; -import { GetCharactersCharacterIdSearchOk } from '../model/getCharactersCharacterIdSearchOk'; -import { GetSearchOk } from '../model/getSearchOk'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class SearchService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Search on a string - * Search for entities that match a given sub-string. --- Alternate route: `/dev/characters/{character_id}/search/` Alternate route: `/v3/characters/{character_id}/search/` --- This route is cached for up to 3600 seconds - * @param categories Type of entities to search for - * @param characterId An EVE character ID - * @param search The string to search on - * @param datasource The server name you would like data from - * @param language Language to use in the response - * @param strict Whether the search should be a strict match - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdSearch(categories: Array, characterId: number, search: string, datasource?: string, language?: string, strict?: boolean, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCharactersCharacterIdSearch(categories: Array, characterId: number, search: string, datasource?: string, language?: string, strict?: boolean, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdSearch(categories: Array, characterId: number, search: string, datasource?: string, language?: string, strict?: boolean, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdSearch(categories: Array, characterId: number, search: string, datasource?: string, language?: string, strict?: boolean, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (categories === null || categories === undefined) { - throw new Error('Required parameter categories was null or undefined when calling getCharactersCharacterIdSearch.'); - } - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdSearch.'); - } - if (search === null || search === undefined) { - throw new Error('Required parameter search was null or undefined when calling getCharactersCharacterIdSearch.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (categories) { - queryParameters = queryParameters.set('categories', categories.join(COLLECTION_FORMATS['csv'])); - } - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (language !== undefined) { - queryParameters = queryParameters.set('language', language); - } - if (search !== undefined) { - queryParameters = queryParameters.set('search', search); - } - if (strict !== undefined) { - queryParameters = queryParameters.set('strict', strict); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/search/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Search on a string - * Search for entities that match a given sub-string. --- Alternate route: `/dev/search/` Alternate route: `/v2/search/` --- This route is cached for up to 3600 seconds - * @param categories Type of entities to search for - * @param search The string to search on - * @param datasource The server name you would like data from - * @param language Language to use in the response - * @param strict Whether the search should be a strict match - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getSearch(categories: Array, search: string, datasource?: string, language?: string, strict?: boolean, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getSearch(categories: Array, search: string, datasource?: string, language?: string, strict?: boolean, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getSearch(categories: Array, search: string, datasource?: string, language?: string, strict?: boolean, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getSearch(categories: Array, search: string, datasource?: string, language?: string, strict?: boolean, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (categories === null || categories === undefined) { - throw new Error('Required parameter categories was null or undefined when calling getSearch.'); - } - if (search === null || search === undefined) { - throw new Error('Required parameter search was null or undefined when calling getSearch.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (categories) { - queryParameters = queryParameters.set('categories', categories.join(COLLECTION_FORMATS['csv'])); - } - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (language !== undefined) { - queryParameters = queryParameters.set('language', language); - } - if (search !== undefined) { - queryParameters = queryParameters.set('search', search); - } - if (strict !== undefined) { - queryParameters = queryParameters.set('strict', strict); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/search/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/skills.service.ts b/src/app/eve-online-angular-client/api/skills.service.ts deleted file mode 100755 index 4db63c6..0000000 --- a/src/app/eve-online-angular-client/api/skills.service.ts +++ /dev/null @@ -1,264 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { Forbidden } from '../model/forbidden'; -import { GetCharactersCharacterIdAttributesOk } from '../model/getCharactersCharacterIdAttributesOk'; -import { GetCharactersCharacterIdSkillqueue200Ok } from '../model/getCharactersCharacterIdSkillqueue200Ok'; -import { GetCharactersCharacterIdSkillsOk } from '../model/getCharactersCharacterIdSkillsOk'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class SkillsService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Get character attributes - * Return attributes of a character --- Alternate route: `/dev/characters/{character_id}/attributes/` Alternate route: `/legacy/characters/{character_id}/attributes/` Alternate route: `/v1/characters/{character_id}/attributes/` --- This route is cached for up to 3600 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdAttributes(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCharactersCharacterIdAttributes(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdAttributes(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdAttributes(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdAttributes.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/attributes/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get character's skill queue - * List the configured skill queue for the given character --- Alternate route: `/dev/characters/{character_id}/skillqueue/` Alternate route: `/legacy/characters/{character_id}/skillqueue/` Alternate route: `/v2/characters/{character_id}/skillqueue/` --- This route is cached for up to 120 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdSkillqueue(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdSkillqueue(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdSkillqueue(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdSkillqueue(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdSkillqueue.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/skillqueue/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get character skills - * List all trained skills for the given character --- Alternate route: `/dev/characters/{character_id}/skills/` Alternate route: `/v4/characters/{character_id}/skills/` --- This route is cached for up to 120 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdSkills(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCharactersCharacterIdSkills(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdSkills(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdSkills(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdSkills.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/skills/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/sovereignty.service.ts b/src/app/eve-online-angular-client/api/sovereignty.service.ts deleted file mode 100755 index f9b73e3..0000000 --- a/src/app/eve-online-angular-client/api/sovereignty.service.ts +++ /dev/null @@ -1,215 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { GetSovereigntyCampaigns200Ok } from '../model/getSovereigntyCampaigns200Ok'; -import { GetSovereigntyMap200Ok } from '../model/getSovereigntyMap200Ok'; -import { GetSovereigntyStructures200Ok } from '../model/getSovereigntyStructures200Ok'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class SovereigntyService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * List sovereignty campaigns - * Shows sovereignty data for campaigns. --- Alternate route: `/dev/sovereignty/campaigns/` Alternate route: `/legacy/sovereignty/campaigns/` Alternate route: `/v1/sovereignty/campaigns/` --- This route is cached for up to 5 seconds - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getSovereigntyCampaigns(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getSovereigntyCampaigns(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getSovereigntyCampaigns(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getSovereigntyCampaigns(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/sovereignty/campaigns/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List sovereignty of systems - * Shows sovereignty information for solar systems --- Alternate route: `/dev/sovereignty/map/` Alternate route: `/legacy/sovereignty/map/` Alternate route: `/v1/sovereignty/map/` --- This route is cached for up to 3600 seconds - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getSovereigntyMap(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getSovereigntyMap(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getSovereigntyMap(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getSovereigntyMap(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/sovereignty/map/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List sovereignty structures - * Shows sovereignty data for structures. --- Alternate route: `/dev/sovereignty/structures/` Alternate route: `/legacy/sovereignty/structures/` Alternate route: `/v1/sovereignty/structures/` --- This route is cached for up to 120 seconds - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getSovereigntyStructures(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getSovereigntyStructures(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getSovereigntyStructures(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getSovereigntyStructures(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/sovereignty/structures/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/status.service.ts b/src/app/eve-online-angular-client/api/status.service.ts deleted file mode 100755 index 6024657..0000000 --- a/src/app/eve-online-angular-client/api/status.service.ts +++ /dev/null @@ -1,111 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { GetStatusOk } from '../model/getStatusOk'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class StatusService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Retrieve the uptime and player counts - * EVE Server status --- Alternate route: `/dev/status/` Alternate route: `/legacy/status/` Alternate route: `/v1/status/` --- This route is cached for up to 30 seconds - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getStatus(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getStatus(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getStatus(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getStatus(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/status/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/universe.service.ts b/src/app/eve-online-angular-client/api/universe.service.ts deleted file mode 100755 index 0480217..0000000 --- a/src/app/eve-online-angular-client/api/universe.service.ts +++ /dev/null @@ -1,1708 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { Forbidden } from '../model/forbidden'; -import { GetUniverseAncestries200Ok } from '../model/getUniverseAncestries200Ok'; -import { GetUniverseBloodlines200Ok } from '../model/getUniverseBloodlines200Ok'; -import { GetUniverseCategoriesCategoryIdNotFound } from '../model/getUniverseCategoriesCategoryIdNotFound'; -import { GetUniverseCategoriesCategoryIdOk } from '../model/getUniverseCategoriesCategoryIdOk'; -import { GetUniverseConstellationsConstellationIdNotFound } from '../model/getUniverseConstellationsConstellationIdNotFound'; -import { GetUniverseConstellationsConstellationIdOk } from '../model/getUniverseConstellationsConstellationIdOk'; -import { GetUniverseFactions200Ok } from '../model/getUniverseFactions200Ok'; -import { GetUniverseGraphicsGraphicIdNotFound } from '../model/getUniverseGraphicsGraphicIdNotFound'; -import { GetUniverseGraphicsGraphicIdOk } from '../model/getUniverseGraphicsGraphicIdOk'; -import { GetUniverseGroupsGroupIdNotFound } from '../model/getUniverseGroupsGroupIdNotFound'; -import { GetUniverseGroupsGroupIdOk } from '../model/getUniverseGroupsGroupIdOk'; -import { GetUniverseMoonsMoonIdNotFound } from '../model/getUniverseMoonsMoonIdNotFound'; -import { GetUniverseMoonsMoonIdOk } from '../model/getUniverseMoonsMoonIdOk'; -import { GetUniversePlanetsPlanetIdNotFound } from '../model/getUniversePlanetsPlanetIdNotFound'; -import { GetUniversePlanetsPlanetIdOk } from '../model/getUniversePlanetsPlanetIdOk'; -import { GetUniverseRaces200Ok } from '../model/getUniverseRaces200Ok'; -import { GetUniverseRegionsRegionIdNotFound } from '../model/getUniverseRegionsRegionIdNotFound'; -import { GetUniverseRegionsRegionIdOk } from '../model/getUniverseRegionsRegionIdOk'; -import { GetUniverseStargatesStargateIdNotFound } from '../model/getUniverseStargatesStargateIdNotFound'; -import { GetUniverseStargatesStargateIdOk } from '../model/getUniverseStargatesStargateIdOk'; -import { GetUniverseStarsStarIdOk } from '../model/getUniverseStarsStarIdOk'; -import { GetUniverseStationsStationIdNotFound } from '../model/getUniverseStationsStationIdNotFound'; -import { GetUniverseStationsStationIdOk } from '../model/getUniverseStationsStationIdOk'; -import { GetUniverseStructuresStructureIdNotFound } from '../model/getUniverseStructuresStructureIdNotFound'; -import { GetUniverseStructuresStructureIdOk } from '../model/getUniverseStructuresStructureIdOk'; -import { GetUniverseSystemJumps200Ok } from '../model/getUniverseSystemJumps200Ok'; -import { GetUniverseSystemKills200Ok } from '../model/getUniverseSystemKills200Ok'; -import { GetUniverseSystemsSystemIdNotFound } from '../model/getUniverseSystemsSystemIdNotFound'; -import { GetUniverseSystemsSystemIdOk } from '../model/getUniverseSystemsSystemIdOk'; -import { GetUniverseTypesTypeIdNotFound } from '../model/getUniverseTypesTypeIdNotFound'; -import { GetUniverseTypesTypeIdOk } from '../model/getUniverseTypesTypeIdOk'; -import { InternalServerError } from '../model/internalServerError'; -import { PostUniverseIdsOk } from '../model/postUniverseIdsOk'; -import { PostUniverseIdsServiceUnavailable } from '../model/postUniverseIdsServiceUnavailable'; -import { PostUniverseNames200Ok } from '../model/postUniverseNames200Ok'; -import { PostUniverseNamesNotFound } from '../model/postUniverseNamesNotFound'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class UniverseService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Get ancestries - * Get all character ancestries --- Alternate route: `/dev/universe/ancestries/` Alternate route: `/legacy/universe/ancestries/` Alternate route: `/v1/universe/ancestries/` --- This route expires daily at 11:05 - * @param datasource The server name you would like data from - * @param language Language to use in the response - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseAncestries(datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getUniverseAncestries(datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getUniverseAncestries(datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getUniverseAncestries(datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (language !== undefined) { - queryParameters = queryParameters.set('language', language); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/universe/ancestries/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get bloodlines - * Get a list of bloodlines --- Alternate route: `/dev/universe/bloodlines/` Alternate route: `/legacy/universe/bloodlines/` Alternate route: `/v1/universe/bloodlines/` --- This route expires daily at 11:05 - * @param datasource The server name you would like data from - * @param language Language to use in the response - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseBloodlines(datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getUniverseBloodlines(datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getUniverseBloodlines(datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getUniverseBloodlines(datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (language !== undefined) { - queryParameters = queryParameters.set('language', language); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/universe/bloodlines/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get item categories - * Get a list of item categories --- Alternate route: `/dev/universe/categories/` Alternate route: `/legacy/universe/categories/` Alternate route: `/v1/universe/categories/` --- This route expires daily at 11:05 - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseCategories(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getUniverseCategories(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getUniverseCategories(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getUniverseCategories(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/universe/categories/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get item category information - * Get information of an item category --- Alternate route: `/dev/universe/categories/{category_id}/` Alternate route: `/legacy/universe/categories/{category_id}/` Alternate route: `/v1/universe/categories/{category_id}/` --- This route expires daily at 11:05 - * @param categoryId An Eve item category ID - * @param datasource The server name you would like data from - * @param language Language to use in the response - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseCategoriesCategoryId(categoryId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getUniverseCategoriesCategoryId(categoryId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getUniverseCategoriesCategoryId(categoryId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getUniverseCategoriesCategoryId(categoryId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (categoryId === null || categoryId === undefined) { - throw new Error('Required parameter categoryId was null or undefined when calling getUniverseCategoriesCategoryId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (language !== undefined) { - queryParameters = queryParameters.set('language', language); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/universe/categories/${encodeURIComponent(String(categoryId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get constellations - * Get a list of constellations --- Alternate route: `/dev/universe/constellations/` Alternate route: `/legacy/universe/constellations/` Alternate route: `/v1/universe/constellations/` --- This route expires daily at 11:05 - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseConstellations(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getUniverseConstellations(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getUniverseConstellations(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getUniverseConstellations(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/universe/constellations/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get constellation information - * Get information on a constellation --- Alternate route: `/dev/universe/constellations/{constellation_id}/` Alternate route: `/legacy/universe/constellations/{constellation_id}/` Alternate route: `/v1/universe/constellations/{constellation_id}/` --- This route expires daily at 11:05 - * @param constellationId constellation_id integer - * @param datasource The server name you would like data from - * @param language Language to use in the response - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseConstellationsConstellationId(constellationId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getUniverseConstellationsConstellationId(constellationId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getUniverseConstellationsConstellationId(constellationId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getUniverseConstellationsConstellationId(constellationId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (constellationId === null || constellationId === undefined) { - throw new Error('Required parameter constellationId was null or undefined when calling getUniverseConstellationsConstellationId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (language !== undefined) { - queryParameters = queryParameters.set('language', language); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/universe/constellations/${encodeURIComponent(String(constellationId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get factions - * Get a list of factions --- Alternate route: `/dev/universe/factions/` Alternate route: `/v2/universe/factions/` --- This route expires daily at 11:05 - * @param datasource The server name you would like data from - * @param language Language to use in the response - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseFactions(datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getUniverseFactions(datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getUniverseFactions(datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getUniverseFactions(datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (language !== undefined) { - queryParameters = queryParameters.set('language', language); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/universe/factions/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get graphics - * Get a list of graphics --- Alternate route: `/dev/universe/graphics/` Alternate route: `/legacy/universe/graphics/` Alternate route: `/v1/universe/graphics/` --- This route expires daily at 11:05 - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseGraphics(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getUniverseGraphics(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getUniverseGraphics(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getUniverseGraphics(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/universe/graphics/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get graphic information - * Get information on a graphic --- Alternate route: `/dev/universe/graphics/{graphic_id}/` Alternate route: `/legacy/universe/graphics/{graphic_id}/` Alternate route: `/v1/universe/graphics/{graphic_id}/` --- This route expires daily at 11:05 - * @param graphicId graphic_id integer - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseGraphicsGraphicId(graphicId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getUniverseGraphicsGraphicId(graphicId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getUniverseGraphicsGraphicId(graphicId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getUniverseGraphicsGraphicId(graphicId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (graphicId === null || graphicId === undefined) { - throw new Error('Required parameter graphicId was null or undefined when calling getUniverseGraphicsGraphicId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/universe/graphics/${encodeURIComponent(String(graphicId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get item groups - * Get a list of item groups --- Alternate route: `/dev/universe/groups/` Alternate route: `/legacy/universe/groups/` Alternate route: `/v1/universe/groups/` --- This route expires daily at 11:05 - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseGroups(datasource?: string, page?: number, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getUniverseGroups(datasource?: string, page?: number, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getUniverseGroups(datasource?: string, page?: number, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getUniverseGroups(datasource?: string, page?: number, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/universe/groups/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get item group information - * Get information on an item group --- Alternate route: `/dev/universe/groups/{group_id}/` Alternate route: `/legacy/universe/groups/{group_id}/` Alternate route: `/v1/universe/groups/{group_id}/` --- This route expires daily at 11:05 - * @param groupId An Eve item group ID - * @param datasource The server name you would like data from - * @param language Language to use in the response - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseGroupsGroupId(groupId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getUniverseGroupsGroupId(groupId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getUniverseGroupsGroupId(groupId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getUniverseGroupsGroupId(groupId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (groupId === null || groupId === undefined) { - throw new Error('Required parameter groupId was null or undefined when calling getUniverseGroupsGroupId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (language !== undefined) { - queryParameters = queryParameters.set('language', language); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/universe/groups/${encodeURIComponent(String(groupId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get moon information - * Get information on a moon --- Alternate route: `/dev/universe/moons/{moon_id}/` Alternate route: `/legacy/universe/moons/{moon_id}/` Alternate route: `/v1/universe/moons/{moon_id}/` --- This route expires daily at 11:05 - * @param moonId moon_id integer - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseMoonsMoonId(moonId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getUniverseMoonsMoonId(moonId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getUniverseMoonsMoonId(moonId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getUniverseMoonsMoonId(moonId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (moonId === null || moonId === undefined) { - throw new Error('Required parameter moonId was null or undefined when calling getUniverseMoonsMoonId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/universe/moons/${encodeURIComponent(String(moonId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get planet information - * Get information on a planet --- Alternate route: `/dev/universe/planets/{planet_id}/` Alternate route: `/legacy/universe/planets/{planet_id}/` Alternate route: `/v1/universe/planets/{planet_id}/` --- This route expires daily at 11:05 - * @param planetId planet_id integer - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniversePlanetsPlanetId(planetId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getUniversePlanetsPlanetId(planetId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getUniversePlanetsPlanetId(planetId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getUniversePlanetsPlanetId(planetId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (planetId === null || planetId === undefined) { - throw new Error('Required parameter planetId was null or undefined when calling getUniversePlanetsPlanetId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/universe/planets/${encodeURIComponent(String(planetId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get character races - * Get a list of character races --- Alternate route: `/dev/universe/races/` Alternate route: `/legacy/universe/races/` Alternate route: `/v1/universe/races/` --- This route expires daily at 11:05 - * @param datasource The server name you would like data from - * @param language Language to use in the response - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseRaces(datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getUniverseRaces(datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getUniverseRaces(datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getUniverseRaces(datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (language !== undefined) { - queryParameters = queryParameters.set('language', language); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/universe/races/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get regions - * Get a list of regions --- Alternate route: `/dev/universe/regions/` Alternate route: `/legacy/universe/regions/` Alternate route: `/v1/universe/regions/` --- This route expires daily at 11:05 - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseRegions(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getUniverseRegions(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getUniverseRegions(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getUniverseRegions(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/universe/regions/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get region information - * Get information on a region --- Alternate route: `/dev/universe/regions/{region_id}/` Alternate route: `/legacy/universe/regions/{region_id}/` Alternate route: `/v1/universe/regions/{region_id}/` --- This route expires daily at 11:05 - * @param regionId region_id integer - * @param datasource The server name you would like data from - * @param language Language to use in the response - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseRegionsRegionId(regionId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getUniverseRegionsRegionId(regionId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getUniverseRegionsRegionId(regionId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getUniverseRegionsRegionId(regionId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (regionId === null || regionId === undefined) { - throw new Error('Required parameter regionId was null or undefined when calling getUniverseRegionsRegionId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (language !== undefined) { - queryParameters = queryParameters.set('language', language); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/universe/regions/${encodeURIComponent(String(regionId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get stargate information - * Get information on a stargate --- Alternate route: `/dev/universe/stargates/{stargate_id}/` Alternate route: `/legacy/universe/stargates/{stargate_id}/` Alternate route: `/v1/universe/stargates/{stargate_id}/` --- This route expires daily at 11:05 - * @param stargateId stargate_id integer - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseStargatesStargateId(stargateId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getUniverseStargatesStargateId(stargateId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getUniverseStargatesStargateId(stargateId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getUniverseStargatesStargateId(stargateId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (stargateId === null || stargateId === undefined) { - throw new Error('Required parameter stargateId was null or undefined when calling getUniverseStargatesStargateId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/universe/stargates/${encodeURIComponent(String(stargateId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get star information - * Get information on a star --- Alternate route: `/dev/universe/stars/{star_id}/` Alternate route: `/legacy/universe/stars/{star_id}/` Alternate route: `/v1/universe/stars/{star_id}/` --- This route expires daily at 11:05 - * @param starId star_id integer - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseStarsStarId(starId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getUniverseStarsStarId(starId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getUniverseStarsStarId(starId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getUniverseStarsStarId(starId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (starId === null || starId === undefined) { - throw new Error('Required parameter starId was null or undefined when calling getUniverseStarsStarId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/universe/stars/${encodeURIComponent(String(starId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get station information - * Get information on a station --- Alternate route: `/dev/universe/stations/{station_id}/` Alternate route: `/v2/universe/stations/{station_id}/` --- This route is cached for up to 300 seconds - * @param stationId station_id integer - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseStationsStationId(stationId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getUniverseStationsStationId(stationId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getUniverseStationsStationId(stationId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getUniverseStationsStationId(stationId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (stationId === null || stationId === undefined) { - throw new Error('Required parameter stationId was null or undefined when calling getUniverseStationsStationId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/universe/stations/${encodeURIComponent(String(stationId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List all public structures - * List all public structures --- Alternate route: `/dev/universe/structures/` Alternate route: `/legacy/universe/structures/` Alternate route: `/v1/universe/structures/` --- This route is cached for up to 3600 seconds - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseStructures(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getUniverseStructures(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getUniverseStructures(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getUniverseStructures(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/universe/structures/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get structure information - * Returns information on requested structure, if you are on the ACL. Otherwise, returns \"Forbidden\" for all inputs. --- Alternate route: `/dev/universe/structures/{structure_id}/` Alternate route: `/legacy/universe/structures/{structure_id}/` Alternate route: `/v1/universe/structures/{structure_id}/` --- This route is cached for up to 3600 seconds - * @param structureId An Eve structure ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseStructuresStructureId(structureId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getUniverseStructuresStructureId(structureId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getUniverseStructuresStructureId(structureId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getUniverseStructuresStructureId(structureId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (structureId === null || structureId === undefined) { - throw new Error('Required parameter structureId was null or undefined when calling getUniverseStructuresStructureId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/universe/structures/${encodeURIComponent(String(structureId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get system jumps - * Get the number of jumps in solar systems within the last hour ending at the timestamp of the Last-Modified header, excluding wormhole space. Only systems with jumps will be listed --- Alternate route: `/dev/universe/system_jumps/` Alternate route: `/legacy/universe/system_jumps/` Alternate route: `/v1/universe/system_jumps/` --- This route is cached for up to 3600 seconds - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseSystemJumps(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getUniverseSystemJumps(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getUniverseSystemJumps(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getUniverseSystemJumps(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/universe/system_jumps/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get system kills - * Get the number of ship, pod and NPC kills per solar system within the last hour ending at the timestamp of the Last-Modified header, excluding wormhole space. Only systems with kills will be listed --- Alternate route: `/dev/universe/system_kills/` Alternate route: `/v2/universe/system_kills/` --- This route is cached for up to 3600 seconds - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseSystemKills(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getUniverseSystemKills(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getUniverseSystemKills(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getUniverseSystemKills(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/universe/system_kills/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get solar systems - * Get a list of solar systems --- Alternate route: `/dev/universe/systems/` Alternate route: `/legacy/universe/systems/` Alternate route: `/v1/universe/systems/` --- This route expires daily at 11:05 - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseSystems(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getUniverseSystems(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getUniverseSystems(datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getUniverseSystems(datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/universe/systems/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get solar system information - * Get information on a solar system --- Alternate route: `/dev/universe/systems/{system_id}/` Alternate route: `/v3/universe/systems/{system_id}/` --- This route expires daily at 11:05 - * @param systemId system_id integer - * @param datasource The server name you would like data from - * @param language Language to use in the response - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseSystemsSystemId(systemId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getUniverseSystemsSystemId(systemId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getUniverseSystemsSystemId(systemId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getUniverseSystemsSystemId(systemId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (systemId === null || systemId === undefined) { - throw new Error('Required parameter systemId was null or undefined when calling getUniverseSystemsSystemId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (language !== undefined) { - queryParameters = queryParameters.set('language', language); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/universe/systems/${encodeURIComponent(String(systemId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get types - * Get a list of type ids --- Alternate route: `/dev/universe/types/` Alternate route: `/legacy/universe/types/` Alternate route: `/v1/universe/types/` --- This route expires daily at 11:05 - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseTypes(datasource?: string, page?: number, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getUniverseTypes(datasource?: string, page?: number, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getUniverseTypes(datasource?: string, page?: number, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getUniverseTypes(datasource?: string, page?: number, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/universe/types/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get type information - * Get information on a type --- Alternate route: `/dev/universe/types/{type_id}/` Alternate route: `/v3/universe/types/{type_id}/` --- This route expires daily at 11:05 - * @param typeId An Eve item type ID - * @param datasource The server name you would like data from - * @param language Language to use in the response - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getUniverseTypesTypeId(typeId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getUniverseTypesTypeId(typeId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getUniverseTypesTypeId(typeId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getUniverseTypesTypeId(typeId: number, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (typeId === null || typeId === undefined) { - throw new Error('Required parameter typeId was null or undefined when calling getUniverseTypesTypeId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (language !== undefined) { - queryParameters = queryParameters.set('language', language); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/universe/types/${encodeURIComponent(String(typeId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Bulk names to IDs - * Resolve a set of names to IDs in the following categories: agents, alliances, characters, constellations, corporations factions, inventory_types, regions, stations, and systems. Only exact matches will be returned. All names searched for are cached for 12 hours. --- Alternate route: `/dev/universe/ids/` Alternate route: `/legacy/universe/ids/` Alternate route: `/v1/universe/ids/` - * @param names The names to resolve - * @param datasource The server name you would like data from - * @param language Language to use in the response - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public postUniverseIds(names: Array, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public postUniverseIds(names: Array, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public postUniverseIds(names: Array, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public postUniverseIds(names: Array, datasource?: string, language?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (names === null || names === undefined) { - throw new Error('Required parameter names was null or undefined when calling postUniverseIds.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (language !== undefined) { - queryParameters = queryParameters.set('language', language); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - let httpContentTypeSelected:string | undefined = this.configuration.selectHeaderContentType(consumes); - if (httpContentTypeSelected != undefined) { - headers = headers.set("Content-Type", httpContentTypeSelected); - } - - return this.httpClient.post(`${this.basePath}/universe/ids/`, - names, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get names and categories for a set of ID's - * Resolve a set of IDs to names and categories. Supported ID's for resolving are: Characters, Corporations, Alliances, Stations, Solar Systems, Constellations, Regions, Types. --- Alternate route: `/dev/universe/names/` Alternate route: `/v2/universe/names/` - * @param ids The ids to resolve - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public postUniverseNames(ids: Array, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public postUniverseNames(ids: Array, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public postUniverseNames(ids: Array, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public postUniverseNames(ids: Array, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (ids === null || ids === undefined) { - throw new Error('Required parameter ids was null or undefined when calling postUniverseNames.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - let httpContentTypeSelected:string | undefined = this.configuration.selectHeaderContentType(consumes); - if (httpContentTypeSelected != undefined) { - headers = headers.set("Content-Type", httpContentTypeSelected); - } - - return this.httpClient.post>(`${this.basePath}/universe/names/`, - ids, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/userInterface.service.ts b/src/app/eve-online-angular-client/api/userInterface.service.ts deleted file mode 100755 index 4c8e4dd..0000000 --- a/src/app/eve-online-angular-client/api/userInterface.service.ts +++ /dev/null @@ -1,432 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { Forbidden } from '../model/forbidden'; -import { InternalServerError } from '../model/internalServerError'; -import { PostUiOpenwindowNewmailNewMail } from '../model/postUiOpenwindowNewmailNewMail'; -import { PostUiOpenwindowNewmailUnprocessableEntity } from '../model/postUiOpenwindowNewmailUnprocessableEntity'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class UserInterfaceService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Set Autopilot Waypoint - * Set a solar system as autopilot waypoint --- Alternate route: `/dev/ui/autopilot/waypoint/` Alternate route: `/v2/ui/autopilot/waypoint/` - * @param addToBeginning Whether this solar system should be added to the beginning of all waypoints - * @param clearOtherWaypoints Whether clean other waypoints beforing adding this one - * @param destinationId The destination to travel to, can be solar system, station or structure's id - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public postUiAutopilotWaypoint(addToBeginning: boolean, clearOtherWaypoints: boolean, destinationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public postUiAutopilotWaypoint(addToBeginning: boolean, clearOtherWaypoints: boolean, destinationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public postUiAutopilotWaypoint(addToBeginning: boolean, clearOtherWaypoints: boolean, destinationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public postUiAutopilotWaypoint(addToBeginning: boolean, clearOtherWaypoints: boolean, destinationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (addToBeginning === null || addToBeginning === undefined) { - throw new Error('Required parameter addToBeginning was null or undefined when calling postUiAutopilotWaypoint.'); - } - if (clearOtherWaypoints === null || clearOtherWaypoints === undefined) { - throw new Error('Required parameter clearOtherWaypoints was null or undefined when calling postUiAutopilotWaypoint.'); - } - if (destinationId === null || destinationId === undefined) { - throw new Error('Required parameter destinationId was null or undefined when calling postUiAutopilotWaypoint.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (addToBeginning !== undefined) { - queryParameters = queryParameters.set('add_to_beginning', addToBeginning); - } - if (clearOtherWaypoints !== undefined) { - queryParameters = queryParameters.set('clear_other_waypoints', clearOtherWaypoints); - } - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (destinationId !== undefined) { - queryParameters = queryParameters.set('destination_id', destinationId); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.post(`${this.basePath}/ui/autopilot/waypoint/`, - null, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Open Contract Window - * Open the contract window inside the client --- Alternate route: `/dev/ui/openwindow/contract/` Alternate route: `/legacy/ui/openwindow/contract/` Alternate route: `/v1/ui/openwindow/contract/` - * @param contractId The contract to open - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public postUiOpenwindowContract(contractId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public postUiOpenwindowContract(contractId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public postUiOpenwindowContract(contractId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public postUiOpenwindowContract(contractId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (contractId === null || contractId === undefined) { - throw new Error('Required parameter contractId was null or undefined when calling postUiOpenwindowContract.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (contractId !== undefined) { - queryParameters = queryParameters.set('contract_id', contractId); - } - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.post(`${this.basePath}/ui/openwindow/contract/`, - null, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Open Information Window - * Open the information window for a character, corporation or alliance inside the client --- Alternate route: `/dev/ui/openwindow/information/` Alternate route: `/legacy/ui/openwindow/information/` Alternate route: `/v1/ui/openwindow/information/` - * @param targetId The target to open - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public postUiOpenwindowInformation(targetId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public postUiOpenwindowInformation(targetId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public postUiOpenwindowInformation(targetId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public postUiOpenwindowInformation(targetId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (targetId === null || targetId === undefined) { - throw new Error('Required parameter targetId was null or undefined when calling postUiOpenwindowInformation.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (targetId !== undefined) { - queryParameters = queryParameters.set('target_id', targetId); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.post(`${this.basePath}/ui/openwindow/information/`, - null, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Open Market Details - * Open the market details window for a specific typeID inside the client --- Alternate route: `/dev/ui/openwindow/marketdetails/` Alternate route: `/legacy/ui/openwindow/marketdetails/` Alternate route: `/v1/ui/openwindow/marketdetails/` - * @param typeId The item type to open in market window - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public postUiOpenwindowMarketdetails(typeId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public postUiOpenwindowMarketdetails(typeId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public postUiOpenwindowMarketdetails(typeId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public postUiOpenwindowMarketdetails(typeId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (typeId === null || typeId === undefined) { - throw new Error('Required parameter typeId was null or undefined when calling postUiOpenwindowMarketdetails.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (typeId !== undefined) { - queryParameters = queryParameters.set('type_id', typeId); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.post(`${this.basePath}/ui/openwindow/marketdetails/`, - null, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Open New Mail Window - * Open the New Mail window, according to settings from the request if applicable --- Alternate route: `/dev/ui/openwindow/newmail/` Alternate route: `/legacy/ui/openwindow/newmail/` Alternate route: `/v1/ui/openwindow/newmail/` - * @param newMail The details of mail to create - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public postUiOpenwindowNewmail(newMail: PostUiOpenwindowNewmailNewMail, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public postUiOpenwindowNewmail(newMail: PostUiOpenwindowNewmailNewMail, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public postUiOpenwindowNewmail(newMail: PostUiOpenwindowNewmailNewMail, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public postUiOpenwindowNewmail(newMail: PostUiOpenwindowNewmailNewMail, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (newMail === null || newMail === undefined) { - throw new Error('Required parameter newMail was null or undefined when calling postUiOpenwindowNewmail.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - let httpContentTypeSelected:string | undefined = this.configuration.selectHeaderContentType(consumes); - if (httpContentTypeSelected != undefined) { - headers = headers.set("Content-Type", httpContentTypeSelected); - } - - return this.httpClient.post(`${this.basePath}/ui/openwindow/newmail/`, - newMail, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/wallet.service.ts b/src/app/eve-online-angular-client/api/wallet.service.ts deleted file mode 100755 index 40fd749..0000000 --- a/src/app/eve-online-angular-client/api/wallet.service.ts +++ /dev/null @@ -1,491 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { Forbidden } from '../model/forbidden'; -import { GetCharactersCharacterIdWalletJournal200Ok } from '../model/getCharactersCharacterIdWalletJournal200Ok'; -import { GetCharactersCharacterIdWalletTransactions200Ok } from '../model/getCharactersCharacterIdWalletTransactions200Ok'; -import { GetCorporationsCorporationIdWallets200Ok } from '../model/getCorporationsCorporationIdWallets200Ok'; -import { GetCorporationsCorporationIdWalletsDivisionJournal200Ok } from '../model/getCorporationsCorporationIdWalletsDivisionJournal200Ok'; -import { GetCorporationsCorporationIdWalletsDivisionTransactions200Ok } from '../model/getCorporationsCorporationIdWalletsDivisionTransactions200Ok'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class WalletService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * Get a character's wallet balance - * Returns a character's wallet balance --- Alternate route: `/dev/characters/{character_id}/wallet/` Alternate route: `/legacy/characters/{character_id}/wallet/` Alternate route: `/v1/characters/{character_id}/wallet/` --- This route is cached for up to 120 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdWallet(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getCharactersCharacterIdWallet(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdWallet(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdWallet(characterId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdWallet.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/wallet/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get character wallet journal - * Retrieve character wallet journal --- Alternate route: `/v3/characters/{character_id}/wallet/journal/` --- This route is cached for up to 3600 seconds --- [This route has an available update](https://esi.tech.ccp.is/diff/latest/dev/#GET-/characters/{character_id}/wallet/journal/) - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param fromId Only show journal entries happened before the transaction referenced by this id - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdWalletJournal(characterId: number, datasource?: string, fromId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdWalletJournal(characterId: number, datasource?: string, fromId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdWalletJournal(characterId: number, datasource?: string, fromId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdWalletJournal(characterId: number, datasource?: string, fromId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdWalletJournal.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (fromId !== undefined) { - queryParameters = queryParameters.set('from_id', fromId); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/wallet/journal/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get wallet transactions - * Get wallet transactions of a character --- Alternate route: `/dev/characters/{character_id}/wallet/transactions/` Alternate route: `/legacy/characters/{character_id}/wallet/transactions/` Alternate route: `/v1/characters/{character_id}/wallet/transactions/` --- This route is cached for up to 3600 seconds - * @param characterId An EVE character ID - * @param datasource The server name you would like data from - * @param fromId Only show transactions happened before the one referenced by this id - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCharactersCharacterIdWalletTransactions(characterId: number, datasource?: string, fromId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCharactersCharacterIdWalletTransactions(characterId: number, datasource?: string, fromId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdWalletTransactions(characterId: number, datasource?: string, fromId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCharactersCharacterIdWalletTransactions(characterId: number, datasource?: string, fromId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (characterId === null || characterId === undefined) { - throw new Error('Required parameter characterId was null or undefined when calling getCharactersCharacterIdWalletTransactions.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (fromId !== undefined) { - queryParameters = queryParameters.set('from_id', fromId); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/characters/${encodeURIComponent(String(characterId))}/wallet/transactions/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Returns a corporation's wallet balance - * Get a corporation's wallets --- Alternate route: `/dev/corporations/{corporation_id}/wallets/` Alternate route: `/legacy/corporations/{corporation_id}/wallets/` Alternate route: `/v1/corporations/{corporation_id}/wallets/` --- This route is cached for up to 300 seconds --- Requires one of the following EVE corporation role(s): Accountant, Junior_Accountant - * @param corporationId An EVE corporation ID - * @param datasource The server name you would like data from - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdWallets(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdWallets(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdWallets(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdWallets(corporationId: number, datasource?: string, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdWallets.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/wallets/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation wallet journal - * Retrieve corporation wallet journal --- Alternate route: `/v2/corporations/{corporation_id}/wallets/{division}/journal/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Accountant, Junior_Accountant --- [This route has an available update](https://esi.tech.ccp.is/diff/latest/dev/#GET-/corporations/{corporation_id}/wallets/{division}/journal/) - * @param corporationId An EVE corporation ID - * @param division Wallet key of the division to fetch journals from - * @param datasource The server name you would like data from - * @param fromId Only show journal entries happened before the transaction referenced by this id - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdWalletsDivisionJournal(corporationId: number, division: number, datasource?: string, fromId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdWalletsDivisionJournal(corporationId: number, division: number, datasource?: string, fromId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdWalletsDivisionJournal(corporationId: number, division: number, datasource?: string, fromId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdWalletsDivisionJournal(corporationId: number, division: number, datasource?: string, fromId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdWalletsDivisionJournal.'); - } - if (division === null || division === undefined) { - throw new Error('Required parameter division was null or undefined when calling getCorporationsCorporationIdWalletsDivisionJournal.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (fromId !== undefined) { - queryParameters = queryParameters.set('from_id', fromId); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/wallets/${encodeURIComponent(String(division))}/journal/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get corporation wallet transactions - * Get wallet transactions of a corporation --- Alternate route: `/dev/corporations/{corporation_id}/wallets/{division}/transactions/` Alternate route: `/legacy/corporations/{corporation_id}/wallets/{division}/transactions/` Alternate route: `/v1/corporations/{corporation_id}/wallets/{division}/transactions/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Accountant, Junior_Accountant - * @param corporationId An EVE corporation ID - * @param division Wallet key of the division to fetch journals from - * @param datasource The server name you would like data from - * @param fromId Only show journal entries happened before the transaction referenced by this id - * @param token Access token to use if unable to set a header - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getCorporationsCorporationIdWalletsDivisionTransactions(corporationId: number, division: number, datasource?: string, fromId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getCorporationsCorporationIdWalletsDivisionTransactions(corporationId: number, division: number, datasource?: string, fromId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdWalletsDivisionTransactions(corporationId: number, division: number, datasource?: string, fromId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getCorporationsCorporationIdWalletsDivisionTransactions(corporationId: number, division: number, datasource?: string, fromId?: number, token?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (corporationId === null || corporationId === undefined) { - throw new Error('Required parameter corporationId was null or undefined when calling getCorporationsCorporationIdWalletsDivisionTransactions.'); - } - if (division === null || division === undefined) { - throw new Error('Required parameter division was null or undefined when calling getCorporationsCorporationIdWalletsDivisionTransactions.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (fromId !== undefined) { - queryParameters = queryParameters.set('from_id', fromId); - } - if (token !== undefined) { - queryParameters = queryParameters.set('token', token); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // authentication (evesso) required - if (this.configuration.accessToken) { - let accessToken = typeof this.configuration.accessToken === 'function' - ? this.configuration.accessToken() - : this.configuration.accessToken; - headers = headers.set('Authorization', 'Bearer ' + accessToken); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/corporations/${encodeURIComponent(String(corporationId))}/wallets/${encodeURIComponent(String(division))}/transactions/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/api/wars.service.ts b/src/app/eve-online-angular-client/api/wars.service.ts deleted file mode 100755 index de99f58..0000000 --- a/src/app/eve-online-angular-client/api/wars.service.ts +++ /dev/null @@ -1,232 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -/* tslint:disable:no-unused-variable member-ordering */ - -import { Inject, Injectable, Optional } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, - HttpResponse, HttpEvent } from '@angular/common/http'; -import { CustomHttpUrlEncodingCodec } from '../encoder'; - -import { Observable } from 'rxjs/Observable'; - -import { GetWarsWarIdKillmails200Ok } from '../model/getWarsWarIdKillmails200Ok'; -import { GetWarsWarIdKillmailsUnprocessableEntity } from '../model/getWarsWarIdKillmailsUnprocessableEntity'; -import { GetWarsWarIdOk } from '../model/getWarsWarIdOk'; -import { GetWarsWarIdUnprocessableEntity } from '../model/getWarsWarIdUnprocessableEntity'; -import { InternalServerError } from '../model/internalServerError'; - -import { BASE_PATH, COLLECTION_FORMATS } from '../variables'; -import { Configuration } from '../configuration'; - - -@Injectable() -export class WarsService { - - protected basePath = 'https://esi.tech.ccp.is/latest'; - public defaultHeaders = new HttpHeaders(); - public configuration = new Configuration(); - - constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) { - if (basePath) { - this.basePath = basePath; - } - if (configuration) { - this.configuration = configuration; - this.basePath = basePath || configuration.basePath || this.basePath; - } - } - - /** - * @param consumes string[] mime-types - * @return true: consumes contains 'multipart/form-data', false: otherwise - */ - private canConsumeForm(consumes: string[]): boolean { - const form = 'multipart/form-data'; - for (let consume of consumes) { - if (form === consume) { - return true; - } - } - return false; - } - - - /** - * List wars - * Return a list of wars --- Alternate route: `/dev/wars/` Alternate route: `/legacy/wars/` Alternate route: `/v1/wars/` --- This route is cached for up to 3600 seconds - * @param datasource The server name you would like data from - * @param maxWarId Only return wars with ID smaller than this. - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getWars(datasource?: string, maxWarId?: number, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getWars(datasource?: string, maxWarId?: number, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getWars(datasource?: string, maxWarId?: number, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getWars(datasource?: string, maxWarId?: number, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (maxWarId !== undefined) { - queryParameters = queryParameters.set('max_war_id', maxWarId); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/wars/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * Get war information - * Return details about a war --- Alternate route: `/dev/wars/{war_id}/` Alternate route: `/legacy/wars/{war_id}/` Alternate route: `/v1/wars/{war_id}/` --- This route is cached for up to 3600 seconds - * @param warId ID for a war - * @param datasource The server name you would like data from - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getWarsWarId(warId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable; - public getWarsWarId(warId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>; - public getWarsWarId(warId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>; - public getWarsWarId(warId: number, datasource?: string, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (warId === null || warId === undefined) { - throw new Error('Required parameter warId was null or undefined when calling getWarsWarId.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get(`${this.basePath}/wars/${encodeURIComponent(String(warId))}/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - - /** - * List kills for a war - * Return a list of kills related to a war --- Alternate route: `/dev/wars/{war_id}/killmails/` Alternate route: `/legacy/wars/{war_id}/killmails/` Alternate route: `/v1/wars/{war_id}/killmails/` --- This route is cached for up to 3600 seconds - * @param warId A valid war ID - * @param datasource The server name you would like data from - * @param page Which page of results to return - * @param userAgent Client identifier, takes precedence over headers - * @param xUserAgent Client identifier, takes precedence over User-Agent - * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. - * @param reportProgress flag to report request and response progress. - */ - public getWarsWarIdKillmails(warId: number, datasource?: string, page?: number, userAgent?: string, xUserAgent?: string, observe?: 'body', reportProgress?: boolean): Observable>; - public getWarsWarIdKillmails(warId: number, datasource?: string, page?: number, userAgent?: string, xUserAgent?: string, observe?: 'response', reportProgress?: boolean): Observable>>; - public getWarsWarIdKillmails(warId: number, datasource?: string, page?: number, userAgent?: string, xUserAgent?: string, observe?: 'events', reportProgress?: boolean): Observable>>; - public getWarsWarIdKillmails(warId: number, datasource?: string, page?: number, userAgent?: string, xUserAgent?: string, observe: any = 'body', reportProgress: boolean = false ): Observable { - if (warId === null || warId === undefined) { - throw new Error('Required parameter warId was null or undefined when calling getWarsWarIdKillmails.'); - } - - let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()}); - if (datasource !== undefined) { - queryParameters = queryParameters.set('datasource', datasource); - } - if (page !== undefined) { - queryParameters = queryParameters.set('page', page); - } - if (userAgent !== undefined) { - queryParameters = queryParameters.set('user_agent', userAgent); - } - - let headers = this.defaultHeaders; - if (xUserAgent !== undefined && xUserAgent !== null) { - headers = headers.set('X-User-Agent', String(xUserAgent)); - } - - // to determine the Accept header - let httpHeaderAccepts: string[] = [ - 'application/json' - ]; - let httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts); - if (httpHeaderAcceptSelected != undefined) { - headers = headers.set("Accept", httpHeaderAcceptSelected); - } - - // to determine the Content-Type header - let consumes: string[] = [ - ]; - - return this.httpClient.get>(`${this.basePath}/wars/${encodeURIComponent(String(warId))}/killmails/`, - { - params: queryParameters, - withCredentials: this.configuration.withCredentials, - headers: headers, - observe: observe, - reportProgress: reportProgress - } - ); - } - -} diff --git a/src/app/eve-online-angular-client/configuration.ts b/src/app/eve-online-angular-client/configuration.ts deleted file mode 100755 index 2ee1824..0000000 --- a/src/app/eve-online-angular-client/configuration.ts +++ /dev/null @@ -1,79 +0,0 @@ -export interface ConfigurationParameters { - apiKeys?: {[ key: string ]: string}; - username?: string; - password?: string; - accessToken?: string | (() => string); - basePath?: string; - withCredentials?: boolean; -} - -export class Configuration { - apiKeys?: {[ key: string ]: string}; - username?: string; - password?: string; - accessToken?: string | (() => string); - basePath?: string; - withCredentials?: boolean; - - constructor(configurationParameters: ConfigurationParameters = {}) { - this.apiKeys = configurationParameters.apiKeys; - this.username = configurationParameters.username; - this.password = configurationParameters.password; - this.accessToken = configurationParameters.accessToken; - this.basePath = configurationParameters.basePath; - this.withCredentials = configurationParameters.withCredentials; - } - - /** - * Select the correct content-type to use for a request. - * Uses {@link Configuration#isJsonMime} to determine the correct content-type. - * If no content type is found return the first found type if the contentTypes is not empty - * @param {string[]} contentTypes - the array of content types that are available for selection - * @returns {string} the selected content-type or undefined if no selection could be made. - */ - public selectHeaderContentType (contentTypes: string[]): string | undefined { - if (contentTypes.length == 0) { - return undefined; - } - - let type = contentTypes.find(x => this.isJsonMime(x)); - if (type === undefined) { - return contentTypes[0]; - } - return type; - } - - /** - * Select the correct accept content-type to use for a request. - * Uses {@link Configuration#isJsonMime} to determine the correct accept content-type. - * If no content type is found return the first found type if the contentTypes is not empty - * @param {string[]} accepts - the array of content types that are available for selection. - * @returns {string} the selected content-type or undefined if no selection could be made. - */ - public selectHeaderAccept(accepts: string[]): string | undefined { - if (accepts.length == 0) { - return undefined; - } - - let type = accepts.find(x => this.isJsonMime(x)); - if (type === undefined) { - return accepts[0]; - } - return type; - } - - /** - * Check if the given MIME is a JSON MIME. - * JSON MIME examples: - * application/json - * application/json; charset=UTF8 - * APPLICATION/JSON - * application/vnd.company+json - * @param {string} mime - MIME (Multipurpose Internet Mail Extensions) - * @return {boolean} True if the given MIME is JSON, false otherwise. - */ - public isJsonMime(mime: string): boolean { - const jsonMime: RegExp = new RegExp('^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$', 'i'); - return mime != null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json'); - } -} diff --git a/src/app/eve-online-angular-client/encoder.ts b/src/app/eve-online-angular-client/encoder.ts deleted file mode 100755 index f1c6b78..0000000 --- a/src/app/eve-online-angular-client/encoder.ts +++ /dev/null @@ -1,18 +0,0 @@ - import { HttpUrlEncodingCodec } from '@angular/common/http'; - -/** -* CustomHttpUrlEncodingCodec -* Fix plus sign (+) not encoding, so sent as blank space -* See: https://github.com/angular/angular/issues/11058#issuecomment-247367318 -*/ -export class CustomHttpUrlEncodingCodec extends HttpUrlEncodingCodec { - encodeKey(k: string): string { - k = super.encodeKey(k); - return k.replace(/\+/gi, '%2B'); - } - encodeValue(v: string): string { - v = super.encodeValue(v); - return v.replace(/\+/gi, '%2B'); - } -} - diff --git a/src/app/eve-online-angular-client/git_push.sh b/src/app/eve-online-angular-client/git_push.sh deleted file mode 100755 index da84dcd..0000000 --- a/src/app/eve-online-angular-client/git_push.sh +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/sh -# ref: https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/ -# -# Usage example: /bin/sh ./git_push.sh wing328 swagger-petstore-perl "minor update" - -git_user_id=$1 -git_repo_id=$2 -release_note=$3 - -if [ "$git_user_id" = "" ]; then - git_user_id="" - echo "[INFO] No command line input provided. Set \$git_user_id to $git_user_id" -fi - -if [ "$git_repo_id" = "" ]; then - git_repo_id="" - echo "[INFO] No command line input provided. Set \$git_repo_id to $git_repo_id" -fi - -if [ "$release_note" = "" ]; then - release_note="" - echo "[INFO] No command line input provided. Set \$release_note to $release_note" -fi - -# Initialize the local directory as a Git repository -git init - -# Adds the files in the local repository and stages them for commit. -git add . - -# Commits the tracked changes and prepares them to be pushed to a remote repository. -git commit -m "$release_note" - -# Sets the new remote -git_remote=`git remote` -if [ "$git_remote" = "" ]; then # git remote not defined - - if [ "$GIT_TOKEN" = "" ]; then - echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git credential in your environment." - git remote add origin https://github.com/${git_user_id}/${git_repo_id}.git - else - git remote add origin https://${git_user_id}:${GIT_TOKEN}@github.com/${git_user_id}/${git_repo_id}.git - fi - -fi - -git pull origin master - -# Pushes (Forces) the changes in the local repository up to the remote repository -echo "Git pushing to https://github.com/${git_user_id}/${git_repo_id}.git" -git push origin master 2>&1 | grep -v 'To https' - diff --git a/src/app/eve-online-angular-client/index.ts b/src/app/eve-online-angular-client/index.ts deleted file mode 100755 index c312b70..0000000 --- a/src/app/eve-online-angular-client/index.ts +++ /dev/null @@ -1,5 +0,0 @@ -export * from './api/api'; -export * from './model/models'; -export * from './variables'; -export * from './configuration'; -export * from './api.module'; \ No newline at end of file diff --git a/src/app/eve-online-angular-client/model/deleteCharactersCharacterIdMailLabelsLabelIdUnprocessableEntity.ts b/src/app/eve-online-angular-client/model/deleteCharactersCharacterIdMailLabelsLabelIdUnprocessableEntity.ts deleted file mode 100755 index eba4539..0000000 --- a/src/app/eve-online-angular-client/model/deleteCharactersCharacterIdMailLabelsLabelIdUnprocessableEntity.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Unprocessable entity - */ -export interface DeleteCharactersCharacterIdMailLabelsLabelIdUnprocessableEntity { - /** - * Unprocessable entity message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/deleteFleetsFleetIdMembersMemberIdNotFound.ts b/src/app/eve-online-angular-client/model/deleteFleetsFleetIdMembersMemberIdNotFound.ts deleted file mode 100755 index 1bfde6a..0000000 --- a/src/app/eve-online-angular-client/model/deleteFleetsFleetIdMembersMemberIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface DeleteFleetsFleetIdMembersMemberIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/deleteFleetsFleetIdSquadsSquadIdNotFound.ts b/src/app/eve-online-angular-client/model/deleteFleetsFleetIdSquadsSquadIdNotFound.ts deleted file mode 100755 index 3bd70ba..0000000 --- a/src/app/eve-online-angular-client/model/deleteFleetsFleetIdSquadsSquadIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface DeleteFleetsFleetIdSquadsSquadIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/deleteFleetsFleetIdWingsWingIdNotFound.ts b/src/app/eve-online-angular-client/model/deleteFleetsFleetIdWingsWingIdNotFound.ts deleted file mode 100755 index 6d59203..0000000 --- a/src/app/eve-online-angular-client/model/deleteFleetsFleetIdWingsWingIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface DeleteFleetsFleetIdWingsWingIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/forbidden.ts b/src/app/eve-online-angular-client/model/forbidden.ts deleted file mode 100755 index a496896..0000000 --- a/src/app/eve-online-angular-client/model/forbidden.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Forbidden model - */ -export interface Forbidden { - /** - * Forbidden message - */ - error: string; - /** - * Status code received from SSO - */ - ssoStatus?: number; -} diff --git a/src/app/eve-online-angular-client/model/getAlliancesAllianceIdContacts200Ok.ts b/src/app/eve-online-angular-client/model/getAlliancesAllianceIdContacts200Ok.ts deleted file mode 100755 index db23c17..0000000 --- a/src/app/eve-online-angular-client/model/getAlliancesAllianceIdContacts200Ok.ts +++ /dev/null @@ -1,43 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetAlliancesAllianceIdContacts200Ok { - /** - * Standing of the contact - */ - standing: number; - /** - * contact_type string - */ - contactType: GetAlliancesAllianceIdContacts200Ok.ContactTypeEnum; - /** - * contact_id integer - */ - contactId: number; - /** - * Custom label of the contact - */ - labelId?: number; -} -export namespace GetAlliancesAllianceIdContacts200Ok { - export type ContactTypeEnum = 'character' | 'corporation' | 'alliance' | 'faction'; - export const ContactTypeEnum = { - Character: 'character' as ContactTypeEnum, - Corporation: 'corporation' as ContactTypeEnum, - Alliance: 'alliance' as ContactTypeEnum, - Faction: 'faction' as ContactTypeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getAlliancesAllianceIdIconsNotFound.ts b/src/app/eve-online-angular-client/model/getAlliancesAllianceIdIconsNotFound.ts deleted file mode 100755 index 743fe52..0000000 --- a/src/app/eve-online-angular-client/model/getAlliancesAllianceIdIconsNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * No image server for this datasource - */ -export interface GetAlliancesAllianceIdIconsNotFound { - /** - * error message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getAlliancesAllianceIdIconsOk.ts b/src/app/eve-online-angular-client/model/getAlliancesAllianceIdIconsOk.ts deleted file mode 100755 index fe7e365..0000000 --- a/src/app/eve-online-angular-client/model/getAlliancesAllianceIdIconsOk.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetAlliancesAllianceIdIconsOk { - /** - * px64x64 string - */ - px64x64?: string; - /** - * px128x128 string - */ - px128x128?: string; -} diff --git a/src/app/eve-online-angular-client/model/getAlliancesAllianceIdNotFound.ts b/src/app/eve-online-angular-client/model/getAlliancesAllianceIdNotFound.ts deleted file mode 100755 index 8246944..0000000 --- a/src/app/eve-online-angular-client/model/getAlliancesAllianceIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetAlliancesAllianceIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getAlliancesAllianceIdOk.ts b/src/app/eve-online-angular-client/model/getAlliancesAllianceIdOk.ts deleted file mode 100755 index afe8ed6..0000000 --- a/src/app/eve-online-angular-client/model/getAlliancesAllianceIdOk.ts +++ /dev/null @@ -1,46 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetAlliancesAllianceIdOk { - /** - * the full name of the alliance - */ - name: string; - /** - * ID of the character that created the alliance - */ - creatorId: number; - /** - * ID of the corporation that created the alliance - */ - creatorCorporationId: number; - /** - * the short name of the alliance - */ - ticker: string; - /** - * the executor corporation ID, if this alliance is not closed - */ - executorCorporationId?: number; - /** - * date_founded string - */ - dateFounded: Date; - /** - * Faction ID this alliance is fighting for, if this alliance is enlisted in factional warfare - */ - factionId?: number; -} diff --git a/src/app/eve-online-angular-client/model/getAlliancesNames200Ok.ts b/src/app/eve-online-angular-client/model/getAlliancesNames200Ok.ts deleted file mode 100755 index f74cf55..0000000 --- a/src/app/eve-online-angular-client/model/getAlliancesNames200Ok.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetAlliancesNames200Ok { - /** - * alliance_id integer - */ - allianceId: number; - /** - * alliance_name string - */ - allianceName: string; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdAgentsResearch200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdAgentsResearch200Ok.ts deleted file mode 100755 index dab7fb6..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdAgentsResearch200Ok.ts +++ /dev/null @@ -1,38 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdAgentsResearch200Ok { - /** - * agent_id integer - */ - agentId: number; - /** - * skill_type_id integer - */ - skillTypeId: number; - /** - * started_at string - */ - startedAt: Date; - /** - * points_per_day number - */ - pointsPerDay: number; - /** - * remainder_points number - */ - remainderPoints: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdAssets200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdAssets200Ok.ts deleted file mode 100755 index c522f82..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdAssets200Ok.ts +++ /dev/null @@ -1,135 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdAssets200Ok { - /** - * type_id integer - */ - typeId: number; - /** - * quantity integer - */ - quantity: number; - /** - * location_id integer - */ - locationId: number; - /** - * location_type string - */ - locationType: GetCharactersCharacterIdAssets200Ok.LocationTypeEnum; - /** - * item_id integer - */ - itemId: number; - /** - * location_flag string - */ - locationFlag: GetCharactersCharacterIdAssets200Ok.LocationFlagEnum; - /** - * is_singleton boolean - */ - isSingleton: boolean; -} -export namespace GetCharactersCharacterIdAssets200Ok { - export type LocationTypeEnum = 'station' | 'solar_system' | 'other'; - export const LocationTypeEnum = { - Station: 'station' as LocationTypeEnum, - SolarSystem: 'solar_system' as LocationTypeEnum, - Other: 'other' as LocationTypeEnum - } - export type LocationFlagEnum = 'AssetSafety' | 'AutoFit' | 'Cargo' | 'CorpseBay' | 'Deliveries' | 'DroneBay' | 'FighterBay' | 'FighterTube0' | 'FighterTube1' | 'FighterTube2' | 'FighterTube3' | 'FighterTube4' | 'FleetHangar' | 'Hangar' | 'HangarAll' | 'HiSlot0' | 'HiSlot1' | 'HiSlot2' | 'HiSlot3' | 'HiSlot4' | 'HiSlot5' | 'HiSlot6' | 'HiSlot7' | 'HiddenModifiers' | 'Implant' | 'LoSlot0' | 'LoSlot1' | 'LoSlot2' | 'LoSlot3' | 'LoSlot4' | 'LoSlot5' | 'LoSlot6' | 'LoSlot7' | 'Locked' | 'MedSlot0' | 'MedSlot1' | 'MedSlot2' | 'MedSlot3' | 'MedSlot4' | 'MedSlot5' | 'MedSlot6' | 'MedSlot7' | 'QuafeBay' | 'RigSlot0' | 'RigSlot1' | 'RigSlot2' | 'RigSlot3' | 'RigSlot4' | 'RigSlot5' | 'RigSlot6' | 'RigSlot7' | 'ShipHangar' | 'Skill' | 'SpecializedAmmoHold' | 'SpecializedCommandCenterHold' | 'SpecializedFuelBay' | 'SpecializedGasHold' | 'SpecializedIndustrialShipHold' | 'SpecializedLargeShipHold' | 'SpecializedMaterialBay' | 'SpecializedMediumShipHold' | 'SpecializedMineralHold' | 'SpecializedOreHold' | 'SpecializedPlanetaryCommoditiesHold' | 'SpecializedSalvageHold' | 'SpecializedShipHold' | 'SpecializedSmallShipHold' | 'SubSystemBay' | 'SubSystemSlot0' | 'SubSystemSlot1' | 'SubSystemSlot2' | 'SubSystemSlot3' | 'SubSystemSlot4' | 'SubSystemSlot5' | 'SubSystemSlot6' | 'SubSystemSlot7' | 'Unlocked' | 'Wardrobe'; - export const LocationFlagEnum = { - AssetSafety: 'AssetSafety' as LocationFlagEnum, - AutoFit: 'AutoFit' as LocationFlagEnum, - Cargo: 'Cargo' as LocationFlagEnum, - CorpseBay: 'CorpseBay' as LocationFlagEnum, - Deliveries: 'Deliveries' as LocationFlagEnum, - DroneBay: 'DroneBay' as LocationFlagEnum, - FighterBay: 'FighterBay' as LocationFlagEnum, - FighterTube0: 'FighterTube0' as LocationFlagEnum, - FighterTube1: 'FighterTube1' as LocationFlagEnum, - FighterTube2: 'FighterTube2' as LocationFlagEnum, - FighterTube3: 'FighterTube3' as LocationFlagEnum, - FighterTube4: 'FighterTube4' as LocationFlagEnum, - FleetHangar: 'FleetHangar' as LocationFlagEnum, - Hangar: 'Hangar' as LocationFlagEnum, - HangarAll: 'HangarAll' as LocationFlagEnum, - HiSlot0: 'HiSlot0' as LocationFlagEnum, - HiSlot1: 'HiSlot1' as LocationFlagEnum, - HiSlot2: 'HiSlot2' as LocationFlagEnum, - HiSlot3: 'HiSlot3' as LocationFlagEnum, - HiSlot4: 'HiSlot4' as LocationFlagEnum, - HiSlot5: 'HiSlot5' as LocationFlagEnum, - HiSlot6: 'HiSlot6' as LocationFlagEnum, - HiSlot7: 'HiSlot7' as LocationFlagEnum, - HiddenModifiers: 'HiddenModifiers' as LocationFlagEnum, - Implant: 'Implant' as LocationFlagEnum, - LoSlot0: 'LoSlot0' as LocationFlagEnum, - LoSlot1: 'LoSlot1' as LocationFlagEnum, - LoSlot2: 'LoSlot2' as LocationFlagEnum, - LoSlot3: 'LoSlot3' as LocationFlagEnum, - LoSlot4: 'LoSlot4' as LocationFlagEnum, - LoSlot5: 'LoSlot5' as LocationFlagEnum, - LoSlot6: 'LoSlot6' as LocationFlagEnum, - LoSlot7: 'LoSlot7' as LocationFlagEnum, - Locked: 'Locked' as LocationFlagEnum, - MedSlot0: 'MedSlot0' as LocationFlagEnum, - MedSlot1: 'MedSlot1' as LocationFlagEnum, - MedSlot2: 'MedSlot2' as LocationFlagEnum, - MedSlot3: 'MedSlot3' as LocationFlagEnum, - MedSlot4: 'MedSlot4' as LocationFlagEnum, - MedSlot5: 'MedSlot5' as LocationFlagEnum, - MedSlot6: 'MedSlot6' as LocationFlagEnum, - MedSlot7: 'MedSlot7' as LocationFlagEnum, - QuafeBay: 'QuafeBay' as LocationFlagEnum, - RigSlot0: 'RigSlot0' as LocationFlagEnum, - RigSlot1: 'RigSlot1' as LocationFlagEnum, - RigSlot2: 'RigSlot2' as LocationFlagEnum, - RigSlot3: 'RigSlot3' as LocationFlagEnum, - RigSlot4: 'RigSlot4' as LocationFlagEnum, - RigSlot5: 'RigSlot5' as LocationFlagEnum, - RigSlot6: 'RigSlot6' as LocationFlagEnum, - RigSlot7: 'RigSlot7' as LocationFlagEnum, - ShipHangar: 'ShipHangar' as LocationFlagEnum, - Skill: 'Skill' as LocationFlagEnum, - SpecializedAmmoHold: 'SpecializedAmmoHold' as LocationFlagEnum, - SpecializedCommandCenterHold: 'SpecializedCommandCenterHold' as LocationFlagEnum, - SpecializedFuelBay: 'SpecializedFuelBay' as LocationFlagEnum, - SpecializedGasHold: 'SpecializedGasHold' as LocationFlagEnum, - SpecializedIndustrialShipHold: 'SpecializedIndustrialShipHold' as LocationFlagEnum, - SpecializedLargeShipHold: 'SpecializedLargeShipHold' as LocationFlagEnum, - SpecializedMaterialBay: 'SpecializedMaterialBay' as LocationFlagEnum, - SpecializedMediumShipHold: 'SpecializedMediumShipHold' as LocationFlagEnum, - SpecializedMineralHold: 'SpecializedMineralHold' as LocationFlagEnum, - SpecializedOreHold: 'SpecializedOreHold' as LocationFlagEnum, - SpecializedPlanetaryCommoditiesHold: 'SpecializedPlanetaryCommoditiesHold' as LocationFlagEnum, - SpecializedSalvageHold: 'SpecializedSalvageHold' as LocationFlagEnum, - SpecializedShipHold: 'SpecializedShipHold' as LocationFlagEnum, - SpecializedSmallShipHold: 'SpecializedSmallShipHold' as LocationFlagEnum, - SubSystemBay: 'SubSystemBay' as LocationFlagEnum, - SubSystemSlot0: 'SubSystemSlot0' as LocationFlagEnum, - SubSystemSlot1: 'SubSystemSlot1' as LocationFlagEnum, - SubSystemSlot2: 'SubSystemSlot2' as LocationFlagEnum, - SubSystemSlot3: 'SubSystemSlot3' as LocationFlagEnum, - SubSystemSlot4: 'SubSystemSlot4' as LocationFlagEnum, - SubSystemSlot5: 'SubSystemSlot5' as LocationFlagEnum, - SubSystemSlot6: 'SubSystemSlot6' as LocationFlagEnum, - SubSystemSlot7: 'SubSystemSlot7' as LocationFlagEnum, - Unlocked: 'Unlocked' as LocationFlagEnum, - Wardrobe: 'Wardrobe' as LocationFlagEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdAttributesOk.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdAttributesOk.ts deleted file mode 100755 index 5ea605c..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdAttributesOk.ts +++ /dev/null @@ -1,50 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdAttributesOk { - /** - * charisma integer - */ - charisma: number; - /** - * intelligence integer - */ - intelligence: number; - /** - * memory integer - */ - memory: number; - /** - * perception integer - */ - perception: number; - /** - * willpower integer - */ - willpower: number; - /** - * Number of available bonus character neural remaps - */ - bonusRemaps?: number; - /** - * Datetime of last neural remap, including usage of bonus remaps - */ - lastRemapDate?: Date; - /** - * Neural remapping cooldown after a character uses remap accrued over time - */ - accruedRemapCooldownDate?: Date; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdBlueprints200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdBlueprints200Ok.ts deleted file mode 100755 index eca6986..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdBlueprints200Ok.ts +++ /dev/null @@ -1,131 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdBlueprints200Ok { - /** - * Unique ID for this item. - */ - itemId: number; - /** - * type_id integer - */ - typeId: number; - /** - * References a solar system, station or item_id if this blueprint is located within a container. If the return value is an item_id, then the Character AssetList API must be queried to find the container using the given item_id to determine the correct location of the Blueprint. - */ - locationId: number; - /** - * Type of the location_id - */ - locationFlag: GetCharactersCharacterIdBlueprints200Ok.LocationFlagEnum; - /** - * A range of numbers with a minimum of -2 and no maximum value where -1 is an original and -2 is a copy. It can be a positive integer if it is a stack of blueprint originals fresh from the market (e.g. no activities performed on them yet). - */ - quantity: number; - /** - * Time Efficiency Level of the blueprint. - */ - timeEfficiency: number; - /** - * Material Efficiency Level of the blueprint. - */ - materialEfficiency: number; - /** - * Number of runs remaining if the blueprint is a copy, -1 if it is an original. - */ - runs: number; -} -export namespace GetCharactersCharacterIdBlueprints200Ok { - export type LocationFlagEnum = 'AutoFit' | 'Cargo' | 'CorpseBay' | 'DroneBay' | 'FleetHangar' | 'Deliveries' | 'HiddenModifiers' | 'Hangar' | 'HangarAll' | 'LoSlot0' | 'LoSlot1' | 'LoSlot2' | 'LoSlot3' | 'LoSlot4' | 'LoSlot5' | 'LoSlot6' | 'LoSlot7' | 'MedSlot0' | 'MedSlot1' | 'MedSlot2' | 'MedSlot3' | 'MedSlot4' | 'MedSlot5' | 'MedSlot6' | 'MedSlot7' | 'HiSlot0' | 'HiSlot1' | 'HiSlot2' | 'HiSlot3' | 'HiSlot4' | 'HiSlot5' | 'HiSlot6' | 'HiSlot7' | 'AssetSafety' | 'Locked' | 'Unlocked' | 'Implant' | 'QuafeBay' | 'RigSlot0' | 'RigSlot1' | 'RigSlot2' | 'RigSlot3' | 'RigSlot4' | 'RigSlot5' | 'RigSlot6' | 'RigSlot7' | 'ShipHangar' | 'SpecializedFuelBay' | 'SpecializedOreHold' | 'SpecializedGasHold' | 'SpecializedMineralHold' | 'SpecializedSalvageHold' | 'SpecializedShipHold' | 'SpecializedSmallShipHold' | 'SpecializedMediumShipHold' | 'SpecializedLargeShipHold' | 'SpecializedIndustrialShipHold' | 'SpecializedAmmoHold' | 'SpecializedCommandCenterHold' | 'SpecializedPlanetaryCommoditiesHold' | 'SpecializedMaterialBay' | 'SubSystemSlot0' | 'SubSystemSlot1' | 'SubSystemSlot2' | 'SubSystemSlot3' | 'SubSystemSlot4' | 'SubSystemSlot5' | 'SubSystemSlot6' | 'SubSystemSlot7' | 'FighterBay' | 'FighterTube0' | 'FighterTube1' | 'FighterTube2' | 'FighterTube3' | 'FighterTube4' | 'Module'; - export const LocationFlagEnum = { - AutoFit: 'AutoFit' as LocationFlagEnum, - Cargo: 'Cargo' as LocationFlagEnum, - CorpseBay: 'CorpseBay' as LocationFlagEnum, - DroneBay: 'DroneBay' as LocationFlagEnum, - FleetHangar: 'FleetHangar' as LocationFlagEnum, - Deliveries: 'Deliveries' as LocationFlagEnum, - HiddenModifiers: 'HiddenModifiers' as LocationFlagEnum, - Hangar: 'Hangar' as LocationFlagEnum, - HangarAll: 'HangarAll' as LocationFlagEnum, - LoSlot0: 'LoSlot0' as LocationFlagEnum, - LoSlot1: 'LoSlot1' as LocationFlagEnum, - LoSlot2: 'LoSlot2' as LocationFlagEnum, - LoSlot3: 'LoSlot3' as LocationFlagEnum, - LoSlot4: 'LoSlot4' as LocationFlagEnum, - LoSlot5: 'LoSlot5' as LocationFlagEnum, - LoSlot6: 'LoSlot6' as LocationFlagEnum, - LoSlot7: 'LoSlot7' as LocationFlagEnum, - MedSlot0: 'MedSlot0' as LocationFlagEnum, - MedSlot1: 'MedSlot1' as LocationFlagEnum, - MedSlot2: 'MedSlot2' as LocationFlagEnum, - MedSlot3: 'MedSlot3' as LocationFlagEnum, - MedSlot4: 'MedSlot4' as LocationFlagEnum, - MedSlot5: 'MedSlot5' as LocationFlagEnum, - MedSlot6: 'MedSlot6' as LocationFlagEnum, - MedSlot7: 'MedSlot7' as LocationFlagEnum, - HiSlot0: 'HiSlot0' as LocationFlagEnum, - HiSlot1: 'HiSlot1' as LocationFlagEnum, - HiSlot2: 'HiSlot2' as LocationFlagEnum, - HiSlot3: 'HiSlot3' as LocationFlagEnum, - HiSlot4: 'HiSlot4' as LocationFlagEnum, - HiSlot5: 'HiSlot5' as LocationFlagEnum, - HiSlot6: 'HiSlot6' as LocationFlagEnum, - HiSlot7: 'HiSlot7' as LocationFlagEnum, - AssetSafety: 'AssetSafety' as LocationFlagEnum, - Locked: 'Locked' as LocationFlagEnum, - Unlocked: 'Unlocked' as LocationFlagEnum, - Implant: 'Implant' as LocationFlagEnum, - QuafeBay: 'QuafeBay' as LocationFlagEnum, - RigSlot0: 'RigSlot0' as LocationFlagEnum, - RigSlot1: 'RigSlot1' as LocationFlagEnum, - RigSlot2: 'RigSlot2' as LocationFlagEnum, - RigSlot3: 'RigSlot3' as LocationFlagEnum, - RigSlot4: 'RigSlot4' as LocationFlagEnum, - RigSlot5: 'RigSlot5' as LocationFlagEnum, - RigSlot6: 'RigSlot6' as LocationFlagEnum, - RigSlot7: 'RigSlot7' as LocationFlagEnum, - ShipHangar: 'ShipHangar' as LocationFlagEnum, - SpecializedFuelBay: 'SpecializedFuelBay' as LocationFlagEnum, - SpecializedOreHold: 'SpecializedOreHold' as LocationFlagEnum, - SpecializedGasHold: 'SpecializedGasHold' as LocationFlagEnum, - SpecializedMineralHold: 'SpecializedMineralHold' as LocationFlagEnum, - SpecializedSalvageHold: 'SpecializedSalvageHold' as LocationFlagEnum, - SpecializedShipHold: 'SpecializedShipHold' as LocationFlagEnum, - SpecializedSmallShipHold: 'SpecializedSmallShipHold' as LocationFlagEnum, - SpecializedMediumShipHold: 'SpecializedMediumShipHold' as LocationFlagEnum, - SpecializedLargeShipHold: 'SpecializedLargeShipHold' as LocationFlagEnum, - SpecializedIndustrialShipHold: 'SpecializedIndustrialShipHold' as LocationFlagEnum, - SpecializedAmmoHold: 'SpecializedAmmoHold' as LocationFlagEnum, - SpecializedCommandCenterHold: 'SpecializedCommandCenterHold' as LocationFlagEnum, - SpecializedPlanetaryCommoditiesHold: 'SpecializedPlanetaryCommoditiesHold' as LocationFlagEnum, - SpecializedMaterialBay: 'SpecializedMaterialBay' as LocationFlagEnum, - SubSystemSlot0: 'SubSystemSlot0' as LocationFlagEnum, - SubSystemSlot1: 'SubSystemSlot1' as LocationFlagEnum, - SubSystemSlot2: 'SubSystemSlot2' as LocationFlagEnum, - SubSystemSlot3: 'SubSystemSlot3' as LocationFlagEnum, - SubSystemSlot4: 'SubSystemSlot4' as LocationFlagEnum, - SubSystemSlot5: 'SubSystemSlot5' as LocationFlagEnum, - SubSystemSlot6: 'SubSystemSlot6' as LocationFlagEnum, - SubSystemSlot7: 'SubSystemSlot7' as LocationFlagEnum, - FighterBay: 'FighterBay' as LocationFlagEnum, - FighterTube0: 'FighterTube0' as LocationFlagEnum, - FighterTube1: 'FighterTube1' as LocationFlagEnum, - FighterTube2: 'FighterTube2' as LocationFlagEnum, - FighterTube3: 'FighterTube3' as LocationFlagEnum, - FighterTube4: 'FighterTube4' as LocationFlagEnum, - Module: 'Module' as LocationFlagEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdBookmarks200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdBookmarks200Ok.ts deleted file mode 100755 index cc60e84..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdBookmarks200Ok.ts +++ /dev/null @@ -1,50 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetCharactersCharacterIdBookmarksCoordinates } from './getCharactersCharacterIdBookmarksCoordinates'; -import { GetCharactersCharacterIdBookmarksItem } from './getCharactersCharacterIdBookmarksItem'; - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdBookmarks200Ok { - /** - * bookmark_id integer - */ - bookmarkId: number; - /** - * folder_id integer - */ - folderId?: number; - /** - * created string - */ - created: Date; - /** - * label string - */ - label: string; - /** - * notes string - */ - notes: string; - /** - * location_id integer - */ - locationId: number; - /** - * creator_id integer - */ - creatorId: number; - item?: GetCharactersCharacterIdBookmarksItem; - coordinates?: GetCharactersCharacterIdBookmarksCoordinates; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdBookmarksCoordinates.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdBookmarksCoordinates.ts deleted file mode 100755 index 91e6698..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdBookmarksCoordinates.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Optional object that is returned if a bookmark was made on a planet or a random location in space. - */ -export interface GetCharactersCharacterIdBookmarksCoordinates { - /** - * x number - */ - x: number; - /** - * y number - */ - y: number; - /** - * z number - */ - z: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdBookmarksFolders200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdBookmarksFolders200Ok.ts deleted file mode 100755 index 966b656..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdBookmarksFolders200Ok.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdBookmarksFolders200Ok { - /** - * folder_id integer - */ - folderId: number; - /** - * name string - */ - name: string; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdBookmarksItem.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdBookmarksItem.ts deleted file mode 100755 index 1adca31..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdBookmarksItem.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Optional object that is returned if a bookmark was made on a particular item. - */ -export interface GetCharactersCharacterIdBookmarksItem { - /** - * item_id integer - */ - itemId: number; - /** - * type_id integer - */ - typeId: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdCalendar200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdCalendar200Ok.ts deleted file mode 100755 index caa1169..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdCalendar200Ok.ts +++ /dev/null @@ -1,47 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * event - */ -export interface GetCharactersCharacterIdCalendar200Ok { - /** - * event_id integer - */ - eventId?: number; - /** - * event_date string - */ - eventDate?: Date; - /** - * title string - */ - title?: string; - /** - * importance integer - */ - importance?: number; - /** - * event_response string - */ - eventResponse?: GetCharactersCharacterIdCalendar200Ok.EventResponseEnum; -} -export namespace GetCharactersCharacterIdCalendar200Ok { - export type EventResponseEnum = 'declined' | 'not_responded' | 'accepted' | 'tentative'; - export const EventResponseEnum = { - Declined: 'declined' as EventResponseEnum, - NotResponded: 'not_responded' as EventResponseEnum, - Accepted: 'accepted' as EventResponseEnum, - Tentative: 'tentative' as EventResponseEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdCalendarEventIdAttendees200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdCalendarEventIdAttendees200Ok.ts deleted file mode 100755 index 59cd068..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdCalendarEventIdAttendees200Ok.ts +++ /dev/null @@ -1,35 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * character_id and response of an attendee - */ -export interface GetCharactersCharacterIdCalendarEventIdAttendees200Ok { - /** - * character_id integer - */ - characterId?: number; - /** - * event_response string - */ - eventResponse?: GetCharactersCharacterIdCalendarEventIdAttendees200Ok.EventResponseEnum; -} -export namespace GetCharactersCharacterIdCalendarEventIdAttendees200Ok { - export type EventResponseEnum = 'declined' | 'not_responded' | 'accepted' | 'tentative'; - export const EventResponseEnum = { - Declined: 'declined' as EventResponseEnum, - NotResponded: 'not_responded' as EventResponseEnum, - Accepted: 'accepted' as EventResponseEnum, - Tentative: 'tentative' as EventResponseEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdCalendarEventIdOk.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdCalendarEventIdOk.ts deleted file mode 100755 index 577b7ee..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdCalendarEventIdOk.ts +++ /dev/null @@ -1,68 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Full details of a specific event - */ -export interface GetCharactersCharacterIdCalendarEventIdOk { - /** - * event_id integer - */ - eventId: number; - /** - * owner_id integer - */ - ownerId: number; - /** - * owner_name string - */ - ownerName: string; - /** - * date string - */ - date: Date; - /** - * title string - */ - title: string; - /** - * Length in minutes - */ - duration: number; - /** - * importance integer - */ - importance: number; - /** - * response string - */ - response: string; - /** - * text string - */ - text: string; - /** - * owner_type string - */ - ownerType: GetCharactersCharacterIdCalendarEventIdOk.OwnerTypeEnum; -} -export namespace GetCharactersCharacterIdCalendarEventIdOk { - export type OwnerTypeEnum = 'eve_server' | 'corporation' | 'faction' | 'character' | 'alliance'; - export const OwnerTypeEnum = { - EveServer: 'eve_server' as OwnerTypeEnum, - Corporation: 'corporation' as OwnerTypeEnum, - Faction: 'faction' as OwnerTypeEnum, - Character: 'character' as OwnerTypeEnum, - Alliance: 'alliance' as OwnerTypeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdChatChannels200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdChatChannels200Ok.ts deleted file mode 100755 index a2ad06f..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdChatChannels200Ok.ts +++ /dev/null @@ -1,62 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetCharactersCharacterIdChatChannelsAllowed } from './getCharactersCharacterIdChatChannelsAllowed'; -import { GetCharactersCharacterIdChatChannelsBlocked } from './getCharactersCharacterIdChatChannelsBlocked'; -import { GetCharactersCharacterIdChatChannelsMuted } from './getCharactersCharacterIdChatChannelsMuted'; -import { GetCharactersCharacterIdChatChannelsOperator } from './getCharactersCharacterIdChatChannelsOperator'; - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdChatChannels200Ok { - /** - * Unique channel ID. Always negative for player-created channels. Permanent (CCP created) channels have a positive ID, but don't appear in the API - */ - channelId: number; - /** - * Displayed name of channel - */ - name: string; - /** - * owner_id integer - */ - ownerId: number; - /** - * Normalized, unique string used to compare channel names - */ - comparisonKey: string; - /** - * If this is a password protected channel - */ - hasPassword: boolean; - /** - * Message of the day for this channel - */ - motd: string; - /** - * allowed array - */ - allowed: Array; - /** - * operators array - */ - operators: Array; - /** - * blocked array - */ - blocked: Array; - /** - * muted array - */ - muted: Array; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdChatChannelsAllowed.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdChatChannelsAllowed.ts deleted file mode 100755 index fb74f17..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdChatChannelsAllowed.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * allowed object - */ -export interface GetCharactersCharacterIdChatChannelsAllowed { - /** - * ID of an allowed channel member - */ - accessorId: number; - /** - * accessor_type string - */ - accessorType: GetCharactersCharacterIdChatChannelsAllowed.AccessorTypeEnum; -} -export namespace GetCharactersCharacterIdChatChannelsAllowed { - export type AccessorTypeEnum = 'character' | 'corporation' | 'alliance'; - export const AccessorTypeEnum = { - Character: 'character' as AccessorTypeEnum, - Corporation: 'corporation' as AccessorTypeEnum, - Alliance: 'alliance' as AccessorTypeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdChatChannelsBlocked.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdChatChannelsBlocked.ts deleted file mode 100755 index 0471639..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdChatChannelsBlocked.ts +++ /dev/null @@ -1,42 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * blocked object - */ -export interface GetCharactersCharacterIdChatChannelsBlocked { - /** - * ID of a blocked channel member - */ - accessorId: number; - /** - * accessor_type string - */ - accessorType: GetCharactersCharacterIdChatChannelsBlocked.AccessorTypeEnum; - /** - * Reason this accessor is blocked - */ - reason?: string; - /** - * Time at which this accessor will no longer be blocked - */ - endAt?: Date; -} -export namespace GetCharactersCharacterIdChatChannelsBlocked { - export type AccessorTypeEnum = 'character' | 'corporation' | 'alliance'; - export const AccessorTypeEnum = { - Character: 'character' as AccessorTypeEnum, - Corporation: 'corporation' as AccessorTypeEnum, - Alliance: 'alliance' as AccessorTypeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdChatChannelsMuted.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdChatChannelsMuted.ts deleted file mode 100755 index 4d991ff..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdChatChannelsMuted.ts +++ /dev/null @@ -1,42 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * muted object - */ -export interface GetCharactersCharacterIdChatChannelsMuted { - /** - * ID of a muted channel member - */ - accessorId: number; - /** - * accessor_type string - */ - accessorType: GetCharactersCharacterIdChatChannelsMuted.AccessorTypeEnum; - /** - * Reason this accessor is muted - */ - reason?: string; - /** - * Time at which this accessor will no longer be muted - */ - endAt?: Date; -} -export namespace GetCharactersCharacterIdChatChannelsMuted { - export type AccessorTypeEnum = 'character' | 'corporation' | 'alliance'; - export const AccessorTypeEnum = { - Character: 'character' as AccessorTypeEnum, - Corporation: 'corporation' as AccessorTypeEnum, - Alliance: 'alliance' as AccessorTypeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdChatChannelsOperator.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdChatChannelsOperator.ts deleted file mode 100755 index bb8f748..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdChatChannelsOperator.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * operator object - */ -export interface GetCharactersCharacterIdChatChannelsOperator { - /** - * ID of a channel operator - */ - accessorId: number; - /** - * accessor_type string - */ - accessorType: GetCharactersCharacterIdChatChannelsOperator.AccessorTypeEnum; -} -export namespace GetCharactersCharacterIdChatChannelsOperator { - export type AccessorTypeEnum = 'character' | 'corporation' | 'alliance'; - export const AccessorTypeEnum = { - Character: 'character' as AccessorTypeEnum, - Corporation: 'corporation' as AccessorTypeEnum, - Alliance: 'alliance' as AccessorTypeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdClonesHomeLocation.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdClonesHomeLocation.ts deleted file mode 100755 index 26ec443..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdClonesHomeLocation.ts +++ /dev/null @@ -1,33 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * home_location object - */ -export interface GetCharactersCharacterIdClonesHomeLocation { - /** - * location_id integer - */ - locationId?: number; - /** - * location_type string - */ - locationType?: GetCharactersCharacterIdClonesHomeLocation.LocationTypeEnum; -} -export namespace GetCharactersCharacterIdClonesHomeLocation { - export type LocationTypeEnum = 'station' | 'structure'; - export const LocationTypeEnum = { - Station: 'station' as LocationTypeEnum, - Structure: 'structure' as LocationTypeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdClonesJumpClone.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdClonesJumpClone.ts deleted file mode 100755 index 58c8586..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdClonesJumpClone.ts +++ /dev/null @@ -1,45 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * jump_clone object - */ -export interface GetCharactersCharacterIdClonesJumpClone { - /** - * jump_clone_id integer - */ - jumpCloneId: number; - /** - * name string - */ - name?: string; - /** - * location_id integer - */ - locationId: number; - /** - * location_type string - */ - locationType: GetCharactersCharacterIdClonesJumpClone.LocationTypeEnum; - /** - * implants array - */ - implants: Array; -} -export namespace GetCharactersCharacterIdClonesJumpClone { - export type LocationTypeEnum = 'station' | 'structure'; - export const LocationTypeEnum = { - Station: 'station' as LocationTypeEnum, - Structure: 'structure' as LocationTypeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdClonesOk.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdClonesOk.ts deleted file mode 100755 index aa3cd68..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdClonesOk.ts +++ /dev/null @@ -1,33 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetCharactersCharacterIdClonesHomeLocation } from './getCharactersCharacterIdClonesHomeLocation'; -import { GetCharactersCharacterIdClonesJumpClone } from './getCharactersCharacterIdClonesJumpClone'; - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdClonesOk { - /** - * last_clone_jump_date string - */ - lastCloneJumpDate?: Date; - homeLocation?: GetCharactersCharacterIdClonesHomeLocation; - /** - * last_station_change_date string - */ - lastStationChangeDate?: Date; - /** - * jump_clones array - */ - jumpClones: Array; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdContacts200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdContacts200Ok.ts deleted file mode 100755 index b2b2f9c..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdContacts200Ok.ts +++ /dev/null @@ -1,51 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdContacts200Ok { - /** - * Standing of the contact - */ - standing: number; - /** - * contact_type string - */ - contactType: GetCharactersCharacterIdContacts200Ok.ContactTypeEnum; - /** - * contact_id integer - */ - contactId: number; - /** - * Whether this contact is being watched - */ - isWatched?: boolean; - /** - * Whether this contact is in the blocked list. Note a missing value denotes unknown, not true or false - */ - isBlocked?: boolean; - /** - * Custom label of the contact - */ - labelId?: number; -} -export namespace GetCharactersCharacterIdContacts200Ok { - export type ContactTypeEnum = 'character' | 'corporation' | 'alliance' | 'faction'; - export const ContactTypeEnum = { - Character: 'character' as ContactTypeEnum, - Corporation: 'corporation' as ContactTypeEnum, - Alliance: 'alliance' as ContactTypeEnum, - Faction: 'faction' as ContactTypeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdContactsLabels200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdContactsLabels200Ok.ts deleted file mode 100755 index 02e799f..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdContactsLabels200Ok.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdContactsLabels200Ok { - /** - * label_id integer - */ - labelId: number; - /** - * label_name string - */ - labelName: string; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdContracts200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdContracts200Ok.ts deleted file mode 100755 index 5e6155b..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdContracts200Ok.ts +++ /dev/null @@ -1,136 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdContracts200Ok { - /** - * contract_id integer - */ - contractId: number; - /** - * Character ID for the issuer - */ - issuerId: number; - /** - * Character's corporation ID for the issuer - */ - issuerCorporationId: number; - /** - * ID to whom the contract is assigned, can be corporation or character ID - */ - assigneeId: number; - /** - * Who will accept the contract - */ - acceptorId: number; - /** - * Start location ID (for Couriers contract) - */ - startLocationId?: number; - /** - * End location ID (for Couriers contract) - */ - endLocationId?: number; - /** - * Type of the contract - */ - type: GetCharactersCharacterIdContracts200Ok.TypeEnum; - /** - * Status of the the contract - */ - status: GetCharactersCharacterIdContracts200Ok.StatusEnum; - /** - * Title of the contract - */ - title?: string; - /** - * true if the contract was issued on behalf of the issuer's corporation - */ - forCorporation: boolean; - /** - * To whom the contract is available - */ - availability: GetCharactersCharacterIdContracts200Ok.AvailabilityEnum; - /** - * Сreation date of the contract - */ - dateIssued: Date; - /** - * Expiration date of the contract - */ - dateExpired: Date; - /** - * Date of confirmation of contract - */ - dateAccepted?: Date; - /** - * Number of days to perform the contract - */ - daysToComplete?: number; - /** - * Date of completed of contract - */ - dateCompleted?: Date; - /** - * Price of contract (for ItemsExchange and Auctions) - */ - price?: number; - /** - * Remuneration for contract (for Couriers only) - */ - reward?: number; - /** - * Collateral price (for Couriers only) - */ - collateral?: number; - /** - * Buyout price (for Auctions only) - */ - buyout?: number; - /** - * Volume of items in the contract - */ - volume?: number; -} -export namespace GetCharactersCharacterIdContracts200Ok { - export type TypeEnum = 'unknown' | 'item_exchange' | 'auction' | 'courier' | 'loan'; - export const TypeEnum = { - Unknown: 'unknown' as TypeEnum, - ItemExchange: 'item_exchange' as TypeEnum, - Auction: 'auction' as TypeEnum, - Courier: 'courier' as TypeEnum, - Loan: 'loan' as TypeEnum - } - export type StatusEnum = 'outstanding' | 'in_progress' | 'finished_issuer' | 'finished_contractor' | 'finished' | 'cancelled' | 'rejected' | 'failed' | 'deleted' | 'reversed'; - export const StatusEnum = { - Outstanding: 'outstanding' as StatusEnum, - InProgress: 'in_progress' as StatusEnum, - FinishedIssuer: 'finished_issuer' as StatusEnum, - FinishedContractor: 'finished_contractor' as StatusEnum, - Finished: 'finished' as StatusEnum, - Cancelled: 'cancelled' as StatusEnum, - Rejected: 'rejected' as StatusEnum, - Failed: 'failed' as StatusEnum, - Deleted: 'deleted' as StatusEnum, - Reversed: 'reversed' as StatusEnum - } - export type AvailabilityEnum = 'public' | 'personal' | 'corporation' | 'alliance'; - export const AvailabilityEnum = { - Public: 'public' as AvailabilityEnum, - Personal: 'personal' as AvailabilityEnum, - Corporation: 'corporation' as AvailabilityEnum, - Alliance: 'alliance' as AvailabilityEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdContractsContractIdBids200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdContractsContractIdBids200Ok.ts deleted file mode 100755 index da01dc1..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdContractsContractIdBids200Ok.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdContractsContractIdBids200Ok { - /** - * Unique ID for the bid - */ - bidId: number; - /** - * Character ID of the bidder - */ - bidderId: number; - /** - * Datetime when the bid was placed - */ - dateBid: Date; - /** - * The amount bid, in ISK - */ - amount: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdContractsContractIdItems200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdContractsContractIdItems200Ok.ts deleted file mode 100755 index 26c70a5..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdContractsContractIdItems200Ok.ts +++ /dev/null @@ -1,42 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdContractsContractIdItems200Ok { - /** - * Unique ID for the item - */ - recordId: number; - /** - * Type ID for item - */ - typeId: number; - /** - * Number of items in the stack - */ - quantity: number; - /** - * -1 indicates that the item is a singleton (non-stackable). If the item happens to be a Blueprint, -1 is an Original and -2 is a Blueprint Copy - */ - rawQuantity?: number; - /** - * is_singleton boolean - */ - isSingleton: boolean; - /** - * true if the contract issuer has submitted this item with the contract, false if the isser is asking for this item in the contract. - */ - isIncluded: boolean; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdCorporationhistory200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdCorporationhistory200Ok.ts deleted file mode 100755 index d7a62be..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdCorporationhistory200Ok.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdCorporationhistory200Ok { - /** - * start_date string - */ - startDate: Date; - /** - * corporation_id integer - */ - corporationId: number; - /** - * True if the corporation has been deleted - */ - isDeleted?: boolean; - /** - * An incrementing ID that can be used to canonically establish order of records in cases where dates may be ambiguous - */ - recordId: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdFatigueOk.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdFatigueOk.ts deleted file mode 100755 index 0e08ecc..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdFatigueOk.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdFatigueOk { - /** - * Character's last jump activation - */ - lastJumpDate?: Date; - /** - * Character's jump fatigue expiry - */ - jumpFatigueExpireDate?: Date; - /** - * Character's last jump update - */ - lastUpdateDate?: Date; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdFittings200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdFittings200Ok.ts deleted file mode 100755 index da41a56..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdFittings200Ok.ts +++ /dev/null @@ -1,39 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetCharactersCharacterIdFittingsItem } from './getCharactersCharacterIdFittingsItem'; - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdFittings200Ok { - /** - * fitting_id integer - */ - fittingId: number; - /** - * name string - */ - name: string; - /** - * description string - */ - description: string; - /** - * ship_type_id integer - */ - shipTypeId: number; - /** - * items array - */ - items: Array; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdFittingsItem.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdFittingsItem.ts deleted file mode 100755 index 890f0f3..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdFittingsItem.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * item object - */ -export interface GetCharactersCharacterIdFittingsItem { - /** - * type_id integer - */ - typeId: number; - /** - * flag integer - */ - flag: number; - /** - * quantity integer - */ - quantity: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdFleetNotFound.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdFleetNotFound.ts deleted file mode 100755 index fe109bb..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdFleetNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetCharactersCharacterIdFleetNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdFleetOk.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdFleetOk.ts deleted file mode 100755 index 4f9942e..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdFleetOk.ts +++ /dev/null @@ -1,43 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdFleetOk { - /** - * The character's current fleet ID - */ - fleetId: number; - /** - * ID of the wing the member is in. If not applicable, will be set to -1 - */ - wingId: number; - /** - * ID of the squad the member is in. If not applicable, will be set to -1 - */ - squadId: number; - /** - * Member’s role in fleet - */ - role: GetCharactersCharacterIdFleetOk.RoleEnum; -} -export namespace GetCharactersCharacterIdFleetOk { - export type RoleEnum = 'fleet_commander' | 'squad_commander' | 'squad_member' | 'wing_commander'; - export const RoleEnum = { - FleetCommander: 'fleet_commander' as RoleEnum, - SquadCommander: 'squad_commander' as RoleEnum, - SquadMember: 'squad_member' as RoleEnum, - WingCommander: 'wing_commander' as RoleEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdFwStatsKills.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdFwStatsKills.ts deleted file mode 100755 index c068401..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdFwStatsKills.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Summary of kills done by the given character against enemy factions - */ -export interface GetCharactersCharacterIdFwStatsKills { - /** - * Yesterday's total number of kills by a given character against enemy factions - */ - yesterday: number; - /** - * Last week's total number of kills by a given character against enemy factions - */ - lastWeek: number; - /** - * Total number of kills by a given character against enemy factions since the character enlisted - */ - total: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdFwStatsOk.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdFwStatsOk.ts deleted file mode 100755 index d036c52..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdFwStatsOk.ts +++ /dev/null @@ -1,38 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetCharactersCharacterIdFwStatsKills } from './getCharactersCharacterIdFwStatsKills'; -import { GetCharactersCharacterIdFwStatsVictoryPoints } from './getCharactersCharacterIdFwStatsVictoryPoints'; - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdFwStatsOk { - /** - * The faction the given character is enlisted to fight for. Will not be included if character is not enlisted in faction warfare - */ - factionId?: number; - /** - * The enlistment date of the given character into faction warfare. Will not be included if character is not enlisted in faction warfare - */ - enlistedOn?: Date; - /** - * The given character's current faction rank - */ - currentRank?: number; - /** - * The given character's highest faction rank achieved - */ - highestRank?: number; - kills: GetCharactersCharacterIdFwStatsKills; - victoryPoints: GetCharactersCharacterIdFwStatsVictoryPoints; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdFwStatsVictoryPoints.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdFwStatsVictoryPoints.ts deleted file mode 100755 index 71281ed..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdFwStatsVictoryPoints.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Summary of victory points gained by the given character for the enlisted faction - */ -export interface GetCharactersCharacterIdFwStatsVictoryPoints { - /** - * Yesterday's victory points gained by the given character - */ - yesterday: number; - /** - * Last week's victory points gained by the given character - */ - lastWeek: number; - /** - * Total victory points gained since the given character enlisted - */ - total: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdIndustryJobs200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdIndustryJobs200Ok.ts deleted file mode 100755 index 210bae8..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdIndustryJobs200Ok.ts +++ /dev/null @@ -1,117 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdIndustryJobs200Ok { - /** - * Unique job ID - */ - jobId: number; - /** - * ID of the character which installed this job - */ - installerId: number; - /** - * ID of the facility where this job is running - */ - facilityId: number; - /** - * ID of the station where industry facility is located - */ - stationId: number; - /** - * Job activity ID - */ - activityId: number; - /** - * blueprint_id integer - */ - blueprintId: number; - /** - * blueprint_type_id integer - */ - blueprintTypeId: number; - /** - * Location ID of the location from which the blueprint was installed. Normally a station ID, but can also be an asset (e.g. container) or corporation facility - */ - blueprintLocationId: number; - /** - * Location ID of the location to which the output of the job will be delivered. Normally a station ID, but can also be a corporation facility - */ - outputLocationId: number; - /** - * Number of runs for a manufacturing job, or number of copies to make for a blueprint copy - */ - runs: number; - /** - * The sume of job installation fee and industry facility tax - */ - cost?: number; - /** - * Number of runs blueprint is licensed for - */ - licensedRuns?: number; - /** - * Chance of success for invention - */ - probability?: number; - /** - * Type ID of product (manufactured, copied or invented) - */ - productTypeId?: number; - /** - * status string - */ - status: GetCharactersCharacterIdIndustryJobs200Ok.StatusEnum; - /** - * Job duration in seconds - */ - duration: number; - /** - * Date and time when this job started - */ - startDate: Date; - /** - * Date and time when this job finished - */ - endDate: Date; - /** - * Date and time when this job was paused (i.e. time when the facility where this job was installed went offline) - */ - pauseDate?: Date; - /** - * Date and time when this job was completed - */ - completedDate?: Date; - /** - * ID of the character which completed this job - */ - completedCharacterId?: number; - /** - * Number of successful runs for this job. Equal to runs unless this is an invention job - */ - successfulRuns?: number; -} -export namespace GetCharactersCharacterIdIndustryJobs200Ok { - export type StatusEnum = 'active' | 'cancelled' | 'delivered' | 'paused' | 'ready' | 'reverted'; - export const StatusEnum = { - Active: 'active' as StatusEnum, - Cancelled: 'cancelled' as StatusEnum, - Delivered: 'delivered' as StatusEnum, - Paused: 'paused' as StatusEnum, - Ready: 'ready' as StatusEnum, - Reverted: 'reverted' as StatusEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdKillmailsRecent200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdKillmailsRecent200Ok.ts deleted file mode 100755 index 74e0409..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdKillmailsRecent200Ok.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdKillmailsRecent200Ok { - /** - * ID of this killmail - */ - killmailId: number; - /** - * A hash of this killmail - */ - killmailHash: string; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdLocationOk.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdLocationOk.ts deleted file mode 100755 index b789228..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdLocationOk.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdLocationOk { - /** - * solar_system_id integer - */ - solarSystemId: number; - /** - * station_id integer - */ - stationId?: number; - /** - * structure_id integer - */ - structureId?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdLoyaltyPoints200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdLoyaltyPoints200Ok.ts deleted file mode 100755 index 03b65cf..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdLoyaltyPoints200Ok.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdLoyaltyPoints200Ok { - /** - * corporation_id integer - */ - corporationId: number; - /** - * loyalty_points integer - */ - loyaltyPoints: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdMail200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdMail200Ok.ts deleted file mode 100755 index a2b9d6e..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdMail200Ok.ts +++ /dev/null @@ -1,47 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetCharactersCharacterIdMailRecipient } from './getCharactersCharacterIdMailRecipient'; - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdMail200Ok { - /** - * mail_id integer - */ - mailId?: number; - /** - * Mail subject - */ - subject?: string; - /** - * From whom the mail was sent - */ - from?: number; - /** - * When the mail was sent - */ - timestamp?: Date; - /** - * labels array - */ - labels?: Array; - /** - * Recipients of the mail - */ - recipients?: Array; - /** - * is_read boolean - */ - isRead?: boolean; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdMailLabelsLabel.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdMailLabelsLabel.ts deleted file mode 100755 index aba6142..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdMailLabelsLabel.ts +++ /dev/null @@ -1,57 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * label object - */ -export interface GetCharactersCharacterIdMailLabelsLabel { - /** - * unread_count integer - */ - unreadCount?: number; - /** - * label_id integer - */ - labelId?: number; - /** - * name string - */ - name?: string; - /** - * color string - */ - color?: GetCharactersCharacterIdMailLabelsLabel.ColorEnum; -} -export namespace GetCharactersCharacterIdMailLabelsLabel { - export type ColorEnum = '#0000fe' | '#006634' | '#0099ff' | '#00ff33' | '#01ffff' | '#349800' | '#660066' | '#666666' | '#999999' | '#99ffff' | '#9a0000' | '#ccff9a' | '#e6e6e6' | '#fe0000' | '#ff6600' | '#ffff01' | '#ffffcd' | '#ffffff'; - export const ColorEnum = { - _0000fe: '#0000fe' as ColorEnum, - _006634: '#006634' as ColorEnum, - _0099ff: '#0099ff' as ColorEnum, - _00ff33: '#00ff33' as ColorEnum, - _01ffff: '#01ffff' as ColorEnum, - _349800: '#349800' as ColorEnum, - _660066: '#660066' as ColorEnum, - _666666: '#666666' as ColorEnum, - _999999: '#999999' as ColorEnum, - _99ffff: '#99ffff' as ColorEnum, - _9a0000: '#9a0000' as ColorEnum, - Ccff9a: '#ccff9a' as ColorEnum, - E6e6e6: '#e6e6e6' as ColorEnum, - Fe0000: '#fe0000' as ColorEnum, - Ff6600: '#ff6600' as ColorEnum, - Ffff01: '#ffff01' as ColorEnum, - Ffffcd: '#ffffcd' as ColorEnum, - Ffffff: '#ffffff' as ColorEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdMailLabelsOk.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdMailLabelsOk.ts deleted file mode 100755 index 412ec58..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdMailLabelsOk.ts +++ /dev/null @@ -1,27 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetCharactersCharacterIdMailLabelsLabel } from './getCharactersCharacterIdMailLabelsLabel'; - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdMailLabelsOk { - /** - * total_unread_count integer - */ - totalUnreadCount?: number; - /** - * labels array - */ - labels?: Array; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdMailLists200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdMailLists200Ok.ts deleted file mode 100755 index 361ee2b..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdMailLists200Ok.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdMailLists200Ok { - /** - * Mailing list ID - */ - mailingListId: number; - /** - * name string - */ - name: string; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdMailMailIdNotFound.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdMailMailIdNotFound.ts deleted file mode 100755 index 6677633..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdMailMailIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetCharactersCharacterIdMailMailIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdMailMailIdOk.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdMailMailIdOk.ts deleted file mode 100755 index 40ac1d8..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdMailMailIdOk.ts +++ /dev/null @@ -1,47 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetCharactersCharacterIdMailMailIdRecipient } from './getCharactersCharacterIdMailMailIdRecipient'; - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdMailMailIdOk { - /** - * Mail subject - */ - subject?: string; - /** - * From whom the mail was sent - */ - from?: number; - /** - * When the mail was sent - */ - timestamp?: Date; - /** - * Recipients of the mail - */ - recipients?: Array; - /** - * Mail's body - */ - body?: string; - /** - * Labels attached to the mail - */ - labels?: Array; - /** - * Whether the mail is flagged as read - */ - read?: boolean; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdMailMailIdRecipient.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdMailMailIdRecipient.ts deleted file mode 100755 index 3493f52..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdMailMailIdRecipient.ts +++ /dev/null @@ -1,35 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * recipient object - */ -export interface GetCharactersCharacterIdMailMailIdRecipient { - /** - * recipient_type string - */ - recipientType: GetCharactersCharacterIdMailMailIdRecipient.RecipientTypeEnum; - /** - * recipient_id integer - */ - recipientId: number; -} -export namespace GetCharactersCharacterIdMailMailIdRecipient { - export type RecipientTypeEnum = 'alliance' | 'character' | 'corporation' | 'mailing_list'; - export const RecipientTypeEnum = { - Alliance: 'alliance' as RecipientTypeEnum, - Character: 'character' as RecipientTypeEnum, - Corporation: 'corporation' as RecipientTypeEnum, - MailingList: 'mailing_list' as RecipientTypeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdMailRecipient.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdMailRecipient.ts deleted file mode 100755 index e3015ca..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdMailRecipient.ts +++ /dev/null @@ -1,35 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * recipient object - */ -export interface GetCharactersCharacterIdMailRecipient { - /** - * recipient_type string - */ - recipientType: GetCharactersCharacterIdMailRecipient.RecipientTypeEnum; - /** - * recipient_id integer - */ - recipientId: number; -} -export namespace GetCharactersCharacterIdMailRecipient { - export type RecipientTypeEnum = 'alliance' | 'character' | 'corporation' | 'mailing_list'; - export const RecipientTypeEnum = { - Alliance: 'alliance' as RecipientTypeEnum, - Character: 'character' as RecipientTypeEnum, - Corporation: 'corporation' as RecipientTypeEnum, - MailingList: 'mailing_list' as RecipientTypeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdMedals200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdMedals200Ok.ts deleted file mode 100755 index 7582bb6..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdMedals200Ok.ts +++ /dev/null @@ -1,62 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetCharactersCharacterIdMedalsGraphic } from './getCharactersCharacterIdMedalsGraphic'; - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdMedals200Ok { - /** - * medal_id integer - */ - medalId: number; - /** - * title string - */ - title: string; - /** - * description string - */ - description: string; - /** - * corporation_id integer - */ - corporationId: number; - /** - * issuer_id integer - */ - issuerId: number; - /** - * date string - */ - date: Date; - /** - * reason string - */ - reason: string; - /** - * status string - */ - status: GetCharactersCharacterIdMedals200Ok.StatusEnum; - /** - * graphics array - */ - graphics: Array; -} -export namespace GetCharactersCharacterIdMedals200Ok { - export type StatusEnum = 'public' | 'private'; - export const StatusEnum = { - Public: 'public' as StatusEnum, - Private: 'private' as StatusEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdMedalsGraphic.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdMedalsGraphic.ts deleted file mode 100755 index dc4c2b7..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdMedalsGraphic.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * graphic object - */ -export interface GetCharactersCharacterIdMedalsGraphic { - /** - * part integer - */ - part: number; - /** - * layer integer - */ - layer: number; - /** - * graphic string - */ - graphic: string; - /** - * color integer - */ - color?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdMining200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdMining200Ok.ts deleted file mode 100755 index 9b00ed3..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdMining200Ok.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdMining200Ok { - /** - * date string - */ - date: string; - /** - * solar_system_id integer - */ - solarSystemId: number; - /** - * type_id integer - */ - typeId: number; - /** - * quantity integer - */ - quantity: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdNotFound.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdNotFound.ts deleted file mode 100755 index 59b3890..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetCharactersCharacterIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdNotifications200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdNotifications200Ok.ts deleted file mode 100755 index a87d58e..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdNotifications200Ok.ts +++ /dev/null @@ -1,238 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdNotifications200Ok { - /** - * notification_id integer - */ - notificationId: number; - /** - * sender_id integer - */ - senderId: number; - /** - * sender_type string - */ - senderType: GetCharactersCharacterIdNotifications200Ok.SenderTypeEnum; - /** - * timestamp string - */ - timestamp: Date; - /** - * is_read boolean - */ - isRead?: boolean; - /** - * text string - */ - text?: string; - /** - * type string - */ - type: GetCharactersCharacterIdNotifications200Ok.TypeEnum; -} -export namespace GetCharactersCharacterIdNotifications200Ok { - export type SenderTypeEnum = 'character' | 'corporation' | 'alliance' | 'faction' | 'other'; - export const SenderTypeEnum = { - Character: 'character' as SenderTypeEnum, - Corporation: 'corporation' as SenderTypeEnum, - Alliance: 'alliance' as SenderTypeEnum, - Faction: 'faction' as SenderTypeEnum, - Other: 'other' as SenderTypeEnum - } - export type TypeEnum = 'AcceptedAlly' | 'AcceptedSurrender' | 'AllAnchoringMsg' | 'AllMaintenanceBillMsg' | 'AllStrucInvulnerableMsg' | 'AllStructVulnerableMsg' | 'AllWarCorpJoinedAllianceMsg' | 'AllWarDeclaredMsg' | 'AllWarInvalidatedMsg' | 'AllWarRetractedMsg' | 'AllWarSurrenderMsg' | 'AllianceCapitalChanged' | 'AllyContractCancelled' | 'AllyJoinedWarAggressorMsg' | 'AllyJoinedWarAllyMsg' | 'AllyJoinedWarDefenderMsg' | 'BattlePunishFriendlyFire' | 'BillOutOfMoneyMsg' | 'BillPaidCorpAllMsg' | 'BountyClaimMsg' | 'BountyESSShared' | 'BountyESSTaken' | 'BountyPlacedAlliance' | 'BountyPlacedChar' | 'BountyPlacedCorp' | 'BountyYourBountyClaimed' | 'BuddyConnectContactAdd' | 'CharAppAcceptMsg' | 'CharAppRejectMsg' | 'CharAppWithdrawMsg' | 'CharLeftCorpMsg' | 'CharMedalMsg' | 'CharTerminationMsg' | 'CloneActivationMsg' | 'CloneActivationMsg2' | 'CloneMovedMsg' | 'CloneRevokedMsg1' | 'CloneRevokedMsg2' | 'ContactAdd' | 'ContactEdit' | 'ContainerPasswordMsg' | 'CorpAllBillMsg' | 'CorpAppAcceptMsg' | 'CorpAppInvitedMsg' | 'CorpAppNewMsg' | 'CorpAppRejectCustomMsg' | 'CorpAppRejectMsg' | 'CorpDividendMsg' | 'CorpFriendlyFireDisableTimerCompleted' | 'CorpFriendlyFireDisableTimerStarted' | 'CorpFriendlyFireEnableTimerCompleted' | 'CorpFriendlyFireEnableTimerStarted' | 'CorpKicked' | 'CorpLiquidationMsg' | 'CorpNewCEOMsg' | 'CorpNewsMsg' | 'CorpOfficeExpirationMsg' | 'CorpStructLostMsg' | 'CorpTaxChangeMsg' | 'CorpVoteCEORevokedMsg' | 'CorpVoteMsg' | 'CorpWarDeclaredMsg' | 'CorpWarFightingLegalMsg' | 'CorpWarInvalidatedMsg' | 'CorpWarRetractedMsg' | 'CorpWarSurrenderMsg' | 'CustomsMsg' | 'DeclareWar' | 'DistrictAttacked' | 'DustAppAcceptedMsg' | 'EntosisCaptureStarted' | 'FWAllianceKickMsg' | 'FWAllianceWarningMsg' | 'FWCharKickMsg' | 'FWCharRankGainMsg' | 'FWCharRankLossMsg' | 'FWCharWarningMsg' | 'FWCorpJoinMsg' | 'FWCorpKickMsg' | 'FWCorpLeaveMsg' | 'FWCorpWarningMsg' | 'FacWarCorpJoinRequestMsg' | 'FacWarCorpJoinWithdrawMsg' | 'FacWarCorpLeaveRequestMsg' | 'FacWarCorpLeaveWithdrawMsg' | 'FacWarLPDisqualifiedEvent' | 'FacWarLPDisqualifiedKill' | 'FacWarLPPayoutEvent' | 'FacWarLPPayoutKill' | 'GameTimeAdded' | 'GameTimeReceived' | 'GameTimeSent' | 'GiftReceived' | 'IHubDestroyedByBillFailure' | 'IncursionCompletedMsg' | 'IndustryTeamAuctionLost' | 'IndustryTeamAuctionWon' | 'InfrastructureHubBillAboutToExpire' | 'InsuranceExpirationMsg' | 'InsuranceFirstShipMsg' | 'InsuranceInvalidatedMsg' | 'InsuranceIssuedMsg' | 'InsurancePayoutMsg' | 'JumpCloneDeletedMsg1' | 'JumpCloneDeletedMsg2' | 'KillReportFinalBlow' | 'KillReportVictim' | 'KillRightAvailable' | 'KillRightAvailableOpen' | 'KillRightEarned' | 'KillRightUnavailable' | 'KillRightUnavailableOpen' | 'KillRightUsed' | 'LocateCharMsg' | 'MadeWarMutual' | 'MercOfferedNegotiationMsg' | 'MissionOfferExpirationMsg' | 'MissionTimeoutMsg' | 'MoonminingAutomaticFracture' | 'MoonminingExtractionCancelled' | 'MoonminingExtractionFinished' | 'MoonminingExtractionStarted' | 'MoonminingLaserFired' | 'NPCStandingsGained' | 'NPCStandingsLost' | 'OfferedSurrender' | 'OfferedToAlly' | 'OldLscMessages' | 'OperationFinished' | 'OrbitalAttacked' | 'OrbitalReinforced' | 'OwnershipTransferred' | 'ReimbursementMsg' | 'ResearchMissionAvailableMsg' | 'RetractsWar' | 'SeasonalChallengeCompleted' | 'SovAllClaimAquiredMsg' | 'SovAllClaimLostMsg' | 'SovCommandNodeEventStarted' | 'SovCorpBillLateMsg' | 'SovCorpClaimFailMsg' | 'SovDisruptorMsg' | 'SovStationEnteredFreeport' | 'SovStructureDestroyed' | 'SovStructureReinforced' | 'SovStructureSelfDestructCancel' | 'SovStructureSelfDestructFinished' | 'SovStructureSelfDestructRequested' | 'SovereigntyIHDamageMsg' | 'SovereigntySBUDamageMsg' | 'SovereigntyTCUDamageMsg' | 'StationAggressionMsg1' | 'StationAggressionMsg2' | 'StationConquerMsg' | 'StationServiceDisabled' | 'StationServiceEnabled' | 'StationStateChangeMsg' | 'StoryLineMissionAvailableMsg' | 'StructureAnchoring' | 'StructureCourierContractChanged' | 'StructureDestroyed' | 'StructureFuelAlert' | 'StructureItemsDelivered' | 'StructureLostArmor' | 'StructureLostShields' | 'StructureOnline' | 'StructureServicesOffline' | 'StructureUnanchoring' | 'StructureUnderAttack' | 'StructureWentHighPower' | 'StructureWentLowPower' | 'StructuresReinforcementChanged' | 'TowerAlertMsg' | 'TowerResourceAlertMsg' | 'TransactionReversalMsg' | 'TutorialMsg' | 'WarAllyOfferDeclinedMsg' | 'WarSurrenderDeclinedMsg' | 'WarSurrenderOfferMsg'; - export const TypeEnum = { - AcceptedAlly: 'AcceptedAlly' as TypeEnum, - AcceptedSurrender: 'AcceptedSurrender' as TypeEnum, - AllAnchoringMsg: 'AllAnchoringMsg' as TypeEnum, - AllMaintenanceBillMsg: 'AllMaintenanceBillMsg' as TypeEnum, - AllStrucInvulnerableMsg: 'AllStrucInvulnerableMsg' as TypeEnum, - AllStructVulnerableMsg: 'AllStructVulnerableMsg' as TypeEnum, - AllWarCorpJoinedAllianceMsg: 'AllWarCorpJoinedAllianceMsg' as TypeEnum, - AllWarDeclaredMsg: 'AllWarDeclaredMsg' as TypeEnum, - AllWarInvalidatedMsg: 'AllWarInvalidatedMsg' as TypeEnum, - AllWarRetractedMsg: 'AllWarRetractedMsg' as TypeEnum, - AllWarSurrenderMsg: 'AllWarSurrenderMsg' as TypeEnum, - AllianceCapitalChanged: 'AllianceCapitalChanged' as TypeEnum, - AllyContractCancelled: 'AllyContractCancelled' as TypeEnum, - AllyJoinedWarAggressorMsg: 'AllyJoinedWarAggressorMsg' as TypeEnum, - AllyJoinedWarAllyMsg: 'AllyJoinedWarAllyMsg' as TypeEnum, - AllyJoinedWarDefenderMsg: 'AllyJoinedWarDefenderMsg' as TypeEnum, - BattlePunishFriendlyFire: 'BattlePunishFriendlyFire' as TypeEnum, - BillOutOfMoneyMsg: 'BillOutOfMoneyMsg' as TypeEnum, - BillPaidCorpAllMsg: 'BillPaidCorpAllMsg' as TypeEnum, - BountyClaimMsg: 'BountyClaimMsg' as TypeEnum, - BountyESSShared: 'BountyESSShared' as TypeEnum, - BountyESSTaken: 'BountyESSTaken' as TypeEnum, - BountyPlacedAlliance: 'BountyPlacedAlliance' as TypeEnum, - BountyPlacedChar: 'BountyPlacedChar' as TypeEnum, - BountyPlacedCorp: 'BountyPlacedCorp' as TypeEnum, - BountyYourBountyClaimed: 'BountyYourBountyClaimed' as TypeEnum, - BuddyConnectContactAdd: 'BuddyConnectContactAdd' as TypeEnum, - CharAppAcceptMsg: 'CharAppAcceptMsg' as TypeEnum, - CharAppRejectMsg: 'CharAppRejectMsg' as TypeEnum, - CharAppWithdrawMsg: 'CharAppWithdrawMsg' as TypeEnum, - CharLeftCorpMsg: 'CharLeftCorpMsg' as TypeEnum, - CharMedalMsg: 'CharMedalMsg' as TypeEnum, - CharTerminationMsg: 'CharTerminationMsg' as TypeEnum, - CloneActivationMsg: 'CloneActivationMsg' as TypeEnum, - CloneActivationMsg2: 'CloneActivationMsg2' as TypeEnum, - CloneMovedMsg: 'CloneMovedMsg' as TypeEnum, - CloneRevokedMsg1: 'CloneRevokedMsg1' as TypeEnum, - CloneRevokedMsg2: 'CloneRevokedMsg2' as TypeEnum, - ContactAdd: 'ContactAdd' as TypeEnum, - ContactEdit: 'ContactEdit' as TypeEnum, - ContainerPasswordMsg: 'ContainerPasswordMsg' as TypeEnum, - CorpAllBillMsg: 'CorpAllBillMsg' as TypeEnum, - CorpAppAcceptMsg: 'CorpAppAcceptMsg' as TypeEnum, - CorpAppInvitedMsg: 'CorpAppInvitedMsg' as TypeEnum, - CorpAppNewMsg: 'CorpAppNewMsg' as TypeEnum, - CorpAppRejectCustomMsg: 'CorpAppRejectCustomMsg' as TypeEnum, - CorpAppRejectMsg: 'CorpAppRejectMsg' as TypeEnum, - CorpDividendMsg: 'CorpDividendMsg' as TypeEnum, - CorpFriendlyFireDisableTimerCompleted: 'CorpFriendlyFireDisableTimerCompleted' as TypeEnum, - CorpFriendlyFireDisableTimerStarted: 'CorpFriendlyFireDisableTimerStarted' as TypeEnum, - CorpFriendlyFireEnableTimerCompleted: 'CorpFriendlyFireEnableTimerCompleted' as TypeEnum, - CorpFriendlyFireEnableTimerStarted: 'CorpFriendlyFireEnableTimerStarted' as TypeEnum, - CorpKicked: 'CorpKicked' as TypeEnum, - CorpLiquidationMsg: 'CorpLiquidationMsg' as TypeEnum, - CorpNewCEOMsg: 'CorpNewCEOMsg' as TypeEnum, - CorpNewsMsg: 'CorpNewsMsg' as TypeEnum, - CorpOfficeExpirationMsg: 'CorpOfficeExpirationMsg' as TypeEnum, - CorpStructLostMsg: 'CorpStructLostMsg' as TypeEnum, - CorpTaxChangeMsg: 'CorpTaxChangeMsg' as TypeEnum, - CorpVoteCEORevokedMsg: 'CorpVoteCEORevokedMsg' as TypeEnum, - CorpVoteMsg: 'CorpVoteMsg' as TypeEnum, - CorpWarDeclaredMsg: 'CorpWarDeclaredMsg' as TypeEnum, - CorpWarFightingLegalMsg: 'CorpWarFightingLegalMsg' as TypeEnum, - CorpWarInvalidatedMsg: 'CorpWarInvalidatedMsg' as TypeEnum, - CorpWarRetractedMsg: 'CorpWarRetractedMsg' as TypeEnum, - CorpWarSurrenderMsg: 'CorpWarSurrenderMsg' as TypeEnum, - CustomsMsg: 'CustomsMsg' as TypeEnum, - DeclareWar: 'DeclareWar' as TypeEnum, - DistrictAttacked: 'DistrictAttacked' as TypeEnum, - DustAppAcceptedMsg: 'DustAppAcceptedMsg' as TypeEnum, - EntosisCaptureStarted: 'EntosisCaptureStarted' as TypeEnum, - FWAllianceKickMsg: 'FWAllianceKickMsg' as TypeEnum, - FWAllianceWarningMsg: 'FWAllianceWarningMsg' as TypeEnum, - FWCharKickMsg: 'FWCharKickMsg' as TypeEnum, - FWCharRankGainMsg: 'FWCharRankGainMsg' as TypeEnum, - FWCharRankLossMsg: 'FWCharRankLossMsg' as TypeEnum, - FWCharWarningMsg: 'FWCharWarningMsg' as TypeEnum, - FWCorpJoinMsg: 'FWCorpJoinMsg' as TypeEnum, - FWCorpKickMsg: 'FWCorpKickMsg' as TypeEnum, - FWCorpLeaveMsg: 'FWCorpLeaveMsg' as TypeEnum, - FWCorpWarningMsg: 'FWCorpWarningMsg' as TypeEnum, - FacWarCorpJoinRequestMsg: 'FacWarCorpJoinRequestMsg' as TypeEnum, - FacWarCorpJoinWithdrawMsg: 'FacWarCorpJoinWithdrawMsg' as TypeEnum, - FacWarCorpLeaveRequestMsg: 'FacWarCorpLeaveRequestMsg' as TypeEnum, - FacWarCorpLeaveWithdrawMsg: 'FacWarCorpLeaveWithdrawMsg' as TypeEnum, - FacWarLPDisqualifiedEvent: 'FacWarLPDisqualifiedEvent' as TypeEnum, - FacWarLPDisqualifiedKill: 'FacWarLPDisqualifiedKill' as TypeEnum, - FacWarLPPayoutEvent: 'FacWarLPPayoutEvent' as TypeEnum, - FacWarLPPayoutKill: 'FacWarLPPayoutKill' as TypeEnum, - GameTimeAdded: 'GameTimeAdded' as TypeEnum, - GameTimeReceived: 'GameTimeReceived' as TypeEnum, - GameTimeSent: 'GameTimeSent' as TypeEnum, - GiftReceived: 'GiftReceived' as TypeEnum, - IHubDestroyedByBillFailure: 'IHubDestroyedByBillFailure' as TypeEnum, - IncursionCompletedMsg: 'IncursionCompletedMsg' as TypeEnum, - IndustryTeamAuctionLost: 'IndustryTeamAuctionLost' as TypeEnum, - IndustryTeamAuctionWon: 'IndustryTeamAuctionWon' as TypeEnum, - InfrastructureHubBillAboutToExpire: 'InfrastructureHubBillAboutToExpire' as TypeEnum, - InsuranceExpirationMsg: 'InsuranceExpirationMsg' as TypeEnum, - InsuranceFirstShipMsg: 'InsuranceFirstShipMsg' as TypeEnum, - InsuranceInvalidatedMsg: 'InsuranceInvalidatedMsg' as TypeEnum, - InsuranceIssuedMsg: 'InsuranceIssuedMsg' as TypeEnum, - InsurancePayoutMsg: 'InsurancePayoutMsg' as TypeEnum, - JumpCloneDeletedMsg1: 'JumpCloneDeletedMsg1' as TypeEnum, - JumpCloneDeletedMsg2: 'JumpCloneDeletedMsg2' as TypeEnum, - KillReportFinalBlow: 'KillReportFinalBlow' as TypeEnum, - KillReportVictim: 'KillReportVictim' as TypeEnum, - KillRightAvailable: 'KillRightAvailable' as TypeEnum, - KillRightAvailableOpen: 'KillRightAvailableOpen' as TypeEnum, - KillRightEarned: 'KillRightEarned' as TypeEnum, - KillRightUnavailable: 'KillRightUnavailable' as TypeEnum, - KillRightUnavailableOpen: 'KillRightUnavailableOpen' as TypeEnum, - KillRightUsed: 'KillRightUsed' as TypeEnum, - LocateCharMsg: 'LocateCharMsg' as TypeEnum, - MadeWarMutual: 'MadeWarMutual' as TypeEnum, - MercOfferedNegotiationMsg: 'MercOfferedNegotiationMsg' as TypeEnum, - MissionOfferExpirationMsg: 'MissionOfferExpirationMsg' as TypeEnum, - MissionTimeoutMsg: 'MissionTimeoutMsg' as TypeEnum, - MoonminingAutomaticFracture: 'MoonminingAutomaticFracture' as TypeEnum, - MoonminingExtractionCancelled: 'MoonminingExtractionCancelled' as TypeEnum, - MoonminingExtractionFinished: 'MoonminingExtractionFinished' as TypeEnum, - MoonminingExtractionStarted: 'MoonminingExtractionStarted' as TypeEnum, - MoonminingLaserFired: 'MoonminingLaserFired' as TypeEnum, - NPCStandingsGained: 'NPCStandingsGained' as TypeEnum, - NPCStandingsLost: 'NPCStandingsLost' as TypeEnum, - OfferedSurrender: 'OfferedSurrender' as TypeEnum, - OfferedToAlly: 'OfferedToAlly' as TypeEnum, - OldLscMessages: 'OldLscMessages' as TypeEnum, - OperationFinished: 'OperationFinished' as TypeEnum, - OrbitalAttacked: 'OrbitalAttacked' as TypeEnum, - OrbitalReinforced: 'OrbitalReinforced' as TypeEnum, - OwnershipTransferred: 'OwnershipTransferred' as TypeEnum, - ReimbursementMsg: 'ReimbursementMsg' as TypeEnum, - ResearchMissionAvailableMsg: 'ResearchMissionAvailableMsg' as TypeEnum, - RetractsWar: 'RetractsWar' as TypeEnum, - SeasonalChallengeCompleted: 'SeasonalChallengeCompleted' as TypeEnum, - SovAllClaimAquiredMsg: 'SovAllClaimAquiredMsg' as TypeEnum, - SovAllClaimLostMsg: 'SovAllClaimLostMsg' as TypeEnum, - SovCommandNodeEventStarted: 'SovCommandNodeEventStarted' as TypeEnum, - SovCorpBillLateMsg: 'SovCorpBillLateMsg' as TypeEnum, - SovCorpClaimFailMsg: 'SovCorpClaimFailMsg' as TypeEnum, - SovDisruptorMsg: 'SovDisruptorMsg' as TypeEnum, - SovStationEnteredFreeport: 'SovStationEnteredFreeport' as TypeEnum, - SovStructureDestroyed: 'SovStructureDestroyed' as TypeEnum, - SovStructureReinforced: 'SovStructureReinforced' as TypeEnum, - SovStructureSelfDestructCancel: 'SovStructureSelfDestructCancel' as TypeEnum, - SovStructureSelfDestructFinished: 'SovStructureSelfDestructFinished' as TypeEnum, - SovStructureSelfDestructRequested: 'SovStructureSelfDestructRequested' as TypeEnum, - SovereigntyIHDamageMsg: 'SovereigntyIHDamageMsg' as TypeEnum, - SovereigntySBUDamageMsg: 'SovereigntySBUDamageMsg' as TypeEnum, - SovereigntyTCUDamageMsg: 'SovereigntyTCUDamageMsg' as TypeEnum, - StationAggressionMsg1: 'StationAggressionMsg1' as TypeEnum, - StationAggressionMsg2: 'StationAggressionMsg2' as TypeEnum, - StationConquerMsg: 'StationConquerMsg' as TypeEnum, - StationServiceDisabled: 'StationServiceDisabled' as TypeEnum, - StationServiceEnabled: 'StationServiceEnabled' as TypeEnum, - StationStateChangeMsg: 'StationStateChangeMsg' as TypeEnum, - StoryLineMissionAvailableMsg: 'StoryLineMissionAvailableMsg' as TypeEnum, - StructureAnchoring: 'StructureAnchoring' as TypeEnum, - StructureCourierContractChanged: 'StructureCourierContractChanged' as TypeEnum, - StructureDestroyed: 'StructureDestroyed' as TypeEnum, - StructureFuelAlert: 'StructureFuelAlert' as TypeEnum, - StructureItemsDelivered: 'StructureItemsDelivered' as TypeEnum, - StructureLostArmor: 'StructureLostArmor' as TypeEnum, - StructureLostShields: 'StructureLostShields' as TypeEnum, - StructureOnline: 'StructureOnline' as TypeEnum, - StructureServicesOffline: 'StructureServicesOffline' as TypeEnum, - StructureUnanchoring: 'StructureUnanchoring' as TypeEnum, - StructureUnderAttack: 'StructureUnderAttack' as TypeEnum, - StructureWentHighPower: 'StructureWentHighPower' as TypeEnum, - StructureWentLowPower: 'StructureWentLowPower' as TypeEnum, - StructuresReinforcementChanged: 'StructuresReinforcementChanged' as TypeEnum, - TowerAlertMsg: 'TowerAlertMsg' as TypeEnum, - TowerResourceAlertMsg: 'TowerResourceAlertMsg' as TypeEnum, - TransactionReversalMsg: 'TransactionReversalMsg' as TypeEnum, - TutorialMsg: 'TutorialMsg' as TypeEnum, - WarAllyOfferDeclinedMsg: 'WarAllyOfferDeclinedMsg' as TypeEnum, - WarSurrenderDeclinedMsg: 'WarSurrenderDeclinedMsg' as TypeEnum, - WarSurrenderOfferMsg: 'WarSurrenderOfferMsg' as TypeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdNotificationsContacts200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdNotificationsContacts200Ok.ts deleted file mode 100755 index cdbbff1..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdNotificationsContacts200Ok.ts +++ /dev/null @@ -1,38 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdNotificationsContacts200Ok { - /** - * notification_id integer - */ - notificationId: number; - /** - * send_date string - */ - sendDate: Date; - /** - * A number representing the standing level the receiver has been added at by the sender. The standing levels are as follows: -10 -> Terrible | -5 -> Bad | 0 -> Neutral | 5 -> Good | 10 -> Excellent - */ - standingLevel: number; - /** - * message string - */ - message: string; - /** - * sender_character_id integer - */ - senderCharacterId: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdOk.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdOk.ts deleted file mode 100755 index ae2b227..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdOk.ts +++ /dev/null @@ -1,69 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdOk { - /** - * name string - */ - name: string; - /** - * description string - */ - description?: string; - /** - * The character's corporation ID - */ - corporationId: number; - /** - * The character's alliance ID - */ - allianceId?: number; - /** - * Creation date of the character - */ - birthday: Date; - /** - * gender string - */ - gender: GetCharactersCharacterIdOk.GenderEnum; - /** - * race_id integer - */ - raceId: number; - /** - * bloodline_id integer - */ - bloodlineId: number; - /** - * ancestry_id integer - */ - ancestryId?: number; - /** - * security_status number - */ - securityStatus?: number; - /** - * ID of the faction the character is fighting for, if the character is enlisted in Factional Warfare - */ - factionId?: number; -} -export namespace GetCharactersCharacterIdOk { - export type GenderEnum = 'female' | 'male'; - export const GenderEnum = { - Female: 'female' as GenderEnum, - Male: 'male' as GenderEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdOnlineOk.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdOnlineOk.ts deleted file mode 100755 index 1d74036..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdOnlineOk.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdOnlineOk { - /** - * If the character is online - */ - online: boolean; - /** - * Timestamp of the last login - */ - lastLogin?: Date; - /** - * Timestamp of the last logout - */ - lastLogout?: Date; - /** - * Total number of times the character has logged in - */ - logins?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdOpportunities200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdOpportunities200Ok.ts deleted file mode 100755 index 021e47e..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdOpportunities200Ok.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdOpportunities200Ok { - /** - * task_id integer - */ - taskId: number; - /** - * completed_at string - */ - completedAt: Date; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdOrders200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdOrders200Ok.ts deleted file mode 100755 index 9c03a48..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdOrders200Ok.ts +++ /dev/null @@ -1,91 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdOrders200Ok { - /** - * Unique order ID - */ - orderId: number; - /** - * The type ID of the item transacted in this order - */ - typeId: number; - /** - * ID of the region where order was placed - */ - regionId: number; - /** - * ID of the location where order was placed - */ - locationId: number; - /** - * Valid order range, numbers are ranges in jumps - */ - range: GetCharactersCharacterIdOrders200Ok.RangeEnum; - /** - * Cost per unit for this order - */ - price: number; - /** - * Quantity of items required or offered at time order was placed - */ - volumeTotal: number; - /** - * Quantity of items still required or offered - */ - volumeRemain: number; - /** - * Date and time when this order was issued - */ - issued: Date; - /** - * True if the order is a bid (buy) order - */ - isBuyOrder?: boolean; - /** - * For buy orders, the minimum quantity that will be accepted in a matching sell order - */ - minVolume?: number; - /** - * For buy orders, the amount of ISK in escrow - */ - escrow?: number; - /** - * Number of days for which order is valid (starting from the issued date). An order expires at time issued + duration - */ - duration: number; - /** - * Signifies whether the buy/sell order was placed on behalf of a corporation. - */ - isCorporation: boolean; -} -export namespace GetCharactersCharacterIdOrders200Ok { - export type RangeEnum = '1' | '10' | '2' | '20' | '3' | '30' | '4' | '40' | '5' | 'region' | 'solarsystem' | 'station'; - export const RangeEnum = { - _1: '1' as RangeEnum, - _10: '10' as RangeEnum, - _2: '2' as RangeEnum, - _20: '20' as RangeEnum, - _3: '3' as RangeEnum, - _30: '30' as RangeEnum, - _4: '4' as RangeEnum, - _40: '40' as RangeEnum, - _5: '5' as RangeEnum, - Region: 'region' as RangeEnum, - Solarsystem: 'solarsystem' as RangeEnum, - Station: 'station' as RangeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdOrdersHistory200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdOrdersHistory200Ok.ts deleted file mode 100755 index eb5ba5b..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdOrdersHistory200Ok.ts +++ /dev/null @@ -1,100 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdOrdersHistory200Ok { - /** - * Unique order ID - */ - orderId: number; - /** - * The type ID of the item transacted in this order - */ - typeId: number; - /** - * ID of the region where order was placed - */ - regionId: number; - /** - * ID of the location where order was placed - */ - locationId: number; - /** - * Valid order range, numbers are ranges in jumps - */ - range: GetCharactersCharacterIdOrdersHistory200Ok.RangeEnum; - /** - * Cost per unit for this order - */ - price: number; - /** - * Quantity of items required or offered at time order was placed - */ - volumeTotal: number; - /** - * Quantity of items still required or offered - */ - volumeRemain: number; - /** - * Date and time when this order was issued - */ - issued: Date; - /** - * True if the order is a bid (buy) order - */ - isBuyOrder?: boolean; - /** - * For buy orders, the minimum quantity that will be accepted in a matching sell order - */ - minVolume?: number; - /** - * For buy orders, the amount of ISK in escrow - */ - escrow?: number; - /** - * Number of days the order was valid for (starting from the issued date). An order expires at time issued + duration - */ - duration: number; - /** - * Current order state - */ - state: GetCharactersCharacterIdOrdersHistory200Ok.StateEnum; - /** - * Signifies whether the buy/sell order was placed on behalf of a corporation. - */ - isCorporation: boolean; -} -export namespace GetCharactersCharacterIdOrdersHistory200Ok { - export type RangeEnum = '1' | '10' | '2' | '20' | '3' | '30' | '4' | '40' | '5' | 'region' | 'solarsystem' | 'station'; - export const RangeEnum = { - _1: '1' as RangeEnum, - _10: '10' as RangeEnum, - _2: '2' as RangeEnum, - _20: '20' as RangeEnum, - _3: '3' as RangeEnum, - _30: '30' as RangeEnum, - _4: '4' as RangeEnum, - _40: '40' as RangeEnum, - _5: '5' as RangeEnum, - Region: 'region' as RangeEnum, - Solarsystem: 'solarsystem' as RangeEnum, - Station: 'station' as RangeEnum - } - export type StateEnum = 'cancelled' | 'expired'; - export const StateEnum = { - Cancelled: 'cancelled' as StateEnum, - Expired: 'expired' as StateEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanets200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanets200Ok.ts deleted file mode 100755 index e164565..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanets200Ok.ts +++ /dev/null @@ -1,59 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdPlanets200Ok { - /** - * solar_system_id integer - */ - solarSystemId: number; - /** - * planet_id integer - */ - planetId: number; - /** - * owner_id integer - */ - ownerId: number; - /** - * upgrade_level integer - */ - upgradeLevel: number; - /** - * num_pins integer - */ - numPins: number; - /** - * last_update string - */ - lastUpdate: Date; - /** - * planet_type string - */ - planetType: GetCharactersCharacterIdPlanets200Ok.PlanetTypeEnum; -} -export namespace GetCharactersCharacterIdPlanets200Ok { - export type PlanetTypeEnum = 'temperate' | 'barren' | 'oceanic' | 'ice' | 'gas' | 'lava' | 'storm' | 'plasma'; - export const PlanetTypeEnum = { - Temperate: 'temperate' as PlanetTypeEnum, - Barren: 'barren' as PlanetTypeEnum, - Oceanic: 'oceanic' as PlanetTypeEnum, - Ice: 'ice' as PlanetTypeEnum, - Gas: 'gas' as PlanetTypeEnum, - Lava: 'lava' as PlanetTypeEnum, - Storm: 'storm' as PlanetTypeEnum, - Plasma: 'plasma' as PlanetTypeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdContent.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdContent.ts deleted file mode 100755 index f514be3..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdContent.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * content object - */ -export interface GetCharactersCharacterIdPlanetsPlanetIdContent { - /** - * type_id integer - */ - typeId: number; - /** - * amount integer - */ - amount: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdExtractorDetails.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdExtractorDetails.ts deleted file mode 100755 index ced9363..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdExtractorDetails.ts +++ /dev/null @@ -1,39 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetCharactersCharacterIdPlanetsPlanetIdHead } from './getCharactersCharacterIdPlanetsPlanetIdHead'; - - -/** - * extractor_details object - */ -export interface GetCharactersCharacterIdPlanetsPlanetIdExtractorDetails { - /** - * heads array - */ - heads: Array; - /** - * product_type_id integer - */ - productTypeId?: number; - /** - * in seconds - */ - cycleTime?: number; - /** - * head_radius number - */ - headRadius?: number; - /** - * qty_per_cycle integer - */ - qtyPerCycle?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdFactoryDetails.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdFactoryDetails.ts deleted file mode 100755 index c683f19..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdFactoryDetails.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * factory_details object - */ -export interface GetCharactersCharacterIdPlanetsPlanetIdFactoryDetails { - /** - * schematic_id integer - */ - schematicId: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdHead.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdHead.ts deleted file mode 100755 index bfb5df8..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdHead.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * head object - */ -export interface GetCharactersCharacterIdPlanetsPlanetIdHead { - /** - * head_id integer - */ - headId: number; - /** - * latitude number - */ - latitude: number; - /** - * longitude number - */ - longitude: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdLink.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdLink.ts deleted file mode 100755 index 1e269ae..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdLink.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * link object - */ -export interface GetCharactersCharacterIdPlanetsPlanetIdLink { - /** - * source_pin_id integer - */ - sourcePinId: number; - /** - * destination_pin_id integer - */ - destinationPinId: number; - /** - * link_level integer - */ - linkLevel: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdNotFound.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdNotFound.ts deleted file mode 100755 index b11beb0..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Colony not found - */ -export interface GetCharactersCharacterIdPlanetsPlanetIdNotFound { - /** - * error message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdOk.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdOk.ts deleted file mode 100755 index 86fa336..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdOk.ts +++ /dev/null @@ -1,33 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetCharactersCharacterIdPlanetsPlanetIdLink } from './getCharactersCharacterIdPlanetsPlanetIdLink'; -import { GetCharactersCharacterIdPlanetsPlanetIdPin } from './getCharactersCharacterIdPlanetsPlanetIdPin'; -import { GetCharactersCharacterIdPlanetsPlanetIdRoute } from './getCharactersCharacterIdPlanetsPlanetIdRoute'; - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdPlanetsPlanetIdOk { - /** - * links array - */ - links: Array; - /** - * pins array - */ - pins: Array; - /** - * routes array - */ - routes: Array; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdPin.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdPin.ts deleted file mode 100755 index 18bb25f..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdPin.ts +++ /dev/null @@ -1,59 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetCharactersCharacterIdPlanetsPlanetIdContent } from './getCharactersCharacterIdPlanetsPlanetIdContent'; -import { GetCharactersCharacterIdPlanetsPlanetIdExtractorDetails } from './getCharactersCharacterIdPlanetsPlanetIdExtractorDetails'; -import { GetCharactersCharacterIdPlanetsPlanetIdFactoryDetails } from './getCharactersCharacterIdPlanetsPlanetIdFactoryDetails'; - - -/** - * pin object - */ -export interface GetCharactersCharacterIdPlanetsPlanetIdPin { - /** - * latitude number - */ - latitude: number; - /** - * longitude number - */ - longitude: number; - /** - * pin_id integer - */ - pinId: number; - /** - * type_id integer - */ - typeId: number; - /** - * schematic_id integer - */ - schematicId?: number; - extractorDetails?: GetCharactersCharacterIdPlanetsPlanetIdExtractorDetails; - factoryDetails?: GetCharactersCharacterIdPlanetsPlanetIdFactoryDetails; - /** - * contents array - */ - contents?: Array; - /** - * install_time string - */ - installTime?: Date; - /** - * expiry_time string - */ - expiryTime?: Date; - /** - * last_cycle_start string - */ - lastCycleStart?: Date; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdRoute.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdRoute.ts deleted file mode 100755 index 3f8ddaa..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPlanetsPlanetIdRoute.ts +++ /dev/null @@ -1,42 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * route object - */ -export interface GetCharactersCharacterIdPlanetsPlanetIdRoute { - /** - * route_id integer - */ - routeId: number; - /** - * source_pin_id integer - */ - sourcePinId: number; - /** - * destination_pin_id integer - */ - destinationPinId: number; - /** - * content_type_id integer - */ - contentTypeId: number; - /** - * quantity number - */ - quantity: number; - /** - * list of pin ID waypoints - */ - waypoints?: Array; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPortraitNotFound.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdPortraitNotFound.ts deleted file mode 100755 index 1e10502..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPortraitNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * No image server for this datasource - */ -export interface GetCharactersCharacterIdPortraitNotFound { - /** - * error message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPortraitOk.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdPortraitOk.ts deleted file mode 100755 index b325e41..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdPortraitOk.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdPortraitOk { - /** - * px64x64 string - */ - px64x64?: string; - /** - * px128x128 string - */ - px128x128?: string; - /** - * px256x256 string - */ - px256x256?: string; - /** - * px512x512 string - */ - px512x512?: string; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdRolesOk.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdRolesOk.ts deleted file mode 100755 index 51839b7..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdRolesOk.ts +++ /dev/null @@ -1,248 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdRolesOk { - /** - * roles array - */ - roles?: Array; - /** - * roles_at_hq array - */ - rolesAtHq?: Array; - /** - * roles_at_base array - */ - rolesAtBase?: Array; - /** - * roles_at_other array - */ - rolesAtOther?: Array; -} -export namespace GetCharactersCharacterIdRolesOk { - export type RolesEnum = 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Terrestrial_Combat_Officer' | 'Terrestrial_Logistics_Officer' | 'Trader'; - export const RolesEnum = { - AccountTake1: 'Account_Take_1' as RolesEnum, - AccountTake2: 'Account_Take_2' as RolesEnum, - AccountTake3: 'Account_Take_3' as RolesEnum, - AccountTake4: 'Account_Take_4' as RolesEnum, - AccountTake5: 'Account_Take_5' as RolesEnum, - AccountTake6: 'Account_Take_6' as RolesEnum, - AccountTake7: 'Account_Take_7' as RolesEnum, - Accountant: 'Accountant' as RolesEnum, - Auditor: 'Auditor' as RolesEnum, - CommunicationsOfficer: 'Communications_Officer' as RolesEnum, - ConfigEquipment: 'Config_Equipment' as RolesEnum, - ConfigStarbaseEquipment: 'Config_Starbase_Equipment' as RolesEnum, - ContainerTake1: 'Container_Take_1' as RolesEnum, - ContainerTake2: 'Container_Take_2' as RolesEnum, - ContainerTake3: 'Container_Take_3' as RolesEnum, - ContainerTake4: 'Container_Take_4' as RolesEnum, - ContainerTake5: 'Container_Take_5' as RolesEnum, - ContainerTake6: 'Container_Take_6' as RolesEnum, - ContainerTake7: 'Container_Take_7' as RolesEnum, - ContractManager: 'Contract_Manager' as RolesEnum, - Diplomat: 'Diplomat' as RolesEnum, - Director: 'Director' as RolesEnum, - FactoryManager: 'Factory_Manager' as RolesEnum, - FittingManager: 'Fitting_Manager' as RolesEnum, - HangarQuery1: 'Hangar_Query_1' as RolesEnum, - HangarQuery2: 'Hangar_Query_2' as RolesEnum, - HangarQuery3: 'Hangar_Query_3' as RolesEnum, - HangarQuery4: 'Hangar_Query_4' as RolesEnum, - HangarQuery5: 'Hangar_Query_5' as RolesEnum, - HangarQuery6: 'Hangar_Query_6' as RolesEnum, - HangarQuery7: 'Hangar_Query_7' as RolesEnum, - HangarTake1: 'Hangar_Take_1' as RolesEnum, - HangarTake2: 'Hangar_Take_2' as RolesEnum, - HangarTake3: 'Hangar_Take_3' as RolesEnum, - HangarTake4: 'Hangar_Take_4' as RolesEnum, - HangarTake5: 'Hangar_Take_5' as RolesEnum, - HangarTake6: 'Hangar_Take_6' as RolesEnum, - HangarTake7: 'Hangar_Take_7' as RolesEnum, - JuniorAccountant: 'Junior_Accountant' as RolesEnum, - PersonnelManager: 'Personnel_Manager' as RolesEnum, - RentFactoryFacility: 'Rent_Factory_Facility' as RolesEnum, - RentOffice: 'Rent_Office' as RolesEnum, - RentResearchFacility: 'Rent_Research_Facility' as RolesEnum, - SecurityOfficer: 'Security_Officer' as RolesEnum, - StarbaseDefenseOperator: 'Starbase_Defense_Operator' as RolesEnum, - StarbaseFuelTechnician: 'Starbase_Fuel_Technician' as RolesEnum, - StationManager: 'Station_Manager' as RolesEnum, - TerrestrialCombatOfficer: 'Terrestrial_Combat_Officer' as RolesEnum, - TerrestrialLogisticsOfficer: 'Terrestrial_Logistics_Officer' as RolesEnum, - Trader: 'Trader' as RolesEnum - } - export type RolesAtHqEnum = 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Terrestrial_Combat_Officer' | 'Terrestrial_Logistics_Officer' | 'Trader'; - export const RolesAtHqEnum = { - AccountTake1: 'Account_Take_1' as RolesAtHqEnum, - AccountTake2: 'Account_Take_2' as RolesAtHqEnum, - AccountTake3: 'Account_Take_3' as RolesAtHqEnum, - AccountTake4: 'Account_Take_4' as RolesAtHqEnum, - AccountTake5: 'Account_Take_5' as RolesAtHqEnum, - AccountTake6: 'Account_Take_6' as RolesAtHqEnum, - AccountTake7: 'Account_Take_7' as RolesAtHqEnum, - Accountant: 'Accountant' as RolesAtHqEnum, - Auditor: 'Auditor' as RolesAtHqEnum, - CommunicationsOfficer: 'Communications_Officer' as RolesAtHqEnum, - ConfigEquipment: 'Config_Equipment' as RolesAtHqEnum, - ConfigStarbaseEquipment: 'Config_Starbase_Equipment' as RolesAtHqEnum, - ContainerTake1: 'Container_Take_1' as RolesAtHqEnum, - ContainerTake2: 'Container_Take_2' as RolesAtHqEnum, - ContainerTake3: 'Container_Take_3' as RolesAtHqEnum, - ContainerTake4: 'Container_Take_4' as RolesAtHqEnum, - ContainerTake5: 'Container_Take_5' as RolesAtHqEnum, - ContainerTake6: 'Container_Take_6' as RolesAtHqEnum, - ContainerTake7: 'Container_Take_7' as RolesAtHqEnum, - ContractManager: 'Contract_Manager' as RolesAtHqEnum, - Diplomat: 'Diplomat' as RolesAtHqEnum, - Director: 'Director' as RolesAtHqEnum, - FactoryManager: 'Factory_Manager' as RolesAtHqEnum, - FittingManager: 'Fitting_Manager' as RolesAtHqEnum, - HangarQuery1: 'Hangar_Query_1' as RolesAtHqEnum, - HangarQuery2: 'Hangar_Query_2' as RolesAtHqEnum, - HangarQuery3: 'Hangar_Query_3' as RolesAtHqEnum, - HangarQuery4: 'Hangar_Query_4' as RolesAtHqEnum, - HangarQuery5: 'Hangar_Query_5' as RolesAtHqEnum, - HangarQuery6: 'Hangar_Query_6' as RolesAtHqEnum, - HangarQuery7: 'Hangar_Query_7' as RolesAtHqEnum, - HangarTake1: 'Hangar_Take_1' as RolesAtHqEnum, - HangarTake2: 'Hangar_Take_2' as RolesAtHqEnum, - HangarTake3: 'Hangar_Take_3' as RolesAtHqEnum, - HangarTake4: 'Hangar_Take_4' as RolesAtHqEnum, - HangarTake5: 'Hangar_Take_5' as RolesAtHqEnum, - HangarTake6: 'Hangar_Take_6' as RolesAtHqEnum, - HangarTake7: 'Hangar_Take_7' as RolesAtHqEnum, - JuniorAccountant: 'Junior_Accountant' as RolesAtHqEnum, - PersonnelManager: 'Personnel_Manager' as RolesAtHqEnum, - RentFactoryFacility: 'Rent_Factory_Facility' as RolesAtHqEnum, - RentOffice: 'Rent_Office' as RolesAtHqEnum, - RentResearchFacility: 'Rent_Research_Facility' as RolesAtHqEnum, - SecurityOfficer: 'Security_Officer' as RolesAtHqEnum, - StarbaseDefenseOperator: 'Starbase_Defense_Operator' as RolesAtHqEnum, - StarbaseFuelTechnician: 'Starbase_Fuel_Technician' as RolesAtHqEnum, - StationManager: 'Station_Manager' as RolesAtHqEnum, - TerrestrialCombatOfficer: 'Terrestrial_Combat_Officer' as RolesAtHqEnum, - TerrestrialLogisticsOfficer: 'Terrestrial_Logistics_Officer' as RolesAtHqEnum, - Trader: 'Trader' as RolesAtHqEnum - } - export type RolesAtBaseEnum = 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Terrestrial_Combat_Officer' | 'Terrestrial_Logistics_Officer' | 'Trader'; - export const RolesAtBaseEnum = { - AccountTake1: 'Account_Take_1' as RolesAtBaseEnum, - AccountTake2: 'Account_Take_2' as RolesAtBaseEnum, - AccountTake3: 'Account_Take_3' as RolesAtBaseEnum, - AccountTake4: 'Account_Take_4' as RolesAtBaseEnum, - AccountTake5: 'Account_Take_5' as RolesAtBaseEnum, - AccountTake6: 'Account_Take_6' as RolesAtBaseEnum, - AccountTake7: 'Account_Take_7' as RolesAtBaseEnum, - Accountant: 'Accountant' as RolesAtBaseEnum, - Auditor: 'Auditor' as RolesAtBaseEnum, - CommunicationsOfficer: 'Communications_Officer' as RolesAtBaseEnum, - ConfigEquipment: 'Config_Equipment' as RolesAtBaseEnum, - ConfigStarbaseEquipment: 'Config_Starbase_Equipment' as RolesAtBaseEnum, - ContainerTake1: 'Container_Take_1' as RolesAtBaseEnum, - ContainerTake2: 'Container_Take_2' as RolesAtBaseEnum, - ContainerTake3: 'Container_Take_3' as RolesAtBaseEnum, - ContainerTake4: 'Container_Take_4' as RolesAtBaseEnum, - ContainerTake5: 'Container_Take_5' as RolesAtBaseEnum, - ContainerTake6: 'Container_Take_6' as RolesAtBaseEnum, - ContainerTake7: 'Container_Take_7' as RolesAtBaseEnum, - ContractManager: 'Contract_Manager' as RolesAtBaseEnum, - Diplomat: 'Diplomat' as RolesAtBaseEnum, - Director: 'Director' as RolesAtBaseEnum, - FactoryManager: 'Factory_Manager' as RolesAtBaseEnum, - FittingManager: 'Fitting_Manager' as RolesAtBaseEnum, - HangarQuery1: 'Hangar_Query_1' as RolesAtBaseEnum, - HangarQuery2: 'Hangar_Query_2' as RolesAtBaseEnum, - HangarQuery3: 'Hangar_Query_3' as RolesAtBaseEnum, - HangarQuery4: 'Hangar_Query_4' as RolesAtBaseEnum, - HangarQuery5: 'Hangar_Query_5' as RolesAtBaseEnum, - HangarQuery6: 'Hangar_Query_6' as RolesAtBaseEnum, - HangarQuery7: 'Hangar_Query_7' as RolesAtBaseEnum, - HangarTake1: 'Hangar_Take_1' as RolesAtBaseEnum, - HangarTake2: 'Hangar_Take_2' as RolesAtBaseEnum, - HangarTake3: 'Hangar_Take_3' as RolesAtBaseEnum, - HangarTake4: 'Hangar_Take_4' as RolesAtBaseEnum, - HangarTake5: 'Hangar_Take_5' as RolesAtBaseEnum, - HangarTake6: 'Hangar_Take_6' as RolesAtBaseEnum, - HangarTake7: 'Hangar_Take_7' as RolesAtBaseEnum, - JuniorAccountant: 'Junior_Accountant' as RolesAtBaseEnum, - PersonnelManager: 'Personnel_Manager' as RolesAtBaseEnum, - RentFactoryFacility: 'Rent_Factory_Facility' as RolesAtBaseEnum, - RentOffice: 'Rent_Office' as RolesAtBaseEnum, - RentResearchFacility: 'Rent_Research_Facility' as RolesAtBaseEnum, - SecurityOfficer: 'Security_Officer' as RolesAtBaseEnum, - StarbaseDefenseOperator: 'Starbase_Defense_Operator' as RolesAtBaseEnum, - StarbaseFuelTechnician: 'Starbase_Fuel_Technician' as RolesAtBaseEnum, - StationManager: 'Station_Manager' as RolesAtBaseEnum, - TerrestrialCombatOfficer: 'Terrestrial_Combat_Officer' as RolesAtBaseEnum, - TerrestrialLogisticsOfficer: 'Terrestrial_Logistics_Officer' as RolesAtBaseEnum, - Trader: 'Trader' as RolesAtBaseEnum - } - export type RolesAtOtherEnum = 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Terrestrial_Combat_Officer' | 'Terrestrial_Logistics_Officer' | 'Trader'; - export const RolesAtOtherEnum = { - AccountTake1: 'Account_Take_1' as RolesAtOtherEnum, - AccountTake2: 'Account_Take_2' as RolesAtOtherEnum, - AccountTake3: 'Account_Take_3' as RolesAtOtherEnum, - AccountTake4: 'Account_Take_4' as RolesAtOtherEnum, - AccountTake5: 'Account_Take_5' as RolesAtOtherEnum, - AccountTake6: 'Account_Take_6' as RolesAtOtherEnum, - AccountTake7: 'Account_Take_7' as RolesAtOtherEnum, - Accountant: 'Accountant' as RolesAtOtherEnum, - Auditor: 'Auditor' as RolesAtOtherEnum, - CommunicationsOfficer: 'Communications_Officer' as RolesAtOtherEnum, - ConfigEquipment: 'Config_Equipment' as RolesAtOtherEnum, - ConfigStarbaseEquipment: 'Config_Starbase_Equipment' as RolesAtOtherEnum, - ContainerTake1: 'Container_Take_1' as RolesAtOtherEnum, - ContainerTake2: 'Container_Take_2' as RolesAtOtherEnum, - ContainerTake3: 'Container_Take_3' as RolesAtOtherEnum, - ContainerTake4: 'Container_Take_4' as RolesAtOtherEnum, - ContainerTake5: 'Container_Take_5' as RolesAtOtherEnum, - ContainerTake6: 'Container_Take_6' as RolesAtOtherEnum, - ContainerTake7: 'Container_Take_7' as RolesAtOtherEnum, - ContractManager: 'Contract_Manager' as RolesAtOtherEnum, - Diplomat: 'Diplomat' as RolesAtOtherEnum, - Director: 'Director' as RolesAtOtherEnum, - FactoryManager: 'Factory_Manager' as RolesAtOtherEnum, - FittingManager: 'Fitting_Manager' as RolesAtOtherEnum, - HangarQuery1: 'Hangar_Query_1' as RolesAtOtherEnum, - HangarQuery2: 'Hangar_Query_2' as RolesAtOtherEnum, - HangarQuery3: 'Hangar_Query_3' as RolesAtOtherEnum, - HangarQuery4: 'Hangar_Query_4' as RolesAtOtherEnum, - HangarQuery5: 'Hangar_Query_5' as RolesAtOtherEnum, - HangarQuery6: 'Hangar_Query_6' as RolesAtOtherEnum, - HangarQuery7: 'Hangar_Query_7' as RolesAtOtherEnum, - HangarTake1: 'Hangar_Take_1' as RolesAtOtherEnum, - HangarTake2: 'Hangar_Take_2' as RolesAtOtherEnum, - HangarTake3: 'Hangar_Take_3' as RolesAtOtherEnum, - HangarTake4: 'Hangar_Take_4' as RolesAtOtherEnum, - HangarTake5: 'Hangar_Take_5' as RolesAtOtherEnum, - HangarTake6: 'Hangar_Take_6' as RolesAtOtherEnum, - HangarTake7: 'Hangar_Take_7' as RolesAtOtherEnum, - JuniorAccountant: 'Junior_Accountant' as RolesAtOtherEnum, - PersonnelManager: 'Personnel_Manager' as RolesAtOtherEnum, - RentFactoryFacility: 'Rent_Factory_Facility' as RolesAtOtherEnum, - RentOffice: 'Rent_Office' as RolesAtOtherEnum, - RentResearchFacility: 'Rent_Research_Facility' as RolesAtOtherEnum, - SecurityOfficer: 'Security_Officer' as RolesAtOtherEnum, - StarbaseDefenseOperator: 'Starbase_Defense_Operator' as RolesAtOtherEnum, - StarbaseFuelTechnician: 'Starbase_Fuel_Technician' as RolesAtOtherEnum, - StationManager: 'Station_Manager' as RolesAtOtherEnum, - TerrestrialCombatOfficer: 'Terrestrial_Combat_Officer' as RolesAtOtherEnum, - TerrestrialLogisticsOfficer: 'Terrestrial_Logistics_Officer' as RolesAtOtherEnum, - Trader: 'Trader' as RolesAtOtherEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdSearchOk.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdSearchOk.ts deleted file mode 100755 index 6b5f4aa..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdSearchOk.ts +++ /dev/null @@ -1,62 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdSearchOk { - /** - * agent array - */ - agent?: Array; - /** - * alliance array - */ - alliance?: Array; - /** - * character array - */ - character?: Array; - /** - * constellation array - */ - constellation?: Array; - /** - * corporation array - */ - corporation?: Array; - /** - * faction array - */ - faction?: Array; - /** - * inventory_type array - */ - inventoryType?: Array; - /** - * region array - */ - region?: Array; - /** - * solar_system array - */ - solarSystem?: Array; - /** - * station array - */ - station?: Array; - /** - * structure array - */ - structure?: Array; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdShipOk.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdShipOk.ts deleted file mode 100755 index 8f1b6c5..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdShipOk.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdShipOk { - /** - * ship_type_id integer - */ - shipTypeId: number; - /** - * Item id's are unique to a ship and persist until it is repackaged. This value can be used to track repeated uses of a ship, or detect when a pilot changes into a different instance of the same ship type. - */ - shipItemId: number; - /** - * ship_name string - */ - shipName: string; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdSkillqueue200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdSkillqueue200Ok.ts deleted file mode 100755 index 8e02067..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdSkillqueue200Ok.ts +++ /dev/null @@ -1,50 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdSkillqueue200Ok { - /** - * skill_id integer - */ - skillId: number; - /** - * finish_date string - */ - finishDate?: Date; - /** - * start_date string - */ - startDate?: Date; - /** - * finished_level integer - */ - finishedLevel: number; - /** - * queue_position integer - */ - queuePosition: number; - /** - * training_start_sp integer - */ - trainingStartSp?: number; - /** - * level_end_sp integer - */ - levelEndSp?: number; - /** - * Amount of SP that was in the skill when it started training it's current level. Used to calculate % of current level complete. - */ - levelStartSp?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdSkillsOk.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdSkillsOk.ts deleted file mode 100755 index 718e61a..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdSkillsOk.ts +++ /dev/null @@ -1,31 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetCharactersCharacterIdSkillsSkill } from './getCharactersCharacterIdSkillsSkill'; - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdSkillsOk { - /** - * skills array - */ - skills: Array; - /** - * total_sp integer - */ - totalSp: number; - /** - * Skill points available to be assigned - */ - unallocatedSp?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdSkillsSkill.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdSkillsSkill.ts deleted file mode 100755 index 2222a43..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdSkillsSkill.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * skill object - */ -export interface GetCharactersCharacterIdSkillsSkill { - /** - * skill_id integer - */ - skillId: number; - /** - * skillpoints_in_skill integer - */ - skillpointsInSkill: number; - /** - * trained_skill_level integer - */ - trainedSkillLevel: number; - /** - * active_skill_level integer - */ - activeSkillLevel: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStandings200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdStandings200Ok.ts deleted file mode 100755 index 77d0084..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStandings200Ok.ts +++ /dev/null @@ -1,38 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdStandings200Ok { - /** - * from_id integer - */ - fromId: number; - /** - * from_type string - */ - fromType: GetCharactersCharacterIdStandings200Ok.FromTypeEnum; - /** - * standing number - */ - standing: number; -} -export namespace GetCharactersCharacterIdStandings200Ok { - export type FromTypeEnum = 'agent' | 'npc_corp' | 'faction'; - export const FromTypeEnum = { - Agent: 'agent' as FromTypeEnum, - NpcCorp: 'npc_corp' as FromTypeEnum, - Faction: 'faction' as FromTypeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStats200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdStats200Ok.ts deleted file mode 100755 index 2e31425..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStats200Ok.ts +++ /dev/null @@ -1,46 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetCharactersCharacterIdStatsCharacter } from './getCharactersCharacterIdStatsCharacter'; -import { GetCharactersCharacterIdStatsCombat } from './getCharactersCharacterIdStatsCombat'; -import { GetCharactersCharacterIdStatsIndustry } from './getCharactersCharacterIdStatsIndustry'; -import { GetCharactersCharacterIdStatsInventory } from './getCharactersCharacterIdStatsInventory'; -import { GetCharactersCharacterIdStatsIsk } from './getCharactersCharacterIdStatsIsk'; -import { GetCharactersCharacterIdStatsMarket } from './getCharactersCharacterIdStatsMarket'; -import { GetCharactersCharacterIdStatsMining } from './getCharactersCharacterIdStatsMining'; -import { GetCharactersCharacterIdStatsModule } from './getCharactersCharacterIdStatsModule'; -import { GetCharactersCharacterIdStatsOrbital } from './getCharactersCharacterIdStatsOrbital'; -import { GetCharactersCharacterIdStatsPve } from './getCharactersCharacterIdStatsPve'; -import { GetCharactersCharacterIdStatsSocial } from './getCharactersCharacterIdStatsSocial'; -import { GetCharactersCharacterIdStatsTravel } from './getCharactersCharacterIdStatsTravel'; - - -/** - * Aggregate stats for a year - */ -export interface GetCharactersCharacterIdStats200Ok { - /** - * Gregorian year for this set of aggregates - */ - year: number; - character?: GetCharactersCharacterIdStatsCharacter; - combat?: GetCharactersCharacterIdStatsCombat; - industry?: GetCharactersCharacterIdStatsIndustry; - inventory?: GetCharactersCharacterIdStatsInventory; - isk?: GetCharactersCharacterIdStatsIsk; - market?: GetCharactersCharacterIdStatsMarket; - mining?: GetCharactersCharacterIdStatsMining; - module?: GetCharactersCharacterIdStatsModule; - orbital?: GetCharactersCharacterIdStatsOrbital; - pve?: GetCharactersCharacterIdStatsPve; - social?: GetCharactersCharacterIdStatsSocial; - travel?: GetCharactersCharacterIdStatsTravel; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsCharacter.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsCharacter.ts deleted file mode 100755 index 02f710e..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsCharacter.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * character object - */ -export interface GetCharactersCharacterIdStatsCharacter { - /** - * days_of_activity integer - */ - daysOfActivity?: number; - /** - * minutes integer - */ - minutes?: number; - /** - * sessions_started integer - */ - sessionsStarted?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsCombat.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsCombat.ts deleted file mode 100755 index 8617240..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsCombat.ts +++ /dev/null @@ -1,394 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * combat object - */ -export interface GetCharactersCharacterIdStatsCombat { - /** - * cap_drainedby_npc integer - */ - capDrainedbyNpc?: number; - /** - * cap_drainedby_pc integer - */ - capDrainedbyPc?: number; - /** - * cap_draining_pc integer - */ - capDrainingPc?: number; - /** - * criminal_flag_set integer - */ - criminalFlagSet?: number; - /** - * damage_from_np_cs_amount integer - */ - damageFromNpCsAmount?: number; - /** - * damage_from_np_cs_num_shots integer - */ - damageFromNpCsNumShots?: number; - /** - * damage_from_players_bomb_amount integer - */ - damageFromPlayersBombAmount?: number; - /** - * damage_from_players_bomb_num_shots integer - */ - damageFromPlayersBombNumShots?: number; - /** - * damage_from_players_combat_drone_amount integer - */ - damageFromPlayersCombatDroneAmount?: number; - /** - * damage_from_players_combat_drone_num_shots integer - */ - damageFromPlayersCombatDroneNumShots?: number; - /** - * damage_from_players_energy_amount integer - */ - damageFromPlayersEnergyAmount?: number; - /** - * damage_from_players_energy_num_shots integer - */ - damageFromPlayersEnergyNumShots?: number; - /** - * damage_from_players_fighter_bomber_amount integer - */ - damageFromPlayersFighterBomberAmount?: number; - /** - * damage_from_players_fighter_bomber_num_shots integer - */ - damageFromPlayersFighterBomberNumShots?: number; - /** - * damage_from_players_fighter_drone_amount integer - */ - damageFromPlayersFighterDroneAmount?: number; - /** - * damage_from_players_fighter_drone_num_shots integer - */ - damageFromPlayersFighterDroneNumShots?: number; - /** - * damage_from_players_hybrid_amount integer - */ - damageFromPlayersHybridAmount?: number; - /** - * damage_from_players_hybrid_num_shots integer - */ - damageFromPlayersHybridNumShots?: number; - /** - * damage_from_players_missile_amount integer - */ - damageFromPlayersMissileAmount?: number; - /** - * damage_from_players_missile_num_shots integer - */ - damageFromPlayersMissileNumShots?: number; - /** - * damage_from_players_projectile_amount integer - */ - damageFromPlayersProjectileAmount?: number; - /** - * damage_from_players_projectile_num_shots integer - */ - damageFromPlayersProjectileNumShots?: number; - /** - * damage_from_players_smart_bomb_amount integer - */ - damageFromPlayersSmartBombAmount?: number; - /** - * damage_from_players_smart_bomb_num_shots integer - */ - damageFromPlayersSmartBombNumShots?: number; - /** - * damage_from_players_super_amount integer - */ - damageFromPlayersSuperAmount?: number; - /** - * damage_from_players_super_num_shots integer - */ - damageFromPlayersSuperNumShots?: number; - /** - * damage_from_structures_total_amount integer - */ - damageFromStructuresTotalAmount?: number; - /** - * damage_from_structures_total_num_shots integer - */ - damageFromStructuresTotalNumShots?: number; - /** - * damage_to_players_bomb_amount integer - */ - damageToPlayersBombAmount?: number; - /** - * damage_to_players_bomb_num_shots integer - */ - damageToPlayersBombNumShots?: number; - /** - * damage_to_players_combat_drone_amount integer - */ - damageToPlayersCombatDroneAmount?: number; - /** - * damage_to_players_combat_drone_num_shots integer - */ - damageToPlayersCombatDroneNumShots?: number; - /** - * damage_to_players_energy_amount integer - */ - damageToPlayersEnergyAmount?: number; - /** - * damage_to_players_energy_num_shots integer - */ - damageToPlayersEnergyNumShots?: number; - /** - * damage_to_players_fighter_bomber_amount integer - */ - damageToPlayersFighterBomberAmount?: number; - /** - * damage_to_players_fighter_bomber_num_shots integer - */ - damageToPlayersFighterBomberNumShots?: number; - /** - * damage_to_players_fighter_drone_amount integer - */ - damageToPlayersFighterDroneAmount?: number; - /** - * damage_to_players_fighter_drone_num_shots integer - */ - damageToPlayersFighterDroneNumShots?: number; - /** - * damage_to_players_hybrid_amount integer - */ - damageToPlayersHybridAmount?: number; - /** - * damage_to_players_hybrid_num_shots integer - */ - damageToPlayersHybridNumShots?: number; - /** - * damage_to_players_missile_amount integer - */ - damageToPlayersMissileAmount?: number; - /** - * damage_to_players_missile_num_shots integer - */ - damageToPlayersMissileNumShots?: number; - /** - * damage_to_players_projectile_amount integer - */ - damageToPlayersProjectileAmount?: number; - /** - * damage_to_players_projectile_num_shots integer - */ - damageToPlayersProjectileNumShots?: number; - /** - * damage_to_players_smart_bomb_amount integer - */ - damageToPlayersSmartBombAmount?: number; - /** - * damage_to_players_smart_bomb_num_shots integer - */ - damageToPlayersSmartBombNumShots?: number; - /** - * damage_to_players_super_amount integer - */ - damageToPlayersSuperAmount?: number; - /** - * damage_to_players_super_num_shots integer - */ - damageToPlayersSuperNumShots?: number; - /** - * damage_to_structures_total_amount integer - */ - damageToStructuresTotalAmount?: number; - /** - * damage_to_structures_total_num_shots integer - */ - damageToStructuresTotalNumShots?: number; - /** - * deaths_high_sec integer - */ - deathsHighSec?: number; - /** - * deaths_low_sec integer - */ - deathsLowSec?: number; - /** - * deaths_null_sec integer - */ - deathsNullSec?: number; - /** - * deaths_pod_high_sec integer - */ - deathsPodHighSec?: number; - /** - * deaths_pod_low_sec integer - */ - deathsPodLowSec?: number; - /** - * deaths_pod_null_sec integer - */ - deathsPodNullSec?: number; - /** - * deaths_pod_wormhole integer - */ - deathsPodWormhole?: number; - /** - * deaths_wormhole integer - */ - deathsWormhole?: number; - /** - * drone_engage integer - */ - droneEngage?: number; - /** - * dscans integer - */ - dscans?: number; - /** - * duel_requested integer - */ - duelRequested?: number; - /** - * engagement_register integer - */ - engagementRegister?: number; - /** - * kills_assists integer - */ - killsAssists?: number; - /** - * kills_high_sec integer - */ - killsHighSec?: number; - /** - * kills_low_sec integer - */ - killsLowSec?: number; - /** - * kills_null_sec integer - */ - killsNullSec?: number; - /** - * kills_pod_high_sec integer - */ - killsPodHighSec?: number; - /** - * kills_pod_low_sec integer - */ - killsPodLowSec?: number; - /** - * kills_pod_null_sec integer - */ - killsPodNullSec?: number; - /** - * kills_pod_wormhole integer - */ - killsPodWormhole?: number; - /** - * kills_wormhole integer - */ - killsWormhole?: number; - /** - * npc_flag_set integer - */ - npcFlagSet?: number; - /** - * probe_scans integer - */ - probeScans?: number; - /** - * pvp_flag_set integer - */ - pvpFlagSet?: number; - /** - * repair_armor_by_remote_amount integer - */ - repairArmorByRemoteAmount?: number; - /** - * repair_armor_remote_amount integer - */ - repairArmorRemoteAmount?: number; - /** - * repair_armor_self_amount integer - */ - repairArmorSelfAmount?: number; - /** - * repair_capacitor_by_remote_amount integer - */ - repairCapacitorByRemoteAmount?: number; - /** - * repair_capacitor_remote_amount integer - */ - repairCapacitorRemoteAmount?: number; - /** - * repair_capacitor_self_amount integer - */ - repairCapacitorSelfAmount?: number; - /** - * repair_hull_by_remote_amount integer - */ - repairHullByRemoteAmount?: number; - /** - * repair_hull_remote_amount integer - */ - repairHullRemoteAmount?: number; - /** - * repair_hull_self_amount integer - */ - repairHullSelfAmount?: number; - /** - * repair_shield_by_remote_amount integer - */ - repairShieldByRemoteAmount?: number; - /** - * repair_shield_remote_amount integer - */ - repairShieldRemoteAmount?: number; - /** - * repair_shield_self_amount integer - */ - repairShieldSelfAmount?: number; - /** - * self_destructs integer - */ - selfDestructs?: number; - /** - * warp_scramble_pc integer - */ - warpScramblePc?: number; - /** - * warp_scrambledby_npc integer - */ - warpScrambledbyNpc?: number; - /** - * warp_scrambledby_pc integer - */ - warpScrambledbyPc?: number; - /** - * weapon_flag_set integer - */ - weaponFlagSet?: number; - /** - * webifiedby_npc integer - */ - webifiedbyNpc?: number; - /** - * webifiedby_pc integer - */ - webifiedbyPc?: number; - /** - * webifying_pc integer - */ - webifyingPc?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsIndustry.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsIndustry.ts deleted file mode 100755 index 844e77e..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsIndustry.ts +++ /dev/null @@ -1,162 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * industry object - */ -export interface GetCharactersCharacterIdStatsIndustry { - /** - * hacking_successes integer - */ - hackingSuccesses?: number; - /** - * jobs_cancelled integer - */ - jobsCancelled?: number; - /** - * jobs_completed_copy_blueprint integer - */ - jobsCompletedCopyBlueprint?: number; - /** - * jobs_completed_invention integer - */ - jobsCompletedInvention?: number; - /** - * jobs_completed_manufacture integer - */ - jobsCompletedManufacture?: number; - /** - * jobs_completed_manufacture_asteroid integer - */ - jobsCompletedManufactureAsteroid?: number; - /** - * jobs_completed_manufacture_asteroid_quantity integer - */ - jobsCompletedManufactureAsteroidQuantity?: number; - /** - * jobs_completed_manufacture_charge integer - */ - jobsCompletedManufactureCharge?: number; - /** - * jobs_completed_manufacture_charge_quantity integer - */ - jobsCompletedManufactureChargeQuantity?: number; - /** - * jobs_completed_manufacture_commodity integer - */ - jobsCompletedManufactureCommodity?: number; - /** - * jobs_completed_manufacture_commodity_quantity integer - */ - jobsCompletedManufactureCommodityQuantity?: number; - /** - * jobs_completed_manufacture_deployable integer - */ - jobsCompletedManufactureDeployable?: number; - /** - * jobs_completed_manufacture_deployable_quantity integer - */ - jobsCompletedManufactureDeployableQuantity?: number; - /** - * jobs_completed_manufacture_drone integer - */ - jobsCompletedManufactureDrone?: number; - /** - * jobs_completed_manufacture_drone_quantity integer - */ - jobsCompletedManufactureDroneQuantity?: number; - /** - * jobs_completed_manufacture_implant integer - */ - jobsCompletedManufactureImplant?: number; - /** - * jobs_completed_manufacture_implant_quantity integer - */ - jobsCompletedManufactureImplantQuantity?: number; - /** - * jobs_completed_manufacture_module integer - */ - jobsCompletedManufactureModule?: number; - /** - * jobs_completed_manufacture_module_quantity integer - */ - jobsCompletedManufactureModuleQuantity?: number; - /** - * jobs_completed_manufacture_other integer - */ - jobsCompletedManufactureOther?: number; - /** - * jobs_completed_manufacture_other_quantity integer - */ - jobsCompletedManufactureOtherQuantity?: number; - /** - * jobs_completed_manufacture_ship integer - */ - jobsCompletedManufactureShip?: number; - /** - * jobs_completed_manufacture_ship_quantity integer - */ - jobsCompletedManufactureShipQuantity?: number; - /** - * jobs_completed_manufacture_structure integer - */ - jobsCompletedManufactureStructure?: number; - /** - * jobs_completed_manufacture_structure_quantity integer - */ - jobsCompletedManufactureStructureQuantity?: number; - /** - * jobs_completed_manufacture_subsystem integer - */ - jobsCompletedManufactureSubsystem?: number; - /** - * jobs_completed_manufacture_subsystem_quantity integer - */ - jobsCompletedManufactureSubsystemQuantity?: number; - /** - * jobs_completed_material_productivity integer - */ - jobsCompletedMaterialProductivity?: number; - /** - * jobs_completed_time_productivity integer - */ - jobsCompletedTimeProductivity?: number; - /** - * jobs_started_copy_blueprint integer - */ - jobsStartedCopyBlueprint?: number; - /** - * jobs_started_invention integer - */ - jobsStartedInvention?: number; - /** - * jobs_started_manufacture integer - */ - jobsStartedManufacture?: number; - /** - * jobs_started_material_productivity integer - */ - jobsStartedMaterialProductivity?: number; - /** - * jobs_started_time_productivity integer - */ - jobsStartedTimeProductivity?: number; - /** - * reprocess_item integer - */ - reprocessItem?: number; - /** - * reprocess_item_quantity integer - */ - reprocessItemQuantity?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsInventory.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsInventory.ts deleted file mode 100755 index 499b87b..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsInventory.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * inventory object - */ -export interface GetCharactersCharacterIdStatsInventory { - /** - * abandon_loot_quantity integer - */ - abandonLootQuantity?: number; - /** - * trash_item_quantity integer - */ - trashItemQuantity?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsIsk.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsIsk.ts deleted file mode 100755 index 33ab1a0..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsIsk.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * isk object - */ -export interface GetCharactersCharacterIdStatsIsk { - /** - * in integer - */ - _in?: number; - /** - * out integer - */ - out?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsMarket.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsMarket.ts deleted file mode 100755 index cf7bcc6..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsMarket.ts +++ /dev/null @@ -1,70 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * market object - */ -export interface GetCharactersCharacterIdStatsMarket { - /** - * accept_contracts_courier integer - */ - acceptContractsCourier?: number; - /** - * accept_contracts_item_exchange integer - */ - acceptContractsItemExchange?: number; - /** - * buy_orders_placed integer - */ - buyOrdersPlaced?: number; - /** - * cancel_market_order integer - */ - cancelMarketOrder?: number; - /** - * create_contracts_auction integer - */ - createContractsAuction?: number; - /** - * create_contracts_courier integer - */ - createContractsCourier?: number; - /** - * create_contracts_item_exchange integer - */ - createContractsItemExchange?: number; - /** - * deliver_courier_contract integer - */ - deliverCourierContract?: number; - /** - * isk_gained integer - */ - iskGained?: number; - /** - * isk_spent integer - */ - iskSpent?: number; - /** - * modify_market_order integer - */ - modifyMarketOrder?: number; - /** - * search_contracts integer - */ - searchContracts?: number; - /** - * sell_orders_placed integer - */ - sellOrdersPlaced?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsMining.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsMining.ts deleted file mode 100755 index c1b2e1d..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsMining.ts +++ /dev/null @@ -1,94 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * mining object - */ -export interface GetCharactersCharacterIdStatsMining { - /** - * drone_mine integer - */ - droneMine?: number; - /** - * ore_arkonor integer - */ - oreArkonor?: number; - /** - * ore_bistot integer - */ - oreBistot?: number; - /** - * ore_crokite integer - */ - oreCrokite?: number; - /** - * ore_dark_ochre integer - */ - oreDarkOchre?: number; - /** - * ore_gneiss integer - */ - oreGneiss?: number; - /** - * ore_harvestable_cloud integer - */ - oreHarvestableCloud?: number; - /** - * ore_hedbergite integer - */ - oreHedbergite?: number; - /** - * ore_hemorphite integer - */ - oreHemorphite?: number; - /** - * ore_ice integer - */ - oreIce?: number; - /** - * ore_jaspet integer - */ - oreJaspet?: number; - /** - * ore_kernite integer - */ - oreKernite?: number; - /** - * ore_mercoxit integer - */ - oreMercoxit?: number; - /** - * ore_omber integer - */ - oreOmber?: number; - /** - * ore_plagioclase integer - */ - orePlagioclase?: number; - /** - * ore_pyroxeres integer - */ - orePyroxeres?: number; - /** - * ore_scordite integer - */ - oreScordite?: number; - /** - * ore_spodumain integer - */ - oreSpodumain?: number; - /** - * ore_veldspar integer - */ - oreVeldspar?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsModule.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsModule.ts deleted file mode 100755 index 33a0403..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsModule.ts +++ /dev/null @@ -1,294 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * module object - */ -export interface GetCharactersCharacterIdStatsModule { - /** - * activations_armor_hardener integer - */ - activationsArmorHardener?: number; - /** - * activations_armor_repair_unit integer - */ - activationsArmorRepairUnit?: number; - /** - * activations_armor_resistance_shift_hardener integer - */ - activationsArmorResistanceShiftHardener?: number; - /** - * activations_automated_targeting_system integer - */ - activationsAutomatedTargetingSystem?: number; - /** - * activations_bastion integer - */ - activationsBastion?: number; - /** - * activations_bomb_launcher integer - */ - activationsBombLauncher?: number; - /** - * activations_capacitor_booster integer - */ - activationsCapacitorBooster?: number; - /** - * activations_cargo_scanner integer - */ - activationsCargoScanner?: number; - /** - * activations_cloaking_device integer - */ - activationsCloakingDevice?: number; - /** - * activations_clone_vat_bay integer - */ - activationsCloneVatBay?: number; - /** - * activations_cynosural_field integer - */ - activationsCynosuralField?: number; - /** - * activations_damage_control integer - */ - activationsDamageControl?: number; - /** - * activations_data_miners integer - */ - activationsDataMiners?: number; - /** - * activations_drone_control_unit integer - */ - activationsDroneControlUnit?: number; - /** - * activations_drone_tracking_modules integer - */ - activationsDroneTrackingModules?: number; - /** - * activations_eccm integer - */ - activationsEccm?: number; - /** - * activations_ecm integer - */ - activationsEcm?: number; - /** - * activations_ecm_burst integer - */ - activationsEcmBurst?: number; - /** - * activations_energy_destabilizer integer - */ - activationsEnergyDestabilizer?: number; - /** - * activations_energy_vampire integer - */ - activationsEnergyVampire?: number; - /** - * activations_energy_weapon integer - */ - activationsEnergyWeapon?: number; - /** - * activations_festival_launcher integer - */ - activationsFestivalLauncher?: number; - /** - * activations_frequency_mining_laser integer - */ - activationsFrequencyMiningLaser?: number; - /** - * activations_fueled_armor_repairer integer - */ - activationsFueledArmorRepairer?: number; - /** - * activations_fueled_shield_booster integer - */ - activationsFueledShieldBooster?: number; - /** - * activations_gang_coordinator integer - */ - activationsGangCoordinator?: number; - /** - * activations_gas_cloud_harvester integer - */ - activationsGasCloudHarvester?: number; - /** - * activations_hull_repair_unit integer - */ - activationsHullRepairUnit?: number; - /** - * activations_hybrid_weapon integer - */ - activationsHybridWeapon?: number; - /** - * activations_industrial_core integer - */ - activationsIndustrialCore?: number; - /** - * activations_interdiction_sphere_launcher integer - */ - activationsInterdictionSphereLauncher?: number; - /** - * activations_micro_jump_drive integer - */ - activationsMicroJumpDrive?: number; - /** - * activations_mining_laser integer - */ - activationsMiningLaser?: number; - /** - * activations_missile_launcher integer - */ - activationsMissileLauncher?: number; - /** - * activations_passive_targeting_system integer - */ - activationsPassiveTargetingSystem?: number; - /** - * activations_probe_launcher integer - */ - activationsProbeLauncher?: number; - /** - * activations_projected_eccm integer - */ - activationsProjectedEccm?: number; - /** - * activations_projectile_weapon integer - */ - activationsProjectileWeapon?: number; - /** - * activations_propulsion_module integer - */ - activationsPropulsionModule?: number; - /** - * activations_remote_armor_repairer integer - */ - activationsRemoteArmorRepairer?: number; - /** - * activations_remote_capacitor_transmitter integer - */ - activationsRemoteCapacitorTransmitter?: number; - /** - * activations_remote_ecm_burst integer - */ - activationsRemoteEcmBurst?: number; - /** - * activations_remote_hull_repairer integer - */ - activationsRemoteHullRepairer?: number; - /** - * activations_remote_sensor_booster integer - */ - activationsRemoteSensorBooster?: number; - /** - * activations_remote_sensor_damper integer - */ - activationsRemoteSensorDamper?: number; - /** - * activations_remote_shield_booster integer - */ - activationsRemoteShieldBooster?: number; - /** - * activations_remote_tracking_computer integer - */ - activationsRemoteTrackingComputer?: number; - /** - * activations_salvager integer - */ - activationsSalvager?: number; - /** - * activations_sensor_booster integer - */ - activationsSensorBooster?: number; - /** - * activations_shield_booster integer - */ - activationsShieldBooster?: number; - /** - * activations_shield_hardener integer - */ - activationsShieldHardener?: number; - /** - * activations_ship_scanner integer - */ - activationsShipScanner?: number; - /** - * activations_siege integer - */ - activationsSiege?: number; - /** - * activations_smart_bomb integer - */ - activationsSmartBomb?: number; - /** - * activations_stasis_web integer - */ - activationsStasisWeb?: number; - /** - * activations_strip_miner integer - */ - activationsStripMiner?: number; - /** - * activations_super_weapon integer - */ - activationsSuperWeapon?: number; - /** - * activations_survey_scanner integer - */ - activationsSurveyScanner?: number; - /** - * activations_target_breaker integer - */ - activationsTargetBreaker?: number; - /** - * activations_target_painter integer - */ - activationsTargetPainter?: number; - /** - * activations_tracking_computer integer - */ - activationsTrackingComputer?: number; - /** - * activations_tracking_disruptor integer - */ - activationsTrackingDisruptor?: number; - /** - * activations_tractor_beam integer - */ - activationsTractorBeam?: number; - /** - * activations_triage integer - */ - activationsTriage?: number; - /** - * activations_warp_disrupt_field_generator integer - */ - activationsWarpDisruptFieldGenerator?: number; - /** - * activations_warp_scrambler integer - */ - activationsWarpScrambler?: number; - /** - * link_weapons integer - */ - linkWeapons?: number; - /** - * overload integer - */ - overload?: number; - /** - * repairs integer - */ - repairs?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsOrbital.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsOrbital.ts deleted file mode 100755 index 9cf6421..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsOrbital.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * orbital object - */ -export interface GetCharactersCharacterIdStatsOrbital { - /** - * strike_characters_killed integer - */ - strikeCharactersKilled?: number; - /** - * strike_damage_to_players_armor_amount integer - */ - strikeDamageToPlayersArmorAmount?: number; - /** - * strike_damage_to_players_shield_amount integer - */ - strikeDamageToPlayersShieldAmount?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsPve.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsPve.ts deleted file mode 100755 index 80e87bd..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsPve.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * pve object - */ -export interface GetCharactersCharacterIdStatsPve { - /** - * dungeons_completed_agent integer - */ - dungeonsCompletedAgent?: number; - /** - * dungeons_completed_distribution integer - */ - dungeonsCompletedDistribution?: number; - /** - * missions_succeeded integer - */ - missionsSucceeded?: number; - /** - * missions_succeeded_epic_arc integer - */ - missionsSucceededEpicArc?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsSocial.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsSocial.ts deleted file mode 100755 index 9ad67e4..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsSocial.ts +++ /dev/null @@ -1,118 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * social object - */ -export interface GetCharactersCharacterIdStatsSocial { - /** - * add_contact_bad integer - */ - addContactBad?: number; - /** - * add_contact_good integer - */ - addContactGood?: number; - /** - * add_contact_high integer - */ - addContactHigh?: number; - /** - * add_contact_horrible integer - */ - addContactHorrible?: number; - /** - * add_contact_neutral integer - */ - addContactNeutral?: number; - /** - * add_note integer - */ - addNote?: number; - /** - * added_as_contact_bad integer - */ - addedAsContactBad?: number; - /** - * added_as_contact_good integer - */ - addedAsContactGood?: number; - /** - * added_as_contact_high integer - */ - addedAsContactHigh?: number; - /** - * added_as_contact_horrible integer - */ - addedAsContactHorrible?: number; - /** - * added_as_contact_neutral integer - */ - addedAsContactNeutral?: number; - /** - * calendar_event_created integer - */ - calendarEventCreated?: number; - /** - * chat_messages_alliance integer - */ - chatMessagesAlliance?: number; - /** - * chat_messages_constellation integer - */ - chatMessagesConstellation?: number; - /** - * chat_messages_corporation integer - */ - chatMessagesCorporation?: number; - /** - * chat_messages_fleet integer - */ - chatMessagesFleet?: number; - /** - * chat_messages_region integer - */ - chatMessagesRegion?: number; - /** - * chat_messages_solarsystem integer - */ - chatMessagesSolarsystem?: number; - /** - * chat_messages_warfaction integer - */ - chatMessagesWarfaction?: number; - /** - * chat_total_message_length integer - */ - chatTotalMessageLength?: number; - /** - * direct_trades integer - */ - directTrades?: number; - /** - * fleet_broadcasts integer - */ - fleetBroadcasts?: number; - /** - * fleet_joins integer - */ - fleetJoins?: number; - /** - * mails_received integer - */ - mailsReceived?: number; - /** - * mails_sent integer - */ - mailsSent?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsTravel.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsTravel.ts deleted file mode 100755 index 7ebda94..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdStatsTravel.ts +++ /dev/null @@ -1,102 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * travel object - */ -export interface GetCharactersCharacterIdStatsTravel { - /** - * acceleration_gate_activations integer - */ - accelerationGateActivations?: number; - /** - * align_to integer - */ - alignTo?: number; - /** - * distance_warped_high_sec integer - */ - distanceWarpedHighSec?: number; - /** - * distance_warped_low_sec integer - */ - distanceWarpedLowSec?: number; - /** - * distance_warped_null_sec integer - */ - distanceWarpedNullSec?: number; - /** - * distance_warped_wormhole integer - */ - distanceWarpedWormhole?: number; - /** - * docks_high_sec integer - */ - docksHighSec?: number; - /** - * docks_low_sec integer - */ - docksLowSec?: number; - /** - * docks_null_sec integer - */ - docksNullSec?: number; - /** - * jumps_stargate_high_sec integer - */ - jumpsStargateHighSec?: number; - /** - * jumps_stargate_low_sec integer - */ - jumpsStargateLowSec?: number; - /** - * jumps_stargate_null_sec integer - */ - jumpsStargateNullSec?: number; - /** - * jumps_wormhole integer - */ - jumpsWormhole?: number; - /** - * warps_high_sec integer - */ - warpsHighSec?: number; - /** - * warps_low_sec integer - */ - warpsLowSec?: number; - /** - * warps_null_sec integer - */ - warpsNullSec?: number; - /** - * warps_to_bookmark integer - */ - warpsToBookmark?: number; - /** - * warps_to_celestial integer - */ - warpsToCelestial?: number; - /** - * warps_to_fleet_member integer - */ - warpsToFleetMember?: number; - /** - * warps_to_scan_result integer - */ - warpsToScanResult?: number; - /** - * warps_wormhole integer - */ - warpsWormhole?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdTitles200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdTitles200Ok.ts deleted file mode 100755 index 6d0c2e6..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdTitles200Ok.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdTitles200Ok { - /** - * title_id integer - */ - titleId?: number; - /** - * name string - */ - name?: string; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdWalletJournal200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdWalletJournal200Ok.ts deleted file mode 100755 index ee71e76..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdWalletJournal200Ok.ts +++ /dev/null @@ -1,206 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetCharactersCharacterIdWalletJournalExtraInfo } from './getCharactersCharacterIdWalletJournalExtraInfo'; - - -/** - * 200 ok object - */ -export interface GetCharactersCharacterIdWalletJournal200Ok { - /** - * Date and time of transaction - */ - date: Date; - /** - * Unique journal reference ID - */ - refId: number; - /** - * Transaction type, different type of transaction will populate different fields in `extra_info` Note: If you have an existing XML API application that is using ref_types, you will need to know which string ESI ref_type maps to which integer. You can use the following gist to see string->int mappings: https://gist.github.com/ccp-zoetrope/c03db66d90c2148724c06171bc52e0ec - */ - refType: GetCharactersCharacterIdWalletJournal200Ok.RefTypeEnum; - /** - * first_party_id integer - */ - firstPartyId?: number; - /** - * first_party_type string - */ - firstPartyType?: GetCharactersCharacterIdWalletJournal200Ok.FirstPartyTypeEnum; - /** - * second_party_id integer - */ - secondPartyId?: number; - /** - * second_party_type string - */ - secondPartyType?: GetCharactersCharacterIdWalletJournal200Ok.SecondPartyTypeEnum; - /** - * Transaction amount. Positive when value transferred to the first party. Negative otherwise - */ - amount?: number; - /** - * Wallet balance after transaction occurred - */ - balance?: number; - /** - * reason string - */ - reason?: string; - /** - * the corporation ID receiving any tax paid - */ - taxReceiverId?: number; - /** - * Tax amount received for tax related transactions - */ - tax?: number; - extraInfo?: GetCharactersCharacterIdWalletJournalExtraInfo; -} -export namespace GetCharactersCharacterIdWalletJournal200Ok { - export type RefTypeEnum = 'acceleration_gate_fee' | 'advertisement_listing_fee' | 'agent_donation' | 'agent_location_services' | 'agent_miscellaneous' | 'agent_mission_collateral_paid' | 'agent_mission_collateral_refunded' | 'agent_mission_reward' | 'agent_mission_reward_corporation_tax' | 'agent_mission_time_bonus_reward' | 'agent_mission_time_bonus_reward_corporation_tax' | 'agent_security_services' | 'agent_services_rendered' | 'agents_preward' | 'alliance_maintainance_fee' | 'alliance_registration_fee' | 'asset_safety_recovery_tax' | 'bounty' | 'bounty_prize' | 'bounty_prize_corporation_tax' | 'bounty_prizes' | 'bounty_reimbursement' | 'bounty_surcharge' | 'brokers_fee' | 'clone_activation' | 'clone_transfer' | 'contraband_fine' | 'contract_auction_bid' | 'contract_auction_bid_corp' | 'contract_auction_bid_refund' | 'contract_auction_sold' | 'contract_brokers_fee' | 'contract_brokers_fee_corp' | 'contract_collateral' | 'contract_collateral_deposited_corp' | 'contract_collateral_payout' | 'contract_collateral_refund' | 'contract_deposit' | 'contract_deposit_corp' | 'contract_deposit_refund' | 'contract_deposit_sales_tax' | 'contract_price' | 'contract_price_payment_corp' | 'contract_reversal' | 'contract_reward' | 'contract_reward_deposited' | 'contract_reward_deposited_corp' | 'contract_reward_refund' | 'contract_sales_tax' | 'copying' | 'corporate_reward_payout' | 'corporate_reward_tax' | 'corporation_account_withdrawal' | 'corporation_bulk_payment' | 'corporation_dividend_payment' | 'corporation_liquidation' | 'corporation_logo_change_cost' | 'corporation_payment' | 'corporation_registration_fee' | 'courier_mission_escrow' | 'cspa' | 'cspaofflinerefund' | 'datacore_fee' | 'dna_modification_fee' | 'docking_fee' | 'duel_wager_escrow' | 'duel_wager_payment' | 'duel_wager_refund' | 'factory_slot_rental_fee' | 'gm_cash_transfer' | 'industry_job_tax' | 'infrastructure_hub_maintenance' | 'inheritance' | 'insurance' | 'jump_clone_activation_fee' | 'jump_clone_installation_fee' | 'kill_right_fee' | 'lp_store' | 'manufacturing' | 'market_escrow' | 'market_fine_paid' | 'market_transaction' | 'medal_creation' | 'medal_issued' | 'mission_completion' | 'mission_cost' | 'mission_expiration' | 'mission_reward' | 'office_rental_fee' | 'operation_bonus' | 'opportunity_reward' | 'planetary_construction' | 'planetary_export_tax' | 'planetary_import_tax' | 'player_donation' | 'player_trading' | 'project_discovery_reward' | 'project_discovery_tax' | 'reaction' | 'release_of_impounded_property' | 'repair_bill' | 'reprocessing_tax' | 'researching_material_productivity' | 'researching_technology' | 'researching_time_productivity' | 'resource_wars_reward' | 'reverse_engineering' | 'security_processing_fee' | 'shares' | 'sovereignity_bill' | 'store_purchase' | 'store_purchase_refund' | 'transaction_tax' | 'upkeep_adjustment_fee' | 'war_ally_contract' | 'war_fee' | 'war_fee_surrender'; - export const RefTypeEnum = { - AccelerationGateFee: 'acceleration_gate_fee' as RefTypeEnum, - AdvertisementListingFee: 'advertisement_listing_fee' as RefTypeEnum, - AgentDonation: 'agent_donation' as RefTypeEnum, - AgentLocationServices: 'agent_location_services' as RefTypeEnum, - AgentMiscellaneous: 'agent_miscellaneous' as RefTypeEnum, - AgentMissionCollateralPaid: 'agent_mission_collateral_paid' as RefTypeEnum, - AgentMissionCollateralRefunded: 'agent_mission_collateral_refunded' as RefTypeEnum, - AgentMissionReward: 'agent_mission_reward' as RefTypeEnum, - AgentMissionRewardCorporationTax: 'agent_mission_reward_corporation_tax' as RefTypeEnum, - AgentMissionTimeBonusReward: 'agent_mission_time_bonus_reward' as RefTypeEnum, - AgentMissionTimeBonusRewardCorporationTax: 'agent_mission_time_bonus_reward_corporation_tax' as RefTypeEnum, - AgentSecurityServices: 'agent_security_services' as RefTypeEnum, - AgentServicesRendered: 'agent_services_rendered' as RefTypeEnum, - AgentsPreward: 'agents_preward' as RefTypeEnum, - AllianceMaintainanceFee: 'alliance_maintainance_fee' as RefTypeEnum, - AllianceRegistrationFee: 'alliance_registration_fee' as RefTypeEnum, - AssetSafetyRecoveryTax: 'asset_safety_recovery_tax' as RefTypeEnum, - Bounty: 'bounty' as RefTypeEnum, - BountyPrize: 'bounty_prize' as RefTypeEnum, - BountyPrizeCorporationTax: 'bounty_prize_corporation_tax' as RefTypeEnum, - BountyPrizes: 'bounty_prizes' as RefTypeEnum, - BountyReimbursement: 'bounty_reimbursement' as RefTypeEnum, - BountySurcharge: 'bounty_surcharge' as RefTypeEnum, - BrokersFee: 'brokers_fee' as RefTypeEnum, - CloneActivation: 'clone_activation' as RefTypeEnum, - CloneTransfer: 'clone_transfer' as RefTypeEnum, - ContrabandFine: 'contraband_fine' as RefTypeEnum, - ContractAuctionBid: 'contract_auction_bid' as RefTypeEnum, - ContractAuctionBidCorp: 'contract_auction_bid_corp' as RefTypeEnum, - ContractAuctionBidRefund: 'contract_auction_bid_refund' as RefTypeEnum, - ContractAuctionSold: 'contract_auction_sold' as RefTypeEnum, - ContractBrokersFee: 'contract_brokers_fee' as RefTypeEnum, - ContractBrokersFeeCorp: 'contract_brokers_fee_corp' as RefTypeEnum, - ContractCollateral: 'contract_collateral' as RefTypeEnum, - ContractCollateralDepositedCorp: 'contract_collateral_deposited_corp' as RefTypeEnum, - ContractCollateralPayout: 'contract_collateral_payout' as RefTypeEnum, - ContractCollateralRefund: 'contract_collateral_refund' as RefTypeEnum, - ContractDeposit: 'contract_deposit' as RefTypeEnum, - ContractDepositCorp: 'contract_deposit_corp' as RefTypeEnum, - ContractDepositRefund: 'contract_deposit_refund' as RefTypeEnum, - ContractDepositSalesTax: 'contract_deposit_sales_tax' as RefTypeEnum, - ContractPrice: 'contract_price' as RefTypeEnum, - ContractPricePaymentCorp: 'contract_price_payment_corp' as RefTypeEnum, - ContractReversal: 'contract_reversal' as RefTypeEnum, - ContractReward: 'contract_reward' as RefTypeEnum, - ContractRewardDeposited: 'contract_reward_deposited' as RefTypeEnum, - ContractRewardDepositedCorp: 'contract_reward_deposited_corp' as RefTypeEnum, - ContractRewardRefund: 'contract_reward_refund' as RefTypeEnum, - ContractSalesTax: 'contract_sales_tax' as RefTypeEnum, - Copying: 'copying' as RefTypeEnum, - CorporateRewardPayout: 'corporate_reward_payout' as RefTypeEnum, - CorporateRewardTax: 'corporate_reward_tax' as RefTypeEnum, - CorporationAccountWithdrawal: 'corporation_account_withdrawal' as RefTypeEnum, - CorporationBulkPayment: 'corporation_bulk_payment' as RefTypeEnum, - CorporationDividendPayment: 'corporation_dividend_payment' as RefTypeEnum, - CorporationLiquidation: 'corporation_liquidation' as RefTypeEnum, - CorporationLogoChangeCost: 'corporation_logo_change_cost' as RefTypeEnum, - CorporationPayment: 'corporation_payment' as RefTypeEnum, - CorporationRegistrationFee: 'corporation_registration_fee' as RefTypeEnum, - CourierMissionEscrow: 'courier_mission_escrow' as RefTypeEnum, - Cspa: 'cspa' as RefTypeEnum, - Cspaofflinerefund: 'cspaofflinerefund' as RefTypeEnum, - DatacoreFee: 'datacore_fee' as RefTypeEnum, - DnaModificationFee: 'dna_modification_fee' as RefTypeEnum, - DockingFee: 'docking_fee' as RefTypeEnum, - DuelWagerEscrow: 'duel_wager_escrow' as RefTypeEnum, - DuelWagerPayment: 'duel_wager_payment' as RefTypeEnum, - DuelWagerRefund: 'duel_wager_refund' as RefTypeEnum, - FactorySlotRentalFee: 'factory_slot_rental_fee' as RefTypeEnum, - GmCashTransfer: 'gm_cash_transfer' as RefTypeEnum, - IndustryJobTax: 'industry_job_tax' as RefTypeEnum, - InfrastructureHubMaintenance: 'infrastructure_hub_maintenance' as RefTypeEnum, - Inheritance: 'inheritance' as RefTypeEnum, - Insurance: 'insurance' as RefTypeEnum, - JumpCloneActivationFee: 'jump_clone_activation_fee' as RefTypeEnum, - JumpCloneInstallationFee: 'jump_clone_installation_fee' as RefTypeEnum, - KillRightFee: 'kill_right_fee' as RefTypeEnum, - LpStore: 'lp_store' as RefTypeEnum, - Manufacturing: 'manufacturing' as RefTypeEnum, - MarketEscrow: 'market_escrow' as RefTypeEnum, - MarketFinePaid: 'market_fine_paid' as RefTypeEnum, - MarketTransaction: 'market_transaction' as RefTypeEnum, - MedalCreation: 'medal_creation' as RefTypeEnum, - MedalIssued: 'medal_issued' as RefTypeEnum, - MissionCompletion: 'mission_completion' as RefTypeEnum, - MissionCost: 'mission_cost' as RefTypeEnum, - MissionExpiration: 'mission_expiration' as RefTypeEnum, - MissionReward: 'mission_reward' as RefTypeEnum, - OfficeRentalFee: 'office_rental_fee' as RefTypeEnum, - OperationBonus: 'operation_bonus' as RefTypeEnum, - OpportunityReward: 'opportunity_reward' as RefTypeEnum, - PlanetaryConstruction: 'planetary_construction' as RefTypeEnum, - PlanetaryExportTax: 'planetary_export_tax' as RefTypeEnum, - PlanetaryImportTax: 'planetary_import_tax' as RefTypeEnum, - PlayerDonation: 'player_donation' as RefTypeEnum, - PlayerTrading: 'player_trading' as RefTypeEnum, - ProjectDiscoveryReward: 'project_discovery_reward' as RefTypeEnum, - ProjectDiscoveryTax: 'project_discovery_tax' as RefTypeEnum, - Reaction: 'reaction' as RefTypeEnum, - ReleaseOfImpoundedProperty: 'release_of_impounded_property' as RefTypeEnum, - RepairBill: 'repair_bill' as RefTypeEnum, - ReprocessingTax: 'reprocessing_tax' as RefTypeEnum, - ResearchingMaterialProductivity: 'researching_material_productivity' as RefTypeEnum, - ResearchingTechnology: 'researching_technology' as RefTypeEnum, - ResearchingTimeProductivity: 'researching_time_productivity' as RefTypeEnum, - ResourceWarsReward: 'resource_wars_reward' as RefTypeEnum, - ReverseEngineering: 'reverse_engineering' as RefTypeEnum, - SecurityProcessingFee: 'security_processing_fee' as RefTypeEnum, - Shares: 'shares' as RefTypeEnum, - SovereignityBill: 'sovereignity_bill' as RefTypeEnum, - StorePurchase: 'store_purchase' as RefTypeEnum, - StorePurchaseRefund: 'store_purchase_refund' as RefTypeEnum, - TransactionTax: 'transaction_tax' as RefTypeEnum, - UpkeepAdjustmentFee: 'upkeep_adjustment_fee' as RefTypeEnum, - WarAllyContract: 'war_ally_contract' as RefTypeEnum, - WarFee: 'war_fee' as RefTypeEnum, - WarFeeSurrender: 'war_fee_surrender' as RefTypeEnum - } - export type FirstPartyTypeEnum = 'character' | 'corporation' | 'alliance' | 'faction' | 'system'; - export const FirstPartyTypeEnum = { - Character: 'character' as FirstPartyTypeEnum, - Corporation: 'corporation' as FirstPartyTypeEnum, - Alliance: 'alliance' as FirstPartyTypeEnum, - Faction: 'faction' as FirstPartyTypeEnum, - System: 'system' as FirstPartyTypeEnum - } - export type SecondPartyTypeEnum = 'character' | 'corporation' | 'alliance' | 'faction' | 'system'; - export const SecondPartyTypeEnum = { - Character: 'character' as SecondPartyTypeEnum, - Corporation: 'corporation' as SecondPartyTypeEnum, - Alliance: 'alliance' as SecondPartyTypeEnum, - Faction: 'faction' as SecondPartyTypeEnum, - System: 'system' as SecondPartyTypeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdWalletJournalExtraInfo.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdWalletJournalExtraInfo.ts deleted file mode 100755 index 10cb81c..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdWalletJournalExtraInfo.ts +++ /dev/null @@ -1,66 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Extra information for different type of transaction - */ -export interface GetCharactersCharacterIdWalletJournalExtraInfo { - /** - * location_id integer - */ - locationId?: number; - /** - * transaction_id integer - */ - transactionId?: number; - /** - * npc_name string - */ - npcName?: string; - /** - * npc_id integer - */ - npcId?: number; - /** - * destroyed_ship_type_id integer - */ - destroyedShipTypeId?: number; - /** - * character_id integer - */ - characterId?: number; - /** - * corporation_id integer - */ - corporationId?: number; - /** - * alliance_id integer - */ - allianceId?: number; - /** - * job_id integer - */ - jobId?: number; - /** - * contract_id integer - */ - contractId?: number; - /** - * system_id integer - */ - systemId?: number; - /** - * planet_id integer - */ - planetId?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersCharacterIdWalletTransactions200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersCharacterIdWalletTransactions200Ok.ts deleted file mode 100755 index c09ce03..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersCharacterIdWalletTransactions200Ok.ts +++ /dev/null @@ -1,58 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * wallet transaction - */ -export interface GetCharactersCharacterIdWalletTransactions200Ok { - /** - * Unique transaction ID - */ - transactionId: number; - /** - * Date and time of transaction - */ - date: Date; - /** - * type_id integer - */ - typeId: number; - /** - * location_id integer - */ - locationId: number; - /** - * Amount paid per unit - */ - unitPrice: number; - /** - * quantity integer - */ - quantity: number; - /** - * client_id integer - */ - clientId: number; - /** - * is_buy boolean - */ - isBuy: boolean; - /** - * is_personal boolean - */ - isPersonal: boolean; - /** - * journal_ref_id integer - */ - journalRefId: number; -} diff --git a/src/app/eve-online-angular-client/model/getCharactersNames200Ok.ts b/src/app/eve-online-angular-client/model/getCharactersNames200Ok.ts deleted file mode 100755 index 03ca298..0000000 --- a/src/app/eve-online-angular-client/model/getCharactersNames200Ok.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCharactersNames200Ok { - /** - * character_id integer - */ - characterId: number; - /** - * character_name string - */ - characterName: string; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationCorporationIdMiningExtractions200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationCorporationIdMiningExtractions200Ok.ts deleted file mode 100755 index 84a788c..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationCorporationIdMiningExtractions200Ok.ts +++ /dev/null @@ -1,38 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationCorporationIdMiningExtractions200Ok { - /** - * structure_id integer - */ - structureId: number; - /** - * moon_id integer - */ - moonId: number; - /** - * The time at which the current extraction was initiated. - */ - extractionStartTime: Date; - /** - * The time at which the chunk being extracted will arrive and can be fractured by the moon mining drill. - */ - chunkArrivalTime: Date; - /** - * The time at which the chunk being extracted will naturally fracture if it is not first fractured by the moon mining drill. - */ - naturalDecayTime: Date; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationCorporationIdMiningObservers200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationCorporationIdMiningObservers200Ok.ts deleted file mode 100755 index d80fbd9..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationCorporationIdMiningObservers200Ok.ts +++ /dev/null @@ -1,36 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationCorporationIdMiningObservers200Ok { - /** - * last_updated string - */ - lastUpdated: string; - /** - * The entity that was observing the asteroid field when it was mined. - */ - observerId: number; - /** - * The category of the observing entity - */ - observerType: GetCorporationCorporationIdMiningObservers200Ok.ObserverTypeEnum; -} -export namespace GetCorporationCorporationIdMiningObservers200Ok { - export type ObserverTypeEnum = 'structure'; - export const ObserverTypeEnum = { - Structure: 'structure' as ObserverTypeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCorporationCorporationIdMiningObserversObserverId200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationCorporationIdMiningObserversObserverId200Ok.ts deleted file mode 100755 index 2a498cb..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationCorporationIdMiningObserversObserverId200Ok.ts +++ /dev/null @@ -1,38 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationCorporationIdMiningObserversObserverId200Ok { - /** - * last_updated string - */ - lastUpdated: string; - /** - * The character that did the mining - */ - characterId: number; - /** - * The corporation id of the character at the time data was recorded. - */ - recordedCorporationId: number; - /** - * type_id integer - */ - typeId: number; - /** - * quantity integer - */ - quantity: number; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdAlliancehistory200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdAlliancehistory200Ok.ts deleted file mode 100755 index 8f26ff6..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdAlliancehistory200Ok.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdAlliancehistory200Ok { - /** - * start_date string - */ - startDate: Date; - /** - * alliance_id integer - */ - allianceId?: number; - /** - * True if the alliance has been closed - */ - isDeleted?: boolean; - /** - * An incrementing ID that can be used to canonically establish order of records in cases where dates may be ambiguous - */ - recordId: number; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdAssets200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdAssets200Ok.ts deleted file mode 100755 index 38d0957..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdAssets200Ok.ts +++ /dev/null @@ -1,172 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdAssets200Ok { - /** - * type_id integer - */ - typeId: number; - /** - * quantity integer - */ - quantity: number; - /** - * location_id integer - */ - locationId: number; - /** - * location_type string - */ - locationType: GetCorporationsCorporationIdAssets200Ok.LocationTypeEnum; - /** - * item_id integer - */ - itemId: number; - /** - * is_singleton boolean - */ - isSingleton: boolean; - /** - * location_flag string - */ - locationFlag: GetCorporationsCorporationIdAssets200Ok.LocationFlagEnum; -} -export namespace GetCorporationsCorporationIdAssets200Ok { - export type LocationTypeEnum = 'station' | 'solar_system' | 'other'; - export const LocationTypeEnum = { - Station: 'station' as LocationTypeEnum, - SolarSystem: 'solar_system' as LocationTypeEnum, - Other: 'other' as LocationTypeEnum - } - export type LocationFlagEnum = 'AssetSafety' | 'AutoFit' | 'Bonus' | 'Booster' | 'BoosterBay' | 'Capsule' | 'Cargo' | 'CorpDeliveries' | 'CorpSAG1' | 'CorpSAG2' | 'CorpSAG3' | 'CorpSAG4' | 'CorpSAG5' | 'CorpSAG6' | 'CorpSAG7' | 'CrateLoot' | 'Deliveries' | 'DroneBay' | 'DustBattle' | 'DustDatabank' | 'FighterBay' | 'FighterTube0' | 'FighterTube1' | 'FighterTube2' | 'FighterTube3' | 'FighterTube4' | 'FleetHangar' | 'Hangar' | 'HangarAll' | 'HiSlot0' | 'HiSlot1' | 'HiSlot2' | 'HiSlot3' | 'HiSlot4' | 'HiSlot5' | 'HiSlot6' | 'HiSlot7' | 'HiddenModifiers' | 'Implant' | 'Impounded' | 'JunkyardReprocessed' | 'JunkyardTrashed' | 'LoSlot0' | 'LoSlot1' | 'LoSlot2' | 'LoSlot3' | 'LoSlot4' | 'LoSlot5' | 'LoSlot6' | 'LoSlot7' | 'Locked' | 'MedSlot0' | 'MedSlot1' | 'MedSlot2' | 'MedSlot3' | 'MedSlot4' | 'MedSlot5' | 'MedSlot6' | 'MedSlot7' | 'OfficeFolder' | 'Pilot' | 'PlanetSurface' | 'QuafeBay' | 'Reward' | 'RigSlot0' | 'RigSlot1' | 'RigSlot2' | 'RigSlot3' | 'RigSlot4' | 'RigSlot5' | 'RigSlot6' | 'RigSlot7' | 'SecondaryStorage' | 'ServiceSlot0' | 'ServiceSlot1' | 'ServiceSlot2' | 'ServiceSlot3' | 'ServiceSlot4' | 'ServiceSlot5' | 'ServiceSlot6' | 'ServiceSlot7' | 'ShipHangar' | 'ShipOffline' | 'Skill' | 'SkillInTraining' | 'SpecializedAmmoHold' | 'SpecializedCommandCenterHold' | 'SpecializedFuelBay' | 'SpecializedGasHold' | 'SpecializedIndustrialShipHold' | 'SpecializedLargeShipHold' | 'SpecializedMaterialBay' | 'SpecializedMediumShipHold' | 'SpecializedMineralHold' | 'SpecializedOreHold' | 'SpecializedPlanetaryCommoditiesHold' | 'SpecializedSalvageHold' | 'SpecializedShipHold' | 'SpecializedSmallShipHold' | 'StructureActive' | 'StructureFuel' | 'StructureInactive' | 'StructureOffline' | 'SubSystemBay' | 'SubSystemSlot0' | 'SubSystemSlot1' | 'SubSystemSlot2' | 'SubSystemSlot3' | 'SubSystemSlot4' | 'SubSystemSlot5' | 'SubSystemSlot6' | 'SubSystemSlot7' | 'Unlocked' | 'Wallet' | 'Wardrobe'; - export const LocationFlagEnum = { - AssetSafety: 'AssetSafety' as LocationFlagEnum, - AutoFit: 'AutoFit' as LocationFlagEnum, - Bonus: 'Bonus' as LocationFlagEnum, - Booster: 'Booster' as LocationFlagEnum, - BoosterBay: 'BoosterBay' as LocationFlagEnum, - Capsule: 'Capsule' as LocationFlagEnum, - Cargo: 'Cargo' as LocationFlagEnum, - CorpDeliveries: 'CorpDeliveries' as LocationFlagEnum, - CorpSAG1: 'CorpSAG1' as LocationFlagEnum, - CorpSAG2: 'CorpSAG2' as LocationFlagEnum, - CorpSAG3: 'CorpSAG3' as LocationFlagEnum, - CorpSAG4: 'CorpSAG4' as LocationFlagEnum, - CorpSAG5: 'CorpSAG5' as LocationFlagEnum, - CorpSAG6: 'CorpSAG6' as LocationFlagEnum, - CorpSAG7: 'CorpSAG7' as LocationFlagEnum, - CrateLoot: 'CrateLoot' as LocationFlagEnum, - Deliveries: 'Deliveries' as LocationFlagEnum, - DroneBay: 'DroneBay' as LocationFlagEnum, - DustBattle: 'DustBattle' as LocationFlagEnum, - DustDatabank: 'DustDatabank' as LocationFlagEnum, - FighterBay: 'FighterBay' as LocationFlagEnum, - FighterTube0: 'FighterTube0' as LocationFlagEnum, - FighterTube1: 'FighterTube1' as LocationFlagEnum, - FighterTube2: 'FighterTube2' as LocationFlagEnum, - FighterTube3: 'FighterTube3' as LocationFlagEnum, - FighterTube4: 'FighterTube4' as LocationFlagEnum, - FleetHangar: 'FleetHangar' as LocationFlagEnum, - Hangar: 'Hangar' as LocationFlagEnum, - HangarAll: 'HangarAll' as LocationFlagEnum, - HiSlot0: 'HiSlot0' as LocationFlagEnum, - HiSlot1: 'HiSlot1' as LocationFlagEnum, - HiSlot2: 'HiSlot2' as LocationFlagEnum, - HiSlot3: 'HiSlot3' as LocationFlagEnum, - HiSlot4: 'HiSlot4' as LocationFlagEnum, - HiSlot5: 'HiSlot5' as LocationFlagEnum, - HiSlot6: 'HiSlot6' as LocationFlagEnum, - HiSlot7: 'HiSlot7' as LocationFlagEnum, - HiddenModifiers: 'HiddenModifiers' as LocationFlagEnum, - Implant: 'Implant' as LocationFlagEnum, - Impounded: 'Impounded' as LocationFlagEnum, - JunkyardReprocessed: 'JunkyardReprocessed' as LocationFlagEnum, - JunkyardTrashed: 'JunkyardTrashed' as LocationFlagEnum, - LoSlot0: 'LoSlot0' as LocationFlagEnum, - LoSlot1: 'LoSlot1' as LocationFlagEnum, - LoSlot2: 'LoSlot2' as LocationFlagEnum, - LoSlot3: 'LoSlot3' as LocationFlagEnum, - LoSlot4: 'LoSlot4' as LocationFlagEnum, - LoSlot5: 'LoSlot5' as LocationFlagEnum, - LoSlot6: 'LoSlot6' as LocationFlagEnum, - LoSlot7: 'LoSlot7' as LocationFlagEnum, - Locked: 'Locked' as LocationFlagEnum, - MedSlot0: 'MedSlot0' as LocationFlagEnum, - MedSlot1: 'MedSlot1' as LocationFlagEnum, - MedSlot2: 'MedSlot2' as LocationFlagEnum, - MedSlot3: 'MedSlot3' as LocationFlagEnum, - MedSlot4: 'MedSlot4' as LocationFlagEnum, - MedSlot5: 'MedSlot5' as LocationFlagEnum, - MedSlot6: 'MedSlot6' as LocationFlagEnum, - MedSlot7: 'MedSlot7' as LocationFlagEnum, - OfficeFolder: 'OfficeFolder' as LocationFlagEnum, - Pilot: 'Pilot' as LocationFlagEnum, - PlanetSurface: 'PlanetSurface' as LocationFlagEnum, - QuafeBay: 'QuafeBay' as LocationFlagEnum, - Reward: 'Reward' as LocationFlagEnum, - RigSlot0: 'RigSlot0' as LocationFlagEnum, - RigSlot1: 'RigSlot1' as LocationFlagEnum, - RigSlot2: 'RigSlot2' as LocationFlagEnum, - RigSlot3: 'RigSlot3' as LocationFlagEnum, - RigSlot4: 'RigSlot4' as LocationFlagEnum, - RigSlot5: 'RigSlot5' as LocationFlagEnum, - RigSlot6: 'RigSlot6' as LocationFlagEnum, - RigSlot7: 'RigSlot7' as LocationFlagEnum, - SecondaryStorage: 'SecondaryStorage' as LocationFlagEnum, - ServiceSlot0: 'ServiceSlot0' as LocationFlagEnum, - ServiceSlot1: 'ServiceSlot1' as LocationFlagEnum, - ServiceSlot2: 'ServiceSlot2' as LocationFlagEnum, - ServiceSlot3: 'ServiceSlot3' as LocationFlagEnum, - ServiceSlot4: 'ServiceSlot4' as LocationFlagEnum, - ServiceSlot5: 'ServiceSlot5' as LocationFlagEnum, - ServiceSlot6: 'ServiceSlot6' as LocationFlagEnum, - ServiceSlot7: 'ServiceSlot7' as LocationFlagEnum, - ShipHangar: 'ShipHangar' as LocationFlagEnum, - ShipOffline: 'ShipOffline' as LocationFlagEnum, - Skill: 'Skill' as LocationFlagEnum, - SkillInTraining: 'SkillInTraining' as LocationFlagEnum, - SpecializedAmmoHold: 'SpecializedAmmoHold' as LocationFlagEnum, - SpecializedCommandCenterHold: 'SpecializedCommandCenterHold' as LocationFlagEnum, - SpecializedFuelBay: 'SpecializedFuelBay' as LocationFlagEnum, - SpecializedGasHold: 'SpecializedGasHold' as LocationFlagEnum, - SpecializedIndustrialShipHold: 'SpecializedIndustrialShipHold' as LocationFlagEnum, - SpecializedLargeShipHold: 'SpecializedLargeShipHold' as LocationFlagEnum, - SpecializedMaterialBay: 'SpecializedMaterialBay' as LocationFlagEnum, - SpecializedMediumShipHold: 'SpecializedMediumShipHold' as LocationFlagEnum, - SpecializedMineralHold: 'SpecializedMineralHold' as LocationFlagEnum, - SpecializedOreHold: 'SpecializedOreHold' as LocationFlagEnum, - SpecializedPlanetaryCommoditiesHold: 'SpecializedPlanetaryCommoditiesHold' as LocationFlagEnum, - SpecializedSalvageHold: 'SpecializedSalvageHold' as LocationFlagEnum, - SpecializedShipHold: 'SpecializedShipHold' as LocationFlagEnum, - SpecializedSmallShipHold: 'SpecializedSmallShipHold' as LocationFlagEnum, - StructureActive: 'StructureActive' as LocationFlagEnum, - StructureFuel: 'StructureFuel' as LocationFlagEnum, - StructureInactive: 'StructureInactive' as LocationFlagEnum, - StructureOffline: 'StructureOffline' as LocationFlagEnum, - SubSystemBay: 'SubSystemBay' as LocationFlagEnum, - SubSystemSlot0: 'SubSystemSlot0' as LocationFlagEnum, - SubSystemSlot1: 'SubSystemSlot1' as LocationFlagEnum, - SubSystemSlot2: 'SubSystemSlot2' as LocationFlagEnum, - SubSystemSlot3: 'SubSystemSlot3' as LocationFlagEnum, - SubSystemSlot4: 'SubSystemSlot4' as LocationFlagEnum, - SubSystemSlot5: 'SubSystemSlot5' as LocationFlagEnum, - SubSystemSlot6: 'SubSystemSlot6' as LocationFlagEnum, - SubSystemSlot7: 'SubSystemSlot7' as LocationFlagEnum, - Unlocked: 'Unlocked' as LocationFlagEnum, - Wallet: 'Wallet' as LocationFlagEnum, - Wardrobe: 'Wardrobe' as LocationFlagEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdBlueprints200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdBlueprints200Ok.ts deleted file mode 100755 index 38e34d8..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdBlueprints200Ok.ts +++ /dev/null @@ -1,170 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdBlueprints200Ok { - /** - * Unique ID for this item. - */ - itemId: number; - /** - * type_id integer - */ - typeId: number; - /** - * References a solar system, station or item_id if this blueprint is located within a container. - */ - locationId: number; - /** - * A range of numbers with a minimum of -2 and no maximum value where -1 is an original and -2 is a copy. It can be a positive integer if it is a stack of blueprint originals fresh from the market (e.g. no activities performed on them yet). - */ - quantity: number; - /** - * Time Efficiency Level of the blueprint. - */ - timeEfficiency: number; - /** - * Material Efficiency Level of the blueprint. - */ - materialEfficiency: number; - /** - * Number of runs remaining if the blueprint is a copy, -1 if it is an original. - */ - runs: number; - /** - * Type of the location_id - */ - locationFlag: GetCorporationsCorporationIdBlueprints200Ok.LocationFlagEnum; -} -export namespace GetCorporationsCorporationIdBlueprints200Ok { - export type LocationFlagEnum = 'AssetSafety' | 'AutoFit' | 'Bonus' | 'Booster' | 'BoosterBay' | 'Capsule' | 'Cargo' | 'CorpDeliveries' | 'CorpSAG1' | 'CorpSAG2' | 'CorpSAG3' | 'CorpSAG4' | 'CorpSAG5' | 'CorpSAG6' | 'CorpSAG7' | 'CrateLoot' | 'Deliveries' | 'DroneBay' | 'DustBattle' | 'DustDatabank' | 'FighterBay' | 'FighterTube0' | 'FighterTube1' | 'FighterTube2' | 'FighterTube3' | 'FighterTube4' | 'FleetHangar' | 'Hangar' | 'HangarAll' | 'HiSlot0' | 'HiSlot1' | 'HiSlot2' | 'HiSlot3' | 'HiSlot4' | 'HiSlot5' | 'HiSlot6' | 'HiSlot7' | 'HiddenModifiers' | 'Implant' | 'Impounded' | 'JunkyardReprocessed' | 'JunkyardTrashed' | 'LoSlot0' | 'LoSlot1' | 'LoSlot2' | 'LoSlot3' | 'LoSlot4' | 'LoSlot5' | 'LoSlot6' | 'LoSlot7' | 'Locked' | 'MedSlot0' | 'MedSlot1' | 'MedSlot2' | 'MedSlot3' | 'MedSlot4' | 'MedSlot5' | 'MedSlot6' | 'MedSlot7' | 'OfficeFolder' | 'Pilot' | 'PlanetSurface' | 'QuafeBay' | 'Reward' | 'RigSlot0' | 'RigSlot1' | 'RigSlot2' | 'RigSlot3' | 'RigSlot4' | 'RigSlot5' | 'RigSlot6' | 'RigSlot7' | 'SecondaryStorage' | 'ServiceSlot0' | 'ServiceSlot1' | 'ServiceSlot2' | 'ServiceSlot3' | 'ServiceSlot4' | 'ServiceSlot5' | 'ServiceSlot6' | 'ServiceSlot7' | 'ShipHangar' | 'ShipOffline' | 'Skill' | 'SkillInTraining' | 'SpecializedAmmoHold' | 'SpecializedCommandCenterHold' | 'SpecializedFuelBay' | 'SpecializedGasHold' | 'SpecializedIndustrialShipHold' | 'SpecializedLargeShipHold' | 'SpecializedMaterialBay' | 'SpecializedMediumShipHold' | 'SpecializedMineralHold' | 'SpecializedOreHold' | 'SpecializedPlanetaryCommoditiesHold' | 'SpecializedSalvageHold' | 'SpecializedShipHold' | 'SpecializedSmallShipHold' | 'StructureActive' | 'StructureFuel' | 'StructureInactive' | 'StructureOffline' | 'SubSystemBay' | 'SubSystemSlot0' | 'SubSystemSlot1' | 'SubSystemSlot2' | 'SubSystemSlot3' | 'SubSystemSlot4' | 'SubSystemSlot5' | 'SubSystemSlot6' | 'SubSystemSlot7' | 'Unlocked' | 'Wallet' | 'Wardrobe'; - export const LocationFlagEnum = { - AssetSafety: 'AssetSafety' as LocationFlagEnum, - AutoFit: 'AutoFit' as LocationFlagEnum, - Bonus: 'Bonus' as LocationFlagEnum, - Booster: 'Booster' as LocationFlagEnum, - BoosterBay: 'BoosterBay' as LocationFlagEnum, - Capsule: 'Capsule' as LocationFlagEnum, - Cargo: 'Cargo' as LocationFlagEnum, - CorpDeliveries: 'CorpDeliveries' as LocationFlagEnum, - CorpSAG1: 'CorpSAG1' as LocationFlagEnum, - CorpSAG2: 'CorpSAG2' as LocationFlagEnum, - CorpSAG3: 'CorpSAG3' as LocationFlagEnum, - CorpSAG4: 'CorpSAG4' as LocationFlagEnum, - CorpSAG5: 'CorpSAG5' as LocationFlagEnum, - CorpSAG6: 'CorpSAG6' as LocationFlagEnum, - CorpSAG7: 'CorpSAG7' as LocationFlagEnum, - CrateLoot: 'CrateLoot' as LocationFlagEnum, - Deliveries: 'Deliveries' as LocationFlagEnum, - DroneBay: 'DroneBay' as LocationFlagEnum, - DustBattle: 'DustBattle' as LocationFlagEnum, - DustDatabank: 'DustDatabank' as LocationFlagEnum, - FighterBay: 'FighterBay' as LocationFlagEnum, - FighterTube0: 'FighterTube0' as LocationFlagEnum, - FighterTube1: 'FighterTube1' as LocationFlagEnum, - FighterTube2: 'FighterTube2' as LocationFlagEnum, - FighterTube3: 'FighterTube3' as LocationFlagEnum, - FighterTube4: 'FighterTube4' as LocationFlagEnum, - FleetHangar: 'FleetHangar' as LocationFlagEnum, - Hangar: 'Hangar' as LocationFlagEnum, - HangarAll: 'HangarAll' as LocationFlagEnum, - HiSlot0: 'HiSlot0' as LocationFlagEnum, - HiSlot1: 'HiSlot1' as LocationFlagEnum, - HiSlot2: 'HiSlot2' as LocationFlagEnum, - HiSlot3: 'HiSlot3' as LocationFlagEnum, - HiSlot4: 'HiSlot4' as LocationFlagEnum, - HiSlot5: 'HiSlot5' as LocationFlagEnum, - HiSlot6: 'HiSlot6' as LocationFlagEnum, - HiSlot7: 'HiSlot7' as LocationFlagEnum, - HiddenModifiers: 'HiddenModifiers' as LocationFlagEnum, - Implant: 'Implant' as LocationFlagEnum, - Impounded: 'Impounded' as LocationFlagEnum, - JunkyardReprocessed: 'JunkyardReprocessed' as LocationFlagEnum, - JunkyardTrashed: 'JunkyardTrashed' as LocationFlagEnum, - LoSlot0: 'LoSlot0' as LocationFlagEnum, - LoSlot1: 'LoSlot1' as LocationFlagEnum, - LoSlot2: 'LoSlot2' as LocationFlagEnum, - LoSlot3: 'LoSlot3' as LocationFlagEnum, - LoSlot4: 'LoSlot4' as LocationFlagEnum, - LoSlot5: 'LoSlot5' as LocationFlagEnum, - LoSlot6: 'LoSlot6' as LocationFlagEnum, - LoSlot7: 'LoSlot7' as LocationFlagEnum, - Locked: 'Locked' as LocationFlagEnum, - MedSlot0: 'MedSlot0' as LocationFlagEnum, - MedSlot1: 'MedSlot1' as LocationFlagEnum, - MedSlot2: 'MedSlot2' as LocationFlagEnum, - MedSlot3: 'MedSlot3' as LocationFlagEnum, - MedSlot4: 'MedSlot4' as LocationFlagEnum, - MedSlot5: 'MedSlot5' as LocationFlagEnum, - MedSlot6: 'MedSlot6' as LocationFlagEnum, - MedSlot7: 'MedSlot7' as LocationFlagEnum, - OfficeFolder: 'OfficeFolder' as LocationFlagEnum, - Pilot: 'Pilot' as LocationFlagEnum, - PlanetSurface: 'PlanetSurface' as LocationFlagEnum, - QuafeBay: 'QuafeBay' as LocationFlagEnum, - Reward: 'Reward' as LocationFlagEnum, - RigSlot0: 'RigSlot0' as LocationFlagEnum, - RigSlot1: 'RigSlot1' as LocationFlagEnum, - RigSlot2: 'RigSlot2' as LocationFlagEnum, - RigSlot3: 'RigSlot3' as LocationFlagEnum, - RigSlot4: 'RigSlot4' as LocationFlagEnum, - RigSlot5: 'RigSlot5' as LocationFlagEnum, - RigSlot6: 'RigSlot6' as LocationFlagEnum, - RigSlot7: 'RigSlot7' as LocationFlagEnum, - SecondaryStorage: 'SecondaryStorage' as LocationFlagEnum, - ServiceSlot0: 'ServiceSlot0' as LocationFlagEnum, - ServiceSlot1: 'ServiceSlot1' as LocationFlagEnum, - ServiceSlot2: 'ServiceSlot2' as LocationFlagEnum, - ServiceSlot3: 'ServiceSlot3' as LocationFlagEnum, - ServiceSlot4: 'ServiceSlot4' as LocationFlagEnum, - ServiceSlot5: 'ServiceSlot5' as LocationFlagEnum, - ServiceSlot6: 'ServiceSlot6' as LocationFlagEnum, - ServiceSlot7: 'ServiceSlot7' as LocationFlagEnum, - ShipHangar: 'ShipHangar' as LocationFlagEnum, - ShipOffline: 'ShipOffline' as LocationFlagEnum, - Skill: 'Skill' as LocationFlagEnum, - SkillInTraining: 'SkillInTraining' as LocationFlagEnum, - SpecializedAmmoHold: 'SpecializedAmmoHold' as LocationFlagEnum, - SpecializedCommandCenterHold: 'SpecializedCommandCenterHold' as LocationFlagEnum, - SpecializedFuelBay: 'SpecializedFuelBay' as LocationFlagEnum, - SpecializedGasHold: 'SpecializedGasHold' as LocationFlagEnum, - SpecializedIndustrialShipHold: 'SpecializedIndustrialShipHold' as LocationFlagEnum, - SpecializedLargeShipHold: 'SpecializedLargeShipHold' as LocationFlagEnum, - SpecializedMaterialBay: 'SpecializedMaterialBay' as LocationFlagEnum, - SpecializedMediumShipHold: 'SpecializedMediumShipHold' as LocationFlagEnum, - SpecializedMineralHold: 'SpecializedMineralHold' as LocationFlagEnum, - SpecializedOreHold: 'SpecializedOreHold' as LocationFlagEnum, - SpecializedPlanetaryCommoditiesHold: 'SpecializedPlanetaryCommoditiesHold' as LocationFlagEnum, - SpecializedSalvageHold: 'SpecializedSalvageHold' as LocationFlagEnum, - SpecializedShipHold: 'SpecializedShipHold' as LocationFlagEnum, - SpecializedSmallShipHold: 'SpecializedSmallShipHold' as LocationFlagEnum, - StructureActive: 'StructureActive' as LocationFlagEnum, - StructureFuel: 'StructureFuel' as LocationFlagEnum, - StructureInactive: 'StructureInactive' as LocationFlagEnum, - StructureOffline: 'StructureOffline' as LocationFlagEnum, - SubSystemBay: 'SubSystemBay' as LocationFlagEnum, - SubSystemSlot0: 'SubSystemSlot0' as LocationFlagEnum, - SubSystemSlot1: 'SubSystemSlot1' as LocationFlagEnum, - SubSystemSlot2: 'SubSystemSlot2' as LocationFlagEnum, - SubSystemSlot3: 'SubSystemSlot3' as LocationFlagEnum, - SubSystemSlot4: 'SubSystemSlot4' as LocationFlagEnum, - SubSystemSlot5: 'SubSystemSlot5' as LocationFlagEnum, - SubSystemSlot6: 'SubSystemSlot6' as LocationFlagEnum, - SubSystemSlot7: 'SubSystemSlot7' as LocationFlagEnum, - Unlocked: 'Unlocked' as LocationFlagEnum, - Wallet: 'Wallet' as LocationFlagEnum, - Wardrobe: 'Wardrobe' as LocationFlagEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdBookmarks200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdBookmarks200Ok.ts deleted file mode 100755 index 31bab7f..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdBookmarks200Ok.ts +++ /dev/null @@ -1,50 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetCorporationsCorporationIdBookmarksCoordinates } from './getCorporationsCorporationIdBookmarksCoordinates'; -import { GetCorporationsCorporationIdBookmarksItem } from './getCorporationsCorporationIdBookmarksItem'; - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdBookmarks200Ok { - /** - * bookmark_id integer - */ - bookmarkId: number; - /** - * creator_id integer - */ - creatorId: number; - /** - * folder_id integer - */ - folderId?: number; - /** - * created string - */ - created: Date; - /** - * label string - */ - label: string; - /** - * notes string - */ - notes: string; - /** - * location_id integer - */ - locationId: number; - item?: GetCorporationsCorporationIdBookmarksItem; - coordinates?: GetCorporationsCorporationIdBookmarksCoordinates; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdBookmarksCoordinates.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdBookmarksCoordinates.ts deleted file mode 100755 index 1436576..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdBookmarksCoordinates.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Optional object that is returned if a bookmark was made on a planet or a random location in space. - */ -export interface GetCorporationsCorporationIdBookmarksCoordinates { - /** - * x number - */ - x: number; - /** - * y number - */ - y: number; - /** - * z number - */ - z: number; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdBookmarksFolders200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdBookmarksFolders200Ok.ts deleted file mode 100755 index dc1ddad..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdBookmarksFolders200Ok.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdBookmarksFolders200Ok { - /** - * folder_id integer - */ - folderId: number; - /** - * name string - */ - name: string; - /** - * creator_id integer - */ - creatorId?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdBookmarksItem.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdBookmarksItem.ts deleted file mode 100755 index ee6f28a..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdBookmarksItem.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Optional object that is returned if a bookmark was made on a particular item. - */ -export interface GetCorporationsCorporationIdBookmarksItem { - /** - * item_id integer - */ - itemId: number; - /** - * type_id integer - */ - typeId: number; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdContacts200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdContacts200Ok.ts deleted file mode 100755 index 04c0336..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdContacts200Ok.ts +++ /dev/null @@ -1,47 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdContacts200Ok { - /** - * Standing of the contact - */ - standing: number; - /** - * contact_type string - */ - contactType: GetCorporationsCorporationIdContacts200Ok.ContactTypeEnum; - /** - * contact_id integer - */ - contactId: number; - /** - * Whether this contact is being watched - */ - isWatched?: boolean; - /** - * Custom label of the contact - */ - labelId?: number; -} -export namespace GetCorporationsCorporationIdContacts200Ok { - export type ContactTypeEnum = 'character' | 'corporation' | 'alliance' | 'faction'; - export const ContactTypeEnum = { - Character: 'character' as ContactTypeEnum, - Corporation: 'corporation' as ContactTypeEnum, - Alliance: 'alliance' as ContactTypeEnum, - Faction: 'faction' as ContactTypeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdContainersLogs200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdContainersLogs200Ok.ts deleted file mode 100755 index 7081bfc..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdContainersLogs200Ok.ts +++ /dev/null @@ -1,204 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdContainersLogs200Ok { - /** - * Timestamp when this log was created - */ - loggedAt: Date; - /** - * ID of the container - */ - containerId: number; - /** - * Type ID of the container - */ - containerTypeId: number; - /** - * ID of the character who performed the action. - */ - characterId: number; - /** - * location_id integer - */ - locationId: number; - /** - * action string - */ - action: GetCorporationsCorporationIdContainersLogs200Ok.ActionEnum; - /** - * Type of password set if action is of type SetPassword or EnterPassword - */ - passwordType?: GetCorporationsCorporationIdContainersLogs200Ok.PasswordTypeEnum; - /** - * Type ID of the item being acted upon - */ - typeId?: number; - /** - * Quantity of the item being acted upon - */ - quantity?: number; - /** - * old_config_bitmask integer - */ - oldConfigBitmask?: number; - /** - * new_config_bitmask integer - */ - newConfigBitmask?: number; - /** - * location_flag string - */ - locationFlag: GetCorporationsCorporationIdContainersLogs200Ok.LocationFlagEnum; -} -export namespace GetCorporationsCorporationIdContainersLogs200Ok { - export type ActionEnum = 'add' | 'assemble' | 'configure' | 'enter_password' | 'lock' | 'move' | 'repackage' | 'set_name' | 'set_password' | 'unlock'; - export const ActionEnum = { - Add: 'add' as ActionEnum, - Assemble: 'assemble' as ActionEnum, - Configure: 'configure' as ActionEnum, - EnterPassword: 'enter_password' as ActionEnum, - Lock: 'lock' as ActionEnum, - Move: 'move' as ActionEnum, - Repackage: 'repackage' as ActionEnum, - SetName: 'set_name' as ActionEnum, - SetPassword: 'set_password' as ActionEnum, - Unlock: 'unlock' as ActionEnum - } - export type PasswordTypeEnum = 'config' | 'general'; - export const PasswordTypeEnum = { - Config: 'config' as PasswordTypeEnum, - General: 'general' as PasswordTypeEnum - } - export type LocationFlagEnum = 'AssetSafety' | 'AutoFit' | 'Bonus' | 'Booster' | 'BoosterBay' | 'Capsule' | 'Cargo' | 'CorpDeliveries' | 'CorpSAG1' | 'CorpSAG2' | 'CorpSAG3' | 'CorpSAG4' | 'CorpSAG5' | 'CorpSAG6' | 'CorpSAG7' | 'CrateLoot' | 'Deliveries' | 'DroneBay' | 'DustBattle' | 'DustDatabank' | 'FighterBay' | 'FighterTube0' | 'FighterTube1' | 'FighterTube2' | 'FighterTube3' | 'FighterTube4' | 'FleetHangar' | 'Hangar' | 'HangarAll' | 'HiSlot0' | 'HiSlot1' | 'HiSlot2' | 'HiSlot3' | 'HiSlot4' | 'HiSlot5' | 'HiSlot6' | 'HiSlot7' | 'HiddenModifiers' | 'Implant' | 'Impounded' | 'JunkyardReprocessed' | 'JunkyardTrashed' | 'LoSlot0' | 'LoSlot1' | 'LoSlot2' | 'LoSlot3' | 'LoSlot4' | 'LoSlot5' | 'LoSlot6' | 'LoSlot7' | 'Locked' | 'MedSlot0' | 'MedSlot1' | 'MedSlot2' | 'MedSlot3' | 'MedSlot4' | 'MedSlot5' | 'MedSlot6' | 'MedSlot7' | 'OfficeFolder' | 'Pilot' | 'PlanetSurface' | 'QuafeBay' | 'Reward' | 'RigSlot0' | 'RigSlot1' | 'RigSlot2' | 'RigSlot3' | 'RigSlot4' | 'RigSlot5' | 'RigSlot6' | 'RigSlot7' | 'SecondaryStorage' | 'ServiceSlot0' | 'ServiceSlot1' | 'ServiceSlot2' | 'ServiceSlot3' | 'ServiceSlot4' | 'ServiceSlot5' | 'ServiceSlot6' | 'ServiceSlot7' | 'ShipHangar' | 'ShipOffline' | 'Skill' | 'SkillInTraining' | 'SpecializedAmmoHold' | 'SpecializedCommandCenterHold' | 'SpecializedFuelBay' | 'SpecializedGasHold' | 'SpecializedIndustrialShipHold' | 'SpecializedLargeShipHold' | 'SpecializedMaterialBay' | 'SpecializedMediumShipHold' | 'SpecializedMineralHold' | 'SpecializedOreHold' | 'SpecializedPlanetaryCommoditiesHold' | 'SpecializedSalvageHold' | 'SpecializedShipHold' | 'SpecializedSmallShipHold' | 'StructureActive' | 'StructureFuel' | 'StructureInactive' | 'StructureOffline' | 'SubSystemBay' | 'SubSystemSlot0' | 'SubSystemSlot1' | 'SubSystemSlot2' | 'SubSystemSlot3' | 'SubSystemSlot4' | 'SubSystemSlot5' | 'SubSystemSlot6' | 'SubSystemSlot7' | 'Unlocked' | 'Wallet' | 'Wardrobe'; - export const LocationFlagEnum = { - AssetSafety: 'AssetSafety' as LocationFlagEnum, - AutoFit: 'AutoFit' as LocationFlagEnum, - Bonus: 'Bonus' as LocationFlagEnum, - Booster: 'Booster' as LocationFlagEnum, - BoosterBay: 'BoosterBay' as LocationFlagEnum, - Capsule: 'Capsule' as LocationFlagEnum, - Cargo: 'Cargo' as LocationFlagEnum, - CorpDeliveries: 'CorpDeliveries' as LocationFlagEnum, - CorpSAG1: 'CorpSAG1' as LocationFlagEnum, - CorpSAG2: 'CorpSAG2' as LocationFlagEnum, - CorpSAG3: 'CorpSAG3' as LocationFlagEnum, - CorpSAG4: 'CorpSAG4' as LocationFlagEnum, - CorpSAG5: 'CorpSAG5' as LocationFlagEnum, - CorpSAG6: 'CorpSAG6' as LocationFlagEnum, - CorpSAG7: 'CorpSAG7' as LocationFlagEnum, - CrateLoot: 'CrateLoot' as LocationFlagEnum, - Deliveries: 'Deliveries' as LocationFlagEnum, - DroneBay: 'DroneBay' as LocationFlagEnum, - DustBattle: 'DustBattle' as LocationFlagEnum, - DustDatabank: 'DustDatabank' as LocationFlagEnum, - FighterBay: 'FighterBay' as LocationFlagEnum, - FighterTube0: 'FighterTube0' as LocationFlagEnum, - FighterTube1: 'FighterTube1' as LocationFlagEnum, - FighterTube2: 'FighterTube2' as LocationFlagEnum, - FighterTube3: 'FighterTube3' as LocationFlagEnum, - FighterTube4: 'FighterTube4' as LocationFlagEnum, - FleetHangar: 'FleetHangar' as LocationFlagEnum, - Hangar: 'Hangar' as LocationFlagEnum, - HangarAll: 'HangarAll' as LocationFlagEnum, - HiSlot0: 'HiSlot0' as LocationFlagEnum, - HiSlot1: 'HiSlot1' as LocationFlagEnum, - HiSlot2: 'HiSlot2' as LocationFlagEnum, - HiSlot3: 'HiSlot3' as LocationFlagEnum, - HiSlot4: 'HiSlot4' as LocationFlagEnum, - HiSlot5: 'HiSlot5' as LocationFlagEnum, - HiSlot6: 'HiSlot6' as LocationFlagEnum, - HiSlot7: 'HiSlot7' as LocationFlagEnum, - HiddenModifiers: 'HiddenModifiers' as LocationFlagEnum, - Implant: 'Implant' as LocationFlagEnum, - Impounded: 'Impounded' as LocationFlagEnum, - JunkyardReprocessed: 'JunkyardReprocessed' as LocationFlagEnum, - JunkyardTrashed: 'JunkyardTrashed' as LocationFlagEnum, - LoSlot0: 'LoSlot0' as LocationFlagEnum, - LoSlot1: 'LoSlot1' as LocationFlagEnum, - LoSlot2: 'LoSlot2' as LocationFlagEnum, - LoSlot3: 'LoSlot3' as LocationFlagEnum, - LoSlot4: 'LoSlot4' as LocationFlagEnum, - LoSlot5: 'LoSlot5' as LocationFlagEnum, - LoSlot6: 'LoSlot6' as LocationFlagEnum, - LoSlot7: 'LoSlot7' as LocationFlagEnum, - Locked: 'Locked' as LocationFlagEnum, - MedSlot0: 'MedSlot0' as LocationFlagEnum, - MedSlot1: 'MedSlot1' as LocationFlagEnum, - MedSlot2: 'MedSlot2' as LocationFlagEnum, - MedSlot3: 'MedSlot3' as LocationFlagEnum, - MedSlot4: 'MedSlot4' as LocationFlagEnum, - MedSlot5: 'MedSlot5' as LocationFlagEnum, - MedSlot6: 'MedSlot6' as LocationFlagEnum, - MedSlot7: 'MedSlot7' as LocationFlagEnum, - OfficeFolder: 'OfficeFolder' as LocationFlagEnum, - Pilot: 'Pilot' as LocationFlagEnum, - PlanetSurface: 'PlanetSurface' as LocationFlagEnum, - QuafeBay: 'QuafeBay' as LocationFlagEnum, - Reward: 'Reward' as LocationFlagEnum, - RigSlot0: 'RigSlot0' as LocationFlagEnum, - RigSlot1: 'RigSlot1' as LocationFlagEnum, - RigSlot2: 'RigSlot2' as LocationFlagEnum, - RigSlot3: 'RigSlot3' as LocationFlagEnum, - RigSlot4: 'RigSlot4' as LocationFlagEnum, - RigSlot5: 'RigSlot5' as LocationFlagEnum, - RigSlot6: 'RigSlot6' as LocationFlagEnum, - RigSlot7: 'RigSlot7' as LocationFlagEnum, - SecondaryStorage: 'SecondaryStorage' as LocationFlagEnum, - ServiceSlot0: 'ServiceSlot0' as LocationFlagEnum, - ServiceSlot1: 'ServiceSlot1' as LocationFlagEnum, - ServiceSlot2: 'ServiceSlot2' as LocationFlagEnum, - ServiceSlot3: 'ServiceSlot3' as LocationFlagEnum, - ServiceSlot4: 'ServiceSlot4' as LocationFlagEnum, - ServiceSlot5: 'ServiceSlot5' as LocationFlagEnum, - ServiceSlot6: 'ServiceSlot6' as LocationFlagEnum, - ServiceSlot7: 'ServiceSlot7' as LocationFlagEnum, - ShipHangar: 'ShipHangar' as LocationFlagEnum, - ShipOffline: 'ShipOffline' as LocationFlagEnum, - Skill: 'Skill' as LocationFlagEnum, - SkillInTraining: 'SkillInTraining' as LocationFlagEnum, - SpecializedAmmoHold: 'SpecializedAmmoHold' as LocationFlagEnum, - SpecializedCommandCenterHold: 'SpecializedCommandCenterHold' as LocationFlagEnum, - SpecializedFuelBay: 'SpecializedFuelBay' as LocationFlagEnum, - SpecializedGasHold: 'SpecializedGasHold' as LocationFlagEnum, - SpecializedIndustrialShipHold: 'SpecializedIndustrialShipHold' as LocationFlagEnum, - SpecializedLargeShipHold: 'SpecializedLargeShipHold' as LocationFlagEnum, - SpecializedMaterialBay: 'SpecializedMaterialBay' as LocationFlagEnum, - SpecializedMediumShipHold: 'SpecializedMediumShipHold' as LocationFlagEnum, - SpecializedMineralHold: 'SpecializedMineralHold' as LocationFlagEnum, - SpecializedOreHold: 'SpecializedOreHold' as LocationFlagEnum, - SpecializedPlanetaryCommoditiesHold: 'SpecializedPlanetaryCommoditiesHold' as LocationFlagEnum, - SpecializedSalvageHold: 'SpecializedSalvageHold' as LocationFlagEnum, - SpecializedShipHold: 'SpecializedShipHold' as LocationFlagEnum, - SpecializedSmallShipHold: 'SpecializedSmallShipHold' as LocationFlagEnum, - StructureActive: 'StructureActive' as LocationFlagEnum, - StructureFuel: 'StructureFuel' as LocationFlagEnum, - StructureInactive: 'StructureInactive' as LocationFlagEnum, - StructureOffline: 'StructureOffline' as LocationFlagEnum, - SubSystemBay: 'SubSystemBay' as LocationFlagEnum, - SubSystemSlot0: 'SubSystemSlot0' as LocationFlagEnum, - SubSystemSlot1: 'SubSystemSlot1' as LocationFlagEnum, - SubSystemSlot2: 'SubSystemSlot2' as LocationFlagEnum, - SubSystemSlot3: 'SubSystemSlot3' as LocationFlagEnum, - SubSystemSlot4: 'SubSystemSlot4' as LocationFlagEnum, - SubSystemSlot5: 'SubSystemSlot5' as LocationFlagEnum, - SubSystemSlot6: 'SubSystemSlot6' as LocationFlagEnum, - SubSystemSlot7: 'SubSystemSlot7' as LocationFlagEnum, - Unlocked: 'Unlocked' as LocationFlagEnum, - Wallet: 'Wallet' as LocationFlagEnum, - Wardrobe: 'Wardrobe' as LocationFlagEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdContracts200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdContracts200Ok.ts deleted file mode 100755 index 098864e..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdContracts200Ok.ts +++ /dev/null @@ -1,136 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdContracts200Ok { - /** - * contract_id integer - */ - contractId: number; - /** - * Character ID for the issuer - */ - issuerId: number; - /** - * Character's corporation ID for the issuer - */ - issuerCorporationId: number; - /** - * ID to whom the contract is assigned, can be corporation or character ID - */ - assigneeId: number; - /** - * Who will accept the contract - */ - acceptorId: number; - /** - * Start location ID (for Couriers contract) - */ - startLocationId?: number; - /** - * End location ID (for Couriers contract) - */ - endLocationId?: number; - /** - * Type of the contract - */ - type: GetCorporationsCorporationIdContracts200Ok.TypeEnum; - /** - * Status of the the contract - */ - status: GetCorporationsCorporationIdContracts200Ok.StatusEnum; - /** - * Title of the contract - */ - title?: string; - /** - * true if the contract was issued on behalf of the issuer's corporation - */ - forCorporation: boolean; - /** - * To whom the contract is available - */ - availability: GetCorporationsCorporationIdContracts200Ok.AvailabilityEnum; - /** - * Сreation date of the contract - */ - dateIssued: Date; - /** - * Expiration date of the contract - */ - dateExpired: Date; - /** - * Date of confirmation of contract - */ - dateAccepted?: Date; - /** - * Number of days to perform the contract - */ - daysToComplete?: number; - /** - * Date of completed of contract - */ - dateCompleted?: Date; - /** - * Price of contract (for ItemsExchange and Auctions) - */ - price?: number; - /** - * Remuneration for contract (for Couriers only) - */ - reward?: number; - /** - * Collateral price (for Couriers only) - */ - collateral?: number; - /** - * Buyout price (for Auctions only) - */ - buyout?: number; - /** - * Volume of items in the contract - */ - volume?: number; -} -export namespace GetCorporationsCorporationIdContracts200Ok { - export type TypeEnum = 'unknown' | 'item_exchange' | 'auction' | 'courier' | 'loan'; - export const TypeEnum = { - Unknown: 'unknown' as TypeEnum, - ItemExchange: 'item_exchange' as TypeEnum, - Auction: 'auction' as TypeEnum, - Courier: 'courier' as TypeEnum, - Loan: 'loan' as TypeEnum - } - export type StatusEnum = 'outstanding' | 'in_progress' | 'finished_issuer' | 'finished_contractor' | 'finished' | 'cancelled' | 'rejected' | 'failed' | 'deleted' | 'reversed'; - export const StatusEnum = { - Outstanding: 'outstanding' as StatusEnum, - InProgress: 'in_progress' as StatusEnum, - FinishedIssuer: 'finished_issuer' as StatusEnum, - FinishedContractor: 'finished_contractor' as StatusEnum, - Finished: 'finished' as StatusEnum, - Cancelled: 'cancelled' as StatusEnum, - Rejected: 'rejected' as StatusEnum, - Failed: 'failed' as StatusEnum, - Deleted: 'deleted' as StatusEnum, - Reversed: 'reversed' as StatusEnum - } - export type AvailabilityEnum = 'public' | 'personal' | 'corporation' | 'alliance'; - export const AvailabilityEnum = { - Public: 'public' as AvailabilityEnum, - Personal: 'personal' as AvailabilityEnum, - Corporation: 'corporation' as AvailabilityEnum, - Alliance: 'alliance' as AvailabilityEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdContractsContractIdBids200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdContractsContractIdBids200Ok.ts deleted file mode 100755 index 2e9897b..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdContractsContractIdBids200Ok.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdContractsContractIdBids200Ok { - /** - * Unique ID for the bid - */ - bidId: number; - /** - * Character ID of the bidder - */ - bidderId: number; - /** - * Datetime when the bid was placed - */ - dateBid: Date; - /** - * The amount bid, in ISK - */ - amount: number; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdContractsContractIdItems200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdContractsContractIdItems200Ok.ts deleted file mode 100755 index 4ed6cc4..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdContractsContractIdItems200Ok.ts +++ /dev/null @@ -1,42 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdContractsContractIdItems200Ok { - /** - * Unique ID for the item - */ - recordId: number; - /** - * Type ID for item - */ - typeId: number; - /** - * Number of items in the stack - */ - quantity: number; - /** - * -1 indicates that the item is a singleton (non-stackable). If the item happens to be a Blueprint, -1 is an Original and -2 is a Blueprint Copy - */ - rawQuantity?: number; - /** - * is_singleton boolean - */ - isSingleton: boolean; - /** - * true if the contract issuer has submitted this item with the contract, false if the isser is asking for this item in the contract. - */ - isIncluded: boolean; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdCustomsOffices200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdCustomsOffices200Ok.ts deleted file mode 100755 index 2ae9c0b..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdCustomsOffices200Ok.ts +++ /dev/null @@ -1,84 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdCustomsOffices200Ok { - /** - * unique ID of this customs office - */ - officeId: number; - /** - * ID of the solar system this customs office is located in - */ - systemId: number; - /** - * Together with reinforce_exit_end, marks a 2-hour period where this customs office could exit reinforcement mode during the day after initial attack - */ - reinforceExitStart: number; - /** - * reinforce_exit_end integer - */ - reinforceExitEnd: number; - /** - * corporation_tax_rate number - */ - corporationTaxRate?: number; - /** - * allow_alliance_access boolean - */ - allowAllianceAccess: boolean; - /** - * Only present if alliance access is allowed - */ - allianceTaxRate?: number; - /** - * standing_level and any standing related tax rate only present when this is true - */ - allowAccessWithStandings: boolean; - /** - * Access is allowed only for entities with this level of standing or better - */ - standingLevel?: GetCorporationsCorporationIdCustomsOffices200Ok.StandingLevelEnum; - /** - * Tax rate for entities with excellent level of standing, only present if this level is allowed, same for all other standing related tax rates - */ - excellentStandingTaxRate?: number; - /** - * good_standing_tax_rate number - */ - goodStandingTaxRate?: number; - /** - * neutral_standing_tax_rate number - */ - neutralStandingTaxRate?: number; - /** - * bad_standing_tax_rate number - */ - badStandingTaxRate?: number; - /** - * terrible_standing_tax_rate number - */ - terribleStandingTaxRate?: number; -} -export namespace GetCorporationsCorporationIdCustomsOffices200Ok { - export type StandingLevelEnum = 'bad' | 'excellent' | 'good' | 'neutral' | 'terrible'; - export const StandingLevelEnum = { - Bad: 'bad' as StandingLevelEnum, - Excellent: 'excellent' as StandingLevelEnum, - Good: 'good' as StandingLevelEnum, - Neutral: 'neutral' as StandingLevelEnum, - Terrible: 'terrible' as StandingLevelEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdDivisionsHangar.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdDivisionsHangar.ts deleted file mode 100755 index 068d5c3..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdDivisionsHangar.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * hangar object - */ -export interface GetCorporationsCorporationIdDivisionsHangar { - /** - * division integer - */ - division?: number; - /** - * name string - */ - name?: string; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdDivisionsOk.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdDivisionsOk.ts deleted file mode 100755 index b01242a..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdDivisionsOk.ts +++ /dev/null @@ -1,28 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetCorporationsCorporationIdDivisionsHangar } from './getCorporationsCorporationIdDivisionsHangar'; -import { GetCorporationsCorporationIdDivisionsWallet } from './getCorporationsCorporationIdDivisionsWallet'; - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdDivisionsOk { - /** - * hangar array - */ - hangar?: Array; - /** - * wallet array - */ - wallet?: Array; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdDivisionsWallet.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdDivisionsWallet.ts deleted file mode 100755 index 06d8cf7..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdDivisionsWallet.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * wallet object - */ -export interface GetCorporationsCorporationIdDivisionsWallet { - /** - * division integer - */ - division?: number; - /** - * name string - */ - name?: string; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdFacilities200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdFacilities200Ok.ts deleted file mode 100755 index 5617713..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdFacilities200Ok.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdFacilities200Ok { - /** - * facility_id integer - */ - facilityId: number; - /** - * type_id integer - */ - typeId: number; - /** - * system_id integer - */ - systemId: number; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdFwStatsKills.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdFwStatsKills.ts deleted file mode 100755 index fc3111f..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdFwStatsKills.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Summary of kills done by the given corporation against enemy factions - */ -export interface GetCorporationsCorporationIdFwStatsKills { - /** - * Yesterday's total number of kills by members of the given corporation against enemy factions - */ - yesterday: number; - /** - * Last week's total number of kills by members of the given corporation against enemy factions - */ - lastWeek: number; - /** - * Total number of kills by members of the given corporation against enemy factions since the corporation enlisted - */ - total: number; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdFwStatsOk.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdFwStatsOk.ts deleted file mode 100755 index 511e499..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdFwStatsOk.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetCorporationsCorporationIdFwStatsKills } from './getCorporationsCorporationIdFwStatsKills'; -import { GetCorporationsCorporationIdFwStatsVictoryPoints } from './getCorporationsCorporationIdFwStatsVictoryPoints'; - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdFwStatsOk { - /** - * The faction the given corporation is enlisted to fight for. Will not be included if corporation is not enlisted in faction warfare - */ - factionId?: number; - /** - * The enlistment date of the given corporation into faction warfare. Will not be included if corporation is not enlisted in faction warfare - */ - enlistedOn?: Date; - /** - * How many pilots the enlisted corporation has. Will not be included if corporation is not enlisted in faction warfare - */ - pilots?: number; - kills: GetCorporationsCorporationIdFwStatsKills; - victoryPoints: GetCorporationsCorporationIdFwStatsVictoryPoints; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdFwStatsVictoryPoints.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdFwStatsVictoryPoints.ts deleted file mode 100755 index fb79ccd..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdFwStatsVictoryPoints.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Summary of victory points gained by the given corporation for the enlisted faction - */ -export interface GetCorporationsCorporationIdFwStatsVictoryPoints { - /** - * Yesterday's victory points gained by members of the given corporation - */ - yesterday: number; - /** - * Last week's victory points gained by members of the given corporation - */ - lastWeek: number; - /** - * Total victory points gained since the given corporation enlisted - */ - total: number; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdIconsNotFound.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdIconsNotFound.ts deleted file mode 100755 index 99ce1d2..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdIconsNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * No image server for this datasource - */ -export interface GetCorporationsCorporationIdIconsNotFound { - /** - * error message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdIconsOk.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdIconsOk.ts deleted file mode 100755 index 90fb1d8..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdIconsOk.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdIconsOk { - /** - * px64x64 string - */ - px64x64?: string; - /** - * px128x128 string - */ - px128x128?: string; - /** - * px256x256 string - */ - px256x256?: string; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdIndustryJobs200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdIndustryJobs200Ok.ts deleted file mode 100755 index a85aa4d..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdIndustryJobs200Ok.ts +++ /dev/null @@ -1,117 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdIndustryJobs200Ok { - /** - * Unique job ID - */ - jobId: number; - /** - * ID of the character which installed this job - */ - installerId: number; - /** - * ID of the facility where this job is running - */ - facilityId: number; - /** - * ID of the location for the industry facility - */ - locationId: number; - /** - * Job activity ID - */ - activityId: number; - /** - * blueprint_id integer - */ - blueprintId: number; - /** - * blueprint_type_id integer - */ - blueprintTypeId: number; - /** - * Location ID of the location from which the blueprint was installed. Normally a station ID, but can also be an asset (e.g. container) or corporation facility - */ - blueprintLocationId: number; - /** - * Location ID of the location to which the output of the job will be delivered. Normally a station ID, but can also be a corporation facility - */ - outputLocationId: number; - /** - * Number of runs for a manufacturing job, or number of copies to make for a blueprint copy - */ - runs: number; - /** - * The sume of job installation fee and industry facility tax - */ - cost?: number; - /** - * Number of runs blueprint is licensed for - */ - licensedRuns?: number; - /** - * Chance of success for invention - */ - probability?: number; - /** - * Type ID of product (manufactured, copied or invented) - */ - productTypeId?: number; - /** - * status string - */ - status: GetCorporationsCorporationIdIndustryJobs200Ok.StatusEnum; - /** - * Job duration in seconds - */ - duration: number; - /** - * Date and time when this job started - */ - startDate: Date; - /** - * Date and time when this job finished - */ - endDate: Date; - /** - * Date and time when this job was paused (i.e. time when the facility where this job was installed went offline) - */ - pauseDate?: Date; - /** - * Date and time when this job was completed - */ - completedDate?: Date; - /** - * ID of the character which completed this job - */ - completedCharacterId?: number; - /** - * Number of successful runs for this job. Equal to runs unless this is an invention job - */ - successfulRuns?: number; -} -export namespace GetCorporationsCorporationIdIndustryJobs200Ok { - export type StatusEnum = 'active' | 'cancelled' | 'delivered' | 'paused' | 'ready' | 'reverted'; - export const StatusEnum = { - Active: 'active' as StatusEnum, - Cancelled: 'cancelled' as StatusEnum, - Delivered: 'delivered' as StatusEnum, - Paused: 'paused' as StatusEnum, - Ready: 'ready' as StatusEnum, - Reverted: 'reverted' as StatusEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdKillmailsRecent200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdKillmailsRecent200Ok.ts deleted file mode 100755 index 03236e1..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdKillmailsRecent200Ok.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdKillmailsRecent200Ok { - /** - * ID of this killmail - */ - killmailId: number; - /** - * A hash of this killmail - */ - killmailHash: string; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdMedals200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdMedals200Ok.ts deleted file mode 100755 index b1f92fc..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdMedals200Ok.ts +++ /dev/null @@ -1,38 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdMedals200Ok { - /** - * medal_id integer - */ - medalId: number; - /** - * title string - */ - title: string; - /** - * description string - */ - description: string; - /** - * ID of the character who created this medal - */ - creatorId: number; - /** - * created_at string - */ - createdAt: Date; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdMedalsIssued200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdMedalsIssued200Ok.ts deleted file mode 100755 index 754d8ac..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdMedalsIssued200Ok.ts +++ /dev/null @@ -1,49 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdMedalsIssued200Ok { - /** - * medal_id integer - */ - medalId: number; - /** - * ID of the character who was rewarded this medal - */ - characterId: number; - /** - * reason string - */ - reason: string; - /** - * status string - */ - status: GetCorporationsCorporationIdMedalsIssued200Ok.StatusEnum; - /** - * ID of the character who issued the medal - */ - issuerId: number; - /** - * issued_at string - */ - issuedAt: Date; -} -export namespace GetCorporationsCorporationIdMedalsIssued200Ok { - export type StatusEnum = 'private' | 'public'; - export const StatusEnum = { - Private: 'private' as StatusEnum, - Public: 'public' as StatusEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdMembersTitles200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdMembersTitles200Ok.ts deleted file mode 100755 index 51b8d27..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdMembersTitles200Ok.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdMembersTitles200Ok { - /** - * character_id integer - */ - characterId: number; - /** - * A list of title_id - */ - titles: Array; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdMembertracking200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdMembertracking200Ok.ts deleted file mode 100755 index 6dd8ab7..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdMembertracking200Ok.ts +++ /dev/null @@ -1,46 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdMembertracking200Ok { - /** - * character_id integer - */ - characterId: number; - /** - * start_date string - */ - startDate?: Date; - /** - * base_id integer - */ - baseId?: number; - /** - * logon_date string - */ - logonDate?: Date; - /** - * logoff_date string - */ - logoffDate?: Date; - /** - * location_id integer - */ - locationId?: number; - /** - * ship_type_id integer - */ - shipTypeId?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdNotFound.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdNotFound.ts deleted file mode 100755 index 3a61193..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetCorporationsCorporationIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdOk.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdOk.ts deleted file mode 100755 index 021f511..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdOk.ts +++ /dev/null @@ -1,70 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdOk { - /** - * the full name of the corporation - */ - name: string; - /** - * the short name of the corporation - */ - ticker: string; - /** - * member_count integer - */ - memberCount: number; - /** - * ceo_id integer - */ - ceoId: number; - /** - * ID of the alliance that corporation is a member of, if any - */ - allianceId?: number; - /** - * description string - */ - description?: string; - /** - * tax_rate number - */ - taxRate: number; - /** - * date_founded string - */ - dateFounded?: Date; - /** - * creator_id integer - */ - creatorId: number; - /** - * url string - */ - url?: string; - /** - * faction_id integer - */ - factionId?: number; - /** - * home_station_id integer - */ - homeStationId?: number; - /** - * shares integer - */ - shares?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdOrders200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdOrders200Ok.ts deleted file mode 100755 index 6d78b51..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdOrders200Ok.ts +++ /dev/null @@ -1,91 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdOrders200Ok { - /** - * Unique order ID - */ - orderId: number; - /** - * The type ID of the item transacted in this order - */ - typeId: number; - /** - * ID of the region where order was placed - */ - regionId: number; - /** - * ID of the location where order was placed - */ - locationId: number; - /** - * Valid order range, numbers are ranges in jumps - */ - range: GetCorporationsCorporationIdOrders200Ok.RangeEnum; - /** - * Cost per unit for this order - */ - price: number; - /** - * Quantity of items required or offered at time order was placed - */ - volumeTotal: number; - /** - * Quantity of items still required or offered - */ - volumeRemain: number; - /** - * Date and time when this order was issued - */ - issued: Date; - /** - * True if the order is a bid (buy) order - */ - isBuyOrder?: boolean; - /** - * For buy orders, the minimum quantity that will be accepted in a matching sell order - */ - minVolume?: number; - /** - * For buy orders, the amount of ISK in escrow - */ - escrow?: number; - /** - * Number of days for which order is valid (starting from the issued date). An order expires at time issued + duration - */ - duration: number; - /** - * The corporation wallet division used for this order. - */ - walletDivision: number; -} -export namespace GetCorporationsCorporationIdOrders200Ok { - export type RangeEnum = '1' | '10' | '2' | '20' | '3' | '30' | '4' | '40' | '5' | 'region' | 'solarsystem' | 'station'; - export const RangeEnum = { - _1: '1' as RangeEnum, - _10: '10' as RangeEnum, - _2: '2' as RangeEnum, - _20: '20' as RangeEnum, - _3: '3' as RangeEnum, - _30: '30' as RangeEnum, - _4: '4' as RangeEnum, - _40: '40' as RangeEnum, - _5: '5' as RangeEnum, - Region: 'region' as RangeEnum, - Solarsystem: 'solarsystem' as RangeEnum, - Station: 'station' as RangeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdOrdersHistory200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdOrdersHistory200Ok.ts deleted file mode 100755 index 8a6fe20..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdOrdersHistory200Ok.ts +++ /dev/null @@ -1,100 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdOrdersHistory200Ok { - /** - * Unique order ID - */ - orderId: number; - /** - * The type ID of the item transacted in this order - */ - typeId: number; - /** - * ID of the region where order was placed - */ - regionId: number; - /** - * ID of the location where order was placed - */ - locationId: number; - /** - * Valid order range, numbers are ranges in jumps - */ - range: GetCorporationsCorporationIdOrdersHistory200Ok.RangeEnum; - /** - * Cost per unit for this order - */ - price: number; - /** - * Quantity of items required or offered at time order was placed - */ - volumeTotal: number; - /** - * Quantity of items still required or offered - */ - volumeRemain: number; - /** - * Date and time when this order was issued - */ - issued: Date; - /** - * True if the order is a bid (buy) order - */ - isBuyOrder?: boolean; - /** - * For buy orders, the minimum quantity that will be accepted in a matching sell order - */ - minVolume?: number; - /** - * For buy orders, the amount of ISK in escrow - */ - escrow?: number; - /** - * Number of days the order was valid for (starting from the issued date). An order expires at time issued + duration - */ - duration: number; - /** - * Current order state - */ - state: GetCorporationsCorporationIdOrdersHistory200Ok.StateEnum; - /** - * The corporation wallet division used for this order. - */ - walletDivision: number; -} -export namespace GetCorporationsCorporationIdOrdersHistory200Ok { - export type RangeEnum = '1' | '10' | '2' | '20' | '3' | '30' | '4' | '40' | '5' | 'region' | 'solarsystem' | 'station'; - export const RangeEnum = { - _1: '1' as RangeEnum, - _10: '10' as RangeEnum, - _2: '2' as RangeEnum, - _20: '20' as RangeEnum, - _3: '3' as RangeEnum, - _30: '30' as RangeEnum, - _4: '4' as RangeEnum, - _40: '40' as RangeEnum, - _5: '5' as RangeEnum, - Region: 'region' as RangeEnum, - Solarsystem: 'solarsystem' as RangeEnum, - Station: 'station' as RangeEnum - } - export type StateEnum = 'cancelled' | 'expired'; - export const StateEnum = { - Cancelled: 'cancelled' as StateEnum, - Expired: 'expired' as StateEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdOutpostsOutpostIdCoordinates.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdOutpostsOutpostIdCoordinates.ts deleted file mode 100755 index de64765..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdOutpostsOutpostIdCoordinates.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * coordinates object - */ -export interface GetCorporationsCorporationIdOutpostsOutpostIdCoordinates { - /** - * x number - */ - x: number; - /** - * y number - */ - y: number; - /** - * z number - */ - z: number; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdOutpostsOutpostIdOk.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdOutpostsOutpostIdOk.ts deleted file mode 100755 index 917ec6e..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdOutpostsOutpostIdOk.ts +++ /dev/null @@ -1,57 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetCorporationsCorporationIdOutpostsOutpostIdCoordinates } from './getCorporationsCorporationIdOutpostsOutpostIdCoordinates'; -import { GetCorporationsCorporationIdOutpostsOutpostIdService } from './getCorporationsCorporationIdOutpostsOutpostIdService'; - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdOutpostsOutpostIdOk { - /** - * The entity that owns the station (e.g. the entity whose logo is on the station services bar) - */ - ownerId: number; - /** - * The ID of the solar system the outpost rests in - */ - systemId: number; - /** - * docking_cost_per_ship_volume number - */ - dockingCostPerShipVolume: number; - /** - * office_rental_cost integer - */ - officeRentalCost: number; - /** - * The type ID of the given outpost - */ - typeId: number; - /** - * reprocessing_efficiency number - */ - reprocessingEfficiency: number; - /** - * reprocessing_station_take number - */ - reprocessingStationTake: number; - /** - * The owner ID that sets the ability for someone to dock based on standings. - */ - standingOwnerId: number; - coordinates: GetCorporationsCorporationIdOutpostsOutpostIdCoordinates; - /** - * A list of services the given outpost provides - */ - services: Array; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdOutpostsOutpostIdService.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdOutpostsOutpostIdService.ts deleted file mode 100755 index 2be548e..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdOutpostsOutpostIdService.ts +++ /dev/null @@ -1,66 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * service object - */ -export interface GetCorporationsCorporationIdOutpostsOutpostIdService { - /** - * service_name string - */ - serviceName: GetCorporationsCorporationIdOutpostsOutpostIdService.ServiceNameEnum; - /** - * minimum_standing number - */ - minimumStanding: number; - /** - * surcharge_per_bad_standing number - */ - surchargePerBadStanding: number; - /** - * discount_per_good_standing number - */ - discountPerGoodStanding: number; -} -export namespace GetCorporationsCorporationIdOutpostsOutpostIdService { - export type ServiceNameEnum = 'Bounty Missions' | 'Assassination Missions' | 'Courier Missions' | 'Interbus' | 'Reprocessing Plant' | 'Refinery' | 'Market' | 'Black Market' | 'Stock Exchange' | 'Cloning' | 'Surgery' | 'DNA Therapy' | 'Repair Facilities' | 'Factory' | 'Laboratory' | 'Gambling' | 'Fitting' | 'Paintshop' | 'News' | 'Storage' | 'Insurance' | 'Docking' | 'Office Rental' | 'Jump Clone Facility' | 'Loyalty Point Store' | 'Navy Offices' | 'Security Office'; - export const ServiceNameEnum = { - BountyMissions: 'Bounty Missions' as ServiceNameEnum, - AssassinationMissions: 'Assassination Missions' as ServiceNameEnum, - CourierMissions: 'Courier Missions' as ServiceNameEnum, - Interbus: 'Interbus' as ServiceNameEnum, - ReprocessingPlant: 'Reprocessing Plant' as ServiceNameEnum, - Refinery: 'Refinery' as ServiceNameEnum, - Market: 'Market' as ServiceNameEnum, - BlackMarket: 'Black Market' as ServiceNameEnum, - StockExchange: 'Stock Exchange' as ServiceNameEnum, - Cloning: 'Cloning' as ServiceNameEnum, - Surgery: 'Surgery' as ServiceNameEnum, - DNATherapy: 'DNA Therapy' as ServiceNameEnum, - RepairFacilities: 'Repair Facilities' as ServiceNameEnum, - Factory: 'Factory' as ServiceNameEnum, - Laboratory: 'Laboratory' as ServiceNameEnum, - Gambling: 'Gambling' as ServiceNameEnum, - Fitting: 'Fitting' as ServiceNameEnum, - Paintshop: 'Paintshop' as ServiceNameEnum, - News: 'News' as ServiceNameEnum, - Storage: 'Storage' as ServiceNameEnum, - Insurance: 'Insurance' as ServiceNameEnum, - Docking: 'Docking' as ServiceNameEnum, - OfficeRental: 'Office Rental' as ServiceNameEnum, - JumpCloneFacility: 'Jump Clone Facility' as ServiceNameEnum, - LoyaltyPointStore: 'Loyalty Point Store' as ServiceNameEnum, - NavyOffices: 'Navy Offices' as ServiceNameEnum, - SecurityOffice: 'Security Office' as ServiceNameEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdRoles200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdRoles200Ok.ts deleted file mode 100755 index e34b5d2..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdRoles200Ok.ts +++ /dev/null @@ -1,480 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdRoles200Ok { - /** - * character_id integer - */ - characterId: number; - /** - * roles array - */ - roles?: Array; - /** - * grantable_roles array - */ - grantableRoles?: Array; - /** - * roles_at_hq array - */ - rolesAtHq?: Array; - /** - * grantable_roles_at_hq array - */ - grantableRolesAtHq?: Array; - /** - * roles_at_base array - */ - rolesAtBase?: Array; - /** - * grantable_roles_at_base array - */ - grantableRolesAtBase?: Array; - /** - * roles_at_other array - */ - rolesAtOther?: Array; - /** - * grantable_roles_at_other array - */ - grantableRolesAtOther?: Array; -} -export namespace GetCorporationsCorporationIdRoles200Ok { - export type RolesEnum = 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Terrestrial_Combat_Officer' | 'Terrestrial_Logistics_Officer' | 'Trader'; - export const RolesEnum = { - AccountTake1: 'Account_Take_1' as RolesEnum, - AccountTake2: 'Account_Take_2' as RolesEnum, - AccountTake3: 'Account_Take_3' as RolesEnum, - AccountTake4: 'Account_Take_4' as RolesEnum, - AccountTake5: 'Account_Take_5' as RolesEnum, - AccountTake6: 'Account_Take_6' as RolesEnum, - AccountTake7: 'Account_Take_7' as RolesEnum, - Accountant: 'Accountant' as RolesEnum, - Auditor: 'Auditor' as RolesEnum, - CommunicationsOfficer: 'Communications_Officer' as RolesEnum, - ConfigEquipment: 'Config_Equipment' as RolesEnum, - ConfigStarbaseEquipment: 'Config_Starbase_Equipment' as RolesEnum, - ContainerTake1: 'Container_Take_1' as RolesEnum, - ContainerTake2: 'Container_Take_2' as RolesEnum, - ContainerTake3: 'Container_Take_3' as RolesEnum, - ContainerTake4: 'Container_Take_4' as RolesEnum, - ContainerTake5: 'Container_Take_5' as RolesEnum, - ContainerTake6: 'Container_Take_6' as RolesEnum, - ContainerTake7: 'Container_Take_7' as RolesEnum, - ContractManager: 'Contract_Manager' as RolesEnum, - Diplomat: 'Diplomat' as RolesEnum, - Director: 'Director' as RolesEnum, - FactoryManager: 'Factory_Manager' as RolesEnum, - FittingManager: 'Fitting_Manager' as RolesEnum, - HangarQuery1: 'Hangar_Query_1' as RolesEnum, - HangarQuery2: 'Hangar_Query_2' as RolesEnum, - HangarQuery3: 'Hangar_Query_3' as RolesEnum, - HangarQuery4: 'Hangar_Query_4' as RolesEnum, - HangarQuery5: 'Hangar_Query_5' as RolesEnum, - HangarQuery6: 'Hangar_Query_6' as RolesEnum, - HangarQuery7: 'Hangar_Query_7' as RolesEnum, - HangarTake1: 'Hangar_Take_1' as RolesEnum, - HangarTake2: 'Hangar_Take_2' as RolesEnum, - HangarTake3: 'Hangar_Take_3' as RolesEnum, - HangarTake4: 'Hangar_Take_4' as RolesEnum, - HangarTake5: 'Hangar_Take_5' as RolesEnum, - HangarTake6: 'Hangar_Take_6' as RolesEnum, - HangarTake7: 'Hangar_Take_7' as RolesEnum, - JuniorAccountant: 'Junior_Accountant' as RolesEnum, - PersonnelManager: 'Personnel_Manager' as RolesEnum, - RentFactoryFacility: 'Rent_Factory_Facility' as RolesEnum, - RentOffice: 'Rent_Office' as RolesEnum, - RentResearchFacility: 'Rent_Research_Facility' as RolesEnum, - SecurityOfficer: 'Security_Officer' as RolesEnum, - StarbaseDefenseOperator: 'Starbase_Defense_Operator' as RolesEnum, - StarbaseFuelTechnician: 'Starbase_Fuel_Technician' as RolesEnum, - StationManager: 'Station_Manager' as RolesEnum, - TerrestrialCombatOfficer: 'Terrestrial_Combat_Officer' as RolesEnum, - TerrestrialLogisticsOfficer: 'Terrestrial_Logistics_Officer' as RolesEnum, - Trader: 'Trader' as RolesEnum - } - export type GrantableRolesEnum = 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Terrestrial_Combat_Officer' | 'Terrestrial_Logistics_Officer' | 'Trader'; - export const GrantableRolesEnum = { - AccountTake1: 'Account_Take_1' as GrantableRolesEnum, - AccountTake2: 'Account_Take_2' as GrantableRolesEnum, - AccountTake3: 'Account_Take_3' as GrantableRolesEnum, - AccountTake4: 'Account_Take_4' as GrantableRolesEnum, - AccountTake5: 'Account_Take_5' as GrantableRolesEnum, - AccountTake6: 'Account_Take_6' as GrantableRolesEnum, - AccountTake7: 'Account_Take_7' as GrantableRolesEnum, - Accountant: 'Accountant' as GrantableRolesEnum, - Auditor: 'Auditor' as GrantableRolesEnum, - CommunicationsOfficer: 'Communications_Officer' as GrantableRolesEnum, - ConfigEquipment: 'Config_Equipment' as GrantableRolesEnum, - ConfigStarbaseEquipment: 'Config_Starbase_Equipment' as GrantableRolesEnum, - ContainerTake1: 'Container_Take_1' as GrantableRolesEnum, - ContainerTake2: 'Container_Take_2' as GrantableRolesEnum, - ContainerTake3: 'Container_Take_3' as GrantableRolesEnum, - ContainerTake4: 'Container_Take_4' as GrantableRolesEnum, - ContainerTake5: 'Container_Take_5' as GrantableRolesEnum, - ContainerTake6: 'Container_Take_6' as GrantableRolesEnum, - ContainerTake7: 'Container_Take_7' as GrantableRolesEnum, - ContractManager: 'Contract_Manager' as GrantableRolesEnum, - Diplomat: 'Diplomat' as GrantableRolesEnum, - Director: 'Director' as GrantableRolesEnum, - FactoryManager: 'Factory_Manager' as GrantableRolesEnum, - FittingManager: 'Fitting_Manager' as GrantableRolesEnum, - HangarQuery1: 'Hangar_Query_1' as GrantableRolesEnum, - HangarQuery2: 'Hangar_Query_2' as GrantableRolesEnum, - HangarQuery3: 'Hangar_Query_3' as GrantableRolesEnum, - HangarQuery4: 'Hangar_Query_4' as GrantableRolesEnum, - HangarQuery5: 'Hangar_Query_5' as GrantableRolesEnum, - HangarQuery6: 'Hangar_Query_6' as GrantableRolesEnum, - HangarQuery7: 'Hangar_Query_7' as GrantableRolesEnum, - HangarTake1: 'Hangar_Take_1' as GrantableRolesEnum, - HangarTake2: 'Hangar_Take_2' as GrantableRolesEnum, - HangarTake3: 'Hangar_Take_3' as GrantableRolesEnum, - HangarTake4: 'Hangar_Take_4' as GrantableRolesEnum, - HangarTake5: 'Hangar_Take_5' as GrantableRolesEnum, - HangarTake6: 'Hangar_Take_6' as GrantableRolesEnum, - HangarTake7: 'Hangar_Take_7' as GrantableRolesEnum, - JuniorAccountant: 'Junior_Accountant' as GrantableRolesEnum, - PersonnelManager: 'Personnel_Manager' as GrantableRolesEnum, - RentFactoryFacility: 'Rent_Factory_Facility' as GrantableRolesEnum, - RentOffice: 'Rent_Office' as GrantableRolesEnum, - RentResearchFacility: 'Rent_Research_Facility' as GrantableRolesEnum, - SecurityOfficer: 'Security_Officer' as GrantableRolesEnum, - StarbaseDefenseOperator: 'Starbase_Defense_Operator' as GrantableRolesEnum, - StarbaseFuelTechnician: 'Starbase_Fuel_Technician' as GrantableRolesEnum, - StationManager: 'Station_Manager' as GrantableRolesEnum, - TerrestrialCombatOfficer: 'Terrestrial_Combat_Officer' as GrantableRolesEnum, - TerrestrialLogisticsOfficer: 'Terrestrial_Logistics_Officer' as GrantableRolesEnum, - Trader: 'Trader' as GrantableRolesEnum - } - export type RolesAtHqEnum = 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Terrestrial_Combat_Officer' | 'Terrestrial_Logistics_Officer' | 'Trader'; - export const RolesAtHqEnum = { - AccountTake1: 'Account_Take_1' as RolesAtHqEnum, - AccountTake2: 'Account_Take_2' as RolesAtHqEnum, - AccountTake3: 'Account_Take_3' as RolesAtHqEnum, - AccountTake4: 'Account_Take_4' as RolesAtHqEnum, - AccountTake5: 'Account_Take_5' as RolesAtHqEnum, - AccountTake6: 'Account_Take_6' as RolesAtHqEnum, - AccountTake7: 'Account_Take_7' as RolesAtHqEnum, - Accountant: 'Accountant' as RolesAtHqEnum, - Auditor: 'Auditor' as RolesAtHqEnum, - CommunicationsOfficer: 'Communications_Officer' as RolesAtHqEnum, - ConfigEquipment: 'Config_Equipment' as RolesAtHqEnum, - ConfigStarbaseEquipment: 'Config_Starbase_Equipment' as RolesAtHqEnum, - ContainerTake1: 'Container_Take_1' as RolesAtHqEnum, - ContainerTake2: 'Container_Take_2' as RolesAtHqEnum, - ContainerTake3: 'Container_Take_3' as RolesAtHqEnum, - ContainerTake4: 'Container_Take_4' as RolesAtHqEnum, - ContainerTake5: 'Container_Take_5' as RolesAtHqEnum, - ContainerTake6: 'Container_Take_6' as RolesAtHqEnum, - ContainerTake7: 'Container_Take_7' as RolesAtHqEnum, - ContractManager: 'Contract_Manager' as RolesAtHqEnum, - Diplomat: 'Diplomat' as RolesAtHqEnum, - Director: 'Director' as RolesAtHqEnum, - FactoryManager: 'Factory_Manager' as RolesAtHqEnum, - FittingManager: 'Fitting_Manager' as RolesAtHqEnum, - HangarQuery1: 'Hangar_Query_1' as RolesAtHqEnum, - HangarQuery2: 'Hangar_Query_2' as RolesAtHqEnum, - HangarQuery3: 'Hangar_Query_3' as RolesAtHqEnum, - HangarQuery4: 'Hangar_Query_4' as RolesAtHqEnum, - HangarQuery5: 'Hangar_Query_5' as RolesAtHqEnum, - HangarQuery6: 'Hangar_Query_6' as RolesAtHqEnum, - HangarQuery7: 'Hangar_Query_7' as RolesAtHqEnum, - HangarTake1: 'Hangar_Take_1' as RolesAtHqEnum, - HangarTake2: 'Hangar_Take_2' as RolesAtHqEnum, - HangarTake3: 'Hangar_Take_3' as RolesAtHqEnum, - HangarTake4: 'Hangar_Take_4' as RolesAtHqEnum, - HangarTake5: 'Hangar_Take_5' as RolesAtHqEnum, - HangarTake6: 'Hangar_Take_6' as RolesAtHqEnum, - HangarTake7: 'Hangar_Take_7' as RolesAtHqEnum, - JuniorAccountant: 'Junior_Accountant' as RolesAtHqEnum, - PersonnelManager: 'Personnel_Manager' as RolesAtHqEnum, - RentFactoryFacility: 'Rent_Factory_Facility' as RolesAtHqEnum, - RentOffice: 'Rent_Office' as RolesAtHqEnum, - RentResearchFacility: 'Rent_Research_Facility' as RolesAtHqEnum, - SecurityOfficer: 'Security_Officer' as RolesAtHqEnum, - StarbaseDefenseOperator: 'Starbase_Defense_Operator' as RolesAtHqEnum, - StarbaseFuelTechnician: 'Starbase_Fuel_Technician' as RolesAtHqEnum, - StationManager: 'Station_Manager' as RolesAtHqEnum, - TerrestrialCombatOfficer: 'Terrestrial_Combat_Officer' as RolesAtHqEnum, - TerrestrialLogisticsOfficer: 'Terrestrial_Logistics_Officer' as RolesAtHqEnum, - Trader: 'Trader' as RolesAtHqEnum - } - export type GrantableRolesAtHqEnum = 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Terrestrial_Combat_Officer' | 'Terrestrial_Logistics_Officer' | 'Trader'; - export const GrantableRolesAtHqEnum = { - AccountTake1: 'Account_Take_1' as GrantableRolesAtHqEnum, - AccountTake2: 'Account_Take_2' as GrantableRolesAtHqEnum, - AccountTake3: 'Account_Take_3' as GrantableRolesAtHqEnum, - AccountTake4: 'Account_Take_4' as GrantableRolesAtHqEnum, - AccountTake5: 'Account_Take_5' as GrantableRolesAtHqEnum, - AccountTake6: 'Account_Take_6' as GrantableRolesAtHqEnum, - AccountTake7: 'Account_Take_7' as GrantableRolesAtHqEnum, - Accountant: 'Accountant' as GrantableRolesAtHqEnum, - Auditor: 'Auditor' as GrantableRolesAtHqEnum, - CommunicationsOfficer: 'Communications_Officer' as GrantableRolesAtHqEnum, - ConfigEquipment: 'Config_Equipment' as GrantableRolesAtHqEnum, - ConfigStarbaseEquipment: 'Config_Starbase_Equipment' as GrantableRolesAtHqEnum, - ContainerTake1: 'Container_Take_1' as GrantableRolesAtHqEnum, - ContainerTake2: 'Container_Take_2' as GrantableRolesAtHqEnum, - ContainerTake3: 'Container_Take_3' as GrantableRolesAtHqEnum, - ContainerTake4: 'Container_Take_4' as GrantableRolesAtHqEnum, - ContainerTake5: 'Container_Take_5' as GrantableRolesAtHqEnum, - ContainerTake6: 'Container_Take_6' as GrantableRolesAtHqEnum, - ContainerTake7: 'Container_Take_7' as GrantableRolesAtHqEnum, - ContractManager: 'Contract_Manager' as GrantableRolesAtHqEnum, - Diplomat: 'Diplomat' as GrantableRolesAtHqEnum, - Director: 'Director' as GrantableRolesAtHqEnum, - FactoryManager: 'Factory_Manager' as GrantableRolesAtHqEnum, - FittingManager: 'Fitting_Manager' as GrantableRolesAtHqEnum, - HangarQuery1: 'Hangar_Query_1' as GrantableRolesAtHqEnum, - HangarQuery2: 'Hangar_Query_2' as GrantableRolesAtHqEnum, - HangarQuery3: 'Hangar_Query_3' as GrantableRolesAtHqEnum, - HangarQuery4: 'Hangar_Query_4' as GrantableRolesAtHqEnum, - HangarQuery5: 'Hangar_Query_5' as GrantableRolesAtHqEnum, - HangarQuery6: 'Hangar_Query_6' as GrantableRolesAtHqEnum, - HangarQuery7: 'Hangar_Query_7' as GrantableRolesAtHqEnum, - HangarTake1: 'Hangar_Take_1' as GrantableRolesAtHqEnum, - HangarTake2: 'Hangar_Take_2' as GrantableRolesAtHqEnum, - HangarTake3: 'Hangar_Take_3' as GrantableRolesAtHqEnum, - HangarTake4: 'Hangar_Take_4' as GrantableRolesAtHqEnum, - HangarTake5: 'Hangar_Take_5' as GrantableRolesAtHqEnum, - HangarTake6: 'Hangar_Take_6' as GrantableRolesAtHqEnum, - HangarTake7: 'Hangar_Take_7' as GrantableRolesAtHqEnum, - JuniorAccountant: 'Junior_Accountant' as GrantableRolesAtHqEnum, - PersonnelManager: 'Personnel_Manager' as GrantableRolesAtHqEnum, - RentFactoryFacility: 'Rent_Factory_Facility' as GrantableRolesAtHqEnum, - RentOffice: 'Rent_Office' as GrantableRolesAtHqEnum, - RentResearchFacility: 'Rent_Research_Facility' as GrantableRolesAtHqEnum, - SecurityOfficer: 'Security_Officer' as GrantableRolesAtHqEnum, - StarbaseDefenseOperator: 'Starbase_Defense_Operator' as GrantableRolesAtHqEnum, - StarbaseFuelTechnician: 'Starbase_Fuel_Technician' as GrantableRolesAtHqEnum, - StationManager: 'Station_Manager' as GrantableRolesAtHqEnum, - TerrestrialCombatOfficer: 'Terrestrial_Combat_Officer' as GrantableRolesAtHqEnum, - TerrestrialLogisticsOfficer: 'Terrestrial_Logistics_Officer' as GrantableRolesAtHqEnum, - Trader: 'Trader' as GrantableRolesAtHqEnum - } - export type RolesAtBaseEnum = 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Terrestrial_Combat_Officer' | 'Terrestrial_Logistics_Officer' | 'Trader'; - export const RolesAtBaseEnum = { - AccountTake1: 'Account_Take_1' as RolesAtBaseEnum, - AccountTake2: 'Account_Take_2' as RolesAtBaseEnum, - AccountTake3: 'Account_Take_3' as RolesAtBaseEnum, - AccountTake4: 'Account_Take_4' as RolesAtBaseEnum, - AccountTake5: 'Account_Take_5' as RolesAtBaseEnum, - AccountTake6: 'Account_Take_6' as RolesAtBaseEnum, - AccountTake7: 'Account_Take_7' as RolesAtBaseEnum, - Accountant: 'Accountant' as RolesAtBaseEnum, - Auditor: 'Auditor' as RolesAtBaseEnum, - CommunicationsOfficer: 'Communications_Officer' as RolesAtBaseEnum, - ConfigEquipment: 'Config_Equipment' as RolesAtBaseEnum, - ConfigStarbaseEquipment: 'Config_Starbase_Equipment' as RolesAtBaseEnum, - ContainerTake1: 'Container_Take_1' as RolesAtBaseEnum, - ContainerTake2: 'Container_Take_2' as RolesAtBaseEnum, - ContainerTake3: 'Container_Take_3' as RolesAtBaseEnum, - ContainerTake4: 'Container_Take_4' as RolesAtBaseEnum, - ContainerTake5: 'Container_Take_5' as RolesAtBaseEnum, - ContainerTake6: 'Container_Take_6' as RolesAtBaseEnum, - ContainerTake7: 'Container_Take_7' as RolesAtBaseEnum, - ContractManager: 'Contract_Manager' as RolesAtBaseEnum, - Diplomat: 'Diplomat' as RolesAtBaseEnum, - Director: 'Director' as RolesAtBaseEnum, - FactoryManager: 'Factory_Manager' as RolesAtBaseEnum, - FittingManager: 'Fitting_Manager' as RolesAtBaseEnum, - HangarQuery1: 'Hangar_Query_1' as RolesAtBaseEnum, - HangarQuery2: 'Hangar_Query_2' as RolesAtBaseEnum, - HangarQuery3: 'Hangar_Query_3' as RolesAtBaseEnum, - HangarQuery4: 'Hangar_Query_4' as RolesAtBaseEnum, - HangarQuery5: 'Hangar_Query_5' as RolesAtBaseEnum, - HangarQuery6: 'Hangar_Query_6' as RolesAtBaseEnum, - HangarQuery7: 'Hangar_Query_7' as RolesAtBaseEnum, - HangarTake1: 'Hangar_Take_1' as RolesAtBaseEnum, - HangarTake2: 'Hangar_Take_2' as RolesAtBaseEnum, - HangarTake3: 'Hangar_Take_3' as RolesAtBaseEnum, - HangarTake4: 'Hangar_Take_4' as RolesAtBaseEnum, - HangarTake5: 'Hangar_Take_5' as RolesAtBaseEnum, - HangarTake6: 'Hangar_Take_6' as RolesAtBaseEnum, - HangarTake7: 'Hangar_Take_7' as RolesAtBaseEnum, - JuniorAccountant: 'Junior_Accountant' as RolesAtBaseEnum, - PersonnelManager: 'Personnel_Manager' as RolesAtBaseEnum, - RentFactoryFacility: 'Rent_Factory_Facility' as RolesAtBaseEnum, - RentOffice: 'Rent_Office' as RolesAtBaseEnum, - RentResearchFacility: 'Rent_Research_Facility' as RolesAtBaseEnum, - SecurityOfficer: 'Security_Officer' as RolesAtBaseEnum, - StarbaseDefenseOperator: 'Starbase_Defense_Operator' as RolesAtBaseEnum, - StarbaseFuelTechnician: 'Starbase_Fuel_Technician' as RolesAtBaseEnum, - StationManager: 'Station_Manager' as RolesAtBaseEnum, - TerrestrialCombatOfficer: 'Terrestrial_Combat_Officer' as RolesAtBaseEnum, - TerrestrialLogisticsOfficer: 'Terrestrial_Logistics_Officer' as RolesAtBaseEnum, - Trader: 'Trader' as RolesAtBaseEnum - } - export type GrantableRolesAtBaseEnum = 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Terrestrial_Combat_Officer' | 'Terrestrial_Logistics_Officer' | 'Trader'; - export const GrantableRolesAtBaseEnum = { - AccountTake1: 'Account_Take_1' as GrantableRolesAtBaseEnum, - AccountTake2: 'Account_Take_2' as GrantableRolesAtBaseEnum, - AccountTake3: 'Account_Take_3' as GrantableRolesAtBaseEnum, - AccountTake4: 'Account_Take_4' as GrantableRolesAtBaseEnum, - AccountTake5: 'Account_Take_5' as GrantableRolesAtBaseEnum, - AccountTake6: 'Account_Take_6' as GrantableRolesAtBaseEnum, - AccountTake7: 'Account_Take_7' as GrantableRolesAtBaseEnum, - Accountant: 'Accountant' as GrantableRolesAtBaseEnum, - Auditor: 'Auditor' as GrantableRolesAtBaseEnum, - CommunicationsOfficer: 'Communications_Officer' as GrantableRolesAtBaseEnum, - ConfigEquipment: 'Config_Equipment' as GrantableRolesAtBaseEnum, - ConfigStarbaseEquipment: 'Config_Starbase_Equipment' as GrantableRolesAtBaseEnum, - ContainerTake1: 'Container_Take_1' as GrantableRolesAtBaseEnum, - ContainerTake2: 'Container_Take_2' as GrantableRolesAtBaseEnum, - ContainerTake3: 'Container_Take_3' as GrantableRolesAtBaseEnum, - ContainerTake4: 'Container_Take_4' as GrantableRolesAtBaseEnum, - ContainerTake5: 'Container_Take_5' as GrantableRolesAtBaseEnum, - ContainerTake6: 'Container_Take_6' as GrantableRolesAtBaseEnum, - ContainerTake7: 'Container_Take_7' as GrantableRolesAtBaseEnum, - ContractManager: 'Contract_Manager' as GrantableRolesAtBaseEnum, - Diplomat: 'Diplomat' as GrantableRolesAtBaseEnum, - Director: 'Director' as GrantableRolesAtBaseEnum, - FactoryManager: 'Factory_Manager' as GrantableRolesAtBaseEnum, - FittingManager: 'Fitting_Manager' as GrantableRolesAtBaseEnum, - HangarQuery1: 'Hangar_Query_1' as GrantableRolesAtBaseEnum, - HangarQuery2: 'Hangar_Query_2' as GrantableRolesAtBaseEnum, - HangarQuery3: 'Hangar_Query_3' as GrantableRolesAtBaseEnum, - HangarQuery4: 'Hangar_Query_4' as GrantableRolesAtBaseEnum, - HangarQuery5: 'Hangar_Query_5' as GrantableRolesAtBaseEnum, - HangarQuery6: 'Hangar_Query_6' as GrantableRolesAtBaseEnum, - HangarQuery7: 'Hangar_Query_7' as GrantableRolesAtBaseEnum, - HangarTake1: 'Hangar_Take_1' as GrantableRolesAtBaseEnum, - HangarTake2: 'Hangar_Take_2' as GrantableRolesAtBaseEnum, - HangarTake3: 'Hangar_Take_3' as GrantableRolesAtBaseEnum, - HangarTake4: 'Hangar_Take_4' as GrantableRolesAtBaseEnum, - HangarTake5: 'Hangar_Take_5' as GrantableRolesAtBaseEnum, - HangarTake6: 'Hangar_Take_6' as GrantableRolesAtBaseEnum, - HangarTake7: 'Hangar_Take_7' as GrantableRolesAtBaseEnum, - JuniorAccountant: 'Junior_Accountant' as GrantableRolesAtBaseEnum, - PersonnelManager: 'Personnel_Manager' as GrantableRolesAtBaseEnum, - RentFactoryFacility: 'Rent_Factory_Facility' as GrantableRolesAtBaseEnum, - RentOffice: 'Rent_Office' as GrantableRolesAtBaseEnum, - RentResearchFacility: 'Rent_Research_Facility' as GrantableRolesAtBaseEnum, - SecurityOfficer: 'Security_Officer' as GrantableRolesAtBaseEnum, - StarbaseDefenseOperator: 'Starbase_Defense_Operator' as GrantableRolesAtBaseEnum, - StarbaseFuelTechnician: 'Starbase_Fuel_Technician' as GrantableRolesAtBaseEnum, - StationManager: 'Station_Manager' as GrantableRolesAtBaseEnum, - TerrestrialCombatOfficer: 'Terrestrial_Combat_Officer' as GrantableRolesAtBaseEnum, - TerrestrialLogisticsOfficer: 'Terrestrial_Logistics_Officer' as GrantableRolesAtBaseEnum, - Trader: 'Trader' as GrantableRolesAtBaseEnum - } - export type RolesAtOtherEnum = 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Terrestrial_Combat_Officer' | 'Terrestrial_Logistics_Officer' | 'Trader'; - export const RolesAtOtherEnum = { - AccountTake1: 'Account_Take_1' as RolesAtOtherEnum, - AccountTake2: 'Account_Take_2' as RolesAtOtherEnum, - AccountTake3: 'Account_Take_3' as RolesAtOtherEnum, - AccountTake4: 'Account_Take_4' as RolesAtOtherEnum, - AccountTake5: 'Account_Take_5' as RolesAtOtherEnum, - AccountTake6: 'Account_Take_6' as RolesAtOtherEnum, - AccountTake7: 'Account_Take_7' as RolesAtOtherEnum, - Accountant: 'Accountant' as RolesAtOtherEnum, - Auditor: 'Auditor' as RolesAtOtherEnum, - CommunicationsOfficer: 'Communications_Officer' as RolesAtOtherEnum, - ConfigEquipment: 'Config_Equipment' as RolesAtOtherEnum, - ConfigStarbaseEquipment: 'Config_Starbase_Equipment' as RolesAtOtherEnum, - ContainerTake1: 'Container_Take_1' as RolesAtOtherEnum, - ContainerTake2: 'Container_Take_2' as RolesAtOtherEnum, - ContainerTake3: 'Container_Take_3' as RolesAtOtherEnum, - ContainerTake4: 'Container_Take_4' as RolesAtOtherEnum, - ContainerTake5: 'Container_Take_5' as RolesAtOtherEnum, - ContainerTake6: 'Container_Take_6' as RolesAtOtherEnum, - ContainerTake7: 'Container_Take_7' as RolesAtOtherEnum, - ContractManager: 'Contract_Manager' as RolesAtOtherEnum, - Diplomat: 'Diplomat' as RolesAtOtherEnum, - Director: 'Director' as RolesAtOtherEnum, - FactoryManager: 'Factory_Manager' as RolesAtOtherEnum, - FittingManager: 'Fitting_Manager' as RolesAtOtherEnum, - HangarQuery1: 'Hangar_Query_1' as RolesAtOtherEnum, - HangarQuery2: 'Hangar_Query_2' as RolesAtOtherEnum, - HangarQuery3: 'Hangar_Query_3' as RolesAtOtherEnum, - HangarQuery4: 'Hangar_Query_4' as RolesAtOtherEnum, - HangarQuery5: 'Hangar_Query_5' as RolesAtOtherEnum, - HangarQuery6: 'Hangar_Query_6' as RolesAtOtherEnum, - HangarQuery7: 'Hangar_Query_7' as RolesAtOtherEnum, - HangarTake1: 'Hangar_Take_1' as RolesAtOtherEnum, - HangarTake2: 'Hangar_Take_2' as RolesAtOtherEnum, - HangarTake3: 'Hangar_Take_3' as RolesAtOtherEnum, - HangarTake4: 'Hangar_Take_4' as RolesAtOtherEnum, - HangarTake5: 'Hangar_Take_5' as RolesAtOtherEnum, - HangarTake6: 'Hangar_Take_6' as RolesAtOtherEnum, - HangarTake7: 'Hangar_Take_7' as RolesAtOtherEnum, - JuniorAccountant: 'Junior_Accountant' as RolesAtOtherEnum, - PersonnelManager: 'Personnel_Manager' as RolesAtOtherEnum, - RentFactoryFacility: 'Rent_Factory_Facility' as RolesAtOtherEnum, - RentOffice: 'Rent_Office' as RolesAtOtherEnum, - RentResearchFacility: 'Rent_Research_Facility' as RolesAtOtherEnum, - SecurityOfficer: 'Security_Officer' as RolesAtOtherEnum, - StarbaseDefenseOperator: 'Starbase_Defense_Operator' as RolesAtOtherEnum, - StarbaseFuelTechnician: 'Starbase_Fuel_Technician' as RolesAtOtherEnum, - StationManager: 'Station_Manager' as RolesAtOtherEnum, - TerrestrialCombatOfficer: 'Terrestrial_Combat_Officer' as RolesAtOtherEnum, - TerrestrialLogisticsOfficer: 'Terrestrial_Logistics_Officer' as RolesAtOtherEnum, - Trader: 'Trader' as RolesAtOtherEnum - } - export type GrantableRolesAtOtherEnum = 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Terrestrial_Combat_Officer' | 'Terrestrial_Logistics_Officer' | 'Trader'; - export const GrantableRolesAtOtherEnum = { - AccountTake1: 'Account_Take_1' as GrantableRolesAtOtherEnum, - AccountTake2: 'Account_Take_2' as GrantableRolesAtOtherEnum, - AccountTake3: 'Account_Take_3' as GrantableRolesAtOtherEnum, - AccountTake4: 'Account_Take_4' as GrantableRolesAtOtherEnum, - AccountTake5: 'Account_Take_5' as GrantableRolesAtOtherEnum, - AccountTake6: 'Account_Take_6' as GrantableRolesAtOtherEnum, - AccountTake7: 'Account_Take_7' as GrantableRolesAtOtherEnum, - Accountant: 'Accountant' as GrantableRolesAtOtherEnum, - Auditor: 'Auditor' as GrantableRolesAtOtherEnum, - CommunicationsOfficer: 'Communications_Officer' as GrantableRolesAtOtherEnum, - ConfigEquipment: 'Config_Equipment' as GrantableRolesAtOtherEnum, - ConfigStarbaseEquipment: 'Config_Starbase_Equipment' as GrantableRolesAtOtherEnum, - ContainerTake1: 'Container_Take_1' as GrantableRolesAtOtherEnum, - ContainerTake2: 'Container_Take_2' as GrantableRolesAtOtherEnum, - ContainerTake3: 'Container_Take_3' as GrantableRolesAtOtherEnum, - ContainerTake4: 'Container_Take_4' as GrantableRolesAtOtherEnum, - ContainerTake5: 'Container_Take_5' as GrantableRolesAtOtherEnum, - ContainerTake6: 'Container_Take_6' as GrantableRolesAtOtherEnum, - ContainerTake7: 'Container_Take_7' as GrantableRolesAtOtherEnum, - ContractManager: 'Contract_Manager' as GrantableRolesAtOtherEnum, - Diplomat: 'Diplomat' as GrantableRolesAtOtherEnum, - Director: 'Director' as GrantableRolesAtOtherEnum, - FactoryManager: 'Factory_Manager' as GrantableRolesAtOtherEnum, - FittingManager: 'Fitting_Manager' as GrantableRolesAtOtherEnum, - HangarQuery1: 'Hangar_Query_1' as GrantableRolesAtOtherEnum, - HangarQuery2: 'Hangar_Query_2' as GrantableRolesAtOtherEnum, - HangarQuery3: 'Hangar_Query_3' as GrantableRolesAtOtherEnum, - HangarQuery4: 'Hangar_Query_4' as GrantableRolesAtOtherEnum, - HangarQuery5: 'Hangar_Query_5' as GrantableRolesAtOtherEnum, - HangarQuery6: 'Hangar_Query_6' as GrantableRolesAtOtherEnum, - HangarQuery7: 'Hangar_Query_7' as GrantableRolesAtOtherEnum, - HangarTake1: 'Hangar_Take_1' as GrantableRolesAtOtherEnum, - HangarTake2: 'Hangar_Take_2' as GrantableRolesAtOtherEnum, - HangarTake3: 'Hangar_Take_3' as GrantableRolesAtOtherEnum, - HangarTake4: 'Hangar_Take_4' as GrantableRolesAtOtherEnum, - HangarTake5: 'Hangar_Take_5' as GrantableRolesAtOtherEnum, - HangarTake6: 'Hangar_Take_6' as GrantableRolesAtOtherEnum, - HangarTake7: 'Hangar_Take_7' as GrantableRolesAtOtherEnum, - JuniorAccountant: 'Junior_Accountant' as GrantableRolesAtOtherEnum, - PersonnelManager: 'Personnel_Manager' as GrantableRolesAtOtherEnum, - RentFactoryFacility: 'Rent_Factory_Facility' as GrantableRolesAtOtherEnum, - RentOffice: 'Rent_Office' as GrantableRolesAtOtherEnum, - RentResearchFacility: 'Rent_Research_Facility' as GrantableRolesAtOtherEnum, - SecurityOfficer: 'Security_Officer' as GrantableRolesAtOtherEnum, - StarbaseDefenseOperator: 'Starbase_Defense_Operator' as GrantableRolesAtOtherEnum, - StarbaseFuelTechnician: 'Starbase_Fuel_Technician' as GrantableRolesAtOtherEnum, - StationManager: 'Station_Manager' as GrantableRolesAtOtherEnum, - TerrestrialCombatOfficer: 'Terrestrial_Combat_Officer' as GrantableRolesAtOtherEnum, - TerrestrialLogisticsOfficer: 'Terrestrial_Logistics_Officer' as GrantableRolesAtOtherEnum, - Trader: 'Trader' as GrantableRolesAtOtherEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdRolesHistory200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdRolesHistory200Ok.ts deleted file mode 100755 index 58b1d0e..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdRolesHistory200Ok.ts +++ /dev/null @@ -1,161 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdRolesHistory200Ok { - /** - * The character whose roles are changed - */ - characterId: number; - /** - * changed_at string - */ - changedAt: Date; - /** - * ID of the character who issued this change - */ - issuerId: number; - /** - * role_type string - */ - roleType: GetCorporationsCorporationIdRolesHistory200Ok.RoleTypeEnum; - /** - * old_roles array - */ - oldRoles: Array; - /** - * new_roles array - */ - newRoles: Array; -} -export namespace GetCorporationsCorporationIdRolesHistory200Ok { - export type RoleTypeEnum = 'grantable_roles' | 'grantable_roles_at_base' | 'grantable_roles_at_hq' | 'grantable_roles_at_other' | 'roles' | 'roles_at_base' | 'roles_at_hq' | 'roles_at_other'; - export const RoleTypeEnum = { - GrantableRoles: 'grantable_roles' as RoleTypeEnum, - GrantableRolesAtBase: 'grantable_roles_at_base' as RoleTypeEnum, - GrantableRolesAtHq: 'grantable_roles_at_hq' as RoleTypeEnum, - GrantableRolesAtOther: 'grantable_roles_at_other' as RoleTypeEnum, - Roles: 'roles' as RoleTypeEnum, - RolesAtBase: 'roles_at_base' as RoleTypeEnum, - RolesAtHq: 'roles_at_hq' as RoleTypeEnum, - RolesAtOther: 'roles_at_other' as RoleTypeEnum - } - export type OldRolesEnum = 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Terrestrial_Combat_Officer' | 'Terrestrial_Logistics_Officer' | 'Trader'; - export const OldRolesEnum = { - AccountTake1: 'Account_Take_1' as OldRolesEnum, - AccountTake2: 'Account_Take_2' as OldRolesEnum, - AccountTake3: 'Account_Take_3' as OldRolesEnum, - AccountTake4: 'Account_Take_4' as OldRolesEnum, - AccountTake5: 'Account_Take_5' as OldRolesEnum, - AccountTake6: 'Account_Take_6' as OldRolesEnum, - AccountTake7: 'Account_Take_7' as OldRolesEnum, - Accountant: 'Accountant' as OldRolesEnum, - Auditor: 'Auditor' as OldRolesEnum, - CommunicationsOfficer: 'Communications_Officer' as OldRolesEnum, - ConfigEquipment: 'Config_Equipment' as OldRolesEnum, - ConfigStarbaseEquipment: 'Config_Starbase_Equipment' as OldRolesEnum, - ContainerTake1: 'Container_Take_1' as OldRolesEnum, - ContainerTake2: 'Container_Take_2' as OldRolesEnum, - ContainerTake3: 'Container_Take_3' as OldRolesEnum, - ContainerTake4: 'Container_Take_4' as OldRolesEnum, - ContainerTake5: 'Container_Take_5' as OldRolesEnum, - ContainerTake6: 'Container_Take_6' as OldRolesEnum, - ContainerTake7: 'Container_Take_7' as OldRolesEnum, - ContractManager: 'Contract_Manager' as OldRolesEnum, - Diplomat: 'Diplomat' as OldRolesEnum, - Director: 'Director' as OldRolesEnum, - FactoryManager: 'Factory_Manager' as OldRolesEnum, - FittingManager: 'Fitting_Manager' as OldRolesEnum, - HangarQuery1: 'Hangar_Query_1' as OldRolesEnum, - HangarQuery2: 'Hangar_Query_2' as OldRolesEnum, - HangarQuery3: 'Hangar_Query_3' as OldRolesEnum, - HangarQuery4: 'Hangar_Query_4' as OldRolesEnum, - HangarQuery5: 'Hangar_Query_5' as OldRolesEnum, - HangarQuery6: 'Hangar_Query_6' as OldRolesEnum, - HangarQuery7: 'Hangar_Query_7' as OldRolesEnum, - HangarTake1: 'Hangar_Take_1' as OldRolesEnum, - HangarTake2: 'Hangar_Take_2' as OldRolesEnum, - HangarTake3: 'Hangar_Take_3' as OldRolesEnum, - HangarTake4: 'Hangar_Take_4' as OldRolesEnum, - HangarTake5: 'Hangar_Take_5' as OldRolesEnum, - HangarTake6: 'Hangar_Take_6' as OldRolesEnum, - HangarTake7: 'Hangar_Take_7' as OldRolesEnum, - JuniorAccountant: 'Junior_Accountant' as OldRolesEnum, - PersonnelManager: 'Personnel_Manager' as OldRolesEnum, - RentFactoryFacility: 'Rent_Factory_Facility' as OldRolesEnum, - RentOffice: 'Rent_Office' as OldRolesEnum, - RentResearchFacility: 'Rent_Research_Facility' as OldRolesEnum, - SecurityOfficer: 'Security_Officer' as OldRolesEnum, - StarbaseDefenseOperator: 'Starbase_Defense_Operator' as OldRolesEnum, - StarbaseFuelTechnician: 'Starbase_Fuel_Technician' as OldRolesEnum, - StationManager: 'Station_Manager' as OldRolesEnum, - TerrestrialCombatOfficer: 'Terrestrial_Combat_Officer' as OldRolesEnum, - TerrestrialLogisticsOfficer: 'Terrestrial_Logistics_Officer' as OldRolesEnum, - Trader: 'Trader' as OldRolesEnum - } - export type NewRolesEnum = 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Terrestrial_Combat_Officer' | 'Terrestrial_Logistics_Officer' | 'Trader'; - export const NewRolesEnum = { - AccountTake1: 'Account_Take_1' as NewRolesEnum, - AccountTake2: 'Account_Take_2' as NewRolesEnum, - AccountTake3: 'Account_Take_3' as NewRolesEnum, - AccountTake4: 'Account_Take_4' as NewRolesEnum, - AccountTake5: 'Account_Take_5' as NewRolesEnum, - AccountTake6: 'Account_Take_6' as NewRolesEnum, - AccountTake7: 'Account_Take_7' as NewRolesEnum, - Accountant: 'Accountant' as NewRolesEnum, - Auditor: 'Auditor' as NewRolesEnum, - CommunicationsOfficer: 'Communications_Officer' as NewRolesEnum, - ConfigEquipment: 'Config_Equipment' as NewRolesEnum, - ConfigStarbaseEquipment: 'Config_Starbase_Equipment' as NewRolesEnum, - ContainerTake1: 'Container_Take_1' as NewRolesEnum, - ContainerTake2: 'Container_Take_2' as NewRolesEnum, - ContainerTake3: 'Container_Take_3' as NewRolesEnum, - ContainerTake4: 'Container_Take_4' as NewRolesEnum, - ContainerTake5: 'Container_Take_5' as NewRolesEnum, - ContainerTake6: 'Container_Take_6' as NewRolesEnum, - ContainerTake7: 'Container_Take_7' as NewRolesEnum, - ContractManager: 'Contract_Manager' as NewRolesEnum, - Diplomat: 'Diplomat' as NewRolesEnum, - Director: 'Director' as NewRolesEnum, - FactoryManager: 'Factory_Manager' as NewRolesEnum, - FittingManager: 'Fitting_Manager' as NewRolesEnum, - HangarQuery1: 'Hangar_Query_1' as NewRolesEnum, - HangarQuery2: 'Hangar_Query_2' as NewRolesEnum, - HangarQuery3: 'Hangar_Query_3' as NewRolesEnum, - HangarQuery4: 'Hangar_Query_4' as NewRolesEnum, - HangarQuery5: 'Hangar_Query_5' as NewRolesEnum, - HangarQuery6: 'Hangar_Query_6' as NewRolesEnum, - HangarQuery7: 'Hangar_Query_7' as NewRolesEnum, - HangarTake1: 'Hangar_Take_1' as NewRolesEnum, - HangarTake2: 'Hangar_Take_2' as NewRolesEnum, - HangarTake3: 'Hangar_Take_3' as NewRolesEnum, - HangarTake4: 'Hangar_Take_4' as NewRolesEnum, - HangarTake5: 'Hangar_Take_5' as NewRolesEnum, - HangarTake6: 'Hangar_Take_6' as NewRolesEnum, - HangarTake7: 'Hangar_Take_7' as NewRolesEnum, - JuniorAccountant: 'Junior_Accountant' as NewRolesEnum, - PersonnelManager: 'Personnel_Manager' as NewRolesEnum, - RentFactoryFacility: 'Rent_Factory_Facility' as NewRolesEnum, - RentOffice: 'Rent_Office' as NewRolesEnum, - RentResearchFacility: 'Rent_Research_Facility' as NewRolesEnum, - SecurityOfficer: 'Security_Officer' as NewRolesEnum, - StarbaseDefenseOperator: 'Starbase_Defense_Operator' as NewRolesEnum, - StarbaseFuelTechnician: 'Starbase_Fuel_Technician' as NewRolesEnum, - StationManager: 'Station_Manager' as NewRolesEnum, - TerrestrialCombatOfficer: 'Terrestrial_Combat_Officer' as NewRolesEnum, - TerrestrialLogisticsOfficer: 'Terrestrial_Logistics_Officer' as NewRolesEnum, - Trader: 'Trader' as NewRolesEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdShareholders200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdShareholders200Ok.ts deleted file mode 100755 index cc4892d..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdShareholders200Ok.ts +++ /dev/null @@ -1,37 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdShareholders200Ok { - /** - * shareholder_id integer - */ - shareholderId: number; - /** - * shareholder_type string - */ - shareholderType: GetCorporationsCorporationIdShareholders200Ok.ShareholderTypeEnum; - /** - * share_count integer - */ - shareCount: number; -} -export namespace GetCorporationsCorporationIdShareholders200Ok { - export type ShareholderTypeEnum = 'character' | 'corporation'; - export const ShareholderTypeEnum = { - Character: 'character' as ShareholderTypeEnum, - Corporation: 'corporation' as ShareholderTypeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdStandings200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdStandings200Ok.ts deleted file mode 100755 index 34c2b99..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdStandings200Ok.ts +++ /dev/null @@ -1,38 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdStandings200Ok { - /** - * from_id integer - */ - fromId: number; - /** - * from_type string - */ - fromType: GetCorporationsCorporationIdStandings200Ok.FromTypeEnum; - /** - * standing number - */ - standing: number; -} -export namespace GetCorporationsCorporationIdStandings200Ok { - export type FromTypeEnum = 'agent' | 'npc_corp' | 'faction'; - export const FromTypeEnum = { - Agent: 'agent' as FromTypeEnum, - NpcCorp: 'npc_corp' as FromTypeEnum, - Faction: 'faction' as FromTypeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdStarbases200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdStarbases200Ok.ts deleted file mode 100755 index 4ecd7ea..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdStarbases200Ok.ts +++ /dev/null @@ -1,60 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdStarbases200Ok { - /** - * Unique ID for this starbase (POS) - */ - starbaseId: number; - /** - * Starbase (POS) type - */ - typeId: number; - /** - * The solar system this starbase (POS) is in, unanchored POSes have this information - */ - systemId: number; - /** - * The moon this starbase (POS) is anchored on, unanchored POSes do not have this information - */ - moonId?: number; - /** - * state string - */ - state?: GetCorporationsCorporationIdStarbases200Ok.StateEnum; - /** - * When the POS started unanchoring, for starbases (POSes) in unanchoring state - */ - unanchorAt?: Date; - /** - * When the POS will be out of reinforcement, for starbases (POSes) in reinforced state - */ - reinforcedUntil?: Date; - /** - * When the POS onlined, for starbases (POSes) in online state - */ - onlinedSince?: Date; -} -export namespace GetCorporationsCorporationIdStarbases200Ok { - export type StateEnum = 'offline' | 'online' | 'onlining' | 'reinforced' | 'unanchoring'; - export const StateEnum = { - Offline: 'offline' as StateEnum, - Online: 'online' as StateEnum, - Onlining: 'onlining' as StateEnum, - Reinforced: 'reinforced' as StateEnum, - Unanchoring: 'unanchoring' as StateEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdStarbasesStarbaseIdFuel.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdStarbasesStarbaseIdFuel.ts deleted file mode 100755 index cfbf09c..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdStarbasesStarbaseIdFuel.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * fuel object - */ -export interface GetCorporationsCorporationIdStarbasesStarbaseIdFuel { - /** - * type_id integer - */ - typeId: number; - /** - * quantity integer - */ - quantity: number; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdStarbasesStarbaseIdOk.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdStarbasesStarbaseIdOk.ts deleted file mode 100755 index fffa5f0..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdStarbasesStarbaseIdOk.ts +++ /dev/null @@ -1,119 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetCorporationsCorporationIdStarbasesStarbaseIdFuel } from './getCorporationsCorporationIdStarbasesStarbaseIdFuel'; - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdStarbasesStarbaseIdOk { - /** - * Who can view the starbase (POS)'s fule bay. Characters either need to have required role or belong to the starbase (POS) owner's corporation or alliance, as described by the enum, all other access settings follows the same scheme - */ - fuelBayView: GetCorporationsCorporationIdStarbasesStarbaseIdOk.FuelBayViewEnum; - /** - * Who can take fuel blocks out of the starbase (POS)'s fuel bay - */ - fuelBayTake: GetCorporationsCorporationIdStarbasesStarbaseIdOk.FuelBayTakeEnum; - /** - * Who can anchor starbase (POS) and its structures - */ - anchor: GetCorporationsCorporationIdStarbasesStarbaseIdOk.AnchorEnum; - /** - * Who can unanchor starbase (POS) and its structures - */ - unanchor: GetCorporationsCorporationIdStarbasesStarbaseIdOk.UnanchorEnum; - /** - * Who can online starbase (POS) and its structures - */ - online: GetCorporationsCorporationIdStarbasesStarbaseIdOk.OnlineEnum; - /** - * Who can offline starbase (POS) and its structures - */ - offline: GetCorporationsCorporationIdStarbasesStarbaseIdOk.OfflineEnum; - /** - * allow_corporation_members boolean - */ - allowCorporationMembers: boolean; - /** - * allow_alliance_members boolean - */ - allowAllianceMembers: boolean; - /** - * True if the starbase (POS) is using alliance standings, otherwise using corporation's - */ - useAllianceStandings: boolean; - /** - * Starbase (POS) will attack if target's standing is lower than this value - */ - attackStandingThreshold?: number; - /** - * Starbase (POS) will attack if target's security standing is lower than this value - */ - attackSecurityStatusThreshold?: number; - /** - * attack_if_other_security_status_dropping boolean - */ - attackIfOtherSecurityStatusDropping: boolean; - /** - * attack_if_at_war boolean - */ - attackIfAtWar: boolean; - /** - * Fuel blocks and other things that will be consumed when operating a starbase (POS) - */ - fuels?: Array; -} -export namespace GetCorporationsCorporationIdStarbasesStarbaseIdOk { - export type FuelBayViewEnum = 'alliance_member' | 'config_starbase_equipment_role' | 'corporation_member' | 'starbase_fuel_technician_role'; - export const FuelBayViewEnum = { - AllianceMember: 'alliance_member' as FuelBayViewEnum, - ConfigStarbaseEquipmentRole: 'config_starbase_equipment_role' as FuelBayViewEnum, - CorporationMember: 'corporation_member' as FuelBayViewEnum, - StarbaseFuelTechnicianRole: 'starbase_fuel_technician_role' as FuelBayViewEnum - } - export type FuelBayTakeEnum = 'alliance_member' | 'config_starbase_equipment_role' | 'corporation_member' | 'starbase_fuel_technician_role'; - export const FuelBayTakeEnum = { - AllianceMember: 'alliance_member' as FuelBayTakeEnum, - ConfigStarbaseEquipmentRole: 'config_starbase_equipment_role' as FuelBayTakeEnum, - CorporationMember: 'corporation_member' as FuelBayTakeEnum, - StarbaseFuelTechnicianRole: 'starbase_fuel_technician_role' as FuelBayTakeEnum - } - export type AnchorEnum = 'alliance_member' | 'config_starbase_equipment_role' | 'corporation_member' | 'starbase_fuel_technician_role'; - export const AnchorEnum = { - AllianceMember: 'alliance_member' as AnchorEnum, - ConfigStarbaseEquipmentRole: 'config_starbase_equipment_role' as AnchorEnum, - CorporationMember: 'corporation_member' as AnchorEnum, - StarbaseFuelTechnicianRole: 'starbase_fuel_technician_role' as AnchorEnum - } - export type UnanchorEnum = 'alliance_member' | 'config_starbase_equipment_role' | 'corporation_member' | 'starbase_fuel_technician_role'; - export const UnanchorEnum = { - AllianceMember: 'alliance_member' as UnanchorEnum, - ConfigStarbaseEquipmentRole: 'config_starbase_equipment_role' as UnanchorEnum, - CorporationMember: 'corporation_member' as UnanchorEnum, - StarbaseFuelTechnicianRole: 'starbase_fuel_technician_role' as UnanchorEnum - } - export type OnlineEnum = 'alliance_member' | 'config_starbase_equipment_role' | 'corporation_member' | 'starbase_fuel_technician_role'; - export const OnlineEnum = { - AllianceMember: 'alliance_member' as OnlineEnum, - ConfigStarbaseEquipmentRole: 'config_starbase_equipment_role' as OnlineEnum, - CorporationMember: 'corporation_member' as OnlineEnum, - StarbaseFuelTechnicianRole: 'starbase_fuel_technician_role' as OnlineEnum - } - export type OfflineEnum = 'alliance_member' | 'config_starbase_equipment_role' | 'corporation_member' | 'starbase_fuel_technician_role'; - export const OfflineEnum = { - AllianceMember: 'alliance_member' as OfflineEnum, - ConfigStarbaseEquipmentRole: 'config_starbase_equipment_role' as OfflineEnum, - CorporationMember: 'corporation_member' as OfflineEnum, - StarbaseFuelTechnicianRole: 'starbase_fuel_technician_role' as OfflineEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdStructures200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdStructures200Ok.ts deleted file mode 100755 index 63efeec..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdStructures200Ok.ts +++ /dev/null @@ -1,100 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetCorporationsCorporationIdStructuresService } from './getCorporationsCorporationIdStructuresService'; - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdStructures200Ok { - /** - * The Item ID of the structure - */ - structureId: number; - /** - * The type id of the structure - */ - typeId: number; - /** - * ID of the corporation that owns the structure - */ - corporationId: number; - /** - * The solar system the structure is in - */ - systemId: number; - /** - * The id of the ACL profile for this citadel - */ - profileId: number; - /** - * Date on which the structure will run out of fuel - */ - fuelExpires?: Date; - /** - * Contains a list of service upgrades, and their state - */ - services?: Array; - /** - * Date at which the structure entered it's current state - */ - stateTimerStart?: Date; - /** - * Date at which the structure will move to it's next state - */ - stateTimerEnd?: Date; - /** - * Date at which the structure will unanchor - */ - unanchorsAt?: Date; - /** - * state string - */ - state: GetCorporationsCorporationIdStructures200Ok.StateEnum; - /** - * The day of the week when the structure exits its final reinforcement period and becomes vulnerable to attack against its hull. Monday is 0 and Sunday is 6. - */ - reinforceWeekday: number; - /** - * The hour of day that determines the four hour window when the structure will randomly exit its reinforcement periods and become vulnerable to attack against its armor and/or hull. The structure will become vulnerable at a random time that is +/- 2 hours centered on the value of this property. - */ - reinforceHour: number; - /** - * The requested change to reinforce_weekday that will take effect at the time shown by next_reinforce_apply. - */ - nextReinforceWeekday?: number; - /** - * The requested change to reinforce_hour that will take effect at the time shown by next_reinforce_apply. - */ - nextReinforceHour?: number; - /** - * The date and time when the structure's newly requested reinforcement times (e.g. next_reinforce_hour and next_reinforce_day) will take effect. - */ - nextReinforceApply?: Date; -} -export namespace GetCorporationsCorporationIdStructures200Ok { - export type StateEnum = 'anchor_vulnerable' | 'anchoring' | 'armor_reinforce' | 'armor_vulnerable' | 'fitting_invulnerable' | 'hull_reinforce' | 'hull_vulnerable' | 'online_deprecated' | 'onlining_vulnerable' | 'shield_vulnerable' | 'unanchored' | 'unknown'; - export const StateEnum = { - AnchorVulnerable: 'anchor_vulnerable' as StateEnum, - Anchoring: 'anchoring' as StateEnum, - ArmorReinforce: 'armor_reinforce' as StateEnum, - ArmorVulnerable: 'armor_vulnerable' as StateEnum, - FittingInvulnerable: 'fitting_invulnerable' as StateEnum, - HullReinforce: 'hull_reinforce' as StateEnum, - HullVulnerable: 'hull_vulnerable' as StateEnum, - OnlineDeprecated: 'online_deprecated' as StateEnum, - OnliningVulnerable: 'onlining_vulnerable' as StateEnum, - ShieldVulnerable: 'shield_vulnerable' as StateEnum, - Unanchored: 'unanchored' as StateEnum, - Unknown: 'unknown' as StateEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdStructuresService.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdStructuresService.ts deleted file mode 100755 index c1c83cf..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdStructuresService.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * service object - */ -export interface GetCorporationsCorporationIdStructuresService { - /** - * name string - */ - name: string; - /** - * state string - */ - state: GetCorporationsCorporationIdStructuresService.StateEnum; -} -export namespace GetCorporationsCorporationIdStructuresService { - export type StateEnum = 'online' | 'offline' | 'cleanup'; - export const StateEnum = { - Online: 'online' as StateEnum, - Offline: 'offline' as StateEnum, - Cleanup: 'cleanup' as StateEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdTitles200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdTitles200Ok.ts deleted file mode 100755 index 5ce1236..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdTitles200Ok.ts +++ /dev/null @@ -1,484 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdTitles200Ok { - /** - * title_id integer - */ - titleId?: number; - /** - * name string - */ - name?: string; - /** - * roles array - */ - roles?: Array; - /** - * grantable_roles array - */ - grantableRoles?: Array; - /** - * roles_at_hq array - */ - rolesAtHq?: Array; - /** - * grantable_roles_at_hq array - */ - grantableRolesAtHq?: Array; - /** - * roles_at_base array - */ - rolesAtBase?: Array; - /** - * grantable_roles_at_base array - */ - grantableRolesAtBase?: Array; - /** - * roles_at_other array - */ - rolesAtOther?: Array; - /** - * grantable_roles_at_other array - */ - grantableRolesAtOther?: Array; -} -export namespace GetCorporationsCorporationIdTitles200Ok { - export type RolesEnum = 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Terrestrial_Combat_Officer' | 'Terrestrial_Logistics_Officer' | 'Trader'; - export const RolesEnum = { - AccountTake1: 'Account_Take_1' as RolesEnum, - AccountTake2: 'Account_Take_2' as RolesEnum, - AccountTake3: 'Account_Take_3' as RolesEnum, - AccountTake4: 'Account_Take_4' as RolesEnum, - AccountTake5: 'Account_Take_5' as RolesEnum, - AccountTake6: 'Account_Take_6' as RolesEnum, - AccountTake7: 'Account_Take_7' as RolesEnum, - Accountant: 'Accountant' as RolesEnum, - Auditor: 'Auditor' as RolesEnum, - CommunicationsOfficer: 'Communications_Officer' as RolesEnum, - ConfigEquipment: 'Config_Equipment' as RolesEnum, - ConfigStarbaseEquipment: 'Config_Starbase_Equipment' as RolesEnum, - ContainerTake1: 'Container_Take_1' as RolesEnum, - ContainerTake2: 'Container_Take_2' as RolesEnum, - ContainerTake3: 'Container_Take_3' as RolesEnum, - ContainerTake4: 'Container_Take_4' as RolesEnum, - ContainerTake5: 'Container_Take_5' as RolesEnum, - ContainerTake6: 'Container_Take_6' as RolesEnum, - ContainerTake7: 'Container_Take_7' as RolesEnum, - ContractManager: 'Contract_Manager' as RolesEnum, - Diplomat: 'Diplomat' as RolesEnum, - Director: 'Director' as RolesEnum, - FactoryManager: 'Factory_Manager' as RolesEnum, - FittingManager: 'Fitting_Manager' as RolesEnum, - HangarQuery1: 'Hangar_Query_1' as RolesEnum, - HangarQuery2: 'Hangar_Query_2' as RolesEnum, - HangarQuery3: 'Hangar_Query_3' as RolesEnum, - HangarQuery4: 'Hangar_Query_4' as RolesEnum, - HangarQuery5: 'Hangar_Query_5' as RolesEnum, - HangarQuery6: 'Hangar_Query_6' as RolesEnum, - HangarQuery7: 'Hangar_Query_7' as RolesEnum, - HangarTake1: 'Hangar_Take_1' as RolesEnum, - HangarTake2: 'Hangar_Take_2' as RolesEnum, - HangarTake3: 'Hangar_Take_3' as RolesEnum, - HangarTake4: 'Hangar_Take_4' as RolesEnum, - HangarTake5: 'Hangar_Take_5' as RolesEnum, - HangarTake6: 'Hangar_Take_6' as RolesEnum, - HangarTake7: 'Hangar_Take_7' as RolesEnum, - JuniorAccountant: 'Junior_Accountant' as RolesEnum, - PersonnelManager: 'Personnel_Manager' as RolesEnum, - RentFactoryFacility: 'Rent_Factory_Facility' as RolesEnum, - RentOffice: 'Rent_Office' as RolesEnum, - RentResearchFacility: 'Rent_Research_Facility' as RolesEnum, - SecurityOfficer: 'Security_Officer' as RolesEnum, - StarbaseDefenseOperator: 'Starbase_Defense_Operator' as RolesEnum, - StarbaseFuelTechnician: 'Starbase_Fuel_Technician' as RolesEnum, - StationManager: 'Station_Manager' as RolesEnum, - TerrestrialCombatOfficer: 'Terrestrial_Combat_Officer' as RolesEnum, - TerrestrialLogisticsOfficer: 'Terrestrial_Logistics_Officer' as RolesEnum, - Trader: 'Trader' as RolesEnum - } - export type GrantableRolesEnum = 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Terrestrial_Combat_Officer' | 'Terrestrial_Logistics_Officer' | 'Trader'; - export const GrantableRolesEnum = { - AccountTake1: 'Account_Take_1' as GrantableRolesEnum, - AccountTake2: 'Account_Take_2' as GrantableRolesEnum, - AccountTake3: 'Account_Take_3' as GrantableRolesEnum, - AccountTake4: 'Account_Take_4' as GrantableRolesEnum, - AccountTake5: 'Account_Take_5' as GrantableRolesEnum, - AccountTake6: 'Account_Take_6' as GrantableRolesEnum, - AccountTake7: 'Account_Take_7' as GrantableRolesEnum, - Accountant: 'Accountant' as GrantableRolesEnum, - Auditor: 'Auditor' as GrantableRolesEnum, - CommunicationsOfficer: 'Communications_Officer' as GrantableRolesEnum, - ConfigEquipment: 'Config_Equipment' as GrantableRolesEnum, - ConfigStarbaseEquipment: 'Config_Starbase_Equipment' as GrantableRolesEnum, - ContainerTake1: 'Container_Take_1' as GrantableRolesEnum, - ContainerTake2: 'Container_Take_2' as GrantableRolesEnum, - ContainerTake3: 'Container_Take_3' as GrantableRolesEnum, - ContainerTake4: 'Container_Take_4' as GrantableRolesEnum, - ContainerTake5: 'Container_Take_5' as GrantableRolesEnum, - ContainerTake6: 'Container_Take_6' as GrantableRolesEnum, - ContainerTake7: 'Container_Take_7' as GrantableRolesEnum, - ContractManager: 'Contract_Manager' as GrantableRolesEnum, - Diplomat: 'Diplomat' as GrantableRolesEnum, - Director: 'Director' as GrantableRolesEnum, - FactoryManager: 'Factory_Manager' as GrantableRolesEnum, - FittingManager: 'Fitting_Manager' as GrantableRolesEnum, - HangarQuery1: 'Hangar_Query_1' as GrantableRolesEnum, - HangarQuery2: 'Hangar_Query_2' as GrantableRolesEnum, - HangarQuery3: 'Hangar_Query_3' as GrantableRolesEnum, - HangarQuery4: 'Hangar_Query_4' as GrantableRolesEnum, - HangarQuery5: 'Hangar_Query_5' as GrantableRolesEnum, - HangarQuery6: 'Hangar_Query_6' as GrantableRolesEnum, - HangarQuery7: 'Hangar_Query_7' as GrantableRolesEnum, - HangarTake1: 'Hangar_Take_1' as GrantableRolesEnum, - HangarTake2: 'Hangar_Take_2' as GrantableRolesEnum, - HangarTake3: 'Hangar_Take_3' as GrantableRolesEnum, - HangarTake4: 'Hangar_Take_4' as GrantableRolesEnum, - HangarTake5: 'Hangar_Take_5' as GrantableRolesEnum, - HangarTake6: 'Hangar_Take_6' as GrantableRolesEnum, - HangarTake7: 'Hangar_Take_7' as GrantableRolesEnum, - JuniorAccountant: 'Junior_Accountant' as GrantableRolesEnum, - PersonnelManager: 'Personnel_Manager' as GrantableRolesEnum, - RentFactoryFacility: 'Rent_Factory_Facility' as GrantableRolesEnum, - RentOffice: 'Rent_Office' as GrantableRolesEnum, - RentResearchFacility: 'Rent_Research_Facility' as GrantableRolesEnum, - SecurityOfficer: 'Security_Officer' as GrantableRolesEnum, - StarbaseDefenseOperator: 'Starbase_Defense_Operator' as GrantableRolesEnum, - StarbaseFuelTechnician: 'Starbase_Fuel_Technician' as GrantableRolesEnum, - StationManager: 'Station_Manager' as GrantableRolesEnum, - TerrestrialCombatOfficer: 'Terrestrial_Combat_Officer' as GrantableRolesEnum, - TerrestrialLogisticsOfficer: 'Terrestrial_Logistics_Officer' as GrantableRolesEnum, - Trader: 'Trader' as GrantableRolesEnum - } - export type RolesAtHqEnum = 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Terrestrial_Combat_Officer' | 'Terrestrial_Logistics_Officer' | 'Trader'; - export const RolesAtHqEnum = { - AccountTake1: 'Account_Take_1' as RolesAtHqEnum, - AccountTake2: 'Account_Take_2' as RolesAtHqEnum, - AccountTake3: 'Account_Take_3' as RolesAtHqEnum, - AccountTake4: 'Account_Take_4' as RolesAtHqEnum, - AccountTake5: 'Account_Take_5' as RolesAtHqEnum, - AccountTake6: 'Account_Take_6' as RolesAtHqEnum, - AccountTake7: 'Account_Take_7' as RolesAtHqEnum, - Accountant: 'Accountant' as RolesAtHqEnum, - Auditor: 'Auditor' as RolesAtHqEnum, - CommunicationsOfficer: 'Communications_Officer' as RolesAtHqEnum, - ConfigEquipment: 'Config_Equipment' as RolesAtHqEnum, - ConfigStarbaseEquipment: 'Config_Starbase_Equipment' as RolesAtHqEnum, - ContainerTake1: 'Container_Take_1' as RolesAtHqEnum, - ContainerTake2: 'Container_Take_2' as RolesAtHqEnum, - ContainerTake3: 'Container_Take_3' as RolesAtHqEnum, - ContainerTake4: 'Container_Take_4' as RolesAtHqEnum, - ContainerTake5: 'Container_Take_5' as RolesAtHqEnum, - ContainerTake6: 'Container_Take_6' as RolesAtHqEnum, - ContainerTake7: 'Container_Take_7' as RolesAtHqEnum, - ContractManager: 'Contract_Manager' as RolesAtHqEnum, - Diplomat: 'Diplomat' as RolesAtHqEnum, - Director: 'Director' as RolesAtHqEnum, - FactoryManager: 'Factory_Manager' as RolesAtHqEnum, - FittingManager: 'Fitting_Manager' as RolesAtHqEnum, - HangarQuery1: 'Hangar_Query_1' as RolesAtHqEnum, - HangarQuery2: 'Hangar_Query_2' as RolesAtHqEnum, - HangarQuery3: 'Hangar_Query_3' as RolesAtHqEnum, - HangarQuery4: 'Hangar_Query_4' as RolesAtHqEnum, - HangarQuery5: 'Hangar_Query_5' as RolesAtHqEnum, - HangarQuery6: 'Hangar_Query_6' as RolesAtHqEnum, - HangarQuery7: 'Hangar_Query_7' as RolesAtHqEnum, - HangarTake1: 'Hangar_Take_1' as RolesAtHqEnum, - HangarTake2: 'Hangar_Take_2' as RolesAtHqEnum, - HangarTake3: 'Hangar_Take_3' as RolesAtHqEnum, - HangarTake4: 'Hangar_Take_4' as RolesAtHqEnum, - HangarTake5: 'Hangar_Take_5' as RolesAtHqEnum, - HangarTake6: 'Hangar_Take_6' as RolesAtHqEnum, - HangarTake7: 'Hangar_Take_7' as RolesAtHqEnum, - JuniorAccountant: 'Junior_Accountant' as RolesAtHqEnum, - PersonnelManager: 'Personnel_Manager' as RolesAtHqEnum, - RentFactoryFacility: 'Rent_Factory_Facility' as RolesAtHqEnum, - RentOffice: 'Rent_Office' as RolesAtHqEnum, - RentResearchFacility: 'Rent_Research_Facility' as RolesAtHqEnum, - SecurityOfficer: 'Security_Officer' as RolesAtHqEnum, - StarbaseDefenseOperator: 'Starbase_Defense_Operator' as RolesAtHqEnum, - StarbaseFuelTechnician: 'Starbase_Fuel_Technician' as RolesAtHqEnum, - StationManager: 'Station_Manager' as RolesAtHqEnum, - TerrestrialCombatOfficer: 'Terrestrial_Combat_Officer' as RolesAtHqEnum, - TerrestrialLogisticsOfficer: 'Terrestrial_Logistics_Officer' as RolesAtHqEnum, - Trader: 'Trader' as RolesAtHqEnum - } - export type GrantableRolesAtHqEnum = 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Terrestrial_Combat_Officer' | 'Terrestrial_Logistics_Officer' | 'Trader'; - export const GrantableRolesAtHqEnum = { - AccountTake1: 'Account_Take_1' as GrantableRolesAtHqEnum, - AccountTake2: 'Account_Take_2' as GrantableRolesAtHqEnum, - AccountTake3: 'Account_Take_3' as GrantableRolesAtHqEnum, - AccountTake4: 'Account_Take_4' as GrantableRolesAtHqEnum, - AccountTake5: 'Account_Take_5' as GrantableRolesAtHqEnum, - AccountTake6: 'Account_Take_6' as GrantableRolesAtHqEnum, - AccountTake7: 'Account_Take_7' as GrantableRolesAtHqEnum, - Accountant: 'Accountant' as GrantableRolesAtHqEnum, - Auditor: 'Auditor' as GrantableRolesAtHqEnum, - CommunicationsOfficer: 'Communications_Officer' as GrantableRolesAtHqEnum, - ConfigEquipment: 'Config_Equipment' as GrantableRolesAtHqEnum, - ConfigStarbaseEquipment: 'Config_Starbase_Equipment' as GrantableRolesAtHqEnum, - ContainerTake1: 'Container_Take_1' as GrantableRolesAtHqEnum, - ContainerTake2: 'Container_Take_2' as GrantableRolesAtHqEnum, - ContainerTake3: 'Container_Take_3' as GrantableRolesAtHqEnum, - ContainerTake4: 'Container_Take_4' as GrantableRolesAtHqEnum, - ContainerTake5: 'Container_Take_5' as GrantableRolesAtHqEnum, - ContainerTake6: 'Container_Take_6' as GrantableRolesAtHqEnum, - ContainerTake7: 'Container_Take_7' as GrantableRolesAtHqEnum, - ContractManager: 'Contract_Manager' as GrantableRolesAtHqEnum, - Diplomat: 'Diplomat' as GrantableRolesAtHqEnum, - Director: 'Director' as GrantableRolesAtHqEnum, - FactoryManager: 'Factory_Manager' as GrantableRolesAtHqEnum, - FittingManager: 'Fitting_Manager' as GrantableRolesAtHqEnum, - HangarQuery1: 'Hangar_Query_1' as GrantableRolesAtHqEnum, - HangarQuery2: 'Hangar_Query_2' as GrantableRolesAtHqEnum, - HangarQuery3: 'Hangar_Query_3' as GrantableRolesAtHqEnum, - HangarQuery4: 'Hangar_Query_4' as GrantableRolesAtHqEnum, - HangarQuery5: 'Hangar_Query_5' as GrantableRolesAtHqEnum, - HangarQuery6: 'Hangar_Query_6' as GrantableRolesAtHqEnum, - HangarQuery7: 'Hangar_Query_7' as GrantableRolesAtHqEnum, - HangarTake1: 'Hangar_Take_1' as GrantableRolesAtHqEnum, - HangarTake2: 'Hangar_Take_2' as GrantableRolesAtHqEnum, - HangarTake3: 'Hangar_Take_3' as GrantableRolesAtHqEnum, - HangarTake4: 'Hangar_Take_4' as GrantableRolesAtHqEnum, - HangarTake5: 'Hangar_Take_5' as GrantableRolesAtHqEnum, - HangarTake6: 'Hangar_Take_6' as GrantableRolesAtHqEnum, - HangarTake7: 'Hangar_Take_7' as GrantableRolesAtHqEnum, - JuniorAccountant: 'Junior_Accountant' as GrantableRolesAtHqEnum, - PersonnelManager: 'Personnel_Manager' as GrantableRolesAtHqEnum, - RentFactoryFacility: 'Rent_Factory_Facility' as GrantableRolesAtHqEnum, - RentOffice: 'Rent_Office' as GrantableRolesAtHqEnum, - RentResearchFacility: 'Rent_Research_Facility' as GrantableRolesAtHqEnum, - SecurityOfficer: 'Security_Officer' as GrantableRolesAtHqEnum, - StarbaseDefenseOperator: 'Starbase_Defense_Operator' as GrantableRolesAtHqEnum, - StarbaseFuelTechnician: 'Starbase_Fuel_Technician' as GrantableRolesAtHqEnum, - StationManager: 'Station_Manager' as GrantableRolesAtHqEnum, - TerrestrialCombatOfficer: 'Terrestrial_Combat_Officer' as GrantableRolesAtHqEnum, - TerrestrialLogisticsOfficer: 'Terrestrial_Logistics_Officer' as GrantableRolesAtHqEnum, - Trader: 'Trader' as GrantableRolesAtHqEnum - } - export type RolesAtBaseEnum = 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Terrestrial_Combat_Officer' | 'Terrestrial_Logistics_Officer' | 'Trader'; - export const RolesAtBaseEnum = { - AccountTake1: 'Account_Take_1' as RolesAtBaseEnum, - AccountTake2: 'Account_Take_2' as RolesAtBaseEnum, - AccountTake3: 'Account_Take_3' as RolesAtBaseEnum, - AccountTake4: 'Account_Take_4' as RolesAtBaseEnum, - AccountTake5: 'Account_Take_5' as RolesAtBaseEnum, - AccountTake6: 'Account_Take_6' as RolesAtBaseEnum, - AccountTake7: 'Account_Take_7' as RolesAtBaseEnum, - Accountant: 'Accountant' as RolesAtBaseEnum, - Auditor: 'Auditor' as RolesAtBaseEnum, - CommunicationsOfficer: 'Communications_Officer' as RolesAtBaseEnum, - ConfigEquipment: 'Config_Equipment' as RolesAtBaseEnum, - ConfigStarbaseEquipment: 'Config_Starbase_Equipment' as RolesAtBaseEnum, - ContainerTake1: 'Container_Take_1' as RolesAtBaseEnum, - ContainerTake2: 'Container_Take_2' as RolesAtBaseEnum, - ContainerTake3: 'Container_Take_3' as RolesAtBaseEnum, - ContainerTake4: 'Container_Take_4' as RolesAtBaseEnum, - ContainerTake5: 'Container_Take_5' as RolesAtBaseEnum, - ContainerTake6: 'Container_Take_6' as RolesAtBaseEnum, - ContainerTake7: 'Container_Take_7' as RolesAtBaseEnum, - ContractManager: 'Contract_Manager' as RolesAtBaseEnum, - Diplomat: 'Diplomat' as RolesAtBaseEnum, - Director: 'Director' as RolesAtBaseEnum, - FactoryManager: 'Factory_Manager' as RolesAtBaseEnum, - FittingManager: 'Fitting_Manager' as RolesAtBaseEnum, - HangarQuery1: 'Hangar_Query_1' as RolesAtBaseEnum, - HangarQuery2: 'Hangar_Query_2' as RolesAtBaseEnum, - HangarQuery3: 'Hangar_Query_3' as RolesAtBaseEnum, - HangarQuery4: 'Hangar_Query_4' as RolesAtBaseEnum, - HangarQuery5: 'Hangar_Query_5' as RolesAtBaseEnum, - HangarQuery6: 'Hangar_Query_6' as RolesAtBaseEnum, - HangarQuery7: 'Hangar_Query_7' as RolesAtBaseEnum, - HangarTake1: 'Hangar_Take_1' as RolesAtBaseEnum, - HangarTake2: 'Hangar_Take_2' as RolesAtBaseEnum, - HangarTake3: 'Hangar_Take_3' as RolesAtBaseEnum, - HangarTake4: 'Hangar_Take_4' as RolesAtBaseEnum, - HangarTake5: 'Hangar_Take_5' as RolesAtBaseEnum, - HangarTake6: 'Hangar_Take_6' as RolesAtBaseEnum, - HangarTake7: 'Hangar_Take_7' as RolesAtBaseEnum, - JuniorAccountant: 'Junior_Accountant' as RolesAtBaseEnum, - PersonnelManager: 'Personnel_Manager' as RolesAtBaseEnum, - RentFactoryFacility: 'Rent_Factory_Facility' as RolesAtBaseEnum, - RentOffice: 'Rent_Office' as RolesAtBaseEnum, - RentResearchFacility: 'Rent_Research_Facility' as RolesAtBaseEnum, - SecurityOfficer: 'Security_Officer' as RolesAtBaseEnum, - StarbaseDefenseOperator: 'Starbase_Defense_Operator' as RolesAtBaseEnum, - StarbaseFuelTechnician: 'Starbase_Fuel_Technician' as RolesAtBaseEnum, - StationManager: 'Station_Manager' as RolesAtBaseEnum, - TerrestrialCombatOfficer: 'Terrestrial_Combat_Officer' as RolesAtBaseEnum, - TerrestrialLogisticsOfficer: 'Terrestrial_Logistics_Officer' as RolesAtBaseEnum, - Trader: 'Trader' as RolesAtBaseEnum - } - export type GrantableRolesAtBaseEnum = 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Terrestrial_Combat_Officer' | 'Terrestrial_Logistics_Officer' | 'Trader'; - export const GrantableRolesAtBaseEnum = { - AccountTake1: 'Account_Take_1' as GrantableRolesAtBaseEnum, - AccountTake2: 'Account_Take_2' as GrantableRolesAtBaseEnum, - AccountTake3: 'Account_Take_3' as GrantableRolesAtBaseEnum, - AccountTake4: 'Account_Take_4' as GrantableRolesAtBaseEnum, - AccountTake5: 'Account_Take_5' as GrantableRolesAtBaseEnum, - AccountTake6: 'Account_Take_6' as GrantableRolesAtBaseEnum, - AccountTake7: 'Account_Take_7' as GrantableRolesAtBaseEnum, - Accountant: 'Accountant' as GrantableRolesAtBaseEnum, - Auditor: 'Auditor' as GrantableRolesAtBaseEnum, - CommunicationsOfficer: 'Communications_Officer' as GrantableRolesAtBaseEnum, - ConfigEquipment: 'Config_Equipment' as GrantableRolesAtBaseEnum, - ConfigStarbaseEquipment: 'Config_Starbase_Equipment' as GrantableRolesAtBaseEnum, - ContainerTake1: 'Container_Take_1' as GrantableRolesAtBaseEnum, - ContainerTake2: 'Container_Take_2' as GrantableRolesAtBaseEnum, - ContainerTake3: 'Container_Take_3' as GrantableRolesAtBaseEnum, - ContainerTake4: 'Container_Take_4' as GrantableRolesAtBaseEnum, - ContainerTake5: 'Container_Take_5' as GrantableRolesAtBaseEnum, - ContainerTake6: 'Container_Take_6' as GrantableRolesAtBaseEnum, - ContainerTake7: 'Container_Take_7' as GrantableRolesAtBaseEnum, - ContractManager: 'Contract_Manager' as GrantableRolesAtBaseEnum, - Diplomat: 'Diplomat' as GrantableRolesAtBaseEnum, - Director: 'Director' as GrantableRolesAtBaseEnum, - FactoryManager: 'Factory_Manager' as GrantableRolesAtBaseEnum, - FittingManager: 'Fitting_Manager' as GrantableRolesAtBaseEnum, - HangarQuery1: 'Hangar_Query_1' as GrantableRolesAtBaseEnum, - HangarQuery2: 'Hangar_Query_2' as GrantableRolesAtBaseEnum, - HangarQuery3: 'Hangar_Query_3' as GrantableRolesAtBaseEnum, - HangarQuery4: 'Hangar_Query_4' as GrantableRolesAtBaseEnum, - HangarQuery5: 'Hangar_Query_5' as GrantableRolesAtBaseEnum, - HangarQuery6: 'Hangar_Query_6' as GrantableRolesAtBaseEnum, - HangarQuery7: 'Hangar_Query_7' as GrantableRolesAtBaseEnum, - HangarTake1: 'Hangar_Take_1' as GrantableRolesAtBaseEnum, - HangarTake2: 'Hangar_Take_2' as GrantableRolesAtBaseEnum, - HangarTake3: 'Hangar_Take_3' as GrantableRolesAtBaseEnum, - HangarTake4: 'Hangar_Take_4' as GrantableRolesAtBaseEnum, - HangarTake5: 'Hangar_Take_5' as GrantableRolesAtBaseEnum, - HangarTake6: 'Hangar_Take_6' as GrantableRolesAtBaseEnum, - HangarTake7: 'Hangar_Take_7' as GrantableRolesAtBaseEnum, - JuniorAccountant: 'Junior_Accountant' as GrantableRolesAtBaseEnum, - PersonnelManager: 'Personnel_Manager' as GrantableRolesAtBaseEnum, - RentFactoryFacility: 'Rent_Factory_Facility' as GrantableRolesAtBaseEnum, - RentOffice: 'Rent_Office' as GrantableRolesAtBaseEnum, - RentResearchFacility: 'Rent_Research_Facility' as GrantableRolesAtBaseEnum, - SecurityOfficer: 'Security_Officer' as GrantableRolesAtBaseEnum, - StarbaseDefenseOperator: 'Starbase_Defense_Operator' as GrantableRolesAtBaseEnum, - StarbaseFuelTechnician: 'Starbase_Fuel_Technician' as GrantableRolesAtBaseEnum, - StationManager: 'Station_Manager' as GrantableRolesAtBaseEnum, - TerrestrialCombatOfficer: 'Terrestrial_Combat_Officer' as GrantableRolesAtBaseEnum, - TerrestrialLogisticsOfficer: 'Terrestrial_Logistics_Officer' as GrantableRolesAtBaseEnum, - Trader: 'Trader' as GrantableRolesAtBaseEnum - } - export type RolesAtOtherEnum = 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Terrestrial_Combat_Officer' | 'Terrestrial_Logistics_Officer' | 'Trader'; - export const RolesAtOtherEnum = { - AccountTake1: 'Account_Take_1' as RolesAtOtherEnum, - AccountTake2: 'Account_Take_2' as RolesAtOtherEnum, - AccountTake3: 'Account_Take_3' as RolesAtOtherEnum, - AccountTake4: 'Account_Take_4' as RolesAtOtherEnum, - AccountTake5: 'Account_Take_5' as RolesAtOtherEnum, - AccountTake6: 'Account_Take_6' as RolesAtOtherEnum, - AccountTake7: 'Account_Take_7' as RolesAtOtherEnum, - Accountant: 'Accountant' as RolesAtOtherEnum, - Auditor: 'Auditor' as RolesAtOtherEnum, - CommunicationsOfficer: 'Communications_Officer' as RolesAtOtherEnum, - ConfigEquipment: 'Config_Equipment' as RolesAtOtherEnum, - ConfigStarbaseEquipment: 'Config_Starbase_Equipment' as RolesAtOtherEnum, - ContainerTake1: 'Container_Take_1' as RolesAtOtherEnum, - ContainerTake2: 'Container_Take_2' as RolesAtOtherEnum, - ContainerTake3: 'Container_Take_3' as RolesAtOtherEnum, - ContainerTake4: 'Container_Take_4' as RolesAtOtherEnum, - ContainerTake5: 'Container_Take_5' as RolesAtOtherEnum, - ContainerTake6: 'Container_Take_6' as RolesAtOtherEnum, - ContainerTake7: 'Container_Take_7' as RolesAtOtherEnum, - ContractManager: 'Contract_Manager' as RolesAtOtherEnum, - Diplomat: 'Diplomat' as RolesAtOtherEnum, - Director: 'Director' as RolesAtOtherEnum, - FactoryManager: 'Factory_Manager' as RolesAtOtherEnum, - FittingManager: 'Fitting_Manager' as RolesAtOtherEnum, - HangarQuery1: 'Hangar_Query_1' as RolesAtOtherEnum, - HangarQuery2: 'Hangar_Query_2' as RolesAtOtherEnum, - HangarQuery3: 'Hangar_Query_3' as RolesAtOtherEnum, - HangarQuery4: 'Hangar_Query_4' as RolesAtOtherEnum, - HangarQuery5: 'Hangar_Query_5' as RolesAtOtherEnum, - HangarQuery6: 'Hangar_Query_6' as RolesAtOtherEnum, - HangarQuery7: 'Hangar_Query_7' as RolesAtOtherEnum, - HangarTake1: 'Hangar_Take_1' as RolesAtOtherEnum, - HangarTake2: 'Hangar_Take_2' as RolesAtOtherEnum, - HangarTake3: 'Hangar_Take_3' as RolesAtOtherEnum, - HangarTake4: 'Hangar_Take_4' as RolesAtOtherEnum, - HangarTake5: 'Hangar_Take_5' as RolesAtOtherEnum, - HangarTake6: 'Hangar_Take_6' as RolesAtOtherEnum, - HangarTake7: 'Hangar_Take_7' as RolesAtOtherEnum, - JuniorAccountant: 'Junior_Accountant' as RolesAtOtherEnum, - PersonnelManager: 'Personnel_Manager' as RolesAtOtherEnum, - RentFactoryFacility: 'Rent_Factory_Facility' as RolesAtOtherEnum, - RentOffice: 'Rent_Office' as RolesAtOtherEnum, - RentResearchFacility: 'Rent_Research_Facility' as RolesAtOtherEnum, - SecurityOfficer: 'Security_Officer' as RolesAtOtherEnum, - StarbaseDefenseOperator: 'Starbase_Defense_Operator' as RolesAtOtherEnum, - StarbaseFuelTechnician: 'Starbase_Fuel_Technician' as RolesAtOtherEnum, - StationManager: 'Station_Manager' as RolesAtOtherEnum, - TerrestrialCombatOfficer: 'Terrestrial_Combat_Officer' as RolesAtOtherEnum, - TerrestrialLogisticsOfficer: 'Terrestrial_Logistics_Officer' as RolesAtOtherEnum, - Trader: 'Trader' as RolesAtOtherEnum - } - export type GrantableRolesAtOtherEnum = 'Account_Take_1' | 'Account_Take_2' | 'Account_Take_3' | 'Account_Take_4' | 'Account_Take_5' | 'Account_Take_6' | 'Account_Take_7' | 'Accountant' | 'Auditor' | 'Communications_Officer' | 'Config_Equipment' | 'Config_Starbase_Equipment' | 'Container_Take_1' | 'Container_Take_2' | 'Container_Take_3' | 'Container_Take_4' | 'Container_Take_5' | 'Container_Take_6' | 'Container_Take_7' | 'Contract_Manager' | 'Diplomat' | 'Director' | 'Factory_Manager' | 'Fitting_Manager' | 'Hangar_Query_1' | 'Hangar_Query_2' | 'Hangar_Query_3' | 'Hangar_Query_4' | 'Hangar_Query_5' | 'Hangar_Query_6' | 'Hangar_Query_7' | 'Hangar_Take_1' | 'Hangar_Take_2' | 'Hangar_Take_3' | 'Hangar_Take_4' | 'Hangar_Take_5' | 'Hangar_Take_6' | 'Hangar_Take_7' | 'Junior_Accountant' | 'Personnel_Manager' | 'Rent_Factory_Facility' | 'Rent_Office' | 'Rent_Research_Facility' | 'Security_Officer' | 'Starbase_Defense_Operator' | 'Starbase_Fuel_Technician' | 'Station_Manager' | 'Terrestrial_Combat_Officer' | 'Terrestrial_Logistics_Officer' | 'Trader'; - export const GrantableRolesAtOtherEnum = { - AccountTake1: 'Account_Take_1' as GrantableRolesAtOtherEnum, - AccountTake2: 'Account_Take_2' as GrantableRolesAtOtherEnum, - AccountTake3: 'Account_Take_3' as GrantableRolesAtOtherEnum, - AccountTake4: 'Account_Take_4' as GrantableRolesAtOtherEnum, - AccountTake5: 'Account_Take_5' as GrantableRolesAtOtherEnum, - AccountTake6: 'Account_Take_6' as GrantableRolesAtOtherEnum, - AccountTake7: 'Account_Take_7' as GrantableRolesAtOtherEnum, - Accountant: 'Accountant' as GrantableRolesAtOtherEnum, - Auditor: 'Auditor' as GrantableRolesAtOtherEnum, - CommunicationsOfficer: 'Communications_Officer' as GrantableRolesAtOtherEnum, - ConfigEquipment: 'Config_Equipment' as GrantableRolesAtOtherEnum, - ConfigStarbaseEquipment: 'Config_Starbase_Equipment' as GrantableRolesAtOtherEnum, - ContainerTake1: 'Container_Take_1' as GrantableRolesAtOtherEnum, - ContainerTake2: 'Container_Take_2' as GrantableRolesAtOtherEnum, - ContainerTake3: 'Container_Take_3' as GrantableRolesAtOtherEnum, - ContainerTake4: 'Container_Take_4' as GrantableRolesAtOtherEnum, - ContainerTake5: 'Container_Take_5' as GrantableRolesAtOtherEnum, - ContainerTake6: 'Container_Take_6' as GrantableRolesAtOtherEnum, - ContainerTake7: 'Container_Take_7' as GrantableRolesAtOtherEnum, - ContractManager: 'Contract_Manager' as GrantableRolesAtOtherEnum, - Diplomat: 'Diplomat' as GrantableRolesAtOtherEnum, - Director: 'Director' as GrantableRolesAtOtherEnum, - FactoryManager: 'Factory_Manager' as GrantableRolesAtOtherEnum, - FittingManager: 'Fitting_Manager' as GrantableRolesAtOtherEnum, - HangarQuery1: 'Hangar_Query_1' as GrantableRolesAtOtherEnum, - HangarQuery2: 'Hangar_Query_2' as GrantableRolesAtOtherEnum, - HangarQuery3: 'Hangar_Query_3' as GrantableRolesAtOtherEnum, - HangarQuery4: 'Hangar_Query_4' as GrantableRolesAtOtherEnum, - HangarQuery5: 'Hangar_Query_5' as GrantableRolesAtOtherEnum, - HangarQuery6: 'Hangar_Query_6' as GrantableRolesAtOtherEnum, - HangarQuery7: 'Hangar_Query_7' as GrantableRolesAtOtherEnum, - HangarTake1: 'Hangar_Take_1' as GrantableRolesAtOtherEnum, - HangarTake2: 'Hangar_Take_2' as GrantableRolesAtOtherEnum, - HangarTake3: 'Hangar_Take_3' as GrantableRolesAtOtherEnum, - HangarTake4: 'Hangar_Take_4' as GrantableRolesAtOtherEnum, - HangarTake5: 'Hangar_Take_5' as GrantableRolesAtOtherEnum, - HangarTake6: 'Hangar_Take_6' as GrantableRolesAtOtherEnum, - HangarTake7: 'Hangar_Take_7' as GrantableRolesAtOtherEnum, - JuniorAccountant: 'Junior_Accountant' as GrantableRolesAtOtherEnum, - PersonnelManager: 'Personnel_Manager' as GrantableRolesAtOtherEnum, - RentFactoryFacility: 'Rent_Factory_Facility' as GrantableRolesAtOtherEnum, - RentOffice: 'Rent_Office' as GrantableRolesAtOtherEnum, - RentResearchFacility: 'Rent_Research_Facility' as GrantableRolesAtOtherEnum, - SecurityOfficer: 'Security_Officer' as GrantableRolesAtOtherEnum, - StarbaseDefenseOperator: 'Starbase_Defense_Operator' as GrantableRolesAtOtherEnum, - StarbaseFuelTechnician: 'Starbase_Fuel_Technician' as GrantableRolesAtOtherEnum, - StationManager: 'Station_Manager' as GrantableRolesAtOtherEnum, - TerrestrialCombatOfficer: 'Terrestrial_Combat_Officer' as GrantableRolesAtOtherEnum, - TerrestrialLogisticsOfficer: 'Terrestrial_Logistics_Officer' as GrantableRolesAtOtherEnum, - Trader: 'Trader' as GrantableRolesAtOtherEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdWallets200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdWallets200Ok.ts deleted file mode 100755 index 0798dba..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdWallets200Ok.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdWallets200Ok { - /** - * division integer - */ - division: number; - /** - * balance number - */ - balance: number; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdWalletsDivisionJournal200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdWalletsDivisionJournal200Ok.ts deleted file mode 100755 index 26e47b6..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdWalletsDivisionJournal200Ok.ts +++ /dev/null @@ -1,206 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetCorporationsCorporationIdWalletsDivisionJournalExtraInfo } from './getCorporationsCorporationIdWalletsDivisionJournalExtraInfo'; - - -/** - * 200 ok object - */ -export interface GetCorporationsCorporationIdWalletsDivisionJournal200Ok { - /** - * Date and time of transaction - */ - date: Date; - /** - * Unique journal reference ID - */ - refId: number; - /** - * Transaction type, different type of transaction will populate different fields in `extra_info` Note: If you have an existing XML API application that is using ref_types, you will need to know which string ESI ref_type maps to which integer. You can use the following gist to see string->int mappings: https://gist.github.com/ccp-zoetrope/c03db66d90c2148724c06171bc52e0ec - */ - refType: GetCorporationsCorporationIdWalletsDivisionJournal200Ok.RefTypeEnum; - /** - * first_party_id integer - */ - firstPartyId?: number; - /** - * first_party_type string - */ - firstPartyType?: GetCorporationsCorporationIdWalletsDivisionJournal200Ok.FirstPartyTypeEnum; - /** - * second_party_id integer - */ - secondPartyId?: number; - /** - * second_party_type string - */ - secondPartyType?: GetCorporationsCorporationIdWalletsDivisionJournal200Ok.SecondPartyTypeEnum; - /** - * Transaction amount. Positive when value transferred to the first party. Negative otherwise - */ - amount?: number; - /** - * Wallet balance after transaction occurred - */ - balance?: number; - /** - * reason string - */ - reason?: string; - /** - * the corporation ID receiving any tax paid - */ - taxReceiverId?: number; - /** - * Tax amount received for tax related transactions - */ - tax?: number; - extraInfo?: GetCorporationsCorporationIdWalletsDivisionJournalExtraInfo; -} -export namespace GetCorporationsCorporationIdWalletsDivisionJournal200Ok { - export type RefTypeEnum = 'acceleration_gate_fee' | 'advertisement_listing_fee' | 'agent_donation' | 'agent_location_services' | 'agent_miscellaneous' | 'agent_mission_collateral_paid' | 'agent_mission_collateral_refunded' | 'agent_mission_reward' | 'agent_mission_reward_corporation_tax' | 'agent_mission_time_bonus_reward' | 'agent_mission_time_bonus_reward_corporation_tax' | 'agent_security_services' | 'agent_services_rendered' | 'agents_preward' | 'alliance_maintainance_fee' | 'alliance_registration_fee' | 'asset_safety_recovery_tax' | 'bounty' | 'bounty_prize' | 'bounty_prize_corporation_tax' | 'bounty_prizes' | 'bounty_reimbursement' | 'bounty_surcharge' | 'brokers_fee' | 'clone_activation' | 'clone_transfer' | 'contraband_fine' | 'contract_auction_bid' | 'contract_auction_bid_corp' | 'contract_auction_bid_refund' | 'contract_auction_sold' | 'contract_brokers_fee' | 'contract_brokers_fee_corp' | 'contract_collateral' | 'contract_collateral_deposited_corp' | 'contract_collateral_payout' | 'contract_collateral_refund' | 'contract_deposit' | 'contract_deposit_corp' | 'contract_deposit_refund' | 'contract_deposit_sales_tax' | 'contract_price' | 'contract_price_payment_corp' | 'contract_reversal' | 'contract_reward' | 'contract_reward_deposited' | 'contract_reward_deposited_corp' | 'contract_reward_refund' | 'contract_sales_tax' | 'copying' | 'corporate_reward_payout' | 'corporate_reward_tax' | 'corporation_account_withdrawal' | 'corporation_bulk_payment' | 'corporation_dividend_payment' | 'corporation_liquidation' | 'corporation_logo_change_cost' | 'corporation_payment' | 'corporation_registration_fee' | 'courier_mission_escrow' | 'cspa' | 'cspaofflinerefund' | 'datacore_fee' | 'dna_modification_fee' | 'docking_fee' | 'duel_wager_escrow' | 'duel_wager_payment' | 'duel_wager_refund' | 'factory_slot_rental_fee' | 'gm_cash_transfer' | 'industry_job_tax' | 'infrastructure_hub_maintenance' | 'inheritance' | 'insurance' | 'jump_clone_activation_fee' | 'jump_clone_installation_fee' | 'kill_right_fee' | 'lp_store' | 'manufacturing' | 'market_escrow' | 'market_fine_paid' | 'market_transaction' | 'medal_creation' | 'medal_issued' | 'mission_completion' | 'mission_cost' | 'mission_expiration' | 'mission_reward' | 'office_rental_fee' | 'operation_bonus' | 'opportunity_reward' | 'planetary_construction' | 'planetary_export_tax' | 'planetary_import_tax' | 'player_donation' | 'player_trading' | 'project_discovery_reward' | 'project_discovery_tax' | 'reaction' | 'release_of_impounded_property' | 'repair_bill' | 'reprocessing_tax' | 'researching_material_productivity' | 'researching_technology' | 'researching_time_productivity' | 'resource_wars_reward' | 'reverse_engineering' | 'security_processing_fee' | 'shares' | 'sovereignity_bill' | 'store_purchase' | 'store_purchase_refund' | 'transaction_tax' | 'upkeep_adjustment_fee' | 'war_ally_contract' | 'war_fee' | 'war_fee_surrender'; - export const RefTypeEnum = { - AccelerationGateFee: 'acceleration_gate_fee' as RefTypeEnum, - AdvertisementListingFee: 'advertisement_listing_fee' as RefTypeEnum, - AgentDonation: 'agent_donation' as RefTypeEnum, - AgentLocationServices: 'agent_location_services' as RefTypeEnum, - AgentMiscellaneous: 'agent_miscellaneous' as RefTypeEnum, - AgentMissionCollateralPaid: 'agent_mission_collateral_paid' as RefTypeEnum, - AgentMissionCollateralRefunded: 'agent_mission_collateral_refunded' as RefTypeEnum, - AgentMissionReward: 'agent_mission_reward' as RefTypeEnum, - AgentMissionRewardCorporationTax: 'agent_mission_reward_corporation_tax' as RefTypeEnum, - AgentMissionTimeBonusReward: 'agent_mission_time_bonus_reward' as RefTypeEnum, - AgentMissionTimeBonusRewardCorporationTax: 'agent_mission_time_bonus_reward_corporation_tax' as RefTypeEnum, - AgentSecurityServices: 'agent_security_services' as RefTypeEnum, - AgentServicesRendered: 'agent_services_rendered' as RefTypeEnum, - AgentsPreward: 'agents_preward' as RefTypeEnum, - AllianceMaintainanceFee: 'alliance_maintainance_fee' as RefTypeEnum, - AllianceRegistrationFee: 'alliance_registration_fee' as RefTypeEnum, - AssetSafetyRecoveryTax: 'asset_safety_recovery_tax' as RefTypeEnum, - Bounty: 'bounty' as RefTypeEnum, - BountyPrize: 'bounty_prize' as RefTypeEnum, - BountyPrizeCorporationTax: 'bounty_prize_corporation_tax' as RefTypeEnum, - BountyPrizes: 'bounty_prizes' as RefTypeEnum, - BountyReimbursement: 'bounty_reimbursement' as RefTypeEnum, - BountySurcharge: 'bounty_surcharge' as RefTypeEnum, - BrokersFee: 'brokers_fee' as RefTypeEnum, - CloneActivation: 'clone_activation' as RefTypeEnum, - CloneTransfer: 'clone_transfer' as RefTypeEnum, - ContrabandFine: 'contraband_fine' as RefTypeEnum, - ContractAuctionBid: 'contract_auction_bid' as RefTypeEnum, - ContractAuctionBidCorp: 'contract_auction_bid_corp' as RefTypeEnum, - ContractAuctionBidRefund: 'contract_auction_bid_refund' as RefTypeEnum, - ContractAuctionSold: 'contract_auction_sold' as RefTypeEnum, - ContractBrokersFee: 'contract_brokers_fee' as RefTypeEnum, - ContractBrokersFeeCorp: 'contract_brokers_fee_corp' as RefTypeEnum, - ContractCollateral: 'contract_collateral' as RefTypeEnum, - ContractCollateralDepositedCorp: 'contract_collateral_deposited_corp' as RefTypeEnum, - ContractCollateralPayout: 'contract_collateral_payout' as RefTypeEnum, - ContractCollateralRefund: 'contract_collateral_refund' as RefTypeEnum, - ContractDeposit: 'contract_deposit' as RefTypeEnum, - ContractDepositCorp: 'contract_deposit_corp' as RefTypeEnum, - ContractDepositRefund: 'contract_deposit_refund' as RefTypeEnum, - ContractDepositSalesTax: 'contract_deposit_sales_tax' as RefTypeEnum, - ContractPrice: 'contract_price' as RefTypeEnum, - ContractPricePaymentCorp: 'contract_price_payment_corp' as RefTypeEnum, - ContractReversal: 'contract_reversal' as RefTypeEnum, - ContractReward: 'contract_reward' as RefTypeEnum, - ContractRewardDeposited: 'contract_reward_deposited' as RefTypeEnum, - ContractRewardDepositedCorp: 'contract_reward_deposited_corp' as RefTypeEnum, - ContractRewardRefund: 'contract_reward_refund' as RefTypeEnum, - ContractSalesTax: 'contract_sales_tax' as RefTypeEnum, - Copying: 'copying' as RefTypeEnum, - CorporateRewardPayout: 'corporate_reward_payout' as RefTypeEnum, - CorporateRewardTax: 'corporate_reward_tax' as RefTypeEnum, - CorporationAccountWithdrawal: 'corporation_account_withdrawal' as RefTypeEnum, - CorporationBulkPayment: 'corporation_bulk_payment' as RefTypeEnum, - CorporationDividendPayment: 'corporation_dividend_payment' as RefTypeEnum, - CorporationLiquidation: 'corporation_liquidation' as RefTypeEnum, - CorporationLogoChangeCost: 'corporation_logo_change_cost' as RefTypeEnum, - CorporationPayment: 'corporation_payment' as RefTypeEnum, - CorporationRegistrationFee: 'corporation_registration_fee' as RefTypeEnum, - CourierMissionEscrow: 'courier_mission_escrow' as RefTypeEnum, - Cspa: 'cspa' as RefTypeEnum, - Cspaofflinerefund: 'cspaofflinerefund' as RefTypeEnum, - DatacoreFee: 'datacore_fee' as RefTypeEnum, - DnaModificationFee: 'dna_modification_fee' as RefTypeEnum, - DockingFee: 'docking_fee' as RefTypeEnum, - DuelWagerEscrow: 'duel_wager_escrow' as RefTypeEnum, - DuelWagerPayment: 'duel_wager_payment' as RefTypeEnum, - DuelWagerRefund: 'duel_wager_refund' as RefTypeEnum, - FactorySlotRentalFee: 'factory_slot_rental_fee' as RefTypeEnum, - GmCashTransfer: 'gm_cash_transfer' as RefTypeEnum, - IndustryJobTax: 'industry_job_tax' as RefTypeEnum, - InfrastructureHubMaintenance: 'infrastructure_hub_maintenance' as RefTypeEnum, - Inheritance: 'inheritance' as RefTypeEnum, - Insurance: 'insurance' as RefTypeEnum, - JumpCloneActivationFee: 'jump_clone_activation_fee' as RefTypeEnum, - JumpCloneInstallationFee: 'jump_clone_installation_fee' as RefTypeEnum, - KillRightFee: 'kill_right_fee' as RefTypeEnum, - LpStore: 'lp_store' as RefTypeEnum, - Manufacturing: 'manufacturing' as RefTypeEnum, - MarketEscrow: 'market_escrow' as RefTypeEnum, - MarketFinePaid: 'market_fine_paid' as RefTypeEnum, - MarketTransaction: 'market_transaction' as RefTypeEnum, - MedalCreation: 'medal_creation' as RefTypeEnum, - MedalIssued: 'medal_issued' as RefTypeEnum, - MissionCompletion: 'mission_completion' as RefTypeEnum, - MissionCost: 'mission_cost' as RefTypeEnum, - MissionExpiration: 'mission_expiration' as RefTypeEnum, - MissionReward: 'mission_reward' as RefTypeEnum, - OfficeRentalFee: 'office_rental_fee' as RefTypeEnum, - OperationBonus: 'operation_bonus' as RefTypeEnum, - OpportunityReward: 'opportunity_reward' as RefTypeEnum, - PlanetaryConstruction: 'planetary_construction' as RefTypeEnum, - PlanetaryExportTax: 'planetary_export_tax' as RefTypeEnum, - PlanetaryImportTax: 'planetary_import_tax' as RefTypeEnum, - PlayerDonation: 'player_donation' as RefTypeEnum, - PlayerTrading: 'player_trading' as RefTypeEnum, - ProjectDiscoveryReward: 'project_discovery_reward' as RefTypeEnum, - ProjectDiscoveryTax: 'project_discovery_tax' as RefTypeEnum, - Reaction: 'reaction' as RefTypeEnum, - ReleaseOfImpoundedProperty: 'release_of_impounded_property' as RefTypeEnum, - RepairBill: 'repair_bill' as RefTypeEnum, - ReprocessingTax: 'reprocessing_tax' as RefTypeEnum, - ResearchingMaterialProductivity: 'researching_material_productivity' as RefTypeEnum, - ResearchingTechnology: 'researching_technology' as RefTypeEnum, - ResearchingTimeProductivity: 'researching_time_productivity' as RefTypeEnum, - ResourceWarsReward: 'resource_wars_reward' as RefTypeEnum, - ReverseEngineering: 'reverse_engineering' as RefTypeEnum, - SecurityProcessingFee: 'security_processing_fee' as RefTypeEnum, - Shares: 'shares' as RefTypeEnum, - SovereignityBill: 'sovereignity_bill' as RefTypeEnum, - StorePurchase: 'store_purchase' as RefTypeEnum, - StorePurchaseRefund: 'store_purchase_refund' as RefTypeEnum, - TransactionTax: 'transaction_tax' as RefTypeEnum, - UpkeepAdjustmentFee: 'upkeep_adjustment_fee' as RefTypeEnum, - WarAllyContract: 'war_ally_contract' as RefTypeEnum, - WarFee: 'war_fee' as RefTypeEnum, - WarFeeSurrender: 'war_fee_surrender' as RefTypeEnum - } - export type FirstPartyTypeEnum = 'character' | 'corporation' | 'alliance' | 'faction' | 'system'; - export const FirstPartyTypeEnum = { - Character: 'character' as FirstPartyTypeEnum, - Corporation: 'corporation' as FirstPartyTypeEnum, - Alliance: 'alliance' as FirstPartyTypeEnum, - Faction: 'faction' as FirstPartyTypeEnum, - System: 'system' as FirstPartyTypeEnum - } - export type SecondPartyTypeEnum = 'character' | 'corporation' | 'alliance' | 'faction' | 'system'; - export const SecondPartyTypeEnum = { - Character: 'character' as SecondPartyTypeEnum, - Corporation: 'corporation' as SecondPartyTypeEnum, - Alliance: 'alliance' as SecondPartyTypeEnum, - Faction: 'faction' as SecondPartyTypeEnum, - System: 'system' as SecondPartyTypeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdWalletsDivisionJournalExtraInfo.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdWalletsDivisionJournalExtraInfo.ts deleted file mode 100755 index 405a8d8..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdWalletsDivisionJournalExtraInfo.ts +++ /dev/null @@ -1,66 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Extra information for different type of transaction - */ -export interface GetCorporationsCorporationIdWalletsDivisionJournalExtraInfo { - /** - * location_id integer - */ - locationId?: number; - /** - * transaction_id integer - */ - transactionId?: number; - /** - * npc_name string - */ - npcName?: string; - /** - * npc_id integer - */ - npcId?: number; - /** - * destroyed_ship_type_id integer - */ - destroyedShipTypeId?: number; - /** - * character_id integer - */ - characterId?: number; - /** - * corporation_id integer - */ - corporationId?: number; - /** - * alliance_id integer - */ - allianceId?: number; - /** - * job_id integer - */ - jobId?: number; - /** - * contract_id integer - */ - contractId?: number; - /** - * system_id integer - */ - systemId?: number; - /** - * planet_id integer - */ - planetId?: number; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdWalletsDivisionTransactions200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsCorporationIdWalletsDivisionTransactions200Ok.ts deleted file mode 100755 index 1d26164..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsCorporationIdWalletsDivisionTransactions200Ok.ts +++ /dev/null @@ -1,54 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * wallet transaction - */ -export interface GetCorporationsCorporationIdWalletsDivisionTransactions200Ok { - /** - * Unique transaction ID - */ - transactionId: number; - /** - * Date and time of transaction - */ - date: Date; - /** - * type_id integer - */ - typeId: number; - /** - * location_id integer - */ - locationId: number; - /** - * Amount paid per unit - */ - unitPrice: number; - /** - * quantity integer - */ - quantity: number; - /** - * client_id integer - */ - clientId: number; - /** - * is_buy boolean - */ - isBuy: boolean; - /** - * journal_ref_id integer - */ - journalRefId: number; -} diff --git a/src/app/eve-online-angular-client/model/getCorporationsNames200Ok.ts b/src/app/eve-online-angular-client/model/getCorporationsNames200Ok.ts deleted file mode 100755 index 2f806b3..0000000 --- a/src/app/eve-online-angular-client/model/getCorporationsNames200Ok.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetCorporationsNames200Ok { - /** - * corporation_id integer - */ - corporationId: number; - /** - * corporation_name string - */ - corporationName: string; -} diff --git a/src/app/eve-online-angular-client/model/getDogmaAttributesAttributeIdNotFound.ts b/src/app/eve-online-angular-client/model/getDogmaAttributesAttributeIdNotFound.ts deleted file mode 100755 index 56f822e..0000000 --- a/src/app/eve-online-angular-client/model/getDogmaAttributesAttributeIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetDogmaAttributesAttributeIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getDogmaAttributesAttributeIdOk.ts b/src/app/eve-online-angular-client/model/getDogmaAttributesAttributeIdOk.ts deleted file mode 100755 index 96ee55b..0000000 --- a/src/app/eve-online-angular-client/model/getDogmaAttributesAttributeIdOk.ts +++ /dev/null @@ -1,58 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetDogmaAttributesAttributeIdOk { - /** - * attribute_id integer - */ - attributeId: number; - /** - * name string - */ - name?: string; - /** - * description string - */ - description?: string; - /** - * icon_id integer - */ - iconId?: number; - /** - * default_value number - */ - defaultValue?: number; - /** - * published boolean - */ - published?: boolean; - /** - * display_name string - */ - displayName?: string; - /** - * unit_id integer - */ - unitId?: number; - /** - * stackable boolean - */ - stackable?: boolean; - /** - * high_is_good boolean - */ - highIsGood?: boolean; -} diff --git a/src/app/eve-online-angular-client/model/getDogmaEffectsEffectIdModifier.ts b/src/app/eve-online-angular-client/model/getDogmaEffectsEffectIdModifier.ts deleted file mode 100755 index f14356b..0000000 --- a/src/app/eve-online-angular-client/model/getDogmaEffectsEffectIdModifier.ts +++ /dev/null @@ -1,42 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * modifier object - */ -export interface GetDogmaEffectsEffectIdModifier { - /** - * func string - */ - func: string; - /** - * domain string - */ - domain?: string; - /** - * modified_attribute_id integer - */ - modifiedAttributeId?: number; - /** - * modifying_attribute_id integer - */ - modifyingAttributeId?: number; - /** - * effect_id integer - */ - effectId?: number; - /** - * operator integer - */ - operator?: number; -} diff --git a/src/app/eve-online-angular-client/model/getDogmaEffectsEffectIdNotFound.ts b/src/app/eve-online-angular-client/model/getDogmaEffectsEffectIdNotFound.ts deleted file mode 100755 index fd7e765..0000000 --- a/src/app/eve-online-angular-client/model/getDogmaEffectsEffectIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetDogmaEffectsEffectIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getDogmaEffectsEffectIdOk.ts b/src/app/eve-online-angular-client/model/getDogmaEffectsEffectIdOk.ts deleted file mode 100755 index 5f90375..0000000 --- a/src/app/eve-online-angular-client/model/getDogmaEffectsEffectIdOk.ts +++ /dev/null @@ -1,103 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetDogmaEffectsEffectIdModifier } from './getDogmaEffectsEffectIdModifier'; - - -/** - * 200 ok object - */ -export interface GetDogmaEffectsEffectIdOk { - /** - * effect_id integer - */ - effectId: number; - /** - * name string - */ - name?: string; - /** - * display_name string - */ - displayName?: string; - /** - * description string - */ - description?: string; - /** - * icon_id integer - */ - iconId?: number; - /** - * effect_category integer - */ - effectCategory?: number; - /** - * pre_expression integer - */ - preExpression?: number; - /** - * post_expression integer - */ - postExpression?: number; - /** - * is_offensive boolean - */ - isOffensive?: boolean; - /** - * is_assistance boolean - */ - isAssistance?: boolean; - /** - * disallow_auto_repeat boolean - */ - disallowAutoRepeat?: boolean; - /** - * published boolean - */ - published?: boolean; - /** - * is_warp_safe boolean - */ - isWarpSafe?: boolean; - /** - * range_chance boolean - */ - rangeChance?: boolean; - /** - * electronic_chance boolean - */ - electronicChance?: boolean; - /** - * duration_attribute_id integer - */ - durationAttributeId?: number; - /** - * tracking_speed_attribute_id integer - */ - trackingSpeedAttributeId?: number; - /** - * discharge_attribute_id integer - */ - dischargeAttributeId?: number; - /** - * range_attribute_id integer - */ - rangeAttributeId?: number; - /** - * falloff_attribute_id integer - */ - falloffAttributeId?: number; - /** - * modifiers array - */ - modifiers?: Array; -} diff --git a/src/app/eve-online-angular-client/model/getFleetsFleetIdMembers200Ok.ts b/src/app/eve-online-angular-client/model/getFleetsFleetIdMembers200Ok.ts deleted file mode 100755 index d2c78f7..0000000 --- a/src/app/eve-online-angular-client/model/getFleetsFleetIdMembers200Ok.ts +++ /dev/null @@ -1,67 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetFleetsFleetIdMembers200Ok { - /** - * character_id integer - */ - characterId: number; - /** - * ship_type_id integer - */ - shipTypeId: number; - /** - * ID of the wing the member is in. If not applicable, will be set to -1 - */ - wingId: number; - /** - * ID of the squad the member is in. If not applicable, will be set to -1 - */ - squadId: number; - /** - * Member’s role in fleet - */ - role: GetFleetsFleetIdMembers200Ok.RoleEnum; - /** - * Localized role names - */ - roleName: string; - /** - * join_time string - */ - joinTime: Date; - /** - * Whether the member take fleet warps - */ - takesFleetWarp: boolean; - /** - * Solar system the member is located in - */ - solarSystemId: number; - /** - * Station in which the member is docked in, if applicable - */ - stationId?: number; -} -export namespace GetFleetsFleetIdMembers200Ok { - export type RoleEnum = 'fleet_commander' | 'wing_commander' | 'squad_commander' | 'squad_member'; - export const RoleEnum = { - FleetCommander: 'fleet_commander' as RoleEnum, - WingCommander: 'wing_commander' as RoleEnum, - SquadCommander: 'squad_commander' as RoleEnum, - SquadMember: 'squad_member' as RoleEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getFleetsFleetIdMembersNotFound.ts b/src/app/eve-online-angular-client/model/getFleetsFleetIdMembersNotFound.ts deleted file mode 100755 index 9b42bcf..0000000 --- a/src/app/eve-online-angular-client/model/getFleetsFleetIdMembersNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetFleetsFleetIdMembersNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getFleetsFleetIdNotFound.ts b/src/app/eve-online-angular-client/model/getFleetsFleetIdNotFound.ts deleted file mode 100755 index 1d7c52b..0000000 --- a/src/app/eve-online-angular-client/model/getFleetsFleetIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetFleetsFleetIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getFleetsFleetIdOk.ts b/src/app/eve-online-angular-client/model/getFleetsFleetIdOk.ts deleted file mode 100755 index 59ebc08..0000000 --- a/src/app/eve-online-angular-client/model/getFleetsFleetIdOk.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetFleetsFleetIdOk { - /** - * Fleet MOTD in CCP flavoured HTML - */ - motd: string; - /** - * Is free-move enabled - */ - isFreeMove: boolean; - /** - * Does the fleet have an active fleet advertisement - */ - isRegistered: boolean; - /** - * Is EVE Voice enabled - */ - isVoiceEnabled: boolean; -} diff --git a/src/app/eve-online-angular-client/model/getFleetsFleetIdWings200Ok.ts b/src/app/eve-online-angular-client/model/getFleetsFleetIdWings200Ok.ts deleted file mode 100755 index 8e094b4..0000000 --- a/src/app/eve-online-angular-client/model/getFleetsFleetIdWings200Ok.ts +++ /dev/null @@ -1,31 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetFleetsFleetIdWingsSquad } from './getFleetsFleetIdWingsSquad'; - - -/** - * 200 ok object - */ -export interface GetFleetsFleetIdWings200Ok { - /** - * name string - */ - name: string; - /** - * id integer - */ - id: number; - /** - * squads array - */ - squads: Array; -} diff --git a/src/app/eve-online-angular-client/model/getFleetsFleetIdWingsNotFound.ts b/src/app/eve-online-angular-client/model/getFleetsFleetIdWingsNotFound.ts deleted file mode 100755 index 6b4e621..0000000 --- a/src/app/eve-online-angular-client/model/getFleetsFleetIdWingsNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetFleetsFleetIdWingsNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getFleetsFleetIdWingsSquad.ts b/src/app/eve-online-angular-client/model/getFleetsFleetIdWingsSquad.ts deleted file mode 100755 index 66876af..0000000 --- a/src/app/eve-online-angular-client/model/getFleetsFleetIdWingsSquad.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * squad object - */ -export interface GetFleetsFleetIdWingsSquad { - /** - * name string - */ - name: string; - /** - * id integer - */ - id: number; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsActiveTotal.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsActiveTotal.ts deleted file mode 100755 index e09f24a..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsActiveTotal.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * active_total object - */ -export interface GetFwLeaderboardsActiveTotal { - /** - * faction_id integer - */ - factionId?: number; - /** - * Amount of kills - */ - amount?: number; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsActiveTotal1.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsActiveTotal1.ts deleted file mode 100755 index e79b665..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsActiveTotal1.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * active_total object - */ -export interface GetFwLeaderboardsActiveTotal1 { - /** - * faction_id integer - */ - factionId?: number; - /** - * Amount of victory points - */ - amount?: number; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersActiveTotal.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersActiveTotal.ts deleted file mode 100755 index ddda183..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersActiveTotal.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * active_total object - */ -export interface GetFwLeaderboardsCharactersActiveTotal { - /** - * character_id integer - */ - characterId?: number; - /** - * Amount of kills - */ - amount?: number; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersActiveTotal1.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersActiveTotal1.ts deleted file mode 100755 index c03d762..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersActiveTotal1.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * active_total object - */ -export interface GetFwLeaderboardsCharactersActiveTotal1 { - /** - * character_id integer - */ - characterId?: number; - /** - * Amount of victory points - */ - amount?: number; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersKills.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersKills.ts deleted file mode 100755 index c91ea12..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersKills.ts +++ /dev/null @@ -1,33 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetFwLeaderboardsCharactersActiveTotal } from './getFwLeaderboardsCharactersActiveTotal'; -import { GetFwLeaderboardsCharactersLastWeek } from './getFwLeaderboardsCharactersLastWeek'; -import { GetFwLeaderboardsCharactersYesterday } from './getFwLeaderboardsCharactersYesterday'; - - -/** - * Top 100 rankings of pilots by number of kills from yesterday, last week and in total. - */ -export interface GetFwLeaderboardsCharactersKills { - /** - * Top 100 ranking of pilots by kills in the past day - */ - yesterday: Array; - /** - * Top 100 ranking of pilots by kills in the past week - */ - lastWeek: Array; - /** - * Top 100 ranking of pilots active in faction warfare by total kills. A pilot is considered \"active\" if they have participated in faction warfare in the past 14 days. - */ - activeTotal: Array; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersLastWeek.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersLastWeek.ts deleted file mode 100755 index 16d4041..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersLastWeek.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * last_week object - */ -export interface GetFwLeaderboardsCharactersLastWeek { - /** - * character_id integer - */ - characterId?: number; - /** - * Amount of kills - */ - amount?: number; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersLastWeek1.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersLastWeek1.ts deleted file mode 100755 index f4c2c94..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersLastWeek1.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * last_week object - */ -export interface GetFwLeaderboardsCharactersLastWeek1 { - /** - * character_id integer - */ - characterId?: number; - /** - * Amount of victory points - */ - amount?: number; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersOk.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersOk.ts deleted file mode 100755 index be5b611..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersOk.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetFwLeaderboardsCharactersKills } from './getFwLeaderboardsCharactersKills'; -import { GetFwLeaderboardsCharactersVictoryPoints } from './getFwLeaderboardsCharactersVictoryPoints'; - - -/** - * 200 ok object - */ -export interface GetFwLeaderboardsCharactersOk { - kills: GetFwLeaderboardsCharactersKills; - victoryPoints: GetFwLeaderboardsCharactersVictoryPoints; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersVictoryPoints.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersVictoryPoints.ts deleted file mode 100755 index b7a8f55..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersVictoryPoints.ts +++ /dev/null @@ -1,33 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetFwLeaderboardsCharactersActiveTotal1 } from './getFwLeaderboardsCharactersActiveTotal1'; -import { GetFwLeaderboardsCharactersLastWeek1 } from './getFwLeaderboardsCharactersLastWeek1'; -import { GetFwLeaderboardsCharactersYesterday1 } from './getFwLeaderboardsCharactersYesterday1'; - - -/** - * Top 100 rankings of pilots by victory points from yesterday, last week and in total - */ -export interface GetFwLeaderboardsCharactersVictoryPoints { - /** - * Top 100 ranking of pilots by victory points in the past day - */ - yesterday: Array; - /** - * Top 100 ranking of pilots by victory points in the past week - */ - lastWeek: Array; - /** - * Top 100 ranking of pilots active in faction warfare by total victory points. A pilot is considered \"active\" if they have participated in faction warfare in the past 14 days. - */ - activeTotal: Array; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersYesterday.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersYesterday.ts deleted file mode 100755 index 7ecad20..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersYesterday.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * yesterday object - */ -export interface GetFwLeaderboardsCharactersYesterday { - /** - * character_id integer - */ - characterId?: number; - /** - * Amount of kills - */ - amount?: number; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersYesterday1.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersYesterday1.ts deleted file mode 100755 index 5a8d4b5..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsCharactersYesterday1.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * yesterday object - */ -export interface GetFwLeaderboardsCharactersYesterday1 { - /** - * character_id integer - */ - characterId?: number; - /** - * Amount of victory points - */ - amount?: number; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsActiveTotal.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsActiveTotal.ts deleted file mode 100755 index b9b188d..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsActiveTotal.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * active_total object - */ -export interface GetFwLeaderboardsCorporationsActiveTotal { - /** - * corporation_id integer - */ - corporationId?: number; - /** - * Amount of kills - */ - amount?: number; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsActiveTotal1.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsActiveTotal1.ts deleted file mode 100755 index d931332..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsActiveTotal1.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * active_total object - */ -export interface GetFwLeaderboardsCorporationsActiveTotal1 { - /** - * corporation_id integer - */ - corporationId?: number; - /** - * Amount of victory points - */ - amount?: number; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsKills.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsKills.ts deleted file mode 100755 index 33bc7f4..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsKills.ts +++ /dev/null @@ -1,33 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetFwLeaderboardsCorporationsActiveTotal } from './getFwLeaderboardsCorporationsActiveTotal'; -import { GetFwLeaderboardsCorporationsLastWeek } from './getFwLeaderboardsCorporationsLastWeek'; -import { GetFwLeaderboardsCorporationsYesterday } from './getFwLeaderboardsCorporationsYesterday'; - - -/** - * Top 10 rankings of corporations by number of kills from yesterday, last week and in total. - */ -export interface GetFwLeaderboardsCorporationsKills { - /** - * Top 10 ranking of corporations by kills in the past day - */ - yesterday: Array; - /** - * Top 10 ranking of corporations by kills in the past week - */ - lastWeek: Array; - /** - * Top 10 ranking of corporations active in faction warfare by total kills. A corporation is considered \"active\" if they have participated in faction warfare in the past 14 days. - */ - activeTotal: Array; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsLastWeek.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsLastWeek.ts deleted file mode 100755 index e222d06..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsLastWeek.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * last_week object - */ -export interface GetFwLeaderboardsCorporationsLastWeek { - /** - * corporation_id integer - */ - corporationId?: number; - /** - * Amount of kills - */ - amount?: number; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsLastWeek1.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsLastWeek1.ts deleted file mode 100755 index 8e73b3e..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsLastWeek1.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * last_week object - */ -export interface GetFwLeaderboardsCorporationsLastWeek1 { - /** - * corporation_id integer - */ - corporationId?: number; - /** - * Amount of victory points - */ - amount?: number; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsOk.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsOk.ts deleted file mode 100755 index a572aff..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsOk.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetFwLeaderboardsCorporationsKills } from './getFwLeaderboardsCorporationsKills'; -import { GetFwLeaderboardsCorporationsVictoryPoints } from './getFwLeaderboardsCorporationsVictoryPoints'; - - -/** - * 200 ok object - */ -export interface GetFwLeaderboardsCorporationsOk { - kills: GetFwLeaderboardsCorporationsKills; - victoryPoints: GetFwLeaderboardsCorporationsVictoryPoints; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsVictoryPoints.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsVictoryPoints.ts deleted file mode 100755 index 4d461da..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsVictoryPoints.ts +++ /dev/null @@ -1,33 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetFwLeaderboardsCorporationsActiveTotal1 } from './getFwLeaderboardsCorporationsActiveTotal1'; -import { GetFwLeaderboardsCorporationsLastWeek1 } from './getFwLeaderboardsCorporationsLastWeek1'; -import { GetFwLeaderboardsCorporationsYesterday1 } from './getFwLeaderboardsCorporationsYesterday1'; - - -/** - * Top 10 rankings of corporations by victory points from yesterday, last week and in total - */ -export interface GetFwLeaderboardsCorporationsVictoryPoints { - /** - * Top 10 ranking of corporations by victory points in the past day - */ - yesterday: Array; - /** - * Top 10 ranking of corporations by victory points in the past week - */ - lastWeek: Array; - /** - * Top 10 ranking of corporations active in faction warfare by total victory points. A corporation is considered \"active\" if they have participated in faction warfare in the past 14 days. - */ - activeTotal: Array; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsYesterday.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsYesterday.ts deleted file mode 100755 index d779783..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsYesterday.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * yesterday object - */ -export interface GetFwLeaderboardsCorporationsYesterday { - /** - * corporation_id integer - */ - corporationId?: number; - /** - * Amount of kills - */ - amount?: number; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsYesterday1.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsYesterday1.ts deleted file mode 100755 index 2cdaac4..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsCorporationsYesterday1.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * yesterday object - */ -export interface GetFwLeaderboardsCorporationsYesterday1 { - /** - * corporation_id integer - */ - corporationId?: number; - /** - * Amount of victory points - */ - amount?: number; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsKills.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsKills.ts deleted file mode 100755 index 86a75eb..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsKills.ts +++ /dev/null @@ -1,33 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetFwLeaderboardsActiveTotal } from './getFwLeaderboardsActiveTotal'; -import { GetFwLeaderboardsLastWeek } from './getFwLeaderboardsLastWeek'; -import { GetFwLeaderboardsYesterday } from './getFwLeaderboardsYesterday'; - - -/** - * Top 4 rankings of factions by number of kills from yesterday, last week and in total. - */ -export interface GetFwLeaderboardsKills { - /** - * Top 4 ranking of factions by kills in the past day - */ - yesterday: Array; - /** - * Top 4 ranking of factions by kills in the past week - */ - lastWeek: Array; - /** - * Top 4 ranking of factions active in faction warfare by total kills. A faction is considered \"active\" if they have participated in faction warfare in the past 14 days. - */ - activeTotal: Array; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsLastWeek.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsLastWeek.ts deleted file mode 100755 index b84b93e..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsLastWeek.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * last_week object - */ -export interface GetFwLeaderboardsLastWeek { - /** - * faction_id integer - */ - factionId?: number; - /** - * Amount of kills - */ - amount?: number; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsLastWeek1.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsLastWeek1.ts deleted file mode 100755 index 271a44e..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsLastWeek1.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * last_week object - */ -export interface GetFwLeaderboardsLastWeek1 { - /** - * faction_id integer - */ - factionId?: number; - /** - * Amount of victory points - */ - amount?: number; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsOk.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsOk.ts deleted file mode 100755 index d6bca9f..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsOk.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetFwLeaderboardsKills } from './getFwLeaderboardsKills'; -import { GetFwLeaderboardsVictoryPoints } from './getFwLeaderboardsVictoryPoints'; - - -/** - * 200 ok object - */ -export interface GetFwLeaderboardsOk { - kills: GetFwLeaderboardsKills; - victoryPoints: GetFwLeaderboardsVictoryPoints; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsVictoryPoints.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsVictoryPoints.ts deleted file mode 100755 index 932c2b7..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsVictoryPoints.ts +++ /dev/null @@ -1,33 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetFwLeaderboardsActiveTotal1 } from './getFwLeaderboardsActiveTotal1'; -import { GetFwLeaderboardsLastWeek1 } from './getFwLeaderboardsLastWeek1'; -import { GetFwLeaderboardsYesterday1 } from './getFwLeaderboardsYesterday1'; - - -/** - * Top 4 rankings of factions by victory points from yesterday, last week and in total - */ -export interface GetFwLeaderboardsVictoryPoints { - /** - * Top 4 ranking of factions by victory points in the past day - */ - yesterday: Array; - /** - * Top 4 ranking of factions by victory points in the past week - */ - lastWeek: Array; - /** - * Top 4 ranking of factions active in faction warfare by total victory points. A faction is considered \"active\" if they have participated in faction warfare in the past 14 days. - */ - activeTotal: Array; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsYesterday.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsYesterday.ts deleted file mode 100755 index de571d3..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsYesterday.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * yesterday object - */ -export interface GetFwLeaderboardsYesterday { - /** - * faction_id integer - */ - factionId?: number; - /** - * Amount of kills - */ - amount?: number; -} diff --git a/src/app/eve-online-angular-client/model/getFwLeaderboardsYesterday1.ts b/src/app/eve-online-angular-client/model/getFwLeaderboardsYesterday1.ts deleted file mode 100755 index e78c52a..0000000 --- a/src/app/eve-online-angular-client/model/getFwLeaderboardsYesterday1.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * yesterday object - */ -export interface GetFwLeaderboardsYesterday1 { - /** - * faction_id integer - */ - factionId?: number; - /** - * Amount of victory points - */ - amount?: number; -} diff --git a/src/app/eve-online-angular-client/model/getFwStats200Ok.ts b/src/app/eve-online-angular-client/model/getFwStats200Ok.ts deleted file mode 100755 index 58e4ffe..0000000 --- a/src/app/eve-online-angular-client/model/getFwStats200Ok.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetFwStatsKills } from './getFwStatsKills'; -import { GetFwStatsVictoryPoints } from './getFwStatsVictoryPoints'; - - -/** - * 200 ok object - */ -export interface GetFwStats200Ok { - /** - * faction_id integer - */ - factionId: number; - /** - * How many pilots fight for the given faction - */ - pilots: number; - /** - * The number of solar systems controlled by the given faction - */ - systemsControlled: number; - kills: GetFwStatsKills; - victoryPoints: GetFwStatsVictoryPoints; -} diff --git a/src/app/eve-online-angular-client/model/getFwStatsKills.ts b/src/app/eve-online-angular-client/model/getFwStatsKills.ts deleted file mode 100755 index 532a4e6..0000000 --- a/src/app/eve-online-angular-client/model/getFwStatsKills.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Summary of kills against an enemy faction for the given faction - */ -export interface GetFwStatsKills { - /** - * Yesterday's total number of kills against enemy factions - */ - yesterday: number; - /** - * Last week's total number of kills against enemy factions - */ - lastWeek: number; - /** - * Total number of kills against enemy factions since faction warfare began - */ - total: number; -} diff --git a/src/app/eve-online-angular-client/model/getFwStatsVictoryPoints.ts b/src/app/eve-online-angular-client/model/getFwStatsVictoryPoints.ts deleted file mode 100755 index 3374906..0000000 --- a/src/app/eve-online-angular-client/model/getFwStatsVictoryPoints.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Summary of victory points gained for the given faction - */ -export interface GetFwStatsVictoryPoints { - /** - * Yesterday's victory points gained - */ - yesterday: number; - /** - * Last week's victory points gained - */ - lastWeek: number; - /** - * Total victory points gained since faction warfare began - */ - total: number; -} diff --git a/src/app/eve-online-angular-client/model/getFwSystems200Ok.ts b/src/app/eve-online-angular-client/model/getFwSystems200Ok.ts deleted file mode 100755 index 5fc9ed9..0000000 --- a/src/app/eve-online-angular-client/model/getFwSystems200Ok.ts +++ /dev/null @@ -1,42 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetFwSystems200Ok { - /** - * solar_system_id integer - */ - solarSystemId: number; - /** - * owner_faction_id integer - */ - ownerFactionId: number; - /** - * occupier_faction_id integer - */ - occupierFactionId: number; - /** - * victory_points integer - */ - victoryPoints: number; - /** - * victory_points_threshold integer - */ - victoryPointsThreshold: number; - /** - * contested boolean - */ - contested: boolean; -} diff --git a/src/app/eve-online-angular-client/model/getFwWars200Ok.ts b/src/app/eve-online-angular-client/model/getFwWars200Ok.ts deleted file mode 100755 index 220ae13..0000000 --- a/src/app/eve-online-angular-client/model/getFwWars200Ok.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetFwWars200Ok { - /** - * faction_id integer - */ - factionId: number; - /** - * The faction ID of the enemy faction. - */ - againstId: number; -} diff --git a/src/app/eve-online-angular-client/model/getIncursions200Ok.ts b/src/app/eve-online-angular-client/model/getIncursions200Ok.ts deleted file mode 100755 index 8a54820..0000000 --- a/src/app/eve-online-angular-client/model/getIncursions200Ok.ts +++ /dev/null @@ -1,58 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetIncursions200Ok { - /** - * The type of this incursion - */ - type: string; - /** - * The state of this incursion - */ - state: GetIncursions200Ok.StateEnum; - /** - * Influence of this incursion as a float from 0 to 1 - */ - influence: number; - /** - * Whether the final encounter has boss or not - */ - hasBoss: boolean; - /** - * The attacking faction's id - */ - factionId: number; - /** - * The constellation id in which this incursion takes place - */ - constellationId: number; - /** - * Staging solar system for this incursion - */ - stagingSolarSystemId: number; - /** - * A list of infested solar system ids that are a part of this incursion - */ - infestedSolarSystems: Array; -} -export namespace GetIncursions200Ok { - export type StateEnum = 'withdrawing' | 'mobilizing' | 'established'; - export const StateEnum = { - Withdrawing: 'withdrawing' as StateEnum, - Mobilizing: 'mobilizing' as StateEnum, - Established: 'established' as StateEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getIndustryFacilities200Ok.ts b/src/app/eve-online-angular-client/model/getIndustryFacilities200Ok.ts deleted file mode 100755 index 0dbda86..0000000 --- a/src/app/eve-online-angular-client/model/getIndustryFacilities200Ok.ts +++ /dev/null @@ -1,42 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetIndustryFacilities200Ok { - /** - * ID of the facility - */ - facilityId: number; - /** - * Tax imposed by the facility - */ - tax?: number; - /** - * Owner of the facility - */ - ownerId: number; - /** - * Type ID of the facility - */ - typeId: number; - /** - * Solar system ID where the facility is - */ - solarSystemId: number; - /** - * Region ID where the facility is - */ - regionId: number; -} diff --git a/src/app/eve-online-angular-client/model/getIndustrySystems200Ok.ts b/src/app/eve-online-angular-client/model/getIndustrySystems200Ok.ts deleted file mode 100755 index 170146e..0000000 --- a/src/app/eve-online-angular-client/model/getIndustrySystems200Ok.ts +++ /dev/null @@ -1,27 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetIndustrySystemsCostIndice } from './getIndustrySystemsCostIndice'; - - -/** - * 200 ok object - */ -export interface GetIndustrySystems200Ok { - /** - * solar_system_id integer - */ - solarSystemId: number; - /** - * cost_indices array - */ - costIndices: Array; -} diff --git a/src/app/eve-online-angular-client/model/getIndustrySystemsCostIndice.ts b/src/app/eve-online-angular-client/model/getIndustrySystemsCostIndice.ts deleted file mode 100755 index 04cce96..0000000 --- a/src/app/eve-online-angular-client/model/getIndustrySystemsCostIndice.ts +++ /dev/null @@ -1,41 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * cost_indice object - */ -export interface GetIndustrySystemsCostIndice { - /** - * activity string - */ - activity: GetIndustrySystemsCostIndice.ActivityEnum; - /** - * cost_index number - */ - costIndex: number; -} -export namespace GetIndustrySystemsCostIndice { - export type ActivityEnum = 'copying' | 'duplicating' | 'invention' | 'manufacturing' | 'none' | 'reaction' | 'researching_material_efficiency' | 'researching_technology' | 'researching_time_efficiency' | 'reverse_engineering'; - export const ActivityEnum = { - Copying: 'copying' as ActivityEnum, - Duplicating: 'duplicating' as ActivityEnum, - Invention: 'invention' as ActivityEnum, - Manufacturing: 'manufacturing' as ActivityEnum, - None: 'none' as ActivityEnum, - Reaction: 'reaction' as ActivityEnum, - ResearchingMaterialEfficiency: 'researching_material_efficiency' as ActivityEnum, - ResearchingTechnology: 'researching_technology' as ActivityEnum, - ResearchingTimeEfficiency: 'researching_time_efficiency' as ActivityEnum, - ReverseEngineering: 'reverse_engineering' as ActivityEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getInsurancePrices200Ok.ts b/src/app/eve-online-angular-client/model/getInsurancePrices200Ok.ts deleted file mode 100755 index 1f64ff2..0000000 --- a/src/app/eve-online-angular-client/model/getInsurancePrices200Ok.ts +++ /dev/null @@ -1,27 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetInsurancePricesLevel } from './getInsurancePricesLevel'; - - -/** - * 200 ok object - */ -export interface GetInsurancePrices200Ok { - /** - * type_id integer - */ - typeId: number; - /** - * A list of a available insurance levels for this ship type - */ - levels: Array; -} diff --git a/src/app/eve-online-angular-client/model/getInsurancePricesLevel.ts b/src/app/eve-online-angular-client/model/getInsurancePricesLevel.ts deleted file mode 100755 index e725e04..0000000 --- a/src/app/eve-online-angular-client/model/getInsurancePricesLevel.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * level object - */ -export interface GetInsurancePricesLevel { - /** - * cost number - */ - cost: number; - /** - * payout number - */ - payout: number; - /** - * Localized insurance level - */ - name: string; -} diff --git a/src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashAttacker.ts b/src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashAttacker.ts deleted file mode 100755 index 9769ca2..0000000 --- a/src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashAttacker.ts +++ /dev/null @@ -1,54 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * attacker object - */ -export interface GetKillmailsKillmailIdKillmailHashAttacker { - /** - * character_id integer - */ - characterId?: number; - /** - * corporation_id integer - */ - corporationId?: number; - /** - * alliance_id integer - */ - allianceId?: number; - /** - * faction_id integer - */ - factionId?: number; - /** - * Security status for the attacker - */ - securityStatus: number; - /** - * Was the attacker the one to achieve the final blow - */ - finalBlow: boolean; - /** - * damage_done integer - */ - damageDone: number; - /** - * What ship was the attacker flying - */ - shipTypeId?: number; - /** - * What weapon was used by the attacker for the kill - */ - weaponTypeId?: number; -} diff --git a/src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashItem.ts b/src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashItem.ts deleted file mode 100755 index 270ac39..0000000 --- a/src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashItem.ts +++ /dev/null @@ -1,38 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * item object - */ -export interface GetKillmailsKillmailIdKillmailHashItem { - /** - * item_type_id integer - */ - itemTypeId: number; - /** - * quantity_destroyed integer - */ - quantityDestroyed?: number; - /** - * quantity_dropped integer - */ - quantityDropped?: number; - /** - * singleton integer - */ - singleton: number; - /** - * flag integer - */ - flag: number; -} diff --git a/src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashItem1.ts b/src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashItem1.ts deleted file mode 100755 index af928db..0000000 --- a/src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashItem1.ts +++ /dev/null @@ -1,43 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetKillmailsKillmailIdKillmailHashItem } from './getKillmailsKillmailIdKillmailHashItem'; - - -/** - * item object - */ -export interface GetKillmailsKillmailIdKillmailHashItem1 { - /** - * item_type_id integer - */ - itemTypeId: number; - /** - * How many of the item were destroyed if any - */ - quantityDestroyed?: number; - /** - * How many of the item were dropped if any - */ - quantityDropped?: number; - /** - * singleton integer - */ - singleton: number; - /** - * Flag for the location of the item - */ - flag: number; - /** - * items array - */ - items?: Array; -} diff --git a/src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashOk.ts b/src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashOk.ts deleted file mode 100755 index 09027d1..0000000 --- a/src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashOk.ts +++ /dev/null @@ -1,45 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetKillmailsKillmailIdKillmailHashAttacker } from './getKillmailsKillmailIdKillmailHashAttacker'; -import { GetKillmailsKillmailIdKillmailHashVictim } from './getKillmailsKillmailIdKillmailHashVictim'; - - -/** - * 200 ok object - */ -export interface GetKillmailsKillmailIdKillmailHashOk { - /** - * ID of the killmail - */ - killmailId: number; - /** - * Time that the victim was killed and the killmail generated - */ - killmailTime: Date; - victim: GetKillmailsKillmailIdKillmailHashVictim; - /** - * attackers array - */ - attackers: Array; - /** - * Solar system that the kill took place in - */ - solarSystemId: number; - /** - * Moon if the kill took place at one - */ - moonId?: number; - /** - * War if the killmail is generated in relation to an official war - */ - warId?: number; -} diff --git a/src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashPosition.ts b/src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashPosition.ts deleted file mode 100755 index 74d0825..0000000 --- a/src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashPosition.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Coordinates of the victim in Cartesian space relative to the Sun - */ -export interface GetKillmailsKillmailIdKillmailHashPosition { - /** - * x number - */ - x: number; - /** - * y number - */ - y: number; - /** - * z number - */ - z: number; -} diff --git a/src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashUnprocessableEntity.ts b/src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashUnprocessableEntity.ts deleted file mode 100755 index 6fb5706..0000000 --- a/src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashUnprocessableEntity.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Unprocessable entity - */ -export interface GetKillmailsKillmailIdKillmailHashUnprocessableEntity { - /** - * Unprocessable entity message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashVictim.ts b/src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashVictim.ts deleted file mode 100755 index b335a43..0000000 --- a/src/app/eve-online-angular-client/model/getKillmailsKillmailIdKillmailHashVictim.ts +++ /dev/null @@ -1,49 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetKillmailsKillmailIdKillmailHashItem1 } from './getKillmailsKillmailIdKillmailHashItem1'; -import { GetKillmailsKillmailIdKillmailHashPosition } from './getKillmailsKillmailIdKillmailHashPosition'; - - -/** - * victim object - */ -export interface GetKillmailsKillmailIdKillmailHashVictim { - /** - * character_id integer - */ - characterId?: number; - /** - * corporation_id integer - */ - corporationId?: number; - /** - * alliance_id integer - */ - allianceId?: number; - /** - * faction_id integer - */ - factionId?: number; - /** - * How much total damage was taken by the victim - */ - damageTaken: number; - /** - * The ship that the victim was piloting and was destroyed - */ - shipTypeId: number; - /** - * items array - */ - items?: Array; - position?: GetKillmailsKillmailIdKillmailHashPosition; -} diff --git a/src/app/eve-online-angular-client/model/getLoyaltyStoresCorporationIdOffers200Ok.ts b/src/app/eve-online-angular-client/model/getLoyaltyStoresCorporationIdOffers200Ok.ts deleted file mode 100755 index a2a324c..0000000 --- a/src/app/eve-online-angular-client/model/getLoyaltyStoresCorporationIdOffers200Ok.ts +++ /dev/null @@ -1,47 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetLoyaltyStoresCorporationIdOffersRequiredItem } from './getLoyaltyStoresCorporationIdOffersRequiredItem'; - - -/** - * 200 ok object - */ -export interface GetLoyaltyStoresCorporationIdOffers200Ok { - /** - * offer_id integer - */ - offerId: number; - /** - * type_id integer - */ - typeId: number; - /** - * quantity integer - */ - quantity: number; - /** - * lp_cost integer - */ - lpCost: number; - /** - * isk_cost integer - */ - iskCost: number; - /** - * Analysis kredit cost - */ - akCost?: number; - /** - * required_items array - */ - requiredItems: Array; -} diff --git a/src/app/eve-online-angular-client/model/getLoyaltyStoresCorporationIdOffersNotFound.ts b/src/app/eve-online-angular-client/model/getLoyaltyStoresCorporationIdOffersNotFound.ts deleted file mode 100755 index 7c68c5e..0000000 --- a/src/app/eve-online-angular-client/model/getLoyaltyStoresCorporationIdOffersNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetLoyaltyStoresCorporationIdOffersNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getLoyaltyStoresCorporationIdOffersRequiredItem.ts b/src/app/eve-online-angular-client/model/getLoyaltyStoresCorporationIdOffersRequiredItem.ts deleted file mode 100755 index 3f4f780..0000000 --- a/src/app/eve-online-angular-client/model/getLoyaltyStoresCorporationIdOffersRequiredItem.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * required_item object - */ -export interface GetLoyaltyStoresCorporationIdOffersRequiredItem { - /** - * type_id integer - */ - typeId: number; - /** - * quantity integer - */ - quantity: number; -} diff --git a/src/app/eve-online-angular-client/model/getMarketsGroupsMarketGroupIdNotFound.ts b/src/app/eve-online-angular-client/model/getMarketsGroupsMarketGroupIdNotFound.ts deleted file mode 100755 index f5b54cd..0000000 --- a/src/app/eve-online-angular-client/model/getMarketsGroupsMarketGroupIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetMarketsGroupsMarketGroupIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getMarketsGroupsMarketGroupIdOk.ts b/src/app/eve-online-angular-client/model/getMarketsGroupsMarketGroupIdOk.ts deleted file mode 100755 index 3cbb8ce..0000000 --- a/src/app/eve-online-angular-client/model/getMarketsGroupsMarketGroupIdOk.ts +++ /dev/null @@ -1,38 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetMarketsGroupsMarketGroupIdOk { - /** - * market_group_id integer - */ - marketGroupId: number; - /** - * name string - */ - name: string; - /** - * description string - */ - description: string; - /** - * types array - */ - types: Array; - /** - * parent_group_id integer - */ - parentGroupId?: number; -} diff --git a/src/app/eve-online-angular-client/model/getMarketsPrices200Ok.ts b/src/app/eve-online-angular-client/model/getMarketsPrices200Ok.ts deleted file mode 100755 index 8e33740..0000000 --- a/src/app/eve-online-angular-client/model/getMarketsPrices200Ok.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetMarketsPrices200Ok { - /** - * type_id integer - */ - typeId: number; - /** - * average_price number - */ - averagePrice?: number; - /** - * adjusted_price number - */ - adjustedPrice?: number; -} diff --git a/src/app/eve-online-angular-client/model/getMarketsRegionIdHistory200Ok.ts b/src/app/eve-online-angular-client/model/getMarketsRegionIdHistory200Ok.ts deleted file mode 100755 index d776c2c..0000000 --- a/src/app/eve-online-angular-client/model/getMarketsRegionIdHistory200Ok.ts +++ /dev/null @@ -1,42 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetMarketsRegionIdHistory200Ok { - /** - * The date of this historical statistic entry - */ - date: string; - /** - * Total number of orders happened that day - */ - orderCount: number; - /** - * Total - */ - volume: number; - /** - * highest number - */ - highest: number; - /** - * average number - */ - average: number; - /** - * lowest number - */ - lowest: number; -} diff --git a/src/app/eve-online-angular-client/model/getMarketsRegionIdHistoryUnprocessableEntity.ts b/src/app/eve-online-angular-client/model/getMarketsRegionIdHistoryUnprocessableEntity.ts deleted file mode 100755 index ac64e50..0000000 --- a/src/app/eve-online-angular-client/model/getMarketsRegionIdHistoryUnprocessableEntity.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Unprocessable entity - */ -export interface GetMarketsRegionIdHistoryUnprocessableEntity { - /** - * Unprocessable entity message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getMarketsRegionIdOrders200Ok.ts b/src/app/eve-online-angular-client/model/getMarketsRegionIdOrders200Ok.ts deleted file mode 100755 index d88957b..0000000 --- a/src/app/eve-online-angular-client/model/getMarketsRegionIdOrders200Ok.ts +++ /dev/null @@ -1,79 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetMarketsRegionIdOrders200Ok { - /** - * order_id integer - */ - orderId: number; - /** - * type_id integer - */ - typeId: number; - /** - * location_id integer - */ - locationId: number; - /** - * volume_total integer - */ - volumeTotal: number; - /** - * volume_remain integer - */ - volumeRemain: number; - /** - * min_volume integer - */ - minVolume: number; - /** - * price number - */ - price: number; - /** - * is_buy_order boolean - */ - isBuyOrder: boolean; - /** - * duration integer - */ - duration: number; - /** - * issued string - */ - issued: Date; - /** - * range string - */ - range: GetMarketsRegionIdOrders200Ok.RangeEnum; -} -export namespace GetMarketsRegionIdOrders200Ok { - export type RangeEnum = 'station' | 'region' | 'solarsystem' | '1' | '2' | '3' | '4' | '5' | '10' | '20' | '30' | '40'; - export const RangeEnum = { - Station: 'station' as RangeEnum, - Region: 'region' as RangeEnum, - Solarsystem: 'solarsystem' as RangeEnum, - _1: '1' as RangeEnum, - _2: '2' as RangeEnum, - _3: '3' as RangeEnum, - _4: '4' as RangeEnum, - _5: '5' as RangeEnum, - _10: '10' as RangeEnum, - _20: '20' as RangeEnum, - _30: '30' as RangeEnum, - _40: '40' as RangeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getMarketsRegionIdOrdersUnprocessableEntity.ts b/src/app/eve-online-angular-client/model/getMarketsRegionIdOrdersUnprocessableEntity.ts deleted file mode 100755 index a744247..0000000 --- a/src/app/eve-online-angular-client/model/getMarketsRegionIdOrdersUnprocessableEntity.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Unprocessable entity - */ -export interface GetMarketsRegionIdOrdersUnprocessableEntity { - /** - * Unprocessable entity message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getMarketsStructuresStructureId200Ok.ts b/src/app/eve-online-angular-client/model/getMarketsStructuresStructureId200Ok.ts deleted file mode 100755 index a989432..0000000 --- a/src/app/eve-online-angular-client/model/getMarketsStructuresStructureId200Ok.ts +++ /dev/null @@ -1,79 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetMarketsStructuresStructureId200Ok { - /** - * order_id integer - */ - orderId: number; - /** - * type_id integer - */ - typeId: number; - /** - * location_id integer - */ - locationId: number; - /** - * volume_total integer - */ - volumeTotal: number; - /** - * volume_remain integer - */ - volumeRemain: number; - /** - * min_volume integer - */ - minVolume: number; - /** - * price number - */ - price: number; - /** - * is_buy_order boolean - */ - isBuyOrder: boolean; - /** - * duration integer - */ - duration: number; - /** - * issued string - */ - issued: Date; - /** - * range string - */ - range: GetMarketsStructuresStructureId200Ok.RangeEnum; -} -export namespace GetMarketsStructuresStructureId200Ok { - export type RangeEnum = 'station' | 'region' | 'solarsystem' | '1' | '2' | '3' | '4' | '5' | '10' | '20' | '30' | '40'; - export const RangeEnum = { - Station: 'station' as RangeEnum, - Region: 'region' as RangeEnum, - Solarsystem: 'solarsystem' as RangeEnum, - _1: '1' as RangeEnum, - _2: '2' as RangeEnum, - _3: '3' as RangeEnum, - _4: '4' as RangeEnum, - _5: '5' as RangeEnum, - _10: '10' as RangeEnum, - _20: '20' as RangeEnum, - _30: '30' as RangeEnum, - _40: '40' as RangeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getOpportunitiesGroupsGroupIdOk.ts b/src/app/eve-online-angular-client/model/getOpportunitiesGroupsGroupIdOk.ts deleted file mode 100755 index 06c9ba2..0000000 --- a/src/app/eve-online-angular-client/model/getOpportunitiesGroupsGroupIdOk.ts +++ /dev/null @@ -1,42 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetOpportunitiesGroupsGroupIdOk { - /** - * group_id integer - */ - groupId: number; - /** - * name string - */ - name: string; - /** - * description string - */ - description: string; - /** - * notification string - */ - notification: string; - /** - * Tasks need to complete for this group - */ - requiredTasks: Array; - /** - * The groups that are connected to this group on the opportunities map - */ - connectedGroups: Array; -} diff --git a/src/app/eve-online-angular-client/model/getOpportunitiesTasksTaskIdOk.ts b/src/app/eve-online-angular-client/model/getOpportunitiesTasksTaskIdOk.ts deleted file mode 100755 index 3a5dbc0..0000000 --- a/src/app/eve-online-angular-client/model/getOpportunitiesTasksTaskIdOk.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetOpportunitiesTasksTaskIdOk { - /** - * task_id integer - */ - taskId: number; - /** - * name string - */ - name: string; - /** - * description string - */ - description: string; - /** - * notification string - */ - notification: string; -} diff --git a/src/app/eve-online-angular-client/model/getRouteOriginDestinationNotFound.ts b/src/app/eve-online-angular-client/model/getRouteOriginDestinationNotFound.ts deleted file mode 100755 index a0c7274..0000000 --- a/src/app/eve-online-angular-client/model/getRouteOriginDestinationNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetRouteOriginDestinationNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getSearchOk.ts b/src/app/eve-online-angular-client/model/getSearchOk.ts deleted file mode 100755 index d8b051f..0000000 --- a/src/app/eve-online-angular-client/model/getSearchOk.ts +++ /dev/null @@ -1,58 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetSearchOk { - /** - * agent array - */ - agent?: Array; - /** - * alliance array - */ - alliance?: Array; - /** - * character array - */ - character?: Array; - /** - * constellation array - */ - constellation?: Array; - /** - * corporation array - */ - corporation?: Array; - /** - * faction array - */ - faction?: Array; - /** - * inventory_type array - */ - inventoryType?: Array; - /** - * region array - */ - region?: Array; - /** - * solar_system array - */ - solarSystem?: Array; - /** - * station array - */ - station?: Array; -} diff --git a/src/app/eve-online-angular-client/model/getSovereigntyCampaigns200Ok.ts b/src/app/eve-online-angular-client/model/getSovereigntyCampaigns200Ok.ts deleted file mode 100755 index f5d29a7..0000000 --- a/src/app/eve-online-angular-client/model/getSovereigntyCampaigns200Ok.ts +++ /dev/null @@ -1,68 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetSovereigntyCampaignsParticipant } from './getSovereigntyCampaignsParticipant'; - - -/** - * 200 ok object - */ -export interface GetSovereigntyCampaigns200Ok { - /** - * Unique ID for this campaign. - */ - campaignId: number; - /** - * The structure item ID that is related to this campaign. - */ - structureId: number; - /** - * The solar system the structure is located in. - */ - solarSystemId: number; - /** - * The constellation in which the campaign will take place. - */ - constellationId: number; - /** - * Type of event this campaign is for. tcu_defense, ihub_defense and station_defense are referred to as \"Defense Events\", station_freeport as \"Freeport Events\". - */ - eventType: GetSovereigntyCampaigns200Ok.EventTypeEnum; - /** - * Time the event is scheduled to start. - */ - startTime: Date; - /** - * Defending alliance, only present in Defense Events - */ - defenderId?: number; - /** - * Score for the defending alliance, only present in Defense Events. - */ - defenderScore?: number; - /** - * Score for all attacking parties, only present in Defense Events. - */ - attackersScore?: number; - /** - * Alliance participating and their respective scores, only present in Freeport Events. - */ - participants?: Array; -} -export namespace GetSovereigntyCampaigns200Ok { - export type EventTypeEnum = 'tcu_defense' | 'ihub_defense' | 'station_defense' | 'station_freeport'; - export const EventTypeEnum = { - TcuDefense: 'tcu_defense' as EventTypeEnum, - IhubDefense: 'ihub_defense' as EventTypeEnum, - StationDefense: 'station_defense' as EventTypeEnum, - StationFreeport: 'station_freeport' as EventTypeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getSovereigntyCampaignsParticipant.ts b/src/app/eve-online-angular-client/model/getSovereigntyCampaignsParticipant.ts deleted file mode 100755 index 42c6437..0000000 --- a/src/app/eve-online-angular-client/model/getSovereigntyCampaignsParticipant.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * participant object - */ -export interface GetSovereigntyCampaignsParticipant { - /** - * alliance_id integer - */ - allianceId: number; - /** - * score number - */ - score: number; -} diff --git a/src/app/eve-online-angular-client/model/getSovereigntyMap200Ok.ts b/src/app/eve-online-angular-client/model/getSovereigntyMap200Ok.ts deleted file mode 100755 index 0960fdf..0000000 --- a/src/app/eve-online-angular-client/model/getSovereigntyMap200Ok.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetSovereigntyMap200Ok { - /** - * system_id integer - */ - systemId: number; - /** - * alliance_id integer - */ - allianceId?: number; - /** - * corporation_id integer - */ - corporationId?: number; - /** - * faction_id integer - */ - factionId?: number; -} diff --git a/src/app/eve-online-angular-client/model/getSovereigntyStructures200Ok.ts b/src/app/eve-online-angular-client/model/getSovereigntyStructures200Ok.ts deleted file mode 100755 index 2e4bb46..0000000 --- a/src/app/eve-online-angular-client/model/getSovereigntyStructures200Ok.ts +++ /dev/null @@ -1,46 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetSovereigntyStructures200Ok { - /** - * The alliance that owns the structure. - */ - allianceId: number; - /** - * Solar system in which the structure is located. - */ - solarSystemId: number; - /** - * Unique item ID for this structure. - */ - structureId: number; - /** - * A reference to the type of structure this is. - */ - structureTypeId: number; - /** - * The occupancy level for the next or current vulnerability window. This takes into account all development indexes and capital system bonuses. Also known as Activity Defense Multiplier from in the client. It increases the time that attackers must spend using their entosis links on the structure. - */ - vulnerabilityOccupancyLevel?: number; - /** - * The next time at which the structure will become vulnerable. Or the start time of the current window if current time is between this and vulnerableEndTime. - */ - vulnerableStartTime?: Date; - /** - * The time at which the next or current vulnerability window ends. At the end of a vulnerability window the next window is recalculated and locked in along with the vulnerabilityOccupancyLevel. If the structure is not in 100% entosis control of the defender, it will go in to 'overtime' and stay vulnerable for as long as that situation persists. Only once the defenders have 100% entosis control and has the vulnerableEndTime passed does the vulnerability interval expire and a new one is calculated. - */ - vulnerableEndTime?: Date; -} diff --git a/src/app/eve-online-angular-client/model/getStatusOk.ts b/src/app/eve-online-angular-client/model/getStatusOk.ts deleted file mode 100755 index 3b43b70..0000000 --- a/src/app/eve-online-angular-client/model/getStatusOk.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetStatusOk { - /** - * Server start timestamp - */ - startTime: Date; - /** - * Current online player count - */ - players: number; - /** - * Running version as string - */ - serverVersion: string; - /** - * If the server is in VIP mode - */ - vip?: boolean; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseAncestries200Ok.ts b/src/app/eve-online-angular-client/model/getUniverseAncestries200Ok.ts deleted file mode 100755 index 65df68c..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseAncestries200Ok.ts +++ /dev/null @@ -1,42 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetUniverseAncestries200Ok { - /** - * id integer - */ - id: number; - /** - * name string - */ - name: string; - /** - * The bloodline associated with this ancestry - */ - bloodlineId: number; - /** - * description string - */ - description: string; - /** - * short_description string - */ - shortDescription?: string; - /** - * icon_id integer - */ - iconId?: number; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseBloodlines200Ok.ts b/src/app/eve-online-angular-client/model/getUniverseBloodlines200Ok.ts deleted file mode 100755 index 972afaa..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseBloodlines200Ok.ts +++ /dev/null @@ -1,62 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetUniverseBloodlines200Ok { - /** - * bloodline_id integer - */ - bloodlineId: number; - /** - * name string - */ - name: string; - /** - * description string - */ - description: string; - /** - * race_id integer - */ - raceId: number; - /** - * ship_type_id integer - */ - shipTypeId: number; - /** - * corporation_id integer - */ - corporationId: number; - /** - * perception integer - */ - perception: number; - /** - * willpower integer - */ - willpower: number; - /** - * charisma integer - */ - charisma: number; - /** - * memory integer - */ - memory: number; - /** - * intelligence integer - */ - intelligence: number; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseCategoriesCategoryIdNotFound.ts b/src/app/eve-online-angular-client/model/getUniverseCategoriesCategoryIdNotFound.ts deleted file mode 100755 index 0d0c896..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseCategoriesCategoryIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetUniverseCategoriesCategoryIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseCategoriesCategoryIdOk.ts b/src/app/eve-online-angular-client/model/getUniverseCategoriesCategoryIdOk.ts deleted file mode 100755 index 531b056..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseCategoriesCategoryIdOk.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetUniverseCategoriesCategoryIdOk { - /** - * category_id integer - */ - categoryId: number; - /** - * name string - */ - name: string; - /** - * published boolean - */ - published: boolean; - /** - * groups array - */ - groups: Array; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseConstellationsConstellationIdNotFound.ts b/src/app/eve-online-angular-client/model/getUniverseConstellationsConstellationIdNotFound.ts deleted file mode 100755 index d99b07b..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseConstellationsConstellationIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetUniverseConstellationsConstellationIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseConstellationsConstellationIdOk.ts b/src/app/eve-online-angular-client/model/getUniverseConstellationsConstellationIdOk.ts deleted file mode 100755 index bc65e90..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseConstellationsConstellationIdOk.ts +++ /dev/null @@ -1,36 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetUniverseConstellationsConstellationIdPosition } from './getUniverseConstellationsConstellationIdPosition'; - - -/** - * 200 ok object - */ -export interface GetUniverseConstellationsConstellationIdOk { - /** - * constellation_id integer - */ - constellationId: number; - /** - * name string - */ - name: string; - position: GetUniverseConstellationsConstellationIdPosition; - /** - * The region this constellation is in - */ - regionId: number; - /** - * systems array - */ - systems: Array; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseConstellationsConstellationIdPosition.ts b/src/app/eve-online-angular-client/model/getUniverseConstellationsConstellationIdPosition.ts deleted file mode 100755 index aeb039f..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseConstellationsConstellationIdPosition.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * position object - */ -export interface GetUniverseConstellationsConstellationIdPosition { - /** - * x number - */ - x: number; - /** - * y number - */ - y: number; - /** - * z number - */ - z: number; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseFactions200Ok.ts b/src/app/eve-online-angular-client/model/getUniverseFactions200Ok.ts deleted file mode 100755 index 8c4922b..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseFactions200Ok.ts +++ /dev/null @@ -1,58 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetUniverseFactions200Ok { - /** - * faction_id integer - */ - factionId: number; - /** - * name string - */ - name: string; - /** - * description string - */ - description: string; - /** - * solar_system_id integer - */ - solarSystemId?: number; - /** - * corporation_id integer - */ - corporationId?: number; - /** - * militia_corporation_id integer - */ - militiaCorporationId?: number; - /** - * size_factor number - */ - sizeFactor: number; - /** - * station_count integer - */ - stationCount: number; - /** - * station_system_count integer - */ - stationSystemCount: number; - /** - * is_unique boolean - */ - isUnique: boolean; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseGraphicsGraphicIdNotFound.ts b/src/app/eve-online-angular-client/model/getUniverseGraphicsGraphicIdNotFound.ts deleted file mode 100755 index 7a55e3b..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseGraphicsGraphicIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetUniverseGraphicsGraphicIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseGraphicsGraphicIdOk.ts b/src/app/eve-online-angular-client/model/getUniverseGraphicsGraphicIdOk.ts deleted file mode 100755 index 64c66d4..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseGraphicsGraphicIdOk.ts +++ /dev/null @@ -1,50 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetUniverseGraphicsGraphicIdOk { - /** - * graphic_id integer - */ - graphicId: number; - /** - * graphic_file string - */ - graphicFile?: string; - /** - * sof_race_name string - */ - sofRaceName?: string; - /** - * sof_fation_name string - */ - sofFationName?: string; - /** - * sof_dna string - */ - sofDna?: string; - /** - * sof_hull_name string - */ - sofHullName?: string; - /** - * collision_file string - */ - collisionFile?: string; - /** - * icon_folder string - */ - iconFolder?: string; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseGroupsGroupIdNotFound.ts b/src/app/eve-online-angular-client/model/getUniverseGroupsGroupIdNotFound.ts deleted file mode 100755 index d242cf9..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseGroupsGroupIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetUniverseGroupsGroupIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseGroupsGroupIdOk.ts b/src/app/eve-online-angular-client/model/getUniverseGroupsGroupIdOk.ts deleted file mode 100755 index 5e8c051..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseGroupsGroupIdOk.ts +++ /dev/null @@ -1,38 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetUniverseGroupsGroupIdOk { - /** - * group_id integer - */ - groupId: number; - /** - * name string - */ - name: string; - /** - * published boolean - */ - published: boolean; - /** - * category_id integer - */ - categoryId: number; - /** - * types array - */ - types: Array; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseMoonsMoonIdNotFound.ts b/src/app/eve-online-angular-client/model/getUniverseMoonsMoonIdNotFound.ts deleted file mode 100755 index f7802ed..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseMoonsMoonIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetUniverseMoonsMoonIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseMoonsMoonIdOk.ts b/src/app/eve-online-angular-client/model/getUniverseMoonsMoonIdOk.ts deleted file mode 100755 index f14bbb5..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseMoonsMoonIdOk.ts +++ /dev/null @@ -1,32 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetUniverseMoonsMoonIdPosition } from './getUniverseMoonsMoonIdPosition'; - - -/** - * 200 ok object - */ -export interface GetUniverseMoonsMoonIdOk { - /** - * moon_id integer - */ - moonId: number; - /** - * name string - */ - name: string; - position: GetUniverseMoonsMoonIdPosition; - /** - * The solar system this moon is in - */ - systemId: number; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseMoonsMoonIdPosition.ts b/src/app/eve-online-angular-client/model/getUniverseMoonsMoonIdPosition.ts deleted file mode 100755 index 19ea46f..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseMoonsMoonIdPosition.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * position object - */ -export interface GetUniverseMoonsMoonIdPosition { - /** - * x number - */ - x: number; - /** - * y number - */ - y: number; - /** - * z number - */ - z: number; -} diff --git a/src/app/eve-online-angular-client/model/getUniversePlanetsPlanetIdNotFound.ts b/src/app/eve-online-angular-client/model/getUniversePlanetsPlanetIdNotFound.ts deleted file mode 100755 index 0d617ae..0000000 --- a/src/app/eve-online-angular-client/model/getUniversePlanetsPlanetIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetUniversePlanetsPlanetIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getUniversePlanetsPlanetIdOk.ts b/src/app/eve-online-angular-client/model/getUniversePlanetsPlanetIdOk.ts deleted file mode 100755 index 0937170..0000000 --- a/src/app/eve-online-angular-client/model/getUniversePlanetsPlanetIdOk.ts +++ /dev/null @@ -1,36 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetUniversePlanetsPlanetIdPosition } from './getUniversePlanetsPlanetIdPosition'; - - -/** - * 200 ok object - */ -export interface GetUniversePlanetsPlanetIdOk { - /** - * planet_id integer - */ - planetId: number; - /** - * name string - */ - name: string; - /** - * type_id integer - */ - typeId: number; - position: GetUniversePlanetsPlanetIdPosition; - /** - * The solar system this planet is in - */ - systemId: number; -} diff --git a/src/app/eve-online-angular-client/model/getUniversePlanetsPlanetIdPosition.ts b/src/app/eve-online-angular-client/model/getUniversePlanetsPlanetIdPosition.ts deleted file mode 100755 index f878bcf..0000000 --- a/src/app/eve-online-angular-client/model/getUniversePlanetsPlanetIdPosition.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * position object - */ -export interface GetUniversePlanetsPlanetIdPosition { - /** - * x number - */ - x: number; - /** - * y number - */ - y: number; - /** - * z number - */ - z: number; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseRaces200Ok.ts b/src/app/eve-online-angular-client/model/getUniverseRaces200Ok.ts deleted file mode 100755 index 892f159..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseRaces200Ok.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetUniverseRaces200Ok { - /** - * race_id integer - */ - raceId: number; - /** - * name string - */ - name: string; - /** - * description string - */ - description: string; - /** - * The alliance generally associated with this race - */ - allianceId: number; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseRegionsRegionIdNotFound.ts b/src/app/eve-online-angular-client/model/getUniverseRegionsRegionIdNotFound.ts deleted file mode 100755 index 13c50dc..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseRegionsRegionIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetUniverseRegionsRegionIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseRegionsRegionIdOk.ts b/src/app/eve-online-angular-client/model/getUniverseRegionsRegionIdOk.ts deleted file mode 100755 index 9ab385f..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseRegionsRegionIdOk.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetUniverseRegionsRegionIdOk { - /** - * region_id integer - */ - regionId: number; - /** - * name string - */ - name: string; - /** - * description string - */ - description?: string; - /** - * constellations array - */ - constellations: Array; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseSchematicsSchematicIdNotFound.ts b/src/app/eve-online-angular-client/model/getUniverseSchematicsSchematicIdNotFound.ts deleted file mode 100755 index 4bbf84c..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseSchematicsSchematicIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Schematic not found - */ -export interface GetUniverseSchematicsSchematicIdNotFound { - /** - * error message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseSchematicsSchematicIdOk.ts b/src/app/eve-online-angular-client/model/getUniverseSchematicsSchematicIdOk.ts deleted file mode 100755 index 3af8dba..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseSchematicsSchematicIdOk.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetUniverseSchematicsSchematicIdOk { - /** - * schematic_name string - */ - schematicName: string; - /** - * Time in seconds to process a run - */ - cycleTime: number; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseStargatesStargateIdDestination.ts b/src/app/eve-online-angular-client/model/getUniverseStargatesStargateIdDestination.ts deleted file mode 100755 index bad9cba..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseStargatesStargateIdDestination.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * destination object - */ -export interface GetUniverseStargatesStargateIdDestination { - /** - * The solar system this stargate connects to - */ - systemId: number; - /** - * The stargate this stargate connects to - */ - stargateId: number; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseStargatesStargateIdNotFound.ts b/src/app/eve-online-angular-client/model/getUniverseStargatesStargateIdNotFound.ts deleted file mode 100755 index 9e08496..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseStargatesStargateIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetUniverseStargatesStargateIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseStargatesStargateIdOk.ts b/src/app/eve-online-angular-client/model/getUniverseStargatesStargateIdOk.ts deleted file mode 100755 index 3853e6e..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseStargatesStargateIdOk.ts +++ /dev/null @@ -1,38 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetUniverseStargatesStargateIdDestination } from './getUniverseStargatesStargateIdDestination'; -import { GetUniverseStargatesStargateIdPosition } from './getUniverseStargatesStargateIdPosition'; - - -/** - * 200 ok object - */ -export interface GetUniverseStargatesStargateIdOk { - /** - * stargate_id integer - */ - stargateId: number; - /** - * name string - */ - name: string; - /** - * type_id integer - */ - typeId: number; - position: GetUniverseStargatesStargateIdPosition; - /** - * The solar system this stargate is in - */ - systemId: number; - destination: GetUniverseStargatesStargateIdDestination; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseStargatesStargateIdPosition.ts b/src/app/eve-online-angular-client/model/getUniverseStargatesStargateIdPosition.ts deleted file mode 100755 index 6053f31..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseStargatesStargateIdPosition.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * position object - */ -export interface GetUniverseStargatesStargateIdPosition { - /** - * x number - */ - x: number; - /** - * y number - */ - y: number; - /** - * z number - */ - z: number; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseStarsStarIdOk.ts b/src/app/eve-online-angular-client/model/getUniverseStarsStarIdOk.ts deleted file mode 100755 index 3499eb9..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseStarsStarIdOk.ts +++ /dev/null @@ -1,144 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetUniverseStarsStarIdOk { - /** - * name string - */ - name: string; - /** - * solar_system_id integer - */ - solarSystemId: number; - /** - * type_id integer - */ - typeId: number; - /** - * Age of star in years - */ - age: number; - /** - * luminosity number - */ - luminosity: number; - /** - * radius integer - */ - radius: number; - /** - * spectral_class string - */ - spectralClass: GetUniverseStarsStarIdOk.SpectralClassEnum; - /** - * temperature integer - */ - temperature: number; -} -export namespace GetUniverseStarsStarIdOk { - export type SpectralClassEnum = 'K2 V' | 'K4 V' | 'G2 V' | 'G8 V' | 'M7 V' | 'K7 V' | 'M2 V' | 'K5 V' | 'M3 V' | 'G0 V' | 'G7 V' | 'G3 V' | 'F9 V' | 'G5 V' | 'F6 V' | 'K8 V' | 'K9 V' | 'K6 V' | 'G9 V' | 'G6 V' | 'G4 VI' | 'G4 V' | 'F8 V' | 'F2 V' | 'F1 V' | 'K3 V' | 'F0 VI' | 'G1 VI' | 'G0 VI' | 'K1 V' | 'M4 V' | 'M1 V' | 'M6 V' | 'M0 V' | 'K2 IV' | 'G2 VI' | 'K0 V' | 'K5 IV' | 'F5 VI' | 'G6 VI' | 'F6 VI' | 'F2 IV' | 'G3 VI' | 'M8 V' | 'F1 VI' | 'K1 IV' | 'F7 V' | 'G5 VI' | 'M5 V' | 'G7 VI' | 'F5 V' | 'F4 VI' | 'F8 VI' | 'K3 IV' | 'F4 IV' | 'F0 V' | 'G7 IV' | 'G8 VI' | 'F2 VI' | 'F4 V' | 'F7 VI' | 'F3 V' | 'G1 V' | 'G9 VI' | 'F3 IV' | 'F9 VI' | 'M9 V' | 'K0 IV' | 'F1 IV' | 'G4 IV' | 'F3 VI' | 'K4 IV' | 'G5 IV' | 'G3 IV' | 'G1 IV' | 'K7 IV' | 'G0 IV' | 'K6 IV' | 'K9 IV' | 'G2 IV' | 'F9 IV' | 'F0 IV' | 'K8 IV' | 'G8 IV' | 'F6 IV' | 'F5 IV' | 'A0' | 'A0IV' | 'A0IV2'; - export const SpectralClassEnum = { - K2V: 'K2 V' as SpectralClassEnum, - K4V: 'K4 V' as SpectralClassEnum, - G2V: 'G2 V' as SpectralClassEnum, - G8V: 'G8 V' as SpectralClassEnum, - M7V: 'M7 V' as SpectralClassEnum, - K7V: 'K7 V' as SpectralClassEnum, - M2V: 'M2 V' as SpectralClassEnum, - K5V: 'K5 V' as SpectralClassEnum, - M3V: 'M3 V' as SpectralClassEnum, - G0V: 'G0 V' as SpectralClassEnum, - G7V: 'G7 V' as SpectralClassEnum, - G3V: 'G3 V' as SpectralClassEnum, - F9V: 'F9 V' as SpectralClassEnum, - G5V: 'G5 V' as SpectralClassEnum, - F6V: 'F6 V' as SpectralClassEnum, - K8V: 'K8 V' as SpectralClassEnum, - K9V: 'K9 V' as SpectralClassEnum, - K6V: 'K6 V' as SpectralClassEnum, - G9V: 'G9 V' as SpectralClassEnum, - G6V: 'G6 V' as SpectralClassEnum, - G4VI: 'G4 VI' as SpectralClassEnum, - G4V: 'G4 V' as SpectralClassEnum, - F8V: 'F8 V' as SpectralClassEnum, - F2V: 'F2 V' as SpectralClassEnum, - F1V: 'F1 V' as SpectralClassEnum, - K3V: 'K3 V' as SpectralClassEnum, - F0VI: 'F0 VI' as SpectralClassEnum, - G1VI: 'G1 VI' as SpectralClassEnum, - G0VI: 'G0 VI' as SpectralClassEnum, - K1V: 'K1 V' as SpectralClassEnum, - M4V: 'M4 V' as SpectralClassEnum, - M1V: 'M1 V' as SpectralClassEnum, - M6V: 'M6 V' as SpectralClassEnum, - M0V: 'M0 V' as SpectralClassEnum, - K2IV: 'K2 IV' as SpectralClassEnum, - G2VI: 'G2 VI' as SpectralClassEnum, - K0V: 'K0 V' as SpectralClassEnum, - K5IV: 'K5 IV' as SpectralClassEnum, - F5VI: 'F5 VI' as SpectralClassEnum, - G6VI: 'G6 VI' as SpectralClassEnum, - F6VI: 'F6 VI' as SpectralClassEnum, - F2IV: 'F2 IV' as SpectralClassEnum, - G3VI: 'G3 VI' as SpectralClassEnum, - M8V: 'M8 V' as SpectralClassEnum, - F1VI: 'F1 VI' as SpectralClassEnum, - K1IV: 'K1 IV' as SpectralClassEnum, - F7V: 'F7 V' as SpectralClassEnum, - G5VI: 'G5 VI' as SpectralClassEnum, - M5V: 'M5 V' as SpectralClassEnum, - G7VI: 'G7 VI' as SpectralClassEnum, - F5V: 'F5 V' as SpectralClassEnum, - F4VI: 'F4 VI' as SpectralClassEnum, - F8VI: 'F8 VI' as SpectralClassEnum, - K3IV: 'K3 IV' as SpectralClassEnum, - F4IV: 'F4 IV' as SpectralClassEnum, - F0V: 'F0 V' as SpectralClassEnum, - G7IV: 'G7 IV' as SpectralClassEnum, - G8VI: 'G8 VI' as SpectralClassEnum, - F2VI: 'F2 VI' as SpectralClassEnum, - F4V: 'F4 V' as SpectralClassEnum, - F7VI: 'F7 VI' as SpectralClassEnum, - F3V: 'F3 V' as SpectralClassEnum, - G1V: 'G1 V' as SpectralClassEnum, - G9VI: 'G9 VI' as SpectralClassEnum, - F3IV: 'F3 IV' as SpectralClassEnum, - F9VI: 'F9 VI' as SpectralClassEnum, - M9V: 'M9 V' as SpectralClassEnum, - K0IV: 'K0 IV' as SpectralClassEnum, - F1IV: 'F1 IV' as SpectralClassEnum, - G4IV: 'G4 IV' as SpectralClassEnum, - F3VI: 'F3 VI' as SpectralClassEnum, - K4IV: 'K4 IV' as SpectralClassEnum, - G5IV: 'G5 IV' as SpectralClassEnum, - G3IV: 'G3 IV' as SpectralClassEnum, - G1IV: 'G1 IV' as SpectralClassEnum, - K7IV: 'K7 IV' as SpectralClassEnum, - G0IV: 'G0 IV' as SpectralClassEnum, - K6IV: 'K6 IV' as SpectralClassEnum, - K9IV: 'K9 IV' as SpectralClassEnum, - G2IV: 'G2 IV' as SpectralClassEnum, - F9IV: 'F9 IV' as SpectralClassEnum, - F0IV: 'F0 IV' as SpectralClassEnum, - K8IV: 'K8 IV' as SpectralClassEnum, - G8IV: 'G8 IV' as SpectralClassEnum, - F6IV: 'F6 IV' as SpectralClassEnum, - F5IV: 'F5 IV' as SpectralClassEnum, - A0: 'A0' as SpectralClassEnum, - A0IV: 'A0IV' as SpectralClassEnum, - A0IV2: 'A0IV2' as SpectralClassEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getUniverseStationsStationIdNotFound.ts b/src/app/eve-online-angular-client/model/getUniverseStationsStationIdNotFound.ts deleted file mode 100755 index f358a2a..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseStationsStationIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetUniverseStationsStationIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseStationsStationIdOk.ts b/src/app/eve-online-angular-client/model/getUniverseStationsStationIdOk.ts deleted file mode 100755 index 0d0b57a..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseStationsStationIdOk.ts +++ /dev/null @@ -1,96 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetUniverseStationsStationIdPosition } from './getUniverseStationsStationIdPosition'; - - -/** - * 200 ok object - */ -export interface GetUniverseStationsStationIdOk { - /** - * station_id integer - */ - stationId: number; - /** - * name string - */ - name: string; - /** - * ID of the corporation that controls this station - */ - owner?: number; - /** - * type_id integer - */ - typeId: number; - /** - * race_id integer - */ - raceId?: number; - position: GetUniverseStationsStationIdPosition; - /** - * The solar system this station is in - */ - systemId: number; - /** - * reprocessing_efficiency number - */ - reprocessingEfficiency: number; - /** - * reprocessing_stations_take number - */ - reprocessingStationsTake: number; - /** - * max_dockable_ship_volume number - */ - maxDockableShipVolume: number; - /** - * office_rental_cost number - */ - officeRentalCost: number; - /** - * services array - */ - services: Array; -} -export namespace GetUniverseStationsStationIdOk { - export type ServicesEnum = 'bounty-missions' | 'assasination-missions' | 'courier-missions' | 'interbus' | 'reprocessing-plant' | 'refinery' | 'market' | 'black-market' | 'stock-exchange' | 'cloning' | 'surgery' | 'dna-therapy' | 'repair-facilities' | 'factory' | 'labratory' | 'gambling' | 'fitting' | 'paintshop' | 'news' | 'storage' | 'insurance' | 'docking' | 'office-rental' | 'jump-clone-facility' | 'loyalty-point-store' | 'navy-offices' | 'security-offices'; - export const ServicesEnum = { - BountyMissions: 'bounty-missions' as ServicesEnum, - AssasinationMissions: 'assasination-missions' as ServicesEnum, - CourierMissions: 'courier-missions' as ServicesEnum, - Interbus: 'interbus' as ServicesEnum, - ReprocessingPlant: 'reprocessing-plant' as ServicesEnum, - Refinery: 'refinery' as ServicesEnum, - Market: 'market' as ServicesEnum, - BlackMarket: 'black-market' as ServicesEnum, - StockExchange: 'stock-exchange' as ServicesEnum, - Cloning: 'cloning' as ServicesEnum, - Surgery: 'surgery' as ServicesEnum, - DnaTherapy: 'dna-therapy' as ServicesEnum, - RepairFacilities: 'repair-facilities' as ServicesEnum, - Factory: 'factory' as ServicesEnum, - Labratory: 'labratory' as ServicesEnum, - Gambling: 'gambling' as ServicesEnum, - Fitting: 'fitting' as ServicesEnum, - Paintshop: 'paintshop' as ServicesEnum, - News: 'news' as ServicesEnum, - Storage: 'storage' as ServicesEnum, - Insurance: 'insurance' as ServicesEnum, - Docking: 'docking' as ServicesEnum, - OfficeRental: 'office-rental' as ServicesEnum, - JumpCloneFacility: 'jump-clone-facility' as ServicesEnum, - LoyaltyPointStore: 'loyalty-point-store' as ServicesEnum, - NavyOffices: 'navy-offices' as ServicesEnum, - SecurityOffices: 'security-offices' as ServicesEnum - } -} diff --git a/src/app/eve-online-angular-client/model/getUniverseStationsStationIdPosition.ts b/src/app/eve-online-angular-client/model/getUniverseStationsStationIdPosition.ts deleted file mode 100755 index bbc36d2..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseStationsStationIdPosition.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * position object - */ -export interface GetUniverseStationsStationIdPosition { - /** - * x number - */ - x: number; - /** - * y number - */ - y: number; - /** - * z number - */ - z: number; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseStructuresStructureIdNotFound.ts b/src/app/eve-online-angular-client/model/getUniverseStructuresStructureIdNotFound.ts deleted file mode 100755 index 687077e..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseStructuresStructureIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetUniverseStructuresStructureIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseStructuresStructureIdOk.ts b/src/app/eve-online-angular-client/model/getUniverseStructuresStructureIdOk.ts deleted file mode 100755 index 5a68395..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseStructuresStructureIdOk.ts +++ /dev/null @@ -1,32 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetUniverseStructuresStructureIdPosition } from './getUniverseStructuresStructureIdPosition'; - - -/** - * 200 ok object - */ -export interface GetUniverseStructuresStructureIdOk { - /** - * The full name of the structure - */ - name: string; - /** - * solar_system_id integer - */ - solarSystemId: number; - /** - * type_id integer - */ - typeId?: number; - position?: GetUniverseStructuresStructureIdPosition; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseStructuresStructureIdPosition.ts b/src/app/eve-online-angular-client/model/getUniverseStructuresStructureIdPosition.ts deleted file mode 100755 index aa6881a..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseStructuresStructureIdPosition.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Coordinates of the structure in Cartesian space relative to the Sun, in metres. - */ -export interface GetUniverseStructuresStructureIdPosition { - /** - * x number - */ - x: number; - /** - * y number - */ - y: number; - /** - * z number - */ - z: number; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseSystemJumps200Ok.ts b/src/app/eve-online-angular-client/model/getUniverseSystemJumps200Ok.ts deleted file mode 100755 index f41a5c3..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseSystemJumps200Ok.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetUniverseSystemJumps200Ok { - /** - * system_id integer - */ - systemId: number; - /** - * ship_jumps integer - */ - shipJumps: number; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseSystemKills200Ok.ts b/src/app/eve-online-angular-client/model/getUniverseSystemKills200Ok.ts deleted file mode 100755 index aa28a05..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseSystemKills200Ok.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetUniverseSystemKills200Ok { - /** - * system_id integer - */ - systemId: number; - /** - * Number of player ships killed in this system - */ - shipKills: number; - /** - * Number of NPC ships killed in this system - */ - npcKills: number; - /** - * Number of pods killed in this system - */ - podKills: number; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseSystemsSystemIdNotFound.ts b/src/app/eve-online-angular-client/model/getUniverseSystemsSystemIdNotFound.ts deleted file mode 100755 index 41d7931..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseSystemsSystemIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetUniverseSystemsSystemIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseSystemsSystemIdOk.ts b/src/app/eve-online-angular-client/model/getUniverseSystemsSystemIdOk.ts deleted file mode 100755 index 41d2223..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseSystemsSystemIdOk.ts +++ /dev/null @@ -1,57 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetUniverseSystemsSystemIdPlanet } from './getUniverseSystemsSystemIdPlanet'; -import { GetUniverseSystemsSystemIdPosition } from './getUniverseSystemsSystemIdPosition'; - - -/** - * 200 ok object - */ -export interface GetUniverseSystemsSystemIdOk { - /** - * star_id integer - */ - starId: number; - /** - * system_id integer - */ - systemId: number; - /** - * name string - */ - name: string; - position: GetUniverseSystemsSystemIdPosition; - /** - * security_status number - */ - securityStatus: number; - /** - * security_class string - */ - securityClass?: string; - /** - * The constellation this solar system is in - */ - constellationId: number; - /** - * planets array - */ - planets: Array; - /** - * stargates array - */ - stargates?: Array; - /** - * stations array - */ - stations?: Array; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseSystemsSystemIdPlanet.ts b/src/app/eve-online-angular-client/model/getUniverseSystemsSystemIdPlanet.ts deleted file mode 100755 index 1fd68b6..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseSystemsSystemIdPlanet.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * planet object - */ -export interface GetUniverseSystemsSystemIdPlanet { - /** - * planet_id integer - */ - planetId: number; - /** - * moons array - */ - moons?: Array; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseSystemsSystemIdPosition.ts b/src/app/eve-online-angular-client/model/getUniverseSystemsSystemIdPosition.ts deleted file mode 100755 index 4c7446c..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseSystemsSystemIdPosition.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * position object - */ -export interface GetUniverseSystemsSystemIdPosition { - /** - * x number - */ - x: number; - /** - * y number - */ - y: number; - /** - * z number - */ - z: number; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseTypesTypeIdDogmaAttribute.ts b/src/app/eve-online-angular-client/model/getUniverseTypesTypeIdDogmaAttribute.ts deleted file mode 100755 index 782c5a7..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseTypesTypeIdDogmaAttribute.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * dogma_attribute object - */ -export interface GetUniverseTypesTypeIdDogmaAttribute { - /** - * attribute_id integer - */ - attributeId: number; - /** - * value number - */ - value: number; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseTypesTypeIdDogmaEffect.ts b/src/app/eve-online-angular-client/model/getUniverseTypesTypeIdDogmaEffect.ts deleted file mode 100755 index 9b1459e..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseTypesTypeIdDogmaEffect.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * dogma_effect object - */ -export interface GetUniverseTypesTypeIdDogmaEffect { - /** - * effect_id integer - */ - effectId: number; - /** - * is_default boolean - */ - isDefault: boolean; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseTypesTypeIdNotFound.ts b/src/app/eve-online-angular-client/model/getUniverseTypesTypeIdNotFound.ts deleted file mode 100755 index a62048f..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseTypesTypeIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface GetUniverseTypesTypeIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getUniverseTypesTypeIdOk.ts b/src/app/eve-online-angular-client/model/getUniverseTypesTypeIdOk.ts deleted file mode 100755 index c7bf49c..0000000 --- a/src/app/eve-online-angular-client/model/getUniverseTypesTypeIdOk.ts +++ /dev/null @@ -1,84 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetUniverseTypesTypeIdDogmaAttribute } from './getUniverseTypesTypeIdDogmaAttribute'; -import { GetUniverseTypesTypeIdDogmaEffect } from './getUniverseTypesTypeIdDogmaEffect'; - - -/** - * 200 ok object - */ -export interface GetUniverseTypesTypeIdOk { - /** - * type_id integer - */ - typeId: number; - /** - * name string - */ - name: string; - /** - * description string - */ - description: string; - /** - * published boolean - */ - published: boolean; - /** - * group_id integer - */ - groupId: number; - /** - * This only exists for types that can be put on the market - */ - marketGroupId?: number; - /** - * radius number - */ - radius?: number; - /** - * volume number - */ - volume?: number; - /** - * packaged_volume number - */ - packagedVolume?: number; - /** - * icon_id integer - */ - iconId?: number; - /** - * capacity number - */ - capacity?: number; - /** - * portion_size integer - */ - portionSize?: number; - /** - * mass number - */ - mass?: number; - /** - * graphic_id integer - */ - graphicId?: number; - /** - * dogma_attributes array - */ - dogmaAttributes?: Array; - /** - * dogma_effects array - */ - dogmaEffects?: Array; -} diff --git a/src/app/eve-online-angular-client/model/getWarsWarIdAggressor.ts b/src/app/eve-online-angular-client/model/getWarsWarIdAggressor.ts deleted file mode 100755 index 6d9a7da..0000000 --- a/src/app/eve-online-angular-client/model/getWarsWarIdAggressor.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * The aggressor corporation or alliance that declared this war, only contains either corporation_id or alliance_id - */ -export interface GetWarsWarIdAggressor { - /** - * Corporation ID if and only if the aggressor is a corporation - */ - corporationId?: number; - /** - * Alliance ID if and only if the aggressor is an alliance - */ - allianceId?: number; - /** - * The number of ships the aggressor has killed - */ - shipsKilled: number; - /** - * ISK value of ships the aggressor has destroyed - */ - iskDestroyed: number; -} diff --git a/src/app/eve-online-angular-client/model/getWarsWarIdAlly.ts b/src/app/eve-online-angular-client/model/getWarsWarIdAlly.ts deleted file mode 100755 index 5822971..0000000 --- a/src/app/eve-online-angular-client/model/getWarsWarIdAlly.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * ally object - */ -export interface GetWarsWarIdAlly { - /** - * Corporation ID if and only if this ally is a corporation - */ - corporationId?: number; - /** - * Alliance ID if and only if this ally is an alliance - */ - allianceId?: number; -} diff --git a/src/app/eve-online-angular-client/model/getWarsWarIdDefender.ts b/src/app/eve-online-angular-client/model/getWarsWarIdDefender.ts deleted file mode 100755 index b749d70..0000000 --- a/src/app/eve-online-angular-client/model/getWarsWarIdDefender.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * The defending corporation or alliance that declared this war, only contains either corporation_id or alliance_id - */ -export interface GetWarsWarIdDefender { - /** - * Corporation ID if and only if the defender is a corporation - */ - corporationId?: number; - /** - * Alliance ID if and only if the defender is an alliance - */ - allianceId?: number; - /** - * The number of ships the defender has killed - */ - shipsKilled: number; - /** - * ISK value of ships the defender has killed - */ - iskDestroyed: number; -} diff --git a/src/app/eve-online-angular-client/model/getWarsWarIdKillmails200Ok.ts b/src/app/eve-online-angular-client/model/getWarsWarIdKillmails200Ok.ts deleted file mode 100755 index ef0c0b2..0000000 --- a/src/app/eve-online-angular-client/model/getWarsWarIdKillmails200Ok.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface GetWarsWarIdKillmails200Ok { - /** - * ID of this killmail - */ - killmailId: number; - /** - * A hash of this killmail - */ - killmailHash: string; -} diff --git a/src/app/eve-online-angular-client/model/getWarsWarIdKillmailsUnprocessableEntity.ts b/src/app/eve-online-angular-client/model/getWarsWarIdKillmailsUnprocessableEntity.ts deleted file mode 100755 index 9006004..0000000 --- a/src/app/eve-online-angular-client/model/getWarsWarIdKillmailsUnprocessableEntity.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Unprocessable entity - */ -export interface GetWarsWarIdKillmailsUnprocessableEntity { - /** - * Unprocessable entity message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/getWarsWarIdOk.ts b/src/app/eve-online-angular-client/model/getWarsWarIdOk.ts deleted file mode 100755 index bd44d8f..0000000 --- a/src/app/eve-online-angular-client/model/getWarsWarIdOk.ts +++ /dev/null @@ -1,55 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { GetWarsWarIdAggressor } from './getWarsWarIdAggressor'; -import { GetWarsWarIdAlly } from './getWarsWarIdAlly'; -import { GetWarsWarIdDefender } from './getWarsWarIdDefender'; - - -/** - * 200 ok object - */ -export interface GetWarsWarIdOk { - /** - * ID of the specified war - */ - id: number; - /** - * Time that the war was declared - */ - declared: Date; - /** - * Time when the war started and both sides could shoot each other - */ - started?: Date; - /** - * Time the war was retracted but both sides could still shoot each other - */ - retracted?: Date; - /** - * Time the war ended and shooting was no longer allowed - */ - finished?: Date; - /** - * Was the war declared mutual by both parties - */ - mutual: boolean; - /** - * Is the war currently open for allies or not - */ - openForAllies: boolean; - aggressor: GetWarsWarIdAggressor; - defender: GetWarsWarIdDefender; - /** - * allied corporations or alliances, each object contains either corporation_id or alliance_id - */ - allies?: Array; -} diff --git a/src/app/eve-online-angular-client/model/getWarsWarIdUnprocessableEntity.ts b/src/app/eve-online-angular-client/model/getWarsWarIdUnprocessableEntity.ts deleted file mode 100755 index c3caf10..0000000 --- a/src/app/eve-online-angular-client/model/getWarsWarIdUnprocessableEntity.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Unprocessable entity - */ -export interface GetWarsWarIdUnprocessableEntity { - /** - * Unprocessable entity message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/internalServerError.ts b/src/app/eve-online-angular-client/model/internalServerError.ts deleted file mode 100755 index 1e83193..0000000 --- a/src/app/eve-online-angular-client/model/internalServerError.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Internal server error model - */ -export interface InternalServerError { - /** - * Internal server error message - */ - error: string; -} diff --git a/src/app/eve-online-angular-client/model/models.ts b/src/app/eve-online-angular-client/model/models.ts deleted file mode 100755 index 42d6d2e..0000000 --- a/src/app/eve-online-angular-client/model/models.ts +++ /dev/null @@ -1,337 +0,0 @@ -export * from './deleteCharactersCharacterIdMailLabelsLabelIdUnprocessableEntity'; -export * from './deleteFleetsFleetIdMembersMemberIdNotFound'; -export * from './deleteFleetsFleetIdSquadsSquadIdNotFound'; -export * from './deleteFleetsFleetIdWingsWingIdNotFound'; -export * from './forbidden'; -export * from './getAlliancesAllianceIdContacts200Ok'; -export * from './getAlliancesAllianceIdIconsNotFound'; -export * from './getAlliancesAllianceIdIconsOk'; -export * from './getAlliancesAllianceIdNotFound'; -export * from './getAlliancesAllianceIdOk'; -export * from './getAlliancesNames200Ok'; -export * from './getCharactersCharacterIdAgentsResearch200Ok'; -export * from './getCharactersCharacterIdAssets200Ok'; -export * from './getCharactersCharacterIdAttributesOk'; -export * from './getCharactersCharacterIdBlueprints200Ok'; -export * from './getCharactersCharacterIdBookmarks200Ok'; -export * from './getCharactersCharacterIdBookmarksCoordinates'; -export * from './getCharactersCharacterIdBookmarksFolders200Ok'; -export * from './getCharactersCharacterIdBookmarksItem'; -export * from './getCharactersCharacterIdCalendar200Ok'; -export * from './getCharactersCharacterIdCalendarEventIdAttendees200Ok'; -export * from './getCharactersCharacterIdCalendarEventIdOk'; -export * from './getCharactersCharacterIdChatChannels200Ok'; -export * from './getCharactersCharacterIdChatChannelsAllowed'; -export * from './getCharactersCharacterIdChatChannelsBlocked'; -export * from './getCharactersCharacterIdChatChannelsMuted'; -export * from './getCharactersCharacterIdChatChannelsOperator'; -export * from './getCharactersCharacterIdClonesHomeLocation'; -export * from './getCharactersCharacterIdClonesJumpClone'; -export * from './getCharactersCharacterIdClonesOk'; -export * from './getCharactersCharacterIdContacts200Ok'; -export * from './getCharactersCharacterIdContactsLabels200Ok'; -export * from './getCharactersCharacterIdContracts200Ok'; -export * from './getCharactersCharacterIdContractsContractIdBids200Ok'; -export * from './getCharactersCharacterIdContractsContractIdItems200Ok'; -export * from './getCharactersCharacterIdCorporationhistory200Ok'; -export * from './getCharactersCharacterIdFatigueOk'; -export * from './getCharactersCharacterIdFittings200Ok'; -export * from './getCharactersCharacterIdFittingsItem'; -export * from './getCharactersCharacterIdFleetNotFound'; -export * from './getCharactersCharacterIdFleetOk'; -export * from './getCharactersCharacterIdFwStatsKills'; -export * from './getCharactersCharacterIdFwStatsOk'; -export * from './getCharactersCharacterIdFwStatsVictoryPoints'; -export * from './getCharactersCharacterIdIndustryJobs200Ok'; -export * from './getCharactersCharacterIdKillmailsRecent200Ok'; -export * from './getCharactersCharacterIdLocationOk'; -export * from './getCharactersCharacterIdLoyaltyPoints200Ok'; -export * from './getCharactersCharacterIdMail200Ok'; -export * from './getCharactersCharacterIdMailLabelsLabel'; -export * from './getCharactersCharacterIdMailLabelsOk'; -export * from './getCharactersCharacterIdMailLists200Ok'; -export * from './getCharactersCharacterIdMailMailIdNotFound'; -export * from './getCharactersCharacterIdMailMailIdOk'; -export * from './getCharactersCharacterIdMailMailIdRecipient'; -export * from './getCharactersCharacterIdMailRecipient'; -export * from './getCharactersCharacterIdMedals200Ok'; -export * from './getCharactersCharacterIdMedalsGraphic'; -export * from './getCharactersCharacterIdMining200Ok'; -export * from './getCharactersCharacterIdNotFound'; -export * from './getCharactersCharacterIdNotifications200Ok'; -export * from './getCharactersCharacterIdNotificationsContacts200Ok'; -export * from './getCharactersCharacterIdOk'; -export * from './getCharactersCharacterIdOnlineOk'; -export * from './getCharactersCharacterIdOpportunities200Ok'; -export * from './getCharactersCharacterIdOrders200Ok'; -export * from './getCharactersCharacterIdOrdersHistory200Ok'; -export * from './getCharactersCharacterIdPlanets200Ok'; -export * from './getCharactersCharacterIdPlanetsPlanetIdContent'; -export * from './getCharactersCharacterIdPlanetsPlanetIdExtractorDetails'; -export * from './getCharactersCharacterIdPlanetsPlanetIdFactoryDetails'; -export * from './getCharactersCharacterIdPlanetsPlanetIdHead'; -export * from './getCharactersCharacterIdPlanetsPlanetIdLink'; -export * from './getCharactersCharacterIdPlanetsPlanetIdNotFound'; -export * from './getCharactersCharacterIdPlanetsPlanetIdOk'; -export * from './getCharactersCharacterIdPlanetsPlanetIdPin'; -export * from './getCharactersCharacterIdPlanetsPlanetIdRoute'; -export * from './getCharactersCharacterIdPortraitNotFound'; -export * from './getCharactersCharacterIdPortraitOk'; -export * from './getCharactersCharacterIdRolesOk'; -export * from './getCharactersCharacterIdSearchOk'; -export * from './getCharactersCharacterIdShipOk'; -export * from './getCharactersCharacterIdSkillqueue200Ok'; -export * from './getCharactersCharacterIdSkillsOk'; -export * from './getCharactersCharacterIdSkillsSkill'; -export * from './getCharactersCharacterIdStandings200Ok'; -export * from './getCharactersCharacterIdStats200Ok'; -export * from './getCharactersCharacterIdStatsCharacter'; -export * from './getCharactersCharacterIdStatsCombat'; -export * from './getCharactersCharacterIdStatsIndustry'; -export * from './getCharactersCharacterIdStatsInventory'; -export * from './getCharactersCharacterIdStatsIsk'; -export * from './getCharactersCharacterIdStatsMarket'; -export * from './getCharactersCharacterIdStatsMining'; -export * from './getCharactersCharacterIdStatsModule'; -export * from './getCharactersCharacterIdStatsOrbital'; -export * from './getCharactersCharacterIdStatsPve'; -export * from './getCharactersCharacterIdStatsSocial'; -export * from './getCharactersCharacterIdStatsTravel'; -export * from './getCharactersCharacterIdTitles200Ok'; -export * from './getCharactersCharacterIdWalletJournal200Ok'; -export * from './getCharactersCharacterIdWalletJournalExtraInfo'; -export * from './getCharactersCharacterIdWalletTransactions200Ok'; -export * from './getCharactersNames200Ok'; -export * from './getCorporationCorporationIdMiningExtractions200Ok'; -export * from './getCorporationCorporationIdMiningObservers200Ok'; -export * from './getCorporationCorporationIdMiningObserversObserverId200Ok'; -export * from './getCorporationsCorporationIdAlliancehistory200Ok'; -export * from './getCorporationsCorporationIdAssets200Ok'; -export * from './getCorporationsCorporationIdBlueprints200Ok'; -export * from './getCorporationsCorporationIdBookmarks200Ok'; -export * from './getCorporationsCorporationIdBookmarksCoordinates'; -export * from './getCorporationsCorporationIdBookmarksFolders200Ok'; -export * from './getCorporationsCorporationIdBookmarksItem'; -export * from './getCorporationsCorporationIdContacts200Ok'; -export * from './getCorporationsCorporationIdContainersLogs200Ok'; -export * from './getCorporationsCorporationIdContracts200Ok'; -export * from './getCorporationsCorporationIdContractsContractIdBids200Ok'; -export * from './getCorporationsCorporationIdContractsContractIdItems200Ok'; -export * from './getCorporationsCorporationIdCustomsOffices200Ok'; -export * from './getCorporationsCorporationIdDivisionsHangar'; -export * from './getCorporationsCorporationIdDivisionsOk'; -export * from './getCorporationsCorporationIdDivisionsWallet'; -export * from './getCorporationsCorporationIdFacilities200Ok'; -export * from './getCorporationsCorporationIdFwStatsKills'; -export * from './getCorporationsCorporationIdFwStatsOk'; -export * from './getCorporationsCorporationIdFwStatsVictoryPoints'; -export * from './getCorporationsCorporationIdIconsNotFound'; -export * from './getCorporationsCorporationIdIconsOk'; -export * from './getCorporationsCorporationIdIndustryJobs200Ok'; -export * from './getCorporationsCorporationIdKillmailsRecent200Ok'; -export * from './getCorporationsCorporationIdMedals200Ok'; -export * from './getCorporationsCorporationIdMedalsIssued200Ok'; -export * from './getCorporationsCorporationIdMembersTitles200Ok'; -export * from './getCorporationsCorporationIdMembertracking200Ok'; -export * from './getCorporationsCorporationIdNotFound'; -export * from './getCorporationsCorporationIdOk'; -export * from './getCorporationsCorporationIdOrders200Ok'; -export * from './getCorporationsCorporationIdOrdersHistory200Ok'; -export * from './getCorporationsCorporationIdOutpostsOutpostIdCoordinates'; -export * from './getCorporationsCorporationIdOutpostsOutpostIdOk'; -export * from './getCorporationsCorporationIdOutpostsOutpostIdService'; -export * from './getCorporationsCorporationIdRoles200Ok'; -export * from './getCorporationsCorporationIdRolesHistory200Ok'; -export * from './getCorporationsCorporationIdShareholders200Ok'; -export * from './getCorporationsCorporationIdStandings200Ok'; -export * from './getCorporationsCorporationIdStarbases200Ok'; -export * from './getCorporationsCorporationIdStarbasesStarbaseIdFuel'; -export * from './getCorporationsCorporationIdStarbasesStarbaseIdOk'; -export * from './getCorporationsCorporationIdStructures200Ok'; -export * from './getCorporationsCorporationIdStructuresService'; -export * from './getCorporationsCorporationIdTitles200Ok'; -export * from './getCorporationsCorporationIdWallets200Ok'; -export * from './getCorporationsCorporationIdWalletsDivisionJournal200Ok'; -export * from './getCorporationsCorporationIdWalletsDivisionJournalExtraInfo'; -export * from './getCorporationsCorporationIdWalletsDivisionTransactions200Ok'; -export * from './getCorporationsNames200Ok'; -export * from './getDogmaAttributesAttributeIdNotFound'; -export * from './getDogmaAttributesAttributeIdOk'; -export * from './getDogmaEffectsEffectIdModifier'; -export * from './getDogmaEffectsEffectIdNotFound'; -export * from './getDogmaEffectsEffectIdOk'; -export * from './getFleetsFleetIdMembers200Ok'; -export * from './getFleetsFleetIdMembersNotFound'; -export * from './getFleetsFleetIdNotFound'; -export * from './getFleetsFleetIdOk'; -export * from './getFleetsFleetIdWings200Ok'; -export * from './getFleetsFleetIdWingsNotFound'; -export * from './getFleetsFleetIdWingsSquad'; -export * from './getFwLeaderboardsActiveTotal'; -export * from './getFwLeaderboardsActiveTotal1'; -export * from './getFwLeaderboardsCharactersActiveTotal'; -export * from './getFwLeaderboardsCharactersActiveTotal1'; -export * from './getFwLeaderboardsCharactersKills'; -export * from './getFwLeaderboardsCharactersLastWeek'; -export * from './getFwLeaderboardsCharactersLastWeek1'; -export * from './getFwLeaderboardsCharactersOk'; -export * from './getFwLeaderboardsCharactersVictoryPoints'; -export * from './getFwLeaderboardsCharactersYesterday'; -export * from './getFwLeaderboardsCharactersYesterday1'; -export * from './getFwLeaderboardsCorporationsActiveTotal'; -export * from './getFwLeaderboardsCorporationsActiveTotal1'; -export * from './getFwLeaderboardsCorporationsKills'; -export * from './getFwLeaderboardsCorporationsLastWeek'; -export * from './getFwLeaderboardsCorporationsLastWeek1'; -export * from './getFwLeaderboardsCorporationsOk'; -export * from './getFwLeaderboardsCorporationsVictoryPoints'; -export * from './getFwLeaderboardsCorporationsYesterday'; -export * from './getFwLeaderboardsCorporationsYesterday1'; -export * from './getFwLeaderboardsKills'; -export * from './getFwLeaderboardsLastWeek'; -export * from './getFwLeaderboardsLastWeek1'; -export * from './getFwLeaderboardsOk'; -export * from './getFwLeaderboardsVictoryPoints'; -export * from './getFwLeaderboardsYesterday'; -export * from './getFwLeaderboardsYesterday1'; -export * from './getFwStats200Ok'; -export * from './getFwStatsKills'; -export * from './getFwStatsVictoryPoints'; -export * from './getFwSystems200Ok'; -export * from './getFwWars200Ok'; -export * from './getIncursions200Ok'; -export * from './getIndustryFacilities200Ok'; -export * from './getIndustrySystems200Ok'; -export * from './getIndustrySystemsCostIndice'; -export * from './getInsurancePrices200Ok'; -export * from './getInsurancePricesLevel'; -export * from './getKillmailsKillmailIdKillmailHashAttacker'; -export * from './getKillmailsKillmailIdKillmailHashItem'; -export * from './getKillmailsKillmailIdKillmailHashItem1'; -export * from './getKillmailsKillmailIdKillmailHashOk'; -export * from './getKillmailsKillmailIdKillmailHashPosition'; -export * from './getKillmailsKillmailIdKillmailHashUnprocessableEntity'; -export * from './getKillmailsKillmailIdKillmailHashVictim'; -export * from './getLoyaltyStoresCorporationIdOffers200Ok'; -export * from './getLoyaltyStoresCorporationIdOffersNotFound'; -export * from './getLoyaltyStoresCorporationIdOffersRequiredItem'; -export * from './getMarketsGroupsMarketGroupIdNotFound'; -export * from './getMarketsGroupsMarketGroupIdOk'; -export * from './getMarketsPrices200Ok'; -export * from './getMarketsRegionIdHistory200Ok'; -export * from './getMarketsRegionIdHistoryUnprocessableEntity'; -export * from './getMarketsRegionIdOrders200Ok'; -export * from './getMarketsRegionIdOrdersUnprocessableEntity'; -export * from './getMarketsStructuresStructureId200Ok'; -export * from './getOpportunitiesGroupsGroupIdOk'; -export * from './getOpportunitiesTasksTaskIdOk'; -export * from './getRouteOriginDestinationNotFound'; -export * from './getSearchOk'; -export * from './getSovereigntyCampaigns200Ok'; -export * from './getSovereigntyCampaignsParticipant'; -export * from './getSovereigntyMap200Ok'; -export * from './getSovereigntyStructures200Ok'; -export * from './getStatusOk'; -export * from './getUniverseAncestries200Ok'; -export * from './getUniverseBloodlines200Ok'; -export * from './getUniverseCategoriesCategoryIdNotFound'; -export * from './getUniverseCategoriesCategoryIdOk'; -export * from './getUniverseConstellationsConstellationIdNotFound'; -export * from './getUniverseConstellationsConstellationIdOk'; -export * from './getUniverseConstellationsConstellationIdPosition'; -export * from './getUniverseFactions200Ok'; -export * from './getUniverseGraphicsGraphicIdNotFound'; -export * from './getUniverseGraphicsGraphicIdOk'; -export * from './getUniverseGroupsGroupIdNotFound'; -export * from './getUniverseGroupsGroupIdOk'; -export * from './getUniverseMoonsMoonIdNotFound'; -export * from './getUniverseMoonsMoonIdOk'; -export * from './getUniverseMoonsMoonIdPosition'; -export * from './getUniversePlanetsPlanetIdNotFound'; -export * from './getUniversePlanetsPlanetIdOk'; -export * from './getUniversePlanetsPlanetIdPosition'; -export * from './getUniverseRaces200Ok'; -export * from './getUniverseRegionsRegionIdNotFound'; -export * from './getUniverseRegionsRegionIdOk'; -export * from './getUniverseSchematicsSchematicIdNotFound'; -export * from './getUniverseSchematicsSchematicIdOk'; -export * from './getUniverseStargatesStargateIdDestination'; -export * from './getUniverseStargatesStargateIdNotFound'; -export * from './getUniverseStargatesStargateIdOk'; -export * from './getUniverseStargatesStargateIdPosition'; -export * from './getUniverseStarsStarIdOk'; -export * from './getUniverseStationsStationIdNotFound'; -export * from './getUniverseStationsStationIdOk'; -export * from './getUniverseStationsStationIdPosition'; -export * from './getUniverseStructuresStructureIdNotFound'; -export * from './getUniverseStructuresStructureIdOk'; -export * from './getUniverseStructuresStructureIdPosition'; -export * from './getUniverseSystemJumps200Ok'; -export * from './getUniverseSystemKills200Ok'; -export * from './getUniverseSystemsSystemIdNotFound'; -export * from './getUniverseSystemsSystemIdOk'; -export * from './getUniverseSystemsSystemIdPlanet'; -export * from './getUniverseSystemsSystemIdPosition'; -export * from './getUniverseTypesTypeIdDogmaAttribute'; -export * from './getUniverseTypesTypeIdDogmaEffect'; -export * from './getUniverseTypesTypeIdNotFound'; -export * from './getUniverseTypesTypeIdOk'; -export * from './getWarsWarIdAggressor'; -export * from './getWarsWarIdAlly'; -export * from './getWarsWarIdDefender'; -export * from './getWarsWarIdKillmails200Ok'; -export * from './getWarsWarIdKillmailsUnprocessableEntity'; -export * from './getWarsWarIdOk'; -export * from './getWarsWarIdUnprocessableEntity'; -export * from './internalServerError'; -export * from './postCharactersAffiliation200Ok'; -export * from './postCharactersAffiliationNotFound'; -export * from './postCharactersCharacterIdAssetsLocations200Ok'; -export * from './postCharactersCharacterIdAssetsLocationsPosition'; -export * from './postCharactersCharacterIdAssetsNames200Ok'; -export * from './postCharactersCharacterIdFittingsCreated'; -export * from './postCharactersCharacterIdFittingsFitting'; -export * from './postCharactersCharacterIdFittingsItem'; -export * from './postCharactersCharacterIdMailBadRequest'; -export * from './postCharactersCharacterIdMailLabelsLabel'; -export * from './postCharactersCharacterIdMailMail'; -export * from './postCharactersCharacterIdMailRecipient'; -export * from './postCorporationsCorporationIdAssetsLocations200Ok'; -export * from './postCorporationsCorporationIdAssetsLocationsPosition'; -export * from './postCorporationsCorporationIdAssetsNames200Ok'; -export * from './postFleetsFleetIdMembersInvitation'; -export * from './postFleetsFleetIdMembersNotFound'; -export * from './postFleetsFleetIdMembersUnprocessableEntity'; -export * from './postFleetsFleetIdWingsCreated'; -export * from './postFleetsFleetIdWingsNotFound'; -export * from './postFleetsFleetIdWingsWingIdSquadsCreated'; -export * from './postFleetsFleetIdWingsWingIdSquadsNotFound'; -export * from './postUiOpenwindowNewmailNewMail'; -export * from './postUiOpenwindowNewmailUnprocessableEntity'; -export * from './postUniverseIdsAgent'; -export * from './postUniverseIdsAlliance'; -export * from './postUniverseIdsCharacter'; -export * from './postUniverseIdsConstellation'; -export * from './postUniverseIdsCorporation'; -export * from './postUniverseIdsFaction'; -export * from './postUniverseIdsInventoryType'; -export * from './postUniverseIdsOk'; -export * from './postUniverseIdsRegion'; -export * from './postUniverseIdsServiceUnavailable'; -export * from './postUniverseIdsStation'; -export * from './postUniverseIdsSystem'; -export * from './postUniverseNames200Ok'; -export * from './postUniverseNamesNotFound'; -export * from './putCharactersCharacterIdCalendarEventIdResponse'; -export * from './putCharactersCharacterIdMailMailIdBadRequest'; -export * from './putCharactersCharacterIdMailMailIdContents'; -export * from './putFleetsFleetIdBadRequest'; -export * from './putFleetsFleetIdMembersMemberIdMovement'; -export * from './putFleetsFleetIdMembersMemberIdNotFound'; -export * from './putFleetsFleetIdMembersMemberIdUnprocessableEntity'; -export * from './putFleetsFleetIdNewSettings'; -export * from './putFleetsFleetIdNotFound'; -export * from './putFleetsFleetIdSquadsSquadIdNaming'; -export * from './putFleetsFleetIdSquadsSquadIdNotFound'; -export * from './putFleetsFleetIdWingsWingIdNaming'; -export * from './putFleetsFleetIdWingsWingIdNotFound'; diff --git a/src/app/eve-online-angular-client/model/postCharactersAffiliation200Ok.ts b/src/app/eve-online-angular-client/model/postCharactersAffiliation200Ok.ts deleted file mode 100755 index faa1eca..0000000 --- a/src/app/eve-online-angular-client/model/postCharactersAffiliation200Ok.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface PostCharactersAffiliation200Ok { - /** - * The character's ID - */ - characterId: number; - /** - * The character's corporation ID - */ - corporationId: number; - /** - * The character's alliance ID, if their corporation is in an alliance - */ - allianceId?: number; - /** - * The character's faction ID, if their corporation is in a faction - */ - factionId?: number; -} diff --git a/src/app/eve-online-angular-client/model/postCharactersAffiliationNotFound.ts b/src/app/eve-online-angular-client/model/postCharactersAffiliationNotFound.ts deleted file mode 100755 index f7ae303..0000000 --- a/src/app/eve-online-angular-client/model/postCharactersAffiliationNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface PostCharactersAffiliationNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/postCharactersCharacterIdAssetsLocations200Ok.ts b/src/app/eve-online-angular-client/model/postCharactersCharacterIdAssetsLocations200Ok.ts deleted file mode 100755 index 805158e..0000000 --- a/src/app/eve-online-angular-client/model/postCharactersCharacterIdAssetsLocations200Ok.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { PostCharactersCharacterIdAssetsLocationsPosition } from './postCharactersCharacterIdAssetsLocationsPosition'; - - -/** - * 200 ok object - */ -export interface PostCharactersCharacterIdAssetsLocations200Ok { - /** - * item_id integer - */ - itemId: number; - position: PostCharactersCharacterIdAssetsLocationsPosition; -} diff --git a/src/app/eve-online-angular-client/model/postCharactersCharacterIdAssetsLocationsPosition.ts b/src/app/eve-online-angular-client/model/postCharactersCharacterIdAssetsLocationsPosition.ts deleted file mode 100755 index 58a44fd..0000000 --- a/src/app/eve-online-angular-client/model/postCharactersCharacterIdAssetsLocationsPosition.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * position object - */ -export interface PostCharactersCharacterIdAssetsLocationsPosition { - /** - * x number - */ - x: number; - /** - * y number - */ - y: number; - /** - * z number - */ - z: number; -} diff --git a/src/app/eve-online-angular-client/model/postCharactersCharacterIdAssetsNames200Ok.ts b/src/app/eve-online-angular-client/model/postCharactersCharacterIdAssetsNames200Ok.ts deleted file mode 100755 index 2c9155a..0000000 --- a/src/app/eve-online-angular-client/model/postCharactersCharacterIdAssetsNames200Ok.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface PostCharactersCharacterIdAssetsNames200Ok { - /** - * item_id integer - */ - itemId: number; - /** - * name string - */ - name: string; -} diff --git a/src/app/eve-online-angular-client/model/postCharactersCharacterIdFittingsCreated.ts b/src/app/eve-online-angular-client/model/postCharactersCharacterIdFittingsCreated.ts deleted file mode 100755 index 0ce1b25..0000000 --- a/src/app/eve-online-angular-client/model/postCharactersCharacterIdFittingsCreated.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 201 created object - */ -export interface PostCharactersCharacterIdFittingsCreated { - /** - * fitting_id integer - */ - fittingId: number; -} diff --git a/src/app/eve-online-angular-client/model/postCharactersCharacterIdFittingsFitting.ts b/src/app/eve-online-angular-client/model/postCharactersCharacterIdFittingsFitting.ts deleted file mode 100755 index e65d90f..0000000 --- a/src/app/eve-online-angular-client/model/postCharactersCharacterIdFittingsFitting.ts +++ /dev/null @@ -1,35 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { PostCharactersCharacterIdFittingsItem } from './postCharactersCharacterIdFittingsItem'; - - -/** - * fitting object - */ -export interface PostCharactersCharacterIdFittingsFitting { - /** - * name string - */ - name: string; - /** - * description string - */ - description: string; - /** - * ship_type_id integer - */ - shipTypeId: number; - /** - * items array - */ - items: Array; -} diff --git a/src/app/eve-online-angular-client/model/postCharactersCharacterIdFittingsItem.ts b/src/app/eve-online-angular-client/model/postCharactersCharacterIdFittingsItem.ts deleted file mode 100755 index 2946f47..0000000 --- a/src/app/eve-online-angular-client/model/postCharactersCharacterIdFittingsItem.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * item object - */ -export interface PostCharactersCharacterIdFittingsItem { - /** - * type_id integer - */ - typeId: number; - /** - * flag integer - */ - flag: number; - /** - * quantity integer - */ - quantity: number; -} diff --git a/src/app/eve-online-angular-client/model/postCharactersCharacterIdMailBadRequest.ts b/src/app/eve-online-angular-client/model/postCharactersCharacterIdMailBadRequest.ts deleted file mode 100755 index d401404..0000000 --- a/src/app/eve-online-angular-client/model/postCharactersCharacterIdMailBadRequest.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Bad request - */ -export interface PostCharactersCharacterIdMailBadRequest { - /** - * Bad request message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/postCharactersCharacterIdMailLabelsLabel.ts b/src/app/eve-online-angular-client/model/postCharactersCharacterIdMailLabelsLabel.ts deleted file mode 100755 index d5b2ac0..0000000 --- a/src/app/eve-online-angular-client/model/postCharactersCharacterIdMailLabelsLabel.ts +++ /dev/null @@ -1,49 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * label object - */ -export interface PostCharactersCharacterIdMailLabelsLabel { - /** - * name string - */ - name: string; - /** - * Hexadecimal string representing label color, in RGB format - */ - color?: PostCharactersCharacterIdMailLabelsLabel.ColorEnum; -} -export namespace PostCharactersCharacterIdMailLabelsLabel { - export type ColorEnum = '#0000fe' | '#006634' | '#0099ff' | '#00ff33' | '#01ffff' | '#349800' | '#660066' | '#666666' | '#999999' | '#99ffff' | '#9a0000' | '#ccff9a' | '#e6e6e6' | '#fe0000' | '#ff6600' | '#ffff01' | '#ffffcd' | '#ffffff'; - export const ColorEnum = { - _0000fe: '#0000fe' as ColorEnum, - _006634: '#006634' as ColorEnum, - _0099ff: '#0099ff' as ColorEnum, - _00ff33: '#00ff33' as ColorEnum, - _01ffff: '#01ffff' as ColorEnum, - _349800: '#349800' as ColorEnum, - _660066: '#660066' as ColorEnum, - _666666: '#666666' as ColorEnum, - _999999: '#999999' as ColorEnum, - _99ffff: '#99ffff' as ColorEnum, - _9a0000: '#9a0000' as ColorEnum, - Ccff9a: '#ccff9a' as ColorEnum, - E6e6e6: '#e6e6e6' as ColorEnum, - Fe0000: '#fe0000' as ColorEnum, - Ff6600: '#ff6600' as ColorEnum, - Ffff01: '#ffff01' as ColorEnum, - Ffffcd: '#ffffcd' as ColorEnum, - Ffffff: '#ffffff' as ColorEnum - } -} diff --git a/src/app/eve-online-angular-client/model/postCharactersCharacterIdMailMail.ts b/src/app/eve-online-angular-client/model/postCharactersCharacterIdMailMail.ts deleted file mode 100755 index a0ce36b..0000000 --- a/src/app/eve-online-angular-client/model/postCharactersCharacterIdMailMail.ts +++ /dev/null @@ -1,35 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { PostCharactersCharacterIdMailRecipient } from './postCharactersCharacterIdMailRecipient'; - - -/** - * mail object - */ -export interface PostCharactersCharacterIdMailMail { - /** - * recipients array - */ - recipients: Array; - /** - * subject string - */ - subject: string; - /** - * body string - */ - body: string; - /** - * approved_cost integer - */ - approvedCost?: number; -} diff --git a/src/app/eve-online-angular-client/model/postCharactersCharacterIdMailRecipient.ts b/src/app/eve-online-angular-client/model/postCharactersCharacterIdMailRecipient.ts deleted file mode 100755 index 55751e4..0000000 --- a/src/app/eve-online-angular-client/model/postCharactersCharacterIdMailRecipient.ts +++ /dev/null @@ -1,35 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * recipient object - */ -export interface PostCharactersCharacterIdMailRecipient { - /** - * recipient_type string - */ - recipientType: PostCharactersCharacterIdMailRecipient.RecipientTypeEnum; - /** - * recipient_id integer - */ - recipientId: number; -} -export namespace PostCharactersCharacterIdMailRecipient { - export type RecipientTypeEnum = 'alliance' | 'character' | 'corporation' | 'mailing_list'; - export const RecipientTypeEnum = { - Alliance: 'alliance' as RecipientTypeEnum, - Character: 'character' as RecipientTypeEnum, - Corporation: 'corporation' as RecipientTypeEnum, - MailingList: 'mailing_list' as RecipientTypeEnum - } -} diff --git a/src/app/eve-online-angular-client/model/postCorporationsCorporationIdAssetsLocations200Ok.ts b/src/app/eve-online-angular-client/model/postCorporationsCorporationIdAssetsLocations200Ok.ts deleted file mode 100755 index 47f53b9..0000000 --- a/src/app/eve-online-angular-client/model/postCorporationsCorporationIdAssetsLocations200Ok.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { PostCorporationsCorporationIdAssetsLocationsPosition } from './postCorporationsCorporationIdAssetsLocationsPosition'; - - -/** - * 200 ok object - */ -export interface PostCorporationsCorporationIdAssetsLocations200Ok { - /** - * item_id integer - */ - itemId: number; - position: PostCorporationsCorporationIdAssetsLocationsPosition; -} diff --git a/src/app/eve-online-angular-client/model/postCorporationsCorporationIdAssetsLocationsPosition.ts b/src/app/eve-online-angular-client/model/postCorporationsCorporationIdAssetsLocationsPosition.ts deleted file mode 100755 index 5a9b68f..0000000 --- a/src/app/eve-online-angular-client/model/postCorporationsCorporationIdAssetsLocationsPosition.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * position object - */ -export interface PostCorporationsCorporationIdAssetsLocationsPosition { - /** - * x number - */ - x: number; - /** - * y number - */ - y: number; - /** - * z number - */ - z: number; -} diff --git a/src/app/eve-online-angular-client/model/postCorporationsCorporationIdAssetsNames200Ok.ts b/src/app/eve-online-angular-client/model/postCorporationsCorporationIdAssetsNames200Ok.ts deleted file mode 100755 index d231a45..0000000 --- a/src/app/eve-online-angular-client/model/postCorporationsCorporationIdAssetsNames200Ok.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface PostCorporationsCorporationIdAssetsNames200Ok { - /** - * item_id integer - */ - itemId: number; - /** - * name string - */ - name: string; -} diff --git a/src/app/eve-online-angular-client/model/postFleetsFleetIdMembersInvitation.ts b/src/app/eve-online-angular-client/model/postFleetsFleetIdMembersInvitation.ts deleted file mode 100755 index bcb0c36..0000000 --- a/src/app/eve-online-angular-client/model/postFleetsFleetIdMembersInvitation.ts +++ /dev/null @@ -1,43 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * invitation object - */ -export interface PostFleetsFleetIdMembersInvitation { - /** - * The character you want to invite - */ - characterId: number; - /** - * If a character is invited with the `fleet_commander` role, neither `wing_id` or `squad_id` should be specified. If a character is invited with the `wing_commander` role, only `wing_id` should be specified. If a character is invited with the `squad_commander` role, both `wing_id` and `squad_id` should be specified. If a character is invited with the `squad_member` role, `wing_id` and `squad_id` should either both be specified or not specified at all. If they aren’t specified, the invited character will join any squad with available positions. - */ - role: PostFleetsFleetIdMembersInvitation.RoleEnum; - /** - * wing_id integer - */ - wingId?: number; - /** - * squad_id integer - */ - squadId?: number; -} -export namespace PostFleetsFleetIdMembersInvitation { - export type RoleEnum = 'fleet_commander' | 'wing_commander' | 'squad_commander' | 'squad_member'; - export const RoleEnum = { - FleetCommander: 'fleet_commander' as RoleEnum, - WingCommander: 'wing_commander' as RoleEnum, - SquadCommander: 'squad_commander' as RoleEnum, - SquadMember: 'squad_member' as RoleEnum - } -} diff --git a/src/app/eve-online-angular-client/model/postFleetsFleetIdMembersNotFound.ts b/src/app/eve-online-angular-client/model/postFleetsFleetIdMembersNotFound.ts deleted file mode 100755 index 6942867..0000000 --- a/src/app/eve-online-angular-client/model/postFleetsFleetIdMembersNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface PostFleetsFleetIdMembersNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/postFleetsFleetIdMembersUnprocessableEntity.ts b/src/app/eve-online-angular-client/model/postFleetsFleetIdMembersUnprocessableEntity.ts deleted file mode 100755 index 8b81f41..0000000 --- a/src/app/eve-online-angular-client/model/postFleetsFleetIdMembersUnprocessableEntity.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 422 unprocessable entity object - */ -export interface PostFleetsFleetIdMembersUnprocessableEntity { - /** - * error message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/postFleetsFleetIdWingsCreated.ts b/src/app/eve-online-angular-client/model/postFleetsFleetIdWingsCreated.ts deleted file mode 100755 index b09544c..0000000 --- a/src/app/eve-online-angular-client/model/postFleetsFleetIdWingsCreated.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 201 created object - */ -export interface PostFleetsFleetIdWingsCreated { - /** - * The wing_id of the newly created wing - */ - wingId: number; -} diff --git a/src/app/eve-online-angular-client/model/postFleetsFleetIdWingsNotFound.ts b/src/app/eve-online-angular-client/model/postFleetsFleetIdWingsNotFound.ts deleted file mode 100755 index 848af88..0000000 --- a/src/app/eve-online-angular-client/model/postFleetsFleetIdWingsNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface PostFleetsFleetIdWingsNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/postFleetsFleetIdWingsWingIdSquadsCreated.ts b/src/app/eve-online-angular-client/model/postFleetsFleetIdWingsWingIdSquadsCreated.ts deleted file mode 100755 index 8b1a3bd..0000000 --- a/src/app/eve-online-angular-client/model/postFleetsFleetIdWingsWingIdSquadsCreated.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 201 created object - */ -export interface PostFleetsFleetIdWingsWingIdSquadsCreated { - /** - * The squad_id of the newly created squad - */ - squadId: number; -} diff --git a/src/app/eve-online-angular-client/model/postFleetsFleetIdWingsWingIdSquadsNotFound.ts b/src/app/eve-online-angular-client/model/postFleetsFleetIdWingsWingIdSquadsNotFound.ts deleted file mode 100755 index 9046a97..0000000 --- a/src/app/eve-online-angular-client/model/postFleetsFleetIdWingsWingIdSquadsNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface PostFleetsFleetIdWingsWingIdSquadsNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/postUiOpenwindowNewmailNewMail.ts b/src/app/eve-online-angular-client/model/postUiOpenwindowNewmailNewMail.ts deleted file mode 100755 index 4acdb38..0000000 --- a/src/app/eve-online-angular-client/model/postUiOpenwindowNewmailNewMail.ts +++ /dev/null @@ -1,38 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * new_mail object - */ -export interface PostUiOpenwindowNewmailNewMail { - /** - * subject string - */ - subject: string; - /** - * body string - */ - body: string; - /** - * recipients array - */ - recipients: Array; - /** - * Corporations, alliances and mailing lists are all types of mailing groups. You may only send to one mailing group, at a time, so you may fill out either this field or the to_corp_or_alliance_ids field - */ - toMailingListId?: number; - /** - * to_corp_or_alliance_id integer - */ - toCorpOrAllianceId?: number; -} diff --git a/src/app/eve-online-angular-client/model/postUiOpenwindowNewmailUnprocessableEntity.ts b/src/app/eve-online-angular-client/model/postUiOpenwindowNewmailUnprocessableEntity.ts deleted file mode 100755 index 5bf75a6..0000000 --- a/src/app/eve-online-angular-client/model/postUiOpenwindowNewmailUnprocessableEntity.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Unprocessable entity - */ -export interface PostUiOpenwindowNewmailUnprocessableEntity { - /** - * Unprocessable entity message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/postUniverseIdsAgent.ts b/src/app/eve-online-angular-client/model/postUniverseIdsAgent.ts deleted file mode 100755 index 2fc5a48..0000000 --- a/src/app/eve-online-angular-client/model/postUniverseIdsAgent.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * agent object - */ -export interface PostUniverseIdsAgent { - /** - * id integer - */ - id?: number; - /** - * name string - */ - name?: string; -} diff --git a/src/app/eve-online-angular-client/model/postUniverseIdsAlliance.ts b/src/app/eve-online-angular-client/model/postUniverseIdsAlliance.ts deleted file mode 100755 index 2d5552a..0000000 --- a/src/app/eve-online-angular-client/model/postUniverseIdsAlliance.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * alliance object - */ -export interface PostUniverseIdsAlliance { - /** - * id integer - */ - id?: number; - /** - * name string - */ - name?: string; -} diff --git a/src/app/eve-online-angular-client/model/postUniverseIdsCharacter.ts b/src/app/eve-online-angular-client/model/postUniverseIdsCharacter.ts deleted file mode 100755 index 2873d9a..0000000 --- a/src/app/eve-online-angular-client/model/postUniverseIdsCharacter.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * character object - */ -export interface PostUniverseIdsCharacter { - /** - * id integer - */ - id?: number; - /** - * name string - */ - name?: string; -} diff --git a/src/app/eve-online-angular-client/model/postUniverseIdsConstellation.ts b/src/app/eve-online-angular-client/model/postUniverseIdsConstellation.ts deleted file mode 100755 index a7bfefa..0000000 --- a/src/app/eve-online-angular-client/model/postUniverseIdsConstellation.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * constellation object - */ -export interface PostUniverseIdsConstellation { - /** - * id integer - */ - id?: number; - /** - * name string - */ - name?: string; -} diff --git a/src/app/eve-online-angular-client/model/postUniverseIdsCorporation.ts b/src/app/eve-online-angular-client/model/postUniverseIdsCorporation.ts deleted file mode 100755 index 3a3bc46..0000000 --- a/src/app/eve-online-angular-client/model/postUniverseIdsCorporation.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * corporation object - */ -export interface PostUniverseIdsCorporation { - /** - * id integer - */ - id?: number; - /** - * name string - */ - name?: string; -} diff --git a/src/app/eve-online-angular-client/model/postUniverseIdsFaction.ts b/src/app/eve-online-angular-client/model/postUniverseIdsFaction.ts deleted file mode 100755 index 700a150..0000000 --- a/src/app/eve-online-angular-client/model/postUniverseIdsFaction.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * faction object - */ -export interface PostUniverseIdsFaction { - /** - * id integer - */ - id?: number; - /** - * name string - */ - name?: string; -} diff --git a/src/app/eve-online-angular-client/model/postUniverseIdsInventoryType.ts b/src/app/eve-online-angular-client/model/postUniverseIdsInventoryType.ts deleted file mode 100755 index 80c93d8..0000000 --- a/src/app/eve-online-angular-client/model/postUniverseIdsInventoryType.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * inventory_type object - */ -export interface PostUniverseIdsInventoryType { - /** - * id integer - */ - id?: number; - /** - * name string - */ - name?: string; -} diff --git a/src/app/eve-online-angular-client/model/postUniverseIdsOk.ts b/src/app/eve-online-angular-client/model/postUniverseIdsOk.ts deleted file mode 100755 index 6f81d68..0000000 --- a/src/app/eve-online-angular-client/model/postUniverseIdsOk.ts +++ /dev/null @@ -1,68 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ -import { PostUniverseIdsAgent } from './postUniverseIdsAgent'; -import { PostUniverseIdsAlliance } from './postUniverseIdsAlliance'; -import { PostUniverseIdsCharacter } from './postUniverseIdsCharacter'; -import { PostUniverseIdsConstellation } from './postUniverseIdsConstellation'; -import { PostUniverseIdsCorporation } from './postUniverseIdsCorporation'; -import { PostUniverseIdsFaction } from './postUniverseIdsFaction'; -import { PostUniverseIdsInventoryType } from './postUniverseIdsInventoryType'; -import { PostUniverseIdsRegion } from './postUniverseIdsRegion'; -import { PostUniverseIdsStation } from './postUniverseIdsStation'; -import { PostUniverseIdsSystem } from './postUniverseIdsSystem'; - - -/** - * 200 ok object - */ -export interface PostUniverseIdsOk { - /** - * agents array - */ - agents?: Array; - /** - * alliances array - */ - alliances?: Array; - /** - * characters array - */ - characters?: Array; - /** - * constellations array - */ - constellations?: Array; - /** - * corporations array - */ - corporations?: Array; - /** - * factions array - */ - factions?: Array; - /** - * inventory_types array - */ - inventoryTypes?: Array; - /** - * regions array - */ - regions?: Array; - /** - * systems array - */ - systems?: Array; - /** - * stations array - */ - stations?: Array; -} diff --git a/src/app/eve-online-angular-client/model/postUniverseIdsRegion.ts b/src/app/eve-online-angular-client/model/postUniverseIdsRegion.ts deleted file mode 100755 index cd428b5..0000000 --- a/src/app/eve-online-angular-client/model/postUniverseIdsRegion.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * region object - */ -export interface PostUniverseIdsRegion { - /** - * id integer - */ - id?: number; - /** - * name string - */ - name?: string; -} diff --git a/src/app/eve-online-angular-client/model/postUniverseIdsServiceUnavailable.ts b/src/app/eve-online-angular-client/model/postUniverseIdsServiceUnavailable.ts deleted file mode 100755 index d4a5fe4..0000000 --- a/src/app/eve-online-angular-client/model/postUniverseIdsServiceUnavailable.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Service unavailable - */ -export interface PostUniverseIdsServiceUnavailable { - /** - * Service unavailable message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/postUniverseIdsStation.ts b/src/app/eve-online-angular-client/model/postUniverseIdsStation.ts deleted file mode 100755 index b083cd8..0000000 --- a/src/app/eve-online-angular-client/model/postUniverseIdsStation.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * station object - */ -export interface PostUniverseIdsStation { - /** - * id integer - */ - id?: number; - /** - * name string - */ - name?: string; -} diff --git a/src/app/eve-online-angular-client/model/postUniverseIdsSystem.ts b/src/app/eve-online-angular-client/model/postUniverseIdsSystem.ts deleted file mode 100755 index 059ef83..0000000 --- a/src/app/eve-online-angular-client/model/postUniverseIdsSystem.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * system object - */ -export interface PostUniverseIdsSystem { - /** - * id integer - */ - id?: number; - /** - * name string - */ - name?: string; -} diff --git a/src/app/eve-online-angular-client/model/postUniverseNames200Ok.ts b/src/app/eve-online-angular-client/model/postUniverseNames200Ok.ts deleted file mode 100755 index b9409b2..0000000 --- a/src/app/eve-online-angular-client/model/postUniverseNames200Ok.ts +++ /dev/null @@ -1,43 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 200 ok object - */ -export interface PostUniverseNames200Ok { - /** - * id integer - */ - id: number; - /** - * name string - */ - name: string; - /** - * category string - */ - category: PostUniverseNames200Ok.CategoryEnum; -} -export namespace PostUniverseNames200Ok { - export type CategoryEnum = 'alliance' | 'character' | 'constellation' | 'corporation' | 'inventory_type' | 'region' | 'solar_system' | 'station'; - export const CategoryEnum = { - Alliance: 'alliance' as CategoryEnum, - Character: 'character' as CategoryEnum, - Constellation: 'constellation' as CategoryEnum, - Corporation: 'corporation' as CategoryEnum, - InventoryType: 'inventory_type' as CategoryEnum, - Region: 'region' as CategoryEnum, - SolarSystem: 'solar_system' as CategoryEnum, - Station: 'station' as CategoryEnum - } -} diff --git a/src/app/eve-online-angular-client/model/postUniverseNamesNotFound.ts b/src/app/eve-online-angular-client/model/postUniverseNamesNotFound.ts deleted file mode 100755 index 8754ca6..0000000 --- a/src/app/eve-online-angular-client/model/postUniverseNamesNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface PostUniverseNamesNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/putCharactersCharacterIdCalendarEventIdResponse.ts b/src/app/eve-online-angular-client/model/putCharactersCharacterIdCalendarEventIdResponse.ts deleted file mode 100755 index 46df906..0000000 --- a/src/app/eve-online-angular-client/model/putCharactersCharacterIdCalendarEventIdResponse.ts +++ /dev/null @@ -1,30 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * response object - */ -export interface PutCharactersCharacterIdCalendarEventIdResponse { - /** - * response string - */ - response: PutCharactersCharacterIdCalendarEventIdResponse.ResponseEnum; -} -export namespace PutCharactersCharacterIdCalendarEventIdResponse { - export type ResponseEnum = 'accepted' | 'declined' | 'tentative'; - export const ResponseEnum = { - Accepted: 'accepted' as ResponseEnum, - Declined: 'declined' as ResponseEnum, - Tentative: 'tentative' as ResponseEnum - } -} diff --git a/src/app/eve-online-angular-client/model/putCharactersCharacterIdMailMailIdBadRequest.ts b/src/app/eve-online-angular-client/model/putCharactersCharacterIdMailMailIdBadRequest.ts deleted file mode 100755 index 945ac03..0000000 --- a/src/app/eve-online-angular-client/model/putCharactersCharacterIdMailMailIdBadRequest.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Bad request - */ -export interface PutCharactersCharacterIdMailMailIdBadRequest { - /** - * Bad request message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/putCharactersCharacterIdMailMailIdContents.ts b/src/app/eve-online-angular-client/model/putCharactersCharacterIdMailMailIdContents.ts deleted file mode 100755 index 1373109..0000000 --- a/src/app/eve-online-angular-client/model/putCharactersCharacterIdMailMailIdContents.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * contents object - */ -export interface PutCharactersCharacterIdMailMailIdContents { - /** - * Whether the mail is flagged as read - */ - read?: boolean; - /** - * Labels to assign to the mail. Pre-existing labels are unassigned. - */ - labels?: Array; -} diff --git a/src/app/eve-online-angular-client/model/putFleetsFleetIdBadRequest.ts b/src/app/eve-online-angular-client/model/putFleetsFleetIdBadRequest.ts deleted file mode 100755 index 2e7a2ba..0000000 --- a/src/app/eve-online-angular-client/model/putFleetsFleetIdBadRequest.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Bad request - */ -export interface PutFleetsFleetIdBadRequest { - /** - * Bad request message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/putFleetsFleetIdMembersMemberIdMovement.ts b/src/app/eve-online-angular-client/model/putFleetsFleetIdMembersMemberIdMovement.ts deleted file mode 100755 index b841556..0000000 --- a/src/app/eve-online-angular-client/model/putFleetsFleetIdMembersMemberIdMovement.ts +++ /dev/null @@ -1,39 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * movement object - */ -export interface PutFleetsFleetIdMembersMemberIdMovement { - /** - * If a character is moved to the `fleet_commander` role, neither `wing_id` or `squad_id` should be specified. If a character is moved to the `wing_commander` role, only `wing_id` should be specified. If a character is moved to the `squad_commander` role, both `wing_id` and `squad_id` should be specified. If a character is moved to the `squad_member` role, both `wing_id` and `squad_id` should be specified. - */ - role: PutFleetsFleetIdMembersMemberIdMovement.RoleEnum; - /** - * wing_id integer - */ - wingId?: number; - /** - * squad_id integer - */ - squadId?: number; -} -export namespace PutFleetsFleetIdMembersMemberIdMovement { - export type RoleEnum = 'fleet_commander' | 'wing_commander' | 'squad_commander' | 'squad_member'; - export const RoleEnum = { - FleetCommander: 'fleet_commander' as RoleEnum, - WingCommander: 'wing_commander' as RoleEnum, - SquadCommander: 'squad_commander' as RoleEnum, - SquadMember: 'squad_member' as RoleEnum - } -} diff --git a/src/app/eve-online-angular-client/model/putFleetsFleetIdMembersMemberIdNotFound.ts b/src/app/eve-online-angular-client/model/putFleetsFleetIdMembersMemberIdNotFound.ts deleted file mode 100755 index 01a1203..0000000 --- a/src/app/eve-online-angular-client/model/putFleetsFleetIdMembersMemberIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface PutFleetsFleetIdMembersMemberIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/putFleetsFleetIdMembersMemberIdUnprocessableEntity.ts b/src/app/eve-online-angular-client/model/putFleetsFleetIdMembersMemberIdUnprocessableEntity.ts deleted file mode 100755 index 75f94aa..0000000 --- a/src/app/eve-online-angular-client/model/putFleetsFleetIdMembersMemberIdUnprocessableEntity.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * 422 unprocessable entity object - */ -export interface PutFleetsFleetIdMembersMemberIdUnprocessableEntity { - /** - * error message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/putFleetsFleetIdNewSettings.ts b/src/app/eve-online-angular-client/model/putFleetsFleetIdNewSettings.ts deleted file mode 100755 index ce808b3..0000000 --- a/src/app/eve-online-angular-client/model/putFleetsFleetIdNewSettings.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * new_settings object - */ -export interface PutFleetsFleetIdNewSettings { - /** - * New fleet MOTD in CCP flavoured HTML - */ - motd?: string; - /** - * Should free-move be enabled in the fleet - */ - isFreeMove?: boolean; -} diff --git a/src/app/eve-online-angular-client/model/putFleetsFleetIdNotFound.ts b/src/app/eve-online-angular-client/model/putFleetsFleetIdNotFound.ts deleted file mode 100755 index 6b27cce..0000000 --- a/src/app/eve-online-angular-client/model/putFleetsFleetIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface PutFleetsFleetIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/putFleetsFleetIdSquadsSquadIdNaming.ts b/src/app/eve-online-angular-client/model/putFleetsFleetIdSquadsSquadIdNaming.ts deleted file mode 100755 index 0541507..0000000 --- a/src/app/eve-online-angular-client/model/putFleetsFleetIdSquadsSquadIdNaming.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * naming object - */ -export interface PutFleetsFleetIdSquadsSquadIdNaming { - /** - * name string - */ - name: string; -} diff --git a/src/app/eve-online-angular-client/model/putFleetsFleetIdSquadsSquadIdNotFound.ts b/src/app/eve-online-angular-client/model/putFleetsFleetIdSquadsSquadIdNotFound.ts deleted file mode 100755 index 28783b4..0000000 --- a/src/app/eve-online-angular-client/model/putFleetsFleetIdSquadsSquadIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface PutFleetsFleetIdSquadsSquadIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/model/putFleetsFleetIdWingsWingIdNaming.ts b/src/app/eve-online-angular-client/model/putFleetsFleetIdWingsWingIdNaming.ts deleted file mode 100755 index 4f71537..0000000 --- a/src/app/eve-online-angular-client/model/putFleetsFleetIdWingsWingIdNaming.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * naming object - */ -export interface PutFleetsFleetIdWingsWingIdNaming { - /** - * name string - */ - name: string; -} diff --git a/src/app/eve-online-angular-client/model/putFleetsFleetIdWingsWingIdNotFound.ts b/src/app/eve-online-angular-client/model/putFleetsFleetIdWingsWingIdNotFound.ts deleted file mode 100755 index 9dc075f..0000000 --- a/src/app/eve-online-angular-client/model/putFleetsFleetIdWingsWingIdNotFound.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * EVE Swagger Interface - * An OpenAPI for EVE Online - * - * OpenAPI spec version: 0.7.6 - * - * - * NOTE: This class is auto generated by the swagger code generator program. - * https://github.com/swagger-api/swagger-codegen.git - * Do not edit the class manually. - */ - - -/** - * Not found - */ -export interface PutFleetsFleetIdWingsWingIdNotFound { - /** - * Not found message - */ - error?: string; -} diff --git a/src/app/eve-online-angular-client/variables.ts b/src/app/eve-online-angular-client/variables.ts deleted file mode 100755 index 6fe5854..0000000 --- a/src/app/eve-online-angular-client/variables.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { InjectionToken } from '@angular/core'; - -export const BASE_PATH = new InjectionToken('basePath'); -export const COLLECTION_FORMATS = { - 'csv': ',', - 'tsv': ' ', - 'ssv': ' ', - 'pipes': '|' -}