@relevanceai/sdk 1.100.0 → 1.102.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6831,6 +6831,11 @@ export interface components {
|
|
|
6831
6831
|
_id: number;
|
|
6832
6832
|
};
|
|
6833
6833
|
TriggerWorkflowInput: {
|
|
6834
|
+
/**
|
|
6835
|
+
* @description the workflows version to execute. It could be a tag like production or a version like v1.1.5
|
|
6836
|
+
* @default production
|
|
6837
|
+
*/
|
|
6838
|
+
version?: string;
|
|
6834
6839
|
params: {
|
|
6835
6840
|
[key: string]: unknown;
|
|
6836
6841
|
};
|
|
@@ -7023,6 +7028,11 @@ export interface components {
|
|
|
7023
7028
|
[key: string]: unknown;
|
|
7024
7029
|
};
|
|
7025
7030
|
ValidateWorkflowParamsInput: {
|
|
7031
|
+
/**
|
|
7032
|
+
* @description the workflows version to execute. It could be a tag like production or a version like v1.1.5
|
|
7033
|
+
* @default production
|
|
7034
|
+
*/
|
|
7035
|
+
version?: string;
|
|
7026
7036
|
parameters: {
|
|
7027
7037
|
[key: string]: unknown;
|
|
7028
7038
|
};
|
|
@@ -7050,6 +7060,11 @@ export interface components {
|
|
|
7050
7060
|
* @default true
|
|
7051
7061
|
*/
|
|
7052
7062
|
transform_date_format?: boolean;
|
|
7063
|
+
/**
|
|
7064
|
+
* @description Whether to remove fields with the value 'N/A' from documents. Required to process pandas style CSVs.
|
|
7065
|
+
* @default true
|
|
7066
|
+
*/
|
|
7067
|
+
remove_na?: boolean;
|
|
7053
7068
|
/**
|
|
7054
7069
|
* @description Whether to overwrite document if it exists.
|
|
7055
7070
|
* @default true
|
|
@@ -7127,6 +7142,11 @@ export interface components {
|
|
|
7127
7142
|
* @default true
|
|
7128
7143
|
*/
|
|
7129
7144
|
transform_date_format?: boolean;
|
|
7145
|
+
/**
|
|
7146
|
+
* @description Whether to remove fields with the value 'N/A' from documents. Required to process pandas style CSVs.
|
|
7147
|
+
* @default true
|
|
7148
|
+
*/
|
|
7149
|
+
remove_na?: boolean;
|
|
7130
7150
|
/**
|
|
7131
7151
|
* @description Whether to overwrite document if it exists.
|
|
7132
7152
|
* @default true
|
|
@@ -7921,6 +7941,11 @@ export interface components {
|
|
|
7921
7941
|
* @default true
|
|
7922
7942
|
*/
|
|
7923
7943
|
transform_date_format?: boolean;
|
|
7944
|
+
/**
|
|
7945
|
+
* @description Whether to remove fields with the value 'N/A' from documents. Required to process pandas style CSVs.
|
|
7946
|
+
* @default true
|
|
7947
|
+
*/
|
|
7948
|
+
remove_na?: boolean;
|
|
7924
7949
|
/**
|
|
7925
7950
|
* @description Whether to overwrite document if it exists.
|
|
7926
7951
|
* @default true
|
|
@@ -8011,6 +8036,11 @@ export interface components {
|
|
|
8011
8036
|
* @default true
|
|
8012
8037
|
*/
|
|
8013
8038
|
transform_date_format?: boolean;
|
|
8039
|
+
/**
|
|
8040
|
+
* @description Whether to remove fields with the value 'N/A' from documents. Required to process pandas style CSVs.
|
|
8041
|
+
* @default true
|
|
8042
|
+
*/
|
|
8043
|
+
remove_na?: boolean;
|
|
8014
8044
|
/**
|
|
8015
8045
|
* @description Whether to overwrite document if it exists.
|
|
8016
8046
|
* @default true
|
|
@@ -14526,6 +14556,8 @@ export interface operations {
|
|
|
14526
14556
|
fuzzy?: number;
|
|
14527
14557
|
join?: boolean;
|
|
14528
14558
|
}>)[];
|
|
14559
|
+
/** the workflows version to execute. It could be a tag like production or a version like v1.1.5 */
|
|
14560
|
+
version?: string;
|
|
14529
14561
|
show_hidden?: boolean;
|
|
14530
14562
|
};
|
|
14531
14563
|
};
|
|
@@ -14548,6 +14580,10 @@ export interface operations {
|
|
|
14548
14580
|
/** ID of workflow */
|
|
14549
14581
|
workflow_id: string;
|
|
14550
14582
|
};
|
|
14583
|
+
query: {
|
|
14584
|
+
/** the workflows version to execute. It could be a tag like production or a version like v1.1.5 */
|
|
14585
|
+
version?: string;
|
|
14586
|
+
};
|
|
14551
14587
|
};
|
|
14552
14588
|
responses: {
|
|
14553
14589
|
/** successful operation */
|
package/package.json
CHANGED