@hapl/api-queries 0.2.12 → 0.2.13

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.
@@ -33,6 +33,7 @@ export declare const ServiceRequestDictionary: {
33
33
  Type: {
34
34
  buy: string;
35
35
  sell: string;
36
+ asia_sell: string;
36
37
  };
37
38
  InvestType: {
38
39
  buyout: string;
@@ -36,7 +36,8 @@ export declare enum ServiceRequestStatus {
36
36
  }
37
37
  export declare enum ServiceRequestType {
38
38
  Buy = "buy",
39
- Sell = "sell"
39
+ Sell = "sell",
40
+ AsiaSell = "asia_sell"
40
41
  }
41
42
  export declare enum ServiceRequestInvestType {
42
43
  Buyout = "buyout",
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.2.12",
2
+ "version": "0.2.13",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -42,6 +42,7 @@ export const ServiceRequestDictionary = {
42
42
  Type: {
43
43
  [ServiceRequestType.Buy]: 'Покупка',
44
44
  [ServiceRequestType.Sell]: 'Продажа',
45
+ [ServiceRequestType.AsiaSell]: 'Сбор заявок по Азии',
45
46
  },
46
47
  InvestType: {
47
48
  [ServiceRequestInvestType.Buyout]: 'Инвестпроект 1 этапа',
@@ -41,6 +41,7 @@ export enum ServiceRequestStatus {
41
41
  export enum ServiceRequestType {
42
42
  Buy = 'buy',
43
43
  Sell = 'sell',
44
+ AsiaSell = 'asia_sell',
44
45
  }
45
46
 
46
47
  export enum ServiceRequestInvestType {