File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed
clients/algoliasearch-client-javascript/packages/ingestion/model Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -8,5 +8,10 @@ export type SourceJSON = {
8
8
*/
9
9
url : string ;
10
10
11
+ /**
12
+ * The name of the column that contains the unique ID, used as `objectID` in Algolia.
13
+ */
14
+ uniqueIDColumn ?: string ;
15
+
11
16
method ?: MethodType ;
12
17
} ;
Original file line number Diff line number Diff line change @@ -744,6 +744,11 @@ components:
744
744
description : The store hash identifying the store the shopper is signing in to.
745
745
required :
746
746
- store_hash
747
+ UniqueIDColumn :
748
+ type : string
749
+ description : >-
750
+ The name of the column that contains the unique ID, used as `objectID`
751
+ in Algolia.
747
752
MethodType :
748
753
type : string
749
754
enum :
@@ -756,6 +761,8 @@ components:
756
761
url :
757
762
type : string
758
763
description : The URL of the file.
764
+ uniqueIDColumn :
765
+ $ref : ' #/components/schemas/UniqueIDColumn'
759
766
method :
760
767
$ref : ' #/components/schemas/MethodType'
761
768
required :
@@ -776,10 +783,7 @@ components:
776
783
type : string
777
784
description : The URL of the file.
778
785
uniqueIDColumn :
779
- type : string
780
- description : >-
781
- The name of the column that contains the unique ID, used as
782
- `objectID` in Algolia.
786
+ $ref : ' #/components/schemas/UniqueIDColumn'
783
787
mapping :
784
788
type : object
785
789
description : >
You can’t perform that action at this time.
0 commit comments