@rlvt/datasources-openapi-client 1.0.242 → 1.0.243

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.
@@ -148,7 +148,7 @@ export declare enum FieldMapType {
148
148
  }
149
149
  export declare type Condition_Without_Path_Operator = {
150
150
  path: string;
151
- operator: "=" | ">=" | "<=" | "!=";
151
+ operator: "=" | "!=" | ">=" | "<=";
152
152
  };
153
153
  export declare type FieldMapFallbackRulePayload = {
154
154
  fromFormatted?: true;
@@ -162,7 +162,7 @@ export declare type FieldMapFallbackRulePayload_Without_ValuePath_Exit = {
162
162
  };
163
163
  export declare type Condition = {
164
164
  path: string;
165
- operator: "=" | ">=" | "<=" | "!=";
165
+ operator: "=" | "!=" | ">=" | "<=";
166
166
  value: string | number | (false) | (true);
167
167
  };
168
168
  export declare enum FieldSource {
@@ -212,14 +212,14 @@ export declare type PinotFieldMap = {
212
212
  name: "array_find";
213
213
  params: {
214
214
  key: string;
215
- operator: "=";
215
+ operator: "=" | "!=";
216
216
  value: string | number;
217
217
  };
218
218
  } | {
219
219
  name: "array_find";
220
220
  params: {
221
221
  key: string;
222
- operator: "=";
222
+ operator: "=" | "!=";
223
223
  valuePath: string;
224
224
  };
225
225
  } | {
@@ -268,15 +268,22 @@ export declare type PinotFieldMap = {
268
268
  params: {
269
269
  value: string;
270
270
  };
271
+ } | {
272
+ name: "split";
273
+ params: {
274
+ separator: string;
275
+ };
271
276
  }))[];
272
277
  source?: FieldSource;
278
+ ignoreIfMissing?: boolean;
273
279
  readonly primitive: ("string" | "number" | "datetime" | "string[]" | "number[]" | "string{}" | "number{}") & readonlyP;
274
280
  };
275
281
  export declare type DatasourceHealth = 0 | 1 | 2;
276
- export declare type _oauth_string_or_undefined_pagination__type_body_or_query_value_string_startAt_number_or_undefined___or__type_hypermediaAttribute_value_string___or__type_pageToken_value_string_param_string___or__type_linkHeader___or_undefined_method_GET_or_PATCH_or_POST_or_PUT_or_undefined_body_string_or_undefined_headers___x_string__string___or_undefined_query___x_string__string___or_undefined_timeout_number_or_undefined___Without_ = {
282
+ export declare type _oauth_string_or_undefined_pagination__type_body_or_query_subtype_page_or_offset_or_undefined_value_string_startAt_number_or_undefined___or__type_hypermediaAttribute_value_string___or__type_pageToken_value_string_param_string___or__type_linkHeader___or_undefined_method_GET_or_PATCH_or_POST_or_PUT_or_undefined_body_string_or_undefined_headers___x_string__string___or_undefined_query___x_string__string___or_undefined_timeout_number_or_undefined___Without_ = {
277
283
  oauth?: string;
278
284
  pagination?: {
279
285
  type: "body" | "query";
286
+ subtype?: "page" | "offset";
280
287
  value: string;
281
288
  startAt?: number;
282
289
  } | {
@@ -347,14 +354,14 @@ export declare type FieldMap = {
347
354
  name: "array_find";
348
355
  params: {
349
356
  key: string;
350
- operator: "=";
357
+ operator: "=" | "!=";
351
358
  value: string | number;
352
359
  };
353
360
  } | {
354
361
  name: "array_find";
355
362
  params: {
356
363
  key: string;
357
- operator: "=";
364
+ operator: "=" | "!=";
358
365
  valuePath: string;
359
366
  };
360
367
  } | {
@@ -403,8 +410,14 @@ export declare type FieldMap = {
403
410
  params: {
404
411
  value: string;
405
412
  };
413
+ } | {
414
+ name: "split";
415
+ params: {
416
+ separator: string;
417
+ };
406
418
  }))[];
407
419
  source?: FieldSource;
420
+ ignoreIfMissing?: boolean;
408
421
  readonly primitive: ("string" | "number" | "datetime" | "string[]" | "number[]" | "string{}" | "number{}") & readonlyP;
409
422
  };
410
423
  export declare type QueriableField_Without_Name_Enum_Required_Unique = {
@@ -433,7 +446,8 @@ export declare enum DatasourceAnalyticsSubType {
433
446
  REELEVANT = "reelevant",
434
447
  GOOGLE_TAG_MANAGER = "google_tag_manager",
435
448
  SHOPIFY = "shopify",
436
- WORKFLOW_EVENTS = "workflow_events"
449
+ WORKFLOW_EVENTS = "workflow_events",
450
+ USER = "user"
437
451
  }
438
452
  export declare enum StepName {
439
453
  CONFIGURE_NAME = "configure_name",
@@ -546,7 +560,7 @@ export declare type _Without_ = {
546
560
  };
547
561
  fieldsMap?: PinotFieldMap[];
548
562
  readonly health?: (DatasourceHealth) & readonlyP;
549
- apiOptions?: _oauth_string_or_undefined_pagination__type_body_or_query_value_string_startAt_number_or_undefined___or__type_hypermediaAttribute_value_string___or__type_pageToken_value_string_param_string___or__type_linkHeader___or_undefined_method_GET_or_PATCH_or_POST_or_PUT_or_undefined_body_string_or_undefined_headers___x_string__string___or_undefined_query___x_string__string___or_undefined_timeout_number_or_undefined___Without_;
563
+ apiOptions?: _oauth_string_or_undefined_pagination__type_body_or_query_subtype_page_or_offset_or_undefined_value_string_startAt_number_or_undefined___or__type_hypermediaAttribute_value_string___or__type_pageToken_value_string_param_string___or__type_linkHeader___or_undefined_method_GET_or_PATCH_or_POST_or_PUT_or_undefined_body_string_or_undefined_headers___x_string__string___or_undefined_query___x_string__string___or_undefined_timeout_number_or_undefined___Without_;
550
564
  sample?: {
551
565
  [key: string]: AnyValue;
552
566
  };
@@ -881,8 +895,8 @@ export declare type _Without_ = {
881
895
  export declare type DatasourceTemplate = _Without_ & {
882
896
  readonly id: (string) & readonlyP;
883
897
  } & {
884
- readonly createdAt: (Date) & readonlyP;
885
- readonly updatedAt: (Date) & readonlyP;
898
+ readonly createdAt: (string) & readonlyP;
899
+ readonly updatedAt: (string) & readonlyP;
886
900
  };
887
901
  export declare type IngesterDatasourceVersion__Without_Id_Mode_State_Type_FieldsMap_Refresh_PendingSteps_AvailableFieldsTypes_RequiredFieldsTypes_UniqueFieldsTypes_ImportantFieldsTypes_ = {
888
902
  readonly id: (string) & readonlyP;
@@ -1071,15 +1085,15 @@ export declare type __id_string_companyId_string_or_null_resourceGroupIds_string
1071
1085
  readonly health: ("OK" | "WARNING" | "ERROR") & readonlyP;
1072
1086
  })[];
1073
1087
  readonly configurationUpdatedAt: (string) & readonlyP;
1074
- readonly archivedAt: (Date | null) & readonlyP;
1088
+ readonly archivedAt: (string | null) & readonlyP;
1075
1089
  status: DatasourceStatus;
1076
1090
  readonly hasWarnings: (boolean) & readonlyP;
1077
1091
  };
1078
1092
  export declare type IngesterDatasource = __id_string_companyId_string_or_null_resourceGroupIds_string_Array_or_null_mode_DatasourceStatus_readonlyhasWarnings_boolean___Without_CompanyId_ResourceGroupIds_Mode_Name_Template_Fetcher_StorageOptions_Versions_ConfigurationUpdatedAt_ArchivedAt_Status_HasWarnings_ & {
1079
1093
  readonly id: (string) & readonlyP;
1080
1094
  } & {
1081
- readonly createdAt: (Date) & readonlyP;
1082
- readonly updatedAt: (Date) & readonlyP;
1095
+ readonly createdAt: (string) & readonlyP;
1096
+ readonly updatedAt: (string) & readonlyP;
1083
1097
  };
1084
1098
  export declare enum DatasourceVersionState {
1085
1099
  LIVE = "LIVE",
@@ -1087,7 +1101,7 @@ export declare enum DatasourceVersionState {
1087
1101
  SCHEDULED = "SCHEDULED",
1088
1102
  INACTIVE = "INACTIVE"
1089
1103
  }
1090
- export declare type WorkerDatasourceVersion__Without_Id_Mode_State_Type_FieldsMap_Health_ApiOptions_Sample_TextEncoding_Format_AggregationPipeline_Refresh_DetectMissingFields_MaximumEntries_PendingSteps_AvailableFieldsTypes_RequiredFieldsTypes_UniqueFieldsTypes_ImportantFieldsTypes_BatchSize_RowBlacklist_PullOptions_SourceFetchStates_ = {
1104
+ export declare type WorkerDatasourceVersion__Without_Id_Mode_State_Type_FieldsMap_Health_ApiOptions_Sample_TextEncoding_Format_AggregationPipeline_Refresh_DetectMissingFields_MaximumEntries_PendingSteps_AvailableFieldsTypes_RequiredFieldsTypes_UniqueFieldsTypes_ImportantFieldsTypes_BatchSize_RowBlacklist_PullOptions_SourceFetchStates_SftpPublicKey_ = {
1091
1105
  readonly id: (string) & readonlyP;
1092
1106
  mode: "worker";
1093
1107
  readonly state: (DatasourceVersionState) & readonlyP;
@@ -1103,7 +1117,7 @@ export declare type WorkerDatasourceVersion__Without_Id_Mode_State_Type_FieldsMa
1103
1117
  };
1104
1118
  fieldsMap: PinotFieldMap[];
1105
1119
  readonly health: ("OK" | "WARNING" | "ERROR") & readonlyP;
1106
- apiOptions?: _oauth_string_or_undefined_pagination__type_body_or_query_value_string_startAt_number_or_undefined___or__type_hypermediaAttribute_value_string___or__type_pageToken_value_string_param_string___or__type_linkHeader___or_undefined_method_GET_or_PATCH_or_POST_or_PUT_or_undefined_body_string_or_undefined_headers___x_string__string___or_undefined_query___x_string__string___or_undefined_timeout_number_or_undefined___Without_;
1120
+ apiOptions?: _oauth_string_or_undefined_pagination__type_body_or_query_subtype_page_or_offset_or_undefined_value_string_startAt_number_or_undefined___or__type_hypermediaAttribute_value_string___or__type_pageToken_value_string_param_string___or__type_linkHeader___or_undefined_method_GET_or_PATCH_or_POST_or_PUT_or_undefined_body_string_or_undefined_headers___x_string__string___or_undefined_query___x_string__string___or_undefined_timeout_number_or_undefined___Without_;
1107
1121
  sample?: {
1108
1122
  [key: string]: AnyValue;
1109
1123
  };
@@ -1244,6 +1258,7 @@ export declare type WorkerDatasourceVersion__Without_Id_Mode_State_Type_FieldsMa
1244
1258
  [key: string]: AnyValue;
1245
1259
  };
1246
1260
  };
1261
+ sftpPublicKey?: string;
1247
1262
  };
1248
1263
  export declare type __id_string_companyId_string_or_null_resourceGroupIds_string_Array_or_null_mode_Threshold_Array_lastRunAt_Date_or_null_currentLiveVersion_string_or_null_pausedAt_Date_or_null_readonlyisPaused_boolean___Without_CompanyId_ResourceGroupIds_Mode_Name_Template_Fetcher_Versions_ConfigurationUpdatedAt_ArchivedAt_Status_HasWarnings_ContentVersion_Thresholds_LastRunAt_CurrentLiveVersion_PausedAt_IsPaused_ = {
1249
1264
  companyId: string | null;
@@ -1310,16 +1325,16 @@ export declare type __id_string_companyId_string_or_null_resourceGroupIds_string
1310
1325
  purchaseClientField: string;
1311
1326
  };
1312
1327
  }) & readonlyP;
1313
- versions: ((WorkerDatasourceVersion__Without_Id_Mode_State_Type_FieldsMap_Health_ApiOptions_Sample_TextEncoding_Format_AggregationPipeline_Refresh_DetectMissingFields_MaximumEntries_PendingSteps_AvailableFieldsTypes_RequiredFieldsTypes_UniqueFieldsTypes_ImportantFieldsTypes_BatchSize_RowBlacklist_PullOptions_SourceFetchStates_ & {
1328
+ versions: ((WorkerDatasourceVersion__Without_Id_Mode_State_Type_FieldsMap_Health_ApiOptions_Sample_TextEncoding_Format_AggregationPipeline_Refresh_DetectMissingFields_MaximumEntries_PendingSteps_AvailableFieldsTypes_RequiredFieldsTypes_UniqueFieldsTypes_ImportantFieldsTypes_BatchSize_RowBlacklist_PullOptions_SourceFetchStates_SftpPublicKey_ & {
1314
1329
  fileName: string;
1315
1330
  isAPI: false;
1316
- }) | (WorkerDatasourceVersion__Without_Id_Mode_State_Type_FieldsMap_Health_ApiOptions_Sample_TextEncoding_Format_AggregationPipeline_Refresh_DetectMissingFields_MaximumEntries_PendingSteps_AvailableFieldsTypes_RequiredFieldsTypes_UniqueFieldsTypes_ImportantFieldsTypes_BatchSize_RowBlacklist_PullOptions_SourceFetchStates_ & {
1331
+ }) | (WorkerDatasourceVersion__Without_Id_Mode_State_Type_FieldsMap_Health_ApiOptions_Sample_TextEncoding_Format_AggregationPipeline_Refresh_DetectMissingFields_MaximumEntries_PendingSteps_AvailableFieldsTypes_RequiredFieldsTypes_UniqueFieldsTypes_ImportantFieldsTypes_BatchSize_RowBlacklist_PullOptions_SourceFetchStates_SftpPublicKey_ & {
1317
1332
  url: string;
1318
1333
  urls: string[];
1319
1334
  isAPI: true;
1320
1335
  }))[];
1321
1336
  readonly configurationUpdatedAt: (string) & readonlyP;
1322
- readonly archivedAt: (Date | null) & readonlyP;
1337
+ readonly archivedAt: (string | null) & readonlyP;
1323
1338
  status: DatasourceStatus;
1324
1339
  readonly hasWarnings: (boolean) & readonlyP;
1325
1340
  readonly contentVersion: (number) & readonlyP;
@@ -1341,16 +1356,16 @@ export declare type __id_string_companyId_string_or_null_resourceGroupIds_string
1341
1356
  value: "entries_drop_rate_too_high";
1342
1357
  };
1343
1358
  })[];
1344
- readonly lastRunAt: (Date | null) & readonlyP;
1359
+ readonly lastRunAt: (string | null) & readonlyP;
1345
1360
  readonly currentLiveVersion: (string | null) & readonlyP;
1346
- readonly pausedAt: (Date | null) & readonlyP;
1361
+ readonly pausedAt: (string | null) & readonlyP;
1347
1362
  readonly isPaused: (boolean) & readonlyP;
1348
1363
  };
1349
1364
  export declare type WorkerDatasource = __id_string_companyId_string_or_null_resourceGroupIds_string_Array_or_null_mode_Threshold_Array_lastRunAt_Date_or_null_currentLiveVersion_string_or_null_pausedAt_Date_or_null_readonlyisPaused_boolean___Without_CompanyId_ResourceGroupIds_Mode_Name_Template_Fetcher_Versions_ConfigurationUpdatedAt_ArchivedAt_Status_HasWarnings_ContentVersion_Thresholds_LastRunAt_CurrentLiveVersion_PausedAt_IsPaused_ & {
1350
1365
  readonly id: (string) & readonlyP;
1351
1366
  } & {
1352
- readonly createdAt: (Date) & readonlyP;
1353
- readonly updatedAt: (Date) & readonlyP;
1367
+ readonly createdAt: (string) & readonlyP;
1368
+ readonly updatedAt: (string) & readonlyP;
1354
1369
  };
1355
1370
  export declare type ProxyDatasourceVersion__Without_Id_Mode_State_Type_FieldsMap_ApiOptions_Sample_TextEncoding_Urls_Format_Refresh_Url_PendingSteps_AvailableFieldsTypes_RequiredFieldsTypes_UniqueFieldsTypes_ImportantFieldsTypes_ = {
1356
1371
  readonly id: (string) & readonlyP;
@@ -1528,15 +1543,15 @@ export declare type __id_string_companyId_string_or_null_resourceGroupIds_string
1528
1543
  readonly health: ("OK" | "WARNING" | "ERROR") & readonlyP;
1529
1544
  })[];
1530
1545
  readonly configurationUpdatedAt: (string) & readonlyP;
1531
- readonly archivedAt: (Date | null) & readonlyP;
1546
+ readonly archivedAt: (string | null) & readonlyP;
1532
1547
  status: DatasourceStatus;
1533
1548
  readonly hasWarnings: (boolean) & readonlyP;
1534
1549
  };
1535
1550
  export declare type ProxyDatasource = __id_string_companyId_string_or_null_resourceGroupIds_string_Array_or_null_mode_DatasourceStatus_readonlyhasWarnings_boolean___Without_CompanyId_ResourceGroupIds_Mode_Name_Template_Fetcher_Versions_ConfigurationUpdatedAt_ArchivedAt_Status_HasWarnings_ & {
1536
1551
  readonly id: (string) & readonlyP;
1537
1552
  } & {
1538
- readonly createdAt: (Date) & readonlyP;
1539
- readonly updatedAt: (Date) & readonlyP;
1553
+ readonly createdAt: (string) & readonlyP;
1554
+ readonly updatedAt: (string) & readonlyP;
1540
1555
  };
1541
1556
  export declare type DatasourceGeneric = {
1542
1557
  name: "generic";
@@ -1589,7 +1604,7 @@ export declare type DatasourceLog = _payload_unknown_type_DatasourceLog_Without_
1589
1604
  export declare type DatasourceFormatOptions = {
1590
1605
  [key: string]: string;
1591
1606
  };
1592
- export declare type WorkerApiOptions = _oauth_string_or_undefined_pagination__type_body_or_query_value_string_startAt_number_or_undefined___or__type_hypermediaAttribute_value_string___or__type_pageToken_value_string_param_string___or__type_linkHeader___or_undefined_method_GET_or_PATCH_or_POST_or_PUT_or_undefined_body_string_or_undefined_headers___x_string__string___or_undefined_query___x_string__string___or_undefined_timeout_number_or_undefined___Without_;
1607
+ export declare type WorkerApiOptions = _oauth_string_or_undefined_pagination__type_body_or_query_subtype_page_or_offset_or_undefined_value_string_startAt_number_or_undefined___or__type_hypermediaAttribute_value_string___or__type_pageToken_value_string_param_string___or__type_linkHeader___or_undefined_method_GET_or_PATCH_or_POST_or_PUT_or_undefined_body_string_or_undefined_headers___x_string__string___or_undefined_query___x_string__string___or_undefined_timeout_number_or_undefined___Without_;
1593
1608
  export declare type Format = {
1594
1609
  type: DatasourceFormat;
1595
1610
  options: DatasourceFormatOptions;
@@ -1614,7 +1629,7 @@ export declare type Partial_Pick_PullDatasourceVersion_sample_or_textEncoding_or
1614
1629
  textEncoding?: string;
1615
1630
  format?: Format;
1616
1631
  };
1617
- export declare type Partial_Pick_WorkerDatasourceVersion_aggregationPipeline_or_refresh_or_detectMissingFields_or_batchSize_or_rowBlacklist_or_pullOptions_ = {
1632
+ export declare type Partial_Pick_WorkerDatasourceVersion_aggregationPipeline_or_refresh_or_detectMissingFields_or_batchSize_or_rowBlacklist_or_pullOptions_or_sftpPublicKey_ = {
1618
1633
  aggregationPipeline?: ({
1619
1634
  name: "unwind";
1620
1635
  params: {
@@ -1658,6 +1673,7 @@ export declare type Partial_Pick_WorkerDatasourceVersion_aggregationPipeline_or_
1658
1673
  primaryKey?: string;
1659
1674
  };
1660
1675
  };
1676
+ sftpPublicKey?: string;
1661
1677
  };
1662
1678
  export declare type ProxyApiOptions = _oauth_string_or_undefined_method_GET_or_PATCH_or_POST_or_PUT_or_undefined_body_string_or_undefined_headers___x_string__string___or_undefined_query___x_string__string___or_undefined_timeout_number_or_undefined_variables_VariableDefinition_Array_or_undefined___Without_;
1663
1679
  export declare type Partial_Pick_ProxyDatasourceVersion_apiOptions_or_sample_or_textEncoding_or_format_ = {
@@ -1753,14 +1769,14 @@ export declare type CurrentSteps = {
1753
1769
  name: "array_find";
1754
1770
  params: {
1755
1771
  key: string;
1756
- operator: "=";
1772
+ operator: "=" | "!=";
1757
1773
  value: string | number;
1758
1774
  };
1759
1775
  } | {
1760
1776
  name: "array_find";
1761
1777
  params: {
1762
1778
  key: string;
1763
- operator: "=";
1779
+ operator: "=" | "!=";
1764
1780
  valuePath: string;
1765
1781
  };
1766
1782
  } | {
@@ -1809,8 +1825,14 @@ export declare type CurrentSteps = {
1809
1825
  params: {
1810
1826
  value: string;
1811
1827
  };
1828
+ } | {
1829
+ name: "split";
1830
+ params: {
1831
+ separator: string;
1832
+ };
1812
1833
  }))[];
1813
1834
  source?: FieldSource;
1835
+ ignoreIfMissing?: boolean;
1814
1836
  readonly primitive: ("string" | "number" | "datetime" | "string[]" | "number[]" | "string{}" | "number{}") & readonlyP;
1815
1837
  };
1816
1838
  }) | ({
@@ -1908,6 +1930,7 @@ export declare type CurrentSteps = {
1908
1930
  primaryKey?: string;
1909
1931
  };
1910
1932
  };
1933
+ sftpPublicKey?: string;
1911
1934
  };
1912
1935
  }) | ({
1913
1936
  name: "configure_fetcher";
@@ -2103,14 +2126,14 @@ export declare type CurrentSteps = {
2103
2126
  name: "array_find";
2104
2127
  params: {
2105
2128
  key: string;
2106
- operator: "=";
2129
+ operator: "=" | "!=";
2107
2130
  value: string | number;
2108
2131
  };
2109
2132
  } | {
2110
2133
  name: "array_find";
2111
2134
  params: {
2112
2135
  key: string;
2113
- operator: "=";
2136
+ operator: "=" | "!=";
2114
2137
  valuePath: string;
2115
2138
  };
2116
2139
  } | {
@@ -2159,8 +2182,14 @@ export declare type CurrentSteps = {
2159
2182
  params: {
2160
2183
  value: string;
2161
2184
  };
2185
+ } | {
2186
+ name: "split";
2187
+ params: {
2188
+ separator: string;
2189
+ };
2162
2190
  }))[];
2163
2191
  source?: FieldSource;
2192
+ ignoreIfMissing?: boolean;
2164
2193
  readonly primitive: ("string" | "number" | "datetime" | "string[]" | "number[]" | "string{}" | "number{}") & readonlyP;
2165
2194
  };
2166
2195
  }) | ({
@@ -2321,14 +2350,14 @@ export declare type CurrentSteps = {
2321
2350
  name: "array_find";
2322
2351
  params: {
2323
2352
  key: string;
2324
- operator: "=";
2353
+ operator: "=" | "!=";
2325
2354
  value: string | number;
2326
2355
  };
2327
2356
  } | {
2328
2357
  name: "array_find";
2329
2358
  params: {
2330
2359
  key: string;
2331
- operator: "=";
2360
+ operator: "=" | "!=";
2332
2361
  valuePath: string;
2333
2362
  };
2334
2363
  } | {
@@ -2377,8 +2406,14 @@ export declare type CurrentSteps = {
2377
2406
  params: {
2378
2407
  value: string;
2379
2408
  };
2409
+ } | {
2410
+ name: "split";
2411
+ params: {
2412
+ separator: string;
2413
+ };
2380
2414
  }))[];
2381
2415
  source?: FieldSource;
2416
+ ignoreIfMissing?: boolean;
2382
2417
  readonly primitive: ("string" | "number" | "datetime" | "string[]" | "number[]" | "string{}" | "number{}") & readonlyP;
2383
2418
  };
2384
2419
  }) | ({
@@ -2543,14 +2578,14 @@ export declare type CurrentSteps = {
2543
2578
  name: "array_find";
2544
2579
  params: {
2545
2580
  key: string;
2546
- operator: "=";
2581
+ operator: "=" | "!=";
2547
2582
  value: string | number;
2548
2583
  };
2549
2584
  } | {
2550
2585
  name: "array_find";
2551
2586
  params: {
2552
2587
  key: string;
2553
- operator: "=";
2588
+ operator: "=" | "!=";
2554
2589
  valuePath: string;
2555
2590
  };
2556
2591
  } | {
@@ -2599,8 +2634,14 @@ export declare type CurrentSteps = {
2599
2634
  params: {
2600
2635
  value: string;
2601
2636
  };
2637
+ } | {
2638
+ name: "split";
2639
+ params: {
2640
+ separator: string;
2641
+ };
2602
2642
  }))[];
2603
2643
  source?: FieldSource;
2644
+ ignoreIfMissing?: boolean;
2604
2645
  readonly primitive: ("string" | "number" | "datetime" | "string[]" | "number[]" | "string{}" | "number{}") & readonlyP;
2605
2646
  };
2606
2647
  }) | ({
@@ -2698,6 +2739,7 @@ export declare type CurrentSteps = {
2698
2739
  primaryKey?: string;
2699
2740
  };
2700
2741
  };
2742
+ sftpPublicKey?: string;
2701
2743
  };
2702
2744
  }) | ({
2703
2745
  name: "configure_fetcher";
@@ -2893,14 +2935,14 @@ export declare type CurrentSteps = {
2893
2935
  name: "array_find";
2894
2936
  params: {
2895
2937
  key: string;
2896
- operator: "=";
2938
+ operator: "=" | "!=";
2897
2939
  value: string | number;
2898
2940
  };
2899
2941
  } | {
2900
2942
  name: "array_find";
2901
2943
  params: {
2902
2944
  key: string;
2903
- operator: "=";
2945
+ operator: "=" | "!=";
2904
2946
  valuePath: string;
2905
2947
  };
2906
2948
  } | {
@@ -2949,8 +2991,14 @@ export declare type CurrentSteps = {
2949
2991
  params: {
2950
2992
  value: string;
2951
2993
  };
2994
+ } | {
2995
+ name: "split";
2996
+ params: {
2997
+ separator: string;
2998
+ };
2952
2999
  }))[];
2953
3000
  source?: FieldSource;
3001
+ ignoreIfMissing?: boolean;
2954
3002
  readonly primitive: ("string" | "number" | "datetime" | "string[]" | "number[]" | "string{}" | "number{}") & readonlyP;
2955
3003
  };
2956
3004
  }) | ({
@@ -3111,14 +3159,14 @@ export declare type CurrentSteps = {
3111
3159
  name: "array_find";
3112
3160
  params: {
3113
3161
  key: string;
3114
- operator: "=";
3162
+ operator: "=" | "!=";
3115
3163
  value: string | number;
3116
3164
  };
3117
3165
  } | {
3118
3166
  name: "array_find";
3119
3167
  params: {
3120
3168
  key: string;
3121
- operator: "=";
3169
+ operator: "=" | "!=";
3122
3170
  valuePath: string;
3123
3171
  };
3124
3172
  } | {
@@ -3167,8 +3215,14 @@ export declare type CurrentSteps = {
3167
3215
  params: {
3168
3216
  value: string;
3169
3217
  };
3218
+ } | {
3219
+ name: "split";
3220
+ params: {
3221
+ separator: string;
3222
+ };
3170
3223
  }))[];
3171
3224
  source?: FieldSource;
3225
+ ignoreIfMissing?: boolean;
3172
3226
  readonly primitive: ("string" | "number" | "datetime" | "string[]" | "number[]" | "string{}" | "number{}") & readonlyP;
3173
3227
  };
3174
3228
  }) | ({
@@ -3333,14 +3387,14 @@ export declare type CurrentSteps = {
3333
3387
  name: "array_find";
3334
3388
  params: {
3335
3389
  key: string;
3336
- operator: "=";
3390
+ operator: "=" | "!=";
3337
3391
  value: string | number;
3338
3392
  };
3339
3393
  } | {
3340
3394
  name: "array_find";
3341
3395
  params: {
3342
3396
  key: string;
3343
- operator: "=";
3397
+ operator: "=" | "!=";
3344
3398
  valuePath: string;
3345
3399
  };
3346
3400
  } | {
@@ -3389,8 +3443,14 @@ export declare type CurrentSteps = {
3389
3443
  params: {
3390
3444
  value: string;
3391
3445
  };
3446
+ } | {
3447
+ name: "split";
3448
+ params: {
3449
+ separator: string;
3450
+ };
3392
3451
  }))[];
3393
3452
  source?: FieldSource;
3453
+ ignoreIfMissing?: boolean;
3394
3454
  readonly primitive: ("string" | "number" | "datetime" | "string[]" | "number[]" | "string{}" | "number{}") & readonlyP;
3395
3455
  };
3396
3456
  }) | ({
@@ -3488,6 +3548,7 @@ export declare type CurrentSteps = {
3488
3548
  primaryKey?: string;
3489
3549
  };
3490
3550
  };
3551
+ sftpPublicKey?: string;
3491
3552
  };
3492
3553
  }) | ({
3493
3554
  name: "configure_fetcher";
@@ -3683,14 +3744,14 @@ export declare type CurrentSteps = {
3683
3744
  name: "array_find";
3684
3745
  params: {
3685
3746
  key: string;
3686
- operator: "=";
3747
+ operator: "=" | "!=";
3687
3748
  value: string | number;
3688
3749
  };
3689
3750
  } | {
3690
3751
  name: "array_find";
3691
3752
  params: {
3692
3753
  key: string;
3693
- operator: "=";
3754
+ operator: "=" | "!=";
3694
3755
  valuePath: string;
3695
3756
  };
3696
3757
  } | {
@@ -3739,8 +3800,14 @@ export declare type CurrentSteps = {
3739
3800
  params: {
3740
3801
  value: string;
3741
3802
  };
3803
+ } | {
3804
+ name: "split";
3805
+ params: {
3806
+ separator: string;
3807
+ };
3742
3808
  }))[];
3743
3809
  source?: FieldSource;
3810
+ ignoreIfMissing?: boolean;
3744
3811
  readonly primitive: ("string" | "number" | "datetime" | "string[]" | "number[]" | "string{}" | "number{}") & readonlyP;
3745
3812
  };
3746
3813
  }) | ({
@@ -3901,14 +3968,14 @@ export declare type CurrentSteps = {
3901
3968
  name: "array_find";
3902
3969
  params: {
3903
3970
  key: string;
3904
- operator: "=";
3971
+ operator: "=" | "!=";
3905
3972
  value: string | number;
3906
3973
  };
3907
3974
  } | {
3908
3975
  name: "array_find";
3909
3976
  params: {
3910
3977
  key: string;
3911
- operator: "=";
3978
+ operator: "=" | "!=";
3912
3979
  valuePath: string;
3913
3980
  };
3914
3981
  } | {
@@ -3957,8 +4024,14 @@ export declare type CurrentSteps = {
3957
4024
  params: {
3958
4025
  value: string;
3959
4026
  };
4027
+ } | {
4028
+ name: "split";
4029
+ params: {
4030
+ separator: string;
4031
+ };
3960
4032
  }))[];
3961
4033
  source?: FieldSource;
4034
+ ignoreIfMissing?: boolean;
3962
4035
  readonly primitive: ("string" | "number" | "datetime" | "string[]" | "number[]" | "string{}" | "number{}") & readonlyP;
3963
4036
  };
3964
4037
  }) | ({
@@ -4123,14 +4196,14 @@ export declare type CurrentSteps = {
4123
4196
  name: "array_find";
4124
4197
  params: {
4125
4198
  key: string;
4126
- operator: "=";
4199
+ operator: "=" | "!=";
4127
4200
  value: string | number;
4128
4201
  };
4129
4202
  } | {
4130
4203
  name: "array_find";
4131
4204
  params: {
4132
4205
  key: string;
4133
- operator: "=";
4206
+ operator: "=" | "!=";
4134
4207
  valuePath: string;
4135
4208
  };
4136
4209
  } | {
@@ -4179,8 +4252,14 @@ export declare type CurrentSteps = {
4179
4252
  params: {
4180
4253
  value: string;
4181
4254
  };
4255
+ } | {
4256
+ name: "split";
4257
+ params: {
4258
+ separator: string;
4259
+ };
4182
4260
  }))[];
4183
4261
  source?: FieldSource;
4262
+ ignoreIfMissing?: boolean;
4184
4263
  readonly primitive: ("string" | "number" | "datetime" | "string[]" | "number[]" | "string{}" | "number{}") & readonlyP;
4185
4264
  };
4186
4265
  }) | ({
@@ -4278,6 +4357,7 @@ export declare type CurrentSteps = {
4278
4357
  primaryKey?: string;
4279
4358
  };
4280
4359
  };
4360
+ sftpPublicKey?: string;
4281
4361
  };
4282
4362
  }) | ({
4283
4363
  name: "configure_fetcher";
@@ -4473,14 +4553,14 @@ export declare type CurrentSteps = {
4473
4553
  name: "array_find";
4474
4554
  params: {
4475
4555
  key: string;
4476
- operator: "=";
4556
+ operator: "=" | "!=";
4477
4557
  value: string | number;
4478
4558
  };
4479
4559
  } | {
4480
4560
  name: "array_find";
4481
4561
  params: {
4482
4562
  key: string;
4483
- operator: "=";
4563
+ operator: "=" | "!=";
4484
4564
  valuePath: string;
4485
4565
  };
4486
4566
  } | {
@@ -4529,8 +4609,14 @@ export declare type CurrentSteps = {
4529
4609
  params: {
4530
4610
  value: string;
4531
4611
  };
4612
+ } | {
4613
+ name: "split";
4614
+ params: {
4615
+ separator: string;
4616
+ };
4532
4617
  }))[];
4533
4618
  source?: FieldSource;
4619
+ ignoreIfMissing?: boolean;
4534
4620
  readonly primitive: ("string" | "number" | "datetime" | "string[]" | "number[]" | "string{}" | "number{}") & readonlyP;
4535
4621
  };
4536
4622
  }) | ({
@@ -4691,14 +4777,14 @@ export declare type CurrentSteps = {
4691
4777
  name: "array_find";
4692
4778
  params: {
4693
4779
  key: string;
4694
- operator: "=";
4780
+ operator: "=" | "!=";
4695
4781
  value: string | number;
4696
4782
  };
4697
4783
  } | {
4698
4784
  name: "array_find";
4699
4785
  params: {
4700
4786
  key: string;
4701
- operator: "=";
4787
+ operator: "=" | "!=";
4702
4788
  valuePath: string;
4703
4789
  };
4704
4790
  } | {
@@ -4747,8 +4833,14 @@ export declare type CurrentSteps = {
4747
4833
  params: {
4748
4834
  value: string;
4749
4835
  };
4836
+ } | {
4837
+ name: "split";
4838
+ params: {
4839
+ separator: string;
4840
+ };
4750
4841
  }))[];
4751
4842
  source?: FieldSource;
4843
+ ignoreIfMissing?: boolean;
4752
4844
  readonly primitive: ("string" | "number" | "datetime" | "string[]" | "number[]" | "string{}" | "number{}") & readonlyP;
4753
4845
  };
4754
4846
  }) | ({
@@ -4845,6 +4937,7 @@ export declare enum FieldMapRuleName {
4845
4937
  EXCLUDE_FROM_RECORD = "exclude_from_record",
4846
4938
  DECRYPT = "decrypt",
4847
4939
  INTERPOLATE = "interpolate",
4940
+ SPLIT = "split",
4848
4941
  CUSTOM = "custom"
4849
4942
  }
4850
4943
  export declare type DatasourceTypeName = DatasourceType;
@@ -4918,7 +5011,7 @@ export declare type WorkerSteps = {
4918
5011
  };
4919
5012
  } | {
4920
5013
  name: "patch";
4921
- payload: Partial_Pick_WorkerDatasourceVersion_aggregationPipeline_or_refresh_or_detectMissingFields_or_batchSize_or_rowBlacklist_or_pullOptions_;
5014
+ payload: Partial_Pick_WorkerDatasourceVersion_aggregationPipeline_or_refresh_or_detectMissingFields_or_batchSize_or_rowBlacklist_or_pullOptions_or_sftpPublicKey_;
4922
5015
  } | {
4923
5016
  name: "configure_fetcher";
4924
5017
  payload: {