@bprotsyk/aso-core 1.2.209 → 1.2.210

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.
@@ -47,12 +47,10 @@ export interface IDomain extends Document {
47
47
  }
48
48
  export interface IDomainsBuyRequestResponse {
49
49
  requestId: string;
50
- info: [
51
- {
52
- name: string;
53
- price: string;
54
- }
55
- ];
50
+ info: {
51
+ name: string;
52
+ price: string;
53
+ }[];
56
54
  }
57
55
  export declare const CONST_CLOUFLARE_STATUS_READY = "active";
58
56
  export declare enum DomainStatus {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.209",
3
+ "version": "1.2.210",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -26,10 +26,10 @@ export interface IDomain extends Document {
26
26
 
27
27
  export interface IDomainsBuyRequestResponse {
28
28
  requestId: string
29
- info: [{
29
+ info: {
30
30
  name: string,
31
31
  price: string
32
- }]
32
+ }[]
33
33
  }
34
34
 
35
35
  export const CONST_CLOUFLARE_STATUS_READY = "active"