@algolia/ingestion 1.0.0-alpha.73 → 1.0.0-alpha.75
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.
- package/dist/ingestion.cjs +151 -38
- package/dist/ingestion.esm.browser.js +153 -40
- package/dist/ingestion.esm.node.js +151 -38
- package/dist/ingestion.umd.js +2 -2
- package/dist/model/authentication.d.ts +4 -4
- package/dist/model/authentication.d.ts.map +1 -1
- package/dist/model/authenticationCreate.d.ts +1 -1
- package/dist/model/authenticationCreate.d.ts.map +1 -1
- package/dist/model/authenticationUpdate.d.ts +1 -1
- package/dist/model/authenticationUpdate.d.ts.map +1 -1
- package/dist/model/commercetoolsCustomFields.d.ts +18 -0
- package/dist/model/commercetoolsCustomFields.d.ts.map +1 -0
- package/dist/model/destination.d.ts +3 -0
- package/dist/model/destination.d.ts.map +1 -1
- package/dist/model/destinationUpdate.d.ts +3 -0
- package/dist/model/destinationUpdate.d.ts.map +1 -1
- package/dist/model/index.d.ts +1 -0
- package/dist/model/index.d.ts.map +1 -1
- package/dist/model/sourceBigCommerce.d.ts +1 -1
- package/dist/model/sourceBigCommerce.d.ts.map +1 -1
- package/dist/model/sourceCommercetools.d.ts +2 -0
- package/dist/model/sourceCommercetools.d.ts.map +1 -1
- package/dist/model/sourceUpdateCommercetools.d.ts +2 -0
- package/dist/model/sourceUpdateCommercetools.d.ts.map +1 -1
- package/dist/src/ingestionClient.d.ts +151 -38
- package/dist/src/ingestionClient.d.ts.map +1 -1
- package/model/authentication.ts +4 -4
- package/model/authenticationCreate.ts +1 -1
- package/model/authenticationUpdate.ts +1 -1
- package/model/commercetoolsCustomFields.ts +21 -0
- package/model/destination.ts +3 -0
- package/model/destinationUpdate.ts +3 -0
- package/model/index.ts +1 -0
- package/model/sourceBigCommerce.ts +1 -1
- package/model/sourceCommercetools.ts +4 -0
- package/model/sourceUpdateCommercetools.ts +4 -0
- package/package.json +6 -6
package/model/destination.ts
CHANGED
package/model/index.ts
CHANGED
|
@@ -24,6 +24,7 @@ export * from './authenticationUpdateResponse';
|
|
|
24
24
|
export * from './bigCommerceChannel';
|
|
25
25
|
export * from './bigCommerceMetafield';
|
|
26
26
|
export * from './bigQueryDataType';
|
|
27
|
+
export * from './commercetoolsCustomFields';
|
|
27
28
|
export * from './deleteResponse';
|
|
28
29
|
export * from './destination';
|
|
29
30
|
export * from './destinationCreate';
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
2
|
|
|
3
|
+
import type { CommercetoolsCustomFields } from './commercetoolsCustomFields';
|
|
4
|
+
|
|
3
5
|
export type SourceCommercetools = {
|
|
4
6
|
storeKeys?: string[];
|
|
5
7
|
|
|
@@ -16,4 +18,6 @@ export type SourceCommercetools = {
|
|
|
16
18
|
* Determines the value that will be stored in the Algolia record if there\'s no inventory information on the product.
|
|
17
19
|
*/
|
|
18
20
|
fallbackIsInStockValue?: boolean;
|
|
21
|
+
|
|
22
|
+
customFields?: CommercetoolsCustomFields;
|
|
19
23
|
};
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
|
|
2
2
|
|
|
3
|
+
import type { CommercetoolsCustomFields } from './commercetoolsCustomFields';
|
|
4
|
+
|
|
3
5
|
export type SourceUpdateCommercetools = {
|
|
4
6
|
/**
|
|
5
7
|
* Unique and immutable key of the referenced Store.
|
|
@@ -10,4 +12,6 @@ export type SourceUpdateCommercetools = {
|
|
|
10
12
|
* Array of locales that must match the following pattern: ^[a-z]{2}(-[A-Z]{2})?$. For example [\"fr-FR\", \"en\"].
|
|
11
13
|
*/
|
|
12
14
|
locales?: string[];
|
|
15
|
+
|
|
16
|
+
customFields?: CommercetoolsCustomFields;
|
|
13
17
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@algolia/ingestion",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.75",
|
|
4
4
|
"description": "JavaScript client for ingestion",
|
|
5
5
|
"repository": "algolia/algoliasearch-client-javascript",
|
|
6
6
|
"license": "MIT",
|
|
@@ -39,13 +39,13 @@
|
|
|
39
39
|
"clean": "rm -rf ./dist || true"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@algolia/client-common": "5.0.0-alpha.
|
|
43
|
-
"@algolia/requester-browser-xhr": "5.0.0-alpha.
|
|
44
|
-
"@algolia/requester-node-http": "5.0.0-alpha.
|
|
42
|
+
"@algolia/client-common": "5.0.0-alpha.102",
|
|
43
|
+
"@algolia/requester-browser-xhr": "5.0.0-alpha.102",
|
|
44
|
+
"@algolia/requester-node-http": "5.0.0-alpha.102"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@types/node": "20.11.
|
|
48
|
-
"rollup": "4.
|
|
47
|
+
"@types/node": "20.11.19",
|
|
48
|
+
"rollup": "4.12.0",
|
|
49
49
|
"typescript": "5.3.3"
|
|
50
50
|
},
|
|
51
51
|
"engines": {
|