@xfloor/floor-memory-sdk-ts 1.0.18 → 1.0.19

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 CHANGED
@@ -1,5 +1,5 @@
1
- # @xfloor/floor-memory-sdk-ts@1.0.18
2
- A TypeScript SDK client for the floortv.in API.
1
+ # @xfloor/floor-memory-sdk-ts@1.0.19
2
+ A TypeScript SDK client for the appfloor.in API.
3
3
 
4
4
  ### Usage
5
5
 
@@ -51,7 +51,7 @@ example().catch(console.error);
51
51
 
52
52
  ### API Endpoints
53
53
 
54
- All URIs are relative to *https://floortv.in*
54
+ All URIs are relative to *https://appfloor.in*
55
55
 
56
56
  | Class | Method | HTTP request |
57
57
 
@@ -170,6 +170,7 @@ Query (Primary API)
170
170
  - [QueryRequestFilters](docs/QueryRequestFilters.md)
171
171
  - [QueryResponse](docs/QueryResponse.md)
172
172
  - [QueryResponseItemsInner](docs/QueryResponseItemsInner.md)
173
+ - [Remaining](docs/Remaining.md)
173
174
  - [ResetPassword200Response](docs/ResetPassword200Response.md)
174
175
  - [ResetPassword400Response](docs/ResetPassword400Response.md)
175
176
  - [SendValidationCode200Response](docs/SendValidationCode200Response.md)
@@ -201,7 +202,7 @@ and is automatically generated by the
201
202
  [OpenAPI Generator](https://openapi-generator.tech) project:
202
203
 
203
204
  - API version: `1.0.0`
204
- - Package version: `1.0.18`
205
+ - Package version: `1.0.19`
205
206
  - Generator version: `7.18.0`
206
207
  - Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
207
208
 
@@ -89,22 +89,22 @@ export declare class DefaultApi extends runtime.BaseAPI {
89
89
  * Updates the email ID associated with an existing user account after validating a one-time activation code sent to the **new email address**. This operation can only be performed by a **logged-in user**. When a user initiates an email change, an activation code is sent to the newly provided email ID. The email update takes effect only after the activation code is successfully validated. If the activation code validation fails, the email ID remains unchanged. --- ### **Authentication** This endpoint requires **Bearer Token authentication**. ``` Authorization: Bearer <access_token> ``` --- ### **Request Body** ```json { \"user_id\": \"string\", \"new_email_id\": \"string\", \"activation_code\": \"string\", \"app_id\":\"string\" } ``` **Field Description** * `user_id` – Unique identifier of the logged-in user * `new_email_id` – New email address to be associated with the account * `activation_code` – One-time activation code sent to the new email ID for verification --- ### **Flow Summary** 1. User is authenticated and logged in 2. User requests to change email ID 3. System sends an activation code to the **new email address** 4. User submits the activation code via this API 5. On successful validation, the email ID is updated --- ### **Successful Response** On successful validation: * The activation code is verified * The user’s email ID is updated immediately * A `success` string is returned confirming the email change --- ### **Error Response** The API returns an error response if: * The activation code is invalid or expired * The activation code does not match the user or email * The new email ID is already in use * Authorization fails or the bearer token is missing or invalid In all error cases, the existing email ID remains unchanged. --- ### **Behavior Notes** * Requires a prior call to `/auth-service/send/validation/code` with the proper mode. --- ### **Security Notes (Recommended)** * Activation codes are single-use and time-bound * Email changes require prior authentication * Rate limiting may be applied to prevent abuse --- ### **One-Line Summary** > Changes a user’s email ID after validating an activation code sent to the new email address.
90
90
  * Change email ID
91
91
  */
92
- changeEmailRaw(requestParameters: ChangeEmailRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<object>>;
92
+ changeEmailRaw(requestParameters: ChangeEmailRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SignInWithEmail200Response>>;
93
93
  /**
94
94
  * Updates the email ID associated with an existing user account after validating a one-time activation code sent to the **new email address**. This operation can only be performed by a **logged-in user**. When a user initiates an email change, an activation code is sent to the newly provided email ID. The email update takes effect only after the activation code is successfully validated. If the activation code validation fails, the email ID remains unchanged. --- ### **Authentication** This endpoint requires **Bearer Token authentication**. ``` Authorization: Bearer <access_token> ``` --- ### **Request Body** ```json { \"user_id\": \"string\", \"new_email_id\": \"string\", \"activation_code\": \"string\", \"app_id\":\"string\" } ``` **Field Description** * `user_id` – Unique identifier of the logged-in user * `new_email_id` – New email address to be associated with the account * `activation_code` – One-time activation code sent to the new email ID for verification --- ### **Flow Summary** 1. User is authenticated and logged in 2. User requests to change email ID 3. System sends an activation code to the **new email address** 4. User submits the activation code via this API 5. On successful validation, the email ID is updated --- ### **Successful Response** On successful validation: * The activation code is verified * The user’s email ID is updated immediately * A `success` string is returned confirming the email change --- ### **Error Response** The API returns an error response if: * The activation code is invalid or expired * The activation code does not match the user or email * The new email ID is already in use * Authorization fails or the bearer token is missing or invalid In all error cases, the existing email ID remains unchanged. --- ### **Behavior Notes** * Requires a prior call to `/auth-service/send/validation/code` with the proper mode. --- ### **Security Notes (Recommended)** * Activation codes are single-use and time-bound * Email changes require prior authentication * Rate limiting may be applied to prevent abuse --- ### **One-Line Summary** > Changes a user’s email ID after validating an activation code sent to the new email address.
95
95
  * Change email ID
96
96
  */
97
- changeEmail(requestParameters: ChangeEmailRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<object>;
97
+ changeEmail(requestParameters: ChangeEmailRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SignInWithEmail200Response>;
98
98
  /**
99
99
  * Updates the mobile number associated with an existing user account after validating a one-time activation code sent to the **new mobile number**. This operation can only be performed by a **logged-in user**. When a user initiates a mobile number change, an activation code is sent to the newly provided mobile number. The mobile number update takes effect only after the activation code is successfully validated. If the activation code validation fails, the mobile number remains unchanged. --- ### **Authentication** This endpoint requires **Bearer Token authentication**. ``` Authorization: Bearer <access_token> ``` --- ### **Request Body** ```json { \"user_id\": \"string\", \"new_mobile_number\": \"string\", \"activation_code\": \"string\" } ``` **Field Description** * `user_id` – Unique identifier of the logged-in user * `new_mobile_number` – New mobile number to be associated with the account * `activation_code` – One-time activation code sent to the new mobile number for verification --- ### **Flow Summary** 1. User is authenticated and logged in 2. User requests to change mobile number 3. System sends an activation code to the **new mobile number** 4. User submits the activation code via this API 5. On successful validation, the mobile number is updated --- ### **Successful Response** On successful validation: * The activation code is verified * The user’s mobile number is updated immediately * A `success` string is returned confirming the mobile number change --- ### **Error Response** The API returns an error response if: * The activation code is invalid or expired * The activation code does not match the user or mobile number * The new mobile number is already in use * Authorization fails or the bearer token is missing or invalid In all error cases, the existing mobile number remains unchanged. --- ### **Behavior Notes** * Requires a prior call to `/auth-service/send/validation/code` with the proper mode. --- ### **Security Notes (Recommended)** * Activation codes are single-use and time-bound * Mobile number changes require prior authentication * Rate limiting may be applied to prevent abuse --- ### **One-Line Summary** > Changes a user’s mobile number after validating an activation code sent to the new mobile number.
100
100
  * Change Mobile number
101
101
  */
102
- changeMobileNumberRaw(requestParameters: ChangeMobileNumberRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<object>>;
102
+ changeMobileNumberRaw(requestParameters: ChangeMobileNumberRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SignInWithEmail200Response>>;
103
103
  /**
104
104
  * Updates the mobile number associated with an existing user account after validating a one-time activation code sent to the **new mobile number**. This operation can only be performed by a **logged-in user**. When a user initiates a mobile number change, an activation code is sent to the newly provided mobile number. The mobile number update takes effect only after the activation code is successfully validated. If the activation code validation fails, the mobile number remains unchanged. --- ### **Authentication** This endpoint requires **Bearer Token authentication**. ``` Authorization: Bearer <access_token> ``` --- ### **Request Body** ```json { \"user_id\": \"string\", \"new_mobile_number\": \"string\", \"activation_code\": \"string\" } ``` **Field Description** * `user_id` – Unique identifier of the logged-in user * `new_mobile_number` – New mobile number to be associated with the account * `activation_code` – One-time activation code sent to the new mobile number for verification --- ### **Flow Summary** 1. User is authenticated and logged in 2. User requests to change mobile number 3. System sends an activation code to the **new mobile number** 4. User submits the activation code via this API 5. On successful validation, the mobile number is updated --- ### **Successful Response** On successful validation: * The activation code is verified * The user’s mobile number is updated immediately * A `success` string is returned confirming the mobile number change --- ### **Error Response** The API returns an error response if: * The activation code is invalid or expired * The activation code does not match the user or mobile number * The new mobile number is already in use * Authorization fails or the bearer token is missing or invalid In all error cases, the existing mobile number remains unchanged. --- ### **Behavior Notes** * Requires a prior call to `/auth-service/send/validation/code` with the proper mode. --- ### **Security Notes (Recommended)** * Activation codes are single-use and time-bound * Mobile number changes require prior authentication * Rate limiting may be applied to prevent abuse --- ### **One-Line Summary** > Changes a user’s mobile number after validating an activation code sent to the new mobile number.
105
105
  * Change Mobile number
106
106
  */
107
- changeMobileNumber(requestParameters: ChangeMobileNumberRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<object>;
107
+ changeMobileNumber(requestParameters: ChangeMobileNumberRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SignInWithEmail200Response>;
108
108
  /**
109
109
  * ## 1) `POST /password/change` — Change Password (Logged-in User) Changes the password of an **authenticated user** who is currently logged in. This endpoint is used when a user is already signed in and wants to update their password as a security or preference action. The system validates a **one-time password-change verification code** (`activation_code`) issued specifically for the change-password flow. If the code is valid and not expired, the user’s password is updated to `new_password` and takes effect immediately. If verification fails, the password remains unchanged and an error response is returned. ### Authentication ✅ **Required**: Bearer token for the logged-in session ``` Authorization: Bearer <access_token> ``` ### Request Body (Form Data) * `user_id` (optional if derived from token) * `activation_code` (required) * `new_password` (required) ### Behavior Notes * Typically requires a prior call to **send a verification code** for password change (mode = password change). * `user_id` can be taken from the access token; include it only if your system requires it explicitly. ### One-Line Summary > Changes the password for a logged-in user after validating a one-time password-change code.
110
110
  * Change Password
@@ -132,7 +132,7 @@ var DefaultApi = /** @class */ (function (_super) {
132
132
  }, initOverrides)];
133
133
  case 3:
134
134
  response = _a.sent();
135
- return [2 /*return*/, new runtime.JSONApiResponse(response)];
135
+ return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.SignInWithEmail200ResponseFromJSON)(jsonValue); })];
136
136
  }
137
137
  });
138
138
  });
@@ -210,7 +210,7 @@ var DefaultApi = /** @class */ (function (_super) {
210
210
  }, initOverrides)];
211
211
  case 3:
212
212
  response = _a.sent();
213
- return [2 /*return*/, new runtime.JSONApiResponse(response)];
213
+ return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.SignInWithEmail200ResponseFromJSON)(jsonValue); })];
214
214
  }
215
215
  });
216
216
  });
@@ -0,0 +1,40 @@
1
+ /**
2
+ * Floor Memory
3
+ * 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.
4
+ * - Memory and
5
+ * - 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.
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ * Contact: contact@ipomo.in
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface Remaining
18
+ */
19
+ export interface Remaining {
20
+ /**
21
+ *
22
+ * @type {string}
23
+ * @memberof Remaining
24
+ */
25
+ permitted?: string;
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof Remaining
30
+ */
31
+ remaining?: string;
32
+ }
33
+ /**
34
+ * Check if a given object implements the Remaining interface.
35
+ */
36
+ export declare function instanceOfRemaining(value: object): value is Remaining;
37
+ export declare function RemainingFromJSON(json: any): Remaining;
38
+ export declare function RemainingFromJSONTyped(json: any, ignoreDiscriminator: boolean): Remaining;
39
+ export declare function RemainingToJSON(json: any): Remaining;
40
+ export declare function RemainingToJSONTyped(value?: Remaining | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,53 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Floor Memory
6
+ * 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.
7
+ * - Memory and
8
+ * - 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.
9
+ *
10
+ * The version of the OpenAPI document: 1.0.0
11
+ * Contact: contact@ipomo.in
12
+ *
13
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
14
+ * https://openapi-generator.tech
15
+ * Do not edit the class manually.
16
+ */
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.instanceOfRemaining = instanceOfRemaining;
19
+ exports.RemainingFromJSON = RemainingFromJSON;
20
+ exports.RemainingFromJSONTyped = RemainingFromJSONTyped;
21
+ exports.RemainingToJSON = RemainingToJSON;
22
+ exports.RemainingToJSONTyped = RemainingToJSONTyped;
23
+ /**
24
+ * Check if a given object implements the Remaining interface.
25
+ */
26
+ function instanceOfRemaining(value) {
27
+ return true;
28
+ }
29
+ function RemainingFromJSON(json) {
30
+ return RemainingFromJSONTyped(json, false);
31
+ }
32
+ function RemainingFromJSONTyped(json, ignoreDiscriminator) {
33
+ if (json == null) {
34
+ return json;
35
+ }
36
+ return {
37
+ 'permitted': json['permitted'] == null ? undefined : json['permitted'],
38
+ 'remaining': json['remaining'] == null ? undefined : json['remaining'],
39
+ };
40
+ }
41
+ function RemainingToJSON(json) {
42
+ return RemainingToJSONTyped(json, false);
43
+ }
44
+ function RemainingToJSONTyped(value, ignoreDiscriminator) {
45
+ if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
46
+ if (value == null) {
47
+ return value;
48
+ }
49
+ return {
50
+ 'permitted': value['permitted'],
51
+ 'remaining': value['remaining'],
52
+ };
53
+ }
@@ -25,6 +25,18 @@ export interface SignInWithEmail200ResponsePodInfo {
25
25
  * @memberof SignInWithEmail200ResponsePodInfo
26
26
  */
27
27
  floorId: string;
28
+ /**
29
+ *
30
+ * @type {string}
31
+ * @memberof SignInWithEmail200ResponsePodInfo
32
+ */
33
+ isOwner?: string;
34
+ /**
35
+ *
36
+ * @type {string}
37
+ * @memberof SignInWithEmail200ResponsePodInfo
38
+ */
39
+ appId?: string;
28
40
  /**
29
41
  *
30
42
  * @type {string}
@@ -42,7 +54,7 @@ export interface SignInWithEmail200ResponsePodInfo {
42
54
  * @type {string}
43
55
  * @memberof SignInWithEmail200ResponsePodInfo
44
56
  */
45
- fid: string;
57
+ floorUid: string;
46
58
  /**
47
59
  *
48
60
  * @type {Array<BlockDetails>}
@@ -30,7 +30,7 @@ function instanceOfSignInWithEmail200ResponsePodInfo(value) {
30
30
  return false;
31
31
  if (!('title' in value) || value['title'] === undefined)
32
32
  return false;
33
- if (!('fid' in value) || value['fid'] === undefined)
33
+ if (!('floorUid' in value) || value['floorUid'] === undefined)
34
34
  return false;
35
35
  if (!('blocks' in value) || value['blocks'] === undefined)
36
36
  return false;
@@ -45,9 +45,11 @@ function SignInWithEmail200ResponsePodInfoFromJSONTyped(json, ignoreDiscriminato
45
45
  }
46
46
  return {
47
47
  'floorId': json['floor_id'],
48
+ 'isOwner': json['is_owner'] == null ? undefined : json['is_owner'],
49
+ 'appId': json['app_id'] == null ? undefined : json['app_id'],
48
50
  'title': json['title'],
49
51
  'details': json['details'] == null ? undefined : json['details'],
50
- 'fid': json['fid'],
52
+ 'floorUid': json['floor_uid'],
51
53
  'blocks': (json['blocks'].map(BlockDetails_1.BlockDetailsFromJSON)),
52
54
  'avatar': json['avatar'] == null ? undefined : (0, Media_1.MediaFromJSON)(json['avatar']),
53
55
  };
@@ -62,9 +64,11 @@ function SignInWithEmail200ResponsePodInfoToJSONTyped(value, ignoreDiscriminator
62
64
  }
63
65
  return {
64
66
  'floor_id': value['floorId'],
67
+ 'is_owner': value['isOwner'],
68
+ 'app_id': value['appId'],
65
69
  'title': value['title'],
66
70
  'details': value['details'],
67
- 'fid': value['fid'],
71
+ 'floor_uid': value['floorUid'],
68
72
  'blocks': (value['blocks'].map(BlockDetails_1.BlockDetailsToJSON)),
69
73
  'avatar': (0, Media_1.MediaToJSON)(value['avatar']),
70
74
  };
@@ -11,8 +11,8 @@
11
11
  * https://openapi-generator.tech
12
12
  * Do not edit the class manually.
13
13
  */
14
- import type { BlockDetails } from './BlockDetails';
15
14
  import type { SignInWithEmail200ResponseProfileAvatar } from './SignInWithEmail200ResponseProfileAvatar';
15
+ import type { Remaining } from './Remaining';
16
16
  /**
17
17
  * User profile details
18
18
  * @export
@@ -26,17 +26,23 @@ export interface SignInWithEmail200ResponseProfile {
26
26
  */
27
27
  floorId: string;
28
28
  /**
29
- * Unique ID of floor
30
- * @type {string}
29
+ *
30
+ * @type {Remaining}
31
31
  * @memberof SignInWithEmail200ResponseProfile
32
32
  */
33
- fid: string;
33
+ floors?: Remaining;
34
34
  /**
35
- * List of Blocks
36
- * @type {Array<BlockDetails>}
35
+ *
36
+ * @type {Remaining}
37
+ * @memberof SignInWithEmail200ResponseProfile
38
+ */
39
+ blocks?: Remaining;
40
+ /**
41
+ * Unique ID of floor
42
+ * @type {string}
37
43
  * @memberof SignInWithEmail200ResponseProfile
38
44
  */
39
- blocks?: Array<BlockDetails>;
45
+ fID: string;
40
46
  /**
41
47
  * User Name
42
48
  * @type {string}
@@ -20,15 +20,15 @@ exports.SignInWithEmail200ResponseProfileFromJSON = SignInWithEmail200ResponsePr
20
20
  exports.SignInWithEmail200ResponseProfileFromJSONTyped = SignInWithEmail200ResponseProfileFromJSONTyped;
21
21
  exports.SignInWithEmail200ResponseProfileToJSON = SignInWithEmail200ResponseProfileToJSON;
22
22
  exports.SignInWithEmail200ResponseProfileToJSONTyped = SignInWithEmail200ResponseProfileToJSONTyped;
23
- var BlockDetails_1 = require("./BlockDetails");
24
23
  var SignInWithEmail200ResponseProfileAvatar_1 = require("./SignInWithEmail200ResponseProfileAvatar");
24
+ var Remaining_1 = require("./Remaining");
25
25
  /**
26
26
  * Check if a given object implements the SignInWithEmail200ResponseProfile interface.
27
27
  */
28
28
  function instanceOfSignInWithEmail200ResponseProfile(value) {
29
29
  if (!('floorId' in value) || value['floorId'] === undefined)
30
30
  return false;
31
- if (!('fid' in value) || value['fid'] === undefined)
31
+ if (!('fID' in value) || value['fID'] === undefined)
32
32
  return false;
33
33
  if (!('userId' in value) || value['userId'] === undefined)
34
34
  return false;
@@ -43,8 +43,9 @@ function SignInWithEmail200ResponseProfileFromJSONTyped(json, ignoreDiscriminato
43
43
  }
44
44
  return {
45
45
  'floorId': json['floor_id'],
46
- 'fid': json['fid'],
47
- 'blocks': json['blocks'] == null ? undefined : (json['blocks'].map(BlockDetails_1.BlockDetailsFromJSON)),
46
+ 'floors': json['floors'] == null ? undefined : (0, Remaining_1.RemainingFromJSON)(json['floors']),
47
+ 'blocks': json['blocks'] == null ? undefined : (0, Remaining_1.RemainingFromJSON)(json['blocks']),
48
+ 'fID': json['FID'],
48
49
  'name': json['name'] == null ? undefined : json['name'],
49
50
  'email': json['email'] == null ? undefined : json['email'],
50
51
  'mobileNumber': json['mobile_number'] == null ? undefined : json['mobile_number'],
@@ -62,8 +63,9 @@ function SignInWithEmail200ResponseProfileToJSONTyped(value, ignoreDiscriminator
62
63
  }
63
64
  return {
64
65
  'floor_id': value['floorId'],
65
- 'fid': value['fid'],
66
- 'blocks': value['blocks'] == null ? undefined : (value['blocks'].map(BlockDetails_1.BlockDetailsToJSON)),
66
+ 'floors': (0, Remaining_1.RemainingToJSON)(value['floors']),
67
+ 'blocks': (0, Remaining_1.RemainingToJSON)(value['blocks']),
68
+ 'FID': value['fID'],
67
69
  'name': value['name'],
68
70
  'email': value['email'],
69
71
  'mobile_number': value['mobileNumber'],
@@ -20,6 +20,7 @@ export * from './QueryRequest';
20
20
  export * from './QueryRequestFilters';
21
21
  export * from './QueryResponse';
22
22
  export * from './QueryResponseItemsInner';
23
+ export * from './Remaining';
23
24
  export * from './ResetPassword200Response';
24
25
  export * from './ResetPassword400Response';
25
26
  export * from './SendValidationCode200Response';
@@ -38,6 +38,7 @@ __exportStar(require("./QueryRequest"), exports);
38
38
  __exportStar(require("./QueryRequestFilters"), exports);
39
39
  __exportStar(require("./QueryResponse"), exports);
40
40
  __exportStar(require("./QueryResponseItemsInner"), exports);
41
+ __exportStar(require("./Remaining"), exports);
41
42
  __exportStar(require("./ResetPassword200Response"), exports);
42
43
  __exportStar(require("./ResetPassword400Response"), exports);
43
44
  __exportStar(require("./SendValidationCode200Response"), exports);
package/dist/runtime.js CHANGED
@@ -82,7 +82,7 @@ exports.querystring = querystring;
82
82
  exports.exists = exists;
83
83
  exports.mapValues = mapValues;
84
84
  exports.canConsumeForm = canConsumeForm;
85
- exports.BASE_PATH = "https://floortv.in".replace(/\/+$/, "");
85
+ exports.BASE_PATH = "https://appfloor.in".replace(/\/+$/, "");
86
86
  var Configuration = /** @class */ (function () {
87
87
  function Configuration(configuration) {
88
88
  if (configuration === void 0) { configuration = {}; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xfloor/floor-memory-sdk-ts",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "description": "TypeScript SDK for xFloor Memory APIs (Memory + Registration).",
5
5
  "author": "xFloor",
6
6
  "repository": {