@xfloor/floor-memory-sdk-js 1.0.3 → 1.0.5

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.
Files changed (63) hide show
  1. package/README.md +156 -36
  2. package/dist/ApiClient.js +5 -3
  3. package/dist/api/DefaultApi.js +215 -10
  4. package/dist/api/EditFloorApi.js +4 -2
  5. package/dist/api/EventApi.js +5 -3
  6. package/dist/api/GetFloorInformationApi.js +5 -3
  7. package/dist/api/GetRecentEventsApi.js +4 -2
  8. package/dist/api/QueryApi.js +4 -2
  9. package/dist/index.js +119 -0
  10. package/dist/model/BlockDetails.js +16 -14
  11. package/dist/model/ChangePassword200Response.js +4 -2
  12. package/dist/model/ConversationThreads200Response.js +146 -0
  13. package/dist/model/ConversationThreads200ResponseThreadsInner.js +142 -0
  14. package/dist/model/EditFloor400Response.js +4 -2
  15. package/dist/model/EditFloor400ResponseError.js +4 -2
  16. package/dist/model/Event400Response.js +4 -2
  17. package/dist/model/Event400ResponseError.js +4 -2
  18. package/dist/model/EventResponse.js +4 -2
  19. package/dist/model/FloorInfo.js +4 -2
  20. package/dist/model/GetConversations200Response.js +160 -0
  21. package/dist/model/GetConversations200ResponseConversationInner.js +107 -0
  22. package/dist/model/GetConversations200ResponseConversationInnerAssistant.js +228 -0
  23. package/dist/model/GetConversations200ResponseConversationInnerAssistantChoicesInner.js +141 -0
  24. package/dist/model/GetConversations200ResponseConversationInnerAssistantChoicesInnerAiModelDetails.js +212 -0
  25. package/dist/model/GetConversations200ResponseConversationInnerAssistantChoicesInnerMessage.js +128 -0
  26. package/dist/model/GetConversations200ResponseConversationInnerAssistantChoicesInnerPromptDetails.js +128 -0
  27. package/dist/model/GetConversations200ResponseConversationInnerAssistantFetchMultiplePosts.js +188 -0
  28. package/dist/model/GetConversations200ResponseConversationInnerAssistantFetchMultiplePostsResultsInner.js +218 -0
  29. package/dist/model/GetConversations200ResponseConversationInnerUser.js +172 -0
  30. package/dist/model/GetConversations200ResponseConversationInnerUserContext.js +170 -0
  31. package/dist/model/GetFloorInformation200Response.js +4 -2
  32. package/dist/model/GetRecentEvents200Response.js +4 -2
  33. package/dist/model/GetRecentEvents200ResponseItemsInner.js +4 -2
  34. package/dist/model/GetRecentEvents200ResponseItemsInnerAuthor.js +4 -2
  35. package/dist/model/GetRecentEvents400Response.js +4 -2
  36. package/dist/model/GetRecentEvents400ResponseError.js +4 -2
  37. package/dist/model/Media.js +4 -2
  38. package/dist/model/Model400ErrorCode.js +4 -2
  39. package/dist/model/PostAdd.js +175 -0
  40. package/dist/model/Query422Response.js +4 -2
  41. package/dist/model/Query422ResponseError.js +4 -2
  42. package/dist/model/QueryRequest.js +4 -2
  43. package/dist/model/QueryRequestFilters.js +4 -2
  44. package/dist/model/QueryResponse.js +4 -2
  45. package/dist/model/QueryResponseItemsInner.js +4 -2
  46. package/dist/model/ResetPassword200Response.js +4 -2
  47. package/dist/model/ResetPassword400Response.js +4 -2
  48. package/dist/model/SendSignInValidationCode200Response.js +143 -0
  49. package/dist/model/SendValidationCode200Response.js +4 -2
  50. package/dist/model/SendValidationCodeRequest.js +4 -2
  51. package/dist/model/SignInWithEmail200Response.js +24 -24
  52. package/dist/model/SignInWithEmail200ResponsePodInfo.js +200 -0
  53. package/dist/model/SignInWithEmail200ResponseProfile.js +8 -8
  54. package/dist/model/SignInWithEmail200ResponseProfileAvatar.js +4 -2
  55. package/dist/model/SignUp200Response.js +4 -2
  56. package/dist/model/SignUpResponse.js +4 -2
  57. package/dist/model/Threads.js +142 -0
  58. package/dist/model/UserDetails.js +24 -24
  59. package/dist/model/ValidateCode400Response.js +4 -2
  60. package/dist/model/ValidateCode400ResponseError.js +4 -2
  61. package/dist/model/ValidateCode412Response.js +4 -2
  62. package/dist/model/ValidateCodeRequest.js +4 -2
  63. package/package.json +1 -1
@@ -14,7 +14,9 @@ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r),
14
14
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
15
15
  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); } /**
16
16
  * Floor Memory
17
- * 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. - Memory and - 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
+ * 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.
18
+ * - Memory and
19
+ * - 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.
18
20
  *
19
21
  * The version of the OpenAPI document: 1.0.0
20
22
  * Contact: contact@ipomo.in
@@ -27,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
27
29
  /**
28
30
  * The GetRecentEvents200ResponseItemsInnerAuthor model module.
29
31
  * @module model/GetRecentEvents200ResponseItemsInnerAuthor
30
- * @version 1.0.3
32
+ * @version 1.0.5
31
33
  */
32
34
  var GetRecentEvents200ResponseItemsInnerAuthor = /*#__PURE__*/function () {
33
35
  /**
@@ -17,7 +17,9 @@ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r),
17
17
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
18
18
  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); } /**
19
19
  * Floor Memory
20
- * 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. - Memory and - 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.
20
+ * 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.
21
+ * - Memory and
22
+ * - 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.
21
23
  *
22
24
  * The version of the OpenAPI document: 1.0.0
23
25
  * Contact: contact@ipomo.in
@@ -30,7 +32,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
30
32
  /**
31
33
  * The GetRecentEvents400Response model module.
32
34
  * @module model/GetRecentEvents400Response
33
- * @version 1.0.3
35
+ * @version 1.0.5
34
36
  */
35
37
  var GetRecentEvents400Response = /*#__PURE__*/function () {
36
38
  /**
@@ -16,7 +16,9 @@ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r),
16
16
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
17
17
  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); } /**
18
18
  * Floor Memory
19
- * 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. - Memory and - 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.
19
+ * 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.
20
+ * - Memory and
21
+ * - 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.
20
22
  *
21
23
  * The version of the OpenAPI document: 1.0.0
22
24
  * Contact: contact@ipomo.in
@@ -29,7 +31,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
31
  /**
30
32
  * The GetRecentEvents400ResponseError model module.
31
33
  * @module model/GetRecentEvents400ResponseError
32
- * @version 1.0.3
34
+ * @version 1.0.5
33
35
  */
34
36
  var GetRecentEvents400ResponseError = /*#__PURE__*/function () {
35
37
  /**
@@ -16,7 +16,9 @@ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r),
16
16
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
17
17
  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); } /**
18
18
  * Floor Memory
19
- * 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. - Memory and - 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.
19
+ * 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.
20
+ * - Memory and
21
+ * - 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.
20
22
  *
21
23
  * The version of the OpenAPI document: 1.0.0
22
24
  * Contact: contact@ipomo.in
@@ -29,7 +31,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
31
  /**
30
32
  * The Media model module.
31
33
  * @module model/Media
32
- * @version 1.0.3
34
+ * @version 1.0.5
33
35
  */
34
36
  var Media = /*#__PURE__*/function () {
35
37
  /**
@@ -16,7 +16,9 @@ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r),
16
16
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
17
17
  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); } /**
18
18
  * Floor Memory
19
- * 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. - Memory and - 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.
19
+ * 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.
20
+ * - Memory and
21
+ * - 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.
20
22
  *
21
23
  * The version of the OpenAPI document: 1.0.0
22
24
  * Contact: contact@ipomo.in
@@ -29,7 +31,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
31
  /**
30
32
  * The Model400ErrorCode model module.
31
33
  * @module model/Model400ErrorCode
32
- * @version 1.0.3
34
+ * @version 1.0.5
33
35
  */
34
36
  var Model400ErrorCode = /*#__PURE__*/function () {
35
37
  /**
@@ -0,0 +1,175 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _ApiClient = _interopRequireDefault(require("../ApiClient"));
8
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
9
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
10
+ function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
11
+ function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
12
+ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
13
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
14
+ function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
15
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
16
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
17
+ 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); } /**
18
+ * Floor Memory
19
+ * 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.
20
+ * - Memory and
21
+ * - 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.
22
+ *
23
+ * The version of the OpenAPI document: 1.0.0
24
+ * Contact: contact@ipomo.in
25
+ *
26
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
27
+ * https://openapi-generator.tech
28
+ * Do not edit the class manually.
29
+ *
30
+ */
31
+ /**
32
+ * The PostAdd model module.
33
+ * @module model/PostAdd
34
+ * @version 1.0.5
35
+ */
36
+ var PostAdd = /*#__PURE__*/function () {
37
+ /**
38
+ * Constructs a new <code>PostAdd</code>.
39
+ * @alias module:model/PostAdd
40
+ * @param floorId {String} Floor ID to which the post needs to be added
41
+ * @param BID {String} Block type (0 or 1)
42
+ * @param userId {String} User Identifcation who has added the post
43
+ * @param title {String} Title of the post
44
+ * @param description {String} Description or Details
45
+ */
46
+ function PostAdd(floorId, BID, userId, title, description) {
47
+ _classCallCheck(this, PostAdd);
48
+ PostAdd.initialize(this, floorId, BID, userId, title, description);
49
+ }
50
+
51
+ /**
52
+ * Initializes the fields of this object.
53
+ * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
54
+ * Only for internal use.
55
+ */
56
+ return _createClass(PostAdd, null, [{
57
+ key: "initialize",
58
+ value: function initialize(obj, floorId, BID, userId, title, description) {
59
+ obj['floor_id'] = floorId;
60
+ obj['BID'] = BID;
61
+ obj['user_id'] = userId;
62
+ obj['title'] = title;
63
+ obj['description'] = description;
64
+ }
65
+
66
+ /**
67
+ * Constructs a <code>PostAdd</code> from a plain JavaScript object, optionally creating a new instance.
68
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
69
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
70
+ * @param {module:model/PostAdd} obj Optional instance to populate.
71
+ * @return {module:model/PostAdd} The populated <code>PostAdd</code> instance.
72
+ */
73
+ }, {
74
+ key: "constructFromObject",
75
+ value: function constructFromObject(data, obj) {
76
+ if (data) {
77
+ obj = obj || new PostAdd();
78
+ if (data.hasOwnProperty('floor_id')) {
79
+ obj['floor_id'] = _ApiClient["default"].convertToType(data['floor_id'], 'String');
80
+ }
81
+ if (data.hasOwnProperty('BID')) {
82
+ obj['BID'] = _ApiClient["default"].convertToType(data['BID'], 'String');
83
+ }
84
+ if (data.hasOwnProperty('user_id')) {
85
+ obj['user_id'] = _ApiClient["default"].convertToType(data['user_id'], 'String');
86
+ }
87
+ if (data.hasOwnProperty('title')) {
88
+ obj['title'] = _ApiClient["default"].convertToType(data['title'], 'String');
89
+ }
90
+ if (data.hasOwnProperty('description')) {
91
+ obj['description'] = _ApiClient["default"].convertToType(data['description'], 'String');
92
+ }
93
+ }
94
+ return obj;
95
+ }
96
+
97
+ /**
98
+ * Validates the JSON data with respect to <code>PostAdd</code>.
99
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
100
+ * @return {boolean} to indicate whether the JSON data is valid with respect to <code>PostAdd</code>.
101
+ */
102
+ }, {
103
+ key: "validateJSON",
104
+ value: function validateJSON(data) {
105
+ // check to make sure all required properties are present in the JSON string
106
+ var _iterator = _createForOfIteratorHelper(PostAdd.RequiredProperties),
107
+ _step;
108
+ try {
109
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
110
+ var property = _step.value;
111
+ if (!data.hasOwnProperty(property)) {
112
+ throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
113
+ }
114
+ }
115
+ // ensure the json data is a string
116
+ } catch (err) {
117
+ _iterator.e(err);
118
+ } finally {
119
+ _iterator.f();
120
+ }
121
+ if (data['floor_id'] && !(typeof data['floor_id'] === 'string' || data['floor_id'] instanceof String)) {
122
+ throw new Error("Expected the field `floor_id` to be a primitive type in the JSON string but got " + data['floor_id']);
123
+ }
124
+ // ensure the json data is a string
125
+ if (data['BID'] && !(typeof data['BID'] === 'string' || data['BID'] instanceof String)) {
126
+ throw new Error("Expected the field `BID` to be a primitive type in the JSON string but got " + data['BID']);
127
+ }
128
+ // ensure the json data is a string
129
+ if (data['user_id'] && !(typeof data['user_id'] === 'string' || data['user_id'] instanceof String)) {
130
+ throw new Error("Expected the field `user_id` to be a primitive type in the JSON string but got " + data['user_id']);
131
+ }
132
+ // ensure the json data is a string
133
+ if (data['title'] && !(typeof data['title'] === 'string' || data['title'] instanceof String)) {
134
+ throw new Error("Expected the field `title` to be a primitive type in the JSON string but got " + data['title']);
135
+ }
136
+ // ensure the json data is a string
137
+ if (data['description'] && !(typeof data['description'] === 'string' || data['description'] instanceof String)) {
138
+ throw new Error("Expected the field `description` to be a primitive type in the JSON string but got " + data['description']);
139
+ }
140
+ return true;
141
+ }
142
+ }]);
143
+ }();
144
+ PostAdd.RequiredProperties = ["floor_id", "BID", "user_id", "title", "description"];
145
+
146
+ /**
147
+ * Floor ID to which the post needs to be added
148
+ * @member {String} floor_id
149
+ */
150
+ PostAdd.prototype['floor_id'] = undefined;
151
+
152
+ /**
153
+ * Block type (0 or 1)
154
+ * @member {String} BID
155
+ */
156
+ PostAdd.prototype['BID'] = undefined;
157
+
158
+ /**
159
+ * User Identifcation who has added the post
160
+ * @member {String} user_id
161
+ */
162
+ PostAdd.prototype['user_id'] = undefined;
163
+
164
+ /**
165
+ * Title of the post
166
+ * @member {String} title
167
+ */
168
+ PostAdd.prototype['title'] = undefined;
169
+
170
+ /**
171
+ * Description or Details
172
+ * @member {String} description
173
+ */
174
+ PostAdd.prototype['description'] = undefined;
175
+ var _default = exports["default"] = PostAdd;
@@ -17,7 +17,9 @@ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r),
17
17
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
18
18
  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); } /**
19
19
  * Floor Memory
20
- * 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. - Memory and - 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.
20
+ * 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.
21
+ * - Memory and
22
+ * - 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.
21
23
  *
22
24
  * The version of the OpenAPI document: 1.0.0
23
25
  * Contact: contact@ipomo.in
@@ -30,7 +32,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
30
32
  /**
31
33
  * The Query422Response model module.
32
34
  * @module model/Query422Response
33
- * @version 1.0.3
35
+ * @version 1.0.5
34
36
  */
35
37
  var Query422Response = /*#__PURE__*/function () {
36
38
  /**
@@ -16,7 +16,9 @@ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r),
16
16
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
17
17
  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); } /**
18
18
  * Floor Memory
19
- * 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. - Memory and - 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.
19
+ * 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.
20
+ * - Memory and
21
+ * - 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.
20
22
  *
21
23
  * The version of the OpenAPI document: 1.0.0
22
24
  * Contact: contact@ipomo.in
@@ -29,7 +31,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
31
  /**
30
32
  * The Query422ResponseError model module.
31
33
  * @module model/Query422ResponseError
32
- * @version 1.0.3
34
+ * @version 1.0.5
33
35
  */
34
36
  var Query422ResponseError = /*#__PURE__*/function () {
35
37
  /**
@@ -17,7 +17,9 @@ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r),
17
17
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
18
18
  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); } /**
19
19
  * Floor Memory
20
- * 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. - Memory and - 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.
20
+ * 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.
21
+ * - Memory and
22
+ * - 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.
21
23
  *
22
24
  * The version of the OpenAPI document: 1.0.0
23
25
  * Contact: contact@ipomo.in
@@ -30,7 +32,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
30
32
  /**
31
33
  * The QueryRequest model module.
32
34
  * @module model/QueryRequest
33
- * @version 1.0.3
35
+ * @version 1.0.5
34
36
  */
35
37
  var QueryRequest = /*#__PURE__*/function () {
36
38
  /**
@@ -16,7 +16,9 @@ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r),
16
16
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
17
17
  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); } /**
18
18
  * Floor Memory
19
- * 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. - Memory and - 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.
19
+ * 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.
20
+ * - Memory and
21
+ * - 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.
20
22
  *
21
23
  * The version of the OpenAPI document: 1.0.0
22
24
  * Contact: contact@ipomo.in
@@ -29,7 +31,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
31
  /**
30
32
  * The QueryRequestFilters model module.
31
33
  * @module model/QueryRequestFilters
32
- * @version 1.0.3
34
+ * @version 1.0.5
33
35
  */
34
36
  var QueryRequestFilters = /*#__PURE__*/function () {
35
37
  /**
@@ -17,7 +17,9 @@ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r),
17
17
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
18
18
  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); } /**
19
19
  * Floor Memory
20
- * 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. - Memory and - 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.
20
+ * 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.
21
+ * - Memory and
22
+ * - 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.
21
23
  *
22
24
  * The version of the OpenAPI document: 1.0.0
23
25
  * Contact: contact@ipomo.in
@@ -30,7 +32,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
30
32
  /**
31
33
  * The QueryResponse model module.
32
34
  * @module model/QueryResponse
33
- * @version 1.0.3
35
+ * @version 1.0.5
34
36
  */
35
37
  var QueryResponse = /*#__PURE__*/function () {
36
38
  /**
@@ -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. This set of APIs are divided into two parts. - Memory and - 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.
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
@@ -26,7 +28,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
26
28
  /**
27
29
  * The QueryResponseItemsInner model module.
28
30
  * @module model/QueryResponseItemsInner
29
- * @version 1.0.3
31
+ * @version 1.0.5
30
32
  */
31
33
  var QueryResponseItemsInner = /*#__PURE__*/function () {
32
34
  /**
@@ -16,7 +16,9 @@ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r),
16
16
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
17
17
  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); } /**
18
18
  * Floor Memory
19
- * 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. - Memory and - 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.
19
+ * 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.
20
+ * - Memory and
21
+ * - 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.
20
22
  *
21
23
  * The version of the OpenAPI document: 1.0.0
22
24
  * Contact: contact@ipomo.in
@@ -29,7 +31,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
31
  /**
30
32
  * The ResetPassword200Response model module.
31
33
  * @module model/ResetPassword200Response
32
- * @version 1.0.3
34
+ * @version 1.0.5
33
35
  */
34
36
  var ResetPassword200Response = /*#__PURE__*/function () {
35
37
  /**
@@ -16,7 +16,9 @@ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r),
16
16
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
17
17
  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); } /**
18
18
  * Floor Memory
19
- * 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. - Memory and - 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.
19
+ * 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.
20
+ * - Memory and
21
+ * - 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.
20
22
  *
21
23
  * The version of the OpenAPI document: 1.0.0
22
24
  * Contact: contact@ipomo.in
@@ -29,7 +31,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
31
  /**
30
32
  * The ResetPassword400Response model module.
31
33
  * @module model/ResetPassword400Response
32
- * @version 1.0.3
34
+ * @version 1.0.5
33
35
  */
34
36
  var ResetPassword400Response = /*#__PURE__*/function () {
35
37
  /**
@@ -0,0 +1,143 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _ApiClient = _interopRequireDefault(require("../ApiClient"));
8
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
9
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
10
+ function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
11
+ function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
12
+ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
13
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
14
+ function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
15
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
16
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
17
+ 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); } /**
18
+ * Floor Memory
19
+ * 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.
20
+ * - Memory and
21
+ * - 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.
22
+ *
23
+ * The version of the OpenAPI document: 1.0.0
24
+ * Contact: contact@ipomo.in
25
+ *
26
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
27
+ * https://openapi-generator.tech
28
+ * Do not edit the class manually.
29
+ *
30
+ */
31
+ /**
32
+ * The SendSignInValidationCode200Response model module.
33
+ * @module model/SendSignInValidationCode200Response
34
+ * @version 1.0.5
35
+ */
36
+ var SendSignInValidationCode200Response = /*#__PURE__*/function () {
37
+ /**
38
+ * Constructs a new <code>SendSignInValidationCode200Response</code>.
39
+ * @alias module:model/SendSignInValidationCode200Response
40
+ * @param success {String} Operation successful
41
+ * @param emailId {String} Email ID if signed through email
42
+ */
43
+ function SendSignInValidationCode200Response(success, emailId) {
44
+ _classCallCheck(this, SendSignInValidationCode200Response);
45
+ SendSignInValidationCode200Response.initialize(this, success, emailId);
46
+ }
47
+
48
+ /**
49
+ * Initializes the fields of this object.
50
+ * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
51
+ * Only for internal use.
52
+ */
53
+ return _createClass(SendSignInValidationCode200Response, null, [{
54
+ key: "initialize",
55
+ value: function initialize(obj, success, emailId) {
56
+ obj['success'] = success;
57
+ obj['email_id'] = emailId;
58
+ }
59
+
60
+ /**
61
+ * Constructs a <code>SendSignInValidationCode200Response</code> from a plain JavaScript object, optionally creating a new instance.
62
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
63
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
64
+ * @param {module:model/SendSignInValidationCode200Response} obj Optional instance to populate.
65
+ * @return {module:model/SendSignInValidationCode200Response} The populated <code>SendSignInValidationCode200Response</code> instance.
66
+ */
67
+ }, {
68
+ key: "constructFromObject",
69
+ value: function constructFromObject(data, obj) {
70
+ if (data) {
71
+ obj = obj || new SendSignInValidationCode200Response();
72
+ if (data.hasOwnProperty('success')) {
73
+ obj['success'] = _ApiClient["default"].convertToType(data['success'], 'String');
74
+ }
75
+ if (data.hasOwnProperty('mobile_number')) {
76
+ obj['mobile_number'] = _ApiClient["default"].convertToType(data['mobile_number'], 'String');
77
+ }
78
+ if (data.hasOwnProperty('email_id')) {
79
+ obj['email_id'] = _ApiClient["default"].convertToType(data['email_id'], 'String');
80
+ }
81
+ }
82
+ return obj;
83
+ }
84
+
85
+ /**
86
+ * Validates the JSON data with respect to <code>SendSignInValidationCode200Response</code>.
87
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
88
+ * @return {boolean} to indicate whether the JSON data is valid with respect to <code>SendSignInValidationCode200Response</code>.
89
+ */
90
+ }, {
91
+ key: "validateJSON",
92
+ value: function validateJSON(data) {
93
+ // check to make sure all required properties are present in the JSON string
94
+ var _iterator = _createForOfIteratorHelper(SendSignInValidationCode200Response.RequiredProperties),
95
+ _step;
96
+ try {
97
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
98
+ var property = _step.value;
99
+ if (!data.hasOwnProperty(property)) {
100
+ throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
101
+ }
102
+ }
103
+ // ensure the json data is a string
104
+ } catch (err) {
105
+ _iterator.e(err);
106
+ } finally {
107
+ _iterator.f();
108
+ }
109
+ if (data['success'] && !(typeof data['success'] === 'string' || data['success'] instanceof String)) {
110
+ throw new Error("Expected the field `success` to be a primitive type in the JSON string but got " + data['success']);
111
+ }
112
+ // ensure the json data is a string
113
+ if (data['mobile_number'] && !(typeof data['mobile_number'] === 'string' || data['mobile_number'] instanceof String)) {
114
+ throw new Error("Expected the field `mobile_number` to be a primitive type in the JSON string but got " + data['mobile_number']);
115
+ }
116
+ // ensure the json data is a string
117
+ if (data['email_id'] && !(typeof data['email_id'] === 'string' || data['email_id'] instanceof String)) {
118
+ throw new Error("Expected the field `email_id` to be a primitive type in the JSON string but got " + data['email_id']);
119
+ }
120
+ return true;
121
+ }
122
+ }]);
123
+ }();
124
+ SendSignInValidationCode200Response.RequiredProperties = ["success", "email_id"];
125
+
126
+ /**
127
+ * Operation successful
128
+ * @member {String} success
129
+ */
130
+ SendSignInValidationCode200Response.prototype['success'] = undefined;
131
+
132
+ /**
133
+ * Mobile number if signed in through mobile number
134
+ * @member {String} mobile_number
135
+ */
136
+ SendSignInValidationCode200Response.prototype['mobile_number'] = undefined;
137
+
138
+ /**
139
+ * Email ID if signed through email
140
+ * @member {String} email_id
141
+ */
142
+ SendSignInValidationCode200Response.prototype['email_id'] = undefined;
143
+ var _default = exports["default"] = SendSignInValidationCode200Response;
@@ -16,7 +16,9 @@ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r),
16
16
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
17
17
  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); } /**
18
18
  * Floor Memory
19
- * 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. - Memory and - 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.
19
+ * 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.
20
+ * - Memory and
21
+ * - 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.
20
22
  *
21
23
  * The version of the OpenAPI document: 1.0.0
22
24
  * Contact: contact@ipomo.in
@@ -29,7 +31,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
31
  /**
30
32
  * The SendValidationCode200Response model module.
31
33
  * @module model/SendValidationCode200Response
32
- * @version 1.0.3
34
+ * @version 1.0.5
33
35
  */
34
36
  var SendValidationCode200Response = /*#__PURE__*/function () {
35
37
  /**