@rlvt/datasources-openapi-client 1.0.294 → 1.0.296
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/build/api.d.ts +2773 -1692
- package/build/definitions.d.ts +272 -121
- package/build/definitions.js +1 -1
- package/package.json +1 -1
package/build/definitions.d.ts
CHANGED
|
@@ -528,6 +528,7 @@ export declare type _Without_ = {
|
|
|
528
528
|
primaryKey?: string;
|
|
529
529
|
};
|
|
530
530
|
};
|
|
531
|
+
effectiveUpdateCheck?: boolean;
|
|
531
532
|
sources?: ({
|
|
532
533
|
input?: {
|
|
533
534
|
source?: {
|
|
@@ -734,6 +735,7 @@ export declare type _Without_ = {
|
|
|
734
735
|
options?: {
|
|
735
736
|
username?: string;
|
|
736
737
|
password?: string;
|
|
738
|
+
privateKey?: string;
|
|
737
739
|
host?: string;
|
|
738
740
|
port?: number;
|
|
739
741
|
path?: string;
|
|
@@ -779,28 +781,6 @@ export declare type _Without_ = {
|
|
|
779
781
|
allowEmpty?: boolean;
|
|
780
782
|
};
|
|
781
783
|
}[];
|
|
782
|
-
} | {
|
|
783
|
-
type?: "odbc";
|
|
784
|
-
options?: {
|
|
785
|
-
driver?: string;
|
|
786
|
-
username?: string;
|
|
787
|
-
password?: string;
|
|
788
|
-
host?: string;
|
|
789
|
-
port?: number;
|
|
790
|
-
dbname?: string;
|
|
791
|
-
table?: string;
|
|
792
|
-
attributes?: {
|
|
793
|
-
[key: string]: string | null;
|
|
794
|
-
};
|
|
795
|
-
};
|
|
796
|
-
preProcessingAggregations?: {
|
|
797
|
-
type?: "unwind";
|
|
798
|
-
options?: {
|
|
799
|
-
src?: string;
|
|
800
|
-
dest?: string;
|
|
801
|
-
allowEmpty?: boolean;
|
|
802
|
-
};
|
|
803
|
-
}[];
|
|
804
784
|
} | {
|
|
805
785
|
type?: "bigquery";
|
|
806
786
|
options?: {
|
|
@@ -810,6 +790,7 @@ export declare type _Without_ = {
|
|
|
810
790
|
clientEmail?: string;
|
|
811
791
|
projectId?: string;
|
|
812
792
|
query?: string;
|
|
793
|
+
tableProjectId?: string;
|
|
813
794
|
timestampField?: string;
|
|
814
795
|
};
|
|
815
796
|
preProcessingAggregations?: {
|
|
@@ -840,6 +821,56 @@ export declare type _Without_ = {
|
|
|
840
821
|
allowEmpty?: boolean;
|
|
841
822
|
};
|
|
842
823
|
}[];
|
|
824
|
+
} | {
|
|
825
|
+
type?: "gcs";
|
|
826
|
+
options?: {
|
|
827
|
+
privateKey?: string;
|
|
828
|
+
clientEmail?: string;
|
|
829
|
+
projectId?: string;
|
|
830
|
+
bucket?: string;
|
|
831
|
+
path?: string;
|
|
832
|
+
format?: {
|
|
833
|
+
type?: "csv";
|
|
834
|
+
options?: {
|
|
835
|
+
csvDelimiter?: string;
|
|
836
|
+
};
|
|
837
|
+
} | {
|
|
838
|
+
type?: "ndjson";
|
|
839
|
+
options?: {};
|
|
840
|
+
} | {
|
|
841
|
+
type?: "json";
|
|
842
|
+
options?: {
|
|
843
|
+
rootPath?: string;
|
|
844
|
+
};
|
|
845
|
+
} | {
|
|
846
|
+
type?: "xml";
|
|
847
|
+
options?: {
|
|
848
|
+
rootPath?: string;
|
|
849
|
+
};
|
|
850
|
+
} | {
|
|
851
|
+
type?: "xlsx";
|
|
852
|
+
options?: {};
|
|
853
|
+
} | {
|
|
854
|
+
type?: "parquet";
|
|
855
|
+
options?: {
|
|
856
|
+
columnsList?: string[];
|
|
857
|
+
version?: string;
|
|
858
|
+
};
|
|
859
|
+
} | {
|
|
860
|
+
type?: "avro";
|
|
861
|
+
options?: {};
|
|
862
|
+
};
|
|
863
|
+
textEncoding?: string;
|
|
864
|
+
processLastOnly?: boolean;
|
|
865
|
+
};
|
|
866
|
+
preProcessingAggregations?: {
|
|
867
|
+
type?: "unwind";
|
|
868
|
+
options?: {
|
|
869
|
+
src?: string;
|
|
870
|
+
dest?: string;
|
|
871
|
+
allowEmpty?: boolean;
|
|
872
|
+
};
|
|
873
|
+
}[];
|
|
843
874
|
};
|
|
844
875
|
filter?: {
|
|
845
876
|
$and?: ({
|
|
@@ -1395,6 +1426,7 @@ export declare type _Without_ = {
|
|
|
1395
1426
|
options?: {
|
|
1396
1427
|
username?: string;
|
|
1397
1428
|
password?: string;
|
|
1429
|
+
privateKey?: string;
|
|
1398
1430
|
host?: string;
|
|
1399
1431
|
port?: number;
|
|
1400
1432
|
path?: string;
|
|
@@ -1440,28 +1472,6 @@ export declare type _Without_ = {
|
|
|
1440
1472
|
allowEmpty?: boolean;
|
|
1441
1473
|
};
|
|
1442
1474
|
}[];
|
|
1443
|
-
} | {
|
|
1444
|
-
type?: "odbc";
|
|
1445
|
-
options?: {
|
|
1446
|
-
driver?: string;
|
|
1447
|
-
username?: string;
|
|
1448
|
-
password?: string;
|
|
1449
|
-
host?: string;
|
|
1450
|
-
port?: number;
|
|
1451
|
-
dbname?: string;
|
|
1452
|
-
table?: string;
|
|
1453
|
-
attributes?: {
|
|
1454
|
-
[key: string]: string | null;
|
|
1455
|
-
};
|
|
1456
|
-
};
|
|
1457
|
-
preProcessingAggregations?: {
|
|
1458
|
-
type?: "unwind";
|
|
1459
|
-
options?: {
|
|
1460
|
-
src?: string;
|
|
1461
|
-
dest?: string;
|
|
1462
|
-
allowEmpty?: boolean;
|
|
1463
|
-
};
|
|
1464
|
-
}[];
|
|
1465
1475
|
} | {
|
|
1466
1476
|
type?: "bigquery";
|
|
1467
1477
|
options?: {
|
|
@@ -1471,6 +1481,7 @@ export declare type _Without_ = {
|
|
|
1471
1481
|
clientEmail?: string;
|
|
1472
1482
|
projectId?: string;
|
|
1473
1483
|
query?: string;
|
|
1484
|
+
tableProjectId?: string;
|
|
1474
1485
|
timestampField?: string;
|
|
1475
1486
|
};
|
|
1476
1487
|
preProcessingAggregations?: {
|
|
@@ -1501,6 +1512,56 @@ export declare type _Without_ = {
|
|
|
1501
1512
|
allowEmpty?: boolean;
|
|
1502
1513
|
};
|
|
1503
1514
|
}[];
|
|
1515
|
+
} | {
|
|
1516
|
+
type?: "gcs";
|
|
1517
|
+
options?: {
|
|
1518
|
+
privateKey?: string;
|
|
1519
|
+
clientEmail?: string;
|
|
1520
|
+
projectId?: string;
|
|
1521
|
+
bucket?: string;
|
|
1522
|
+
path?: string;
|
|
1523
|
+
format?: {
|
|
1524
|
+
type?: "csv";
|
|
1525
|
+
options?: {
|
|
1526
|
+
csvDelimiter?: string;
|
|
1527
|
+
};
|
|
1528
|
+
} | {
|
|
1529
|
+
type?: "ndjson";
|
|
1530
|
+
options?: {};
|
|
1531
|
+
} | {
|
|
1532
|
+
type?: "json";
|
|
1533
|
+
options?: {
|
|
1534
|
+
rootPath?: string;
|
|
1535
|
+
};
|
|
1536
|
+
} | {
|
|
1537
|
+
type?: "xml";
|
|
1538
|
+
options?: {
|
|
1539
|
+
rootPath?: string;
|
|
1540
|
+
};
|
|
1541
|
+
} | {
|
|
1542
|
+
type?: "xlsx";
|
|
1543
|
+
options?: {};
|
|
1544
|
+
} | {
|
|
1545
|
+
type?: "parquet";
|
|
1546
|
+
options?: {
|
|
1547
|
+
columnsList?: string[];
|
|
1548
|
+
version?: string;
|
|
1549
|
+
};
|
|
1550
|
+
} | {
|
|
1551
|
+
type?: "avro";
|
|
1552
|
+
options?: {};
|
|
1553
|
+
};
|
|
1554
|
+
textEncoding?: string;
|
|
1555
|
+
processLastOnly?: boolean;
|
|
1556
|
+
};
|
|
1557
|
+
preProcessingAggregations?: {
|
|
1558
|
+
type?: "unwind";
|
|
1559
|
+
options?: {
|
|
1560
|
+
src?: string;
|
|
1561
|
+
dest?: string;
|
|
1562
|
+
allowEmpty?: boolean;
|
|
1563
|
+
};
|
|
1564
|
+
}[];
|
|
1504
1565
|
};
|
|
1505
1566
|
filter?: {
|
|
1506
1567
|
$and?: ({
|
|
@@ -2125,6 +2186,7 @@ export declare type _Without_ = {
|
|
|
2125
2186
|
options?: {
|
|
2126
2187
|
username?: string;
|
|
2127
2188
|
password?: string;
|
|
2189
|
+
privateKey?: string;
|
|
2128
2190
|
host?: string;
|
|
2129
2191
|
port?: number;
|
|
2130
2192
|
path?: string;
|
|
@@ -2170,28 +2232,6 @@ export declare type _Without_ = {
|
|
|
2170
2232
|
allowEmpty?: boolean;
|
|
2171
2233
|
};
|
|
2172
2234
|
}[];
|
|
2173
|
-
} | {
|
|
2174
|
-
type?: "odbc";
|
|
2175
|
-
options?: {
|
|
2176
|
-
driver?: string;
|
|
2177
|
-
username?: string;
|
|
2178
|
-
password?: string;
|
|
2179
|
-
host?: string;
|
|
2180
|
-
port?: number;
|
|
2181
|
-
dbname?: string;
|
|
2182
|
-
table?: string;
|
|
2183
|
-
attributes?: {
|
|
2184
|
-
[key: string]: string | null;
|
|
2185
|
-
};
|
|
2186
|
-
};
|
|
2187
|
-
preProcessingAggregations?: {
|
|
2188
|
-
type?: "unwind";
|
|
2189
|
-
options?: {
|
|
2190
|
-
src?: string;
|
|
2191
|
-
dest?: string;
|
|
2192
|
-
allowEmpty?: boolean;
|
|
2193
|
-
};
|
|
2194
|
-
}[];
|
|
2195
2235
|
} | {
|
|
2196
2236
|
type?: "bigquery";
|
|
2197
2237
|
options?: {
|
|
@@ -2201,6 +2241,7 @@ export declare type _Without_ = {
|
|
|
2201
2241
|
clientEmail?: string;
|
|
2202
2242
|
projectId?: string;
|
|
2203
2243
|
query?: string;
|
|
2244
|
+
tableProjectId?: string;
|
|
2204
2245
|
timestampField?: string;
|
|
2205
2246
|
};
|
|
2206
2247
|
preProcessingAggregations?: {
|
|
@@ -2231,6 +2272,56 @@ export declare type _Without_ = {
|
|
|
2231
2272
|
allowEmpty?: boolean;
|
|
2232
2273
|
};
|
|
2233
2274
|
}[];
|
|
2275
|
+
} | {
|
|
2276
|
+
type?: "gcs";
|
|
2277
|
+
options?: {
|
|
2278
|
+
privateKey?: string;
|
|
2279
|
+
clientEmail?: string;
|
|
2280
|
+
projectId?: string;
|
|
2281
|
+
bucket?: string;
|
|
2282
|
+
path?: string;
|
|
2283
|
+
format?: {
|
|
2284
|
+
type?: "csv";
|
|
2285
|
+
options?: {
|
|
2286
|
+
csvDelimiter?: string;
|
|
2287
|
+
};
|
|
2288
|
+
} | {
|
|
2289
|
+
type?: "ndjson";
|
|
2290
|
+
options?: {};
|
|
2291
|
+
} | {
|
|
2292
|
+
type?: "json";
|
|
2293
|
+
options?: {
|
|
2294
|
+
rootPath?: string;
|
|
2295
|
+
};
|
|
2296
|
+
} | {
|
|
2297
|
+
type?: "xml";
|
|
2298
|
+
options?: {
|
|
2299
|
+
rootPath?: string;
|
|
2300
|
+
};
|
|
2301
|
+
} | {
|
|
2302
|
+
type?: "xlsx";
|
|
2303
|
+
options?: {};
|
|
2304
|
+
} | {
|
|
2305
|
+
type?: "parquet";
|
|
2306
|
+
options?: {
|
|
2307
|
+
columnsList?: string[];
|
|
2308
|
+
version?: string;
|
|
2309
|
+
};
|
|
2310
|
+
} | {
|
|
2311
|
+
type?: "avro";
|
|
2312
|
+
options?: {};
|
|
2313
|
+
};
|
|
2314
|
+
textEncoding?: string;
|
|
2315
|
+
processLastOnly?: boolean;
|
|
2316
|
+
};
|
|
2317
|
+
preProcessingAggregations?: {
|
|
2318
|
+
type?: "unwind";
|
|
2319
|
+
options?: {
|
|
2320
|
+
src?: string;
|
|
2321
|
+
dest?: string;
|
|
2322
|
+
allowEmpty?: boolean;
|
|
2323
|
+
};
|
|
2324
|
+
}[];
|
|
2234
2325
|
};
|
|
2235
2326
|
filter?: {
|
|
2236
2327
|
$and?: ({
|
|
@@ -2786,6 +2877,7 @@ export declare type _Without_ = {
|
|
|
2786
2877
|
options?: {
|
|
2787
2878
|
username?: string;
|
|
2788
2879
|
password?: string;
|
|
2880
|
+
privateKey?: string;
|
|
2789
2881
|
host?: string;
|
|
2790
2882
|
port?: number;
|
|
2791
2883
|
path?: string;
|
|
@@ -2831,28 +2923,6 @@ export declare type _Without_ = {
|
|
|
2831
2923
|
allowEmpty?: boolean;
|
|
2832
2924
|
};
|
|
2833
2925
|
}[];
|
|
2834
|
-
} | {
|
|
2835
|
-
type?: "odbc";
|
|
2836
|
-
options?: {
|
|
2837
|
-
driver?: string;
|
|
2838
|
-
username?: string;
|
|
2839
|
-
password?: string;
|
|
2840
|
-
host?: string;
|
|
2841
|
-
port?: number;
|
|
2842
|
-
dbname?: string;
|
|
2843
|
-
table?: string;
|
|
2844
|
-
attributes?: {
|
|
2845
|
-
[key: string]: string | null;
|
|
2846
|
-
};
|
|
2847
|
-
};
|
|
2848
|
-
preProcessingAggregations?: {
|
|
2849
|
-
type?: "unwind";
|
|
2850
|
-
options?: {
|
|
2851
|
-
src?: string;
|
|
2852
|
-
dest?: string;
|
|
2853
|
-
allowEmpty?: boolean;
|
|
2854
|
-
};
|
|
2855
|
-
}[];
|
|
2856
2926
|
} | {
|
|
2857
2927
|
type?: "bigquery";
|
|
2858
2928
|
options?: {
|
|
@@ -2862,6 +2932,7 @@ export declare type _Without_ = {
|
|
|
2862
2932
|
clientEmail?: string;
|
|
2863
2933
|
projectId?: string;
|
|
2864
2934
|
query?: string;
|
|
2935
|
+
tableProjectId?: string;
|
|
2865
2936
|
timestampField?: string;
|
|
2866
2937
|
};
|
|
2867
2938
|
preProcessingAggregations?: {
|
|
@@ -2892,6 +2963,56 @@ export declare type _Without_ = {
|
|
|
2892
2963
|
allowEmpty?: boolean;
|
|
2893
2964
|
};
|
|
2894
2965
|
}[];
|
|
2966
|
+
} | {
|
|
2967
|
+
type?: "gcs";
|
|
2968
|
+
options?: {
|
|
2969
|
+
privateKey?: string;
|
|
2970
|
+
clientEmail?: string;
|
|
2971
|
+
projectId?: string;
|
|
2972
|
+
bucket?: string;
|
|
2973
|
+
path?: string;
|
|
2974
|
+
format?: {
|
|
2975
|
+
type?: "csv";
|
|
2976
|
+
options?: {
|
|
2977
|
+
csvDelimiter?: string;
|
|
2978
|
+
};
|
|
2979
|
+
} | {
|
|
2980
|
+
type?: "ndjson";
|
|
2981
|
+
options?: {};
|
|
2982
|
+
} | {
|
|
2983
|
+
type?: "json";
|
|
2984
|
+
options?: {
|
|
2985
|
+
rootPath?: string;
|
|
2986
|
+
};
|
|
2987
|
+
} | {
|
|
2988
|
+
type?: "xml";
|
|
2989
|
+
options?: {
|
|
2990
|
+
rootPath?: string;
|
|
2991
|
+
};
|
|
2992
|
+
} | {
|
|
2993
|
+
type?: "xlsx";
|
|
2994
|
+
options?: {};
|
|
2995
|
+
} | {
|
|
2996
|
+
type?: "parquet";
|
|
2997
|
+
options?: {
|
|
2998
|
+
columnsList?: string[];
|
|
2999
|
+
version?: string;
|
|
3000
|
+
};
|
|
3001
|
+
} | {
|
|
3002
|
+
type?: "avro";
|
|
3003
|
+
options?: {};
|
|
3004
|
+
};
|
|
3005
|
+
textEncoding?: string;
|
|
3006
|
+
processLastOnly?: boolean;
|
|
3007
|
+
};
|
|
3008
|
+
preProcessingAggregations?: {
|
|
3009
|
+
type?: "unwind";
|
|
3010
|
+
options?: {
|
|
3011
|
+
src?: string;
|
|
3012
|
+
dest?: string;
|
|
3013
|
+
allowEmpty?: boolean;
|
|
3014
|
+
};
|
|
3015
|
+
}[];
|
|
2895
3016
|
};
|
|
2896
3017
|
filter?: {
|
|
2897
3018
|
$and?: ({
|
|
@@ -3815,7 +3936,8 @@ export declare type FTPSourceOptions = {
|
|
|
3815
3936
|
};
|
|
3816
3937
|
export declare type SFTPSourceOptions = {
|
|
3817
3938
|
username: string;
|
|
3818
|
-
password
|
|
3939
|
+
password?: string;
|
|
3940
|
+
privateKey?: string;
|
|
3819
3941
|
host: string;
|
|
3820
3942
|
port: number;
|
|
3821
3943
|
path: string;
|
|
@@ -3853,18 +3975,6 @@ export declare type SFTPSourceOptions = {
|
|
|
3853
3975
|
textEncoding?: string;
|
|
3854
3976
|
processLastOnly?: boolean;
|
|
3855
3977
|
};
|
|
3856
|
-
export declare type ODBCSourceOptions = {
|
|
3857
|
-
driver: string;
|
|
3858
|
-
username: string;
|
|
3859
|
-
password: string;
|
|
3860
|
-
host: string;
|
|
3861
|
-
port: number;
|
|
3862
|
-
dbname: string;
|
|
3863
|
-
table: string;
|
|
3864
|
-
attributes: {
|
|
3865
|
-
[key: string]: string;
|
|
3866
|
-
};
|
|
3867
|
-
};
|
|
3868
3978
|
export declare type BigQuerySourceOptions = {
|
|
3869
3979
|
table: string;
|
|
3870
3980
|
dataset: string;
|
|
@@ -3872,6 +3982,7 @@ export declare type BigQuerySourceOptions = {
|
|
|
3872
3982
|
clientEmail?: string;
|
|
3873
3983
|
projectId?: string;
|
|
3874
3984
|
query?: string;
|
|
3985
|
+
tableProjectId?: string;
|
|
3875
3986
|
timestampField?: string;
|
|
3876
3987
|
};
|
|
3877
3988
|
export declare type SnowflakeSourceOptions = {
|
|
@@ -3884,6 +3995,46 @@ export declare type SnowflakeSourceOptions = {
|
|
|
3884
3995
|
table: string;
|
|
3885
3996
|
query?: string;
|
|
3886
3997
|
};
|
|
3998
|
+
export declare type GoogleStorageSourceOptions = {
|
|
3999
|
+
privateKey: string;
|
|
4000
|
+
clientEmail: string;
|
|
4001
|
+
projectId: string;
|
|
4002
|
+
bucket: string;
|
|
4003
|
+
path: string;
|
|
4004
|
+
format?: {
|
|
4005
|
+
type: "csv";
|
|
4006
|
+
options: {
|
|
4007
|
+
csvDelimiter?: string;
|
|
4008
|
+
};
|
|
4009
|
+
} | {
|
|
4010
|
+
type: "ndjson";
|
|
4011
|
+
options: {};
|
|
4012
|
+
} | {
|
|
4013
|
+
type: "json";
|
|
4014
|
+
options: {
|
|
4015
|
+
rootPath: string;
|
|
4016
|
+
};
|
|
4017
|
+
} | {
|
|
4018
|
+
type: "xml";
|
|
4019
|
+
options: {
|
|
4020
|
+
rootPath: string;
|
|
4021
|
+
};
|
|
4022
|
+
} | {
|
|
4023
|
+
type: "xlsx";
|
|
4024
|
+
options: {};
|
|
4025
|
+
} | {
|
|
4026
|
+
type: "parquet";
|
|
4027
|
+
options: {
|
|
4028
|
+
columnsList?: string[];
|
|
4029
|
+
version?: string;
|
|
4030
|
+
};
|
|
4031
|
+
} | {
|
|
4032
|
+
type: "avro";
|
|
4033
|
+
options: {};
|
|
4034
|
+
};
|
|
4035
|
+
textEncoding?: string;
|
|
4036
|
+
processLastOnly?: boolean;
|
|
4037
|
+
};
|
|
3887
4038
|
export declare type SourceInput = {
|
|
3888
4039
|
source: ({
|
|
3889
4040
|
type: "datasource";
|
|
@@ -3910,11 +4061,6 @@ export declare type SourceInput = {
|
|
|
3910
4061
|
options: SFTPSourceOptions;
|
|
3911
4062
|
} & {
|
|
3912
4063
|
preProcessingAggregations?: PreProcessingAggregations[];
|
|
3913
|
-
}) | ({
|
|
3914
|
-
type: "odbc";
|
|
3915
|
-
options: ODBCSourceOptions;
|
|
3916
|
-
} & {
|
|
3917
|
-
preProcessingAggregations?: PreProcessingAggregations[];
|
|
3918
4064
|
}) | ({
|
|
3919
4065
|
type: "bigquery";
|
|
3920
4066
|
options: BigQuerySourceOptions;
|
|
@@ -3925,6 +4071,11 @@ export declare type SourceInput = {
|
|
|
3925
4071
|
options: SnowflakeSourceOptions;
|
|
3926
4072
|
} & {
|
|
3927
4073
|
preProcessingAggregations?: PreProcessingAggregations[];
|
|
4074
|
+
}) | ({
|
|
4075
|
+
type: "gcs";
|
|
4076
|
+
options: GoogleStorageSourceOptions;
|
|
4077
|
+
} & {
|
|
4078
|
+
preProcessingAggregations?: PreProcessingAggregations[];
|
|
3928
4079
|
});
|
|
3929
4080
|
filter?: {
|
|
3930
4081
|
$and: ({
|
|
@@ -4465,7 +4616,7 @@ export declare type SampleObj = {
|
|
|
4465
4616
|
[key: string]: AnyValue;
|
|
4466
4617
|
};
|
|
4467
4618
|
};
|
|
4468
|
-
export declare type
|
|
4619
|
+
export declare type WorkerDatasourceVersion__Without_Id_Mode_State_Type_FieldsMap_AggregationPipeline_Refresh_DetectMissingFields_MaximumEntries_PullOptions_EffectiveUpdateCheck_Sources_PendingSteps_AvailableFieldsTypes_RequiredFieldsTypes_UniqueFieldsTypes_ImportantFieldsTypes_BatchSize_SourceFetchStates_SftpPublicKey_ = {
|
|
4469
4620
|
readonly id: (string) & readonlyP;
|
|
4470
4621
|
mode: "worker";
|
|
4471
4622
|
readonly state: (DatasourceVersionState) & readonlyP;
|
|
@@ -4546,6 +4697,7 @@ export declare type WorkerDatasourceVersion__Without_Id_Mode_State_Type_FieldsMa
|
|
|
4546
4697
|
primaryKey?: string;
|
|
4547
4698
|
};
|
|
4548
4699
|
};
|
|
4700
|
+
effectiveUpdateCheck?: boolean;
|
|
4549
4701
|
sources: ({
|
|
4550
4702
|
input: SourceInput & SampleObj;
|
|
4551
4703
|
} | {
|
|
@@ -4632,7 +4784,6 @@ export declare type WorkerDatasourceVersion__Without_Id_Mode_State_Type_FieldsMa
|
|
|
4632
4784
|
readonly uniqueFieldsTypes: (FieldMapType[]) & readonlyP;
|
|
4633
4785
|
readonly importantFieldsTypes: (FieldMapType[]) & readonlyP;
|
|
4634
4786
|
batchSize: number;
|
|
4635
|
-
effectiveUpdateCheck?: boolean;
|
|
4636
4787
|
sourceFetchStates: {
|
|
4637
4788
|
[key: string]: {
|
|
4638
4789
|
[key: string]: AnyValue;
|
|
@@ -4697,7 +4848,7 @@ export declare type __id_string_companyId_string_or_null_resourceGroupIds_string
|
|
|
4697
4848
|
name: "per-user";
|
|
4698
4849
|
params: {};
|
|
4699
4850
|
}) & readonlyP;
|
|
4700
|
-
versions: (
|
|
4851
|
+
versions: (WorkerDatasourceVersion__Without_Id_Mode_State_Type_FieldsMap_AggregationPipeline_Refresh_DetectMissingFields_MaximumEntries_PullOptions_EffectiveUpdateCheck_Sources_PendingSteps_AvailableFieldsTypes_RequiredFieldsTypes_UniqueFieldsTypes_ImportantFieldsTypes_BatchSize_SourceFetchStates_SftpPublicKey_ & {
|
|
4701
4852
|
readonly health: ("OK" | "WARNING" | "ERROR") & readonlyP;
|
|
4702
4853
|
})[];
|
|
4703
4854
|
readonly configurationUpdatedAt: (string) & readonlyP;
|
|
@@ -4996,11 +5147,6 @@ export declare type SourceInput_Without_Source_Filter = {
|
|
|
4996
5147
|
options: SFTPSourceOptions;
|
|
4997
5148
|
} & {
|
|
4998
5149
|
preProcessingAggregations?: PreProcessingAggregations[];
|
|
4999
|
-
}) | ({
|
|
5000
|
-
type: "odbc";
|
|
5001
|
-
options: ODBCSourceOptions;
|
|
5002
|
-
} & {
|
|
5003
|
-
preProcessingAggregations?: PreProcessingAggregations[];
|
|
5004
5150
|
}) | ({
|
|
5005
5151
|
type: "bigquery";
|
|
5006
5152
|
options: BigQuerySourceOptions;
|
|
@@ -5011,6 +5157,11 @@ export declare type SourceInput_Without_Source_Filter = {
|
|
|
5011
5157
|
options: SnowflakeSourceOptions;
|
|
5012
5158
|
} & {
|
|
5013
5159
|
preProcessingAggregations?: PreProcessingAggregations[];
|
|
5160
|
+
}) | ({
|
|
5161
|
+
type: "gcs";
|
|
5162
|
+
options: GoogleStorageSourceOptions;
|
|
5163
|
+
} & {
|
|
5164
|
+
preProcessingAggregations?: PreProcessingAggregations[];
|
|
5014
5165
|
});
|
|
5015
5166
|
filter?: {
|
|
5016
5167
|
$and: ({
|
|
@@ -5426,7 +5577,7 @@ export declare type SourceInput_Without_Source_Filter = {
|
|
|
5426
5577
|
})[];
|
|
5427
5578
|
};
|
|
5428
5579
|
};
|
|
5429
|
-
export declare type
|
|
5580
|
+
export declare type Partial_Pick_WorkerDatasourceVersion_aggregationPipeline_or_refresh_or_detectMissingFields_or_pullOptions_or_effectiveUpdateCheck_or_batchSize_or_sftpPublicKey_ = {
|
|
5430
5581
|
aggregationPipeline?: ({
|
|
5431
5582
|
name: "merge";
|
|
5432
5583
|
params: {
|
|
@@ -5482,8 +5633,8 @@ export declare type Partial_Pick_WorkerDatasourceVersion_aggregationPipeline_or_
|
|
|
5482
5633
|
primaryKey?: string;
|
|
5483
5634
|
};
|
|
5484
5635
|
};
|
|
5485
|
-
batchSize?: number;
|
|
5486
5636
|
effectiveUpdateCheck?: boolean;
|
|
5637
|
+
batchSize?: number;
|
|
5487
5638
|
sftpPublicKey?: string;
|
|
5488
5639
|
};
|
|
5489
5640
|
export declare type ProxyRefresh = {
|
|
@@ -6114,8 +6265,8 @@ export declare type CurrentSteps = {
|
|
|
6114
6265
|
primaryKey?: string;
|
|
6115
6266
|
};
|
|
6116
6267
|
};
|
|
6117
|
-
batchSize: number;
|
|
6118
6268
|
effectiveUpdateCheck?: boolean;
|
|
6269
|
+
batchSize: number;
|
|
6119
6270
|
sftpPublicKey?: string;
|
|
6120
6271
|
};
|
|
6121
6272
|
}) | ({
|
|
@@ -7566,8 +7717,8 @@ export declare type CurrentSteps = {
|
|
|
7566
7717
|
primaryKey?: string;
|
|
7567
7718
|
};
|
|
7568
7719
|
};
|
|
7569
|
-
batchSize: number;
|
|
7570
7720
|
effectiveUpdateCheck?: boolean;
|
|
7721
|
+
batchSize: number;
|
|
7571
7722
|
sftpPublicKey?: string;
|
|
7572
7723
|
};
|
|
7573
7724
|
}) | ({
|
|
@@ -9018,8 +9169,8 @@ export declare type CurrentSteps = {
|
|
|
9018
9169
|
primaryKey?: string;
|
|
9019
9170
|
};
|
|
9020
9171
|
};
|
|
9021
|
-
batchSize: number;
|
|
9022
9172
|
effectiveUpdateCheck?: boolean;
|
|
9173
|
+
batchSize: number;
|
|
9023
9174
|
sftpPublicKey?: string;
|
|
9024
9175
|
};
|
|
9025
9176
|
}) | ({
|
|
@@ -10470,8 +10621,8 @@ export declare type CurrentSteps = {
|
|
|
10470
10621
|
primaryKey?: string;
|
|
10471
10622
|
};
|
|
10472
10623
|
};
|
|
10473
|
-
batchSize: number;
|
|
10474
10624
|
effectiveUpdateCheck?: boolean;
|
|
10625
|
+
batchSize: number;
|
|
10475
10626
|
sftpPublicKey?: string;
|
|
10476
10627
|
};
|
|
10477
10628
|
}) | ({
|
|
@@ -11880,7 +12031,7 @@ export declare type WorkerSteps = {
|
|
|
11880
12031
|
};
|
|
11881
12032
|
} | {
|
|
11882
12033
|
name: "patch";
|
|
11883
|
-
payload:
|
|
12034
|
+
payload: Partial_Pick_WorkerDatasourceVersion_aggregationPipeline_or_refresh_or_detectMissingFields_or_pullOptions_or_effectiveUpdateCheck_or_batchSize_or_sftpPublicKey_;
|
|
11884
12035
|
} | {
|
|
11885
12036
|
name: "configure_fetcher";
|
|
11886
12037
|
payload: {
|
package/build/definitions.js
CHANGED
|
@@ -188,4 +188,4 @@ var DatasourceAnalyticsSubType;
|
|
|
188
188
|
DatasourceAnalyticsSubType["USER"] = "user";
|
|
189
189
|
DatasourceAnalyticsSubType["PURCHASES"] = "purchases";
|
|
190
190
|
})(DatasourceAnalyticsSubType = exports.DatasourceAnalyticsSubType || (exports.DatasourceAnalyticsSubType = {}));
|
|
191
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
191
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmaW5pdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9kZWZpbml0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjs7O0FBNENwQixJQUFZLGtCQU1YO0FBTkQsV0FBWSxrQkFBa0I7SUFDMUIsMkNBQXFCLENBQUE7SUFDckIsK0RBQXlDLENBQUE7SUFDekMscURBQStCLENBQUE7SUFDL0IsbURBQTZCLENBQUE7SUFDN0IsdURBQWlDLENBQUE7QUFDckMsQ0FBQyxFQU5XLGtCQUFrQixHQUFsQiwwQkFBa0IsS0FBbEIsMEJBQWtCLFFBTTdCO0FBaUVELElBQVksY0FJWDtBQUpELFdBQVksY0FBYztJQUN0Qix1Q0FBcUIsQ0FBQTtJQUNyQixtQ0FBaUIsQ0FBQTtJQUNqQixpQ0FBZSxDQUFBO0FBQ25CLENBQUMsRUFKVyxjQUFjLEdBQWQsc0JBQWMsS0FBZCxzQkFBYyxRQUl6QjtBQUVELElBQVkscUJBS1g7QUFMRCxXQUFZLHFCQUFxQjtJQUM3QiwwQ0FBaUIsQ0FBQTtJQUNqQiw4Q0FBcUIsQ0FBQTtJQUNyQix3Q0FBZSxDQUFBO0lBQ2YsOENBQXFCLENBQUE7QUFDekIsQ0FBQyxFQUxXLHFCQUFxQixHQUFyQiw2QkFBcUIsS0FBckIsNkJBQXFCLFFBS2hDO0FBRUQsSUFBWSx3QkFHWDtBQUhELFdBQVksd0JBQXdCO0lBQ2hDLHlDQUFhLENBQUE7SUFDYiw2REFBaUMsQ0FBQTtBQUNyQyxDQUFDLEVBSFcsd0JBQXdCLEdBQXhCLGdDQUF3QixLQUF4QixnQ0FBd0IsUUFHbkM7QUFFRCxJQUFZLHdCQU1YO0FBTkQsV0FBWSx3QkFBd0I7SUFDaEMseUNBQWEsQ0FBQTtJQUNiLG1EQUF1QixDQUFBO0lBQ3ZCLCtDQUFtQixDQUFBO0lBQ25CLHlEQUE2QixDQUFBO0lBQzdCLCtEQUFtQyxDQUFBO0FBQ3ZDLENBQUMsRUFOVyx3QkFBd0IsR0FBeEIsZ0NBQXdCLEtBQXhCLGdDQUF3QixRQU1uQztBQUVELElBQVkseUJBS1g7QUFMRCxXQUFZLHlCQUF5QjtJQUNqQywwQ0FBYSxDQUFBO0lBQ2Isc0VBQXlDLENBQUE7SUFDekMsOENBQWlCLENBQUE7SUFDakIsZ0RBQW1CLENBQUE7QUFDdkIsQ0FBQyxFQUxXLHlCQUF5QixHQUF6QixpQ0FBeUIsS0FBekIsaUNBQXlCLFFBS3BDO0FBRUQsSUFBWSxtQkFRWDtBQVJELFdBQVksbUJBQW1CO0lBQzNCLG9DQUFhLENBQUE7SUFDYix3Q0FBaUIsQ0FBQTtJQUNqQiw0Q0FBcUIsQ0FBQTtJQUNyQixvQ0FBYSxDQUFBO0lBQ2IsZ0NBQVMsQ0FBQTtJQUNULDhEQUF1QyxDQUFBO0lBQ3ZDLG9DQUFhLENBQUE7QUFDakIsQ0FBQyxFQVJXLG1CQUFtQixHQUFuQiwyQkFBbUIsS0FBbkIsMkJBQW1CLFFBUTlCO0FBRUQsSUFBWSxZQXVDWDtBQXZDRCxXQUFZLFlBQVk7SUFDcEIsaUNBQWlCLENBQUE7SUFDakIsaUNBQWlCLENBQUE7SUFDakIscUNBQXFCLENBQUE7SUFDckIsNkNBQTZCLENBQUE7SUFDN0IsdUNBQXVCLENBQUE7SUFDdkIsdUNBQXVCLENBQUE7SUFDdkIsdUNBQXVCLENBQUE7SUFDdkIsdUNBQXVCLENBQUE7SUFDdkIsNkJBQWEsQ0FBQTtJQUNiLG1DQUFtQixDQUFBO0lBQ25CLG1DQUFtQixDQUFBO0lBQ25CLHFDQUFxQixDQUFBO0lBQ3JCLHVDQUF1QixDQUFBO0lBQ3ZCLDZDQUE2QixDQUFBO0lBQzdCLHlDQUF5QixDQUFBO0lBQ3pCLCtCQUFlLENBQUE7SUFDZiwyQkFBVyxDQUFBO0lBQ1gsdUNBQXVCLENBQUE7SUFDdkIsNkJBQWEsQ0FBQTtJQUNiLDJDQUEyQixDQUFBO0lBQzNCLHFEQUFxQyxDQUFBO0lBQ3JDLGlDQUFpQixDQUFBO0lBQ2pCLDZDQUE2QixDQUFBO0lBQzdCLDZDQUE2QixDQUFBO0lBQzdCLCtDQUErQixDQUFBO0lBQy9CLCtDQUErQixDQUFBO0lBQy9CLHlDQUF5QixDQUFBO0lBQ3pCLHlDQUF5QixDQUFBO0lBQ3pCLDJDQUEyQixDQUFBO0lBQzNCLHlDQUF5QixDQUFBO0lBQ3pCLDJDQUEyQixDQUFBO0lBQzNCLDJEQUEyQyxDQUFBO0lBQzNDLCtDQUErQixDQUFBO0lBQy9CLDZEQUE2QyxDQUFBO0lBQzdDLDJEQUEyQyxDQUFBO0lBQzNDLGlEQUFpQyxDQUFBO0lBQ2pDLHlEQUF5QyxDQUFBO0lBQ3pDLDZEQUE2QyxDQUFBO0FBQ2pELENBQUMsRUF2Q1csWUFBWSxHQUFaLG9CQUFZLEtBQVosb0JBQVksUUF1Q3ZCO0FBRUQsSUFBWSxXQUtYO0FBTEQsV0FBWSxXQUFXO0lBQ25CLDRCQUFhLENBQUE7SUFDYiwwQ0FBMkIsQ0FBQTtJQUMzQixnREFBaUMsQ0FBQTtJQUNqQywwQ0FBMkIsQ0FBQTtBQUMvQixDQUFDLEVBTFcsV0FBVyxHQUFYLG1CQUFXLEtBQVgsbUJBQVcsUUFLdEI7QUF1TEQsSUFBWSxRQTJCWDtBQTNCRCxXQUFZLFFBQVE7SUFDaEIsNkNBQWlDLENBQUE7SUFDakMseUVBQTZELENBQUE7SUFDN0QsbURBQXVDLENBQUE7SUFDdkMsaURBQXFDLENBQUE7SUFDckMsK0NBQW1DLENBQUE7SUFDbkMsdURBQTJDLENBQUE7SUFDM0MsNkRBQWlELENBQUE7SUFDakQseURBQTZDLENBQUE7SUFDN0MsbURBQXVDLENBQUE7SUFDdkMsMkJBQWUsQ0FBQTtJQUNmLG1EQUF1QyxDQUFBO0lBQ3ZDLGlDQUFxQixDQUFBO0lBQ3JCLHVFQUEyRCxDQUFBO0lBQzNELCtFQUFtRSxDQUFBO0lBQ25FLHFGQUF5RSxDQUFBO0lBQ3pFLHlFQUE2RCxDQUFBO0lBQzdELHlGQUE2RSxDQUFBO0lBQzdFLHVGQUEyRSxDQUFBO0lBQzNFLHlGQUE2RSxDQUFBO0lBQzdFLHlFQUE2RCxDQUFBO0lBQzdELHlFQUE2RCxDQUFBO0lBQzdELG1FQUF1RCxDQUFBO0lBQ3ZELCtEQUFtRCxDQUFBO0lBQ25ELG1GQUF1RSxDQUFBO0lBQ3ZFLDJGQUErRSxDQUFBO0lBQy9FLGlFQUFxRCxDQUFBO0FBQ3pELENBQUMsRUEzQlcsUUFBUSxHQUFSLGdCQUFRLEtBQVIsZ0JBQVEsUUEyQm5CO0FBK3NHRCxJQUFZLGdCQU1YO0FBTkQsV0FBWSxnQkFBZ0I7SUFDeEIsbUNBQWUsQ0FBQTtJQUNmLDJDQUF1QixDQUFBO0lBQ3ZCLHlDQUFxQixDQUFBO0lBQ3JCLHFDQUFpQixDQUFBO0lBQ2pCLG1DQUFlLENBQUE7QUFDbkIsQ0FBQyxFQU5XLGdCQUFnQixHQUFoQix3QkFBZ0IsS0FBaEIsd0JBQWdCLFFBTTNCO0FBNEZELElBQVksc0JBS1g7QUFMRCxXQUFZLHNCQUFzQjtJQUM5Qix1Q0FBYSxDQUFBO0lBQ2IseUNBQWUsQ0FBQTtJQUNmLGlEQUF1QixDQUFBO0lBQ3ZCLCtDQUFxQixDQUFBO0FBQ3pCLENBQUMsRUFMVyxzQkFBc0IsR0FBdEIsOEJBQXNCLEtBQXRCLDhCQUFzQixRQUtqQztBQTB5Q0QsSUFBWSxjQU1YO0FBTkQsV0FBWSxjQUFjO0lBQ3RCLHFDQUFtQixDQUFBO0lBQ25CLHVDQUFxQixDQUFBO0lBQ3JCLHFDQUFtQixDQUFBO0lBQ25CLHlDQUF1QixDQUFBO0lBQ3ZCLDZCQUFXLENBQUE7QUFDZixDQUFDLEVBTlcsY0FBYyxHQUFkLHNCQUFjLEtBQWQsc0JBQWMsUUFNekI7QUFtQkQsSUFBWSxnQkFRWDtBQVJELFdBQVksZ0JBQWdCO0lBQ3hCLCtCQUFXLENBQUE7SUFDWCxxQ0FBaUIsQ0FBQTtJQUNqQixpQ0FBYSxDQUFBO0lBQ2IsK0JBQVcsQ0FBQTtJQUNYLGlDQUFhLENBQUE7SUFDYix1Q0FBbUIsQ0FBQTtJQUNuQixpQ0FBYSxDQUFBO0FBQ2pCLENBQUMsRUFSVyxnQkFBZ0IsR0FBaEIsd0JBQWdCLEtBQWhCLHdCQUFnQixRQVEzQjtBQW9zTUQsSUFBWSxnQkFhWDtBQWJELFdBQVksZ0JBQWdCO0lBQ3hCLHFDQUFpQixDQUFBO0lBQ2pCLGlDQUFhLENBQUE7SUFDYiw2Q0FBeUIsQ0FBQTtJQUN6Qix5Q0FBcUIsQ0FBQTtJQUNyQiwrQ0FBMkIsQ0FBQTtJQUMzQiwrREFBMkMsQ0FBQTtJQUMzQyx1Q0FBbUIsQ0FBQTtJQUNuQiwrQ0FBMkIsQ0FBQTtJQUMzQixtQ0FBZSxDQUFBO0lBQ2YscUNBQWlCLENBQUE7SUFDakIsaUNBQWEsQ0FBQTtJQUNiLGlDQUFhLENBQUE7QUFDakIsQ0FBQyxFQWJXLGdCQUFnQixHQUFoQix3QkFBZ0IsS0FBaEIsd0JBQWdCLFFBYTNCO0FBSUQsSUFBWSwwQkFPWDtBQVBELFdBQVksMEJBQTBCO0lBQ2xDLHFEQUF1QixDQUFBO0lBQ3ZCLHVFQUF5QyxDQUFBO0lBQ3pDLGlEQUFtQixDQUFBO0lBQ25CLGlFQUFtQyxDQUFBO0lBQ25DLDJDQUFhLENBQUE7SUFDYixxREFBdUIsQ0FBQTtBQUMzQixDQUFDLEVBUFcsMEJBQTBCLEdBQTFCLGtDQUEwQixLQUExQixrQ0FBMEIsUUFPckMifQ==
|
package/package.json
CHANGED