Source: client/openapi/api/DataApi.js

  1. /**
  2. * OpenAPI definition
  3. * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
  4. *
  5. * The version of the OpenAPI document: v0
  6. *
  7. *
  8. * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
  9. * https://openapi-generator.tech
  10. * Do not edit the class manually.
  11. *
  12. */
  13. import {ApiClient} from "../ApiClient.js";
  14. import { UserData } from '../model/UserData.js';
  15. /**
  16. * Data service.
  17. * @module api/DataApi
  18. * @version v0
  19. */
  20. export class DataApi {
  21. /**
  22. * Constructs a new DataApi.
  23. * @alias module:api/DataApi
  24. * @class
  25. * @param {module:ApiClient} [apiClient] Optional API client implementation to use,
  26. * default to {@link module:ApiClient#instance} if unspecified.
  27. */
  28. constructor(apiClient) {
  29. this.apiClient = apiClient || ApiClient.instance;
  30. }
  31. /**
  32. * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing HTTP response
  33. */
  34. clearUserDataWithHttpInfo() {
  35. let postBody = null;
  36. let pathParams = {
  37. };
  38. let queryParams = {
  39. };
  40. let headerParams = {
  41. };
  42. let formParams = {
  43. };
  44. let authNames = [];
  45. let contentTypes = [];
  46. let accepts = [];
  47. let returnType = null;
  48. return this.apiClient.callApi(
  49. '/vrspace/api/user-data', 'DELETE',
  50. pathParams, queryParams, headerParams, formParams, postBody,
  51. authNames, contentTypes, accepts, returnType, null
  52. );
  53. }
  54. /**
  55. * @return {Promise} a {@link https://www.promisejs.org/|Promise}
  56. */
  57. clearUserData() {
  58. return this.clearUserDataWithHttpInfo()
  59. .then(function(response_and_data) {
  60. return response_and_data.data;
  61. });
  62. }
  63. /**
  64. * @param {String} key
  65. * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing HTTP response
  66. */
  67. deleteUserDataWithHttpInfo(key) {
  68. let postBody = null;
  69. // verify the required parameter 'key' is set
  70. if (key === undefined || key === null) {
  71. throw new Error("Missing the required parameter 'key' when calling deleteUserData");
  72. }
  73. let pathParams = {
  74. 'key': key
  75. };
  76. let queryParams = {
  77. };
  78. let headerParams = {
  79. };
  80. let formParams = {
  81. };
  82. let authNames = [];
  83. let contentTypes = [];
  84. let accepts = [];
  85. let returnType = null;
  86. return this.apiClient.callApi(
  87. '/vrspace/api/user-data/{key}', 'DELETE',
  88. pathParams, queryParams, headerParams, formParams, postBody,
  89. authNames, contentTypes, accepts, returnType, null
  90. );
  91. }
  92. /**
  93. * @param {String} key
  94. * @return {Promise} a {@link https://www.promisejs.org/|Promise}
  95. */
  96. deleteUserData(key) {
  97. return this.deleteUserDataWithHttpInfo(key)
  98. .then(function(response_and_data) {
  99. return response_and_data.data;
  100. });
  101. }
  102. /**
  103. * @param {String} key
  104. * @return {Promise< UserData >} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link UserData} and HTTP response
  105. */
  106. getUserDataWithHttpInfo(key) {
  107. let postBody = null;
  108. // verify the required parameter 'key' is set
  109. if (key === undefined || key === null) {
  110. throw new Error("Missing the required parameter 'key' when calling getUserData");
  111. }
  112. let pathParams = {
  113. 'key': key
  114. };
  115. let queryParams = {
  116. };
  117. let headerParams = {
  118. };
  119. let formParams = {
  120. };
  121. let authNames = [];
  122. let contentTypes = [];
  123. let accepts = ['*/*'];
  124. let returnType = UserData;
  125. return this.apiClient.callApi(
  126. '/vrspace/api/user-data/{key}', 'GET',
  127. pathParams, queryParams, headerParams, formParams, postBody,
  128. authNames, contentTypes, accepts, returnType, null
  129. );
  130. }
  131. /**
  132. * @param {String} key
  133. * @return {Promise< UserData >} a {@link https://www.promisejs.org/|Promise}, with data of type {@link UserData}
  134. */
  135. getUserData(key) {
  136. return this.getUserDataWithHttpInfo(key)
  137. .then(function(response_and_data) {
  138. return response_and_data.data;
  139. });
  140. }
  141. /**
  142. * @return {Promise< Array.<UserData> >} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Array.<UserData>} and HTTP response
  143. */
  144. listUserDataWithHttpInfo() {
  145. let postBody = null;
  146. let pathParams = {
  147. };
  148. let queryParams = {
  149. };
  150. let headerParams = {
  151. };
  152. let formParams = {
  153. };
  154. let authNames = [];
  155. let contentTypes = [];
  156. let accepts = ['*/*'];
  157. let returnType = [UserData];
  158. return this.apiClient.callApi(
  159. '/vrspace/api/user-data', 'GET',
  160. pathParams, queryParams, headerParams, formParams, postBody,
  161. authNames, contentTypes, accepts, returnType, null
  162. );
  163. }
  164. /**
  165. * @return {Promise< Array.<UserData> >} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Array.<UserData>}
  166. */
  167. listUserData() {
  168. return this.listUserDataWithHttpInfo()
  169. .then(function(response_and_data) {
  170. return response_and_data.data;
  171. });
  172. }
  173. /**
  174. * @param {UserData} userData
  175. * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing HTTP response
  176. */
  177. setUserDataWithHttpInfo(userData) {
  178. let postBody = userData;
  179. // verify the required parameter 'userData' is set
  180. if (userData === undefined || userData === null) {
  181. throw new Error("Missing the required parameter 'userData' when calling setUserData");
  182. }
  183. let pathParams = {
  184. };
  185. let queryParams = {
  186. };
  187. let headerParams = {
  188. };
  189. let formParams = {
  190. };
  191. let authNames = [];
  192. let contentTypes = ['application/json'];
  193. let accepts = [];
  194. let returnType = null;
  195. return this.apiClient.callApi(
  196. '/vrspace/api/user-data', 'POST',
  197. pathParams, queryParams, headerParams, formParams, postBody,
  198. authNames, contentTypes, accepts, returnType, null
  199. );
  200. }
  201. /**
  202. * @param {UserData} userData
  203. * @return {Promise} a {@link https://www.promisejs.org/|Promise}
  204. */
  205. setUserData(userData) {
  206. return this.setUserDataWithHttpInfo(userData)
  207. .then(function(response_and_data) {
  208. return response_and_data.data;
  209. });
  210. }
  211. }