@xfloor/floor-memory-sdk-js 1.0.4 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +155 -36
- package/dist/ApiClient.js +5 -3
- package/dist/api/DefaultApi.js +277 -38
- package/dist/api/EditFloorApi.js +4 -2
- package/dist/api/EventApi.js +5 -3
- package/dist/api/GetFloorInformationApi.js +12 -6
- package/dist/api/GetRecentEventsApi.js +11 -5
- package/dist/api/QueryApi.js +4 -2
- package/dist/index.js +112 -0
- package/dist/model/BlockDetails.js +16 -14
- package/dist/model/ChangePassword200Response.js +4 -2
- package/dist/model/ConversationThreads200Response.js +146 -0
- package/dist/model/ConversationThreads200ResponseThreadsInner.js +142 -0
- package/dist/model/EditFloor400Response.js +4 -2
- package/dist/model/EditFloor400ResponseError.js +4 -2
- package/dist/model/Event400Response.js +4 -2
- package/dist/model/Event400ResponseError.js +4 -2
- package/dist/model/EventResponse.js +4 -2
- package/dist/model/FloorInfo.js +4 -2
- package/dist/model/GetConversations200Response.js +160 -0
- package/dist/model/GetConversations200ResponseConversationInner.js +107 -0
- package/dist/model/GetConversations200ResponseConversationInnerAssistant.js +228 -0
- package/dist/model/GetConversations200ResponseConversationInnerAssistantChoicesInner.js +141 -0
- package/dist/model/GetConversations200ResponseConversationInnerAssistantChoicesInnerAiModelDetails.js +212 -0
- package/dist/model/GetConversations200ResponseConversationInnerAssistantChoicesInnerMessage.js +128 -0
- package/dist/model/GetConversations200ResponseConversationInnerAssistantChoicesInnerPromptDetails.js +128 -0
- package/dist/model/GetConversations200ResponseConversationInnerAssistantFetchMultiplePosts.js +188 -0
- package/dist/model/GetConversations200ResponseConversationInnerAssistantFetchMultiplePostsResultsInner.js +218 -0
- package/dist/model/GetConversations200ResponseConversationInnerUser.js +172 -0
- package/dist/model/GetConversations200ResponseConversationInnerUserContext.js +170 -0
- package/dist/model/GetFloorInformation200Response.js +4 -2
- package/dist/model/GetRecentEvents200Response.js +4 -2
- package/dist/model/GetRecentEvents200ResponseItemsInner.js +4 -2
- package/dist/model/GetRecentEvents200ResponseItemsInnerAuthor.js +4 -2
- package/dist/model/GetRecentEvents400Response.js +4 -2
- package/dist/model/GetRecentEvents400ResponseError.js +4 -2
- package/dist/model/Media.js +4 -2
- package/dist/model/Model400ErrorCode.js +4 -2
- package/dist/model/PostAdd.js +175 -0
- package/dist/model/Query422Response.js +4 -2
- package/dist/model/Query422ResponseError.js +4 -2
- package/dist/model/QueryRequest.js +10 -6
- package/dist/model/QueryRequestFilters.js +4 -2
- package/dist/model/QueryResponse.js +4 -2
- package/dist/model/QueryResponseItemsInner.js +4 -2
- package/dist/model/ResetPassword200Response.js +4 -2
- package/dist/model/ResetPassword400Response.js +4 -2
- package/dist/model/SendSignInValidationCode200Response.js +143 -0
- package/dist/model/SendValidationCode200Response.js +4 -2
- package/dist/model/SendValidationCodeRequest.js +4 -2
- package/dist/model/SignInWithEmail200Response.js +4 -2
- package/dist/model/SignInWithEmail200ResponsePodInfo.js +4 -2
- package/dist/model/SignInWithEmail200ResponseProfile.js +4 -2
- package/dist/model/SignInWithEmail200ResponseProfileAvatar.js +4 -2
- package/dist/model/SignUp200Response.js +4 -2
- package/dist/model/SignUpResponse.js +4 -2
- package/dist/model/Threads.js +142 -0
- package/dist/model/UserDetails.js +4 -2
- package/dist/model/ValidateCode400Response.js +4 -2
- package/dist/model/ValidateCode400ResponseError.js +4 -2
- package/dist/model/ValidateCode412Response.js +4 -2
- package/dist/model/ValidateCodeRequest.js +4 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,16 +7,16 @@ This set of APIs are divided into two parts.
|
|
|
7
7
|
- Memory and
|
|
8
8
|
- Registration.
|
|
9
9
|
|
|
10
|
-
The developer has two ways of using the APIs for the app development. Developer can choose to the
|
|
10
|
+
The developer has two ways of using the APIs for the app development. Developer can choose to the Registration APIs for using the existing xfloor infracture or can implement custom Registration process. In the case of custom registration process, the developer is bound to provide proper authentication mechanisms and then send the user information to xlfoor.
|
|
11
11
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
12
12
|
|
|
13
13
|
- API version: 1.0.0
|
|
14
|
-
- Package version: 1.0.
|
|
14
|
+
- Package version: 1.0.6
|
|
15
15
|
- Generator version: 7.18.0
|
|
16
16
|
- Build package: org.openapitools.codegen.languages.JavascriptClientCodegen
|
|
17
17
|
For more information, please visit [https://xfloor.ai/ipomo/blog1551084548304/](https://xfloor.ai/ipomo/blog1551084548304/)
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
### Installation
|
|
20
20
|
|
|
21
21
|
### For [Node.js](https://nodejs.org/)
|
|
22
22
|
|
|
@@ -101,21 +101,19 @@ module: {
|
|
|
101
101
|
}
|
|
102
102
|
```
|
|
103
103
|
|
|
104
|
-
|
|
104
|
+
### Getting Started
|
|
105
105
|
|
|
106
106
|
Please follow the [installation](#installation) instruction and execute the following JS code:
|
|
107
107
|
|
|
108
108
|
```javascript
|
|
109
109
|
var XfloorFloorMemorySdkJs = require('@xfloor/floor-memory-sdk-js');
|
|
110
110
|
|
|
111
|
-
var defaultClient = XfloorFloorMemorySdkJs.ApiClient.instance;
|
|
112
|
-
// Configure Bearer access token for authorization: bearer
|
|
113
|
-
var bearer = defaultClient.authentications['bearer'];
|
|
114
|
-
bearer.accessToken = "YOUR ACCESS TOKEN"
|
|
115
111
|
|
|
116
112
|
var api = new XfloorFloorMemorySdkJs.DefaultApi()
|
|
117
|
-
var
|
|
118
|
-
var
|
|
113
|
+
var inputInfo = "inputInfo_example"; // {String}
|
|
114
|
+
var opts = {
|
|
115
|
+
'icon': "/path/to/file" // {File}
|
|
116
|
+
};
|
|
119
117
|
var callback = function(error, data, response) {
|
|
120
118
|
if (error) {
|
|
121
119
|
console.error(error);
|
|
@@ -123,46 +121,164 @@ var callback = function(error, data, response) {
|
|
|
123
121
|
console.log('API called successfully. Returned data: ' + data);
|
|
124
122
|
}
|
|
125
123
|
};
|
|
126
|
-
api.
|
|
124
|
+
api.apiDeveloperCreateAppPost(inputInfo, opts, callback);
|
|
127
125
|
|
|
128
126
|
```
|
|
129
127
|
|
|
130
|
-
|
|
128
|
+
### Documentation for API Endpoints
|
|
131
129
|
|
|
132
130
|
All URIs are relative to *https://appfloor.in*
|
|
133
131
|
|
|
134
|
-
Class
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
*XfloorFloorMemorySdkJs.DefaultApi*
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
*XfloorFloorMemorySdkJs.
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
132
|
+
Class
|
|
133
|
+
|
|
134
|
+
| Method | HTTP request |
|
|
135
|
+
|
|
136
|
+
Description
|
|
137
|
+
------------
|
|
138
|
+
|
|
139
|
+
| ------------- | ------------- |
|
|
140
|
+
|
|
141
|
+
-------------
|
|
142
|
+
*XfloorFloorMemorySdkJs.DefaultApi*
|
|
143
|
+
|
|
144
|
+
| [**apiDeveloperCreateAppPost**](docs/DefaultApi.md#apiDeveloperCreateAppPost) | **POST** /api/developer/create/app |
|
|
145
|
+
|
|
146
|
+
Create App
|
|
147
|
+
*XfloorFloorMemorySdkJs.DefaultApi*
|
|
148
|
+
|
|
149
|
+
| [**apiDeveloperModifyAppPost**](docs/DefaultApi.md#apiDeveloperModifyAppPost) | **POST** /api/developer/modify/app |
|
|
150
|
+
|
|
151
|
+
Modify Floorpod App
|
|
152
|
+
*XfloorFloorMemorySdkJs.DefaultApi*
|
|
153
|
+
|
|
154
|
+
| [**changeEmail**](docs/DefaultApi.md#changeEmail) | **POST** /auth-service/change/email |
|
|
155
|
+
|
|
156
|
+
Change email ID
|
|
157
|
+
*XfloorFloorMemorySdkJs.DefaultApi*
|
|
158
|
+
|
|
159
|
+
| [**changeMobileNumber**](docs/DefaultApi.md#changeMobileNumber) | **POST** /auth-service/change/mobile |
|
|
160
|
+
|
|
161
|
+
Change Mobile number
|
|
162
|
+
*XfloorFloorMemorySdkJs.DefaultApi*
|
|
163
|
+
|
|
164
|
+
| [**changePassword**](docs/DefaultApi.md#changePassword) | **POST** /auth-service/password/change |
|
|
165
|
+
|
|
166
|
+
Change Password
|
|
167
|
+
*XfloorFloorMemorySdkJs.DefaultApi*
|
|
168
|
+
|
|
169
|
+
| [**conversationThreads**](docs/DefaultApi.md#conversationThreads) | **GET** /agent/memory/threads |
|
|
170
|
+
|
|
171
|
+
Get the conversational threads
|
|
172
|
+
*XfloorFloorMemorySdkJs.DefaultApi*
|
|
173
|
+
|
|
174
|
+
| [**getConversations**](docs/DefaultApi.md#getConversations) | **GET** /agent/memory/conversations |
|
|
175
|
+
|
|
176
|
+
Conversations
|
|
177
|
+
*XfloorFloorMemorySdkJs.DefaultApi*
|
|
178
|
+
|
|
179
|
+
| [**makeFloorPrivate**](docs/DefaultApi.md#makeFloorPrivate) | **POST** /api/memory/make/floor/private |
|
|
180
|
+
|
|
181
|
+
Make floor Private
|
|
182
|
+
*XfloorFloorMemorySdkJs.DefaultApi*
|
|
183
|
+
|
|
184
|
+
| [**makeFloorPublic**](docs/DefaultApi.md#makeFloorPublic) | **POST** /api/memory/make/floor/public |
|
|
185
|
+
|
|
186
|
+
Make floor public
|
|
187
|
+
*XfloorFloorMemorySdkJs.DefaultApi*
|
|
188
|
+
|
|
189
|
+
| [**registerExternalUserIdentity**](docs/DefaultApi.md#registerExternalUserIdentity) | **POST** /memory/identity/external-user |
|
|
190
|
+
|
|
191
|
+
External User Registration
|
|
192
|
+
*XfloorFloorMemorySdkJs.DefaultApi*
|
|
193
|
+
|
|
194
|
+
| [**renameFloor**](docs/DefaultApi.md#renameFloor) | **POST** /api/memory/change/floor/id |
|
|
195
|
+
|
|
196
|
+
Rename floor
|
|
197
|
+
*XfloorFloorMemorySdkJs.DefaultApi*
|
|
198
|
+
|
|
199
|
+
| [**resetPassword**](docs/DefaultApi.md#resetPassword) | **POST** /auth-service/password/reset |
|
|
200
|
+
|
|
201
|
+
Reset Password
|
|
202
|
+
*XfloorFloorMemorySdkJs.DefaultApi*
|
|
203
|
+
|
|
204
|
+
| [**sendSignInValidationCode**](docs/DefaultApi.md#sendSignInValidationCode) | **POST** /auth-service/send/sign/in/validation/code |
|
|
205
|
+
|
|
206
|
+
Send Sign-In Validation Code (OTP)
|
|
207
|
+
*XfloorFloorMemorySdkJs.DefaultApi*
|
|
208
|
+
|
|
209
|
+
| [**sendValidationCode**](docs/DefaultApi.md#sendValidationCode) | **POST** /auth-service/send/validation/code |
|
|
210
|
+
|
|
211
|
+
Send Validation code
|
|
212
|
+
*XfloorFloorMemorySdkJs.DefaultApi*
|
|
213
|
+
|
|
214
|
+
| [**signInWithEmail**](docs/DefaultApi.md#signInWithEmail) | **POST** /auth-service/sign/in/with/email |
|
|
215
|
+
|
|
216
|
+
Sign In with email ID
|
|
217
|
+
*XfloorFloorMemorySdkJs.DefaultApi*
|
|
218
|
+
|
|
219
|
+
| [**signInWithMobileNumber**](docs/DefaultApi.md#signInWithMobileNumber) | **POST** /auth-service/sign/in/with/mobile/number |
|
|
220
|
+
|
|
221
|
+
Sign In with Mobile number
|
|
222
|
+
*XfloorFloorMemorySdkJs.DefaultApi*
|
|
223
|
+
|
|
224
|
+
| [**signUp**](docs/DefaultApi.md#signUp) | **POST** /auth-service/sign/up |
|
|
225
|
+
|
|
226
|
+
Sign Up
|
|
227
|
+
*XfloorFloorMemorySdkJs.DefaultApi*
|
|
228
|
+
|
|
229
|
+
| [**validateCode**](docs/DefaultApi.md#validateCode) | **POST** /auth-service/validate/activation/code |
|
|
230
|
+
|
|
231
|
+
Validation
|
|
232
|
+
*XfloorFloorMemorySdkJs.EditFloorApi*
|
|
233
|
+
|
|
234
|
+
| [**editFloor**](docs/EditFloorApi.md#editFloor) | **POST** /api/memory/edit/floor/{floor_id} |
|
|
235
|
+
|
|
236
|
+
Edit floor
|
|
237
|
+
*XfloorFloorMemorySdkJs.EventApi*
|
|
238
|
+
|
|
239
|
+
| [**event**](docs/EventApi.md#event) | **POST** /api/memory/events |
|
|
240
|
+
|
|
241
|
+
Create Event (Post Content)
|
|
242
|
+
*XfloorFloorMemorySdkJs.GetFloorInformationApi*
|
|
243
|
+
|
|
244
|
+
| [**getFloorInformation**](docs/GetFloorInformationApi.md#getFloorInformation) | **GET** /api/memory/floor/info/{floor_id} |
|
|
245
|
+
|
|
246
|
+
Basic information of a floor
|
|
247
|
+
*XfloorFloorMemorySdkJs.GetRecentEventsApi*
|
|
248
|
+
|
|
249
|
+
| [**getRecentEvents**](docs/GetRecentEventsApi.md#getRecentEvents) | **GET** /api/memory/recent/events |
|
|
250
|
+
|
|
251
|
+
Recent Events
|
|
252
|
+
*XfloorFloorMemorySdkJs.QueryApi*
|
|
253
|
+
|
|
254
|
+
| [**query**](docs/QueryApi.md#query) | **POST** /agent/memory/query |
|
|
255
|
+
|
|
256
|
+
Query (Primary API)
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
### Documentation for Models
|
|
157
260
|
|
|
158
261
|
- [XfloorFloorMemorySdkJs.BlockDetails](docs/BlockDetails.md)
|
|
159
262
|
- [XfloorFloorMemorySdkJs.ChangePassword200Response](docs/ChangePassword200Response.md)
|
|
263
|
+
- [XfloorFloorMemorySdkJs.ConversationThreads200Response](docs/ConversationThreads200Response.md)
|
|
264
|
+
- [XfloorFloorMemorySdkJs.ConversationThreads200ResponseThreadsInner](docs/ConversationThreads200ResponseThreadsInner.md)
|
|
160
265
|
- [XfloorFloorMemorySdkJs.EditFloor400Response](docs/EditFloor400Response.md)
|
|
161
266
|
- [XfloorFloorMemorySdkJs.EditFloor400ResponseError](docs/EditFloor400ResponseError.md)
|
|
162
267
|
- [XfloorFloorMemorySdkJs.Event400Response](docs/Event400Response.md)
|
|
163
268
|
- [XfloorFloorMemorySdkJs.Event400ResponseError](docs/Event400ResponseError.md)
|
|
164
269
|
- [XfloorFloorMemorySdkJs.EventResponse](docs/EventResponse.md)
|
|
165
270
|
- [XfloorFloorMemorySdkJs.FloorInfo](docs/FloorInfo.md)
|
|
271
|
+
- [XfloorFloorMemorySdkJs.GetConversations200Response](docs/GetConversations200Response.md)
|
|
272
|
+
- [XfloorFloorMemorySdkJs.GetConversations200ResponseConversationInner](docs/GetConversations200ResponseConversationInner.md)
|
|
273
|
+
- [XfloorFloorMemorySdkJs.GetConversations200ResponseConversationInnerAssistant](docs/GetConversations200ResponseConversationInnerAssistant.md)
|
|
274
|
+
- [XfloorFloorMemorySdkJs.GetConversations200ResponseConversationInnerAssistantChoicesInner](docs/GetConversations200ResponseConversationInnerAssistantChoicesInner.md)
|
|
275
|
+
- [XfloorFloorMemorySdkJs.GetConversations200ResponseConversationInnerAssistantChoicesInnerAiModelDetails](docs/GetConversations200ResponseConversationInnerAssistantChoicesInnerAiModelDetails.md)
|
|
276
|
+
- [XfloorFloorMemorySdkJs.GetConversations200ResponseConversationInnerAssistantChoicesInnerMessage](docs/GetConversations200ResponseConversationInnerAssistantChoicesInnerMessage.md)
|
|
277
|
+
- [XfloorFloorMemorySdkJs.GetConversations200ResponseConversationInnerAssistantChoicesInnerPromptDetails](docs/GetConversations200ResponseConversationInnerAssistantChoicesInnerPromptDetails.md)
|
|
278
|
+
- [XfloorFloorMemorySdkJs.GetConversations200ResponseConversationInnerAssistantFetchMultiplePosts](docs/GetConversations200ResponseConversationInnerAssistantFetchMultiplePosts.md)
|
|
279
|
+
- [XfloorFloorMemorySdkJs.GetConversations200ResponseConversationInnerAssistantFetchMultiplePostsResultsInner](docs/GetConversations200ResponseConversationInnerAssistantFetchMultiplePostsResultsInner.md)
|
|
280
|
+
- [XfloorFloorMemorySdkJs.GetConversations200ResponseConversationInnerUser](docs/GetConversations200ResponseConversationInnerUser.md)
|
|
281
|
+
- [XfloorFloorMemorySdkJs.GetConversations200ResponseConversationInnerUserContext](docs/GetConversations200ResponseConversationInnerUserContext.md)
|
|
166
282
|
- [XfloorFloorMemorySdkJs.GetFloorInformation200Response](docs/GetFloorInformation200Response.md)
|
|
167
283
|
- [XfloorFloorMemorySdkJs.GetRecentEvents200Response](docs/GetRecentEvents200Response.md)
|
|
168
284
|
- [XfloorFloorMemorySdkJs.GetRecentEvents200ResponseItemsInner](docs/GetRecentEvents200ResponseItemsInner.md)
|
|
@@ -171,6 +287,7 @@ Class | Method | HTTP request | Description
|
|
|
171
287
|
- [XfloorFloorMemorySdkJs.GetRecentEvents400ResponseError](docs/GetRecentEvents400ResponseError.md)
|
|
172
288
|
- [XfloorFloorMemorySdkJs.Media](docs/Media.md)
|
|
173
289
|
- [XfloorFloorMemorySdkJs.Model400ErrorCode](docs/Model400ErrorCode.md)
|
|
290
|
+
- [XfloorFloorMemorySdkJs.PostAdd](docs/PostAdd.md)
|
|
174
291
|
- [XfloorFloorMemorySdkJs.Query422Response](docs/Query422Response.md)
|
|
175
292
|
- [XfloorFloorMemorySdkJs.Query422ResponseError](docs/Query422ResponseError.md)
|
|
176
293
|
- [XfloorFloorMemorySdkJs.QueryRequest](docs/QueryRequest.md)
|
|
@@ -179,6 +296,7 @@ Class | Method | HTTP request | Description
|
|
|
179
296
|
- [XfloorFloorMemorySdkJs.QueryResponseItemsInner](docs/QueryResponseItemsInner.md)
|
|
180
297
|
- [XfloorFloorMemorySdkJs.ResetPassword200Response](docs/ResetPassword200Response.md)
|
|
181
298
|
- [XfloorFloorMemorySdkJs.ResetPassword400Response](docs/ResetPassword400Response.md)
|
|
299
|
+
- [XfloorFloorMemorySdkJs.SendSignInValidationCode200Response](docs/SendSignInValidationCode200Response.md)
|
|
182
300
|
- [XfloorFloorMemorySdkJs.SendValidationCode200Response](docs/SendValidationCode200Response.md)
|
|
183
301
|
- [XfloorFloorMemorySdkJs.SendValidationCodeRequest](docs/SendValidationCodeRequest.md)
|
|
184
302
|
- [XfloorFloorMemorySdkJs.SignInWithEmail200Response](docs/SignInWithEmail200Response.md)
|
|
@@ -187,6 +305,7 @@ Class | Method | HTTP request | Description
|
|
|
187
305
|
- [XfloorFloorMemorySdkJs.SignInWithEmail200ResponseProfileAvatar](docs/SignInWithEmail200ResponseProfileAvatar.md)
|
|
188
306
|
- [XfloorFloorMemorySdkJs.SignUp200Response](docs/SignUp200Response.md)
|
|
189
307
|
- [XfloorFloorMemorySdkJs.SignUpResponse](docs/SignUpResponse.md)
|
|
308
|
+
- [XfloorFloorMemorySdkJs.Threads](docs/Threads.md)
|
|
190
309
|
- [XfloorFloorMemorySdkJs.UserDetails](docs/UserDetails.md)
|
|
191
310
|
- [XfloorFloorMemorySdkJs.ValidateCode400Response](docs/ValidateCode400Response.md)
|
|
192
311
|
- [XfloorFloorMemorySdkJs.ValidateCode400ResponseError](docs/ValidateCode400ResponseError.md)
|
|
@@ -194,7 +313,7 @@ Class | Method | HTTP request | Description
|
|
|
194
313
|
- [XfloorFloorMemorySdkJs.ValidateCodeRequest](docs/ValidateCodeRequest.md)
|
|
195
314
|
|
|
196
315
|
|
|
197
|
-
|
|
316
|
+
### Documentation for Authorization
|
|
198
317
|
|
|
199
318
|
|
|
200
319
|
Authentication schemes defined for the API:
|
package/dist/ApiClient.js
CHANGED
|
@@ -13,7 +13,9 @@ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r),
|
|
|
13
13
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
14
14
|
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
|
|
15
15
|
* Floor Memory
|
|
16
|
-
* The set APIs are used to develop Floor pds which can be used as their personal assistants.
|
|
16
|
+
* The set APIs are used to develop Floor pds which can be used as their personal assistants. This set of APIs are divided into two parts.
|
|
17
|
+
* - Memory and
|
|
18
|
+
* - Registration. The developer has two ways of using the APIs for the app development. Developer can choose to the Registration APIs for using the existing xfloor infracture or can implement custom Registration process. In the case of custom registration process, the developer is bound to provide proper authentication mechanisms and then send the user information to xlfoor.
|
|
17
19
|
*
|
|
18
20
|
* The version of the OpenAPI document: 1.0.0
|
|
19
21
|
* Contact: contact@ipomo.in
|
|
@@ -25,7 +27,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
|
25
27
|
*/
|
|
26
28
|
/**
|
|
27
29
|
* @module ApiClient
|
|
28
|
-
* @version 1.0.
|
|
30
|
+
* @version 1.0.6
|
|
29
31
|
*/
|
|
30
32
|
/**
|
|
31
33
|
* Manages low level client-server communications, parameter marshalling, etc. There should not be any need for an
|
|
@@ -66,7 +68,7 @@ var ApiClient = /*#__PURE__*/function () {
|
|
|
66
68
|
* @default {}
|
|
67
69
|
*/
|
|
68
70
|
this.defaultHeaders = {
|
|
69
|
-
'User-Agent': 'OpenAPI-Generator/1.0.
|
|
71
|
+
'User-Agent': 'OpenAPI-Generator/1.0.6/Javascript'
|
|
70
72
|
};
|
|
71
73
|
|
|
72
74
|
/**
|