@rlvt/datasources-openapi-client 1.0.242 → 1.0.244
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 +579 -274
- package/build/definitions.d.ts +146 -53
- package/build/definitions.js +3 -1
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -359,6 +359,7 @@ export default class {
|
|
|
359
359
|
timeout?: number | undefined;
|
|
360
360
|
oauth?: string | undefined;
|
|
361
361
|
pagination?: {
|
|
362
|
+
subtype?: "page" | "offset" | undefined;
|
|
362
363
|
type: "body" | "query";
|
|
363
364
|
value: string;
|
|
364
365
|
startAt?: number | undefined;
|
|
@@ -458,13 +459,13 @@ export default class {
|
|
|
458
459
|
params: {
|
|
459
460
|
value: string | number;
|
|
460
461
|
key: string;
|
|
461
|
-
operator: "=";
|
|
462
|
+
operator: "=" | "!=";
|
|
462
463
|
};
|
|
463
464
|
name: "array_find";
|
|
464
465
|
} | {
|
|
465
466
|
params: {
|
|
466
467
|
key: string;
|
|
467
|
-
operator: "=";
|
|
468
|
+
operator: "=" | "!=";
|
|
468
469
|
valuePath: string;
|
|
469
470
|
};
|
|
470
471
|
name: "array_find";
|
|
@@ -472,7 +473,7 @@ export default class {
|
|
|
472
473
|
params: {
|
|
473
474
|
conditions: {
|
|
474
475
|
path: string;
|
|
475
|
-
operator: "=" | "
|
|
476
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
476
477
|
evaluateValue: string;
|
|
477
478
|
}[];
|
|
478
479
|
};
|
|
@@ -503,10 +504,10 @@ export default class {
|
|
|
503
504
|
conditions: ({
|
|
504
505
|
path: string;
|
|
505
506
|
value: string | number | boolean;
|
|
506
|
-
operator: "=" | "
|
|
507
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
507
508
|
} | {
|
|
508
509
|
path: string;
|
|
509
|
-
operator: "=" | "
|
|
510
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
510
511
|
evaluateValue: string;
|
|
511
512
|
})[];
|
|
512
513
|
fromFormatted?: true | undefined;
|
|
@@ -533,8 +534,14 @@ export default class {
|
|
|
533
534
|
value: string;
|
|
534
535
|
};
|
|
535
536
|
name: "custom";
|
|
537
|
+
} | {
|
|
538
|
+
params: {
|
|
539
|
+
separator: string;
|
|
540
|
+
};
|
|
541
|
+
name: "split";
|
|
536
542
|
})[];
|
|
537
543
|
source?: import("./definitions").FieldSource | undefined;
|
|
544
|
+
ignoreIfMissing?: boolean | undefined;
|
|
538
545
|
index: import("./definitions").PinotFieldIndexType;
|
|
539
546
|
}[] | undefined;
|
|
540
547
|
readonly health?: (import("./definitions").DatasourceHealth & {
|
|
@@ -700,13 +707,13 @@ export default class {
|
|
|
700
707
|
params: {
|
|
701
708
|
value: string | number;
|
|
702
709
|
key: string;
|
|
703
|
-
operator: "=";
|
|
710
|
+
operator: "=" | "!=";
|
|
704
711
|
};
|
|
705
712
|
name: "array_find";
|
|
706
713
|
} | {
|
|
707
714
|
params: {
|
|
708
715
|
key: string;
|
|
709
|
-
operator: "=";
|
|
716
|
+
operator: "=" | "!=";
|
|
710
717
|
valuePath: string;
|
|
711
718
|
};
|
|
712
719
|
name: "array_find";
|
|
@@ -714,7 +721,7 @@ export default class {
|
|
|
714
721
|
params: {
|
|
715
722
|
conditions: {
|
|
716
723
|
path: string;
|
|
717
|
-
operator: "=" | "
|
|
724
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
718
725
|
evaluateValue: string;
|
|
719
726
|
}[];
|
|
720
727
|
};
|
|
@@ -745,10 +752,10 @@ export default class {
|
|
|
745
752
|
conditions: ({
|
|
746
753
|
path: string;
|
|
747
754
|
value: string | number | boolean;
|
|
748
|
-
operator: "=" | "
|
|
755
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
749
756
|
} | {
|
|
750
757
|
path: string;
|
|
751
|
-
operator: "=" | "
|
|
758
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
752
759
|
evaluateValue: string;
|
|
753
760
|
})[];
|
|
754
761
|
fromFormatted?: true | undefined;
|
|
@@ -775,8 +782,14 @@ export default class {
|
|
|
775
782
|
value: string;
|
|
776
783
|
};
|
|
777
784
|
name: "custom";
|
|
785
|
+
} | {
|
|
786
|
+
params: {
|
|
787
|
+
separator: string;
|
|
788
|
+
};
|
|
789
|
+
name: "split";
|
|
778
790
|
})[];
|
|
779
791
|
source?: import("./definitions").FieldSource | undefined;
|
|
792
|
+
ignoreIfMissing?: boolean | undefined;
|
|
780
793
|
}[] | undefined;
|
|
781
794
|
readonly health?: (import("./definitions").DatasourceHealth & {
|
|
782
795
|
readonly?: "__readonly" | undefined;
|
|
@@ -925,13 +938,13 @@ export default class {
|
|
|
925
938
|
params: {
|
|
926
939
|
value: string | number;
|
|
927
940
|
key: string;
|
|
928
|
-
operator: "=";
|
|
941
|
+
operator: "=" | "!=";
|
|
929
942
|
};
|
|
930
943
|
name: "array_find";
|
|
931
944
|
} | {
|
|
932
945
|
params: {
|
|
933
946
|
key: string;
|
|
934
|
-
operator: "=";
|
|
947
|
+
operator: "=" | "!=";
|
|
935
948
|
valuePath: string;
|
|
936
949
|
};
|
|
937
950
|
name: "array_find";
|
|
@@ -939,7 +952,7 @@ export default class {
|
|
|
939
952
|
params: {
|
|
940
953
|
conditions: {
|
|
941
954
|
path: string;
|
|
942
|
-
operator: "=" | "
|
|
955
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
943
956
|
evaluateValue: string;
|
|
944
957
|
}[];
|
|
945
958
|
};
|
|
@@ -970,10 +983,10 @@ export default class {
|
|
|
970
983
|
conditions: ({
|
|
971
984
|
path: string;
|
|
972
985
|
value: string | number | boolean;
|
|
973
|
-
operator: "=" | "
|
|
986
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
974
987
|
} | {
|
|
975
988
|
path: string;
|
|
976
|
-
operator: "=" | "
|
|
989
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
977
990
|
evaluateValue: string;
|
|
978
991
|
})[];
|
|
979
992
|
fromFormatted?: true | undefined;
|
|
@@ -1000,8 +1013,14 @@ export default class {
|
|
|
1000
1013
|
value: string;
|
|
1001
1014
|
};
|
|
1002
1015
|
name: "custom";
|
|
1016
|
+
} | {
|
|
1017
|
+
params: {
|
|
1018
|
+
separator: string;
|
|
1019
|
+
};
|
|
1020
|
+
name: "split";
|
|
1003
1021
|
})[];
|
|
1004
1022
|
source?: import("./definitions").FieldSource | undefined;
|
|
1023
|
+
ignoreIfMissing?: boolean | undefined;
|
|
1005
1024
|
index: import("./definitions").PinotFieldIndexType;
|
|
1006
1025
|
}[] | undefined;
|
|
1007
1026
|
readonly health?: (import("./definitions").DatasourceHealth & {
|
|
@@ -1118,10 +1137,10 @@ export default class {
|
|
|
1118
1137
|
configure_merge_mapping?: ("configure_name" | "configure_resource_group_ids" | "configure_source" | "configure_fieldsmap" | "configure_field" | "create_oauth_client" | "authorize_oauth_client" | "configure_thresholds" | "configure_content" | "configure_api_key" | "patch" | "validate" | "configure_shopify_shop_name" | "inject_shopify_analytics_script" | "configure_shopify_analytics_script" | "configure_google_tag_manager" | "configure_reelevant_analytics_script" | "configure_twitter" | "configure_product_datasource_source" | "configure_tracking_datasource_source" | "configure_best_product_query" | "configure_best_product_field" | "configure_fetcher" | "configure_merge_datasource_source" | "configure_merge_datasource_dependency" | "configure_merge_mapping" | "google_my_business_set_url" | "setup_instagram")[] | undefined;
|
|
1119
1138
|
};
|
|
1120
1139
|
standaloneSteps: import("./definitions").StepName[];
|
|
1121
|
-
readonly createdAt:
|
|
1140
|
+
readonly createdAt: string & {
|
|
1122
1141
|
readonly?: "__readonly" | undefined;
|
|
1123
1142
|
};
|
|
1124
|
-
readonly updatedAt:
|
|
1143
|
+
readonly updatedAt: string & {
|
|
1125
1144
|
readonly?: "__readonly" | undefined;
|
|
1126
1145
|
};
|
|
1127
1146
|
}[];
|
|
@@ -1174,10 +1193,10 @@ export default class {
|
|
|
1174
1193
|
readonly template?: (string & {
|
|
1175
1194
|
readonly?: "__readonly" | undefined;
|
|
1176
1195
|
}) | undefined;
|
|
1177
|
-
readonly createdAt:
|
|
1196
|
+
readonly createdAt: string & {
|
|
1178
1197
|
readonly?: "__readonly" | undefined;
|
|
1179
1198
|
};
|
|
1180
|
-
readonly updatedAt:
|
|
1199
|
+
readonly updatedAt: string & {
|
|
1181
1200
|
readonly?: "__readonly" | undefined;
|
|
1182
1201
|
};
|
|
1183
1202
|
readonly configurationUpdatedAt: string & {
|
|
@@ -1328,13 +1347,13 @@ export default class {
|
|
|
1328
1347
|
params: {
|
|
1329
1348
|
value: string | number;
|
|
1330
1349
|
key: string;
|
|
1331
|
-
operator: "=";
|
|
1350
|
+
operator: "=" | "!=";
|
|
1332
1351
|
};
|
|
1333
1352
|
name: "array_find";
|
|
1334
1353
|
} | {
|
|
1335
1354
|
params: {
|
|
1336
1355
|
key: string;
|
|
1337
|
-
operator: "=";
|
|
1356
|
+
operator: "=" | "!=";
|
|
1338
1357
|
valuePath: string;
|
|
1339
1358
|
};
|
|
1340
1359
|
name: "array_find";
|
|
@@ -1342,7 +1361,7 @@ export default class {
|
|
|
1342
1361
|
params: {
|
|
1343
1362
|
conditions: {
|
|
1344
1363
|
path: string;
|
|
1345
|
-
operator: "=" | "
|
|
1364
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
1346
1365
|
evaluateValue: string;
|
|
1347
1366
|
}[];
|
|
1348
1367
|
};
|
|
@@ -1373,10 +1392,10 @@ export default class {
|
|
|
1373
1392
|
conditions: ({
|
|
1374
1393
|
path: string;
|
|
1375
1394
|
value: string | number | boolean;
|
|
1376
|
-
operator: "=" | "
|
|
1395
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
1377
1396
|
} | {
|
|
1378
1397
|
path: string;
|
|
1379
|
-
operator: "=" | "
|
|
1398
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
1380
1399
|
evaluateValue: string;
|
|
1381
1400
|
})[];
|
|
1382
1401
|
fromFormatted?: true | undefined;
|
|
@@ -1403,8 +1422,14 @@ export default class {
|
|
|
1403
1422
|
value: string;
|
|
1404
1423
|
};
|
|
1405
1424
|
name: "custom";
|
|
1425
|
+
} | {
|
|
1426
|
+
params: {
|
|
1427
|
+
separator: string;
|
|
1428
|
+
};
|
|
1429
|
+
name: "split";
|
|
1406
1430
|
})[];
|
|
1407
1431
|
source?: import("./definitions").FieldSource | undefined;
|
|
1432
|
+
ignoreIfMissing?: boolean | undefined;
|
|
1408
1433
|
index: import("./definitions").PinotFieldIndexType;
|
|
1409
1434
|
}[];
|
|
1410
1435
|
readonly health: ("OK" | "WARNING" | "ERROR") & {
|
|
@@ -1494,7 +1519,7 @@ export default class {
|
|
|
1494
1519
|
readonly uniqueFieldsTypes: FieldMapType[];
|
|
1495
1520
|
readonly importantFieldsTypes: FieldMapType[];
|
|
1496
1521
|
}[];
|
|
1497
|
-
readonly archivedAt:
|
|
1522
|
+
readonly archivedAt: string & {
|
|
1498
1523
|
readonly?: "__readonly" | undefined;
|
|
1499
1524
|
};
|
|
1500
1525
|
status: DatasourceStatus;
|
|
@@ -1512,10 +1537,10 @@ export default class {
|
|
|
1512
1537
|
readonly template?: (string & {
|
|
1513
1538
|
readonly?: "__readonly" | undefined;
|
|
1514
1539
|
}) | undefined;
|
|
1515
|
-
readonly createdAt:
|
|
1540
|
+
readonly createdAt: string & {
|
|
1516
1541
|
readonly?: "__readonly" | undefined;
|
|
1517
1542
|
};
|
|
1518
|
-
readonly updatedAt:
|
|
1543
|
+
readonly updatedAt: string & {
|
|
1519
1544
|
readonly?: "__readonly" | undefined;
|
|
1520
1545
|
};
|
|
1521
1546
|
readonly configurationUpdatedAt: string & {
|
|
@@ -1619,6 +1644,7 @@ export default class {
|
|
|
1619
1644
|
timeout?: number | undefined;
|
|
1620
1645
|
oauth?: string | undefined;
|
|
1621
1646
|
pagination?: {
|
|
1647
|
+
subtype?: "page" | "offset" | undefined;
|
|
1622
1648
|
type: "body" | "query";
|
|
1623
1649
|
value: string;
|
|
1624
1650
|
startAt?: number | undefined;
|
|
@@ -1687,6 +1713,7 @@ export default class {
|
|
|
1687
1713
|
};
|
|
1688
1714
|
type: "keep_previous_data";
|
|
1689
1715
|
};
|
|
1716
|
+
sftpPublicKey?: string | undefined;
|
|
1690
1717
|
fieldsMap: {
|
|
1691
1718
|
name: string;
|
|
1692
1719
|
sortable: boolean;
|
|
@@ -1731,13 +1758,13 @@ export default class {
|
|
|
1731
1758
|
params: {
|
|
1732
1759
|
value: string | number;
|
|
1733
1760
|
key: string;
|
|
1734
|
-
operator: "=";
|
|
1761
|
+
operator: "=" | "!=";
|
|
1735
1762
|
};
|
|
1736
1763
|
name: "array_find";
|
|
1737
1764
|
} | {
|
|
1738
1765
|
params: {
|
|
1739
1766
|
key: string;
|
|
1740
|
-
operator: "=";
|
|
1767
|
+
operator: "=" | "!=";
|
|
1741
1768
|
valuePath: string;
|
|
1742
1769
|
};
|
|
1743
1770
|
name: "array_find";
|
|
@@ -1745,7 +1772,7 @@ export default class {
|
|
|
1745
1772
|
params: {
|
|
1746
1773
|
conditions: {
|
|
1747
1774
|
path: string;
|
|
1748
|
-
operator: "=" | "
|
|
1775
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
1749
1776
|
evaluateValue: string;
|
|
1750
1777
|
}[];
|
|
1751
1778
|
};
|
|
@@ -1776,10 +1803,10 @@ export default class {
|
|
|
1776
1803
|
conditions: ({
|
|
1777
1804
|
path: string;
|
|
1778
1805
|
value: string | number | boolean;
|
|
1779
|
-
operator: "=" | "
|
|
1806
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
1780
1807
|
} | {
|
|
1781
1808
|
path: string;
|
|
1782
|
-
operator: "=" | "
|
|
1809
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
1783
1810
|
evaluateValue: string;
|
|
1784
1811
|
})[];
|
|
1785
1812
|
fromFormatted?: true | undefined;
|
|
@@ -1806,8 +1833,14 @@ export default class {
|
|
|
1806
1833
|
value: string;
|
|
1807
1834
|
};
|
|
1808
1835
|
name: "custom";
|
|
1836
|
+
} | {
|
|
1837
|
+
params: {
|
|
1838
|
+
separator: string;
|
|
1839
|
+
};
|
|
1840
|
+
name: "split";
|
|
1809
1841
|
})[];
|
|
1810
1842
|
source?: import("./definitions").FieldSource | undefined;
|
|
1843
|
+
ignoreIfMissing?: boolean | undefined;
|
|
1811
1844
|
index: import("./definitions").PinotFieldIndexType;
|
|
1812
1845
|
}[];
|
|
1813
1846
|
readonly health: ("OK" | "WARNING" | "ERROR") & {
|
|
@@ -1932,6 +1965,7 @@ export default class {
|
|
|
1932
1965
|
timeout?: number | undefined;
|
|
1933
1966
|
oauth?: string | undefined;
|
|
1934
1967
|
pagination?: {
|
|
1968
|
+
subtype?: "page" | "offset" | undefined;
|
|
1935
1969
|
type: "body" | "query";
|
|
1936
1970
|
value: string;
|
|
1937
1971
|
startAt?: number | undefined;
|
|
@@ -2000,6 +2034,7 @@ export default class {
|
|
|
2000
2034
|
};
|
|
2001
2035
|
type: "keep_previous_data";
|
|
2002
2036
|
};
|
|
2037
|
+
sftpPublicKey?: string | undefined;
|
|
2003
2038
|
fieldsMap: {
|
|
2004
2039
|
name: string;
|
|
2005
2040
|
sortable: boolean;
|
|
@@ -2044,13 +2079,13 @@ export default class {
|
|
|
2044
2079
|
params: {
|
|
2045
2080
|
value: string | number;
|
|
2046
2081
|
key: string;
|
|
2047
|
-
operator: "=";
|
|
2082
|
+
operator: "=" | "!=";
|
|
2048
2083
|
};
|
|
2049
2084
|
name: "array_find";
|
|
2050
2085
|
} | {
|
|
2051
2086
|
params: {
|
|
2052
2087
|
key: string;
|
|
2053
|
-
operator: "=";
|
|
2088
|
+
operator: "=" | "!=";
|
|
2054
2089
|
valuePath: string;
|
|
2055
2090
|
};
|
|
2056
2091
|
name: "array_find";
|
|
@@ -2058,7 +2093,7 @@ export default class {
|
|
|
2058
2093
|
params: {
|
|
2059
2094
|
conditions: {
|
|
2060
2095
|
path: string;
|
|
2061
|
-
operator: "=" | "
|
|
2096
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
2062
2097
|
evaluateValue: string;
|
|
2063
2098
|
}[];
|
|
2064
2099
|
};
|
|
@@ -2089,10 +2124,10 @@ export default class {
|
|
|
2089
2124
|
conditions: ({
|
|
2090
2125
|
path: string;
|
|
2091
2126
|
value: string | number | boolean;
|
|
2092
|
-
operator: "=" | "
|
|
2127
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
2093
2128
|
} | {
|
|
2094
2129
|
path: string;
|
|
2095
|
-
operator: "=" | "
|
|
2130
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
2096
2131
|
evaluateValue: string;
|
|
2097
2132
|
})[];
|
|
2098
2133
|
fromFormatted?: true | undefined;
|
|
@@ -2119,8 +2154,14 @@ export default class {
|
|
|
2119
2154
|
value: string;
|
|
2120
2155
|
};
|
|
2121
2156
|
name: "custom";
|
|
2157
|
+
} | {
|
|
2158
|
+
params: {
|
|
2159
|
+
separator: string;
|
|
2160
|
+
};
|
|
2161
|
+
name: "split";
|
|
2122
2162
|
})[];
|
|
2123
2163
|
source?: import("./definitions").FieldSource | undefined;
|
|
2164
|
+
ignoreIfMissing?: boolean | undefined;
|
|
2124
2165
|
index: import("./definitions").PinotFieldIndexType;
|
|
2125
2166
|
}[];
|
|
2126
2167
|
readonly health: ("OK" | "WARNING" | "ERROR") & {
|
|
@@ -2218,7 +2259,7 @@ export default class {
|
|
|
2218
2259
|
};
|
|
2219
2260
|
isAPI: true;
|
|
2220
2261
|
})[];
|
|
2221
|
-
readonly archivedAt:
|
|
2262
|
+
readonly archivedAt: string & {
|
|
2222
2263
|
readonly?: "__readonly" | undefined;
|
|
2223
2264
|
};
|
|
2224
2265
|
status: DatasourceStatus;
|
|
@@ -2246,13 +2287,13 @@ export default class {
|
|
|
2246
2287
|
value: "entries_drop_rate_too_high";
|
|
2247
2288
|
};
|
|
2248
2289
|
})[];
|
|
2249
|
-
readonly lastRunAt:
|
|
2290
|
+
readonly lastRunAt: string & {
|
|
2250
2291
|
readonly?: "__readonly" | undefined;
|
|
2251
2292
|
};
|
|
2252
2293
|
readonly currentLiveVersion: string & {
|
|
2253
2294
|
readonly?: "__readonly" | undefined;
|
|
2254
2295
|
};
|
|
2255
|
-
readonly pausedAt:
|
|
2296
|
+
readonly pausedAt: string & {
|
|
2256
2297
|
readonly?: "__readonly" | undefined;
|
|
2257
2298
|
};
|
|
2258
2299
|
readonly isPaused: boolean & {
|
|
@@ -2269,10 +2310,10 @@ export default class {
|
|
|
2269
2310
|
readonly template?: (string & {
|
|
2270
2311
|
readonly?: "__readonly" | undefined;
|
|
2271
2312
|
}) | undefined;
|
|
2272
|
-
readonly createdAt:
|
|
2313
|
+
readonly createdAt: string & {
|
|
2273
2314
|
readonly?: "__readonly" | undefined;
|
|
2274
2315
|
};
|
|
2275
|
-
readonly updatedAt:
|
|
2316
|
+
readonly updatedAt: string & {
|
|
2276
2317
|
readonly?: "__readonly" | undefined;
|
|
2277
2318
|
};
|
|
2278
2319
|
readonly configurationUpdatedAt: string & {
|
|
@@ -2438,13 +2479,13 @@ export default class {
|
|
|
2438
2479
|
params: {
|
|
2439
2480
|
value: string | number;
|
|
2440
2481
|
key: string;
|
|
2441
|
-
operator: "=";
|
|
2482
|
+
operator: "=" | "!=";
|
|
2442
2483
|
};
|
|
2443
2484
|
name: "array_find";
|
|
2444
2485
|
} | {
|
|
2445
2486
|
params: {
|
|
2446
2487
|
key: string;
|
|
2447
|
-
operator: "=";
|
|
2488
|
+
operator: "=" | "!=";
|
|
2448
2489
|
valuePath: string;
|
|
2449
2490
|
};
|
|
2450
2491
|
name: "array_find";
|
|
@@ -2452,7 +2493,7 @@ export default class {
|
|
|
2452
2493
|
params: {
|
|
2453
2494
|
conditions: {
|
|
2454
2495
|
path: string;
|
|
2455
|
-
operator: "=" | "
|
|
2496
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
2456
2497
|
evaluateValue: string;
|
|
2457
2498
|
}[];
|
|
2458
2499
|
};
|
|
@@ -2483,10 +2524,10 @@ export default class {
|
|
|
2483
2524
|
conditions: ({
|
|
2484
2525
|
path: string;
|
|
2485
2526
|
value: string | number | boolean;
|
|
2486
|
-
operator: "=" | "
|
|
2527
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
2487
2528
|
} | {
|
|
2488
2529
|
path: string;
|
|
2489
|
-
operator: "=" | "
|
|
2530
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
2490
2531
|
evaluateValue: string;
|
|
2491
2532
|
})[];
|
|
2492
2533
|
fromFormatted?: true | undefined;
|
|
@@ -2513,8 +2554,14 @@ export default class {
|
|
|
2513
2554
|
value: string;
|
|
2514
2555
|
};
|
|
2515
2556
|
name: "custom";
|
|
2557
|
+
} | {
|
|
2558
|
+
params: {
|
|
2559
|
+
separator: string;
|
|
2560
|
+
};
|
|
2561
|
+
name: "split";
|
|
2516
2562
|
})[];
|
|
2517
2563
|
source?: import("./definitions").FieldSource | undefined;
|
|
2564
|
+
ignoreIfMissing?: boolean | undefined;
|
|
2518
2565
|
}[];
|
|
2519
2566
|
readonly health: ("OK" | "WARNING" | "ERROR") & {
|
|
2520
2567
|
readonly?: "__readonly" | undefined;
|
|
@@ -2604,7 +2651,7 @@ export default class {
|
|
|
2604
2651
|
readonly uniqueFieldsTypes: FieldMapType[];
|
|
2605
2652
|
readonly importantFieldsTypes: FieldMapType[];
|
|
2606
2653
|
}[];
|
|
2607
|
-
readonly archivedAt:
|
|
2654
|
+
readonly archivedAt: string & {
|
|
2608
2655
|
readonly?: "__readonly" | undefined;
|
|
2609
2656
|
};
|
|
2610
2657
|
status: DatasourceStatus;
|
|
@@ -2649,10 +2696,10 @@ export default class {
|
|
|
2649
2696
|
readonly template?: (string & {
|
|
2650
2697
|
readonly?: "__readonly" | undefined;
|
|
2651
2698
|
}) | undefined;
|
|
2652
|
-
readonly createdAt:
|
|
2699
|
+
readonly createdAt: string & {
|
|
2653
2700
|
readonly?: "__readonly" | undefined;
|
|
2654
2701
|
};
|
|
2655
|
-
readonly updatedAt:
|
|
2702
|
+
readonly updatedAt: string & {
|
|
2656
2703
|
readonly?: "__readonly" | undefined;
|
|
2657
2704
|
};
|
|
2658
2705
|
readonly configurationUpdatedAt: string & {
|
|
@@ -2803,13 +2850,13 @@ export default class {
|
|
|
2803
2850
|
params: {
|
|
2804
2851
|
value: string | number;
|
|
2805
2852
|
key: string;
|
|
2806
|
-
operator: "=";
|
|
2853
|
+
operator: "=" | "!=";
|
|
2807
2854
|
};
|
|
2808
2855
|
name: "array_find";
|
|
2809
2856
|
} | {
|
|
2810
2857
|
params: {
|
|
2811
2858
|
key: string;
|
|
2812
|
-
operator: "=";
|
|
2859
|
+
operator: "=" | "!=";
|
|
2813
2860
|
valuePath: string;
|
|
2814
2861
|
};
|
|
2815
2862
|
name: "array_find";
|
|
@@ -2817,7 +2864,7 @@ export default class {
|
|
|
2817
2864
|
params: {
|
|
2818
2865
|
conditions: {
|
|
2819
2866
|
path: string;
|
|
2820
|
-
operator: "=" | "
|
|
2867
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
2821
2868
|
evaluateValue: string;
|
|
2822
2869
|
}[];
|
|
2823
2870
|
};
|
|
@@ -2848,10 +2895,10 @@ export default class {
|
|
|
2848
2895
|
conditions: ({
|
|
2849
2896
|
path: string;
|
|
2850
2897
|
value: string | number | boolean;
|
|
2851
|
-
operator: "=" | "
|
|
2898
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
2852
2899
|
} | {
|
|
2853
2900
|
path: string;
|
|
2854
|
-
operator: "=" | "
|
|
2901
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
2855
2902
|
evaluateValue: string;
|
|
2856
2903
|
})[];
|
|
2857
2904
|
fromFormatted?: true | undefined;
|
|
@@ -2878,8 +2925,14 @@ export default class {
|
|
|
2878
2925
|
value: string;
|
|
2879
2926
|
};
|
|
2880
2927
|
name: "custom";
|
|
2928
|
+
} | {
|
|
2929
|
+
params: {
|
|
2930
|
+
separator: string;
|
|
2931
|
+
};
|
|
2932
|
+
name: "split";
|
|
2881
2933
|
})[];
|
|
2882
2934
|
source?: import("./definitions").FieldSource | undefined;
|
|
2935
|
+
ignoreIfMissing?: boolean | undefined;
|
|
2883
2936
|
index: import("./definitions").PinotFieldIndexType;
|
|
2884
2937
|
}[];
|
|
2885
2938
|
readonly health: ("OK" | "WARNING" | "ERROR") & {
|
|
@@ -2969,7 +3022,7 @@ export default class {
|
|
|
2969
3022
|
readonly uniqueFieldsTypes: FieldMapType[];
|
|
2970
3023
|
readonly importantFieldsTypes: FieldMapType[];
|
|
2971
3024
|
}[];
|
|
2972
|
-
readonly archivedAt:
|
|
3025
|
+
readonly archivedAt: string & {
|
|
2973
3026
|
readonly?: "__readonly" | undefined;
|
|
2974
3027
|
};
|
|
2975
3028
|
status: DatasourceStatus;
|
|
@@ -2987,10 +3040,10 @@ export default class {
|
|
|
2987
3040
|
readonly template?: (string & {
|
|
2988
3041
|
readonly?: "__readonly" | undefined;
|
|
2989
3042
|
}) | undefined;
|
|
2990
|
-
readonly createdAt:
|
|
3043
|
+
readonly createdAt: string & {
|
|
2991
3044
|
readonly?: "__readonly" | undefined;
|
|
2992
3045
|
};
|
|
2993
|
-
readonly updatedAt:
|
|
3046
|
+
readonly updatedAt: string & {
|
|
2994
3047
|
readonly?: "__readonly" | undefined;
|
|
2995
3048
|
};
|
|
2996
3049
|
readonly configurationUpdatedAt: string & {
|
|
@@ -3094,6 +3147,7 @@ export default class {
|
|
|
3094
3147
|
timeout?: number | undefined;
|
|
3095
3148
|
oauth?: string | undefined;
|
|
3096
3149
|
pagination?: {
|
|
3150
|
+
subtype?: "page" | "offset" | undefined;
|
|
3097
3151
|
type: "body" | "query";
|
|
3098
3152
|
value: string;
|
|
3099
3153
|
startAt?: number | undefined;
|
|
@@ -3162,6 +3216,7 @@ export default class {
|
|
|
3162
3216
|
};
|
|
3163
3217
|
type: "keep_previous_data";
|
|
3164
3218
|
};
|
|
3219
|
+
sftpPublicKey?: string | undefined;
|
|
3165
3220
|
fieldsMap: {
|
|
3166
3221
|
name: string;
|
|
3167
3222
|
sortable: boolean;
|
|
@@ -3206,13 +3261,13 @@ export default class {
|
|
|
3206
3261
|
params: {
|
|
3207
3262
|
value: string | number;
|
|
3208
3263
|
key: string;
|
|
3209
|
-
operator: "=";
|
|
3264
|
+
operator: "=" | "!=";
|
|
3210
3265
|
};
|
|
3211
3266
|
name: "array_find";
|
|
3212
3267
|
} | {
|
|
3213
3268
|
params: {
|
|
3214
3269
|
key: string;
|
|
3215
|
-
operator: "=";
|
|
3270
|
+
operator: "=" | "!=";
|
|
3216
3271
|
valuePath: string;
|
|
3217
3272
|
};
|
|
3218
3273
|
name: "array_find";
|
|
@@ -3220,7 +3275,7 @@ export default class {
|
|
|
3220
3275
|
params: {
|
|
3221
3276
|
conditions: {
|
|
3222
3277
|
path: string;
|
|
3223
|
-
operator: "=" | "
|
|
3278
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
3224
3279
|
evaluateValue: string;
|
|
3225
3280
|
}[];
|
|
3226
3281
|
};
|
|
@@ -3251,10 +3306,10 @@ export default class {
|
|
|
3251
3306
|
conditions: ({
|
|
3252
3307
|
path: string;
|
|
3253
3308
|
value: string | number | boolean;
|
|
3254
|
-
operator: "=" | "
|
|
3309
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
3255
3310
|
} | {
|
|
3256
3311
|
path: string;
|
|
3257
|
-
operator: "=" | "
|
|
3312
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
3258
3313
|
evaluateValue: string;
|
|
3259
3314
|
})[];
|
|
3260
3315
|
fromFormatted?: true | undefined;
|
|
@@ -3281,8 +3336,14 @@ export default class {
|
|
|
3281
3336
|
value: string;
|
|
3282
3337
|
};
|
|
3283
3338
|
name: "custom";
|
|
3339
|
+
} | {
|
|
3340
|
+
params: {
|
|
3341
|
+
separator: string;
|
|
3342
|
+
};
|
|
3343
|
+
name: "split";
|
|
3284
3344
|
})[];
|
|
3285
3345
|
source?: import("./definitions").FieldSource | undefined;
|
|
3346
|
+
ignoreIfMissing?: boolean | undefined;
|
|
3286
3347
|
index: import("./definitions").PinotFieldIndexType;
|
|
3287
3348
|
}[];
|
|
3288
3349
|
readonly health: ("OK" | "WARNING" | "ERROR") & {
|
|
@@ -3407,6 +3468,7 @@ export default class {
|
|
|
3407
3468
|
timeout?: number | undefined;
|
|
3408
3469
|
oauth?: string | undefined;
|
|
3409
3470
|
pagination?: {
|
|
3471
|
+
subtype?: "page" | "offset" | undefined;
|
|
3410
3472
|
type: "body" | "query";
|
|
3411
3473
|
value: string;
|
|
3412
3474
|
startAt?: number | undefined;
|
|
@@ -3475,6 +3537,7 @@ export default class {
|
|
|
3475
3537
|
};
|
|
3476
3538
|
type: "keep_previous_data";
|
|
3477
3539
|
};
|
|
3540
|
+
sftpPublicKey?: string | undefined;
|
|
3478
3541
|
fieldsMap: {
|
|
3479
3542
|
name: string;
|
|
3480
3543
|
sortable: boolean;
|
|
@@ -3519,13 +3582,13 @@ export default class {
|
|
|
3519
3582
|
params: {
|
|
3520
3583
|
value: string | number;
|
|
3521
3584
|
key: string;
|
|
3522
|
-
operator: "=";
|
|
3585
|
+
operator: "=" | "!=";
|
|
3523
3586
|
};
|
|
3524
3587
|
name: "array_find";
|
|
3525
3588
|
} | {
|
|
3526
3589
|
params: {
|
|
3527
3590
|
key: string;
|
|
3528
|
-
operator: "=";
|
|
3591
|
+
operator: "=" | "!=";
|
|
3529
3592
|
valuePath: string;
|
|
3530
3593
|
};
|
|
3531
3594
|
name: "array_find";
|
|
@@ -3533,7 +3596,7 @@ export default class {
|
|
|
3533
3596
|
params: {
|
|
3534
3597
|
conditions: {
|
|
3535
3598
|
path: string;
|
|
3536
|
-
operator: "=" | "
|
|
3599
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
3537
3600
|
evaluateValue: string;
|
|
3538
3601
|
}[];
|
|
3539
3602
|
};
|
|
@@ -3564,10 +3627,10 @@ export default class {
|
|
|
3564
3627
|
conditions: ({
|
|
3565
3628
|
path: string;
|
|
3566
3629
|
value: string | number | boolean;
|
|
3567
|
-
operator: "=" | "
|
|
3630
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
3568
3631
|
} | {
|
|
3569
3632
|
path: string;
|
|
3570
|
-
operator: "=" | "
|
|
3633
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
3571
3634
|
evaluateValue: string;
|
|
3572
3635
|
})[];
|
|
3573
3636
|
fromFormatted?: true | undefined;
|
|
@@ -3594,8 +3657,14 @@ export default class {
|
|
|
3594
3657
|
value: string;
|
|
3595
3658
|
};
|
|
3596
3659
|
name: "custom";
|
|
3660
|
+
} | {
|
|
3661
|
+
params: {
|
|
3662
|
+
separator: string;
|
|
3663
|
+
};
|
|
3664
|
+
name: "split";
|
|
3597
3665
|
})[];
|
|
3598
3666
|
source?: import("./definitions").FieldSource | undefined;
|
|
3667
|
+
ignoreIfMissing?: boolean | undefined;
|
|
3599
3668
|
index: import("./definitions").PinotFieldIndexType;
|
|
3600
3669
|
}[];
|
|
3601
3670
|
readonly health: ("OK" | "WARNING" | "ERROR") & {
|
|
@@ -3693,7 +3762,7 @@ export default class {
|
|
|
3693
3762
|
};
|
|
3694
3763
|
isAPI: true;
|
|
3695
3764
|
})[];
|
|
3696
|
-
readonly archivedAt:
|
|
3765
|
+
readonly archivedAt: string & {
|
|
3697
3766
|
readonly?: "__readonly" | undefined;
|
|
3698
3767
|
};
|
|
3699
3768
|
status: DatasourceStatus;
|
|
@@ -3721,13 +3790,13 @@ export default class {
|
|
|
3721
3790
|
value: "entries_drop_rate_too_high";
|
|
3722
3791
|
};
|
|
3723
3792
|
})[];
|
|
3724
|
-
readonly lastRunAt:
|
|
3793
|
+
readonly lastRunAt: string & {
|
|
3725
3794
|
readonly?: "__readonly" | undefined;
|
|
3726
3795
|
};
|
|
3727
3796
|
readonly currentLiveVersion: string & {
|
|
3728
3797
|
readonly?: "__readonly" | undefined;
|
|
3729
3798
|
};
|
|
3730
|
-
readonly pausedAt:
|
|
3799
|
+
readonly pausedAt: string & {
|
|
3731
3800
|
readonly?: "__readonly" | undefined;
|
|
3732
3801
|
};
|
|
3733
3802
|
readonly isPaused: boolean & {
|
|
@@ -3744,10 +3813,10 @@ export default class {
|
|
|
3744
3813
|
readonly template?: (string & {
|
|
3745
3814
|
readonly?: "__readonly" | undefined;
|
|
3746
3815
|
}) | undefined;
|
|
3747
|
-
readonly createdAt:
|
|
3816
|
+
readonly createdAt: string & {
|
|
3748
3817
|
readonly?: "__readonly" | undefined;
|
|
3749
3818
|
};
|
|
3750
|
-
readonly updatedAt:
|
|
3819
|
+
readonly updatedAt: string & {
|
|
3751
3820
|
readonly?: "__readonly" | undefined;
|
|
3752
3821
|
};
|
|
3753
3822
|
readonly configurationUpdatedAt: string & {
|
|
@@ -3913,13 +3982,13 @@ export default class {
|
|
|
3913
3982
|
params: {
|
|
3914
3983
|
value: string | number;
|
|
3915
3984
|
key: string;
|
|
3916
|
-
operator: "=";
|
|
3985
|
+
operator: "=" | "!=";
|
|
3917
3986
|
};
|
|
3918
3987
|
name: "array_find";
|
|
3919
3988
|
} | {
|
|
3920
3989
|
params: {
|
|
3921
3990
|
key: string;
|
|
3922
|
-
operator: "=";
|
|
3991
|
+
operator: "=" | "!=";
|
|
3923
3992
|
valuePath: string;
|
|
3924
3993
|
};
|
|
3925
3994
|
name: "array_find";
|
|
@@ -3927,7 +3996,7 @@ export default class {
|
|
|
3927
3996
|
params: {
|
|
3928
3997
|
conditions: {
|
|
3929
3998
|
path: string;
|
|
3930
|
-
operator: "=" | "
|
|
3999
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
3931
4000
|
evaluateValue: string;
|
|
3932
4001
|
}[];
|
|
3933
4002
|
};
|
|
@@ -3958,10 +4027,10 @@ export default class {
|
|
|
3958
4027
|
conditions: ({
|
|
3959
4028
|
path: string;
|
|
3960
4029
|
value: string | number | boolean;
|
|
3961
|
-
operator: "=" | "
|
|
4030
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
3962
4031
|
} | {
|
|
3963
4032
|
path: string;
|
|
3964
|
-
operator: "=" | "
|
|
4033
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
3965
4034
|
evaluateValue: string;
|
|
3966
4035
|
})[];
|
|
3967
4036
|
fromFormatted?: true | undefined;
|
|
@@ -3988,8 +4057,14 @@ export default class {
|
|
|
3988
4057
|
value: string;
|
|
3989
4058
|
};
|
|
3990
4059
|
name: "custom";
|
|
4060
|
+
} | {
|
|
4061
|
+
params: {
|
|
4062
|
+
separator: string;
|
|
4063
|
+
};
|
|
4064
|
+
name: "split";
|
|
3991
4065
|
})[];
|
|
3992
4066
|
source?: import("./definitions").FieldSource | undefined;
|
|
4067
|
+
ignoreIfMissing?: boolean | undefined;
|
|
3993
4068
|
}[];
|
|
3994
4069
|
readonly health: ("OK" | "WARNING" | "ERROR") & {
|
|
3995
4070
|
readonly?: "__readonly" | undefined;
|
|
@@ -4079,7 +4154,7 @@ export default class {
|
|
|
4079
4154
|
readonly uniqueFieldsTypes: FieldMapType[];
|
|
4080
4155
|
readonly importantFieldsTypes: FieldMapType[];
|
|
4081
4156
|
}[];
|
|
4082
|
-
readonly archivedAt:
|
|
4157
|
+
readonly archivedAt: string & {
|
|
4083
4158
|
readonly?: "__readonly" | undefined;
|
|
4084
4159
|
};
|
|
4085
4160
|
status: DatasourceStatus;
|
|
@@ -4110,10 +4185,10 @@ export default class {
|
|
|
4110
4185
|
readonly template?: (string & {
|
|
4111
4186
|
readonly?: "__readonly" | undefined;
|
|
4112
4187
|
}) | undefined;
|
|
4113
|
-
readonly createdAt:
|
|
4188
|
+
readonly createdAt: string & {
|
|
4114
4189
|
readonly?: "__readonly" | undefined;
|
|
4115
4190
|
};
|
|
4116
|
-
readonly updatedAt:
|
|
4191
|
+
readonly updatedAt: string & {
|
|
4117
4192
|
readonly?: "__readonly" | undefined;
|
|
4118
4193
|
};
|
|
4119
4194
|
readonly configurationUpdatedAt: string & {
|
|
@@ -4264,13 +4339,13 @@ export default class {
|
|
|
4264
4339
|
params: {
|
|
4265
4340
|
value: string | number;
|
|
4266
4341
|
key: string;
|
|
4267
|
-
operator: "=";
|
|
4342
|
+
operator: "=" | "!=";
|
|
4268
4343
|
};
|
|
4269
4344
|
name: "array_find";
|
|
4270
4345
|
} | {
|
|
4271
4346
|
params: {
|
|
4272
4347
|
key: string;
|
|
4273
|
-
operator: "=";
|
|
4348
|
+
operator: "=" | "!=";
|
|
4274
4349
|
valuePath: string;
|
|
4275
4350
|
};
|
|
4276
4351
|
name: "array_find";
|
|
@@ -4278,7 +4353,7 @@ export default class {
|
|
|
4278
4353
|
params: {
|
|
4279
4354
|
conditions: {
|
|
4280
4355
|
path: string;
|
|
4281
|
-
operator: "=" | "
|
|
4356
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
4282
4357
|
evaluateValue: string;
|
|
4283
4358
|
}[];
|
|
4284
4359
|
};
|
|
@@ -4309,10 +4384,10 @@ export default class {
|
|
|
4309
4384
|
conditions: ({
|
|
4310
4385
|
path: string;
|
|
4311
4386
|
value: string | number | boolean;
|
|
4312
|
-
operator: "=" | "
|
|
4387
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
4313
4388
|
} | {
|
|
4314
4389
|
path: string;
|
|
4315
|
-
operator: "=" | "
|
|
4390
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
4316
4391
|
evaluateValue: string;
|
|
4317
4392
|
})[];
|
|
4318
4393
|
fromFormatted?: true | undefined;
|
|
@@ -4339,8 +4414,14 @@ export default class {
|
|
|
4339
4414
|
value: string;
|
|
4340
4415
|
};
|
|
4341
4416
|
name: "custom";
|
|
4417
|
+
} | {
|
|
4418
|
+
params: {
|
|
4419
|
+
separator: string;
|
|
4420
|
+
};
|
|
4421
|
+
name: "split";
|
|
4342
4422
|
})[];
|
|
4343
4423
|
source?: import("./definitions").FieldSource | undefined;
|
|
4424
|
+
ignoreIfMissing?: boolean | undefined;
|
|
4344
4425
|
index: import("./definitions").PinotFieldIndexType;
|
|
4345
4426
|
}[];
|
|
4346
4427
|
readonly health: ("OK" | "WARNING" | "ERROR") & {
|
|
@@ -4430,7 +4511,7 @@ export default class {
|
|
|
4430
4511
|
readonly uniqueFieldsTypes: FieldMapType[];
|
|
4431
4512
|
readonly importantFieldsTypes: FieldMapType[];
|
|
4432
4513
|
}[];
|
|
4433
|
-
readonly archivedAt:
|
|
4514
|
+
readonly archivedAt: string & {
|
|
4434
4515
|
readonly?: "__readonly" | undefined;
|
|
4435
4516
|
};
|
|
4436
4517
|
status: DatasourceStatus;
|
|
@@ -4464,10 +4545,10 @@ export default class {
|
|
|
4464
4545
|
readonly template?: (string & {
|
|
4465
4546
|
readonly?: "__readonly" | undefined;
|
|
4466
4547
|
}) | undefined;
|
|
4467
|
-
readonly createdAt:
|
|
4548
|
+
readonly createdAt: string & {
|
|
4468
4549
|
readonly?: "__readonly" | undefined;
|
|
4469
4550
|
};
|
|
4470
|
-
readonly updatedAt:
|
|
4551
|
+
readonly updatedAt: string & {
|
|
4471
4552
|
readonly?: "__readonly" | undefined;
|
|
4472
4553
|
};
|
|
4473
4554
|
readonly configurationUpdatedAt: string & {
|
|
@@ -4571,6 +4652,7 @@ export default class {
|
|
|
4571
4652
|
timeout?: number | undefined;
|
|
4572
4653
|
oauth?: string | undefined;
|
|
4573
4654
|
pagination?: {
|
|
4655
|
+
subtype?: "page" | "offset" | undefined;
|
|
4574
4656
|
type: "body" | "query";
|
|
4575
4657
|
value: string;
|
|
4576
4658
|
startAt?: number | undefined;
|
|
@@ -4639,6 +4721,7 @@ export default class {
|
|
|
4639
4721
|
};
|
|
4640
4722
|
type: "keep_previous_data";
|
|
4641
4723
|
};
|
|
4724
|
+
sftpPublicKey?: string | undefined;
|
|
4642
4725
|
fieldsMap: {
|
|
4643
4726
|
name: string;
|
|
4644
4727
|
sortable: boolean;
|
|
@@ -4683,13 +4766,13 @@ export default class {
|
|
|
4683
4766
|
params: {
|
|
4684
4767
|
value: string | number;
|
|
4685
4768
|
key: string;
|
|
4686
|
-
operator: "=";
|
|
4769
|
+
operator: "=" | "!=";
|
|
4687
4770
|
};
|
|
4688
4771
|
name: "array_find";
|
|
4689
4772
|
} | {
|
|
4690
4773
|
params: {
|
|
4691
4774
|
key: string;
|
|
4692
|
-
operator: "=";
|
|
4775
|
+
operator: "=" | "!=";
|
|
4693
4776
|
valuePath: string;
|
|
4694
4777
|
};
|
|
4695
4778
|
name: "array_find";
|
|
@@ -4697,7 +4780,7 @@ export default class {
|
|
|
4697
4780
|
params: {
|
|
4698
4781
|
conditions: {
|
|
4699
4782
|
path: string;
|
|
4700
|
-
operator: "=" | "
|
|
4783
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
4701
4784
|
evaluateValue: string;
|
|
4702
4785
|
}[];
|
|
4703
4786
|
};
|
|
@@ -4728,10 +4811,10 @@ export default class {
|
|
|
4728
4811
|
conditions: ({
|
|
4729
4812
|
path: string;
|
|
4730
4813
|
value: string | number | boolean;
|
|
4731
|
-
operator: "=" | "
|
|
4814
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
4732
4815
|
} | {
|
|
4733
4816
|
path: string;
|
|
4734
|
-
operator: "=" | "
|
|
4817
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
4735
4818
|
evaluateValue: string;
|
|
4736
4819
|
})[];
|
|
4737
4820
|
fromFormatted?: true | undefined;
|
|
@@ -4758,8 +4841,14 @@ export default class {
|
|
|
4758
4841
|
value: string;
|
|
4759
4842
|
};
|
|
4760
4843
|
name: "custom";
|
|
4844
|
+
} | {
|
|
4845
|
+
params: {
|
|
4846
|
+
separator: string;
|
|
4847
|
+
};
|
|
4848
|
+
name: "split";
|
|
4761
4849
|
})[];
|
|
4762
4850
|
source?: import("./definitions").FieldSource | undefined;
|
|
4851
|
+
ignoreIfMissing?: boolean | undefined;
|
|
4763
4852
|
index: import("./definitions").PinotFieldIndexType;
|
|
4764
4853
|
}[];
|
|
4765
4854
|
readonly health: ("OK" | "WARNING" | "ERROR") & {
|
|
@@ -4884,6 +4973,7 @@ export default class {
|
|
|
4884
4973
|
timeout?: number | undefined;
|
|
4885
4974
|
oauth?: string | undefined;
|
|
4886
4975
|
pagination?: {
|
|
4976
|
+
subtype?: "page" | "offset" | undefined;
|
|
4887
4977
|
type: "body" | "query";
|
|
4888
4978
|
value: string;
|
|
4889
4979
|
startAt?: number | undefined;
|
|
@@ -4952,6 +5042,7 @@ export default class {
|
|
|
4952
5042
|
};
|
|
4953
5043
|
type: "keep_previous_data";
|
|
4954
5044
|
};
|
|
5045
|
+
sftpPublicKey?: string | undefined;
|
|
4955
5046
|
fieldsMap: {
|
|
4956
5047
|
name: string;
|
|
4957
5048
|
sortable: boolean;
|
|
@@ -4996,13 +5087,13 @@ export default class {
|
|
|
4996
5087
|
params: {
|
|
4997
5088
|
value: string | number;
|
|
4998
5089
|
key: string;
|
|
4999
|
-
operator: "=";
|
|
5090
|
+
operator: "=" | "!=";
|
|
5000
5091
|
};
|
|
5001
5092
|
name: "array_find";
|
|
5002
5093
|
} | {
|
|
5003
5094
|
params: {
|
|
5004
5095
|
key: string;
|
|
5005
|
-
operator: "=";
|
|
5096
|
+
operator: "=" | "!=";
|
|
5006
5097
|
valuePath: string;
|
|
5007
5098
|
};
|
|
5008
5099
|
name: "array_find";
|
|
@@ -5010,7 +5101,7 @@ export default class {
|
|
|
5010
5101
|
params: {
|
|
5011
5102
|
conditions: {
|
|
5012
5103
|
path: string;
|
|
5013
|
-
operator: "=" | "
|
|
5104
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
5014
5105
|
evaluateValue: string;
|
|
5015
5106
|
}[];
|
|
5016
5107
|
};
|
|
@@ -5041,10 +5132,10 @@ export default class {
|
|
|
5041
5132
|
conditions: ({
|
|
5042
5133
|
path: string;
|
|
5043
5134
|
value: string | number | boolean;
|
|
5044
|
-
operator: "=" | "
|
|
5135
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
5045
5136
|
} | {
|
|
5046
5137
|
path: string;
|
|
5047
|
-
operator: "=" | "
|
|
5138
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
5048
5139
|
evaluateValue: string;
|
|
5049
5140
|
})[];
|
|
5050
5141
|
fromFormatted?: true | undefined;
|
|
@@ -5071,8 +5162,14 @@ export default class {
|
|
|
5071
5162
|
value: string;
|
|
5072
5163
|
};
|
|
5073
5164
|
name: "custom";
|
|
5165
|
+
} | {
|
|
5166
|
+
params: {
|
|
5167
|
+
separator: string;
|
|
5168
|
+
};
|
|
5169
|
+
name: "split";
|
|
5074
5170
|
})[];
|
|
5075
5171
|
source?: import("./definitions").FieldSource | undefined;
|
|
5172
|
+
ignoreIfMissing?: boolean | undefined;
|
|
5076
5173
|
index: import("./definitions").PinotFieldIndexType;
|
|
5077
5174
|
}[];
|
|
5078
5175
|
readonly health: ("OK" | "WARNING" | "ERROR") & {
|
|
@@ -5170,7 +5267,7 @@ export default class {
|
|
|
5170
5267
|
};
|
|
5171
5268
|
isAPI: true;
|
|
5172
5269
|
})[];
|
|
5173
|
-
readonly archivedAt:
|
|
5270
|
+
readonly archivedAt: string & {
|
|
5174
5271
|
readonly?: "__readonly" | undefined;
|
|
5175
5272
|
};
|
|
5176
5273
|
status: DatasourceStatus;
|
|
@@ -5198,13 +5295,13 @@ export default class {
|
|
|
5198
5295
|
value: "entries_drop_rate_too_high";
|
|
5199
5296
|
};
|
|
5200
5297
|
})[];
|
|
5201
|
-
readonly lastRunAt:
|
|
5298
|
+
readonly lastRunAt: string & {
|
|
5202
5299
|
readonly?: "__readonly" | undefined;
|
|
5203
5300
|
};
|
|
5204
5301
|
readonly currentLiveVersion: string & {
|
|
5205
5302
|
readonly?: "__readonly" | undefined;
|
|
5206
5303
|
};
|
|
5207
|
-
readonly pausedAt:
|
|
5304
|
+
readonly pausedAt: string & {
|
|
5208
5305
|
readonly?: "__readonly" | undefined;
|
|
5209
5306
|
};
|
|
5210
5307
|
readonly isPaused: boolean & {
|
|
@@ -5237,10 +5334,10 @@ export default class {
|
|
|
5237
5334
|
readonly template?: (string & {
|
|
5238
5335
|
readonly?: "__readonly" | undefined;
|
|
5239
5336
|
}) | undefined;
|
|
5240
|
-
readonly createdAt:
|
|
5337
|
+
readonly createdAt: string & {
|
|
5241
5338
|
readonly?: "__readonly" | undefined;
|
|
5242
5339
|
};
|
|
5243
|
-
readonly updatedAt:
|
|
5340
|
+
readonly updatedAt: string & {
|
|
5244
5341
|
readonly?: "__readonly" | undefined;
|
|
5245
5342
|
};
|
|
5246
5343
|
readonly configurationUpdatedAt: string & {
|
|
@@ -5406,13 +5503,13 @@ export default class {
|
|
|
5406
5503
|
params: {
|
|
5407
5504
|
value: string | number;
|
|
5408
5505
|
key: string;
|
|
5409
|
-
operator: "=";
|
|
5506
|
+
operator: "=" | "!=";
|
|
5410
5507
|
};
|
|
5411
5508
|
name: "array_find";
|
|
5412
5509
|
} | {
|
|
5413
5510
|
params: {
|
|
5414
5511
|
key: string;
|
|
5415
|
-
operator: "=";
|
|
5512
|
+
operator: "=" | "!=";
|
|
5416
5513
|
valuePath: string;
|
|
5417
5514
|
};
|
|
5418
5515
|
name: "array_find";
|
|
@@ -5420,7 +5517,7 @@ export default class {
|
|
|
5420
5517
|
params: {
|
|
5421
5518
|
conditions: {
|
|
5422
5519
|
path: string;
|
|
5423
|
-
operator: "=" | "
|
|
5520
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
5424
5521
|
evaluateValue: string;
|
|
5425
5522
|
}[];
|
|
5426
5523
|
};
|
|
@@ -5451,10 +5548,10 @@ export default class {
|
|
|
5451
5548
|
conditions: ({
|
|
5452
5549
|
path: string;
|
|
5453
5550
|
value: string | number | boolean;
|
|
5454
|
-
operator: "=" | "
|
|
5551
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
5455
5552
|
} | {
|
|
5456
5553
|
path: string;
|
|
5457
|
-
operator: "=" | "
|
|
5554
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
5458
5555
|
evaluateValue: string;
|
|
5459
5556
|
})[];
|
|
5460
5557
|
fromFormatted?: true | undefined;
|
|
@@ -5481,8 +5578,14 @@ export default class {
|
|
|
5481
5578
|
value: string;
|
|
5482
5579
|
};
|
|
5483
5580
|
name: "custom";
|
|
5581
|
+
} | {
|
|
5582
|
+
params: {
|
|
5583
|
+
separator: string;
|
|
5584
|
+
};
|
|
5585
|
+
name: "split";
|
|
5484
5586
|
})[];
|
|
5485
5587
|
source?: import("./definitions").FieldSource | undefined;
|
|
5588
|
+
ignoreIfMissing?: boolean | undefined;
|
|
5486
5589
|
}[];
|
|
5487
5590
|
readonly health: ("OK" | "WARNING" | "ERROR") & {
|
|
5488
5591
|
readonly?: "__readonly" | undefined;
|
|
@@ -5572,7 +5675,7 @@ export default class {
|
|
|
5572
5675
|
readonly uniqueFieldsTypes: FieldMapType[];
|
|
5573
5676
|
readonly importantFieldsTypes: FieldMapType[];
|
|
5574
5677
|
}[];
|
|
5575
|
-
readonly archivedAt:
|
|
5678
|
+
readonly archivedAt: string & {
|
|
5576
5679
|
readonly?: "__readonly" | undefined;
|
|
5577
5680
|
};
|
|
5578
5681
|
status: DatasourceStatus;
|
|
@@ -5612,8 +5715,8 @@ export default class {
|
|
|
5612
5715
|
level?: string | undefined;
|
|
5613
5716
|
page?: number | undefined;
|
|
5614
5717
|
perPage?: number | undefined;
|
|
5615
|
-
startDate?:
|
|
5616
|
-
endDate?:
|
|
5718
|
+
startDate?: string | undefined;
|
|
5719
|
+
endDate?: string | undefined;
|
|
5617
5720
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
5618
5721
|
paginationCount: number;
|
|
5619
5722
|
paginationPage: number;
|
|
@@ -5688,6 +5791,7 @@ export default class {
|
|
|
5688
5791
|
timeout?: number | undefined;
|
|
5689
5792
|
oauth?: string | undefined;
|
|
5690
5793
|
pagination?: {
|
|
5794
|
+
subtype?: "page" | "offset" | undefined;
|
|
5691
5795
|
type: "body" | "query";
|
|
5692
5796
|
value: string;
|
|
5693
5797
|
startAt?: number | undefined;
|
|
@@ -5772,13 +5876,13 @@ export default class {
|
|
|
5772
5876
|
params: {
|
|
5773
5877
|
value: string | number;
|
|
5774
5878
|
key: string;
|
|
5775
|
-
operator: "=";
|
|
5879
|
+
operator: "=" | "!=";
|
|
5776
5880
|
};
|
|
5777
5881
|
name: "array_find";
|
|
5778
5882
|
} | {
|
|
5779
5883
|
params: {
|
|
5780
5884
|
key: string;
|
|
5781
|
-
operator: "=";
|
|
5885
|
+
operator: "=" | "!=";
|
|
5782
5886
|
valuePath: string;
|
|
5783
5887
|
};
|
|
5784
5888
|
name: "array_find";
|
|
@@ -5786,7 +5890,7 @@ export default class {
|
|
|
5786
5890
|
params: {
|
|
5787
5891
|
conditions: {
|
|
5788
5892
|
path: string;
|
|
5789
|
-
operator: "=" | "
|
|
5893
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
5790
5894
|
evaluateValue: string;
|
|
5791
5895
|
}[];
|
|
5792
5896
|
};
|
|
@@ -5817,10 +5921,10 @@ export default class {
|
|
|
5817
5921
|
conditions: ({
|
|
5818
5922
|
path: string;
|
|
5819
5923
|
value: string | number | boolean;
|
|
5820
|
-
operator: "=" | "
|
|
5924
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
5821
5925
|
} | {
|
|
5822
5926
|
path: string;
|
|
5823
|
-
operator: "=" | "
|
|
5927
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
5824
5928
|
evaluateValue: string;
|
|
5825
5929
|
})[];
|
|
5826
5930
|
fromFormatted?: true | undefined;
|
|
@@ -5847,8 +5951,14 @@ export default class {
|
|
|
5847
5951
|
value: string;
|
|
5848
5952
|
};
|
|
5849
5953
|
name: "custom";
|
|
5954
|
+
} | {
|
|
5955
|
+
params: {
|
|
5956
|
+
separator: string;
|
|
5957
|
+
};
|
|
5958
|
+
name: "split";
|
|
5850
5959
|
})[];
|
|
5851
5960
|
source?: import("./definitions").FieldSource | undefined;
|
|
5961
|
+
ignoreIfMissing?: boolean | undefined;
|
|
5852
5962
|
}[] | undefined;
|
|
5853
5963
|
} | {
|
|
5854
5964
|
name: "configure_field";
|
|
@@ -5895,13 +6005,13 @@ export default class {
|
|
|
5895
6005
|
params: {
|
|
5896
6006
|
value: string | number;
|
|
5897
6007
|
key: string;
|
|
5898
|
-
operator: "=";
|
|
6008
|
+
operator: "=" | "!=";
|
|
5899
6009
|
};
|
|
5900
6010
|
name: "array_find";
|
|
5901
6011
|
} | {
|
|
5902
6012
|
params: {
|
|
5903
6013
|
key: string;
|
|
5904
|
-
operator: "=";
|
|
6014
|
+
operator: "=" | "!=";
|
|
5905
6015
|
valuePath: string;
|
|
5906
6016
|
};
|
|
5907
6017
|
name: "array_find";
|
|
@@ -5909,7 +6019,7 @@ export default class {
|
|
|
5909
6019
|
params: {
|
|
5910
6020
|
conditions: {
|
|
5911
6021
|
path: string;
|
|
5912
|
-
operator: "=" | "
|
|
6022
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
5913
6023
|
evaluateValue: string;
|
|
5914
6024
|
}[];
|
|
5915
6025
|
};
|
|
@@ -5940,10 +6050,10 @@ export default class {
|
|
|
5940
6050
|
conditions: ({
|
|
5941
6051
|
path: string;
|
|
5942
6052
|
value: string | number | boolean;
|
|
5943
|
-
operator: "=" | "
|
|
6053
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
5944
6054
|
} | {
|
|
5945
6055
|
path: string;
|
|
5946
|
-
operator: "=" | "
|
|
6056
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
5947
6057
|
evaluateValue: string;
|
|
5948
6058
|
})[];
|
|
5949
6059
|
fromFormatted?: true | undefined;
|
|
@@ -5970,8 +6080,14 @@ export default class {
|
|
|
5970
6080
|
value: string;
|
|
5971
6081
|
};
|
|
5972
6082
|
name: "custom";
|
|
6083
|
+
} | {
|
|
6084
|
+
params: {
|
|
6085
|
+
separator: string;
|
|
6086
|
+
};
|
|
6087
|
+
name: "split";
|
|
5973
6088
|
})[];
|
|
5974
6089
|
source?: import("./definitions").FieldSource | undefined;
|
|
6090
|
+
ignoreIfMissing?: boolean | undefined;
|
|
5975
6091
|
} | undefined;
|
|
5976
6092
|
field: {
|
|
5977
6093
|
name: string;
|
|
@@ -6072,6 +6188,7 @@ export default class {
|
|
|
6072
6188
|
};
|
|
6073
6189
|
type: "keep_previous_data";
|
|
6074
6190
|
};
|
|
6191
|
+
sftpPublicKey?: string | undefined;
|
|
6075
6192
|
} | undefined;
|
|
6076
6193
|
} | {
|
|
6077
6194
|
name: "configure_fetcher";
|
|
@@ -6272,13 +6389,13 @@ export default class {
|
|
|
6272
6389
|
params: {
|
|
6273
6390
|
value: string | number;
|
|
6274
6391
|
key: string;
|
|
6275
|
-
operator: "=";
|
|
6392
|
+
operator: "=" | "!=";
|
|
6276
6393
|
};
|
|
6277
6394
|
name: "array_find";
|
|
6278
6395
|
} | {
|
|
6279
6396
|
params: {
|
|
6280
6397
|
key: string;
|
|
6281
|
-
operator: "=";
|
|
6398
|
+
operator: "=" | "!=";
|
|
6282
6399
|
valuePath: string;
|
|
6283
6400
|
};
|
|
6284
6401
|
name: "array_find";
|
|
@@ -6286,7 +6403,7 @@ export default class {
|
|
|
6286
6403
|
params: {
|
|
6287
6404
|
conditions: {
|
|
6288
6405
|
path: string;
|
|
6289
|
-
operator: "=" | "
|
|
6406
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
6290
6407
|
evaluateValue: string;
|
|
6291
6408
|
}[];
|
|
6292
6409
|
};
|
|
@@ -6317,10 +6434,10 @@ export default class {
|
|
|
6317
6434
|
conditions: ({
|
|
6318
6435
|
path: string;
|
|
6319
6436
|
value: string | number | boolean;
|
|
6320
|
-
operator: "=" | "
|
|
6437
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
6321
6438
|
} | {
|
|
6322
6439
|
path: string;
|
|
6323
|
-
operator: "=" | "
|
|
6440
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
6324
6441
|
evaluateValue: string;
|
|
6325
6442
|
})[];
|
|
6326
6443
|
fromFormatted?: true | undefined;
|
|
@@ -6347,8 +6464,14 @@ export default class {
|
|
|
6347
6464
|
value: string;
|
|
6348
6465
|
};
|
|
6349
6466
|
name: "custom";
|
|
6467
|
+
} | {
|
|
6468
|
+
params: {
|
|
6469
|
+
separator: string;
|
|
6470
|
+
};
|
|
6471
|
+
name: "split";
|
|
6350
6472
|
})[];
|
|
6351
6473
|
source?: import("./definitions").FieldSource | undefined;
|
|
6474
|
+
ignoreIfMissing?: boolean | undefined;
|
|
6352
6475
|
}[] | undefined;
|
|
6353
6476
|
} | {
|
|
6354
6477
|
name: "configure_field";
|
|
@@ -6395,13 +6518,13 @@ export default class {
|
|
|
6395
6518
|
params: {
|
|
6396
6519
|
value: string | number;
|
|
6397
6520
|
key: string;
|
|
6398
|
-
operator: "=";
|
|
6521
|
+
operator: "=" | "!=";
|
|
6399
6522
|
};
|
|
6400
6523
|
name: "array_find";
|
|
6401
6524
|
} | {
|
|
6402
6525
|
params: {
|
|
6403
6526
|
key: string;
|
|
6404
|
-
operator: "=";
|
|
6527
|
+
operator: "=" | "!=";
|
|
6405
6528
|
valuePath: string;
|
|
6406
6529
|
};
|
|
6407
6530
|
name: "array_find";
|
|
@@ -6409,7 +6532,7 @@ export default class {
|
|
|
6409
6532
|
params: {
|
|
6410
6533
|
conditions: {
|
|
6411
6534
|
path: string;
|
|
6412
|
-
operator: "=" | "
|
|
6535
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
6413
6536
|
evaluateValue: string;
|
|
6414
6537
|
}[];
|
|
6415
6538
|
};
|
|
@@ -6440,10 +6563,10 @@ export default class {
|
|
|
6440
6563
|
conditions: ({
|
|
6441
6564
|
path: string;
|
|
6442
6565
|
value: string | number | boolean;
|
|
6443
|
-
operator: "=" | "
|
|
6566
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
6444
6567
|
} | {
|
|
6445
6568
|
path: string;
|
|
6446
|
-
operator: "=" | "
|
|
6569
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
6447
6570
|
evaluateValue: string;
|
|
6448
6571
|
})[];
|
|
6449
6572
|
fromFormatted?: true | undefined;
|
|
@@ -6470,8 +6593,14 @@ export default class {
|
|
|
6470
6593
|
value: string;
|
|
6471
6594
|
};
|
|
6472
6595
|
name: "custom";
|
|
6596
|
+
} | {
|
|
6597
|
+
params: {
|
|
6598
|
+
separator: string;
|
|
6599
|
+
};
|
|
6600
|
+
name: "split";
|
|
6473
6601
|
})[];
|
|
6474
6602
|
source?: import("./definitions").FieldSource | undefined;
|
|
6603
|
+
ignoreIfMissing?: boolean | undefined;
|
|
6475
6604
|
} | undefined;
|
|
6476
6605
|
field: {
|
|
6477
6606
|
name: string;
|
|
@@ -6628,13 +6757,13 @@ export default class {
|
|
|
6628
6757
|
params: {
|
|
6629
6758
|
value: string | number;
|
|
6630
6759
|
key: string;
|
|
6631
|
-
operator: "=";
|
|
6760
|
+
operator: "=" | "!=";
|
|
6632
6761
|
};
|
|
6633
6762
|
name: "array_find";
|
|
6634
6763
|
} | {
|
|
6635
6764
|
params: {
|
|
6636
6765
|
key: string;
|
|
6637
|
-
operator: "=";
|
|
6766
|
+
operator: "=" | "!=";
|
|
6638
6767
|
valuePath: string;
|
|
6639
6768
|
};
|
|
6640
6769
|
name: "array_find";
|
|
@@ -6642,7 +6771,7 @@ export default class {
|
|
|
6642
6771
|
params: {
|
|
6643
6772
|
conditions: {
|
|
6644
6773
|
path: string;
|
|
6645
|
-
operator: "=" | "
|
|
6774
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
6646
6775
|
evaluateValue: string;
|
|
6647
6776
|
}[];
|
|
6648
6777
|
};
|
|
@@ -6673,10 +6802,10 @@ export default class {
|
|
|
6673
6802
|
conditions: ({
|
|
6674
6803
|
path: string;
|
|
6675
6804
|
value: string | number | boolean;
|
|
6676
|
-
operator: "=" | "
|
|
6805
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
6677
6806
|
} | {
|
|
6678
6807
|
path: string;
|
|
6679
|
-
operator: "=" | "
|
|
6808
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
6680
6809
|
evaluateValue: string;
|
|
6681
6810
|
})[];
|
|
6682
6811
|
fromFormatted?: true | undefined;
|
|
@@ -6703,8 +6832,14 @@ export default class {
|
|
|
6703
6832
|
value: string;
|
|
6704
6833
|
};
|
|
6705
6834
|
name: "custom";
|
|
6835
|
+
} | {
|
|
6836
|
+
params: {
|
|
6837
|
+
separator: string;
|
|
6838
|
+
};
|
|
6839
|
+
name: "split";
|
|
6706
6840
|
})[];
|
|
6707
6841
|
source?: import("./definitions").FieldSource | undefined;
|
|
6842
|
+
ignoreIfMissing?: boolean | undefined;
|
|
6708
6843
|
}[] | undefined;
|
|
6709
6844
|
} | {
|
|
6710
6845
|
name: "configure_field";
|
|
@@ -6751,13 +6886,13 @@ export default class {
|
|
|
6751
6886
|
params: {
|
|
6752
6887
|
value: string | number;
|
|
6753
6888
|
key: string;
|
|
6754
|
-
operator: "=";
|
|
6889
|
+
operator: "=" | "!=";
|
|
6755
6890
|
};
|
|
6756
6891
|
name: "array_find";
|
|
6757
6892
|
} | {
|
|
6758
6893
|
params: {
|
|
6759
6894
|
key: string;
|
|
6760
|
-
operator: "=";
|
|
6895
|
+
operator: "=" | "!=";
|
|
6761
6896
|
valuePath: string;
|
|
6762
6897
|
};
|
|
6763
6898
|
name: "array_find";
|
|
@@ -6765,7 +6900,7 @@ export default class {
|
|
|
6765
6900
|
params: {
|
|
6766
6901
|
conditions: {
|
|
6767
6902
|
path: string;
|
|
6768
|
-
operator: "=" | "
|
|
6903
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
6769
6904
|
evaluateValue: string;
|
|
6770
6905
|
}[];
|
|
6771
6906
|
};
|
|
@@ -6796,10 +6931,10 @@ export default class {
|
|
|
6796
6931
|
conditions: ({
|
|
6797
6932
|
path: string;
|
|
6798
6933
|
value: string | number | boolean;
|
|
6799
|
-
operator: "=" | "
|
|
6934
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
6800
6935
|
} | {
|
|
6801
6936
|
path: string;
|
|
6802
|
-
operator: "=" | "
|
|
6937
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
6803
6938
|
evaluateValue: string;
|
|
6804
6939
|
})[];
|
|
6805
6940
|
fromFormatted?: true | undefined;
|
|
@@ -6826,8 +6961,14 @@ export default class {
|
|
|
6826
6961
|
value: string;
|
|
6827
6962
|
};
|
|
6828
6963
|
name: "custom";
|
|
6964
|
+
} | {
|
|
6965
|
+
params: {
|
|
6966
|
+
separator: string;
|
|
6967
|
+
};
|
|
6968
|
+
name: "split";
|
|
6829
6969
|
})[];
|
|
6830
6970
|
source?: import("./definitions").FieldSource | undefined;
|
|
6971
|
+
ignoreIfMissing?: boolean | undefined;
|
|
6831
6972
|
} | undefined;
|
|
6832
6973
|
field: {
|
|
6833
6974
|
name: string;
|
|
@@ -6933,6 +7074,7 @@ export default class {
|
|
|
6933
7074
|
timeout?: number | undefined;
|
|
6934
7075
|
oauth?: string | undefined;
|
|
6935
7076
|
pagination?: {
|
|
7077
|
+
subtype?: "page" | "offset" | undefined;
|
|
6936
7078
|
type: "body" | "query";
|
|
6937
7079
|
value: string;
|
|
6938
7080
|
startAt?: number | undefined;
|
|
@@ -7017,13 +7159,13 @@ export default class {
|
|
|
7017
7159
|
params: {
|
|
7018
7160
|
value: string | number;
|
|
7019
7161
|
key: string;
|
|
7020
|
-
operator: "=";
|
|
7162
|
+
operator: "=" | "!=";
|
|
7021
7163
|
};
|
|
7022
7164
|
name: "array_find";
|
|
7023
7165
|
} | {
|
|
7024
7166
|
params: {
|
|
7025
7167
|
key: string;
|
|
7026
|
-
operator: "=";
|
|
7168
|
+
operator: "=" | "!=";
|
|
7027
7169
|
valuePath: string;
|
|
7028
7170
|
};
|
|
7029
7171
|
name: "array_find";
|
|
@@ -7031,7 +7173,7 @@ export default class {
|
|
|
7031
7173
|
params: {
|
|
7032
7174
|
conditions: {
|
|
7033
7175
|
path: string;
|
|
7034
|
-
operator: "=" | "
|
|
7176
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
7035
7177
|
evaluateValue: string;
|
|
7036
7178
|
}[];
|
|
7037
7179
|
};
|
|
@@ -7062,10 +7204,10 @@ export default class {
|
|
|
7062
7204
|
conditions: ({
|
|
7063
7205
|
path: string;
|
|
7064
7206
|
value: string | number | boolean;
|
|
7065
|
-
operator: "=" | "
|
|
7207
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
7066
7208
|
} | {
|
|
7067
7209
|
path: string;
|
|
7068
|
-
operator: "=" | "
|
|
7210
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
7069
7211
|
evaluateValue: string;
|
|
7070
7212
|
})[];
|
|
7071
7213
|
fromFormatted?: true | undefined;
|
|
@@ -7092,8 +7234,14 @@ export default class {
|
|
|
7092
7234
|
value: string;
|
|
7093
7235
|
};
|
|
7094
7236
|
name: "custom";
|
|
7237
|
+
} | {
|
|
7238
|
+
params: {
|
|
7239
|
+
separator: string;
|
|
7240
|
+
};
|
|
7241
|
+
name: "split";
|
|
7095
7242
|
})[];
|
|
7096
7243
|
source?: import("./definitions").FieldSource | undefined;
|
|
7244
|
+
ignoreIfMissing?: boolean | undefined;
|
|
7097
7245
|
}[] | undefined;
|
|
7098
7246
|
} | {
|
|
7099
7247
|
name: "configure_field";
|
|
@@ -7140,13 +7288,13 @@ export default class {
|
|
|
7140
7288
|
params: {
|
|
7141
7289
|
value: string | number;
|
|
7142
7290
|
key: string;
|
|
7143
|
-
operator: "=";
|
|
7291
|
+
operator: "=" | "!=";
|
|
7144
7292
|
};
|
|
7145
7293
|
name: "array_find";
|
|
7146
7294
|
} | {
|
|
7147
7295
|
params: {
|
|
7148
7296
|
key: string;
|
|
7149
|
-
operator: "=";
|
|
7297
|
+
operator: "=" | "!=";
|
|
7150
7298
|
valuePath: string;
|
|
7151
7299
|
};
|
|
7152
7300
|
name: "array_find";
|
|
@@ -7154,7 +7302,7 @@ export default class {
|
|
|
7154
7302
|
params: {
|
|
7155
7303
|
conditions: {
|
|
7156
7304
|
path: string;
|
|
7157
|
-
operator: "=" | "
|
|
7305
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
7158
7306
|
evaluateValue: string;
|
|
7159
7307
|
}[];
|
|
7160
7308
|
};
|
|
@@ -7185,10 +7333,10 @@ export default class {
|
|
|
7185
7333
|
conditions: ({
|
|
7186
7334
|
path: string;
|
|
7187
7335
|
value: string | number | boolean;
|
|
7188
|
-
operator: "=" | "
|
|
7336
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
7189
7337
|
} | {
|
|
7190
7338
|
path: string;
|
|
7191
|
-
operator: "=" | "
|
|
7339
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
7192
7340
|
evaluateValue: string;
|
|
7193
7341
|
})[];
|
|
7194
7342
|
fromFormatted?: true | undefined;
|
|
@@ -7215,8 +7363,14 @@ export default class {
|
|
|
7215
7363
|
value: string;
|
|
7216
7364
|
};
|
|
7217
7365
|
name: "custom";
|
|
7366
|
+
} | {
|
|
7367
|
+
params: {
|
|
7368
|
+
separator: string;
|
|
7369
|
+
};
|
|
7370
|
+
name: "split";
|
|
7218
7371
|
})[];
|
|
7219
7372
|
source?: import("./definitions").FieldSource | undefined;
|
|
7373
|
+
ignoreIfMissing?: boolean | undefined;
|
|
7220
7374
|
} | undefined;
|
|
7221
7375
|
field: {
|
|
7222
7376
|
name: string;
|
|
@@ -7317,6 +7471,7 @@ export default class {
|
|
|
7317
7471
|
};
|
|
7318
7472
|
type: "keep_previous_data";
|
|
7319
7473
|
};
|
|
7474
|
+
sftpPublicKey?: string | undefined;
|
|
7320
7475
|
} | undefined;
|
|
7321
7476
|
} | {
|
|
7322
7477
|
name: "configure_fetcher";
|
|
@@ -7517,13 +7672,13 @@ export default class {
|
|
|
7517
7672
|
params: {
|
|
7518
7673
|
value: string | number;
|
|
7519
7674
|
key: string;
|
|
7520
|
-
operator: "=";
|
|
7675
|
+
operator: "=" | "!=";
|
|
7521
7676
|
};
|
|
7522
7677
|
name: "array_find";
|
|
7523
7678
|
} | {
|
|
7524
7679
|
params: {
|
|
7525
7680
|
key: string;
|
|
7526
|
-
operator: "=";
|
|
7681
|
+
operator: "=" | "!=";
|
|
7527
7682
|
valuePath: string;
|
|
7528
7683
|
};
|
|
7529
7684
|
name: "array_find";
|
|
@@ -7531,7 +7686,7 @@ export default class {
|
|
|
7531
7686
|
params: {
|
|
7532
7687
|
conditions: {
|
|
7533
7688
|
path: string;
|
|
7534
|
-
operator: "=" | "
|
|
7689
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
7535
7690
|
evaluateValue: string;
|
|
7536
7691
|
}[];
|
|
7537
7692
|
};
|
|
@@ -7562,10 +7717,10 @@ export default class {
|
|
|
7562
7717
|
conditions: ({
|
|
7563
7718
|
path: string;
|
|
7564
7719
|
value: string | number | boolean;
|
|
7565
|
-
operator: "=" | "
|
|
7720
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
7566
7721
|
} | {
|
|
7567
7722
|
path: string;
|
|
7568
|
-
operator: "=" | "
|
|
7723
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
7569
7724
|
evaluateValue: string;
|
|
7570
7725
|
})[];
|
|
7571
7726
|
fromFormatted?: true | undefined;
|
|
@@ -7592,8 +7747,14 @@ export default class {
|
|
|
7592
7747
|
value: string;
|
|
7593
7748
|
};
|
|
7594
7749
|
name: "custom";
|
|
7750
|
+
} | {
|
|
7751
|
+
params: {
|
|
7752
|
+
separator: string;
|
|
7753
|
+
};
|
|
7754
|
+
name: "split";
|
|
7595
7755
|
})[];
|
|
7596
7756
|
source?: import("./definitions").FieldSource | undefined;
|
|
7757
|
+
ignoreIfMissing?: boolean | undefined;
|
|
7597
7758
|
}[] | undefined;
|
|
7598
7759
|
} | {
|
|
7599
7760
|
name: "configure_field";
|
|
@@ -7640,13 +7801,13 @@ export default class {
|
|
|
7640
7801
|
params: {
|
|
7641
7802
|
value: string | number;
|
|
7642
7803
|
key: string;
|
|
7643
|
-
operator: "=";
|
|
7804
|
+
operator: "=" | "!=";
|
|
7644
7805
|
};
|
|
7645
7806
|
name: "array_find";
|
|
7646
7807
|
} | {
|
|
7647
7808
|
params: {
|
|
7648
7809
|
key: string;
|
|
7649
|
-
operator: "=";
|
|
7810
|
+
operator: "=" | "!=";
|
|
7650
7811
|
valuePath: string;
|
|
7651
7812
|
};
|
|
7652
7813
|
name: "array_find";
|
|
@@ -7654,7 +7815,7 @@ export default class {
|
|
|
7654
7815
|
params: {
|
|
7655
7816
|
conditions: {
|
|
7656
7817
|
path: string;
|
|
7657
|
-
operator: "=" | "
|
|
7818
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
7658
7819
|
evaluateValue: string;
|
|
7659
7820
|
}[];
|
|
7660
7821
|
};
|
|
@@ -7685,10 +7846,10 @@ export default class {
|
|
|
7685
7846
|
conditions: ({
|
|
7686
7847
|
path: string;
|
|
7687
7848
|
value: string | number | boolean;
|
|
7688
|
-
operator: "=" | "
|
|
7849
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
7689
7850
|
} | {
|
|
7690
7851
|
path: string;
|
|
7691
|
-
operator: "=" | "
|
|
7852
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
7692
7853
|
evaluateValue: string;
|
|
7693
7854
|
})[];
|
|
7694
7855
|
fromFormatted?: true | undefined;
|
|
@@ -7715,8 +7876,14 @@ export default class {
|
|
|
7715
7876
|
value: string;
|
|
7716
7877
|
};
|
|
7717
7878
|
name: "custom";
|
|
7879
|
+
} | {
|
|
7880
|
+
params: {
|
|
7881
|
+
separator: string;
|
|
7882
|
+
};
|
|
7883
|
+
name: "split";
|
|
7718
7884
|
})[];
|
|
7719
7885
|
source?: import("./definitions").FieldSource | undefined;
|
|
7886
|
+
ignoreIfMissing?: boolean | undefined;
|
|
7720
7887
|
} | undefined;
|
|
7721
7888
|
field: {
|
|
7722
7889
|
name: string;
|
|
@@ -7873,13 +8040,13 @@ export default class {
|
|
|
7873
8040
|
params: {
|
|
7874
8041
|
value: string | number;
|
|
7875
8042
|
key: string;
|
|
7876
|
-
operator: "=";
|
|
8043
|
+
operator: "=" | "!=";
|
|
7877
8044
|
};
|
|
7878
8045
|
name: "array_find";
|
|
7879
8046
|
} | {
|
|
7880
8047
|
params: {
|
|
7881
8048
|
key: string;
|
|
7882
|
-
operator: "=";
|
|
8049
|
+
operator: "=" | "!=";
|
|
7883
8050
|
valuePath: string;
|
|
7884
8051
|
};
|
|
7885
8052
|
name: "array_find";
|
|
@@ -7887,7 +8054,7 @@ export default class {
|
|
|
7887
8054
|
params: {
|
|
7888
8055
|
conditions: {
|
|
7889
8056
|
path: string;
|
|
7890
|
-
operator: "=" | "
|
|
8057
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
7891
8058
|
evaluateValue: string;
|
|
7892
8059
|
}[];
|
|
7893
8060
|
};
|
|
@@ -7918,10 +8085,10 @@ export default class {
|
|
|
7918
8085
|
conditions: ({
|
|
7919
8086
|
path: string;
|
|
7920
8087
|
value: string | number | boolean;
|
|
7921
|
-
operator: "=" | "
|
|
8088
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
7922
8089
|
} | {
|
|
7923
8090
|
path: string;
|
|
7924
|
-
operator: "=" | "
|
|
8091
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
7925
8092
|
evaluateValue: string;
|
|
7926
8093
|
})[];
|
|
7927
8094
|
fromFormatted?: true | undefined;
|
|
@@ -7948,8 +8115,14 @@ export default class {
|
|
|
7948
8115
|
value: string;
|
|
7949
8116
|
};
|
|
7950
8117
|
name: "custom";
|
|
8118
|
+
} | {
|
|
8119
|
+
params: {
|
|
8120
|
+
separator: string;
|
|
8121
|
+
};
|
|
8122
|
+
name: "split";
|
|
7951
8123
|
})[];
|
|
7952
8124
|
source?: import("./definitions").FieldSource | undefined;
|
|
8125
|
+
ignoreIfMissing?: boolean | undefined;
|
|
7953
8126
|
}[] | undefined;
|
|
7954
8127
|
} | {
|
|
7955
8128
|
name: "configure_field";
|
|
@@ -7996,13 +8169,13 @@ export default class {
|
|
|
7996
8169
|
params: {
|
|
7997
8170
|
value: string | number;
|
|
7998
8171
|
key: string;
|
|
7999
|
-
operator: "=";
|
|
8172
|
+
operator: "=" | "!=";
|
|
8000
8173
|
};
|
|
8001
8174
|
name: "array_find";
|
|
8002
8175
|
} | {
|
|
8003
8176
|
params: {
|
|
8004
8177
|
key: string;
|
|
8005
|
-
operator: "=";
|
|
8178
|
+
operator: "=" | "!=";
|
|
8006
8179
|
valuePath: string;
|
|
8007
8180
|
};
|
|
8008
8181
|
name: "array_find";
|
|
@@ -8010,7 +8183,7 @@ export default class {
|
|
|
8010
8183
|
params: {
|
|
8011
8184
|
conditions: {
|
|
8012
8185
|
path: string;
|
|
8013
|
-
operator: "=" | "
|
|
8186
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
8014
8187
|
evaluateValue: string;
|
|
8015
8188
|
}[];
|
|
8016
8189
|
};
|
|
@@ -8041,10 +8214,10 @@ export default class {
|
|
|
8041
8214
|
conditions: ({
|
|
8042
8215
|
path: string;
|
|
8043
8216
|
value: string | number | boolean;
|
|
8044
|
-
operator: "=" | "
|
|
8217
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
8045
8218
|
} | {
|
|
8046
8219
|
path: string;
|
|
8047
|
-
operator: "=" | "
|
|
8220
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
8048
8221
|
evaluateValue: string;
|
|
8049
8222
|
})[];
|
|
8050
8223
|
fromFormatted?: true | undefined;
|
|
@@ -8071,8 +8244,14 @@ export default class {
|
|
|
8071
8244
|
value: string;
|
|
8072
8245
|
};
|
|
8073
8246
|
name: "custom";
|
|
8247
|
+
} | {
|
|
8248
|
+
params: {
|
|
8249
|
+
separator: string;
|
|
8250
|
+
};
|
|
8251
|
+
name: "split";
|
|
8074
8252
|
})[];
|
|
8075
8253
|
source?: import("./definitions").FieldSource | undefined;
|
|
8254
|
+
ignoreIfMissing?: boolean | undefined;
|
|
8076
8255
|
} | undefined;
|
|
8077
8256
|
field: {
|
|
8078
8257
|
name: string;
|
|
@@ -8178,6 +8357,7 @@ export default class {
|
|
|
8178
8357
|
timeout?: number | undefined;
|
|
8179
8358
|
oauth?: string | undefined;
|
|
8180
8359
|
pagination?: {
|
|
8360
|
+
subtype?: "page" | "offset" | undefined;
|
|
8181
8361
|
type: "body" | "query";
|
|
8182
8362
|
value: string;
|
|
8183
8363
|
startAt?: number | undefined;
|
|
@@ -8262,13 +8442,13 @@ export default class {
|
|
|
8262
8442
|
params: {
|
|
8263
8443
|
value: string | number;
|
|
8264
8444
|
key: string;
|
|
8265
|
-
operator: "=";
|
|
8445
|
+
operator: "=" | "!=";
|
|
8266
8446
|
};
|
|
8267
8447
|
name: "array_find";
|
|
8268
8448
|
} | {
|
|
8269
8449
|
params: {
|
|
8270
8450
|
key: string;
|
|
8271
|
-
operator: "=";
|
|
8451
|
+
operator: "=" | "!=";
|
|
8272
8452
|
valuePath: string;
|
|
8273
8453
|
};
|
|
8274
8454
|
name: "array_find";
|
|
@@ -8276,7 +8456,7 @@ export default class {
|
|
|
8276
8456
|
params: {
|
|
8277
8457
|
conditions: {
|
|
8278
8458
|
path: string;
|
|
8279
|
-
operator: "=" | "
|
|
8459
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
8280
8460
|
evaluateValue: string;
|
|
8281
8461
|
}[];
|
|
8282
8462
|
};
|
|
@@ -8307,10 +8487,10 @@ export default class {
|
|
|
8307
8487
|
conditions: ({
|
|
8308
8488
|
path: string;
|
|
8309
8489
|
value: string | number | boolean;
|
|
8310
|
-
operator: "=" | "
|
|
8490
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
8311
8491
|
} | {
|
|
8312
8492
|
path: string;
|
|
8313
|
-
operator: "=" | "
|
|
8493
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
8314
8494
|
evaluateValue: string;
|
|
8315
8495
|
})[];
|
|
8316
8496
|
fromFormatted?: true | undefined;
|
|
@@ -8337,8 +8517,14 @@ export default class {
|
|
|
8337
8517
|
value: string;
|
|
8338
8518
|
};
|
|
8339
8519
|
name: "custom";
|
|
8520
|
+
} | {
|
|
8521
|
+
params: {
|
|
8522
|
+
separator: string;
|
|
8523
|
+
};
|
|
8524
|
+
name: "split";
|
|
8340
8525
|
})[];
|
|
8341
8526
|
source?: import("./definitions").FieldSource | undefined;
|
|
8527
|
+
ignoreIfMissing?: boolean | undefined;
|
|
8342
8528
|
}[] | undefined;
|
|
8343
8529
|
} | {
|
|
8344
8530
|
name: "configure_field";
|
|
@@ -8385,13 +8571,13 @@ export default class {
|
|
|
8385
8571
|
params: {
|
|
8386
8572
|
value: string | number;
|
|
8387
8573
|
key: string;
|
|
8388
|
-
operator: "=";
|
|
8574
|
+
operator: "=" | "!=";
|
|
8389
8575
|
};
|
|
8390
8576
|
name: "array_find";
|
|
8391
8577
|
} | {
|
|
8392
8578
|
params: {
|
|
8393
8579
|
key: string;
|
|
8394
|
-
operator: "=";
|
|
8580
|
+
operator: "=" | "!=";
|
|
8395
8581
|
valuePath: string;
|
|
8396
8582
|
};
|
|
8397
8583
|
name: "array_find";
|
|
@@ -8399,7 +8585,7 @@ export default class {
|
|
|
8399
8585
|
params: {
|
|
8400
8586
|
conditions: {
|
|
8401
8587
|
path: string;
|
|
8402
|
-
operator: "=" | "
|
|
8588
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
8403
8589
|
evaluateValue: string;
|
|
8404
8590
|
}[];
|
|
8405
8591
|
};
|
|
@@ -8430,10 +8616,10 @@ export default class {
|
|
|
8430
8616
|
conditions: ({
|
|
8431
8617
|
path: string;
|
|
8432
8618
|
value: string | number | boolean;
|
|
8433
|
-
operator: "=" | "
|
|
8619
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
8434
8620
|
} | {
|
|
8435
8621
|
path: string;
|
|
8436
|
-
operator: "=" | "
|
|
8622
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
8437
8623
|
evaluateValue: string;
|
|
8438
8624
|
})[];
|
|
8439
8625
|
fromFormatted?: true | undefined;
|
|
@@ -8460,8 +8646,14 @@ export default class {
|
|
|
8460
8646
|
value: string;
|
|
8461
8647
|
};
|
|
8462
8648
|
name: "custom";
|
|
8649
|
+
} | {
|
|
8650
|
+
params: {
|
|
8651
|
+
separator: string;
|
|
8652
|
+
};
|
|
8653
|
+
name: "split";
|
|
8463
8654
|
})[];
|
|
8464
8655
|
source?: import("./definitions").FieldSource | undefined;
|
|
8656
|
+
ignoreIfMissing?: boolean | undefined;
|
|
8465
8657
|
} | undefined;
|
|
8466
8658
|
field: {
|
|
8467
8659
|
name: string;
|
|
@@ -8562,6 +8754,7 @@ export default class {
|
|
|
8562
8754
|
};
|
|
8563
8755
|
type: "keep_previous_data";
|
|
8564
8756
|
};
|
|
8757
|
+
sftpPublicKey?: string | undefined;
|
|
8565
8758
|
} | undefined;
|
|
8566
8759
|
} | {
|
|
8567
8760
|
name: "configure_fetcher";
|
|
@@ -8762,13 +8955,13 @@ export default class {
|
|
|
8762
8955
|
params: {
|
|
8763
8956
|
value: string | number;
|
|
8764
8957
|
key: string;
|
|
8765
|
-
operator: "=";
|
|
8958
|
+
operator: "=" | "!=";
|
|
8766
8959
|
};
|
|
8767
8960
|
name: "array_find";
|
|
8768
8961
|
} | {
|
|
8769
8962
|
params: {
|
|
8770
8963
|
key: string;
|
|
8771
|
-
operator: "=";
|
|
8964
|
+
operator: "=" | "!=";
|
|
8772
8965
|
valuePath: string;
|
|
8773
8966
|
};
|
|
8774
8967
|
name: "array_find";
|
|
@@ -8776,7 +8969,7 @@ export default class {
|
|
|
8776
8969
|
params: {
|
|
8777
8970
|
conditions: {
|
|
8778
8971
|
path: string;
|
|
8779
|
-
operator: "=" | "
|
|
8972
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
8780
8973
|
evaluateValue: string;
|
|
8781
8974
|
}[];
|
|
8782
8975
|
};
|
|
@@ -8807,10 +9000,10 @@ export default class {
|
|
|
8807
9000
|
conditions: ({
|
|
8808
9001
|
path: string;
|
|
8809
9002
|
value: string | number | boolean;
|
|
8810
|
-
operator: "=" | "
|
|
9003
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
8811
9004
|
} | {
|
|
8812
9005
|
path: string;
|
|
8813
|
-
operator: "=" | "
|
|
9006
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
8814
9007
|
evaluateValue: string;
|
|
8815
9008
|
})[];
|
|
8816
9009
|
fromFormatted?: true | undefined;
|
|
@@ -8837,8 +9030,14 @@ export default class {
|
|
|
8837
9030
|
value: string;
|
|
8838
9031
|
};
|
|
8839
9032
|
name: "custom";
|
|
9033
|
+
} | {
|
|
9034
|
+
params: {
|
|
9035
|
+
separator: string;
|
|
9036
|
+
};
|
|
9037
|
+
name: "split";
|
|
8840
9038
|
})[];
|
|
8841
9039
|
source?: import("./definitions").FieldSource | undefined;
|
|
9040
|
+
ignoreIfMissing?: boolean | undefined;
|
|
8842
9041
|
}[] | undefined;
|
|
8843
9042
|
} | {
|
|
8844
9043
|
name: "configure_field";
|
|
@@ -8885,13 +9084,13 @@ export default class {
|
|
|
8885
9084
|
params: {
|
|
8886
9085
|
value: string | number;
|
|
8887
9086
|
key: string;
|
|
8888
|
-
operator: "=";
|
|
9087
|
+
operator: "=" | "!=";
|
|
8889
9088
|
};
|
|
8890
9089
|
name: "array_find";
|
|
8891
9090
|
} | {
|
|
8892
9091
|
params: {
|
|
8893
9092
|
key: string;
|
|
8894
|
-
operator: "=";
|
|
9093
|
+
operator: "=" | "!=";
|
|
8895
9094
|
valuePath: string;
|
|
8896
9095
|
};
|
|
8897
9096
|
name: "array_find";
|
|
@@ -8899,7 +9098,7 @@ export default class {
|
|
|
8899
9098
|
params: {
|
|
8900
9099
|
conditions: {
|
|
8901
9100
|
path: string;
|
|
8902
|
-
operator: "=" | "
|
|
9101
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
8903
9102
|
evaluateValue: string;
|
|
8904
9103
|
}[];
|
|
8905
9104
|
};
|
|
@@ -8930,10 +9129,10 @@ export default class {
|
|
|
8930
9129
|
conditions: ({
|
|
8931
9130
|
path: string;
|
|
8932
9131
|
value: string | number | boolean;
|
|
8933
|
-
operator: "=" | "
|
|
9132
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
8934
9133
|
} | {
|
|
8935
9134
|
path: string;
|
|
8936
|
-
operator: "=" | "
|
|
9135
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
8937
9136
|
evaluateValue: string;
|
|
8938
9137
|
})[];
|
|
8939
9138
|
fromFormatted?: true | undefined;
|
|
@@ -8960,8 +9159,14 @@ export default class {
|
|
|
8960
9159
|
value: string;
|
|
8961
9160
|
};
|
|
8962
9161
|
name: "custom";
|
|
9162
|
+
} | {
|
|
9163
|
+
params: {
|
|
9164
|
+
separator: string;
|
|
9165
|
+
};
|
|
9166
|
+
name: "split";
|
|
8963
9167
|
})[];
|
|
8964
9168
|
source?: import("./definitions").FieldSource | undefined;
|
|
9169
|
+
ignoreIfMissing?: boolean | undefined;
|
|
8965
9170
|
} | undefined;
|
|
8966
9171
|
field: {
|
|
8967
9172
|
name: string;
|
|
@@ -9118,13 +9323,13 @@ export default class {
|
|
|
9118
9323
|
params: {
|
|
9119
9324
|
value: string | number;
|
|
9120
9325
|
key: string;
|
|
9121
|
-
operator: "=";
|
|
9326
|
+
operator: "=" | "!=";
|
|
9122
9327
|
};
|
|
9123
9328
|
name: "array_find";
|
|
9124
9329
|
} | {
|
|
9125
9330
|
params: {
|
|
9126
9331
|
key: string;
|
|
9127
|
-
operator: "=";
|
|
9332
|
+
operator: "=" | "!=";
|
|
9128
9333
|
valuePath: string;
|
|
9129
9334
|
};
|
|
9130
9335
|
name: "array_find";
|
|
@@ -9132,7 +9337,7 @@ export default class {
|
|
|
9132
9337
|
params: {
|
|
9133
9338
|
conditions: {
|
|
9134
9339
|
path: string;
|
|
9135
|
-
operator: "=" | "
|
|
9340
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
9136
9341
|
evaluateValue: string;
|
|
9137
9342
|
}[];
|
|
9138
9343
|
};
|
|
@@ -9163,10 +9368,10 @@ export default class {
|
|
|
9163
9368
|
conditions: ({
|
|
9164
9369
|
path: string;
|
|
9165
9370
|
value: string | number | boolean;
|
|
9166
|
-
operator: "=" | "
|
|
9371
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
9167
9372
|
} | {
|
|
9168
9373
|
path: string;
|
|
9169
|
-
operator: "=" | "
|
|
9374
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
9170
9375
|
evaluateValue: string;
|
|
9171
9376
|
})[];
|
|
9172
9377
|
fromFormatted?: true | undefined;
|
|
@@ -9193,8 +9398,14 @@ export default class {
|
|
|
9193
9398
|
value: string;
|
|
9194
9399
|
};
|
|
9195
9400
|
name: "custom";
|
|
9401
|
+
} | {
|
|
9402
|
+
params: {
|
|
9403
|
+
separator: string;
|
|
9404
|
+
};
|
|
9405
|
+
name: "split";
|
|
9196
9406
|
})[];
|
|
9197
9407
|
source?: import("./definitions").FieldSource | undefined;
|
|
9408
|
+
ignoreIfMissing?: boolean | undefined;
|
|
9198
9409
|
}[] | undefined;
|
|
9199
9410
|
} | {
|
|
9200
9411
|
name: "configure_field";
|
|
@@ -9241,13 +9452,13 @@ export default class {
|
|
|
9241
9452
|
params: {
|
|
9242
9453
|
value: string | number;
|
|
9243
9454
|
key: string;
|
|
9244
|
-
operator: "=";
|
|
9455
|
+
operator: "=" | "!=";
|
|
9245
9456
|
};
|
|
9246
9457
|
name: "array_find";
|
|
9247
9458
|
} | {
|
|
9248
9459
|
params: {
|
|
9249
9460
|
key: string;
|
|
9250
|
-
operator: "=";
|
|
9461
|
+
operator: "=" | "!=";
|
|
9251
9462
|
valuePath: string;
|
|
9252
9463
|
};
|
|
9253
9464
|
name: "array_find";
|
|
@@ -9255,7 +9466,7 @@ export default class {
|
|
|
9255
9466
|
params: {
|
|
9256
9467
|
conditions: {
|
|
9257
9468
|
path: string;
|
|
9258
|
-
operator: "=" | "
|
|
9469
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
9259
9470
|
evaluateValue: string;
|
|
9260
9471
|
}[];
|
|
9261
9472
|
};
|
|
@@ -9286,10 +9497,10 @@ export default class {
|
|
|
9286
9497
|
conditions: ({
|
|
9287
9498
|
path: string;
|
|
9288
9499
|
value: string | number | boolean;
|
|
9289
|
-
operator: "=" | "
|
|
9500
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
9290
9501
|
} | {
|
|
9291
9502
|
path: string;
|
|
9292
|
-
operator: "=" | "
|
|
9503
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
9293
9504
|
evaluateValue: string;
|
|
9294
9505
|
})[];
|
|
9295
9506
|
fromFormatted?: true | undefined;
|
|
@@ -9316,8 +9527,14 @@ export default class {
|
|
|
9316
9527
|
value: string;
|
|
9317
9528
|
};
|
|
9318
9529
|
name: "custom";
|
|
9530
|
+
} | {
|
|
9531
|
+
params: {
|
|
9532
|
+
separator: string;
|
|
9533
|
+
};
|
|
9534
|
+
name: "split";
|
|
9319
9535
|
})[];
|
|
9320
9536
|
source?: import("./definitions").FieldSource | undefined;
|
|
9537
|
+
ignoreIfMissing?: boolean | undefined;
|
|
9321
9538
|
} | undefined;
|
|
9322
9539
|
field: {
|
|
9323
9540
|
name: string;
|
|
@@ -9423,6 +9640,7 @@ export default class {
|
|
|
9423
9640
|
timeout?: number | undefined;
|
|
9424
9641
|
oauth?: string | undefined;
|
|
9425
9642
|
pagination?: {
|
|
9643
|
+
subtype?: "page" | "offset" | undefined;
|
|
9426
9644
|
type: "body" | "query";
|
|
9427
9645
|
value: string;
|
|
9428
9646
|
startAt?: number | undefined;
|
|
@@ -9507,13 +9725,13 @@ export default class {
|
|
|
9507
9725
|
params: {
|
|
9508
9726
|
value: string | number;
|
|
9509
9727
|
key: string;
|
|
9510
|
-
operator: "=";
|
|
9728
|
+
operator: "=" | "!=";
|
|
9511
9729
|
};
|
|
9512
9730
|
name: "array_find";
|
|
9513
9731
|
} | {
|
|
9514
9732
|
params: {
|
|
9515
9733
|
key: string;
|
|
9516
|
-
operator: "=";
|
|
9734
|
+
operator: "=" | "!=";
|
|
9517
9735
|
valuePath: string;
|
|
9518
9736
|
};
|
|
9519
9737
|
name: "array_find";
|
|
@@ -9521,7 +9739,7 @@ export default class {
|
|
|
9521
9739
|
params: {
|
|
9522
9740
|
conditions: {
|
|
9523
9741
|
path: string;
|
|
9524
|
-
operator: "=" | "
|
|
9742
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
9525
9743
|
evaluateValue: string;
|
|
9526
9744
|
}[];
|
|
9527
9745
|
};
|
|
@@ -9552,10 +9770,10 @@ export default class {
|
|
|
9552
9770
|
conditions: ({
|
|
9553
9771
|
path: string;
|
|
9554
9772
|
value: string | number | boolean;
|
|
9555
|
-
operator: "=" | "
|
|
9773
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
9556
9774
|
} | {
|
|
9557
9775
|
path: string;
|
|
9558
|
-
operator: "=" | "
|
|
9776
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
9559
9777
|
evaluateValue: string;
|
|
9560
9778
|
})[];
|
|
9561
9779
|
fromFormatted?: true | undefined;
|
|
@@ -9582,8 +9800,14 @@ export default class {
|
|
|
9582
9800
|
value: string;
|
|
9583
9801
|
};
|
|
9584
9802
|
name: "custom";
|
|
9803
|
+
} | {
|
|
9804
|
+
params: {
|
|
9805
|
+
separator: string;
|
|
9806
|
+
};
|
|
9807
|
+
name: "split";
|
|
9585
9808
|
})[];
|
|
9586
9809
|
source?: import("./definitions").FieldSource | undefined;
|
|
9810
|
+
ignoreIfMissing?: boolean | undefined;
|
|
9587
9811
|
}[] | undefined;
|
|
9588
9812
|
} | {
|
|
9589
9813
|
name: "configure_field";
|
|
@@ -9630,13 +9854,13 @@ export default class {
|
|
|
9630
9854
|
params: {
|
|
9631
9855
|
value: string | number;
|
|
9632
9856
|
key: string;
|
|
9633
|
-
operator: "=";
|
|
9857
|
+
operator: "=" | "!=";
|
|
9634
9858
|
};
|
|
9635
9859
|
name: "array_find";
|
|
9636
9860
|
} | {
|
|
9637
9861
|
params: {
|
|
9638
9862
|
key: string;
|
|
9639
|
-
operator: "=";
|
|
9863
|
+
operator: "=" | "!=";
|
|
9640
9864
|
valuePath: string;
|
|
9641
9865
|
};
|
|
9642
9866
|
name: "array_find";
|
|
@@ -9644,7 +9868,7 @@ export default class {
|
|
|
9644
9868
|
params: {
|
|
9645
9869
|
conditions: {
|
|
9646
9870
|
path: string;
|
|
9647
|
-
operator: "=" | "
|
|
9871
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
9648
9872
|
evaluateValue: string;
|
|
9649
9873
|
}[];
|
|
9650
9874
|
};
|
|
@@ -9675,10 +9899,10 @@ export default class {
|
|
|
9675
9899
|
conditions: ({
|
|
9676
9900
|
path: string;
|
|
9677
9901
|
value: string | number | boolean;
|
|
9678
|
-
operator: "=" | "
|
|
9902
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
9679
9903
|
} | {
|
|
9680
9904
|
path: string;
|
|
9681
|
-
operator: "=" | "
|
|
9905
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
9682
9906
|
evaluateValue: string;
|
|
9683
9907
|
})[];
|
|
9684
9908
|
fromFormatted?: true | undefined;
|
|
@@ -9705,8 +9929,14 @@ export default class {
|
|
|
9705
9929
|
value: string;
|
|
9706
9930
|
};
|
|
9707
9931
|
name: "custom";
|
|
9932
|
+
} | {
|
|
9933
|
+
params: {
|
|
9934
|
+
separator: string;
|
|
9935
|
+
};
|
|
9936
|
+
name: "split";
|
|
9708
9937
|
})[];
|
|
9709
9938
|
source?: import("./definitions").FieldSource | undefined;
|
|
9939
|
+
ignoreIfMissing?: boolean | undefined;
|
|
9710
9940
|
} | undefined;
|
|
9711
9941
|
field: {
|
|
9712
9942
|
name: string;
|
|
@@ -9807,6 +10037,7 @@ export default class {
|
|
|
9807
10037
|
};
|
|
9808
10038
|
type: "keep_previous_data";
|
|
9809
10039
|
};
|
|
10040
|
+
sftpPublicKey?: string | undefined;
|
|
9810
10041
|
} | undefined;
|
|
9811
10042
|
} | {
|
|
9812
10043
|
name: "configure_fetcher";
|
|
@@ -10007,13 +10238,13 @@ export default class {
|
|
|
10007
10238
|
params: {
|
|
10008
10239
|
value: string | number;
|
|
10009
10240
|
key: string;
|
|
10010
|
-
operator: "=";
|
|
10241
|
+
operator: "=" | "!=";
|
|
10011
10242
|
};
|
|
10012
10243
|
name: "array_find";
|
|
10013
10244
|
} | {
|
|
10014
10245
|
params: {
|
|
10015
10246
|
key: string;
|
|
10016
|
-
operator: "=";
|
|
10247
|
+
operator: "=" | "!=";
|
|
10017
10248
|
valuePath: string;
|
|
10018
10249
|
};
|
|
10019
10250
|
name: "array_find";
|
|
@@ -10021,7 +10252,7 @@ export default class {
|
|
|
10021
10252
|
params: {
|
|
10022
10253
|
conditions: {
|
|
10023
10254
|
path: string;
|
|
10024
|
-
operator: "=" | "
|
|
10255
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
10025
10256
|
evaluateValue: string;
|
|
10026
10257
|
}[];
|
|
10027
10258
|
};
|
|
@@ -10052,10 +10283,10 @@ export default class {
|
|
|
10052
10283
|
conditions: ({
|
|
10053
10284
|
path: string;
|
|
10054
10285
|
value: string | number | boolean;
|
|
10055
|
-
operator: "=" | "
|
|
10286
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
10056
10287
|
} | {
|
|
10057
10288
|
path: string;
|
|
10058
|
-
operator: "=" | "
|
|
10289
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
10059
10290
|
evaluateValue: string;
|
|
10060
10291
|
})[];
|
|
10061
10292
|
fromFormatted?: true | undefined;
|
|
@@ -10082,8 +10313,14 @@ export default class {
|
|
|
10082
10313
|
value: string;
|
|
10083
10314
|
};
|
|
10084
10315
|
name: "custom";
|
|
10316
|
+
} | {
|
|
10317
|
+
params: {
|
|
10318
|
+
separator: string;
|
|
10319
|
+
};
|
|
10320
|
+
name: "split";
|
|
10085
10321
|
})[];
|
|
10086
10322
|
source?: import("./definitions").FieldSource | undefined;
|
|
10323
|
+
ignoreIfMissing?: boolean | undefined;
|
|
10087
10324
|
}[] | undefined;
|
|
10088
10325
|
} | {
|
|
10089
10326
|
name: "configure_field";
|
|
@@ -10130,13 +10367,13 @@ export default class {
|
|
|
10130
10367
|
params: {
|
|
10131
10368
|
value: string | number;
|
|
10132
10369
|
key: string;
|
|
10133
|
-
operator: "=";
|
|
10370
|
+
operator: "=" | "!=";
|
|
10134
10371
|
};
|
|
10135
10372
|
name: "array_find";
|
|
10136
10373
|
} | {
|
|
10137
10374
|
params: {
|
|
10138
10375
|
key: string;
|
|
10139
|
-
operator: "=";
|
|
10376
|
+
operator: "=" | "!=";
|
|
10140
10377
|
valuePath: string;
|
|
10141
10378
|
};
|
|
10142
10379
|
name: "array_find";
|
|
@@ -10144,7 +10381,7 @@ export default class {
|
|
|
10144
10381
|
params: {
|
|
10145
10382
|
conditions: {
|
|
10146
10383
|
path: string;
|
|
10147
|
-
operator: "=" | "
|
|
10384
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
10148
10385
|
evaluateValue: string;
|
|
10149
10386
|
}[];
|
|
10150
10387
|
};
|
|
@@ -10175,10 +10412,10 @@ export default class {
|
|
|
10175
10412
|
conditions: ({
|
|
10176
10413
|
path: string;
|
|
10177
10414
|
value: string | number | boolean;
|
|
10178
|
-
operator: "=" | "
|
|
10415
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
10179
10416
|
} | {
|
|
10180
10417
|
path: string;
|
|
10181
|
-
operator: "=" | "
|
|
10418
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
10182
10419
|
evaluateValue: string;
|
|
10183
10420
|
})[];
|
|
10184
10421
|
fromFormatted?: true | undefined;
|
|
@@ -10205,8 +10442,14 @@ export default class {
|
|
|
10205
10442
|
value: string;
|
|
10206
10443
|
};
|
|
10207
10444
|
name: "custom";
|
|
10445
|
+
} | {
|
|
10446
|
+
params: {
|
|
10447
|
+
separator: string;
|
|
10448
|
+
};
|
|
10449
|
+
name: "split";
|
|
10208
10450
|
})[];
|
|
10209
10451
|
source?: import("./definitions").FieldSource | undefined;
|
|
10452
|
+
ignoreIfMissing?: boolean | undefined;
|
|
10210
10453
|
} | undefined;
|
|
10211
10454
|
field: {
|
|
10212
10455
|
name: string;
|
|
@@ -10363,13 +10606,13 @@ export default class {
|
|
|
10363
10606
|
params: {
|
|
10364
10607
|
value: string | number;
|
|
10365
10608
|
key: string;
|
|
10366
|
-
operator: "=";
|
|
10609
|
+
operator: "=" | "!=";
|
|
10367
10610
|
};
|
|
10368
10611
|
name: "array_find";
|
|
10369
10612
|
} | {
|
|
10370
10613
|
params: {
|
|
10371
10614
|
key: string;
|
|
10372
|
-
operator: "=";
|
|
10615
|
+
operator: "=" | "!=";
|
|
10373
10616
|
valuePath: string;
|
|
10374
10617
|
};
|
|
10375
10618
|
name: "array_find";
|
|
@@ -10377,7 +10620,7 @@ export default class {
|
|
|
10377
10620
|
params: {
|
|
10378
10621
|
conditions: {
|
|
10379
10622
|
path: string;
|
|
10380
|
-
operator: "=" | "
|
|
10623
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
10381
10624
|
evaluateValue: string;
|
|
10382
10625
|
}[];
|
|
10383
10626
|
};
|
|
@@ -10408,10 +10651,10 @@ export default class {
|
|
|
10408
10651
|
conditions: ({
|
|
10409
10652
|
path: string;
|
|
10410
10653
|
value: string | number | boolean;
|
|
10411
|
-
operator: "=" | "
|
|
10654
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
10412
10655
|
} | {
|
|
10413
10656
|
path: string;
|
|
10414
|
-
operator: "=" | "
|
|
10657
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
10415
10658
|
evaluateValue: string;
|
|
10416
10659
|
})[];
|
|
10417
10660
|
fromFormatted?: true | undefined;
|
|
@@ -10438,8 +10681,14 @@ export default class {
|
|
|
10438
10681
|
value: string;
|
|
10439
10682
|
};
|
|
10440
10683
|
name: "custom";
|
|
10684
|
+
} | {
|
|
10685
|
+
params: {
|
|
10686
|
+
separator: string;
|
|
10687
|
+
};
|
|
10688
|
+
name: "split";
|
|
10441
10689
|
})[];
|
|
10442
10690
|
source?: import("./definitions").FieldSource | undefined;
|
|
10691
|
+
ignoreIfMissing?: boolean | undefined;
|
|
10443
10692
|
}[] | undefined;
|
|
10444
10693
|
} | {
|
|
10445
10694
|
name: "configure_field";
|
|
@@ -10486,13 +10735,13 @@ export default class {
|
|
|
10486
10735
|
params: {
|
|
10487
10736
|
value: string | number;
|
|
10488
10737
|
key: string;
|
|
10489
|
-
operator: "=";
|
|
10738
|
+
operator: "=" | "!=";
|
|
10490
10739
|
};
|
|
10491
10740
|
name: "array_find";
|
|
10492
10741
|
} | {
|
|
10493
10742
|
params: {
|
|
10494
10743
|
key: string;
|
|
10495
|
-
operator: "=";
|
|
10744
|
+
operator: "=" | "!=";
|
|
10496
10745
|
valuePath: string;
|
|
10497
10746
|
};
|
|
10498
10747
|
name: "array_find";
|
|
@@ -10500,7 +10749,7 @@ export default class {
|
|
|
10500
10749
|
params: {
|
|
10501
10750
|
conditions: {
|
|
10502
10751
|
path: string;
|
|
10503
|
-
operator: "=" | "
|
|
10752
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
10504
10753
|
evaluateValue: string;
|
|
10505
10754
|
}[];
|
|
10506
10755
|
};
|
|
@@ -10531,10 +10780,10 @@ export default class {
|
|
|
10531
10780
|
conditions: ({
|
|
10532
10781
|
path: string;
|
|
10533
10782
|
value: string | number | boolean;
|
|
10534
|
-
operator: "=" | "
|
|
10783
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
10535
10784
|
} | {
|
|
10536
10785
|
path: string;
|
|
10537
|
-
operator: "=" | "
|
|
10786
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
10538
10787
|
evaluateValue: string;
|
|
10539
10788
|
})[];
|
|
10540
10789
|
fromFormatted?: true | undefined;
|
|
@@ -10561,8 +10810,14 @@ export default class {
|
|
|
10561
10810
|
value: string;
|
|
10562
10811
|
};
|
|
10563
10812
|
name: "custom";
|
|
10813
|
+
} | {
|
|
10814
|
+
params: {
|
|
10815
|
+
separator: string;
|
|
10816
|
+
};
|
|
10817
|
+
name: "split";
|
|
10564
10818
|
})[];
|
|
10565
10819
|
source?: import("./definitions").FieldSource | undefined;
|
|
10820
|
+
ignoreIfMissing?: boolean | undefined;
|
|
10566
10821
|
} | undefined;
|
|
10567
10822
|
field: {
|
|
10568
10823
|
name: string;
|
|
@@ -10674,6 +10929,7 @@ export default class {
|
|
|
10674
10929
|
timeout?: number | undefined;
|
|
10675
10930
|
oauth?: string | undefined;
|
|
10676
10931
|
pagination?: {
|
|
10932
|
+
subtype?: "page" | "offset" | undefined;
|
|
10677
10933
|
type: "body" | "query";
|
|
10678
10934
|
value: string;
|
|
10679
10935
|
startAt?: number | undefined;
|
|
@@ -10754,13 +11010,13 @@ export default class {
|
|
|
10754
11010
|
params: {
|
|
10755
11011
|
value: string | number;
|
|
10756
11012
|
key: string;
|
|
10757
|
-
operator: "=";
|
|
11013
|
+
operator: "=" | "!=";
|
|
10758
11014
|
};
|
|
10759
11015
|
name: "array_find";
|
|
10760
11016
|
} | {
|
|
10761
11017
|
params: {
|
|
10762
11018
|
key: string;
|
|
10763
|
-
operator: "=";
|
|
11019
|
+
operator: "=" | "!=";
|
|
10764
11020
|
valuePath: string;
|
|
10765
11021
|
};
|
|
10766
11022
|
name: "array_find";
|
|
@@ -10768,7 +11024,7 @@ export default class {
|
|
|
10768
11024
|
params: {
|
|
10769
11025
|
conditions: {
|
|
10770
11026
|
path: string;
|
|
10771
|
-
operator: "=" | "
|
|
11027
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
10772
11028
|
evaluateValue: string;
|
|
10773
11029
|
}[];
|
|
10774
11030
|
};
|
|
@@ -10799,10 +11055,10 @@ export default class {
|
|
|
10799
11055
|
conditions: ({
|
|
10800
11056
|
path: string;
|
|
10801
11057
|
value: string | number | boolean;
|
|
10802
|
-
operator: "=" | "
|
|
11058
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
10803
11059
|
} | {
|
|
10804
11060
|
path: string;
|
|
10805
|
-
operator: "=" | "
|
|
11061
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
10806
11062
|
evaluateValue: string;
|
|
10807
11063
|
})[];
|
|
10808
11064
|
fromFormatted?: true | undefined;
|
|
@@ -10829,8 +11085,14 @@ export default class {
|
|
|
10829
11085
|
value: string;
|
|
10830
11086
|
};
|
|
10831
11087
|
name: "custom";
|
|
11088
|
+
} | {
|
|
11089
|
+
params: {
|
|
11090
|
+
separator: string;
|
|
11091
|
+
};
|
|
11092
|
+
name: "split";
|
|
10832
11093
|
})[];
|
|
10833
11094
|
source?: import("./definitions").FieldSource | undefined;
|
|
11095
|
+
ignoreIfMissing?: boolean | undefined;
|
|
10834
11096
|
}[];
|
|
10835
11097
|
} | {
|
|
10836
11098
|
name: "configure_field";
|
|
@@ -10874,13 +11136,13 @@ export default class {
|
|
|
10874
11136
|
params: {
|
|
10875
11137
|
value: string | number;
|
|
10876
11138
|
key: string;
|
|
10877
|
-
operator: "=";
|
|
11139
|
+
operator: "=" | "!=";
|
|
10878
11140
|
};
|
|
10879
11141
|
name: "array_find";
|
|
10880
11142
|
} | {
|
|
10881
11143
|
params: {
|
|
10882
11144
|
key: string;
|
|
10883
|
-
operator: "=";
|
|
11145
|
+
operator: "=" | "!=";
|
|
10884
11146
|
valuePath: string;
|
|
10885
11147
|
};
|
|
10886
11148
|
name: "array_find";
|
|
@@ -10888,7 +11150,7 @@ export default class {
|
|
|
10888
11150
|
params: {
|
|
10889
11151
|
conditions: {
|
|
10890
11152
|
path: string;
|
|
10891
|
-
operator: "=" | "
|
|
11153
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
10892
11154
|
evaluateValue: string;
|
|
10893
11155
|
}[];
|
|
10894
11156
|
};
|
|
@@ -10919,10 +11181,10 @@ export default class {
|
|
|
10919
11181
|
conditions: ({
|
|
10920
11182
|
path: string;
|
|
10921
11183
|
value: string | number | boolean;
|
|
10922
|
-
operator: "=" | "
|
|
11184
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
10923
11185
|
} | {
|
|
10924
11186
|
path: string;
|
|
10925
|
-
operator: "=" | "
|
|
11187
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
10926
11188
|
evaluateValue: string;
|
|
10927
11189
|
})[];
|
|
10928
11190
|
fromFormatted?: true | undefined;
|
|
@@ -10949,8 +11211,14 @@ export default class {
|
|
|
10949
11211
|
value: string;
|
|
10950
11212
|
};
|
|
10951
11213
|
name: "custom";
|
|
11214
|
+
} | {
|
|
11215
|
+
params: {
|
|
11216
|
+
separator: string;
|
|
11217
|
+
};
|
|
11218
|
+
name: "split";
|
|
10952
11219
|
})[];
|
|
10953
11220
|
source?: import("./definitions").FieldSource | undefined;
|
|
11221
|
+
ignoreIfMissing?: boolean | undefined;
|
|
10954
11222
|
};
|
|
10955
11223
|
} | {
|
|
10956
11224
|
name: "create_oauth_client";
|
|
@@ -11044,6 +11312,7 @@ export default class {
|
|
|
11044
11312
|
};
|
|
11045
11313
|
type: "keep_previous_data";
|
|
11046
11314
|
} | undefined;
|
|
11315
|
+
sftpPublicKey?: string | undefined;
|
|
11047
11316
|
};
|
|
11048
11317
|
} | {
|
|
11049
11318
|
name: "configure_fetcher";
|
|
@@ -11240,13 +11509,13 @@ export default class {
|
|
|
11240
11509
|
params: {
|
|
11241
11510
|
value: string | number;
|
|
11242
11511
|
key: string;
|
|
11243
|
-
operator: "=";
|
|
11512
|
+
operator: "=" | "!=";
|
|
11244
11513
|
};
|
|
11245
11514
|
name: "array_find";
|
|
11246
11515
|
} | {
|
|
11247
11516
|
params: {
|
|
11248
11517
|
key: string;
|
|
11249
|
-
operator: "=";
|
|
11518
|
+
operator: "=" | "!=";
|
|
11250
11519
|
valuePath: string;
|
|
11251
11520
|
};
|
|
11252
11521
|
name: "array_find";
|
|
@@ -11254,7 +11523,7 @@ export default class {
|
|
|
11254
11523
|
params: {
|
|
11255
11524
|
conditions: {
|
|
11256
11525
|
path: string;
|
|
11257
|
-
operator: "=" | "
|
|
11526
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
11258
11527
|
evaluateValue: string;
|
|
11259
11528
|
}[];
|
|
11260
11529
|
};
|
|
@@ -11285,10 +11554,10 @@ export default class {
|
|
|
11285
11554
|
conditions: ({
|
|
11286
11555
|
path: string;
|
|
11287
11556
|
value: string | number | boolean;
|
|
11288
|
-
operator: "=" | "
|
|
11557
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
11289
11558
|
} | {
|
|
11290
11559
|
path: string;
|
|
11291
|
-
operator: "=" | "
|
|
11560
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
11292
11561
|
evaluateValue: string;
|
|
11293
11562
|
})[];
|
|
11294
11563
|
fromFormatted?: true | undefined;
|
|
@@ -11315,8 +11584,14 @@ export default class {
|
|
|
11315
11584
|
value: string;
|
|
11316
11585
|
};
|
|
11317
11586
|
name: "custom";
|
|
11587
|
+
} | {
|
|
11588
|
+
params: {
|
|
11589
|
+
separator: string;
|
|
11590
|
+
};
|
|
11591
|
+
name: "split";
|
|
11318
11592
|
})[];
|
|
11319
11593
|
source?: import("./definitions").FieldSource | undefined;
|
|
11594
|
+
ignoreIfMissing?: boolean | undefined;
|
|
11320
11595
|
}[];
|
|
11321
11596
|
} | {
|
|
11322
11597
|
name: "configure_field";
|
|
@@ -11360,13 +11635,13 @@ export default class {
|
|
|
11360
11635
|
params: {
|
|
11361
11636
|
value: string | number;
|
|
11362
11637
|
key: string;
|
|
11363
|
-
operator: "=";
|
|
11638
|
+
operator: "=" | "!=";
|
|
11364
11639
|
};
|
|
11365
11640
|
name: "array_find";
|
|
11366
11641
|
} | {
|
|
11367
11642
|
params: {
|
|
11368
11643
|
key: string;
|
|
11369
|
-
operator: "=";
|
|
11644
|
+
operator: "=" | "!=";
|
|
11370
11645
|
valuePath: string;
|
|
11371
11646
|
};
|
|
11372
11647
|
name: "array_find";
|
|
@@ -11374,7 +11649,7 @@ export default class {
|
|
|
11374
11649
|
params: {
|
|
11375
11650
|
conditions: {
|
|
11376
11651
|
path: string;
|
|
11377
|
-
operator: "=" | "
|
|
11652
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
11378
11653
|
evaluateValue: string;
|
|
11379
11654
|
}[];
|
|
11380
11655
|
};
|
|
@@ -11405,10 +11680,10 @@ export default class {
|
|
|
11405
11680
|
conditions: ({
|
|
11406
11681
|
path: string;
|
|
11407
11682
|
value: string | number | boolean;
|
|
11408
|
-
operator: "=" | "
|
|
11683
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
11409
11684
|
} | {
|
|
11410
11685
|
path: string;
|
|
11411
|
-
operator: "=" | "
|
|
11686
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
11412
11687
|
evaluateValue: string;
|
|
11413
11688
|
})[];
|
|
11414
11689
|
fromFormatted?: true | undefined;
|
|
@@ -11435,8 +11710,14 @@ export default class {
|
|
|
11435
11710
|
value: string;
|
|
11436
11711
|
};
|
|
11437
11712
|
name: "custom";
|
|
11713
|
+
} | {
|
|
11714
|
+
params: {
|
|
11715
|
+
separator: string;
|
|
11716
|
+
};
|
|
11717
|
+
name: "split";
|
|
11438
11718
|
})[];
|
|
11439
11719
|
source?: import("./definitions").FieldSource | undefined;
|
|
11720
|
+
ignoreIfMissing?: boolean | undefined;
|
|
11440
11721
|
};
|
|
11441
11722
|
} | {
|
|
11442
11723
|
name: "create_oauth_client";
|
|
@@ -11583,13 +11864,13 @@ export default class {
|
|
|
11583
11864
|
params: {
|
|
11584
11865
|
value: string | number;
|
|
11585
11866
|
key: string;
|
|
11586
|
-
operator: "=";
|
|
11867
|
+
operator: "=" | "!=";
|
|
11587
11868
|
};
|
|
11588
11869
|
name: "array_find";
|
|
11589
11870
|
} | {
|
|
11590
11871
|
params: {
|
|
11591
11872
|
key: string;
|
|
11592
|
-
operator: "=";
|
|
11873
|
+
operator: "=" | "!=";
|
|
11593
11874
|
valuePath: string;
|
|
11594
11875
|
};
|
|
11595
11876
|
name: "array_find";
|
|
@@ -11597,7 +11878,7 @@ export default class {
|
|
|
11597
11878
|
params: {
|
|
11598
11879
|
conditions: {
|
|
11599
11880
|
path: string;
|
|
11600
|
-
operator: "=" | "
|
|
11881
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
11601
11882
|
evaluateValue: string;
|
|
11602
11883
|
}[];
|
|
11603
11884
|
};
|
|
@@ -11628,10 +11909,10 @@ export default class {
|
|
|
11628
11909
|
conditions: ({
|
|
11629
11910
|
path: string;
|
|
11630
11911
|
value: string | number | boolean;
|
|
11631
|
-
operator: "=" | "
|
|
11912
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
11632
11913
|
} | {
|
|
11633
11914
|
path: string;
|
|
11634
|
-
operator: "=" | "
|
|
11915
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
11635
11916
|
evaluateValue: string;
|
|
11636
11917
|
})[];
|
|
11637
11918
|
fromFormatted?: true | undefined;
|
|
@@ -11658,8 +11939,14 @@ export default class {
|
|
|
11658
11939
|
value: string;
|
|
11659
11940
|
};
|
|
11660
11941
|
name: "custom";
|
|
11942
|
+
} | {
|
|
11943
|
+
params: {
|
|
11944
|
+
separator: string;
|
|
11945
|
+
};
|
|
11946
|
+
name: "split";
|
|
11661
11947
|
})[];
|
|
11662
11948
|
source?: import("./definitions").FieldSource | undefined;
|
|
11949
|
+
ignoreIfMissing?: boolean | undefined;
|
|
11663
11950
|
}[];
|
|
11664
11951
|
} | {
|
|
11665
11952
|
name: "configure_field";
|
|
@@ -11703,13 +11990,13 @@ export default class {
|
|
|
11703
11990
|
params: {
|
|
11704
11991
|
value: string | number;
|
|
11705
11992
|
key: string;
|
|
11706
|
-
operator: "=";
|
|
11993
|
+
operator: "=" | "!=";
|
|
11707
11994
|
};
|
|
11708
11995
|
name: "array_find";
|
|
11709
11996
|
} | {
|
|
11710
11997
|
params: {
|
|
11711
11998
|
key: string;
|
|
11712
|
-
operator: "=";
|
|
11999
|
+
operator: "=" | "!=";
|
|
11713
12000
|
valuePath: string;
|
|
11714
12001
|
};
|
|
11715
12002
|
name: "array_find";
|
|
@@ -11717,7 +12004,7 @@ export default class {
|
|
|
11717
12004
|
params: {
|
|
11718
12005
|
conditions: {
|
|
11719
12006
|
path: string;
|
|
11720
|
-
operator: "=" | "
|
|
12007
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
11721
12008
|
evaluateValue: string;
|
|
11722
12009
|
}[];
|
|
11723
12010
|
};
|
|
@@ -11748,10 +12035,10 @@ export default class {
|
|
|
11748
12035
|
conditions: ({
|
|
11749
12036
|
path: string;
|
|
11750
12037
|
value: string | number | boolean;
|
|
11751
|
-
operator: "=" | "
|
|
12038
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
11752
12039
|
} | {
|
|
11753
12040
|
path: string;
|
|
11754
|
-
operator: "=" | "
|
|
12041
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
11755
12042
|
evaluateValue: string;
|
|
11756
12043
|
})[];
|
|
11757
12044
|
fromFormatted?: true | undefined;
|
|
@@ -11778,8 +12065,14 @@ export default class {
|
|
|
11778
12065
|
value: string;
|
|
11779
12066
|
};
|
|
11780
12067
|
name: "custom";
|
|
12068
|
+
} | {
|
|
12069
|
+
params: {
|
|
12070
|
+
separator: string;
|
|
12071
|
+
};
|
|
12072
|
+
name: "split";
|
|
11781
12073
|
})[];
|
|
11782
12074
|
source?: import("./definitions").FieldSource | undefined;
|
|
12075
|
+
ignoreIfMissing?: boolean | undefined;
|
|
11783
12076
|
};
|
|
11784
12077
|
} | {
|
|
11785
12078
|
name: "configure_fetcher";
|
|
@@ -12005,8 +12298,8 @@ export default class {
|
|
|
12005
12298
|
level?: string | undefined;
|
|
12006
12299
|
page?: number | undefined;
|
|
12007
12300
|
perPage?: number | undefined;
|
|
12008
|
-
startDate?:
|
|
12009
|
-
endDate?:
|
|
12301
|
+
startDate?: string | undefined;
|
|
12302
|
+
endDate?: string | undefined;
|
|
12010
12303
|
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
12011
12304
|
paginationCount: number;
|
|
12012
12305
|
paginationPage: number;
|
|
@@ -12084,13 +12377,13 @@ export default class {
|
|
|
12084
12377
|
params: {
|
|
12085
12378
|
value: string | number;
|
|
12086
12379
|
key: string;
|
|
12087
|
-
operator: "=";
|
|
12380
|
+
operator: "=" | "!=";
|
|
12088
12381
|
};
|
|
12089
12382
|
name: "array_find";
|
|
12090
12383
|
} | {
|
|
12091
12384
|
params: {
|
|
12092
12385
|
key: string;
|
|
12093
|
-
operator: "=";
|
|
12386
|
+
operator: "=" | "!=";
|
|
12094
12387
|
valuePath: string;
|
|
12095
12388
|
};
|
|
12096
12389
|
name: "array_find";
|
|
@@ -12098,7 +12391,7 @@ export default class {
|
|
|
12098
12391
|
params: {
|
|
12099
12392
|
conditions: {
|
|
12100
12393
|
path: string;
|
|
12101
|
-
operator: "=" | "
|
|
12394
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
12102
12395
|
evaluateValue: string;
|
|
12103
12396
|
}[];
|
|
12104
12397
|
};
|
|
@@ -12129,10 +12422,10 @@ export default class {
|
|
|
12129
12422
|
conditions: ({
|
|
12130
12423
|
path: string;
|
|
12131
12424
|
value: string | number | boolean;
|
|
12132
|
-
operator: "=" | "
|
|
12425
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
12133
12426
|
} | {
|
|
12134
12427
|
path: string;
|
|
12135
|
-
operator: "=" | "
|
|
12428
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
12136
12429
|
evaluateValue: string;
|
|
12137
12430
|
})[];
|
|
12138
12431
|
fromFormatted?: true | undefined;
|
|
@@ -12159,8 +12452,14 @@ export default class {
|
|
|
12159
12452
|
value: string;
|
|
12160
12453
|
};
|
|
12161
12454
|
name: "custom";
|
|
12455
|
+
} | {
|
|
12456
|
+
params: {
|
|
12457
|
+
separator: string;
|
|
12458
|
+
};
|
|
12459
|
+
name: "split";
|
|
12162
12460
|
})[];
|
|
12163
12461
|
source?: import("./definitions").FieldSource | undefined;
|
|
12462
|
+
ignoreIfMissing?: boolean | undefined;
|
|
12164
12463
|
}[];
|
|
12165
12464
|
sample: {
|
|
12166
12465
|
[key: string]: unknown;
|
|
@@ -12239,13 +12538,13 @@ export default class {
|
|
|
12239
12538
|
params: {
|
|
12240
12539
|
value: string | number;
|
|
12241
12540
|
key: string;
|
|
12242
|
-
operator: "=";
|
|
12541
|
+
operator: "=" | "!=";
|
|
12243
12542
|
};
|
|
12244
12543
|
name: "array_find";
|
|
12245
12544
|
} | {
|
|
12246
12545
|
params: {
|
|
12247
12546
|
key: string;
|
|
12248
|
-
operator: "=";
|
|
12547
|
+
operator: "=" | "!=";
|
|
12249
12548
|
valuePath: string;
|
|
12250
12549
|
};
|
|
12251
12550
|
name: "array_find";
|
|
@@ -12253,7 +12552,7 @@ export default class {
|
|
|
12253
12552
|
params: {
|
|
12254
12553
|
conditions: {
|
|
12255
12554
|
path: string;
|
|
12256
|
-
operator: "=" | "
|
|
12555
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
12257
12556
|
evaluateValue: string;
|
|
12258
12557
|
}[];
|
|
12259
12558
|
};
|
|
@@ -12284,10 +12583,10 @@ export default class {
|
|
|
12284
12583
|
conditions: ({
|
|
12285
12584
|
path: string;
|
|
12286
12585
|
value: string | number | boolean;
|
|
12287
|
-
operator: "=" | "
|
|
12586
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
12288
12587
|
} | {
|
|
12289
12588
|
path: string;
|
|
12290
|
-
operator: "=" | "
|
|
12589
|
+
operator: "=" | "!=" | ">=" | "<=";
|
|
12291
12590
|
evaluateValue: string;
|
|
12292
12591
|
})[];
|
|
12293
12592
|
fromFormatted?: true | undefined;
|
|
@@ -12314,8 +12613,14 @@ export default class {
|
|
|
12314
12613
|
value: string;
|
|
12315
12614
|
};
|
|
12316
12615
|
name: "custom";
|
|
12616
|
+
} | {
|
|
12617
|
+
params: {
|
|
12618
|
+
separator: string;
|
|
12619
|
+
};
|
|
12620
|
+
name: "split";
|
|
12317
12621
|
})[];
|
|
12318
12622
|
source?: import("./definitions").FieldSource | undefined;
|
|
12623
|
+
ignoreIfMissing?: boolean | undefined;
|
|
12319
12624
|
}[];
|
|
12320
12625
|
sample: {
|
|
12321
12626
|
[key: string]: unknown;
|