@rlvt/datasources-openapi-client 1.0.347 → 1.0.349
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 +2854 -874
- package/build/definitions.d.ts +275 -0
- package/build/definitions.js +1 -1
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -1028,6 +1028,61 @@ export default class {
|
|
|
1028
1028
|
} | undefined;
|
|
1029
1029
|
type?: "unwind" | undefined;
|
|
1030
1030
|
}[] | undefined;
|
|
1031
|
+
} | {
|
|
1032
|
+
options?: {
|
|
1033
|
+
username?: string | undefined;
|
|
1034
|
+
password?: string | undefined;
|
|
1035
|
+
format?: {
|
|
1036
|
+
options?: {
|
|
1037
|
+
csvDelimiter?: string | undefined;
|
|
1038
|
+
} | undefined;
|
|
1039
|
+
type?: "csv" | undefined;
|
|
1040
|
+
} | {
|
|
1041
|
+
options?: unknown;
|
|
1042
|
+
type?: "ndjson" | undefined;
|
|
1043
|
+
} | {
|
|
1044
|
+
options?: {
|
|
1045
|
+
rootPath?: string | undefined;
|
|
1046
|
+
} | undefined;
|
|
1047
|
+
type?: "json" | undefined;
|
|
1048
|
+
} | {
|
|
1049
|
+
options?: {
|
|
1050
|
+
rootPath?: string | undefined;
|
|
1051
|
+
} | undefined;
|
|
1052
|
+
type?: "xml" | undefined;
|
|
1053
|
+
} | {
|
|
1054
|
+
options?: unknown;
|
|
1055
|
+
type?: "xlsx" | undefined;
|
|
1056
|
+
} | {
|
|
1057
|
+
options?: {
|
|
1058
|
+
version?: string | undefined;
|
|
1059
|
+
columnsList?: string[] | undefined;
|
|
1060
|
+
} | undefined;
|
|
1061
|
+
type?: "parquet" | undefined;
|
|
1062
|
+
} | {
|
|
1063
|
+
options?: unknown;
|
|
1064
|
+
type?: "avro" | undefined;
|
|
1065
|
+
} | undefined;
|
|
1066
|
+
textEncoding?: string | undefined;
|
|
1067
|
+
brokers?: string[] | undefined;
|
|
1068
|
+
topic?: string | undefined;
|
|
1069
|
+
groupPrefix?: string | undefined;
|
|
1070
|
+
ssl?: boolean | undefined;
|
|
1071
|
+
registry?: {
|
|
1072
|
+
url?: string | undefined;
|
|
1073
|
+
username?: string | undefined;
|
|
1074
|
+
password?: string | undefined;
|
|
1075
|
+
} | undefined;
|
|
1076
|
+
} | undefined;
|
|
1077
|
+
type?: "kafka" | undefined;
|
|
1078
|
+
preProcessingAggregations?: {
|
|
1079
|
+
options?: {
|
|
1080
|
+
src?: string | undefined;
|
|
1081
|
+
dest?: string | undefined;
|
|
1082
|
+
allowEmpty?: boolean | undefined;
|
|
1083
|
+
} | undefined;
|
|
1084
|
+
type?: "unwind" | undefined;
|
|
1085
|
+
}[] | undefined;
|
|
1031
1086
|
} | undefined;
|
|
1032
1087
|
fieldsRules?: {
|
|
1033
1088
|
[x: string]: ({
|
|
@@ -1722,6 +1777,61 @@ export default class {
|
|
|
1722
1777
|
} | undefined;
|
|
1723
1778
|
type?: "unwind" | undefined;
|
|
1724
1779
|
}[] | undefined;
|
|
1780
|
+
} | {
|
|
1781
|
+
options?: {
|
|
1782
|
+
username?: string | undefined;
|
|
1783
|
+
password?: string | undefined;
|
|
1784
|
+
format?: {
|
|
1785
|
+
options?: {
|
|
1786
|
+
csvDelimiter?: string | undefined;
|
|
1787
|
+
} | undefined;
|
|
1788
|
+
type?: "csv" | undefined;
|
|
1789
|
+
} | {
|
|
1790
|
+
options?: unknown;
|
|
1791
|
+
type?: "ndjson" | undefined;
|
|
1792
|
+
} | {
|
|
1793
|
+
options?: {
|
|
1794
|
+
rootPath?: string | undefined;
|
|
1795
|
+
} | undefined;
|
|
1796
|
+
type?: "json" | undefined;
|
|
1797
|
+
} | {
|
|
1798
|
+
options?: {
|
|
1799
|
+
rootPath?: string | undefined;
|
|
1800
|
+
} | undefined;
|
|
1801
|
+
type?: "xml" | undefined;
|
|
1802
|
+
} | {
|
|
1803
|
+
options?: unknown;
|
|
1804
|
+
type?: "xlsx" | undefined;
|
|
1805
|
+
} | {
|
|
1806
|
+
options?: {
|
|
1807
|
+
version?: string | undefined;
|
|
1808
|
+
columnsList?: string[] | undefined;
|
|
1809
|
+
} | undefined;
|
|
1810
|
+
type?: "parquet" | undefined;
|
|
1811
|
+
} | {
|
|
1812
|
+
options?: unknown;
|
|
1813
|
+
type?: "avro" | undefined;
|
|
1814
|
+
} | undefined;
|
|
1815
|
+
textEncoding?: string | undefined;
|
|
1816
|
+
brokers?: string[] | undefined;
|
|
1817
|
+
topic?: string | undefined;
|
|
1818
|
+
groupPrefix?: string | undefined;
|
|
1819
|
+
ssl?: boolean | undefined;
|
|
1820
|
+
registry?: {
|
|
1821
|
+
url?: string | undefined;
|
|
1822
|
+
username?: string | undefined;
|
|
1823
|
+
password?: string | undefined;
|
|
1824
|
+
} | undefined;
|
|
1825
|
+
} | undefined;
|
|
1826
|
+
type?: "kafka" | undefined;
|
|
1827
|
+
preProcessingAggregations?: {
|
|
1828
|
+
options?: {
|
|
1829
|
+
src?: string | undefined;
|
|
1830
|
+
dest?: string | undefined;
|
|
1831
|
+
allowEmpty?: boolean | undefined;
|
|
1832
|
+
} | undefined;
|
|
1833
|
+
type?: "unwind" | undefined;
|
|
1834
|
+
}[] | undefined;
|
|
1725
1835
|
} | undefined;
|
|
1726
1836
|
fieldsRules?: {
|
|
1727
1837
|
[x: string]: ({
|
|
@@ -2516,6 +2626,61 @@ export default class {
|
|
|
2516
2626
|
} | undefined;
|
|
2517
2627
|
type?: "unwind" | undefined;
|
|
2518
2628
|
}[] | undefined;
|
|
2629
|
+
} | {
|
|
2630
|
+
options?: {
|
|
2631
|
+
username?: string | undefined;
|
|
2632
|
+
password?: string | undefined;
|
|
2633
|
+
format?: {
|
|
2634
|
+
options?: {
|
|
2635
|
+
csvDelimiter?: string | undefined;
|
|
2636
|
+
} | undefined;
|
|
2637
|
+
type?: "csv" | undefined;
|
|
2638
|
+
} | {
|
|
2639
|
+
options?: unknown;
|
|
2640
|
+
type?: "ndjson" | undefined;
|
|
2641
|
+
} | {
|
|
2642
|
+
options?: {
|
|
2643
|
+
rootPath?: string | undefined;
|
|
2644
|
+
} | undefined;
|
|
2645
|
+
type?: "json" | undefined;
|
|
2646
|
+
} | {
|
|
2647
|
+
options?: {
|
|
2648
|
+
rootPath?: string | undefined;
|
|
2649
|
+
} | undefined;
|
|
2650
|
+
type?: "xml" | undefined;
|
|
2651
|
+
} | {
|
|
2652
|
+
options?: unknown;
|
|
2653
|
+
type?: "xlsx" | undefined;
|
|
2654
|
+
} | {
|
|
2655
|
+
options?: {
|
|
2656
|
+
version?: string | undefined;
|
|
2657
|
+
columnsList?: string[] | undefined;
|
|
2658
|
+
} | undefined;
|
|
2659
|
+
type?: "parquet" | undefined;
|
|
2660
|
+
} | {
|
|
2661
|
+
options?: unknown;
|
|
2662
|
+
type?: "avro" | undefined;
|
|
2663
|
+
} | undefined;
|
|
2664
|
+
textEncoding?: string | undefined;
|
|
2665
|
+
brokers?: string[] | undefined;
|
|
2666
|
+
topic?: string | undefined;
|
|
2667
|
+
groupPrefix?: string | undefined;
|
|
2668
|
+
ssl?: boolean | undefined;
|
|
2669
|
+
registry?: {
|
|
2670
|
+
url?: string | undefined;
|
|
2671
|
+
username?: string | undefined;
|
|
2672
|
+
password?: string | undefined;
|
|
2673
|
+
} | undefined;
|
|
2674
|
+
} | undefined;
|
|
2675
|
+
type?: "kafka" | undefined;
|
|
2676
|
+
preProcessingAggregations?: {
|
|
2677
|
+
options?: {
|
|
2678
|
+
src?: string | undefined;
|
|
2679
|
+
dest?: string | undefined;
|
|
2680
|
+
allowEmpty?: boolean | undefined;
|
|
2681
|
+
} | undefined;
|
|
2682
|
+
type?: "unwind" | undefined;
|
|
2683
|
+
}[] | undefined;
|
|
2519
2684
|
} | undefined;
|
|
2520
2685
|
fieldsRules?: {
|
|
2521
2686
|
[x: string]: ({
|
|
@@ -3210,6 +3375,61 @@ export default class {
|
|
|
3210
3375
|
} | undefined;
|
|
3211
3376
|
type?: "unwind" | undefined;
|
|
3212
3377
|
}[] | undefined;
|
|
3378
|
+
} | {
|
|
3379
|
+
options?: {
|
|
3380
|
+
username?: string | undefined;
|
|
3381
|
+
password?: string | undefined;
|
|
3382
|
+
format?: {
|
|
3383
|
+
options?: {
|
|
3384
|
+
csvDelimiter?: string | undefined;
|
|
3385
|
+
} | undefined;
|
|
3386
|
+
type?: "csv" | undefined;
|
|
3387
|
+
} | {
|
|
3388
|
+
options?: unknown;
|
|
3389
|
+
type?: "ndjson" | undefined;
|
|
3390
|
+
} | {
|
|
3391
|
+
options?: {
|
|
3392
|
+
rootPath?: string | undefined;
|
|
3393
|
+
} | undefined;
|
|
3394
|
+
type?: "json" | undefined;
|
|
3395
|
+
} | {
|
|
3396
|
+
options?: {
|
|
3397
|
+
rootPath?: string | undefined;
|
|
3398
|
+
} | undefined;
|
|
3399
|
+
type?: "xml" | undefined;
|
|
3400
|
+
} | {
|
|
3401
|
+
options?: unknown;
|
|
3402
|
+
type?: "xlsx" | undefined;
|
|
3403
|
+
} | {
|
|
3404
|
+
options?: {
|
|
3405
|
+
version?: string | undefined;
|
|
3406
|
+
columnsList?: string[] | undefined;
|
|
3407
|
+
} | undefined;
|
|
3408
|
+
type?: "parquet" | undefined;
|
|
3409
|
+
} | {
|
|
3410
|
+
options?: unknown;
|
|
3411
|
+
type?: "avro" | undefined;
|
|
3412
|
+
} | undefined;
|
|
3413
|
+
textEncoding?: string | undefined;
|
|
3414
|
+
brokers?: string[] | undefined;
|
|
3415
|
+
topic?: string | undefined;
|
|
3416
|
+
groupPrefix?: string | undefined;
|
|
3417
|
+
ssl?: boolean | undefined;
|
|
3418
|
+
registry?: {
|
|
3419
|
+
url?: string | undefined;
|
|
3420
|
+
username?: string | undefined;
|
|
3421
|
+
password?: string | undefined;
|
|
3422
|
+
} | undefined;
|
|
3423
|
+
} | undefined;
|
|
3424
|
+
type?: "kafka" | undefined;
|
|
3425
|
+
preProcessingAggregations?: {
|
|
3426
|
+
options?: {
|
|
3427
|
+
src?: string | undefined;
|
|
3428
|
+
dest?: string | undefined;
|
|
3429
|
+
allowEmpty?: boolean | undefined;
|
|
3430
|
+
} | undefined;
|
|
3431
|
+
type?: "unwind" | undefined;
|
|
3432
|
+
}[] | undefined;
|
|
3213
3433
|
} | undefined;
|
|
3214
3434
|
fieldsRules?: {
|
|
3215
3435
|
[x: string]: ({
|
|
@@ -5087,6 +5307,61 @@ export default class {
|
|
|
5087
5307
|
};
|
|
5088
5308
|
type: "unwind";
|
|
5089
5309
|
}[] | undefined;
|
|
5310
|
+
} | {
|
|
5311
|
+
options: {
|
|
5312
|
+
username?: string | undefined;
|
|
5313
|
+
password?: string | undefined;
|
|
5314
|
+
format?: {
|
|
5315
|
+
options: {
|
|
5316
|
+
csvDelimiter?: string | undefined;
|
|
5317
|
+
};
|
|
5318
|
+
type: "csv";
|
|
5319
|
+
} | {
|
|
5320
|
+
options: unknown;
|
|
5321
|
+
type: "ndjson";
|
|
5322
|
+
} | {
|
|
5323
|
+
options: {
|
|
5324
|
+
rootPath: string;
|
|
5325
|
+
};
|
|
5326
|
+
type: "json";
|
|
5327
|
+
} | {
|
|
5328
|
+
options: {
|
|
5329
|
+
rootPath: string;
|
|
5330
|
+
};
|
|
5331
|
+
type: "xml";
|
|
5332
|
+
} | {
|
|
5333
|
+
options: unknown;
|
|
5334
|
+
type: "xlsx";
|
|
5335
|
+
} | {
|
|
5336
|
+
options: {
|
|
5337
|
+
version?: string | undefined;
|
|
5338
|
+
columnsList?: string[] | undefined;
|
|
5339
|
+
};
|
|
5340
|
+
type: "parquet";
|
|
5341
|
+
} | {
|
|
5342
|
+
options: unknown;
|
|
5343
|
+
type: "avro";
|
|
5344
|
+
} | undefined;
|
|
5345
|
+
textEncoding: string;
|
|
5346
|
+
brokers: string[];
|
|
5347
|
+
topic: string;
|
|
5348
|
+
groupPrefix?: string | undefined;
|
|
5349
|
+
ssl?: boolean | undefined;
|
|
5350
|
+
registry?: {
|
|
5351
|
+
url: string;
|
|
5352
|
+
username: string;
|
|
5353
|
+
password: string;
|
|
5354
|
+
} | undefined;
|
|
5355
|
+
};
|
|
5356
|
+
type: "kafka";
|
|
5357
|
+
preProcessingAggregations?: {
|
|
5358
|
+
options: {
|
|
5359
|
+
src: string;
|
|
5360
|
+
dest: string;
|
|
5361
|
+
allowEmpty?: boolean | undefined;
|
|
5362
|
+
};
|
|
5363
|
+
type: "unwind";
|
|
5364
|
+
}[] | undefined;
|
|
5090
5365
|
};
|
|
5091
5366
|
fieldsRules: {
|
|
5092
5367
|
[x: string]: ({
|
|
@@ -5997,6 +6272,61 @@ export default class {
|
|
|
5997
6272
|
};
|
|
5998
6273
|
type: "unwind";
|
|
5999
6274
|
}[] | undefined;
|
|
6275
|
+
} | {
|
|
6276
|
+
options: {
|
|
6277
|
+
username?: string | undefined;
|
|
6278
|
+
password?: string | undefined;
|
|
6279
|
+
format?: {
|
|
6280
|
+
options: {
|
|
6281
|
+
csvDelimiter?: string | undefined;
|
|
6282
|
+
};
|
|
6283
|
+
type: "csv";
|
|
6284
|
+
} | {
|
|
6285
|
+
options: unknown;
|
|
6286
|
+
type: "ndjson";
|
|
6287
|
+
} | {
|
|
6288
|
+
options: {
|
|
6289
|
+
rootPath: string;
|
|
6290
|
+
};
|
|
6291
|
+
type: "json";
|
|
6292
|
+
} | {
|
|
6293
|
+
options: {
|
|
6294
|
+
rootPath: string;
|
|
6295
|
+
};
|
|
6296
|
+
type: "xml";
|
|
6297
|
+
} | {
|
|
6298
|
+
options: unknown;
|
|
6299
|
+
type: "xlsx";
|
|
6300
|
+
} | {
|
|
6301
|
+
options: {
|
|
6302
|
+
version?: string | undefined;
|
|
6303
|
+
columnsList?: string[] | undefined;
|
|
6304
|
+
};
|
|
6305
|
+
type: "parquet";
|
|
6306
|
+
} | {
|
|
6307
|
+
options: unknown;
|
|
6308
|
+
type: "avro";
|
|
6309
|
+
} | undefined;
|
|
6310
|
+
textEncoding: string;
|
|
6311
|
+
brokers: string[];
|
|
6312
|
+
topic: string;
|
|
6313
|
+
groupPrefix?: string | undefined;
|
|
6314
|
+
ssl?: boolean | undefined;
|
|
6315
|
+
registry?: {
|
|
6316
|
+
url: string;
|
|
6317
|
+
username: string;
|
|
6318
|
+
password: string;
|
|
6319
|
+
} | undefined;
|
|
6320
|
+
};
|
|
6321
|
+
type: "kafka";
|
|
6322
|
+
preProcessingAggregations?: {
|
|
6323
|
+
options: {
|
|
6324
|
+
src: string;
|
|
6325
|
+
dest: string;
|
|
6326
|
+
allowEmpty?: boolean | undefined;
|
|
6327
|
+
};
|
|
6328
|
+
type: "unwind";
|
|
6329
|
+
}[] | undefined;
|
|
6000
6330
|
};
|
|
6001
6331
|
fieldsRules: {
|
|
6002
6332
|
[x: string]: ({
|
|
@@ -7157,6 +7487,61 @@ export default class {
|
|
|
7157
7487
|
};
|
|
7158
7488
|
type: "unwind";
|
|
7159
7489
|
}[] | undefined;
|
|
7490
|
+
} | {
|
|
7491
|
+
options: {
|
|
7492
|
+
username?: string | undefined;
|
|
7493
|
+
password?: string | undefined;
|
|
7494
|
+
format?: {
|
|
7495
|
+
options: {
|
|
7496
|
+
csvDelimiter?: string | undefined;
|
|
7497
|
+
};
|
|
7498
|
+
type: "csv";
|
|
7499
|
+
} | {
|
|
7500
|
+
options: unknown;
|
|
7501
|
+
type: "ndjson";
|
|
7502
|
+
} | {
|
|
7503
|
+
options: {
|
|
7504
|
+
rootPath: string;
|
|
7505
|
+
};
|
|
7506
|
+
type: "json";
|
|
7507
|
+
} | {
|
|
7508
|
+
options: {
|
|
7509
|
+
rootPath: string;
|
|
7510
|
+
};
|
|
7511
|
+
type: "xml";
|
|
7512
|
+
} | {
|
|
7513
|
+
options: unknown;
|
|
7514
|
+
type: "xlsx";
|
|
7515
|
+
} | {
|
|
7516
|
+
options: {
|
|
7517
|
+
version?: string | undefined;
|
|
7518
|
+
columnsList?: string[] | undefined;
|
|
7519
|
+
};
|
|
7520
|
+
type: "parquet";
|
|
7521
|
+
} | {
|
|
7522
|
+
options: unknown;
|
|
7523
|
+
type: "avro";
|
|
7524
|
+
} | undefined;
|
|
7525
|
+
textEncoding: string;
|
|
7526
|
+
brokers: string[];
|
|
7527
|
+
topic: string;
|
|
7528
|
+
groupPrefix?: string | undefined;
|
|
7529
|
+
ssl?: boolean | undefined;
|
|
7530
|
+
registry?: {
|
|
7531
|
+
url: string;
|
|
7532
|
+
username: string;
|
|
7533
|
+
password: string;
|
|
7534
|
+
} | undefined;
|
|
7535
|
+
};
|
|
7536
|
+
type: "kafka";
|
|
7537
|
+
preProcessingAggregations?: {
|
|
7538
|
+
options: {
|
|
7539
|
+
src: string;
|
|
7540
|
+
dest: string;
|
|
7541
|
+
allowEmpty?: boolean | undefined;
|
|
7542
|
+
};
|
|
7543
|
+
type: "unwind";
|
|
7544
|
+
}[] | undefined;
|
|
7160
7545
|
};
|
|
7161
7546
|
fieldsRules: {
|
|
7162
7547
|
[x: string]: ({
|
|
@@ -8067,6 +8452,61 @@ export default class {
|
|
|
8067
8452
|
};
|
|
8068
8453
|
type: "unwind";
|
|
8069
8454
|
}[] | undefined;
|
|
8455
|
+
} | {
|
|
8456
|
+
options: {
|
|
8457
|
+
username?: string | undefined;
|
|
8458
|
+
password?: string | undefined;
|
|
8459
|
+
format?: {
|
|
8460
|
+
options: {
|
|
8461
|
+
csvDelimiter?: string | undefined;
|
|
8462
|
+
};
|
|
8463
|
+
type: "csv";
|
|
8464
|
+
} | {
|
|
8465
|
+
options: unknown;
|
|
8466
|
+
type: "ndjson";
|
|
8467
|
+
} | {
|
|
8468
|
+
options: {
|
|
8469
|
+
rootPath: string;
|
|
8470
|
+
};
|
|
8471
|
+
type: "json";
|
|
8472
|
+
} | {
|
|
8473
|
+
options: {
|
|
8474
|
+
rootPath: string;
|
|
8475
|
+
};
|
|
8476
|
+
type: "xml";
|
|
8477
|
+
} | {
|
|
8478
|
+
options: unknown;
|
|
8479
|
+
type: "xlsx";
|
|
8480
|
+
} | {
|
|
8481
|
+
options: {
|
|
8482
|
+
version?: string | undefined;
|
|
8483
|
+
columnsList?: string[] | undefined;
|
|
8484
|
+
};
|
|
8485
|
+
type: "parquet";
|
|
8486
|
+
} | {
|
|
8487
|
+
options: unknown;
|
|
8488
|
+
type: "avro";
|
|
8489
|
+
} | undefined;
|
|
8490
|
+
textEncoding: string;
|
|
8491
|
+
brokers: string[];
|
|
8492
|
+
topic: string;
|
|
8493
|
+
groupPrefix?: string | undefined;
|
|
8494
|
+
ssl?: boolean | undefined;
|
|
8495
|
+
registry?: {
|
|
8496
|
+
url: string;
|
|
8497
|
+
username: string;
|
|
8498
|
+
password: string;
|
|
8499
|
+
} | undefined;
|
|
8500
|
+
};
|
|
8501
|
+
type: "kafka";
|
|
8502
|
+
preProcessingAggregations?: {
|
|
8503
|
+
options: {
|
|
8504
|
+
src: string;
|
|
8505
|
+
dest: string;
|
|
8506
|
+
allowEmpty?: boolean | undefined;
|
|
8507
|
+
};
|
|
8508
|
+
type: "unwind";
|
|
8509
|
+
}[] | undefined;
|
|
8070
8510
|
};
|
|
8071
8511
|
fieldsRules: {
|
|
8072
8512
|
[x: string]: ({
|
|
@@ -9665,6 +10105,61 @@ export default class {
|
|
|
9665
10105
|
};
|
|
9666
10106
|
type: "unwind";
|
|
9667
10107
|
}[] | undefined;
|
|
10108
|
+
} | {
|
|
10109
|
+
options: {
|
|
10110
|
+
username?: string | undefined;
|
|
10111
|
+
password?: string | undefined;
|
|
10112
|
+
format?: {
|
|
10113
|
+
options: {
|
|
10114
|
+
csvDelimiter?: string | undefined;
|
|
10115
|
+
};
|
|
10116
|
+
type: "csv";
|
|
10117
|
+
} | {
|
|
10118
|
+
options: unknown;
|
|
10119
|
+
type: "ndjson";
|
|
10120
|
+
} | {
|
|
10121
|
+
options: {
|
|
10122
|
+
rootPath: string;
|
|
10123
|
+
};
|
|
10124
|
+
type: "json";
|
|
10125
|
+
} | {
|
|
10126
|
+
options: {
|
|
10127
|
+
rootPath: string;
|
|
10128
|
+
};
|
|
10129
|
+
type: "xml";
|
|
10130
|
+
} | {
|
|
10131
|
+
options: unknown;
|
|
10132
|
+
type: "xlsx";
|
|
10133
|
+
} | {
|
|
10134
|
+
options: {
|
|
10135
|
+
version?: string | undefined;
|
|
10136
|
+
columnsList?: string[] | undefined;
|
|
10137
|
+
};
|
|
10138
|
+
type: "parquet";
|
|
10139
|
+
} | {
|
|
10140
|
+
options: unknown;
|
|
10141
|
+
type: "avro";
|
|
10142
|
+
} | undefined;
|
|
10143
|
+
textEncoding: string;
|
|
10144
|
+
brokers: string[];
|
|
10145
|
+
topic: string;
|
|
10146
|
+
groupPrefix?: string | undefined;
|
|
10147
|
+
ssl?: boolean | undefined;
|
|
10148
|
+
registry?: {
|
|
10149
|
+
url: string;
|
|
10150
|
+
username: string;
|
|
10151
|
+
password: string;
|
|
10152
|
+
} | undefined;
|
|
10153
|
+
};
|
|
10154
|
+
type: "kafka";
|
|
10155
|
+
preProcessingAggregations?: {
|
|
10156
|
+
options: {
|
|
10157
|
+
src: string;
|
|
10158
|
+
dest: string;
|
|
10159
|
+
allowEmpty?: boolean | undefined;
|
|
10160
|
+
};
|
|
10161
|
+
type: "unwind";
|
|
10162
|
+
}[] | undefined;
|
|
9668
10163
|
};
|
|
9669
10164
|
fieldsRules: {
|
|
9670
10165
|
[x: string]: ({
|
|
@@ -10575,6 +11070,61 @@ export default class {
|
|
|
10575
11070
|
};
|
|
10576
11071
|
type: "unwind";
|
|
10577
11072
|
}[] | undefined;
|
|
11073
|
+
} | {
|
|
11074
|
+
options: {
|
|
11075
|
+
username?: string | undefined;
|
|
11076
|
+
password?: string | undefined;
|
|
11077
|
+
format?: {
|
|
11078
|
+
options: {
|
|
11079
|
+
csvDelimiter?: string | undefined;
|
|
11080
|
+
};
|
|
11081
|
+
type: "csv";
|
|
11082
|
+
} | {
|
|
11083
|
+
options: unknown;
|
|
11084
|
+
type: "ndjson";
|
|
11085
|
+
} | {
|
|
11086
|
+
options: {
|
|
11087
|
+
rootPath: string;
|
|
11088
|
+
};
|
|
11089
|
+
type: "json";
|
|
11090
|
+
} | {
|
|
11091
|
+
options: {
|
|
11092
|
+
rootPath: string;
|
|
11093
|
+
};
|
|
11094
|
+
type: "xml";
|
|
11095
|
+
} | {
|
|
11096
|
+
options: unknown;
|
|
11097
|
+
type: "xlsx";
|
|
11098
|
+
} | {
|
|
11099
|
+
options: {
|
|
11100
|
+
version?: string | undefined;
|
|
11101
|
+
columnsList?: string[] | undefined;
|
|
11102
|
+
};
|
|
11103
|
+
type: "parquet";
|
|
11104
|
+
} | {
|
|
11105
|
+
options: unknown;
|
|
11106
|
+
type: "avro";
|
|
11107
|
+
} | undefined;
|
|
11108
|
+
textEncoding: string;
|
|
11109
|
+
brokers: string[];
|
|
11110
|
+
topic: string;
|
|
11111
|
+
groupPrefix?: string | undefined;
|
|
11112
|
+
ssl?: boolean | undefined;
|
|
11113
|
+
registry?: {
|
|
11114
|
+
url: string;
|
|
11115
|
+
username: string;
|
|
11116
|
+
password: string;
|
|
11117
|
+
} | undefined;
|
|
11118
|
+
};
|
|
11119
|
+
type: "kafka";
|
|
11120
|
+
preProcessingAggregations?: {
|
|
11121
|
+
options: {
|
|
11122
|
+
src: string;
|
|
11123
|
+
dest: string;
|
|
11124
|
+
allowEmpty?: boolean | undefined;
|
|
11125
|
+
};
|
|
11126
|
+
type: "unwind";
|
|
11127
|
+
}[] | undefined;
|
|
10578
11128
|
};
|
|
10579
11129
|
fieldsRules: {
|
|
10580
11130
|
[x: string]: ({
|
|
@@ -11735,6 +12285,61 @@ export default class {
|
|
|
11735
12285
|
};
|
|
11736
12286
|
type: "unwind";
|
|
11737
12287
|
}[] | undefined;
|
|
12288
|
+
} | {
|
|
12289
|
+
options: {
|
|
12290
|
+
username?: string | undefined;
|
|
12291
|
+
password?: string | undefined;
|
|
12292
|
+
format?: {
|
|
12293
|
+
options: {
|
|
12294
|
+
csvDelimiter?: string | undefined;
|
|
12295
|
+
};
|
|
12296
|
+
type: "csv";
|
|
12297
|
+
} | {
|
|
12298
|
+
options: unknown;
|
|
12299
|
+
type: "ndjson";
|
|
12300
|
+
} | {
|
|
12301
|
+
options: {
|
|
12302
|
+
rootPath: string;
|
|
12303
|
+
};
|
|
12304
|
+
type: "json";
|
|
12305
|
+
} | {
|
|
12306
|
+
options: {
|
|
12307
|
+
rootPath: string;
|
|
12308
|
+
};
|
|
12309
|
+
type: "xml";
|
|
12310
|
+
} | {
|
|
12311
|
+
options: unknown;
|
|
12312
|
+
type: "xlsx";
|
|
12313
|
+
} | {
|
|
12314
|
+
options: {
|
|
12315
|
+
version?: string | undefined;
|
|
12316
|
+
columnsList?: string[] | undefined;
|
|
12317
|
+
};
|
|
12318
|
+
type: "parquet";
|
|
12319
|
+
} | {
|
|
12320
|
+
options: unknown;
|
|
12321
|
+
type: "avro";
|
|
12322
|
+
} | undefined;
|
|
12323
|
+
textEncoding: string;
|
|
12324
|
+
brokers: string[];
|
|
12325
|
+
topic: string;
|
|
12326
|
+
groupPrefix?: string | undefined;
|
|
12327
|
+
ssl?: boolean | undefined;
|
|
12328
|
+
registry?: {
|
|
12329
|
+
url: string;
|
|
12330
|
+
username: string;
|
|
12331
|
+
password: string;
|
|
12332
|
+
} | undefined;
|
|
12333
|
+
};
|
|
12334
|
+
type: "kafka";
|
|
12335
|
+
preProcessingAggregations?: {
|
|
12336
|
+
options: {
|
|
12337
|
+
src: string;
|
|
12338
|
+
dest: string;
|
|
12339
|
+
allowEmpty?: boolean | undefined;
|
|
12340
|
+
};
|
|
12341
|
+
type: "unwind";
|
|
12342
|
+
}[] | undefined;
|
|
11738
12343
|
};
|
|
11739
12344
|
fieldsRules: {
|
|
11740
12345
|
[x: string]: ({
|
|
@@ -12645,6 +13250,61 @@ export default class {
|
|
|
12645
13250
|
};
|
|
12646
13251
|
type: "unwind";
|
|
12647
13252
|
}[] | undefined;
|
|
13253
|
+
} | {
|
|
13254
|
+
options: {
|
|
13255
|
+
username?: string | undefined;
|
|
13256
|
+
password?: string | undefined;
|
|
13257
|
+
format?: {
|
|
13258
|
+
options: {
|
|
13259
|
+
csvDelimiter?: string | undefined;
|
|
13260
|
+
};
|
|
13261
|
+
type: "csv";
|
|
13262
|
+
} | {
|
|
13263
|
+
options: unknown;
|
|
13264
|
+
type: "ndjson";
|
|
13265
|
+
} | {
|
|
13266
|
+
options: {
|
|
13267
|
+
rootPath: string;
|
|
13268
|
+
};
|
|
13269
|
+
type: "json";
|
|
13270
|
+
} | {
|
|
13271
|
+
options: {
|
|
13272
|
+
rootPath: string;
|
|
13273
|
+
};
|
|
13274
|
+
type: "xml";
|
|
13275
|
+
} | {
|
|
13276
|
+
options: unknown;
|
|
13277
|
+
type: "xlsx";
|
|
13278
|
+
} | {
|
|
13279
|
+
options: {
|
|
13280
|
+
version?: string | undefined;
|
|
13281
|
+
columnsList?: string[] | undefined;
|
|
13282
|
+
};
|
|
13283
|
+
type: "parquet";
|
|
13284
|
+
} | {
|
|
13285
|
+
options: unknown;
|
|
13286
|
+
type: "avro";
|
|
13287
|
+
} | undefined;
|
|
13288
|
+
textEncoding: string;
|
|
13289
|
+
brokers: string[];
|
|
13290
|
+
topic: string;
|
|
13291
|
+
groupPrefix?: string | undefined;
|
|
13292
|
+
ssl?: boolean | undefined;
|
|
13293
|
+
registry?: {
|
|
13294
|
+
url: string;
|
|
13295
|
+
username: string;
|
|
13296
|
+
password: string;
|
|
13297
|
+
} | undefined;
|
|
13298
|
+
};
|
|
13299
|
+
type: "kafka";
|
|
13300
|
+
preProcessingAggregations?: {
|
|
13301
|
+
options: {
|
|
13302
|
+
src: string;
|
|
13303
|
+
dest: string;
|
|
13304
|
+
allowEmpty?: boolean | undefined;
|
|
13305
|
+
};
|
|
13306
|
+
type: "unwind";
|
|
13307
|
+
}[] | undefined;
|
|
12648
13308
|
};
|
|
12649
13309
|
fieldsRules: {
|
|
12650
13310
|
[x: string]: ({
|
|
@@ -14235,6 +14895,61 @@ export default class {
|
|
|
14235
14895
|
};
|
|
14236
14896
|
type: "unwind";
|
|
14237
14897
|
}[] | undefined;
|
|
14898
|
+
} | {
|
|
14899
|
+
options: {
|
|
14900
|
+
username?: string | undefined;
|
|
14901
|
+
password?: string | undefined;
|
|
14902
|
+
format?: {
|
|
14903
|
+
options: {
|
|
14904
|
+
csvDelimiter?: string | undefined;
|
|
14905
|
+
};
|
|
14906
|
+
type: "csv";
|
|
14907
|
+
} | {
|
|
14908
|
+
options: unknown;
|
|
14909
|
+
type: "ndjson";
|
|
14910
|
+
} | {
|
|
14911
|
+
options: {
|
|
14912
|
+
rootPath: string;
|
|
14913
|
+
};
|
|
14914
|
+
type: "json";
|
|
14915
|
+
} | {
|
|
14916
|
+
options: {
|
|
14917
|
+
rootPath: string;
|
|
14918
|
+
};
|
|
14919
|
+
type: "xml";
|
|
14920
|
+
} | {
|
|
14921
|
+
options: unknown;
|
|
14922
|
+
type: "xlsx";
|
|
14923
|
+
} | {
|
|
14924
|
+
options: {
|
|
14925
|
+
version?: string | undefined;
|
|
14926
|
+
columnsList?: string[] | undefined;
|
|
14927
|
+
};
|
|
14928
|
+
type: "parquet";
|
|
14929
|
+
} | {
|
|
14930
|
+
options: unknown;
|
|
14931
|
+
type: "avro";
|
|
14932
|
+
} | undefined;
|
|
14933
|
+
textEncoding: string;
|
|
14934
|
+
brokers: string[];
|
|
14935
|
+
topic: string;
|
|
14936
|
+
groupPrefix?: string | undefined;
|
|
14937
|
+
ssl?: boolean | undefined;
|
|
14938
|
+
registry?: {
|
|
14939
|
+
url: string;
|
|
14940
|
+
username: string;
|
|
14941
|
+
password: string;
|
|
14942
|
+
} | undefined;
|
|
14943
|
+
};
|
|
14944
|
+
type: "kafka";
|
|
14945
|
+
preProcessingAggregations?: {
|
|
14946
|
+
options: {
|
|
14947
|
+
src: string;
|
|
14948
|
+
dest: string;
|
|
14949
|
+
allowEmpty?: boolean | undefined;
|
|
14950
|
+
};
|
|
14951
|
+
type: "unwind";
|
|
14952
|
+
}[] | undefined;
|
|
14238
14953
|
};
|
|
14239
14954
|
fieldsRules: {
|
|
14240
14955
|
[x: string]: ({
|
|
@@ -15145,6 +15860,61 @@ export default class {
|
|
|
15145
15860
|
};
|
|
15146
15861
|
type: "unwind";
|
|
15147
15862
|
}[] | undefined;
|
|
15863
|
+
} | {
|
|
15864
|
+
options: {
|
|
15865
|
+
username?: string | undefined;
|
|
15866
|
+
password?: string | undefined;
|
|
15867
|
+
format?: {
|
|
15868
|
+
options: {
|
|
15869
|
+
csvDelimiter?: string | undefined;
|
|
15870
|
+
};
|
|
15871
|
+
type: "csv";
|
|
15872
|
+
} | {
|
|
15873
|
+
options: unknown;
|
|
15874
|
+
type: "ndjson";
|
|
15875
|
+
} | {
|
|
15876
|
+
options: {
|
|
15877
|
+
rootPath: string;
|
|
15878
|
+
};
|
|
15879
|
+
type: "json";
|
|
15880
|
+
} | {
|
|
15881
|
+
options: {
|
|
15882
|
+
rootPath: string;
|
|
15883
|
+
};
|
|
15884
|
+
type: "xml";
|
|
15885
|
+
} | {
|
|
15886
|
+
options: unknown;
|
|
15887
|
+
type: "xlsx";
|
|
15888
|
+
} | {
|
|
15889
|
+
options: {
|
|
15890
|
+
version?: string | undefined;
|
|
15891
|
+
columnsList?: string[] | undefined;
|
|
15892
|
+
};
|
|
15893
|
+
type: "parquet";
|
|
15894
|
+
} | {
|
|
15895
|
+
options: unknown;
|
|
15896
|
+
type: "avro";
|
|
15897
|
+
} | undefined;
|
|
15898
|
+
textEncoding: string;
|
|
15899
|
+
brokers: string[];
|
|
15900
|
+
topic: string;
|
|
15901
|
+
groupPrefix?: string | undefined;
|
|
15902
|
+
ssl?: boolean | undefined;
|
|
15903
|
+
registry?: {
|
|
15904
|
+
url: string;
|
|
15905
|
+
username: string;
|
|
15906
|
+
password: string;
|
|
15907
|
+
} | undefined;
|
|
15908
|
+
};
|
|
15909
|
+
type: "kafka";
|
|
15910
|
+
preProcessingAggregations?: {
|
|
15911
|
+
options: {
|
|
15912
|
+
src: string;
|
|
15913
|
+
dest: string;
|
|
15914
|
+
allowEmpty?: boolean | undefined;
|
|
15915
|
+
};
|
|
15916
|
+
type: "unwind";
|
|
15917
|
+
}[] | undefined;
|
|
15148
15918
|
};
|
|
15149
15919
|
fieldsRules: {
|
|
15150
15920
|
[x: string]: ({
|
|
@@ -16115,9 +16885,131 @@ export default class {
|
|
|
16115
16885
|
options: unknown;
|
|
16116
16886
|
type: "avro";
|
|
16117
16887
|
};
|
|
16118
|
-
textEncoding: string;
|
|
16888
|
+
textEncoding: string;
|
|
16889
|
+
};
|
|
16890
|
+
type: "file";
|
|
16891
|
+
preProcessingAggregations?: {
|
|
16892
|
+
options: {
|
|
16893
|
+
src: string;
|
|
16894
|
+
dest: string;
|
|
16895
|
+
allowEmpty?: boolean | undefined;
|
|
16896
|
+
};
|
|
16897
|
+
type: "unwind";
|
|
16898
|
+
}[] | undefined;
|
|
16899
|
+
} | {
|
|
16900
|
+
options: {
|
|
16901
|
+
path: string;
|
|
16902
|
+
username: string;
|
|
16903
|
+
password: string;
|
|
16904
|
+
format?: {
|
|
16905
|
+
options: {
|
|
16906
|
+
csvDelimiter?: string | undefined;
|
|
16907
|
+
};
|
|
16908
|
+
type: "csv";
|
|
16909
|
+
} | {
|
|
16910
|
+
options: unknown;
|
|
16911
|
+
type: "ndjson";
|
|
16912
|
+
} | {
|
|
16913
|
+
options: {
|
|
16914
|
+
rootPath: string;
|
|
16915
|
+
};
|
|
16916
|
+
type: "json";
|
|
16917
|
+
} | {
|
|
16918
|
+
options: {
|
|
16919
|
+
rootPath: string;
|
|
16920
|
+
};
|
|
16921
|
+
type: "xml";
|
|
16922
|
+
} | {
|
|
16923
|
+
options: unknown;
|
|
16924
|
+
type: "xlsx";
|
|
16925
|
+
} | {
|
|
16926
|
+
options: {
|
|
16927
|
+
version?: string | undefined;
|
|
16928
|
+
columnsList?: string[] | undefined;
|
|
16929
|
+
};
|
|
16930
|
+
type: "parquet";
|
|
16931
|
+
} | {
|
|
16932
|
+
options: unknown;
|
|
16933
|
+
type: "avro";
|
|
16934
|
+
} | undefined;
|
|
16935
|
+
textEncoding?: string | undefined;
|
|
16936
|
+
host: string;
|
|
16937
|
+
port: number;
|
|
16938
|
+
secure: boolean;
|
|
16939
|
+
processLastOnly?: boolean | undefined;
|
|
16940
|
+
};
|
|
16941
|
+
type: "ftp";
|
|
16942
|
+
preProcessingAggregations?: {
|
|
16943
|
+
options: {
|
|
16944
|
+
src: string;
|
|
16945
|
+
dest: string;
|
|
16946
|
+
allowEmpty?: boolean | undefined;
|
|
16947
|
+
};
|
|
16948
|
+
type: "unwind";
|
|
16949
|
+
}[] | undefined;
|
|
16950
|
+
} | {
|
|
16951
|
+
options: {
|
|
16952
|
+
path: string;
|
|
16953
|
+
username: string;
|
|
16954
|
+
password?: string | undefined;
|
|
16955
|
+
format?: {
|
|
16956
|
+
options: {
|
|
16957
|
+
csvDelimiter?: string | undefined;
|
|
16958
|
+
};
|
|
16959
|
+
type: "csv";
|
|
16960
|
+
} | {
|
|
16961
|
+
options: unknown;
|
|
16962
|
+
type: "ndjson";
|
|
16963
|
+
} | {
|
|
16964
|
+
options: {
|
|
16965
|
+
rootPath: string;
|
|
16966
|
+
};
|
|
16967
|
+
type: "json";
|
|
16968
|
+
} | {
|
|
16969
|
+
options: {
|
|
16970
|
+
rootPath: string;
|
|
16971
|
+
};
|
|
16972
|
+
type: "xml";
|
|
16973
|
+
} | {
|
|
16974
|
+
options: unknown;
|
|
16975
|
+
type: "xlsx";
|
|
16976
|
+
} | {
|
|
16977
|
+
options: {
|
|
16978
|
+
version?: string | undefined;
|
|
16979
|
+
columnsList?: string[] | undefined;
|
|
16980
|
+
};
|
|
16981
|
+
type: "parquet";
|
|
16982
|
+
} | {
|
|
16983
|
+
options: unknown;
|
|
16984
|
+
type: "avro";
|
|
16985
|
+
} | undefined;
|
|
16986
|
+
textEncoding?: string | undefined;
|
|
16987
|
+
host: string;
|
|
16988
|
+
port: number;
|
|
16989
|
+
processLastOnly?: boolean | undefined;
|
|
16990
|
+
privateKey?: string | undefined;
|
|
16991
|
+
};
|
|
16992
|
+
type: "sftp";
|
|
16993
|
+
preProcessingAggregations?: {
|
|
16994
|
+
options: {
|
|
16995
|
+
src: string;
|
|
16996
|
+
dest: string;
|
|
16997
|
+
allowEmpty?: boolean | undefined;
|
|
16998
|
+
};
|
|
16999
|
+
type: "unwind";
|
|
17000
|
+
}[] | undefined;
|
|
17001
|
+
} | {
|
|
17002
|
+
options: {
|
|
17003
|
+
query?: string | undefined;
|
|
17004
|
+
privateKey?: string | undefined;
|
|
17005
|
+
table: string;
|
|
17006
|
+
dataset: string;
|
|
17007
|
+
clientEmail?: string | undefined;
|
|
17008
|
+
projectId?: string | undefined;
|
|
17009
|
+
tableProjectId?: string | undefined;
|
|
17010
|
+
timestampField?: string | undefined;
|
|
16119
17011
|
};
|
|
16120
|
-
type: "
|
|
17012
|
+
type: "bigquery";
|
|
16121
17013
|
preProcessingAggregations?: {
|
|
16122
17014
|
options: {
|
|
16123
17015
|
src: string;
|
|
@@ -16128,47 +17020,18 @@ export default class {
|
|
|
16128
17020
|
}[] | undefined;
|
|
16129
17021
|
} | {
|
|
16130
17022
|
options: {
|
|
16131
|
-
|
|
17023
|
+
query?: string | undefined;
|
|
16132
17024
|
username: string;
|
|
16133
|
-
password
|
|
16134
|
-
|
|
16135
|
-
|
|
16136
|
-
|
|
16137
|
-
|
|
16138
|
-
|
|
16139
|
-
|
|
16140
|
-
|
|
16141
|
-
type: "ndjson";
|
|
16142
|
-
} | {
|
|
16143
|
-
options: {
|
|
16144
|
-
rootPath: string;
|
|
16145
|
-
};
|
|
16146
|
-
type: "json";
|
|
16147
|
-
} | {
|
|
16148
|
-
options: {
|
|
16149
|
-
rootPath: string;
|
|
16150
|
-
};
|
|
16151
|
-
type: "xml";
|
|
16152
|
-
} | {
|
|
16153
|
-
options: unknown;
|
|
16154
|
-
type: "xlsx";
|
|
16155
|
-
} | {
|
|
16156
|
-
options: {
|
|
16157
|
-
version?: string | undefined;
|
|
16158
|
-
columnsList?: string[] | undefined;
|
|
16159
|
-
};
|
|
16160
|
-
type: "parquet";
|
|
16161
|
-
} | {
|
|
16162
|
-
options: unknown;
|
|
16163
|
-
type: "avro";
|
|
16164
|
-
} | undefined;
|
|
16165
|
-
textEncoding?: string | undefined;
|
|
16166
|
-
host: string;
|
|
16167
|
-
port: number;
|
|
16168
|
-
secure: boolean;
|
|
16169
|
-
processLastOnly?: boolean | undefined;
|
|
17025
|
+
password?: string | undefined;
|
|
17026
|
+
privateKey?: string | undefined;
|
|
17027
|
+
table: string;
|
|
17028
|
+
account: string;
|
|
17029
|
+
warehouse: string;
|
|
17030
|
+
schema: string;
|
|
17031
|
+
database: string;
|
|
17032
|
+
timestampColumn?: string | undefined;
|
|
16170
17033
|
};
|
|
16171
|
-
type: "
|
|
17034
|
+
type: "snowflake";
|
|
16172
17035
|
preProcessingAggregations?: {
|
|
16173
17036
|
options: {
|
|
16174
17037
|
src: string;
|
|
@@ -16180,8 +17043,7 @@ export default class {
|
|
|
16180
17043
|
} | {
|
|
16181
17044
|
options: {
|
|
16182
17045
|
path: string;
|
|
16183
|
-
|
|
16184
|
-
password?: string | undefined;
|
|
17046
|
+
bucket: string;
|
|
16185
17047
|
format?: {
|
|
16186
17048
|
options: {
|
|
16187
17049
|
csvDelimiter?: string | undefined;
|
|
@@ -16214,32 +17076,12 @@ export default class {
|
|
|
16214
17076
|
type: "avro";
|
|
16215
17077
|
} | undefined;
|
|
16216
17078
|
textEncoding?: string | undefined;
|
|
16217
|
-
host: string;
|
|
16218
|
-
port: number;
|
|
16219
17079
|
processLastOnly?: boolean | undefined;
|
|
16220
|
-
privateKey
|
|
16221
|
-
|
|
16222
|
-
|
|
16223
|
-
preProcessingAggregations?: {
|
|
16224
|
-
options: {
|
|
16225
|
-
src: string;
|
|
16226
|
-
dest: string;
|
|
16227
|
-
allowEmpty?: boolean | undefined;
|
|
16228
|
-
};
|
|
16229
|
-
type: "unwind";
|
|
16230
|
-
}[] | undefined;
|
|
16231
|
-
} | {
|
|
16232
|
-
options: {
|
|
16233
|
-
query?: string | undefined;
|
|
16234
|
-
privateKey?: string | undefined;
|
|
16235
|
-
table: string;
|
|
16236
|
-
dataset: string;
|
|
16237
|
-
clientEmail?: string | undefined;
|
|
16238
|
-
projectId?: string | undefined;
|
|
16239
|
-
tableProjectId?: string | undefined;
|
|
16240
|
-
timestampField?: string | undefined;
|
|
17080
|
+
privateKey: string;
|
|
17081
|
+
clientEmail: string;
|
|
17082
|
+
projectId: string;
|
|
16241
17083
|
};
|
|
16242
|
-
type: "
|
|
17084
|
+
type: "gcs";
|
|
16243
17085
|
preProcessingAggregations?: {
|
|
16244
17086
|
options: {
|
|
16245
17087
|
src: string;
|
|
@@ -16250,30 +17092,8 @@ export default class {
|
|
|
16250
17092
|
}[] | undefined;
|
|
16251
17093
|
} | {
|
|
16252
17094
|
options: {
|
|
16253
|
-
|
|
16254
|
-
username: string;
|
|
17095
|
+
username?: string | undefined;
|
|
16255
17096
|
password?: string | undefined;
|
|
16256
|
-
privateKey?: string | undefined;
|
|
16257
|
-
table: string;
|
|
16258
|
-
account: string;
|
|
16259
|
-
warehouse: string;
|
|
16260
|
-
schema: string;
|
|
16261
|
-
database: string;
|
|
16262
|
-
timestampColumn?: string | undefined;
|
|
16263
|
-
};
|
|
16264
|
-
type: "snowflake";
|
|
16265
|
-
preProcessingAggregations?: {
|
|
16266
|
-
options: {
|
|
16267
|
-
src: string;
|
|
16268
|
-
dest: string;
|
|
16269
|
-
allowEmpty?: boolean | undefined;
|
|
16270
|
-
};
|
|
16271
|
-
type: "unwind";
|
|
16272
|
-
}[] | undefined;
|
|
16273
|
-
} | {
|
|
16274
|
-
options: {
|
|
16275
|
-
path: string;
|
|
16276
|
-
bucket: string;
|
|
16277
17097
|
format?: {
|
|
16278
17098
|
options: {
|
|
16279
17099
|
csvDelimiter?: string | undefined;
|
|
@@ -16305,13 +17125,18 @@ export default class {
|
|
|
16305
17125
|
options: unknown;
|
|
16306
17126
|
type: "avro";
|
|
16307
17127
|
} | undefined;
|
|
16308
|
-
textEncoding
|
|
16309
|
-
|
|
16310
|
-
|
|
16311
|
-
|
|
16312
|
-
|
|
17128
|
+
textEncoding: string;
|
|
17129
|
+
brokers: string[];
|
|
17130
|
+
topic: string;
|
|
17131
|
+
groupPrefix?: string | undefined;
|
|
17132
|
+
ssl?: boolean | undefined;
|
|
17133
|
+
registry?: {
|
|
17134
|
+
url: string;
|
|
17135
|
+
username: string;
|
|
17136
|
+
password: string;
|
|
17137
|
+
} | undefined;
|
|
16313
17138
|
};
|
|
16314
|
-
type: "
|
|
17139
|
+
type: "kafka";
|
|
16315
17140
|
preProcessingAggregations?: {
|
|
16316
17141
|
options: {
|
|
16317
17142
|
src: string;
|
|
@@ -17123,105 +17948,160 @@ export default class {
|
|
|
17123
17948
|
options: unknown;
|
|
17124
17949
|
type: "avro";
|
|
17125
17950
|
} | undefined;
|
|
17126
|
-
textEncoding?: string | undefined;
|
|
17127
|
-
host: string;
|
|
17128
|
-
port: number;
|
|
17129
|
-
processLastOnly?: boolean | undefined;
|
|
17130
|
-
privateKey?: string | undefined;
|
|
17131
|
-
};
|
|
17132
|
-
type: "sftp";
|
|
17133
|
-
preProcessingAggregations?: {
|
|
17134
|
-
options: {
|
|
17135
|
-
src: string;
|
|
17136
|
-
dest: string;
|
|
17137
|
-
allowEmpty?: boolean | undefined;
|
|
17138
|
-
};
|
|
17139
|
-
type: "unwind";
|
|
17140
|
-
}[] | undefined;
|
|
17141
|
-
} | {
|
|
17142
|
-
options: {
|
|
17143
|
-
query?: string | undefined;
|
|
17144
|
-
privateKey?: string | undefined;
|
|
17145
|
-
table: string;
|
|
17146
|
-
dataset: string;
|
|
17147
|
-
clientEmail?: string | undefined;
|
|
17148
|
-
projectId?: string | undefined;
|
|
17149
|
-
tableProjectId?: string | undefined;
|
|
17150
|
-
timestampField?: string | undefined;
|
|
17151
|
-
};
|
|
17152
|
-
type: "bigquery";
|
|
17153
|
-
preProcessingAggregations?: {
|
|
17154
|
-
options: {
|
|
17155
|
-
src: string;
|
|
17156
|
-
dest: string;
|
|
17157
|
-
allowEmpty?: boolean | undefined;
|
|
17158
|
-
};
|
|
17159
|
-
type: "unwind";
|
|
17160
|
-
}[] | undefined;
|
|
17161
|
-
} | {
|
|
17162
|
-
options: {
|
|
17163
|
-
query?: string | undefined;
|
|
17164
|
-
username: string;
|
|
17165
|
-
password?: string | undefined;
|
|
17166
|
-
privateKey?: string | undefined;
|
|
17167
|
-
table: string;
|
|
17168
|
-
account: string;
|
|
17169
|
-
warehouse: string;
|
|
17170
|
-
schema: string;
|
|
17171
|
-
database: string;
|
|
17172
|
-
timestampColumn?: string | undefined;
|
|
17173
|
-
};
|
|
17174
|
-
type: "snowflake";
|
|
17175
|
-
preProcessingAggregations?: {
|
|
17176
|
-
options: {
|
|
17177
|
-
src: string;
|
|
17178
|
-
dest: string;
|
|
17179
|
-
allowEmpty?: boolean | undefined;
|
|
17180
|
-
};
|
|
17181
|
-
type: "unwind";
|
|
17182
|
-
}[] | undefined;
|
|
17183
|
-
} | {
|
|
17184
|
-
options: {
|
|
17185
|
-
path: string;
|
|
17186
|
-
bucket: string;
|
|
17187
|
-
format?: {
|
|
17188
|
-
options: {
|
|
17189
|
-
csvDelimiter?: string | undefined;
|
|
17190
|
-
};
|
|
17191
|
-
type: "csv";
|
|
17192
|
-
} | {
|
|
17193
|
-
options: unknown;
|
|
17194
|
-
type: "ndjson";
|
|
17195
|
-
} | {
|
|
17196
|
-
options: {
|
|
17197
|
-
rootPath: string;
|
|
17198
|
-
};
|
|
17199
|
-
type: "json";
|
|
17200
|
-
} | {
|
|
17201
|
-
options: {
|
|
17202
|
-
rootPath: string;
|
|
17203
|
-
};
|
|
17204
|
-
type: "xml";
|
|
17205
|
-
} | {
|
|
17206
|
-
options: unknown;
|
|
17207
|
-
type: "xlsx";
|
|
17208
|
-
} | {
|
|
17209
|
-
options: {
|
|
17210
|
-
version?: string | undefined;
|
|
17211
|
-
columnsList?: string[] | undefined;
|
|
17212
|
-
};
|
|
17213
|
-
type: "parquet";
|
|
17214
|
-
} | {
|
|
17215
|
-
options: unknown;
|
|
17216
|
-
type: "avro";
|
|
17951
|
+
textEncoding?: string | undefined;
|
|
17952
|
+
host: string;
|
|
17953
|
+
port: number;
|
|
17954
|
+
processLastOnly?: boolean | undefined;
|
|
17955
|
+
privateKey?: string | undefined;
|
|
17956
|
+
};
|
|
17957
|
+
type: "sftp";
|
|
17958
|
+
preProcessingAggregations?: {
|
|
17959
|
+
options: {
|
|
17960
|
+
src: string;
|
|
17961
|
+
dest: string;
|
|
17962
|
+
allowEmpty?: boolean | undefined;
|
|
17963
|
+
};
|
|
17964
|
+
type: "unwind";
|
|
17965
|
+
}[] | undefined;
|
|
17966
|
+
} | {
|
|
17967
|
+
options: {
|
|
17968
|
+
query?: string | undefined;
|
|
17969
|
+
privateKey?: string | undefined;
|
|
17970
|
+
table: string;
|
|
17971
|
+
dataset: string;
|
|
17972
|
+
clientEmail?: string | undefined;
|
|
17973
|
+
projectId?: string | undefined;
|
|
17974
|
+
tableProjectId?: string | undefined;
|
|
17975
|
+
timestampField?: string | undefined;
|
|
17976
|
+
};
|
|
17977
|
+
type: "bigquery";
|
|
17978
|
+
preProcessingAggregations?: {
|
|
17979
|
+
options: {
|
|
17980
|
+
src: string;
|
|
17981
|
+
dest: string;
|
|
17982
|
+
allowEmpty?: boolean | undefined;
|
|
17983
|
+
};
|
|
17984
|
+
type: "unwind";
|
|
17985
|
+
}[] | undefined;
|
|
17986
|
+
} | {
|
|
17987
|
+
options: {
|
|
17988
|
+
query?: string | undefined;
|
|
17989
|
+
username: string;
|
|
17990
|
+
password?: string | undefined;
|
|
17991
|
+
privateKey?: string | undefined;
|
|
17992
|
+
table: string;
|
|
17993
|
+
account: string;
|
|
17994
|
+
warehouse: string;
|
|
17995
|
+
schema: string;
|
|
17996
|
+
database: string;
|
|
17997
|
+
timestampColumn?: string | undefined;
|
|
17998
|
+
};
|
|
17999
|
+
type: "snowflake";
|
|
18000
|
+
preProcessingAggregations?: {
|
|
18001
|
+
options: {
|
|
18002
|
+
src: string;
|
|
18003
|
+
dest: string;
|
|
18004
|
+
allowEmpty?: boolean | undefined;
|
|
18005
|
+
};
|
|
18006
|
+
type: "unwind";
|
|
18007
|
+
}[] | undefined;
|
|
18008
|
+
} | {
|
|
18009
|
+
options: {
|
|
18010
|
+
path: string;
|
|
18011
|
+
bucket: string;
|
|
18012
|
+
format?: {
|
|
18013
|
+
options: {
|
|
18014
|
+
csvDelimiter?: string | undefined;
|
|
18015
|
+
};
|
|
18016
|
+
type: "csv";
|
|
18017
|
+
} | {
|
|
18018
|
+
options: unknown;
|
|
18019
|
+
type: "ndjson";
|
|
18020
|
+
} | {
|
|
18021
|
+
options: {
|
|
18022
|
+
rootPath: string;
|
|
18023
|
+
};
|
|
18024
|
+
type: "json";
|
|
18025
|
+
} | {
|
|
18026
|
+
options: {
|
|
18027
|
+
rootPath: string;
|
|
18028
|
+
};
|
|
18029
|
+
type: "xml";
|
|
18030
|
+
} | {
|
|
18031
|
+
options: unknown;
|
|
18032
|
+
type: "xlsx";
|
|
18033
|
+
} | {
|
|
18034
|
+
options: {
|
|
18035
|
+
version?: string | undefined;
|
|
18036
|
+
columnsList?: string[] | undefined;
|
|
18037
|
+
};
|
|
18038
|
+
type: "parquet";
|
|
18039
|
+
} | {
|
|
18040
|
+
options: unknown;
|
|
18041
|
+
type: "avro";
|
|
18042
|
+
} | undefined;
|
|
18043
|
+
textEncoding?: string | undefined;
|
|
18044
|
+
processLastOnly?: boolean | undefined;
|
|
18045
|
+
privateKey: string;
|
|
18046
|
+
clientEmail: string;
|
|
18047
|
+
projectId: string;
|
|
18048
|
+
};
|
|
18049
|
+
type: "gcs";
|
|
18050
|
+
preProcessingAggregations?: {
|
|
18051
|
+
options: {
|
|
18052
|
+
src: string;
|
|
18053
|
+
dest: string;
|
|
18054
|
+
allowEmpty?: boolean | undefined;
|
|
18055
|
+
};
|
|
18056
|
+
type: "unwind";
|
|
18057
|
+
}[] | undefined;
|
|
18058
|
+
} | {
|
|
18059
|
+
options: {
|
|
18060
|
+
username?: string | undefined;
|
|
18061
|
+
password?: string | undefined;
|
|
18062
|
+
format?: {
|
|
18063
|
+
options: {
|
|
18064
|
+
csvDelimiter?: string | undefined;
|
|
18065
|
+
};
|
|
18066
|
+
type: "csv";
|
|
18067
|
+
} | {
|
|
18068
|
+
options: unknown;
|
|
18069
|
+
type: "ndjson";
|
|
18070
|
+
} | {
|
|
18071
|
+
options: {
|
|
18072
|
+
rootPath: string;
|
|
18073
|
+
};
|
|
18074
|
+
type: "json";
|
|
18075
|
+
} | {
|
|
18076
|
+
options: {
|
|
18077
|
+
rootPath: string;
|
|
18078
|
+
};
|
|
18079
|
+
type: "xml";
|
|
18080
|
+
} | {
|
|
18081
|
+
options: unknown;
|
|
18082
|
+
type: "xlsx";
|
|
18083
|
+
} | {
|
|
18084
|
+
options: {
|
|
18085
|
+
version?: string | undefined;
|
|
18086
|
+
columnsList?: string[] | undefined;
|
|
18087
|
+
};
|
|
18088
|
+
type: "parquet";
|
|
18089
|
+
} | {
|
|
18090
|
+
options: unknown;
|
|
18091
|
+
type: "avro";
|
|
18092
|
+
} | undefined;
|
|
18093
|
+
textEncoding: string;
|
|
18094
|
+
brokers: string[];
|
|
18095
|
+
topic: string;
|
|
18096
|
+
groupPrefix?: string | undefined;
|
|
18097
|
+
ssl?: boolean | undefined;
|
|
18098
|
+
registry?: {
|
|
18099
|
+
url: string;
|
|
18100
|
+
username: string;
|
|
18101
|
+
password: string;
|
|
17217
18102
|
} | undefined;
|
|
17218
|
-
textEncoding?: string | undefined;
|
|
17219
|
-
processLastOnly?: boolean | undefined;
|
|
17220
|
-
privateKey: string;
|
|
17221
|
-
clientEmail: string;
|
|
17222
|
-
projectId: string;
|
|
17223
18103
|
};
|
|
17224
|
-
type: "
|
|
18104
|
+
type: "kafka";
|
|
17225
18105
|
preProcessingAggregations?: {
|
|
17226
18106
|
options: {
|
|
17227
18107
|
src: string;
|
|
@@ -18105,20 +18985,168 @@ export default class {
|
|
|
18105
18985
|
} | undefined;
|
|
18106
18986
|
textEncoding?: string | undefined;
|
|
18107
18987
|
};
|
|
18108
|
-
type: "url";
|
|
18109
|
-
preProcessingAggregations?: {
|
|
18110
|
-
options: {
|
|
18111
|
-
src: string;
|
|
18112
|
-
dest: string;
|
|
18113
|
-
allowEmpty?: boolean | undefined;
|
|
18114
|
-
};
|
|
18115
|
-
type: "unwind";
|
|
18116
|
-
}[] | undefined;
|
|
18117
|
-
} | {
|
|
18118
|
-
options: {
|
|
18119
|
-
id: string;
|
|
18120
|
-
};
|
|
18121
|
-
type: "datasource";
|
|
18988
|
+
type: "url";
|
|
18989
|
+
preProcessingAggregations?: {
|
|
18990
|
+
options: {
|
|
18991
|
+
src: string;
|
|
18992
|
+
dest: string;
|
|
18993
|
+
allowEmpty?: boolean | undefined;
|
|
18994
|
+
};
|
|
18995
|
+
type: "unwind";
|
|
18996
|
+
}[] | undefined;
|
|
18997
|
+
} | {
|
|
18998
|
+
options: {
|
|
18999
|
+
id: string;
|
|
19000
|
+
};
|
|
19001
|
+
type: "datasource";
|
|
19002
|
+
preProcessingAggregations?: {
|
|
19003
|
+
options: {
|
|
19004
|
+
src: string;
|
|
19005
|
+
dest: string;
|
|
19006
|
+
allowEmpty?: boolean | undefined;
|
|
19007
|
+
};
|
|
19008
|
+
type: "unwind";
|
|
19009
|
+
}[] | undefined;
|
|
19010
|
+
} | {
|
|
19011
|
+
options: {
|
|
19012
|
+
path: string;
|
|
19013
|
+
bucket: string;
|
|
19014
|
+
format: {
|
|
19015
|
+
options: {
|
|
19016
|
+
csvDelimiter?: string | undefined;
|
|
19017
|
+
};
|
|
19018
|
+
type: "csv";
|
|
19019
|
+
} | {
|
|
19020
|
+
options: unknown;
|
|
19021
|
+
type: "ndjson";
|
|
19022
|
+
} | {
|
|
19023
|
+
options: {
|
|
19024
|
+
rootPath: string;
|
|
19025
|
+
};
|
|
19026
|
+
type: "json";
|
|
19027
|
+
} | {
|
|
19028
|
+
options: {
|
|
19029
|
+
rootPath: string;
|
|
19030
|
+
};
|
|
19031
|
+
type: "xml";
|
|
19032
|
+
} | {
|
|
19033
|
+
options: unknown;
|
|
19034
|
+
type: "xlsx";
|
|
19035
|
+
} | {
|
|
19036
|
+
options: {
|
|
19037
|
+
version?: string | undefined;
|
|
19038
|
+
columnsList?: string[] | undefined;
|
|
19039
|
+
};
|
|
19040
|
+
type: "parquet";
|
|
19041
|
+
} | {
|
|
19042
|
+
options: unknown;
|
|
19043
|
+
type: "avro";
|
|
19044
|
+
};
|
|
19045
|
+
textEncoding: string;
|
|
19046
|
+
};
|
|
19047
|
+
type: "file";
|
|
19048
|
+
preProcessingAggregations?: {
|
|
19049
|
+
options: {
|
|
19050
|
+
src: string;
|
|
19051
|
+
dest: string;
|
|
19052
|
+
allowEmpty?: boolean | undefined;
|
|
19053
|
+
};
|
|
19054
|
+
type: "unwind";
|
|
19055
|
+
}[] | undefined;
|
|
19056
|
+
} | {
|
|
19057
|
+
options: {
|
|
19058
|
+
path: string;
|
|
19059
|
+
username: string;
|
|
19060
|
+
password: string;
|
|
19061
|
+
format?: {
|
|
19062
|
+
options: {
|
|
19063
|
+
csvDelimiter?: string | undefined;
|
|
19064
|
+
};
|
|
19065
|
+
type: "csv";
|
|
19066
|
+
} | {
|
|
19067
|
+
options: unknown;
|
|
19068
|
+
type: "ndjson";
|
|
19069
|
+
} | {
|
|
19070
|
+
options: {
|
|
19071
|
+
rootPath: string;
|
|
19072
|
+
};
|
|
19073
|
+
type: "json";
|
|
19074
|
+
} | {
|
|
19075
|
+
options: {
|
|
19076
|
+
rootPath: string;
|
|
19077
|
+
};
|
|
19078
|
+
type: "xml";
|
|
19079
|
+
} | {
|
|
19080
|
+
options: unknown;
|
|
19081
|
+
type: "xlsx";
|
|
19082
|
+
} | {
|
|
19083
|
+
options: {
|
|
19084
|
+
version?: string | undefined;
|
|
19085
|
+
columnsList?: string[] | undefined;
|
|
19086
|
+
};
|
|
19087
|
+
type: "parquet";
|
|
19088
|
+
} | {
|
|
19089
|
+
options: unknown;
|
|
19090
|
+
type: "avro";
|
|
19091
|
+
} | undefined;
|
|
19092
|
+
textEncoding?: string | undefined;
|
|
19093
|
+
host: string;
|
|
19094
|
+
port: number;
|
|
19095
|
+
secure: boolean;
|
|
19096
|
+
processLastOnly?: boolean | undefined;
|
|
19097
|
+
};
|
|
19098
|
+
type: "ftp";
|
|
19099
|
+
preProcessingAggregations?: {
|
|
19100
|
+
options: {
|
|
19101
|
+
src: string;
|
|
19102
|
+
dest: string;
|
|
19103
|
+
allowEmpty?: boolean | undefined;
|
|
19104
|
+
};
|
|
19105
|
+
type: "unwind";
|
|
19106
|
+
}[] | undefined;
|
|
19107
|
+
} | {
|
|
19108
|
+
options: {
|
|
19109
|
+
path: string;
|
|
19110
|
+
username: string;
|
|
19111
|
+
password?: string | undefined;
|
|
19112
|
+
format?: {
|
|
19113
|
+
options: {
|
|
19114
|
+
csvDelimiter?: string | undefined;
|
|
19115
|
+
};
|
|
19116
|
+
type: "csv";
|
|
19117
|
+
} | {
|
|
19118
|
+
options: unknown;
|
|
19119
|
+
type: "ndjson";
|
|
19120
|
+
} | {
|
|
19121
|
+
options: {
|
|
19122
|
+
rootPath: string;
|
|
19123
|
+
};
|
|
19124
|
+
type: "json";
|
|
19125
|
+
} | {
|
|
19126
|
+
options: {
|
|
19127
|
+
rootPath: string;
|
|
19128
|
+
};
|
|
19129
|
+
type: "xml";
|
|
19130
|
+
} | {
|
|
19131
|
+
options: unknown;
|
|
19132
|
+
type: "xlsx";
|
|
19133
|
+
} | {
|
|
19134
|
+
options: {
|
|
19135
|
+
version?: string | undefined;
|
|
19136
|
+
columnsList?: string[] | undefined;
|
|
19137
|
+
};
|
|
19138
|
+
type: "parquet";
|
|
19139
|
+
} | {
|
|
19140
|
+
options: unknown;
|
|
19141
|
+
type: "avro";
|
|
19142
|
+
} | undefined;
|
|
19143
|
+
textEncoding?: string | undefined;
|
|
19144
|
+
host: string;
|
|
19145
|
+
port: number;
|
|
19146
|
+
processLastOnly?: boolean | undefined;
|
|
19147
|
+
privateKey?: string | undefined;
|
|
19148
|
+
};
|
|
19149
|
+
type: "sftp";
|
|
18122
19150
|
preProcessingAggregations?: {
|
|
18123
19151
|
options: {
|
|
18124
19152
|
src: string;
|
|
@@ -18129,42 +19157,16 @@ export default class {
|
|
|
18129
19157
|
}[] | undefined;
|
|
18130
19158
|
} | {
|
|
18131
19159
|
options: {
|
|
18132
|
-
|
|
18133
|
-
|
|
18134
|
-
|
|
18135
|
-
|
|
18136
|
-
|
|
18137
|
-
|
|
18138
|
-
|
|
18139
|
-
|
|
18140
|
-
options: unknown;
|
|
18141
|
-
type: "ndjson";
|
|
18142
|
-
} | {
|
|
18143
|
-
options: {
|
|
18144
|
-
rootPath: string;
|
|
18145
|
-
};
|
|
18146
|
-
type: "json";
|
|
18147
|
-
} | {
|
|
18148
|
-
options: {
|
|
18149
|
-
rootPath: string;
|
|
18150
|
-
};
|
|
18151
|
-
type: "xml";
|
|
18152
|
-
} | {
|
|
18153
|
-
options: unknown;
|
|
18154
|
-
type: "xlsx";
|
|
18155
|
-
} | {
|
|
18156
|
-
options: {
|
|
18157
|
-
version?: string | undefined;
|
|
18158
|
-
columnsList?: string[] | undefined;
|
|
18159
|
-
};
|
|
18160
|
-
type: "parquet";
|
|
18161
|
-
} | {
|
|
18162
|
-
options: unknown;
|
|
18163
|
-
type: "avro";
|
|
18164
|
-
};
|
|
18165
|
-
textEncoding: string;
|
|
19160
|
+
query?: string | undefined;
|
|
19161
|
+
privateKey?: string | undefined;
|
|
19162
|
+
table: string;
|
|
19163
|
+
dataset: string;
|
|
19164
|
+
clientEmail?: string | undefined;
|
|
19165
|
+
projectId?: string | undefined;
|
|
19166
|
+
tableProjectId?: string | undefined;
|
|
19167
|
+
timestampField?: string | undefined;
|
|
18166
19168
|
};
|
|
18167
|
-
type: "
|
|
19169
|
+
type: "bigquery";
|
|
18168
19170
|
preProcessingAggregations?: {
|
|
18169
19171
|
options: {
|
|
18170
19172
|
src: string;
|
|
@@ -18175,47 +19177,18 @@ export default class {
|
|
|
18175
19177
|
}[] | undefined;
|
|
18176
19178
|
} | {
|
|
18177
19179
|
options: {
|
|
18178
|
-
|
|
19180
|
+
query?: string | undefined;
|
|
18179
19181
|
username: string;
|
|
18180
|
-
password
|
|
18181
|
-
|
|
18182
|
-
|
|
18183
|
-
|
|
18184
|
-
|
|
18185
|
-
|
|
18186
|
-
|
|
18187
|
-
|
|
18188
|
-
type: "ndjson";
|
|
18189
|
-
} | {
|
|
18190
|
-
options: {
|
|
18191
|
-
rootPath: string;
|
|
18192
|
-
};
|
|
18193
|
-
type: "json";
|
|
18194
|
-
} | {
|
|
18195
|
-
options: {
|
|
18196
|
-
rootPath: string;
|
|
18197
|
-
};
|
|
18198
|
-
type: "xml";
|
|
18199
|
-
} | {
|
|
18200
|
-
options: unknown;
|
|
18201
|
-
type: "xlsx";
|
|
18202
|
-
} | {
|
|
18203
|
-
options: {
|
|
18204
|
-
version?: string | undefined;
|
|
18205
|
-
columnsList?: string[] | undefined;
|
|
18206
|
-
};
|
|
18207
|
-
type: "parquet";
|
|
18208
|
-
} | {
|
|
18209
|
-
options: unknown;
|
|
18210
|
-
type: "avro";
|
|
18211
|
-
} | undefined;
|
|
18212
|
-
textEncoding?: string | undefined;
|
|
18213
|
-
host: string;
|
|
18214
|
-
port: number;
|
|
18215
|
-
secure: boolean;
|
|
18216
|
-
processLastOnly?: boolean | undefined;
|
|
19182
|
+
password?: string | undefined;
|
|
19183
|
+
privateKey?: string | undefined;
|
|
19184
|
+
table: string;
|
|
19185
|
+
account: string;
|
|
19186
|
+
warehouse: string;
|
|
19187
|
+
schema: string;
|
|
19188
|
+
database: string;
|
|
19189
|
+
timestampColumn?: string | undefined;
|
|
18217
19190
|
};
|
|
18218
|
-
type: "
|
|
19191
|
+
type: "snowflake";
|
|
18219
19192
|
preProcessingAggregations?: {
|
|
18220
19193
|
options: {
|
|
18221
19194
|
src: string;
|
|
@@ -18227,8 +19200,7 @@ export default class {
|
|
|
18227
19200
|
} | {
|
|
18228
19201
|
options: {
|
|
18229
19202
|
path: string;
|
|
18230
|
-
|
|
18231
|
-
password?: string | undefined;
|
|
19203
|
+
bucket: string;
|
|
18232
19204
|
format?: {
|
|
18233
19205
|
options: {
|
|
18234
19206
|
csvDelimiter?: string | undefined;
|
|
@@ -18261,32 +19233,12 @@ export default class {
|
|
|
18261
19233
|
type: "avro";
|
|
18262
19234
|
} | undefined;
|
|
18263
19235
|
textEncoding?: string | undefined;
|
|
18264
|
-
host: string;
|
|
18265
|
-
port: number;
|
|
18266
19236
|
processLastOnly?: boolean | undefined;
|
|
18267
|
-
privateKey
|
|
18268
|
-
|
|
18269
|
-
|
|
18270
|
-
preProcessingAggregations?: {
|
|
18271
|
-
options: {
|
|
18272
|
-
src: string;
|
|
18273
|
-
dest: string;
|
|
18274
|
-
allowEmpty?: boolean | undefined;
|
|
18275
|
-
};
|
|
18276
|
-
type: "unwind";
|
|
18277
|
-
}[] | undefined;
|
|
18278
|
-
} | {
|
|
18279
|
-
options: {
|
|
18280
|
-
query?: string | undefined;
|
|
18281
|
-
privateKey?: string | undefined;
|
|
18282
|
-
table: string;
|
|
18283
|
-
dataset: string;
|
|
18284
|
-
clientEmail?: string | undefined;
|
|
18285
|
-
projectId?: string | undefined;
|
|
18286
|
-
tableProjectId?: string | undefined;
|
|
18287
|
-
timestampField?: string | undefined;
|
|
19237
|
+
privateKey: string;
|
|
19238
|
+
clientEmail: string;
|
|
19239
|
+
projectId: string;
|
|
18288
19240
|
};
|
|
18289
|
-
type: "
|
|
19241
|
+
type: "gcs";
|
|
18290
19242
|
preProcessingAggregations?: {
|
|
18291
19243
|
options: {
|
|
18292
19244
|
src: string;
|
|
@@ -18297,30 +19249,8 @@ export default class {
|
|
|
18297
19249
|
}[] | undefined;
|
|
18298
19250
|
} | {
|
|
18299
19251
|
options: {
|
|
18300
|
-
|
|
18301
|
-
username: string;
|
|
19252
|
+
username?: string | undefined;
|
|
18302
19253
|
password?: string | undefined;
|
|
18303
|
-
privateKey?: string | undefined;
|
|
18304
|
-
table: string;
|
|
18305
|
-
account: string;
|
|
18306
|
-
warehouse: string;
|
|
18307
|
-
schema: string;
|
|
18308
|
-
database: string;
|
|
18309
|
-
timestampColumn?: string | undefined;
|
|
18310
|
-
};
|
|
18311
|
-
type: "snowflake";
|
|
18312
|
-
preProcessingAggregations?: {
|
|
18313
|
-
options: {
|
|
18314
|
-
src: string;
|
|
18315
|
-
dest: string;
|
|
18316
|
-
allowEmpty?: boolean | undefined;
|
|
18317
|
-
};
|
|
18318
|
-
type: "unwind";
|
|
18319
|
-
}[] | undefined;
|
|
18320
|
-
} | {
|
|
18321
|
-
options: {
|
|
18322
|
-
path: string;
|
|
18323
|
-
bucket: string;
|
|
18324
19254
|
format?: {
|
|
18325
19255
|
options: {
|
|
18326
19256
|
csvDelimiter?: string | undefined;
|
|
@@ -18352,13 +19282,18 @@ export default class {
|
|
|
18352
19282
|
options: unknown;
|
|
18353
19283
|
type: "avro";
|
|
18354
19284
|
} | undefined;
|
|
18355
|
-
textEncoding
|
|
18356
|
-
|
|
18357
|
-
|
|
18358
|
-
|
|
18359
|
-
|
|
19285
|
+
textEncoding: string;
|
|
19286
|
+
brokers: string[];
|
|
19287
|
+
topic: string;
|
|
19288
|
+
groupPrefix?: string | undefined;
|
|
19289
|
+
ssl?: boolean | undefined;
|
|
19290
|
+
registry?: {
|
|
19291
|
+
url: string;
|
|
19292
|
+
username: string;
|
|
19293
|
+
password: string;
|
|
19294
|
+
} | undefined;
|
|
18360
19295
|
};
|
|
18361
|
-
type: "
|
|
19296
|
+
type: "kafka";
|
|
18362
19297
|
preProcessingAggregations?: {
|
|
18363
19298
|
options: {
|
|
18364
19299
|
src: string;
|
|
@@ -19277,6 +20212,61 @@ export default class {
|
|
|
19277
20212
|
};
|
|
19278
20213
|
type: "unwind";
|
|
19279
20214
|
}[] | undefined;
|
|
20215
|
+
} | {
|
|
20216
|
+
options: {
|
|
20217
|
+
username?: string | undefined;
|
|
20218
|
+
password?: string | undefined;
|
|
20219
|
+
format?: {
|
|
20220
|
+
options: {
|
|
20221
|
+
csvDelimiter?: string | undefined;
|
|
20222
|
+
};
|
|
20223
|
+
type: "csv";
|
|
20224
|
+
} | {
|
|
20225
|
+
options: unknown;
|
|
20226
|
+
type: "ndjson";
|
|
20227
|
+
} | {
|
|
20228
|
+
options: {
|
|
20229
|
+
rootPath: string;
|
|
20230
|
+
};
|
|
20231
|
+
type: "json";
|
|
20232
|
+
} | {
|
|
20233
|
+
options: {
|
|
20234
|
+
rootPath: string;
|
|
20235
|
+
};
|
|
20236
|
+
type: "xml";
|
|
20237
|
+
} | {
|
|
20238
|
+
options: unknown;
|
|
20239
|
+
type: "xlsx";
|
|
20240
|
+
} | {
|
|
20241
|
+
options: {
|
|
20242
|
+
version?: string | undefined;
|
|
20243
|
+
columnsList?: string[] | undefined;
|
|
20244
|
+
};
|
|
20245
|
+
type: "parquet";
|
|
20246
|
+
} | {
|
|
20247
|
+
options: unknown;
|
|
20248
|
+
type: "avro";
|
|
20249
|
+
} | undefined;
|
|
20250
|
+
textEncoding: string;
|
|
20251
|
+
brokers: string[];
|
|
20252
|
+
topic: string;
|
|
20253
|
+
groupPrefix?: string | undefined;
|
|
20254
|
+
ssl?: boolean | undefined;
|
|
20255
|
+
registry?: {
|
|
20256
|
+
url: string;
|
|
20257
|
+
username: string;
|
|
20258
|
+
password: string;
|
|
20259
|
+
} | undefined;
|
|
20260
|
+
};
|
|
20261
|
+
type: "kafka";
|
|
20262
|
+
preProcessingAggregations?: {
|
|
20263
|
+
options: {
|
|
20264
|
+
src: string;
|
|
20265
|
+
dest: string;
|
|
20266
|
+
allowEmpty?: boolean | undefined;
|
|
20267
|
+
};
|
|
20268
|
+
type: "unwind";
|
|
20269
|
+
}[] | undefined;
|
|
19280
20270
|
};
|
|
19281
20271
|
fieldsRules?: {
|
|
19282
20272
|
[x: string]: ({
|
|
@@ -20735,13 +21725,68 @@ export default class {
|
|
|
20735
21725
|
options: unknown;
|
|
20736
21726
|
type: "avro";
|
|
20737
21727
|
} | undefined;
|
|
20738
|
-
textEncoding?: string | undefined;
|
|
20739
|
-
processLastOnly?: boolean | undefined;
|
|
20740
|
-
privateKey: string;
|
|
20741
|
-
clientEmail: string;
|
|
20742
|
-
projectId: string;
|
|
21728
|
+
textEncoding?: string | undefined;
|
|
21729
|
+
processLastOnly?: boolean | undefined;
|
|
21730
|
+
privateKey: string;
|
|
21731
|
+
clientEmail: string;
|
|
21732
|
+
projectId: string;
|
|
21733
|
+
};
|
|
21734
|
+
type: "gcs";
|
|
21735
|
+
preProcessingAggregations?: {
|
|
21736
|
+
options: {
|
|
21737
|
+
src: string;
|
|
21738
|
+
dest: string;
|
|
21739
|
+
allowEmpty?: boolean | undefined;
|
|
21740
|
+
};
|
|
21741
|
+
type: "unwind";
|
|
21742
|
+
}[] | undefined;
|
|
21743
|
+
} | {
|
|
21744
|
+
options: {
|
|
21745
|
+
username?: string | undefined;
|
|
21746
|
+
password?: string | undefined;
|
|
21747
|
+
format?: {
|
|
21748
|
+
options: {
|
|
21749
|
+
csvDelimiter?: string | undefined;
|
|
21750
|
+
};
|
|
21751
|
+
type: "csv";
|
|
21752
|
+
} | {
|
|
21753
|
+
options: unknown;
|
|
21754
|
+
type: "ndjson";
|
|
21755
|
+
} | {
|
|
21756
|
+
options: {
|
|
21757
|
+
rootPath: string;
|
|
21758
|
+
};
|
|
21759
|
+
type: "json";
|
|
21760
|
+
} | {
|
|
21761
|
+
options: {
|
|
21762
|
+
rootPath: string;
|
|
21763
|
+
};
|
|
21764
|
+
type: "xml";
|
|
21765
|
+
} | {
|
|
21766
|
+
options: unknown;
|
|
21767
|
+
type: "xlsx";
|
|
21768
|
+
} | {
|
|
21769
|
+
options: {
|
|
21770
|
+
version?: string | undefined;
|
|
21771
|
+
columnsList?: string[] | undefined;
|
|
21772
|
+
};
|
|
21773
|
+
type: "parquet";
|
|
21774
|
+
} | {
|
|
21775
|
+
options: unknown;
|
|
21776
|
+
type: "avro";
|
|
21777
|
+
} | undefined;
|
|
21778
|
+
textEncoding: string;
|
|
21779
|
+
brokers: string[];
|
|
21780
|
+
topic: string;
|
|
21781
|
+
groupPrefix?: string | undefined;
|
|
21782
|
+
ssl?: boolean | undefined;
|
|
21783
|
+
registry?: {
|
|
21784
|
+
url: string;
|
|
21785
|
+
username: string;
|
|
21786
|
+
password: string;
|
|
21787
|
+
} | undefined;
|
|
20743
21788
|
};
|
|
20744
|
-
type: "
|
|
21789
|
+
type: "kafka";
|
|
20745
21790
|
preProcessingAggregations?: {
|
|
20746
21791
|
options: {
|
|
20747
21792
|
src: string;
|
|
@@ -21660,6 +22705,61 @@ export default class {
|
|
|
21660
22705
|
};
|
|
21661
22706
|
type: "unwind";
|
|
21662
22707
|
}[] | undefined;
|
|
22708
|
+
} | {
|
|
22709
|
+
options: {
|
|
22710
|
+
username?: string | undefined;
|
|
22711
|
+
password?: string | undefined;
|
|
22712
|
+
format?: {
|
|
22713
|
+
options: {
|
|
22714
|
+
csvDelimiter?: string | undefined;
|
|
22715
|
+
};
|
|
22716
|
+
type: "csv";
|
|
22717
|
+
} | {
|
|
22718
|
+
options: unknown;
|
|
22719
|
+
type: "ndjson";
|
|
22720
|
+
} | {
|
|
22721
|
+
options: {
|
|
22722
|
+
rootPath: string;
|
|
22723
|
+
};
|
|
22724
|
+
type: "json";
|
|
22725
|
+
} | {
|
|
22726
|
+
options: {
|
|
22727
|
+
rootPath: string;
|
|
22728
|
+
};
|
|
22729
|
+
type: "xml";
|
|
22730
|
+
} | {
|
|
22731
|
+
options: unknown;
|
|
22732
|
+
type: "xlsx";
|
|
22733
|
+
} | {
|
|
22734
|
+
options: {
|
|
22735
|
+
version?: string | undefined;
|
|
22736
|
+
columnsList?: string[] | undefined;
|
|
22737
|
+
};
|
|
22738
|
+
type: "parquet";
|
|
22739
|
+
} | {
|
|
22740
|
+
options: unknown;
|
|
22741
|
+
type: "avro";
|
|
22742
|
+
} | undefined;
|
|
22743
|
+
textEncoding: string;
|
|
22744
|
+
brokers: string[];
|
|
22745
|
+
topic: string;
|
|
22746
|
+
groupPrefix?: string | undefined;
|
|
22747
|
+
ssl?: boolean | undefined;
|
|
22748
|
+
registry?: {
|
|
22749
|
+
url: string;
|
|
22750
|
+
username: string;
|
|
22751
|
+
password: string;
|
|
22752
|
+
} | undefined;
|
|
22753
|
+
};
|
|
22754
|
+
type: "kafka";
|
|
22755
|
+
preProcessingAggregations?: {
|
|
22756
|
+
options: {
|
|
22757
|
+
src: string;
|
|
22758
|
+
dest: string;
|
|
22759
|
+
allowEmpty?: boolean | undefined;
|
|
22760
|
+
};
|
|
22761
|
+
type: "unwind";
|
|
22762
|
+
}[] | undefined;
|
|
21663
22763
|
};
|
|
21664
22764
|
fieldsRules?: {
|
|
21665
22765
|
[x: string]: ({
|
|
@@ -23069,6 +24169,61 @@ export default class {
|
|
|
23069
24169
|
};
|
|
23070
24170
|
type: "unwind";
|
|
23071
24171
|
}[] | undefined;
|
|
24172
|
+
} | {
|
|
24173
|
+
options: {
|
|
24174
|
+
username?: string | undefined;
|
|
24175
|
+
password?: string | undefined;
|
|
24176
|
+
format?: {
|
|
24177
|
+
options: {
|
|
24178
|
+
csvDelimiter?: string | undefined;
|
|
24179
|
+
};
|
|
24180
|
+
type: "csv";
|
|
24181
|
+
} | {
|
|
24182
|
+
options: unknown;
|
|
24183
|
+
type: "ndjson";
|
|
24184
|
+
} | {
|
|
24185
|
+
options: {
|
|
24186
|
+
rootPath: string;
|
|
24187
|
+
};
|
|
24188
|
+
type: "json";
|
|
24189
|
+
} | {
|
|
24190
|
+
options: {
|
|
24191
|
+
rootPath: string;
|
|
24192
|
+
};
|
|
24193
|
+
type: "xml";
|
|
24194
|
+
} | {
|
|
24195
|
+
options: unknown;
|
|
24196
|
+
type: "xlsx";
|
|
24197
|
+
} | {
|
|
24198
|
+
options: {
|
|
24199
|
+
version?: string | undefined;
|
|
24200
|
+
columnsList?: string[] | undefined;
|
|
24201
|
+
};
|
|
24202
|
+
type: "parquet";
|
|
24203
|
+
} | {
|
|
24204
|
+
options: unknown;
|
|
24205
|
+
type: "avro";
|
|
24206
|
+
} | undefined;
|
|
24207
|
+
textEncoding: string;
|
|
24208
|
+
brokers: string[];
|
|
24209
|
+
topic: string;
|
|
24210
|
+
groupPrefix?: string | undefined;
|
|
24211
|
+
ssl?: boolean | undefined;
|
|
24212
|
+
registry?: {
|
|
24213
|
+
url: string;
|
|
24214
|
+
username: string;
|
|
24215
|
+
password: string;
|
|
24216
|
+
} | undefined;
|
|
24217
|
+
};
|
|
24218
|
+
type: "kafka";
|
|
24219
|
+
preProcessingAggregations?: {
|
|
24220
|
+
options: {
|
|
24221
|
+
src: string;
|
|
24222
|
+
dest: string;
|
|
24223
|
+
allowEmpty?: boolean | undefined;
|
|
24224
|
+
};
|
|
24225
|
+
type: "unwind";
|
|
24226
|
+
}[] | undefined;
|
|
23072
24227
|
};
|
|
23073
24228
|
fieldsRules?: {
|
|
23074
24229
|
[x: string]: ({
|
|
@@ -23717,20 +24872,168 @@ export default class {
|
|
|
23717
24872
|
} | undefined;
|
|
23718
24873
|
textEncoding?: string | undefined;
|
|
23719
24874
|
};
|
|
23720
|
-
type: "url";
|
|
23721
|
-
preProcessingAggregations?: {
|
|
23722
|
-
options: {
|
|
23723
|
-
src: string;
|
|
23724
|
-
dest: string;
|
|
23725
|
-
allowEmpty?: boolean | undefined;
|
|
23726
|
-
};
|
|
23727
|
-
type: "unwind";
|
|
23728
|
-
}[] | undefined;
|
|
23729
|
-
} | {
|
|
23730
|
-
options: {
|
|
23731
|
-
id: string;
|
|
23732
|
-
};
|
|
23733
|
-
type: "datasource";
|
|
24875
|
+
type: "url";
|
|
24876
|
+
preProcessingAggregations?: {
|
|
24877
|
+
options: {
|
|
24878
|
+
src: string;
|
|
24879
|
+
dest: string;
|
|
24880
|
+
allowEmpty?: boolean | undefined;
|
|
24881
|
+
};
|
|
24882
|
+
type: "unwind";
|
|
24883
|
+
}[] | undefined;
|
|
24884
|
+
} | {
|
|
24885
|
+
options: {
|
|
24886
|
+
id: string;
|
|
24887
|
+
};
|
|
24888
|
+
type: "datasource";
|
|
24889
|
+
preProcessingAggregations?: {
|
|
24890
|
+
options: {
|
|
24891
|
+
src: string;
|
|
24892
|
+
dest: string;
|
|
24893
|
+
allowEmpty?: boolean | undefined;
|
|
24894
|
+
};
|
|
24895
|
+
type: "unwind";
|
|
24896
|
+
}[] | undefined;
|
|
24897
|
+
} | {
|
|
24898
|
+
options: {
|
|
24899
|
+
path: string;
|
|
24900
|
+
bucket: string;
|
|
24901
|
+
format: {
|
|
24902
|
+
options: {
|
|
24903
|
+
csvDelimiter?: string | undefined;
|
|
24904
|
+
};
|
|
24905
|
+
type: "csv";
|
|
24906
|
+
} | {
|
|
24907
|
+
options: unknown;
|
|
24908
|
+
type: "ndjson";
|
|
24909
|
+
} | {
|
|
24910
|
+
options: {
|
|
24911
|
+
rootPath: string;
|
|
24912
|
+
};
|
|
24913
|
+
type: "json";
|
|
24914
|
+
} | {
|
|
24915
|
+
options: {
|
|
24916
|
+
rootPath: string;
|
|
24917
|
+
};
|
|
24918
|
+
type: "xml";
|
|
24919
|
+
} | {
|
|
24920
|
+
options: unknown;
|
|
24921
|
+
type: "xlsx";
|
|
24922
|
+
} | {
|
|
24923
|
+
options: {
|
|
24924
|
+
version?: string | undefined;
|
|
24925
|
+
columnsList?: string[] | undefined;
|
|
24926
|
+
};
|
|
24927
|
+
type: "parquet";
|
|
24928
|
+
} | {
|
|
24929
|
+
options: unknown;
|
|
24930
|
+
type: "avro";
|
|
24931
|
+
};
|
|
24932
|
+
textEncoding: string;
|
|
24933
|
+
};
|
|
24934
|
+
type: "file";
|
|
24935
|
+
preProcessingAggregations?: {
|
|
24936
|
+
options: {
|
|
24937
|
+
src: string;
|
|
24938
|
+
dest: string;
|
|
24939
|
+
allowEmpty?: boolean | undefined;
|
|
24940
|
+
};
|
|
24941
|
+
type: "unwind";
|
|
24942
|
+
}[] | undefined;
|
|
24943
|
+
} | {
|
|
24944
|
+
options: {
|
|
24945
|
+
path: string;
|
|
24946
|
+
username: string;
|
|
24947
|
+
password: string;
|
|
24948
|
+
format?: {
|
|
24949
|
+
options: {
|
|
24950
|
+
csvDelimiter?: string | undefined;
|
|
24951
|
+
};
|
|
24952
|
+
type: "csv";
|
|
24953
|
+
} | {
|
|
24954
|
+
options: unknown;
|
|
24955
|
+
type: "ndjson";
|
|
24956
|
+
} | {
|
|
24957
|
+
options: {
|
|
24958
|
+
rootPath: string;
|
|
24959
|
+
};
|
|
24960
|
+
type: "json";
|
|
24961
|
+
} | {
|
|
24962
|
+
options: {
|
|
24963
|
+
rootPath: string;
|
|
24964
|
+
};
|
|
24965
|
+
type: "xml";
|
|
24966
|
+
} | {
|
|
24967
|
+
options: unknown;
|
|
24968
|
+
type: "xlsx";
|
|
24969
|
+
} | {
|
|
24970
|
+
options: {
|
|
24971
|
+
version?: string | undefined;
|
|
24972
|
+
columnsList?: string[] | undefined;
|
|
24973
|
+
};
|
|
24974
|
+
type: "parquet";
|
|
24975
|
+
} | {
|
|
24976
|
+
options: unknown;
|
|
24977
|
+
type: "avro";
|
|
24978
|
+
} | undefined;
|
|
24979
|
+
textEncoding?: string | undefined;
|
|
24980
|
+
host: string;
|
|
24981
|
+
port: number;
|
|
24982
|
+
secure: boolean;
|
|
24983
|
+
processLastOnly?: boolean | undefined;
|
|
24984
|
+
};
|
|
24985
|
+
type: "ftp";
|
|
24986
|
+
preProcessingAggregations?: {
|
|
24987
|
+
options: {
|
|
24988
|
+
src: string;
|
|
24989
|
+
dest: string;
|
|
24990
|
+
allowEmpty?: boolean | undefined;
|
|
24991
|
+
};
|
|
24992
|
+
type: "unwind";
|
|
24993
|
+
}[] | undefined;
|
|
24994
|
+
} | {
|
|
24995
|
+
options: {
|
|
24996
|
+
path: string;
|
|
24997
|
+
username: string;
|
|
24998
|
+
password?: string | undefined;
|
|
24999
|
+
format?: {
|
|
25000
|
+
options: {
|
|
25001
|
+
csvDelimiter?: string | undefined;
|
|
25002
|
+
};
|
|
25003
|
+
type: "csv";
|
|
25004
|
+
} | {
|
|
25005
|
+
options: unknown;
|
|
25006
|
+
type: "ndjson";
|
|
25007
|
+
} | {
|
|
25008
|
+
options: {
|
|
25009
|
+
rootPath: string;
|
|
25010
|
+
};
|
|
25011
|
+
type: "json";
|
|
25012
|
+
} | {
|
|
25013
|
+
options: {
|
|
25014
|
+
rootPath: string;
|
|
25015
|
+
};
|
|
25016
|
+
type: "xml";
|
|
25017
|
+
} | {
|
|
25018
|
+
options: unknown;
|
|
25019
|
+
type: "xlsx";
|
|
25020
|
+
} | {
|
|
25021
|
+
options: {
|
|
25022
|
+
version?: string | undefined;
|
|
25023
|
+
columnsList?: string[] | undefined;
|
|
25024
|
+
};
|
|
25025
|
+
type: "parquet";
|
|
25026
|
+
} | {
|
|
25027
|
+
options: unknown;
|
|
25028
|
+
type: "avro";
|
|
25029
|
+
} | undefined;
|
|
25030
|
+
textEncoding?: string | undefined;
|
|
25031
|
+
host: string;
|
|
25032
|
+
port: number;
|
|
25033
|
+
processLastOnly?: boolean | undefined;
|
|
25034
|
+
privateKey?: string | undefined;
|
|
25035
|
+
};
|
|
25036
|
+
type: "sftp";
|
|
23734
25037
|
preProcessingAggregations?: {
|
|
23735
25038
|
options: {
|
|
23736
25039
|
src: string;
|
|
@@ -23741,42 +25044,16 @@ export default class {
|
|
|
23741
25044
|
}[] | undefined;
|
|
23742
25045
|
} | {
|
|
23743
25046
|
options: {
|
|
23744
|
-
|
|
23745
|
-
|
|
23746
|
-
|
|
23747
|
-
|
|
23748
|
-
|
|
23749
|
-
|
|
23750
|
-
|
|
23751
|
-
|
|
23752
|
-
options: unknown;
|
|
23753
|
-
type: "ndjson";
|
|
23754
|
-
} | {
|
|
23755
|
-
options: {
|
|
23756
|
-
rootPath: string;
|
|
23757
|
-
};
|
|
23758
|
-
type: "json";
|
|
23759
|
-
} | {
|
|
23760
|
-
options: {
|
|
23761
|
-
rootPath: string;
|
|
23762
|
-
};
|
|
23763
|
-
type: "xml";
|
|
23764
|
-
} | {
|
|
23765
|
-
options: unknown;
|
|
23766
|
-
type: "xlsx";
|
|
23767
|
-
} | {
|
|
23768
|
-
options: {
|
|
23769
|
-
version?: string | undefined;
|
|
23770
|
-
columnsList?: string[] | undefined;
|
|
23771
|
-
};
|
|
23772
|
-
type: "parquet";
|
|
23773
|
-
} | {
|
|
23774
|
-
options: unknown;
|
|
23775
|
-
type: "avro";
|
|
23776
|
-
};
|
|
23777
|
-
textEncoding: string;
|
|
25047
|
+
query?: string | undefined;
|
|
25048
|
+
privateKey?: string | undefined;
|
|
25049
|
+
table: string;
|
|
25050
|
+
dataset: string;
|
|
25051
|
+
clientEmail?: string | undefined;
|
|
25052
|
+
projectId?: string | undefined;
|
|
25053
|
+
tableProjectId?: string | undefined;
|
|
25054
|
+
timestampField?: string | undefined;
|
|
23778
25055
|
};
|
|
23779
|
-
type: "
|
|
25056
|
+
type: "bigquery";
|
|
23780
25057
|
preProcessingAggregations?: {
|
|
23781
25058
|
options: {
|
|
23782
25059
|
src: string;
|
|
@@ -23787,47 +25064,18 @@ export default class {
|
|
|
23787
25064
|
}[] | undefined;
|
|
23788
25065
|
} | {
|
|
23789
25066
|
options: {
|
|
23790
|
-
|
|
25067
|
+
query?: string | undefined;
|
|
23791
25068
|
username: string;
|
|
23792
|
-
password
|
|
23793
|
-
|
|
23794
|
-
|
|
23795
|
-
|
|
23796
|
-
|
|
23797
|
-
|
|
23798
|
-
|
|
23799
|
-
|
|
23800
|
-
type: "ndjson";
|
|
23801
|
-
} | {
|
|
23802
|
-
options: {
|
|
23803
|
-
rootPath: string;
|
|
23804
|
-
};
|
|
23805
|
-
type: "json";
|
|
23806
|
-
} | {
|
|
23807
|
-
options: {
|
|
23808
|
-
rootPath: string;
|
|
23809
|
-
};
|
|
23810
|
-
type: "xml";
|
|
23811
|
-
} | {
|
|
23812
|
-
options: unknown;
|
|
23813
|
-
type: "xlsx";
|
|
23814
|
-
} | {
|
|
23815
|
-
options: {
|
|
23816
|
-
version?: string | undefined;
|
|
23817
|
-
columnsList?: string[] | undefined;
|
|
23818
|
-
};
|
|
23819
|
-
type: "parquet";
|
|
23820
|
-
} | {
|
|
23821
|
-
options: unknown;
|
|
23822
|
-
type: "avro";
|
|
23823
|
-
} | undefined;
|
|
23824
|
-
textEncoding?: string | undefined;
|
|
23825
|
-
host: string;
|
|
23826
|
-
port: number;
|
|
23827
|
-
secure: boolean;
|
|
23828
|
-
processLastOnly?: boolean | undefined;
|
|
25069
|
+
password?: string | undefined;
|
|
25070
|
+
privateKey?: string | undefined;
|
|
25071
|
+
table: string;
|
|
25072
|
+
account: string;
|
|
25073
|
+
warehouse: string;
|
|
25074
|
+
schema: string;
|
|
25075
|
+
database: string;
|
|
25076
|
+
timestampColumn?: string | undefined;
|
|
23829
25077
|
};
|
|
23830
|
-
type: "
|
|
25078
|
+
type: "snowflake";
|
|
23831
25079
|
preProcessingAggregations?: {
|
|
23832
25080
|
options: {
|
|
23833
25081
|
src: string;
|
|
@@ -23839,8 +25087,7 @@ export default class {
|
|
|
23839
25087
|
} | {
|
|
23840
25088
|
options: {
|
|
23841
25089
|
path: string;
|
|
23842
|
-
|
|
23843
|
-
password?: string | undefined;
|
|
25090
|
+
bucket: string;
|
|
23844
25091
|
format?: {
|
|
23845
25092
|
options: {
|
|
23846
25093
|
csvDelimiter?: string | undefined;
|
|
@@ -23873,32 +25120,12 @@ export default class {
|
|
|
23873
25120
|
type: "avro";
|
|
23874
25121
|
} | undefined;
|
|
23875
25122
|
textEncoding?: string | undefined;
|
|
23876
|
-
host: string;
|
|
23877
|
-
port: number;
|
|
23878
25123
|
processLastOnly?: boolean | undefined;
|
|
23879
|
-
privateKey
|
|
23880
|
-
|
|
23881
|
-
|
|
23882
|
-
preProcessingAggregations?: {
|
|
23883
|
-
options: {
|
|
23884
|
-
src: string;
|
|
23885
|
-
dest: string;
|
|
23886
|
-
allowEmpty?: boolean | undefined;
|
|
23887
|
-
};
|
|
23888
|
-
type: "unwind";
|
|
23889
|
-
}[] | undefined;
|
|
23890
|
-
} | {
|
|
23891
|
-
options: {
|
|
23892
|
-
query?: string | undefined;
|
|
23893
|
-
privateKey?: string | undefined;
|
|
23894
|
-
table: string;
|
|
23895
|
-
dataset: string;
|
|
23896
|
-
clientEmail?: string | undefined;
|
|
23897
|
-
projectId?: string | undefined;
|
|
23898
|
-
tableProjectId?: string | undefined;
|
|
23899
|
-
timestampField?: string | undefined;
|
|
25124
|
+
privateKey: string;
|
|
25125
|
+
clientEmail: string;
|
|
25126
|
+
projectId: string;
|
|
23900
25127
|
};
|
|
23901
|
-
type: "
|
|
25128
|
+
type: "gcs";
|
|
23902
25129
|
preProcessingAggregations?: {
|
|
23903
25130
|
options: {
|
|
23904
25131
|
src: string;
|
|
@@ -23909,30 +25136,8 @@ export default class {
|
|
|
23909
25136
|
}[] | undefined;
|
|
23910
25137
|
} | {
|
|
23911
25138
|
options: {
|
|
23912
|
-
|
|
23913
|
-
username: string;
|
|
25139
|
+
username?: string | undefined;
|
|
23914
25140
|
password?: string | undefined;
|
|
23915
|
-
privateKey?: string | undefined;
|
|
23916
|
-
table: string;
|
|
23917
|
-
account: string;
|
|
23918
|
-
warehouse: string;
|
|
23919
|
-
schema: string;
|
|
23920
|
-
database: string;
|
|
23921
|
-
timestampColumn?: string | undefined;
|
|
23922
|
-
};
|
|
23923
|
-
type: "snowflake";
|
|
23924
|
-
preProcessingAggregations?: {
|
|
23925
|
-
options: {
|
|
23926
|
-
src: string;
|
|
23927
|
-
dest: string;
|
|
23928
|
-
allowEmpty?: boolean | undefined;
|
|
23929
|
-
};
|
|
23930
|
-
type: "unwind";
|
|
23931
|
-
}[] | undefined;
|
|
23932
|
-
} | {
|
|
23933
|
-
options: {
|
|
23934
|
-
path: string;
|
|
23935
|
-
bucket: string;
|
|
23936
25141
|
format?: {
|
|
23937
25142
|
options: {
|
|
23938
25143
|
csvDelimiter?: string | undefined;
|
|
@@ -23964,13 +25169,18 @@ export default class {
|
|
|
23964
25169
|
options: unknown;
|
|
23965
25170
|
type: "avro";
|
|
23966
25171
|
} | undefined;
|
|
23967
|
-
textEncoding
|
|
23968
|
-
|
|
23969
|
-
|
|
23970
|
-
|
|
23971
|
-
|
|
25172
|
+
textEncoding: string;
|
|
25173
|
+
brokers: string[];
|
|
25174
|
+
topic: string;
|
|
25175
|
+
groupPrefix?: string | undefined;
|
|
25176
|
+
ssl?: boolean | undefined;
|
|
25177
|
+
registry?: {
|
|
25178
|
+
url: string;
|
|
25179
|
+
username: string;
|
|
25180
|
+
password: string;
|
|
25181
|
+
} | undefined;
|
|
23972
25182
|
};
|
|
23973
|
-
type: "
|
|
25183
|
+
type: "kafka";
|
|
23974
25184
|
preProcessingAggregations?: {
|
|
23975
25185
|
options: {
|
|
23976
25186
|
src: string;
|
|
@@ -25452,6 +26662,61 @@ export default class {
|
|
|
25452
26662
|
};
|
|
25453
26663
|
type: "unwind";
|
|
25454
26664
|
}[] | undefined;
|
|
26665
|
+
} | {
|
|
26666
|
+
options: {
|
|
26667
|
+
username?: string | undefined;
|
|
26668
|
+
password?: string | undefined;
|
|
26669
|
+
format?: {
|
|
26670
|
+
options: {
|
|
26671
|
+
csvDelimiter?: string | undefined;
|
|
26672
|
+
};
|
|
26673
|
+
type: "csv";
|
|
26674
|
+
} | {
|
|
26675
|
+
options: unknown;
|
|
26676
|
+
type: "ndjson";
|
|
26677
|
+
} | {
|
|
26678
|
+
options: {
|
|
26679
|
+
rootPath: string;
|
|
26680
|
+
};
|
|
26681
|
+
type: "json";
|
|
26682
|
+
} | {
|
|
26683
|
+
options: {
|
|
26684
|
+
rootPath: string;
|
|
26685
|
+
};
|
|
26686
|
+
type: "xml";
|
|
26687
|
+
} | {
|
|
26688
|
+
options: unknown;
|
|
26689
|
+
type: "xlsx";
|
|
26690
|
+
} | {
|
|
26691
|
+
options: {
|
|
26692
|
+
version?: string | undefined;
|
|
26693
|
+
columnsList?: string[] | undefined;
|
|
26694
|
+
};
|
|
26695
|
+
type: "parquet";
|
|
26696
|
+
} | {
|
|
26697
|
+
options: unknown;
|
|
26698
|
+
type: "avro";
|
|
26699
|
+
} | undefined;
|
|
26700
|
+
textEncoding: string;
|
|
26701
|
+
brokers: string[];
|
|
26702
|
+
topic: string;
|
|
26703
|
+
groupPrefix?: string | undefined;
|
|
26704
|
+
ssl?: boolean | undefined;
|
|
26705
|
+
registry?: {
|
|
26706
|
+
url: string;
|
|
26707
|
+
username: string;
|
|
26708
|
+
password: string;
|
|
26709
|
+
} | undefined;
|
|
26710
|
+
};
|
|
26711
|
+
type: "kafka";
|
|
26712
|
+
preProcessingAggregations?: {
|
|
26713
|
+
options: {
|
|
26714
|
+
src: string;
|
|
26715
|
+
dest: string;
|
|
26716
|
+
allowEmpty?: boolean | undefined;
|
|
26717
|
+
};
|
|
26718
|
+
type: "unwind";
|
|
26719
|
+
}[] | undefined;
|
|
25455
26720
|
};
|
|
25456
26721
|
fieldsRules?: {
|
|
25457
26722
|
[x: string]: ({
|
|
@@ -26347,13 +27612,68 @@ export default class {
|
|
|
26347
27612
|
options: unknown;
|
|
26348
27613
|
type: "avro";
|
|
26349
27614
|
} | undefined;
|
|
26350
|
-
textEncoding?: string | undefined;
|
|
26351
|
-
processLastOnly?: boolean | undefined;
|
|
26352
|
-
privateKey: string;
|
|
26353
|
-
clientEmail: string;
|
|
26354
|
-
projectId: string;
|
|
27615
|
+
textEncoding?: string | undefined;
|
|
27616
|
+
processLastOnly?: boolean | undefined;
|
|
27617
|
+
privateKey: string;
|
|
27618
|
+
clientEmail: string;
|
|
27619
|
+
projectId: string;
|
|
27620
|
+
};
|
|
27621
|
+
type: "gcs";
|
|
27622
|
+
preProcessingAggregations?: {
|
|
27623
|
+
options: {
|
|
27624
|
+
src: string;
|
|
27625
|
+
dest: string;
|
|
27626
|
+
allowEmpty?: boolean | undefined;
|
|
27627
|
+
};
|
|
27628
|
+
type: "unwind";
|
|
27629
|
+
}[] | undefined;
|
|
27630
|
+
} | {
|
|
27631
|
+
options: {
|
|
27632
|
+
username?: string | undefined;
|
|
27633
|
+
password?: string | undefined;
|
|
27634
|
+
format?: {
|
|
27635
|
+
options: {
|
|
27636
|
+
csvDelimiter?: string | undefined;
|
|
27637
|
+
};
|
|
27638
|
+
type: "csv";
|
|
27639
|
+
} | {
|
|
27640
|
+
options: unknown;
|
|
27641
|
+
type: "ndjson";
|
|
27642
|
+
} | {
|
|
27643
|
+
options: {
|
|
27644
|
+
rootPath: string;
|
|
27645
|
+
};
|
|
27646
|
+
type: "json";
|
|
27647
|
+
} | {
|
|
27648
|
+
options: {
|
|
27649
|
+
rootPath: string;
|
|
27650
|
+
};
|
|
27651
|
+
type: "xml";
|
|
27652
|
+
} | {
|
|
27653
|
+
options: unknown;
|
|
27654
|
+
type: "xlsx";
|
|
27655
|
+
} | {
|
|
27656
|
+
options: {
|
|
27657
|
+
version?: string | undefined;
|
|
27658
|
+
columnsList?: string[] | undefined;
|
|
27659
|
+
};
|
|
27660
|
+
type: "parquet";
|
|
27661
|
+
} | {
|
|
27662
|
+
options: unknown;
|
|
27663
|
+
type: "avro";
|
|
27664
|
+
} | undefined;
|
|
27665
|
+
textEncoding: string;
|
|
27666
|
+
brokers: string[];
|
|
27667
|
+
topic: string;
|
|
27668
|
+
groupPrefix?: string | undefined;
|
|
27669
|
+
ssl?: boolean | undefined;
|
|
27670
|
+
registry?: {
|
|
27671
|
+
url: string;
|
|
27672
|
+
username: string;
|
|
27673
|
+
password: string;
|
|
27674
|
+
} | undefined;
|
|
26355
27675
|
};
|
|
26356
|
-
type: "
|
|
27676
|
+
type: "kafka";
|
|
26357
27677
|
preProcessingAggregations?: {
|
|
26358
27678
|
options: {
|
|
26359
27679
|
src: string;
|
|
@@ -27771,6 +29091,61 @@ export default class {
|
|
|
27771
29091
|
};
|
|
27772
29092
|
type: "unwind";
|
|
27773
29093
|
}[] | undefined;
|
|
29094
|
+
} | {
|
|
29095
|
+
options: {
|
|
29096
|
+
username?: string | undefined;
|
|
29097
|
+
password?: string | undefined;
|
|
29098
|
+
format?: {
|
|
29099
|
+
options: {
|
|
29100
|
+
csvDelimiter?: string | undefined;
|
|
29101
|
+
};
|
|
29102
|
+
type: "csv";
|
|
29103
|
+
} | {
|
|
29104
|
+
options: unknown;
|
|
29105
|
+
type: "ndjson";
|
|
29106
|
+
} | {
|
|
29107
|
+
options: {
|
|
29108
|
+
rootPath: string;
|
|
29109
|
+
};
|
|
29110
|
+
type: "json";
|
|
29111
|
+
} | {
|
|
29112
|
+
options: {
|
|
29113
|
+
rootPath: string;
|
|
29114
|
+
};
|
|
29115
|
+
type: "xml";
|
|
29116
|
+
} | {
|
|
29117
|
+
options: unknown;
|
|
29118
|
+
type: "xlsx";
|
|
29119
|
+
} | {
|
|
29120
|
+
options: {
|
|
29121
|
+
version?: string | undefined;
|
|
29122
|
+
columnsList?: string[] | undefined;
|
|
29123
|
+
};
|
|
29124
|
+
type: "parquet";
|
|
29125
|
+
} | {
|
|
29126
|
+
options: unknown;
|
|
29127
|
+
type: "avro";
|
|
29128
|
+
} | undefined;
|
|
29129
|
+
textEncoding: string;
|
|
29130
|
+
brokers: string[];
|
|
29131
|
+
topic: string;
|
|
29132
|
+
groupPrefix?: string | undefined;
|
|
29133
|
+
ssl?: boolean | undefined;
|
|
29134
|
+
registry?: {
|
|
29135
|
+
url: string;
|
|
29136
|
+
username: string;
|
|
29137
|
+
password: string;
|
|
29138
|
+
} | undefined;
|
|
29139
|
+
};
|
|
29140
|
+
type: "kafka";
|
|
29141
|
+
preProcessingAggregations?: {
|
|
29142
|
+
options: {
|
|
29143
|
+
src: string;
|
|
29144
|
+
dest: string;
|
|
29145
|
+
allowEmpty?: boolean | undefined;
|
|
29146
|
+
};
|
|
29147
|
+
type: "unwind";
|
|
29148
|
+
}[] | undefined;
|
|
27774
29149
|
};
|
|
27775
29150
|
fieldsRules?: {
|
|
27776
29151
|
[x: string]: ({
|
|
@@ -28681,6 +30056,61 @@ export default class {
|
|
|
28681
30056
|
};
|
|
28682
30057
|
type: "unwind";
|
|
28683
30058
|
}[] | undefined;
|
|
30059
|
+
} | {
|
|
30060
|
+
options: {
|
|
30061
|
+
username?: string | undefined;
|
|
30062
|
+
password?: string | undefined;
|
|
30063
|
+
format?: {
|
|
30064
|
+
options: {
|
|
30065
|
+
csvDelimiter?: string | undefined;
|
|
30066
|
+
};
|
|
30067
|
+
type: "csv";
|
|
30068
|
+
} | {
|
|
30069
|
+
options: unknown;
|
|
30070
|
+
type: "ndjson";
|
|
30071
|
+
} | {
|
|
30072
|
+
options: {
|
|
30073
|
+
rootPath: string;
|
|
30074
|
+
};
|
|
30075
|
+
type: "json";
|
|
30076
|
+
} | {
|
|
30077
|
+
options: {
|
|
30078
|
+
rootPath: string;
|
|
30079
|
+
};
|
|
30080
|
+
type: "xml";
|
|
30081
|
+
} | {
|
|
30082
|
+
options: unknown;
|
|
30083
|
+
type: "xlsx";
|
|
30084
|
+
} | {
|
|
30085
|
+
options: {
|
|
30086
|
+
version?: string | undefined;
|
|
30087
|
+
columnsList?: string[] | undefined;
|
|
30088
|
+
};
|
|
30089
|
+
type: "parquet";
|
|
30090
|
+
} | {
|
|
30091
|
+
options: unknown;
|
|
30092
|
+
type: "avro";
|
|
30093
|
+
} | undefined;
|
|
30094
|
+
textEncoding: string;
|
|
30095
|
+
brokers: string[];
|
|
30096
|
+
topic: string;
|
|
30097
|
+
groupPrefix?: string | undefined;
|
|
30098
|
+
ssl?: boolean | undefined;
|
|
30099
|
+
registry?: {
|
|
30100
|
+
url: string;
|
|
30101
|
+
username: string;
|
|
30102
|
+
password: string;
|
|
30103
|
+
} | undefined;
|
|
30104
|
+
};
|
|
30105
|
+
type: "kafka";
|
|
30106
|
+
preProcessingAggregations?: {
|
|
30107
|
+
options: {
|
|
30108
|
+
src: string;
|
|
30109
|
+
dest: string;
|
|
30110
|
+
allowEmpty?: boolean | undefined;
|
|
30111
|
+
};
|
|
30112
|
+
type: "unwind";
|
|
30113
|
+
}[] | undefined;
|
|
28684
30114
|
};
|
|
28685
30115
|
fieldsRules?: {
|
|
28686
30116
|
[x: string]: ({
|
|
@@ -29892,20 +31322,168 @@ export default class {
|
|
|
29892
31322
|
} | undefined;
|
|
29893
31323
|
textEncoding?: string | undefined;
|
|
29894
31324
|
};
|
|
29895
|
-
type: "url";
|
|
29896
|
-
preProcessingAggregations?: {
|
|
29897
|
-
options: {
|
|
29898
|
-
src: string;
|
|
29899
|
-
dest: string;
|
|
29900
|
-
allowEmpty?: boolean | undefined;
|
|
29901
|
-
};
|
|
29902
|
-
type: "unwind";
|
|
29903
|
-
}[] | undefined;
|
|
29904
|
-
} | {
|
|
29905
|
-
options: {
|
|
29906
|
-
id: string;
|
|
29907
|
-
};
|
|
29908
|
-
type: "datasource";
|
|
31325
|
+
type: "url";
|
|
31326
|
+
preProcessingAggregations?: {
|
|
31327
|
+
options: {
|
|
31328
|
+
src: string;
|
|
31329
|
+
dest: string;
|
|
31330
|
+
allowEmpty?: boolean | undefined;
|
|
31331
|
+
};
|
|
31332
|
+
type: "unwind";
|
|
31333
|
+
}[] | undefined;
|
|
31334
|
+
} | {
|
|
31335
|
+
options: {
|
|
31336
|
+
id: string;
|
|
31337
|
+
};
|
|
31338
|
+
type: "datasource";
|
|
31339
|
+
preProcessingAggregations?: {
|
|
31340
|
+
options: {
|
|
31341
|
+
src: string;
|
|
31342
|
+
dest: string;
|
|
31343
|
+
allowEmpty?: boolean | undefined;
|
|
31344
|
+
};
|
|
31345
|
+
type: "unwind";
|
|
31346
|
+
}[] | undefined;
|
|
31347
|
+
} | {
|
|
31348
|
+
options: {
|
|
31349
|
+
path: string;
|
|
31350
|
+
bucket: string;
|
|
31351
|
+
format: {
|
|
31352
|
+
options: {
|
|
31353
|
+
csvDelimiter?: string | undefined;
|
|
31354
|
+
};
|
|
31355
|
+
type: "csv";
|
|
31356
|
+
} | {
|
|
31357
|
+
options: unknown;
|
|
31358
|
+
type: "ndjson";
|
|
31359
|
+
} | {
|
|
31360
|
+
options: {
|
|
31361
|
+
rootPath: string;
|
|
31362
|
+
};
|
|
31363
|
+
type: "json";
|
|
31364
|
+
} | {
|
|
31365
|
+
options: {
|
|
31366
|
+
rootPath: string;
|
|
31367
|
+
};
|
|
31368
|
+
type: "xml";
|
|
31369
|
+
} | {
|
|
31370
|
+
options: unknown;
|
|
31371
|
+
type: "xlsx";
|
|
31372
|
+
} | {
|
|
31373
|
+
options: {
|
|
31374
|
+
version?: string | undefined;
|
|
31375
|
+
columnsList?: string[] | undefined;
|
|
31376
|
+
};
|
|
31377
|
+
type: "parquet";
|
|
31378
|
+
} | {
|
|
31379
|
+
options: unknown;
|
|
31380
|
+
type: "avro";
|
|
31381
|
+
};
|
|
31382
|
+
textEncoding: string;
|
|
31383
|
+
};
|
|
31384
|
+
type: "file";
|
|
31385
|
+
preProcessingAggregations?: {
|
|
31386
|
+
options: {
|
|
31387
|
+
src: string;
|
|
31388
|
+
dest: string;
|
|
31389
|
+
allowEmpty?: boolean | undefined;
|
|
31390
|
+
};
|
|
31391
|
+
type: "unwind";
|
|
31392
|
+
}[] | undefined;
|
|
31393
|
+
} | {
|
|
31394
|
+
options: {
|
|
31395
|
+
path: string;
|
|
31396
|
+
username: string;
|
|
31397
|
+
password: string;
|
|
31398
|
+
format?: {
|
|
31399
|
+
options: {
|
|
31400
|
+
csvDelimiter?: string | undefined;
|
|
31401
|
+
};
|
|
31402
|
+
type: "csv";
|
|
31403
|
+
} | {
|
|
31404
|
+
options: unknown;
|
|
31405
|
+
type: "ndjson";
|
|
31406
|
+
} | {
|
|
31407
|
+
options: {
|
|
31408
|
+
rootPath: string;
|
|
31409
|
+
};
|
|
31410
|
+
type: "json";
|
|
31411
|
+
} | {
|
|
31412
|
+
options: {
|
|
31413
|
+
rootPath: string;
|
|
31414
|
+
};
|
|
31415
|
+
type: "xml";
|
|
31416
|
+
} | {
|
|
31417
|
+
options: unknown;
|
|
31418
|
+
type: "xlsx";
|
|
31419
|
+
} | {
|
|
31420
|
+
options: {
|
|
31421
|
+
version?: string | undefined;
|
|
31422
|
+
columnsList?: string[] | undefined;
|
|
31423
|
+
};
|
|
31424
|
+
type: "parquet";
|
|
31425
|
+
} | {
|
|
31426
|
+
options: unknown;
|
|
31427
|
+
type: "avro";
|
|
31428
|
+
} | undefined;
|
|
31429
|
+
textEncoding?: string | undefined;
|
|
31430
|
+
host: string;
|
|
31431
|
+
port: number;
|
|
31432
|
+
secure: boolean;
|
|
31433
|
+
processLastOnly?: boolean | undefined;
|
|
31434
|
+
};
|
|
31435
|
+
type: "ftp";
|
|
31436
|
+
preProcessingAggregations?: {
|
|
31437
|
+
options: {
|
|
31438
|
+
src: string;
|
|
31439
|
+
dest: string;
|
|
31440
|
+
allowEmpty?: boolean | undefined;
|
|
31441
|
+
};
|
|
31442
|
+
type: "unwind";
|
|
31443
|
+
}[] | undefined;
|
|
31444
|
+
} | {
|
|
31445
|
+
options: {
|
|
31446
|
+
path: string;
|
|
31447
|
+
username: string;
|
|
31448
|
+
password?: string | undefined;
|
|
31449
|
+
format?: {
|
|
31450
|
+
options: {
|
|
31451
|
+
csvDelimiter?: string | undefined;
|
|
31452
|
+
};
|
|
31453
|
+
type: "csv";
|
|
31454
|
+
} | {
|
|
31455
|
+
options: unknown;
|
|
31456
|
+
type: "ndjson";
|
|
31457
|
+
} | {
|
|
31458
|
+
options: {
|
|
31459
|
+
rootPath: string;
|
|
31460
|
+
};
|
|
31461
|
+
type: "json";
|
|
31462
|
+
} | {
|
|
31463
|
+
options: {
|
|
31464
|
+
rootPath: string;
|
|
31465
|
+
};
|
|
31466
|
+
type: "xml";
|
|
31467
|
+
} | {
|
|
31468
|
+
options: unknown;
|
|
31469
|
+
type: "xlsx";
|
|
31470
|
+
} | {
|
|
31471
|
+
options: {
|
|
31472
|
+
version?: string | undefined;
|
|
31473
|
+
columnsList?: string[] | undefined;
|
|
31474
|
+
};
|
|
31475
|
+
type: "parquet";
|
|
31476
|
+
} | {
|
|
31477
|
+
options: unknown;
|
|
31478
|
+
type: "avro";
|
|
31479
|
+
} | undefined;
|
|
31480
|
+
textEncoding?: string | undefined;
|
|
31481
|
+
host: string;
|
|
31482
|
+
port: number;
|
|
31483
|
+
processLastOnly?: boolean | undefined;
|
|
31484
|
+
privateKey?: string | undefined;
|
|
31485
|
+
};
|
|
31486
|
+
type: "sftp";
|
|
29909
31487
|
preProcessingAggregations?: {
|
|
29910
31488
|
options: {
|
|
29911
31489
|
src: string;
|
|
@@ -29916,42 +31494,16 @@ export default class {
|
|
|
29916
31494
|
}[] | undefined;
|
|
29917
31495
|
} | {
|
|
29918
31496
|
options: {
|
|
29919
|
-
|
|
29920
|
-
|
|
29921
|
-
|
|
29922
|
-
|
|
29923
|
-
|
|
29924
|
-
|
|
29925
|
-
|
|
29926
|
-
|
|
29927
|
-
options: unknown;
|
|
29928
|
-
type: "ndjson";
|
|
29929
|
-
} | {
|
|
29930
|
-
options: {
|
|
29931
|
-
rootPath: string;
|
|
29932
|
-
};
|
|
29933
|
-
type: "json";
|
|
29934
|
-
} | {
|
|
29935
|
-
options: {
|
|
29936
|
-
rootPath: string;
|
|
29937
|
-
};
|
|
29938
|
-
type: "xml";
|
|
29939
|
-
} | {
|
|
29940
|
-
options: unknown;
|
|
29941
|
-
type: "xlsx";
|
|
29942
|
-
} | {
|
|
29943
|
-
options: {
|
|
29944
|
-
version?: string | undefined;
|
|
29945
|
-
columnsList?: string[] | undefined;
|
|
29946
|
-
};
|
|
29947
|
-
type: "parquet";
|
|
29948
|
-
} | {
|
|
29949
|
-
options: unknown;
|
|
29950
|
-
type: "avro";
|
|
29951
|
-
};
|
|
29952
|
-
textEncoding: string;
|
|
31497
|
+
query?: string | undefined;
|
|
31498
|
+
privateKey?: string | undefined;
|
|
31499
|
+
table: string;
|
|
31500
|
+
dataset: string;
|
|
31501
|
+
clientEmail?: string | undefined;
|
|
31502
|
+
projectId?: string | undefined;
|
|
31503
|
+
tableProjectId?: string | undefined;
|
|
31504
|
+
timestampField?: string | undefined;
|
|
29953
31505
|
};
|
|
29954
|
-
type: "
|
|
31506
|
+
type: "bigquery";
|
|
29955
31507
|
preProcessingAggregations?: {
|
|
29956
31508
|
options: {
|
|
29957
31509
|
src: string;
|
|
@@ -29962,47 +31514,18 @@ export default class {
|
|
|
29962
31514
|
}[] | undefined;
|
|
29963
31515
|
} | {
|
|
29964
31516
|
options: {
|
|
29965
|
-
|
|
31517
|
+
query?: string | undefined;
|
|
29966
31518
|
username: string;
|
|
29967
|
-
password
|
|
29968
|
-
|
|
29969
|
-
|
|
29970
|
-
|
|
29971
|
-
|
|
29972
|
-
|
|
29973
|
-
|
|
29974
|
-
|
|
29975
|
-
type: "ndjson";
|
|
29976
|
-
} | {
|
|
29977
|
-
options: {
|
|
29978
|
-
rootPath: string;
|
|
29979
|
-
};
|
|
29980
|
-
type: "json";
|
|
29981
|
-
} | {
|
|
29982
|
-
options: {
|
|
29983
|
-
rootPath: string;
|
|
29984
|
-
};
|
|
29985
|
-
type: "xml";
|
|
29986
|
-
} | {
|
|
29987
|
-
options: unknown;
|
|
29988
|
-
type: "xlsx";
|
|
29989
|
-
} | {
|
|
29990
|
-
options: {
|
|
29991
|
-
version?: string | undefined;
|
|
29992
|
-
columnsList?: string[] | undefined;
|
|
29993
|
-
};
|
|
29994
|
-
type: "parquet";
|
|
29995
|
-
} | {
|
|
29996
|
-
options: unknown;
|
|
29997
|
-
type: "avro";
|
|
29998
|
-
} | undefined;
|
|
29999
|
-
textEncoding?: string | undefined;
|
|
30000
|
-
host: string;
|
|
30001
|
-
port: number;
|
|
30002
|
-
secure: boolean;
|
|
30003
|
-
processLastOnly?: boolean | undefined;
|
|
31519
|
+
password?: string | undefined;
|
|
31520
|
+
privateKey?: string | undefined;
|
|
31521
|
+
table: string;
|
|
31522
|
+
account: string;
|
|
31523
|
+
warehouse: string;
|
|
31524
|
+
schema: string;
|
|
31525
|
+
database: string;
|
|
31526
|
+
timestampColumn?: string | undefined;
|
|
30004
31527
|
};
|
|
30005
|
-
type: "
|
|
31528
|
+
type: "snowflake";
|
|
30006
31529
|
preProcessingAggregations?: {
|
|
30007
31530
|
options: {
|
|
30008
31531
|
src: string;
|
|
@@ -30014,8 +31537,7 @@ export default class {
|
|
|
30014
31537
|
} | {
|
|
30015
31538
|
options: {
|
|
30016
31539
|
path: string;
|
|
30017
|
-
|
|
30018
|
-
password?: string | undefined;
|
|
31540
|
+
bucket: string;
|
|
30019
31541
|
format?: {
|
|
30020
31542
|
options: {
|
|
30021
31543
|
csvDelimiter?: string | undefined;
|
|
@@ -30048,32 +31570,12 @@ export default class {
|
|
|
30048
31570
|
type: "avro";
|
|
30049
31571
|
} | undefined;
|
|
30050
31572
|
textEncoding?: string | undefined;
|
|
30051
|
-
host: string;
|
|
30052
|
-
port: number;
|
|
30053
31573
|
processLastOnly?: boolean | undefined;
|
|
30054
|
-
privateKey
|
|
30055
|
-
|
|
30056
|
-
|
|
30057
|
-
preProcessingAggregations?: {
|
|
30058
|
-
options: {
|
|
30059
|
-
src: string;
|
|
30060
|
-
dest: string;
|
|
30061
|
-
allowEmpty?: boolean | undefined;
|
|
30062
|
-
};
|
|
30063
|
-
type: "unwind";
|
|
30064
|
-
}[] | undefined;
|
|
30065
|
-
} | {
|
|
30066
|
-
options: {
|
|
30067
|
-
query?: string | undefined;
|
|
30068
|
-
privateKey?: string | undefined;
|
|
30069
|
-
table: string;
|
|
30070
|
-
dataset: string;
|
|
30071
|
-
clientEmail?: string | undefined;
|
|
30072
|
-
projectId?: string | undefined;
|
|
30073
|
-
tableProjectId?: string | undefined;
|
|
30074
|
-
timestampField?: string | undefined;
|
|
31574
|
+
privateKey: string;
|
|
31575
|
+
clientEmail: string;
|
|
31576
|
+
projectId: string;
|
|
30075
31577
|
};
|
|
30076
|
-
type: "
|
|
31578
|
+
type: "gcs";
|
|
30077
31579
|
preProcessingAggregations?: {
|
|
30078
31580
|
options: {
|
|
30079
31581
|
src: string;
|
|
@@ -30084,30 +31586,8 @@ export default class {
|
|
|
30084
31586
|
}[] | undefined;
|
|
30085
31587
|
} | {
|
|
30086
31588
|
options: {
|
|
30087
|
-
|
|
30088
|
-
username: string;
|
|
31589
|
+
username?: string | undefined;
|
|
30089
31590
|
password?: string | undefined;
|
|
30090
|
-
privateKey?: string | undefined;
|
|
30091
|
-
table: string;
|
|
30092
|
-
account: string;
|
|
30093
|
-
warehouse: string;
|
|
30094
|
-
schema: string;
|
|
30095
|
-
database: string;
|
|
30096
|
-
timestampColumn?: string | undefined;
|
|
30097
|
-
};
|
|
30098
|
-
type: "snowflake";
|
|
30099
|
-
preProcessingAggregations?: {
|
|
30100
|
-
options: {
|
|
30101
|
-
src: string;
|
|
30102
|
-
dest: string;
|
|
30103
|
-
allowEmpty?: boolean | undefined;
|
|
30104
|
-
};
|
|
30105
|
-
type: "unwind";
|
|
30106
|
-
}[] | undefined;
|
|
30107
|
-
} | {
|
|
30108
|
-
options: {
|
|
30109
|
-
path: string;
|
|
30110
|
-
bucket: string;
|
|
30111
31591
|
format?: {
|
|
30112
31592
|
options: {
|
|
30113
31593
|
csvDelimiter?: string | undefined;
|
|
@@ -30139,13 +31619,18 @@ export default class {
|
|
|
30139
31619
|
options: unknown;
|
|
30140
31620
|
type: "avro";
|
|
30141
31621
|
} | undefined;
|
|
30142
|
-
textEncoding
|
|
30143
|
-
|
|
30144
|
-
|
|
30145
|
-
|
|
30146
|
-
|
|
31622
|
+
textEncoding: string;
|
|
31623
|
+
brokers: string[];
|
|
31624
|
+
topic: string;
|
|
31625
|
+
groupPrefix?: string | undefined;
|
|
31626
|
+
ssl?: boolean | undefined;
|
|
31627
|
+
registry?: {
|
|
31628
|
+
url: string;
|
|
31629
|
+
username: string;
|
|
31630
|
+
password: string;
|
|
31631
|
+
} | undefined;
|
|
30147
31632
|
};
|
|
30148
|
-
type: "
|
|
31633
|
+
type: "kafka";
|
|
30149
31634
|
preProcessingAggregations?: {
|
|
30150
31635
|
options: {
|
|
30151
31636
|
src: string;
|
|
@@ -31064,6 +32549,61 @@ export default class {
|
|
|
31064
32549
|
};
|
|
31065
32550
|
type: "unwind";
|
|
31066
32551
|
}[] | undefined;
|
|
32552
|
+
} | {
|
|
32553
|
+
options: {
|
|
32554
|
+
username?: string | undefined;
|
|
32555
|
+
password?: string | undefined;
|
|
32556
|
+
format?: {
|
|
32557
|
+
options: {
|
|
32558
|
+
csvDelimiter?: string | undefined;
|
|
32559
|
+
};
|
|
32560
|
+
type: "csv";
|
|
32561
|
+
} | {
|
|
32562
|
+
options: unknown;
|
|
32563
|
+
type: "ndjson";
|
|
32564
|
+
} | {
|
|
32565
|
+
options: {
|
|
32566
|
+
rootPath: string;
|
|
32567
|
+
};
|
|
32568
|
+
type: "json";
|
|
32569
|
+
} | {
|
|
32570
|
+
options: {
|
|
32571
|
+
rootPath: string;
|
|
32572
|
+
};
|
|
32573
|
+
type: "xml";
|
|
32574
|
+
} | {
|
|
32575
|
+
options: unknown;
|
|
32576
|
+
type: "xlsx";
|
|
32577
|
+
} | {
|
|
32578
|
+
options: {
|
|
32579
|
+
version?: string | undefined;
|
|
32580
|
+
columnsList?: string[] | undefined;
|
|
32581
|
+
};
|
|
32582
|
+
type: "parquet";
|
|
32583
|
+
} | {
|
|
32584
|
+
options: unknown;
|
|
32585
|
+
type: "avro";
|
|
32586
|
+
} | undefined;
|
|
32587
|
+
textEncoding: string;
|
|
32588
|
+
brokers: string[];
|
|
32589
|
+
topic: string;
|
|
32590
|
+
groupPrefix?: string | undefined;
|
|
32591
|
+
ssl?: boolean | undefined;
|
|
32592
|
+
registry?: {
|
|
32593
|
+
url: string;
|
|
32594
|
+
username: string;
|
|
32595
|
+
password: string;
|
|
32596
|
+
} | undefined;
|
|
32597
|
+
};
|
|
32598
|
+
type: "kafka";
|
|
32599
|
+
preProcessingAggregations?: {
|
|
32600
|
+
options: {
|
|
32601
|
+
src: string;
|
|
32602
|
+
dest: string;
|
|
32603
|
+
allowEmpty?: boolean | undefined;
|
|
32604
|
+
};
|
|
32605
|
+
type: "unwind";
|
|
32606
|
+
}[] | undefined;
|
|
31067
32607
|
};
|
|
31068
32608
|
fieldsRules?: {
|
|
31069
32609
|
[x: string]: ({
|
|
@@ -32473,6 +34013,61 @@ export default class {
|
|
|
32473
34013
|
};
|
|
32474
34014
|
type: "unwind";
|
|
32475
34015
|
}[] | undefined;
|
|
34016
|
+
} | {
|
|
34017
|
+
options: {
|
|
34018
|
+
username?: string | undefined;
|
|
34019
|
+
password?: string | undefined;
|
|
34020
|
+
format?: {
|
|
34021
|
+
options: {
|
|
34022
|
+
csvDelimiter?: string | undefined;
|
|
34023
|
+
};
|
|
34024
|
+
type: "csv";
|
|
34025
|
+
} | {
|
|
34026
|
+
options: unknown;
|
|
34027
|
+
type: "ndjson";
|
|
34028
|
+
} | {
|
|
34029
|
+
options: {
|
|
34030
|
+
rootPath: string;
|
|
34031
|
+
};
|
|
34032
|
+
type: "json";
|
|
34033
|
+
} | {
|
|
34034
|
+
options: {
|
|
34035
|
+
rootPath: string;
|
|
34036
|
+
};
|
|
34037
|
+
type: "xml";
|
|
34038
|
+
} | {
|
|
34039
|
+
options: unknown;
|
|
34040
|
+
type: "xlsx";
|
|
34041
|
+
} | {
|
|
34042
|
+
options: {
|
|
34043
|
+
version?: string | undefined;
|
|
34044
|
+
columnsList?: string[] | undefined;
|
|
34045
|
+
};
|
|
34046
|
+
type: "parquet";
|
|
34047
|
+
} | {
|
|
34048
|
+
options: unknown;
|
|
34049
|
+
type: "avro";
|
|
34050
|
+
} | undefined;
|
|
34051
|
+
textEncoding: string;
|
|
34052
|
+
brokers: string[];
|
|
34053
|
+
topic: string;
|
|
34054
|
+
groupPrefix?: string | undefined;
|
|
34055
|
+
ssl?: boolean | undefined;
|
|
34056
|
+
registry?: {
|
|
34057
|
+
url: string;
|
|
34058
|
+
username: string;
|
|
34059
|
+
password: string;
|
|
34060
|
+
} | undefined;
|
|
34061
|
+
};
|
|
34062
|
+
type: "kafka";
|
|
34063
|
+
preProcessingAggregations?: {
|
|
34064
|
+
options: {
|
|
34065
|
+
src: string;
|
|
34066
|
+
dest: string;
|
|
34067
|
+
allowEmpty?: boolean | undefined;
|
|
34068
|
+
};
|
|
34069
|
+
type: "unwind";
|
|
34070
|
+
}[] | undefined;
|
|
32476
34071
|
};
|
|
32477
34072
|
fieldsRules?: {
|
|
32478
34073
|
[x: string]: ({
|
|
@@ -33383,6 +34978,61 @@ export default class {
|
|
|
33383
34978
|
};
|
|
33384
34979
|
type: "unwind";
|
|
33385
34980
|
}[] | undefined;
|
|
34981
|
+
} | {
|
|
34982
|
+
options: {
|
|
34983
|
+
username?: string | undefined;
|
|
34984
|
+
password?: string | undefined;
|
|
34985
|
+
format?: {
|
|
34986
|
+
options: {
|
|
34987
|
+
csvDelimiter?: string | undefined;
|
|
34988
|
+
};
|
|
34989
|
+
type: "csv";
|
|
34990
|
+
} | {
|
|
34991
|
+
options: unknown;
|
|
34992
|
+
type: "ndjson";
|
|
34993
|
+
} | {
|
|
34994
|
+
options: {
|
|
34995
|
+
rootPath: string;
|
|
34996
|
+
};
|
|
34997
|
+
type: "json";
|
|
34998
|
+
} | {
|
|
34999
|
+
options: {
|
|
35000
|
+
rootPath: string;
|
|
35001
|
+
};
|
|
35002
|
+
type: "xml";
|
|
35003
|
+
} | {
|
|
35004
|
+
options: unknown;
|
|
35005
|
+
type: "xlsx";
|
|
35006
|
+
} | {
|
|
35007
|
+
options: {
|
|
35008
|
+
version?: string | undefined;
|
|
35009
|
+
columnsList?: string[] | undefined;
|
|
35010
|
+
};
|
|
35011
|
+
type: "parquet";
|
|
35012
|
+
} | {
|
|
35013
|
+
options: unknown;
|
|
35014
|
+
type: "avro";
|
|
35015
|
+
} | undefined;
|
|
35016
|
+
textEncoding: string;
|
|
35017
|
+
brokers: string[];
|
|
35018
|
+
topic: string;
|
|
35019
|
+
groupPrefix?: string | undefined;
|
|
35020
|
+
ssl?: boolean | undefined;
|
|
35021
|
+
registry?: {
|
|
35022
|
+
url: string;
|
|
35023
|
+
username: string;
|
|
35024
|
+
password: string;
|
|
35025
|
+
} | undefined;
|
|
35026
|
+
};
|
|
35027
|
+
type: "kafka";
|
|
35028
|
+
preProcessingAggregations?: {
|
|
35029
|
+
options: {
|
|
35030
|
+
src: string;
|
|
35031
|
+
dest: string;
|
|
35032
|
+
allowEmpty?: boolean | undefined;
|
|
35033
|
+
};
|
|
35034
|
+
type: "unwind";
|
|
35035
|
+
}[] | undefined;
|
|
33386
35036
|
};
|
|
33387
35037
|
fieldsRules?: {
|
|
33388
35038
|
[x: string]: ({
|
|
@@ -34856,6 +36506,61 @@ export default class {
|
|
|
34856
36506
|
};
|
|
34857
36507
|
type: "unwind";
|
|
34858
36508
|
}[] | undefined;
|
|
36509
|
+
} | {
|
|
36510
|
+
options: {
|
|
36511
|
+
username?: string | undefined;
|
|
36512
|
+
password?: string | undefined;
|
|
36513
|
+
format?: {
|
|
36514
|
+
options: {
|
|
36515
|
+
csvDelimiter?: string | undefined;
|
|
36516
|
+
};
|
|
36517
|
+
type: "csv";
|
|
36518
|
+
} | {
|
|
36519
|
+
options: unknown;
|
|
36520
|
+
type: "ndjson";
|
|
36521
|
+
} | {
|
|
36522
|
+
options: {
|
|
36523
|
+
rootPath: string;
|
|
36524
|
+
};
|
|
36525
|
+
type: "json";
|
|
36526
|
+
} | {
|
|
36527
|
+
options: {
|
|
36528
|
+
rootPath: string;
|
|
36529
|
+
};
|
|
36530
|
+
type: "xml";
|
|
36531
|
+
} | {
|
|
36532
|
+
options: unknown;
|
|
36533
|
+
type: "xlsx";
|
|
36534
|
+
} | {
|
|
36535
|
+
options: {
|
|
36536
|
+
version?: string | undefined;
|
|
36537
|
+
columnsList?: string[] | undefined;
|
|
36538
|
+
};
|
|
36539
|
+
type: "parquet";
|
|
36540
|
+
} | {
|
|
36541
|
+
options: unknown;
|
|
36542
|
+
type: "avro";
|
|
36543
|
+
} | undefined;
|
|
36544
|
+
textEncoding: string;
|
|
36545
|
+
brokers: string[];
|
|
36546
|
+
topic: string;
|
|
36547
|
+
groupPrefix?: string | undefined;
|
|
36548
|
+
ssl?: boolean | undefined;
|
|
36549
|
+
registry?: {
|
|
36550
|
+
url: string;
|
|
36551
|
+
username: string;
|
|
36552
|
+
password: string;
|
|
36553
|
+
} | undefined;
|
|
36554
|
+
};
|
|
36555
|
+
type: "kafka";
|
|
36556
|
+
preProcessingAggregations?: {
|
|
36557
|
+
options: {
|
|
36558
|
+
src: string;
|
|
36559
|
+
dest: string;
|
|
36560
|
+
allowEmpty?: boolean | undefined;
|
|
36561
|
+
};
|
|
36562
|
+
type: "unwind";
|
|
36563
|
+
}[] | undefined;
|
|
34859
36564
|
};
|
|
34860
36565
|
fieldsRules?: {
|
|
34861
36566
|
[x: string]: ({
|
|
@@ -35766,6 +37471,61 @@ export default class {
|
|
|
35766
37471
|
};
|
|
35767
37472
|
type: "unwind";
|
|
35768
37473
|
}[] | undefined;
|
|
37474
|
+
} | {
|
|
37475
|
+
options: {
|
|
37476
|
+
username?: string | undefined;
|
|
37477
|
+
password?: string | undefined;
|
|
37478
|
+
format?: {
|
|
37479
|
+
options: {
|
|
37480
|
+
csvDelimiter?: string | undefined;
|
|
37481
|
+
};
|
|
37482
|
+
type: "csv";
|
|
37483
|
+
} | {
|
|
37484
|
+
options: unknown;
|
|
37485
|
+
type: "ndjson";
|
|
37486
|
+
} | {
|
|
37487
|
+
options: {
|
|
37488
|
+
rootPath: string;
|
|
37489
|
+
};
|
|
37490
|
+
type: "json";
|
|
37491
|
+
} | {
|
|
37492
|
+
options: {
|
|
37493
|
+
rootPath: string;
|
|
37494
|
+
};
|
|
37495
|
+
type: "xml";
|
|
37496
|
+
} | {
|
|
37497
|
+
options: unknown;
|
|
37498
|
+
type: "xlsx";
|
|
37499
|
+
} | {
|
|
37500
|
+
options: {
|
|
37501
|
+
version?: string | undefined;
|
|
37502
|
+
columnsList?: string[] | undefined;
|
|
37503
|
+
};
|
|
37504
|
+
type: "parquet";
|
|
37505
|
+
} | {
|
|
37506
|
+
options: unknown;
|
|
37507
|
+
type: "avro";
|
|
37508
|
+
} | undefined;
|
|
37509
|
+
textEncoding: string;
|
|
37510
|
+
brokers: string[];
|
|
37511
|
+
topic: string;
|
|
37512
|
+
groupPrefix?: string | undefined;
|
|
37513
|
+
ssl?: boolean | undefined;
|
|
37514
|
+
registry?: {
|
|
37515
|
+
url: string;
|
|
37516
|
+
username: string;
|
|
37517
|
+
password: string;
|
|
37518
|
+
} | undefined;
|
|
37519
|
+
};
|
|
37520
|
+
type: "kafka";
|
|
37521
|
+
preProcessingAggregations?: {
|
|
37522
|
+
options: {
|
|
37523
|
+
src: string;
|
|
37524
|
+
dest: string;
|
|
37525
|
+
allowEmpty?: boolean | undefined;
|
|
37526
|
+
};
|
|
37527
|
+
type: "unwind";
|
|
37528
|
+
}[] | undefined;
|
|
35769
37529
|
};
|
|
35770
37530
|
fieldsRules?: {
|
|
35771
37531
|
[x: string]: ({
|
|
@@ -37078,105 +38838,160 @@ export default class {
|
|
|
37078
38838
|
options: unknown;
|
|
37079
38839
|
type: "avro";
|
|
37080
38840
|
} | undefined;
|
|
37081
|
-
textEncoding?: string | undefined;
|
|
37082
|
-
host: string;
|
|
37083
|
-
port: number;
|
|
37084
|
-
processLastOnly?: boolean | undefined;
|
|
37085
|
-
privateKey?: string | undefined;
|
|
37086
|
-
};
|
|
37087
|
-
type: "sftp";
|
|
37088
|
-
preProcessingAggregations?: {
|
|
37089
|
-
options: {
|
|
37090
|
-
src: string;
|
|
37091
|
-
dest: string;
|
|
37092
|
-
allowEmpty?: boolean | undefined;
|
|
37093
|
-
};
|
|
37094
|
-
type: "unwind";
|
|
37095
|
-
}[] | undefined;
|
|
37096
|
-
} | {
|
|
37097
|
-
options: {
|
|
37098
|
-
query?: string | undefined;
|
|
37099
|
-
privateKey?: string | undefined;
|
|
37100
|
-
table: string;
|
|
37101
|
-
dataset: string;
|
|
37102
|
-
clientEmail?: string | undefined;
|
|
37103
|
-
projectId?: string | undefined;
|
|
37104
|
-
tableProjectId?: string | undefined;
|
|
37105
|
-
timestampField?: string | undefined;
|
|
37106
|
-
};
|
|
37107
|
-
type: "bigquery";
|
|
37108
|
-
preProcessingAggregations?: {
|
|
37109
|
-
options: {
|
|
37110
|
-
src: string;
|
|
37111
|
-
dest: string;
|
|
37112
|
-
allowEmpty?: boolean | undefined;
|
|
37113
|
-
};
|
|
37114
|
-
type: "unwind";
|
|
37115
|
-
}[] | undefined;
|
|
37116
|
-
} | {
|
|
37117
|
-
options: {
|
|
37118
|
-
query?: string | undefined;
|
|
37119
|
-
username: string;
|
|
37120
|
-
password?: string | undefined;
|
|
37121
|
-
privateKey?: string | undefined;
|
|
37122
|
-
table: string;
|
|
37123
|
-
account: string;
|
|
37124
|
-
warehouse: string;
|
|
37125
|
-
schema: string;
|
|
37126
|
-
database: string;
|
|
37127
|
-
timestampColumn?: string | undefined;
|
|
37128
|
-
};
|
|
37129
|
-
type: "snowflake";
|
|
37130
|
-
preProcessingAggregations?: {
|
|
37131
|
-
options: {
|
|
37132
|
-
src: string;
|
|
37133
|
-
dest: string;
|
|
37134
|
-
allowEmpty?: boolean | undefined;
|
|
37135
|
-
};
|
|
37136
|
-
type: "unwind";
|
|
37137
|
-
}[] | undefined;
|
|
37138
|
-
} | {
|
|
37139
|
-
options: {
|
|
37140
|
-
path: string;
|
|
37141
|
-
bucket: string;
|
|
37142
|
-
format?: {
|
|
37143
|
-
options: {
|
|
37144
|
-
csvDelimiter?: string | undefined;
|
|
37145
|
-
};
|
|
37146
|
-
type: "csv";
|
|
37147
|
-
} | {
|
|
37148
|
-
options: unknown;
|
|
37149
|
-
type: "ndjson";
|
|
37150
|
-
} | {
|
|
37151
|
-
options: {
|
|
37152
|
-
rootPath: string;
|
|
37153
|
-
};
|
|
37154
|
-
type: "json";
|
|
37155
|
-
} | {
|
|
37156
|
-
options: {
|
|
37157
|
-
rootPath: string;
|
|
37158
|
-
};
|
|
37159
|
-
type: "xml";
|
|
37160
|
-
} | {
|
|
37161
|
-
options: unknown;
|
|
37162
|
-
type: "xlsx";
|
|
37163
|
-
} | {
|
|
37164
|
-
options: {
|
|
37165
|
-
version?: string | undefined;
|
|
37166
|
-
columnsList?: string[] | undefined;
|
|
37167
|
-
};
|
|
37168
|
-
type: "parquet";
|
|
37169
|
-
} | {
|
|
37170
|
-
options: unknown;
|
|
37171
|
-
type: "avro";
|
|
38841
|
+
textEncoding?: string | undefined;
|
|
38842
|
+
host: string;
|
|
38843
|
+
port: number;
|
|
38844
|
+
processLastOnly?: boolean | undefined;
|
|
38845
|
+
privateKey?: string | undefined;
|
|
38846
|
+
};
|
|
38847
|
+
type: "sftp";
|
|
38848
|
+
preProcessingAggregations?: {
|
|
38849
|
+
options: {
|
|
38850
|
+
src: string;
|
|
38851
|
+
dest: string;
|
|
38852
|
+
allowEmpty?: boolean | undefined;
|
|
38853
|
+
};
|
|
38854
|
+
type: "unwind";
|
|
38855
|
+
}[] | undefined;
|
|
38856
|
+
} | {
|
|
38857
|
+
options: {
|
|
38858
|
+
query?: string | undefined;
|
|
38859
|
+
privateKey?: string | undefined;
|
|
38860
|
+
table: string;
|
|
38861
|
+
dataset: string;
|
|
38862
|
+
clientEmail?: string | undefined;
|
|
38863
|
+
projectId?: string | undefined;
|
|
38864
|
+
tableProjectId?: string | undefined;
|
|
38865
|
+
timestampField?: string | undefined;
|
|
38866
|
+
};
|
|
38867
|
+
type: "bigquery";
|
|
38868
|
+
preProcessingAggregations?: {
|
|
38869
|
+
options: {
|
|
38870
|
+
src: string;
|
|
38871
|
+
dest: string;
|
|
38872
|
+
allowEmpty?: boolean | undefined;
|
|
38873
|
+
};
|
|
38874
|
+
type: "unwind";
|
|
38875
|
+
}[] | undefined;
|
|
38876
|
+
} | {
|
|
38877
|
+
options: {
|
|
38878
|
+
query?: string | undefined;
|
|
38879
|
+
username: string;
|
|
38880
|
+
password?: string | undefined;
|
|
38881
|
+
privateKey?: string | undefined;
|
|
38882
|
+
table: string;
|
|
38883
|
+
account: string;
|
|
38884
|
+
warehouse: string;
|
|
38885
|
+
schema: string;
|
|
38886
|
+
database: string;
|
|
38887
|
+
timestampColumn?: string | undefined;
|
|
38888
|
+
};
|
|
38889
|
+
type: "snowflake";
|
|
38890
|
+
preProcessingAggregations?: {
|
|
38891
|
+
options: {
|
|
38892
|
+
src: string;
|
|
38893
|
+
dest: string;
|
|
38894
|
+
allowEmpty?: boolean | undefined;
|
|
38895
|
+
};
|
|
38896
|
+
type: "unwind";
|
|
38897
|
+
}[] | undefined;
|
|
38898
|
+
} | {
|
|
38899
|
+
options: {
|
|
38900
|
+
path: string;
|
|
38901
|
+
bucket: string;
|
|
38902
|
+
format?: {
|
|
38903
|
+
options: {
|
|
38904
|
+
csvDelimiter?: string | undefined;
|
|
38905
|
+
};
|
|
38906
|
+
type: "csv";
|
|
38907
|
+
} | {
|
|
38908
|
+
options: unknown;
|
|
38909
|
+
type: "ndjson";
|
|
38910
|
+
} | {
|
|
38911
|
+
options: {
|
|
38912
|
+
rootPath: string;
|
|
38913
|
+
};
|
|
38914
|
+
type: "json";
|
|
38915
|
+
} | {
|
|
38916
|
+
options: {
|
|
38917
|
+
rootPath: string;
|
|
38918
|
+
};
|
|
38919
|
+
type: "xml";
|
|
38920
|
+
} | {
|
|
38921
|
+
options: unknown;
|
|
38922
|
+
type: "xlsx";
|
|
38923
|
+
} | {
|
|
38924
|
+
options: {
|
|
38925
|
+
version?: string | undefined;
|
|
38926
|
+
columnsList?: string[] | undefined;
|
|
38927
|
+
};
|
|
38928
|
+
type: "parquet";
|
|
38929
|
+
} | {
|
|
38930
|
+
options: unknown;
|
|
38931
|
+
type: "avro";
|
|
38932
|
+
} | undefined;
|
|
38933
|
+
textEncoding?: string | undefined;
|
|
38934
|
+
processLastOnly?: boolean | undefined;
|
|
38935
|
+
privateKey: string;
|
|
38936
|
+
clientEmail: string;
|
|
38937
|
+
projectId: string;
|
|
38938
|
+
};
|
|
38939
|
+
type: "gcs";
|
|
38940
|
+
preProcessingAggregations?: {
|
|
38941
|
+
options: {
|
|
38942
|
+
src: string;
|
|
38943
|
+
dest: string;
|
|
38944
|
+
allowEmpty?: boolean | undefined;
|
|
38945
|
+
};
|
|
38946
|
+
type: "unwind";
|
|
38947
|
+
}[] | undefined;
|
|
38948
|
+
} | {
|
|
38949
|
+
options: {
|
|
38950
|
+
username?: string | undefined;
|
|
38951
|
+
password?: string | undefined;
|
|
38952
|
+
format?: {
|
|
38953
|
+
options: {
|
|
38954
|
+
csvDelimiter?: string | undefined;
|
|
38955
|
+
};
|
|
38956
|
+
type: "csv";
|
|
38957
|
+
} | {
|
|
38958
|
+
options: unknown;
|
|
38959
|
+
type: "ndjson";
|
|
38960
|
+
} | {
|
|
38961
|
+
options: {
|
|
38962
|
+
rootPath: string;
|
|
38963
|
+
};
|
|
38964
|
+
type: "json";
|
|
38965
|
+
} | {
|
|
38966
|
+
options: {
|
|
38967
|
+
rootPath: string;
|
|
38968
|
+
};
|
|
38969
|
+
type: "xml";
|
|
38970
|
+
} | {
|
|
38971
|
+
options: unknown;
|
|
38972
|
+
type: "xlsx";
|
|
38973
|
+
} | {
|
|
38974
|
+
options: {
|
|
38975
|
+
version?: string | undefined;
|
|
38976
|
+
columnsList?: string[] | undefined;
|
|
38977
|
+
};
|
|
38978
|
+
type: "parquet";
|
|
38979
|
+
} | {
|
|
38980
|
+
options: unknown;
|
|
38981
|
+
type: "avro";
|
|
38982
|
+
} | undefined;
|
|
38983
|
+
textEncoding: string;
|
|
38984
|
+
brokers: string[];
|
|
38985
|
+
topic: string;
|
|
38986
|
+
groupPrefix?: string | undefined;
|
|
38987
|
+
ssl?: boolean | undefined;
|
|
38988
|
+
registry?: {
|
|
38989
|
+
url: string;
|
|
38990
|
+
username: string;
|
|
38991
|
+
password: string;
|
|
37172
38992
|
} | undefined;
|
|
37173
|
-
textEncoding?: string | undefined;
|
|
37174
|
-
processLastOnly?: boolean | undefined;
|
|
37175
|
-
privateKey: string;
|
|
37176
|
-
clientEmail: string;
|
|
37177
|
-
projectId: string;
|
|
37178
38993
|
};
|
|
37179
|
-
type: "
|
|
38994
|
+
type: "kafka";
|
|
37180
38995
|
preProcessingAggregations?: {
|
|
37181
38996
|
options: {
|
|
37182
38997
|
src: string;
|
|
@@ -37839,20 +39654,168 @@ export default class {
|
|
|
37839
39654
|
} | undefined;
|
|
37840
39655
|
textEncoding?: string | undefined;
|
|
37841
39656
|
};
|
|
37842
|
-
type: "url";
|
|
37843
|
-
preProcessingAggregations?: {
|
|
37844
|
-
options: {
|
|
37845
|
-
src: string;
|
|
37846
|
-
dest: string;
|
|
37847
|
-
allowEmpty?: boolean | undefined;
|
|
37848
|
-
};
|
|
37849
|
-
type: "unwind";
|
|
37850
|
-
}[] | undefined;
|
|
37851
|
-
} | {
|
|
37852
|
-
options: {
|
|
37853
|
-
id: string;
|
|
37854
|
-
};
|
|
37855
|
-
type: "datasource";
|
|
39657
|
+
type: "url";
|
|
39658
|
+
preProcessingAggregations?: {
|
|
39659
|
+
options: {
|
|
39660
|
+
src: string;
|
|
39661
|
+
dest: string;
|
|
39662
|
+
allowEmpty?: boolean | undefined;
|
|
39663
|
+
};
|
|
39664
|
+
type: "unwind";
|
|
39665
|
+
}[] | undefined;
|
|
39666
|
+
} | {
|
|
39667
|
+
options: {
|
|
39668
|
+
id: string;
|
|
39669
|
+
};
|
|
39670
|
+
type: "datasource";
|
|
39671
|
+
preProcessingAggregations?: {
|
|
39672
|
+
options: {
|
|
39673
|
+
src: string;
|
|
39674
|
+
dest: string;
|
|
39675
|
+
allowEmpty?: boolean | undefined;
|
|
39676
|
+
};
|
|
39677
|
+
type: "unwind";
|
|
39678
|
+
}[] | undefined;
|
|
39679
|
+
} | {
|
|
39680
|
+
options: {
|
|
39681
|
+
path: string;
|
|
39682
|
+
bucket: string;
|
|
39683
|
+
format: {
|
|
39684
|
+
options: {
|
|
39685
|
+
csvDelimiter?: string | undefined;
|
|
39686
|
+
};
|
|
39687
|
+
type: "csv";
|
|
39688
|
+
} | {
|
|
39689
|
+
options: unknown;
|
|
39690
|
+
type: "ndjson";
|
|
39691
|
+
} | {
|
|
39692
|
+
options: {
|
|
39693
|
+
rootPath: string;
|
|
39694
|
+
};
|
|
39695
|
+
type: "json";
|
|
39696
|
+
} | {
|
|
39697
|
+
options: {
|
|
39698
|
+
rootPath: string;
|
|
39699
|
+
};
|
|
39700
|
+
type: "xml";
|
|
39701
|
+
} | {
|
|
39702
|
+
options: unknown;
|
|
39703
|
+
type: "xlsx";
|
|
39704
|
+
} | {
|
|
39705
|
+
options: {
|
|
39706
|
+
version?: string | undefined;
|
|
39707
|
+
columnsList?: string[] | undefined;
|
|
39708
|
+
};
|
|
39709
|
+
type: "parquet";
|
|
39710
|
+
} | {
|
|
39711
|
+
options: unknown;
|
|
39712
|
+
type: "avro";
|
|
39713
|
+
};
|
|
39714
|
+
textEncoding: string;
|
|
39715
|
+
};
|
|
39716
|
+
type: "file";
|
|
39717
|
+
preProcessingAggregations?: {
|
|
39718
|
+
options: {
|
|
39719
|
+
src: string;
|
|
39720
|
+
dest: string;
|
|
39721
|
+
allowEmpty?: boolean | undefined;
|
|
39722
|
+
};
|
|
39723
|
+
type: "unwind";
|
|
39724
|
+
}[] | undefined;
|
|
39725
|
+
} | {
|
|
39726
|
+
options: {
|
|
39727
|
+
path: string;
|
|
39728
|
+
username: string;
|
|
39729
|
+
password: string;
|
|
39730
|
+
format?: {
|
|
39731
|
+
options: {
|
|
39732
|
+
csvDelimiter?: string | undefined;
|
|
39733
|
+
};
|
|
39734
|
+
type: "csv";
|
|
39735
|
+
} | {
|
|
39736
|
+
options: unknown;
|
|
39737
|
+
type: "ndjson";
|
|
39738
|
+
} | {
|
|
39739
|
+
options: {
|
|
39740
|
+
rootPath: string;
|
|
39741
|
+
};
|
|
39742
|
+
type: "json";
|
|
39743
|
+
} | {
|
|
39744
|
+
options: {
|
|
39745
|
+
rootPath: string;
|
|
39746
|
+
};
|
|
39747
|
+
type: "xml";
|
|
39748
|
+
} | {
|
|
39749
|
+
options: unknown;
|
|
39750
|
+
type: "xlsx";
|
|
39751
|
+
} | {
|
|
39752
|
+
options: {
|
|
39753
|
+
version?: string | undefined;
|
|
39754
|
+
columnsList?: string[] | undefined;
|
|
39755
|
+
};
|
|
39756
|
+
type: "parquet";
|
|
39757
|
+
} | {
|
|
39758
|
+
options: unknown;
|
|
39759
|
+
type: "avro";
|
|
39760
|
+
} | undefined;
|
|
39761
|
+
textEncoding?: string | undefined;
|
|
39762
|
+
host: string;
|
|
39763
|
+
port: number;
|
|
39764
|
+
secure: boolean;
|
|
39765
|
+
processLastOnly?: boolean | undefined;
|
|
39766
|
+
};
|
|
39767
|
+
type: "ftp";
|
|
39768
|
+
preProcessingAggregations?: {
|
|
39769
|
+
options: {
|
|
39770
|
+
src: string;
|
|
39771
|
+
dest: string;
|
|
39772
|
+
allowEmpty?: boolean | undefined;
|
|
39773
|
+
};
|
|
39774
|
+
type: "unwind";
|
|
39775
|
+
}[] | undefined;
|
|
39776
|
+
} | {
|
|
39777
|
+
options: {
|
|
39778
|
+
path: string;
|
|
39779
|
+
username: string;
|
|
39780
|
+
password?: string | undefined;
|
|
39781
|
+
format?: {
|
|
39782
|
+
options: {
|
|
39783
|
+
csvDelimiter?: string | undefined;
|
|
39784
|
+
};
|
|
39785
|
+
type: "csv";
|
|
39786
|
+
} | {
|
|
39787
|
+
options: unknown;
|
|
39788
|
+
type: "ndjson";
|
|
39789
|
+
} | {
|
|
39790
|
+
options: {
|
|
39791
|
+
rootPath: string;
|
|
39792
|
+
};
|
|
39793
|
+
type: "json";
|
|
39794
|
+
} | {
|
|
39795
|
+
options: {
|
|
39796
|
+
rootPath: string;
|
|
39797
|
+
};
|
|
39798
|
+
type: "xml";
|
|
39799
|
+
} | {
|
|
39800
|
+
options: unknown;
|
|
39801
|
+
type: "xlsx";
|
|
39802
|
+
} | {
|
|
39803
|
+
options: {
|
|
39804
|
+
version?: string | undefined;
|
|
39805
|
+
columnsList?: string[] | undefined;
|
|
39806
|
+
};
|
|
39807
|
+
type: "parquet";
|
|
39808
|
+
} | {
|
|
39809
|
+
options: unknown;
|
|
39810
|
+
type: "avro";
|
|
39811
|
+
} | undefined;
|
|
39812
|
+
textEncoding?: string | undefined;
|
|
39813
|
+
host: string;
|
|
39814
|
+
port: number;
|
|
39815
|
+
processLastOnly?: boolean | undefined;
|
|
39816
|
+
privateKey?: string | undefined;
|
|
39817
|
+
};
|
|
39818
|
+
type: "sftp";
|
|
37856
39819
|
preProcessingAggregations?: {
|
|
37857
39820
|
options: {
|
|
37858
39821
|
src: string;
|
|
@@ -37863,42 +39826,16 @@ export default class {
|
|
|
37863
39826
|
}[] | undefined;
|
|
37864
39827
|
} | {
|
|
37865
39828
|
options: {
|
|
37866
|
-
|
|
37867
|
-
|
|
37868
|
-
|
|
37869
|
-
|
|
37870
|
-
|
|
37871
|
-
|
|
37872
|
-
|
|
37873
|
-
|
|
37874
|
-
options: unknown;
|
|
37875
|
-
type: "ndjson";
|
|
37876
|
-
} | {
|
|
37877
|
-
options: {
|
|
37878
|
-
rootPath: string;
|
|
37879
|
-
};
|
|
37880
|
-
type: "json";
|
|
37881
|
-
} | {
|
|
37882
|
-
options: {
|
|
37883
|
-
rootPath: string;
|
|
37884
|
-
};
|
|
37885
|
-
type: "xml";
|
|
37886
|
-
} | {
|
|
37887
|
-
options: unknown;
|
|
37888
|
-
type: "xlsx";
|
|
37889
|
-
} | {
|
|
37890
|
-
options: {
|
|
37891
|
-
version?: string | undefined;
|
|
37892
|
-
columnsList?: string[] | undefined;
|
|
37893
|
-
};
|
|
37894
|
-
type: "parquet";
|
|
37895
|
-
} | {
|
|
37896
|
-
options: unknown;
|
|
37897
|
-
type: "avro";
|
|
37898
|
-
};
|
|
37899
|
-
textEncoding: string;
|
|
39829
|
+
query?: string | undefined;
|
|
39830
|
+
privateKey?: string | undefined;
|
|
39831
|
+
table: string;
|
|
39832
|
+
dataset: string;
|
|
39833
|
+
clientEmail?: string | undefined;
|
|
39834
|
+
projectId?: string | undefined;
|
|
39835
|
+
tableProjectId?: string | undefined;
|
|
39836
|
+
timestampField?: string | undefined;
|
|
37900
39837
|
};
|
|
37901
|
-
type: "
|
|
39838
|
+
type: "bigquery";
|
|
37902
39839
|
preProcessingAggregations?: {
|
|
37903
39840
|
options: {
|
|
37904
39841
|
src: string;
|
|
@@ -37909,47 +39846,18 @@ export default class {
|
|
|
37909
39846
|
}[] | undefined;
|
|
37910
39847
|
} | {
|
|
37911
39848
|
options: {
|
|
37912
|
-
|
|
39849
|
+
query?: string | undefined;
|
|
37913
39850
|
username: string;
|
|
37914
|
-
password
|
|
37915
|
-
|
|
37916
|
-
|
|
37917
|
-
|
|
37918
|
-
|
|
37919
|
-
|
|
37920
|
-
|
|
37921
|
-
|
|
37922
|
-
type: "ndjson";
|
|
37923
|
-
} | {
|
|
37924
|
-
options: {
|
|
37925
|
-
rootPath: string;
|
|
37926
|
-
};
|
|
37927
|
-
type: "json";
|
|
37928
|
-
} | {
|
|
37929
|
-
options: {
|
|
37930
|
-
rootPath: string;
|
|
37931
|
-
};
|
|
37932
|
-
type: "xml";
|
|
37933
|
-
} | {
|
|
37934
|
-
options: unknown;
|
|
37935
|
-
type: "xlsx";
|
|
37936
|
-
} | {
|
|
37937
|
-
options: {
|
|
37938
|
-
version?: string | undefined;
|
|
37939
|
-
columnsList?: string[] | undefined;
|
|
37940
|
-
};
|
|
37941
|
-
type: "parquet";
|
|
37942
|
-
} | {
|
|
37943
|
-
options: unknown;
|
|
37944
|
-
type: "avro";
|
|
37945
|
-
} | undefined;
|
|
37946
|
-
textEncoding?: string | undefined;
|
|
37947
|
-
host: string;
|
|
37948
|
-
port: number;
|
|
37949
|
-
secure: boolean;
|
|
37950
|
-
processLastOnly?: boolean | undefined;
|
|
39851
|
+
password?: string | undefined;
|
|
39852
|
+
privateKey?: string | undefined;
|
|
39853
|
+
table: string;
|
|
39854
|
+
account: string;
|
|
39855
|
+
warehouse: string;
|
|
39856
|
+
schema: string;
|
|
39857
|
+
database: string;
|
|
39858
|
+
timestampColumn?: string | undefined;
|
|
37951
39859
|
};
|
|
37952
|
-
type: "
|
|
39860
|
+
type: "snowflake";
|
|
37953
39861
|
preProcessingAggregations?: {
|
|
37954
39862
|
options: {
|
|
37955
39863
|
src: string;
|
|
@@ -37961,8 +39869,7 @@ export default class {
|
|
|
37961
39869
|
} | {
|
|
37962
39870
|
options: {
|
|
37963
39871
|
path: string;
|
|
37964
|
-
|
|
37965
|
-
password?: string | undefined;
|
|
39872
|
+
bucket: string;
|
|
37966
39873
|
format?: {
|
|
37967
39874
|
options: {
|
|
37968
39875
|
csvDelimiter?: string | undefined;
|
|
@@ -37995,32 +39902,12 @@ export default class {
|
|
|
37995
39902
|
type: "avro";
|
|
37996
39903
|
} | undefined;
|
|
37997
39904
|
textEncoding?: string | undefined;
|
|
37998
|
-
host: string;
|
|
37999
|
-
port: number;
|
|
38000
39905
|
processLastOnly?: boolean | undefined;
|
|
38001
|
-
privateKey
|
|
38002
|
-
|
|
38003
|
-
|
|
38004
|
-
preProcessingAggregations?: {
|
|
38005
|
-
options: {
|
|
38006
|
-
src: string;
|
|
38007
|
-
dest: string;
|
|
38008
|
-
allowEmpty?: boolean | undefined;
|
|
38009
|
-
};
|
|
38010
|
-
type: "unwind";
|
|
38011
|
-
}[] | undefined;
|
|
38012
|
-
} | {
|
|
38013
|
-
options: {
|
|
38014
|
-
query?: string | undefined;
|
|
38015
|
-
privateKey?: string | undefined;
|
|
38016
|
-
table: string;
|
|
38017
|
-
dataset: string;
|
|
38018
|
-
clientEmail?: string | undefined;
|
|
38019
|
-
projectId?: string | undefined;
|
|
38020
|
-
tableProjectId?: string | undefined;
|
|
38021
|
-
timestampField?: string | undefined;
|
|
39906
|
+
privateKey: string;
|
|
39907
|
+
clientEmail: string;
|
|
39908
|
+
projectId: string;
|
|
38022
39909
|
};
|
|
38023
|
-
type: "
|
|
39910
|
+
type: "gcs";
|
|
38024
39911
|
preProcessingAggregations?: {
|
|
38025
39912
|
options: {
|
|
38026
39913
|
src: string;
|
|
@@ -38031,30 +39918,8 @@ export default class {
|
|
|
38031
39918
|
}[] | undefined;
|
|
38032
39919
|
} | {
|
|
38033
39920
|
options: {
|
|
38034
|
-
|
|
38035
|
-
username: string;
|
|
39921
|
+
username?: string | undefined;
|
|
38036
39922
|
password?: string | undefined;
|
|
38037
|
-
privateKey?: string | undefined;
|
|
38038
|
-
table: string;
|
|
38039
|
-
account: string;
|
|
38040
|
-
warehouse: string;
|
|
38041
|
-
schema: string;
|
|
38042
|
-
database: string;
|
|
38043
|
-
timestampColumn?: string | undefined;
|
|
38044
|
-
};
|
|
38045
|
-
type: "snowflake";
|
|
38046
|
-
preProcessingAggregations?: {
|
|
38047
|
-
options: {
|
|
38048
|
-
src: string;
|
|
38049
|
-
dest: string;
|
|
38050
|
-
allowEmpty?: boolean | undefined;
|
|
38051
|
-
};
|
|
38052
|
-
type: "unwind";
|
|
38053
|
-
}[] | undefined;
|
|
38054
|
-
} | {
|
|
38055
|
-
options: {
|
|
38056
|
-
path: string;
|
|
38057
|
-
bucket: string;
|
|
38058
39923
|
format?: {
|
|
38059
39924
|
options: {
|
|
38060
39925
|
csvDelimiter?: string | undefined;
|
|
@@ -38086,13 +39951,18 @@ export default class {
|
|
|
38086
39951
|
options: unknown;
|
|
38087
39952
|
type: "avro";
|
|
38088
39953
|
} | undefined;
|
|
38089
|
-
textEncoding
|
|
38090
|
-
|
|
38091
|
-
|
|
38092
|
-
|
|
38093
|
-
|
|
39954
|
+
textEncoding: string;
|
|
39955
|
+
brokers: string[];
|
|
39956
|
+
topic: string;
|
|
39957
|
+
groupPrefix?: string | undefined;
|
|
39958
|
+
ssl?: boolean | undefined;
|
|
39959
|
+
registry?: {
|
|
39960
|
+
url: string;
|
|
39961
|
+
username: string;
|
|
39962
|
+
password: string;
|
|
39963
|
+
} | undefined;
|
|
38094
39964
|
};
|
|
38095
|
-
type: "
|
|
39965
|
+
type: "kafka";
|
|
38096
39966
|
preProcessingAggregations?: {
|
|
38097
39967
|
options: {
|
|
38098
39968
|
src: string;
|
|
@@ -39576,6 +41446,61 @@ export default class {
|
|
|
39576
41446
|
};
|
|
39577
41447
|
type: "unwind";
|
|
39578
41448
|
}[] | undefined;
|
|
41449
|
+
} | {
|
|
41450
|
+
options: {
|
|
41451
|
+
username?: string | undefined;
|
|
41452
|
+
password?: string | undefined;
|
|
41453
|
+
format?: {
|
|
41454
|
+
options: {
|
|
41455
|
+
csvDelimiter?: string | undefined;
|
|
41456
|
+
};
|
|
41457
|
+
type: "csv";
|
|
41458
|
+
} | {
|
|
41459
|
+
options: unknown;
|
|
41460
|
+
type: "ndjson";
|
|
41461
|
+
} | {
|
|
41462
|
+
options: {
|
|
41463
|
+
rootPath: string;
|
|
41464
|
+
};
|
|
41465
|
+
type: "json";
|
|
41466
|
+
} | {
|
|
41467
|
+
options: {
|
|
41468
|
+
rootPath: string;
|
|
41469
|
+
};
|
|
41470
|
+
type: "xml";
|
|
41471
|
+
} | {
|
|
41472
|
+
options: unknown;
|
|
41473
|
+
type: "xlsx";
|
|
41474
|
+
} | {
|
|
41475
|
+
options: {
|
|
41476
|
+
version?: string | undefined;
|
|
41477
|
+
columnsList?: string[] | undefined;
|
|
41478
|
+
};
|
|
41479
|
+
type: "parquet";
|
|
41480
|
+
} | {
|
|
41481
|
+
options: unknown;
|
|
41482
|
+
type: "avro";
|
|
41483
|
+
} | undefined;
|
|
41484
|
+
textEncoding: string;
|
|
41485
|
+
brokers: string[];
|
|
41486
|
+
topic: string;
|
|
41487
|
+
groupPrefix?: string | undefined;
|
|
41488
|
+
ssl?: boolean | undefined;
|
|
41489
|
+
registry?: {
|
|
41490
|
+
url: string;
|
|
41491
|
+
username: string;
|
|
41492
|
+
password: string;
|
|
41493
|
+
} | undefined;
|
|
41494
|
+
};
|
|
41495
|
+
type: "kafka";
|
|
41496
|
+
preProcessingAggregations?: {
|
|
41497
|
+
options: {
|
|
41498
|
+
src: string;
|
|
41499
|
+
dest: string;
|
|
41500
|
+
allowEmpty?: boolean | undefined;
|
|
41501
|
+
};
|
|
41502
|
+
type: "unwind";
|
|
41503
|
+
}[] | undefined;
|
|
39579
41504
|
};
|
|
39580
41505
|
} & {
|
|
39581
41506
|
fieldsRules?: {
|
|
@@ -40492,6 +42417,61 @@ export default class {
|
|
|
40492
42417
|
};
|
|
40493
42418
|
type: "unwind";
|
|
40494
42419
|
}[] | undefined;
|
|
42420
|
+
} | {
|
|
42421
|
+
options: {
|
|
42422
|
+
username?: string | undefined;
|
|
42423
|
+
password?: string | undefined;
|
|
42424
|
+
format?: {
|
|
42425
|
+
options: {
|
|
42426
|
+
csvDelimiter?: string | undefined;
|
|
42427
|
+
};
|
|
42428
|
+
type: "csv";
|
|
42429
|
+
} | {
|
|
42430
|
+
options: unknown;
|
|
42431
|
+
type: "ndjson";
|
|
42432
|
+
} | {
|
|
42433
|
+
options: {
|
|
42434
|
+
rootPath: string;
|
|
42435
|
+
};
|
|
42436
|
+
type: "json";
|
|
42437
|
+
} | {
|
|
42438
|
+
options: {
|
|
42439
|
+
rootPath: string;
|
|
42440
|
+
};
|
|
42441
|
+
type: "xml";
|
|
42442
|
+
} | {
|
|
42443
|
+
options: unknown;
|
|
42444
|
+
type: "xlsx";
|
|
42445
|
+
} | {
|
|
42446
|
+
options: {
|
|
42447
|
+
version?: string | undefined;
|
|
42448
|
+
columnsList?: string[] | undefined;
|
|
42449
|
+
};
|
|
42450
|
+
type: "parquet";
|
|
42451
|
+
} | {
|
|
42452
|
+
options: unknown;
|
|
42453
|
+
type: "avro";
|
|
42454
|
+
} | undefined;
|
|
42455
|
+
textEncoding: string;
|
|
42456
|
+
brokers: string[];
|
|
42457
|
+
topic: string;
|
|
42458
|
+
groupPrefix?: string | undefined;
|
|
42459
|
+
ssl?: boolean | undefined;
|
|
42460
|
+
registry?: {
|
|
42461
|
+
url: string;
|
|
42462
|
+
username: string;
|
|
42463
|
+
password: string;
|
|
42464
|
+
} | undefined;
|
|
42465
|
+
};
|
|
42466
|
+
type: "kafka";
|
|
42467
|
+
preProcessingAggregations?: {
|
|
42468
|
+
options: {
|
|
42469
|
+
src: string;
|
|
42470
|
+
dest: string;
|
|
42471
|
+
allowEmpty?: boolean | undefined;
|
|
42472
|
+
};
|
|
42473
|
+
type: "unwind";
|
|
42474
|
+
}[] | undefined;
|
|
40495
42475
|
};
|
|
40496
42476
|
} & {
|
|
40497
42477
|
fieldsRules?: {
|