@relevanceai/sdk 1.101.0 → 1.103.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
@@ -10614,6 +10644,7 @@ export interface components {
10614
10644
  answer?: string;
10615
10645
  status?: string;
10616
10646
  message?: string;
10647
+ question?: string;
10617
10648
  };
10618
10649
  /**
10619
10650
  * @description Total number of documents matched in the dataset.
@@ -11115,6 +11146,7 @@ export interface components {
11115
11146
  answer?: string;
11116
11147
  status?: string;
11117
11148
  message?: string;
11149
+ question?: string;
11118
11150
  };
11119
11151
  /**
11120
11152
  * @description Total number of documents matched in the dataset.
@@ -14526,6 +14558,8 @@ export interface operations {
14526
14558
  fuzzy?: number;
14527
14559
  join?: boolean;
14528
14560
  }>)[];
14561
+ /** the workflows version to execute. It could be a tag like production or a version like v1.1.5 */
14562
+ version?: string;
14529
14563
  show_hidden?: boolean;
14530
14564
  };
14531
14565
  };
@@ -14548,6 +14582,10 @@ export interface operations {
14548
14582
  /** ID of workflow */
14549
14583
  workflow_id: string;
14550
14584
  };
14585
+ query: {
14586
+ /** the workflows version to execute. It could be a tag like production or a version like v1.1.5 */
14587
+ version?: string;
14588
+ };
14551
14589
  };
14552
14590
  responses: {
14553
14591
  /** successful operation */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@relevanceai/sdk",
3
- "version": "1.101.0",
3
+ "version": "1.103.0",
4
4
  "description": "Javascript client for RelevanceAI APIs. Browser, Node.js and typescript support.",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "types": "./dist-types/index.d.ts",