@or-sdk/base
Advanced tools
Comparing version 0.22.0 to 0.22.1-fixorderoptionstype.0
@@ -29,5 +29,9 @@ import { Method } from 'axios'; | ||
}; | ||
export declare enum OrderDirection { | ||
ASC = "asc", | ||
DESC = "desc" | ||
} | ||
export declare type OrderOptions = { | ||
orderProperty: number; | ||
orderDirection: number; | ||
orderProperty: string; | ||
orderDirection: OrderDirection; | ||
}; | ||
@@ -34,0 +38,0 @@ export interface List<T> { |
{ | ||
"version": "0.22.0", | ||
"version": "0.22.1-fixorderoptionstype.0", | ||
"name": "@or-sdk/base", | ||
@@ -31,3 +31,3 @@ "main": "dist/cjs/index.js", | ||
}, | ||
"gitHead": "8c17a9af0ab8bdd069869604145dfd8b91c049e4" | ||
"gitHead": "50cdb73a3531810c73bb2f67f5bbb27dd55e4fc1" | ||
} |
@@ -67,5 +67,10 @@ import { Method } from 'axios'; | ||
export declare enum OrderDirection { | ||
ASC = 'asc', | ||
DESC = 'desc', | ||
} | ||
export type OrderOptions = { | ||
orderProperty: number; | ||
orderDirection: number; | ||
orderProperty: string; | ||
orderDirection: OrderDirection; | ||
}; | ||
@@ -72,0 +77,0 @@ |
56607
1046