@explo-tech/fido-api 5.16.0-dan-ordering-api.1 → 5.17.0

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 CHANGED
@@ -39,6 +39,7 @@ export type { ColumnVisualizationFormat } from './models/ColumnVisualizationForm
39
39
  export type { Commit } from './models/Commit';
40
40
  export type { CommitResponse } from './models/CommitResponse';
41
41
  export type { CommitResponseMetadata } from './models/CommitResponseMetadata';
42
+ export { CompressionFormat } from './models/CompressionFormat';
42
43
  export type { Computation } from './models/Computation';
43
44
  export type { ComputedGradientPoint } from './models/ComputedGradientPoint';
44
45
  export type { ComputedLinkSource } from './models/ComputedLinkSource';
@@ -76,6 +77,7 @@ export type { DecimalColumnExportFormat } from './models/DecimalColumnExportForm
76
77
  export type { DecimalColumnVisualizationFormat } from './models/DecimalColumnVisualizationFormat';
77
78
  export type { DecimalIntervalGrouping } from './models/DecimalIntervalGrouping';
78
79
  export type { DecimalPropertyValue } from './models/DecimalPropertyValue';
80
+ export type { DefaultSorted } from './models/DefaultSorted';
79
81
  export type { DeleteResourceChange } from './models/DeleteResourceChange';
80
82
  export type { DeleteResourceDiff } from './models/DeleteResourceDiff';
81
83
  export type { DiffBranchResponse } from './models/DiffBranchResponse';
@@ -152,6 +154,7 @@ export type { Null1 } from './models/Null1';
152
154
  export type { NumberVisualizationOptions } from './models/NumberVisualizationOptions';
153
155
  export type { Or } from './models/Or';
154
156
  export type { Or1 } from './models/Or1';
157
+ export type { Ordering } from './models/Ordering';
155
158
  export type { PagingConfiguration } from './models/PagingConfiguration';
156
159
  export type { Parameter } from './models/Parameter';
157
160
  export type { ParseQueryRequest } from './models/ParseQueryRequest';
@@ -186,6 +189,7 @@ export type { SnowflakeKeyPairAuthentication } from './models/SnowflakeKeyPairAu
186
189
  export type { SnowflakePasswordAuthentication } from './models/SnowflakePasswordAuthentication';
187
190
  export type { Sort } from './models/Sort';
188
191
  export { SortDirection } from './models/SortDirection';
192
+ export type { Sorted } from './models/Sorted';
189
193
  export type { SourceProperty } from './models/SourceProperty';
190
194
  export type { SSHAuthentication } from './models/SSHAuthentication';
191
195
  export type { SSHTunnel } from './models/SSHTunnel';
@@ -213,6 +217,7 @@ export type { TestConnectionResponse } from './models/TestConnectionResponse';
213
217
  export type { TtlEviction } from './models/TtlEviction';
214
218
  export type { Tunnel } from './models/Tunnel';
215
219
  export { UnitOfMeasurement } from './models/UnitOfMeasurement';
220
+ export type { Unsorted } from './models/Unsorted';
216
221
  export type { UpdateResourceChange } from './models/UpdateResourceChange';
217
222
  export type { UpdateResourceDiff } from './models/UpdateResourceDiff';
218
223
  export type { UUID } from './models/UUID';
@@ -0,0 +1,7 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export enum CompressionFormat {
6
+ GZIP = 'gzip',
7
+ }
@@ -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,8 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type DefaultSorted = {
6
+ '@type': 'default';
7
+ };
8
+
@@ -2,6 +2,7 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
+ import type { CompressionFormat } from './CompressionFormat';
5
6
  import type { ExportColumnOptions } from './ExportColumnOptions';
6
7
  import type { ExportFormat } from './ExportFormat';
7
8
  import type { PivotTableExportConfiguration } from './PivotTableExportConfiguration';
@@ -11,5 +12,6 @@ export type ExportTargetConfiguration = {
11
12
  exportFormat: ExportFormat;
12
13
  columnDisplayOptions: Array<ExportColumnOptions>;
13
14
  pivotTableExportConfiguration?: PivotTableExportConfiguration | null;
15
+ compressionFormat?: CompressionFormat;
14
16
  };
15
17
 
@@ -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
+
@@ -0,0 +1,11 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { Sort } from './Sort';
6
+
7
+ export type Sorted = {
8
+ '@type': 'sorted';
9
+ sorts: Array<Sort>;
10
+ };
11
+
@@ -0,0 +1,8 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type Unsorted = {
6
+ '@type': 'unsorted';
7
+ };
8
+
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.16.0-dan-ordering-api.1",
5
+ "version": "5.17.0",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "git+https://github.com/trust-kaz/fido.git"