@explo-tech/fido-api 5.16.0-dan-ordering-api.1 → 5.17.2-dan-fix-build.1
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.
- package/index.ts +4 -0
- package/models/Computation.ts +5 -0
- package/models/DefaultSorted.ts +5 -0
- package/models/Ordering.ts +10 -0
- package/models/Sorted.ts +10 -0
- package/models/Unsorted.ts +5 -0
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -76,6 +76,7 @@ export type { DecimalColumnExportFormat } from './models/DecimalColumnExportForm
|
|
|
76
76
|
export type { DecimalColumnVisualizationFormat } from './models/DecimalColumnVisualizationFormat';
|
|
77
77
|
export type { DecimalIntervalGrouping } from './models/DecimalIntervalGrouping';
|
|
78
78
|
export type { DecimalPropertyValue } from './models/DecimalPropertyValue';
|
|
79
|
+
export type { DefaultSorted } from './models/DefaultSorted';
|
|
79
80
|
export type { DeleteResourceChange } from './models/DeleteResourceChange';
|
|
80
81
|
export type { DeleteResourceDiff } from './models/DeleteResourceDiff';
|
|
81
82
|
export type { DiffBranchResponse } from './models/DiffBranchResponse';
|
|
@@ -152,6 +153,7 @@ export type { Null1 } from './models/Null1';
|
|
|
152
153
|
export type { NumberVisualizationOptions } from './models/NumberVisualizationOptions';
|
|
153
154
|
export type { Or } from './models/Or';
|
|
154
155
|
export type { Or1 } from './models/Or1';
|
|
156
|
+
export type { Ordering } from './models/Ordering';
|
|
155
157
|
export type { PagingConfiguration } from './models/PagingConfiguration';
|
|
156
158
|
export type { Parameter } from './models/Parameter';
|
|
157
159
|
export type { ParseQueryRequest } from './models/ParseQueryRequest';
|
|
@@ -186,6 +188,7 @@ export type { SnowflakeKeyPairAuthentication } from './models/SnowflakeKeyPairAu
|
|
|
186
188
|
export type { SnowflakePasswordAuthentication } from './models/SnowflakePasswordAuthentication';
|
|
187
189
|
export type { Sort } from './models/Sort';
|
|
188
190
|
export { SortDirection } from './models/SortDirection';
|
|
191
|
+
export type { Sorted } from './models/Sorted';
|
|
189
192
|
export type { SourceProperty } from './models/SourceProperty';
|
|
190
193
|
export type { SSHAuthentication } from './models/SSHAuthentication';
|
|
191
194
|
export type { SSHTunnel } from './models/SSHTunnel';
|
|
@@ -213,6 +216,7 @@ export type { TestConnectionResponse } from './models/TestConnectionResponse';
|
|
|
213
216
|
export type { TtlEviction } from './models/TtlEviction';
|
|
214
217
|
export type { Tunnel } from './models/Tunnel';
|
|
215
218
|
export { UnitOfMeasurement } from './models/UnitOfMeasurement';
|
|
219
|
+
export type { Unsorted } from './models/Unsorted';
|
|
216
220
|
export type { UpdateResourceChange } from './models/UpdateResourceChange';
|
|
217
221
|
export type { UpdateResourceDiff } from './models/UpdateResourceDiff';
|
|
218
222
|
export type { UUID } from './models/UUID';
|
package/models/Computation.ts
CHANGED
|
@@ -6,6 +6,7 @@ import type { Filter } from './Filter';
|
|
|
6
6
|
import type { Grouping } from './Grouping';
|
|
7
7
|
import type { GroupingSet } from './GroupingSet';
|
|
8
8
|
import type { Having } from './Having';
|
|
9
|
+
import type { Ordering } from './Ordering';
|
|
9
10
|
import type { Property } from './Property';
|
|
10
11
|
import type { Sort } from './Sort';
|
|
11
12
|
|
|
@@ -16,6 +17,10 @@ export type Computation = {
|
|
|
16
17
|
* @deprecated
|
|
17
18
|
*/
|
|
18
19
|
groupings?: Array<Grouping>;
|
|
20
|
+
ordering: Ordering;
|
|
21
|
+
/**
|
|
22
|
+
* @deprecated
|
|
23
|
+
*/
|
|
19
24
|
sorts: Array<Sort>;
|
|
20
25
|
having: Having | null;
|
|
21
26
|
/**
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { DefaultSorted } from './DefaultSorted';
|
|
6
|
+
import type { Sorted } from './Sorted';
|
|
7
|
+
import type { Unsorted } from './Unsorted';
|
|
8
|
+
|
|
9
|
+
export type Ordering = (DefaultSorted | Sorted | Unsorted);
|
|
10
|
+
|
package/models/Sorted.ts
ADDED
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@explo-tech/fido-api",
|
|
3
3
|
"description": "Fido api",
|
|
4
4
|
"homepage": "https://github.com/trust-kaz/fido",
|
|
5
|
-
"version": "5.
|
|
5
|
+
"version": "5.17.2-dan-fix-build.1",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git+https://github.com/trust-kaz/fido.git"
|