@hapl/api-queries 0.2.100 → 0.2.101

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.
@@ -4,5 +4,6 @@ export declare const CrossSaleDictionary: {
4
4
  owner: string;
5
5
  agent: string;
6
6
  agency: string;
7
+ developer: string;
7
8
  };
8
9
  };
@@ -1,7 +1,8 @@
1
1
  export declare enum CrossSaleContractorType {
2
- Owner = "owner",
2
+ Agency = "agency",
3
3
  Agent = "agent",
4
- Agency = "agency"
4
+ Developer = "developer",
5
+ Owner = "owner"
5
6
  }
6
7
  export declare type CrossSale = {
7
8
  createdAt: string;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.2.100",
2
+ "version": "0.2.101",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -5,5 +5,6 @@ export const CrossSaleDictionary = {
5
5
  [CrossSaleContractorType.Owner]: 'Собственник',
6
6
  [CrossSaleContractorType.Agent]: 'Частный агент',
7
7
  [CrossSaleContractorType.Agency]: 'Агентство',
8
+ [CrossSaleContractorType.Developer]: 'Застройщик',
8
9
  },
9
10
  };
@@ -1,7 +1,8 @@
1
1
  export enum CrossSaleContractorType {
2
- Owner = 'owner',
3
- Agent = 'agent',
4
2
  Agency = 'agency',
3
+ Agent = 'agent',
4
+ Developer = 'developer',
5
+ Owner = 'owner',
5
6
  }
6
7
 
7
8
  export type CrossSale = {