@relevanceai/sdk 1.92.0 → 1.93.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.
@@ -6986,6 +6986,11 @@ export interface components {
6986
6986
  * @default true
6987
6987
  */
6988
6988
  insert_date?: boolean;
6989
+ /**
6990
+ * @description Whether to transform fields containing dates to a valid Relevance date format.
6991
+ * @default true
6992
+ */
6993
+ transform_date_format?: boolean;
6989
6994
  /**
6990
6995
  * @description Whether to overwrite document if it exists.
6991
6996
  * @default true
@@ -7058,6 +7063,11 @@ export interface components {
7058
7063
  * @default true
7059
7064
  */
7060
7065
  insert_date?: boolean;
7066
+ /**
7067
+ * @description Whether to transform fields containing dates to a valid Relevance date format.
7068
+ * @default true
7069
+ */
7070
+ transform_date_format?: boolean;
7061
7071
  /**
7062
7072
  * @description Whether to overwrite document if it exists.
7063
7073
  * @default true
@@ -7157,6 +7167,11 @@ export interface components {
7157
7167
  process_id?: boolean;
7158
7168
  /** @description Only process rows of length skip_rows. */
7159
7169
  skip_rows?: number;
7170
+ /**
7171
+ * @description Whether to return quickly and then wait for ingestion to complete in the background. This will speed up document ingestion significantly.
7172
+ * @default true
7173
+ */
7174
+ ingest_in_background?: boolean;
7160
7175
  };
7161
7176
  ParseBlobOutput: {
7162
7177
  status: string;
@@ -7842,6 +7857,11 @@ export interface components {
7842
7857
  * @default true
7843
7858
  */
7844
7859
  insert_date?: boolean;
7860
+ /**
7861
+ * @description Whether to transform fields containing dates to a valid Relevance date format.
7862
+ * @default true
7863
+ */
7864
+ transform_date_format?: boolean;
7845
7865
  /**
7846
7866
  * @description Whether to overwrite document if it exists.
7847
7867
  * @default true
@@ -7927,6 +7947,11 @@ export interface components {
7927
7947
  * @default true
7928
7948
  */
7929
7949
  insert_date?: boolean;
7950
+ /**
7951
+ * @description Whether to transform fields containing dates to a valid Relevance date format.
7952
+ * @default true
7953
+ */
7954
+ transform_date_format?: boolean;
7930
7955
  /**
7931
7956
  * @description Whether to overwrite document if it exists.
7932
7957
  * @default true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@relevanceai/sdk",
3
- "version": "1.92.0",
3
+ "version": "1.93.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",