@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.
Files changed (37) hide show
  1. package/dist/ingestion.cjs +151 -38
  2. package/dist/ingestion.esm.browser.js +153 -40
  3. package/dist/ingestion.esm.node.js +151 -38
  4. package/dist/ingestion.umd.js +2 -2
  5. package/dist/model/authentication.d.ts +4 -4
  6. package/dist/model/authentication.d.ts.map +1 -1
  7. package/dist/model/authenticationCreate.d.ts +1 -1
  8. package/dist/model/authenticationCreate.d.ts.map +1 -1
  9. package/dist/model/authenticationUpdate.d.ts +1 -1
  10. package/dist/model/authenticationUpdate.d.ts.map +1 -1
  11. package/dist/model/commercetoolsCustomFields.d.ts +18 -0
  12. package/dist/model/commercetoolsCustomFields.d.ts.map +1 -0
  13. package/dist/model/destination.d.ts +3 -0
  14. package/dist/model/destination.d.ts.map +1 -1
  15. package/dist/model/destinationUpdate.d.ts +3 -0
  16. package/dist/model/destinationUpdate.d.ts.map +1 -1
  17. package/dist/model/index.d.ts +1 -0
  18. package/dist/model/index.d.ts.map +1 -1
  19. package/dist/model/sourceBigCommerce.d.ts +1 -1
  20. package/dist/model/sourceBigCommerce.d.ts.map +1 -1
  21. package/dist/model/sourceCommercetools.d.ts +2 -0
  22. package/dist/model/sourceCommercetools.d.ts.map +1 -1
  23. package/dist/model/sourceUpdateCommercetools.d.ts +2 -0
  24. package/dist/model/sourceUpdateCommercetools.d.ts.map +1 -1
  25. package/dist/src/ingestionClient.d.ts +151 -38
  26. package/dist/src/ingestionClient.d.ts.map +1 -1
  27. package/model/authentication.ts +4 -4
  28. package/model/authenticationCreate.ts +1 -1
  29. package/model/authenticationUpdate.ts +1 -1
  30. package/model/commercetoolsCustomFields.ts +21 -0
  31. package/model/destination.ts +3 -0
  32. package/model/destinationUpdate.ts +3 -0
  33. package/model/index.ts +1 -0
  34. package/model/sourceBigCommerce.ts +1 -1
  35. package/model/sourceCommercetools.ts +4 -0
  36. package/model/sourceUpdateCommercetools.ts +4 -0
  37. package/package.json +6 -6
@@ -31,5 +31,8 @@ export type Destination = {
31
31
  */
32
32
  updatedAt?: string;
33
33
 
34
+ /**
35
+ * The authentication UUID.
36
+ */
34
37
  authenticationID?: string;
35
38
  };
@@ -16,5 +16,8 @@ export type DestinationUpdate = {
16
16
 
17
17
  input?: DestinationInput;
18
18
 
19
+ /**
20
+ * The authentication UUID.
21
+ */
19
22
  authenticationID?: string;
20
23
  };
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';
@@ -7,7 +7,7 @@ export type SourceBigCommerce = {
7
7
  /**
8
8
  * The store hash identifying the store the shopper is signing in to.
9
9
  */
10
- storeHash?: string;
10
+ storeHash: string;
11
11
 
12
12
  channel?: BigCommerceChannel;
13
13
 
@@ -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.73",
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.100",
43
- "@algolia/requester-browser-xhr": "5.0.0-alpha.100",
44
- "@algolia/requester-node-http": "5.0.0-alpha.100"
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.0",
48
- "rollup": "4.9.6",
47
+ "@types/node": "20.11.19",
48
+ "rollup": "4.12.0",
49
49
  "typescript": "5.3.3"
50
50
  },
51
51
  "engines": {