@riocrypto/common 1.0.1165 → 1.0.1167

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.
@@ -37,7 +37,7 @@ import { InternalSwap } from "../types/internal-swap";
37
37
  import { BridgeExternalAccountQuery } from "../types/bridge-external-account-query";
38
38
  export declare class RioAdminClient {
39
39
  private axios;
40
- constructor(axios: AxiosStatic | AxiosInstance, isLocal: boolean);
40
+ constructor(axios: AxiosStatic | AxiosInstance);
41
41
  getOrders(page: number, limit?: number, query?: OrderQuery): Promise<Order[]>;
42
42
  createQuote(input: QuoteInput): Promise<{
43
43
  quote: Quote;
@@ -11,9 +11,10 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.RioAdminClient = void 0;
13
13
  class RioAdminClient {
14
- constructor(axios, isLocal) {
14
+ constructor(axios) {
15
15
  this.axios = axios;
16
- if (isLocal) {
16
+ console.log("process.env.NEXT_PUBLIC_RUNNING_LOCAL", process.env.NEXT_PUBLIC_RUNNING_LOCAL);
17
+ if (process.env.NEXT_PUBLIC_RUNNING_LOCAL === "true") {
17
18
  this.axios.defaults.baseURL = "https://dev.riotransfer.co";
18
19
  }
19
20
  axios.interceptors.request.use((config) => {
@@ -33,7 +33,7 @@ import { BridgeExternalAccountQuery } from "../types/bridge-external-account-que
33
33
  import { SecurityQuestion } from "../types/security-question";
34
34
  export declare class RioClient {
35
35
  private axios;
36
- constructor(axios: AxiosStatic | AxiosInstance, isLocal?: boolean);
36
+ constructor(axios: AxiosStatic | AxiosInstance);
37
37
  getOrders(page: number, limit?: number, query?: OrderQuery, includeOwnOrders?: boolean): Promise<Order[]>;
38
38
  getChainedOrders(page: number, limit?: number, query?: ChainedOrderQuery): Promise<ChainedOrder[]>;
39
39
  createQuote(input: QuoteInput): Promise<Quote>;
@@ -11,9 +11,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.RioClient = void 0;
13
13
  class RioClient {
14
- constructor(axios, isLocal) {
14
+ constructor(axios) {
15
15
  this.axios = axios;
16
- if (isLocal) {
16
+ if (process.env.NEXT_PUBLIC_RUNNING_LOCAL === "true") {
17
17
  this.axios.defaults.baseURL = "https://dev.riotransfer.co";
18
18
  }
19
19
  axios.interceptors.request.use((config) => {
@@ -205,6 +205,8 @@ class RioClient {
205
205
  yield this.axios.post("/api/auth/verify-code", {
206
206
  phoneNumber,
207
207
  code,
208
+ }, {
209
+ withCredentials: true,
208
210
  });
209
211
  });
210
212
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1165",
3
+ "version": "1.0.1167",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",