pim-import 4.27.0 → 4.28.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.
- package/dist/algolia/downloads.js +5 -4
- package/dist/algolia/downloads.js.map +1 -1
- package/dist/algolia/families.js +5 -4
- package/dist/algolia/families.js.map +1 -1
- package/dist/algolia/news.js +5 -4
- package/dist/algolia/news.js.map +1 -1
- package/dist/algolia/pressRelease.js +5 -4
- package/dist/algolia/pressRelease.js.map +1 -1
- package/dist/algolia/pressReview.js +5 -4
- package/dist/algolia/pressReview.js.map +1 -1
- package/dist/algolia/products.js +5 -4
- package/dist/algolia/products.js.map +1 -1
- package/dist/algolia/projects.js +5 -4
- package/dist/algolia/projects.js.map +1 -1
- package/dist/algolia/stories.js +5 -4
- package/dist/algolia/stories.js.map +1 -1
- package/dist/algolia/subFamilies.js +5 -4
- package/dist/algolia/subFamilies.js.map +1 -1
- package/dist/pim/methods/products.js +2 -2
- package/dist/pim/methods/products.js.map +1 -1
- package/package.json +1 -1
- package/src/algolia/downloads.ts +9 -4
- package/src/algolia/families.ts +8 -4
- package/src/algolia/news.ts +8 -4
- package/src/algolia/pressRelease.ts +8 -4
- package/src/algolia/pressReview.ts +8 -4
- package/src/algolia/products.ts +8 -4
- package/src/algolia/projects.ts +8 -4
- package/src/algolia/stories.ts +8 -4
- package/src/algolia/subFamilies.ts +8 -4
- package/src/pim/methods/products.ts +2 -2
- package/types/algolia/downloads.d.ts +3 -1
- package/types/algolia/families.d.ts +3 -1
- package/types/algolia/news.d.ts +3 -1
- package/types/algolia/pressRelease.d.ts +3 -1
- package/types/algolia/pressReview.d.ts +3 -1
- package/types/algolia/products.d.ts +3 -1
- package/types/algolia/projects.d.ts +3 -1
- package/types/algolia/stories.d.ts +3 -1
- package/types/algolia/subFamilies.d.ts +3 -1
|
@@ -9,7 +9,9 @@ export declare type AlgoliaPressReleaseRecord = {
|
|
|
9
9
|
assets?: {};
|
|
10
10
|
visualizationDate?: string;
|
|
11
11
|
};
|
|
12
|
-
export declare const reindexPressRelease: (topicPressReleaseId: string) => Promise<
|
|
12
|
+
export declare const reindexPressRelease: (topicPressReleaseId: string) => Promise<{
|
|
13
|
+
taskID: number;
|
|
14
|
+
} | {
|
|
13
15
|
objectID: string;
|
|
14
16
|
name?: Partial<Record<import("../types").ContentfulLocale, string | null>> | undefined;
|
|
15
17
|
description?: string | undefined;
|
|
@@ -9,7 +9,9 @@ export declare type AlgoliaPressReviewRecord = {
|
|
|
9
9
|
asset?: {};
|
|
10
10
|
lastSyncDate?: string;
|
|
11
11
|
};
|
|
12
|
-
export declare const reindexPressReview: (topicPressReviewId: string) => Promise<
|
|
12
|
+
export declare const reindexPressReview: (topicPressReviewId: string) => Promise<{
|
|
13
|
+
taskID: number;
|
|
14
|
+
} | {
|
|
13
15
|
objectID: string;
|
|
14
16
|
name?: Partial<Record<import("../types").ContentfulLocale, string | null>> | undefined;
|
|
15
17
|
yearOfRelease?: string | undefined;
|
|
@@ -33,7 +33,9 @@ export declare type AlgoliaProductRecord = {
|
|
|
33
33
|
lastSyncDate?: string;
|
|
34
34
|
};
|
|
35
35
|
export declare const renderPDFGenerator: (topicProductId: string, multipleDestinations?: boolean) => Promise<void>;
|
|
36
|
-
export declare const reindexProduct: (topicProductId: string, generatePdf?: boolean) => Promise<
|
|
36
|
+
export declare const reindexProduct: (topicProductId: string, generatePdf?: boolean) => Promise<{
|
|
37
|
+
taskID: number;
|
|
38
|
+
} | {
|
|
37
39
|
objectID: string;
|
|
38
40
|
name?: string | undefined;
|
|
39
41
|
names?: Partial<Record<import("../types").ContentfulLocale, string | null>> | undefined;
|
|
@@ -18,7 +18,9 @@ export declare type AlgoliaProjectRecord = {
|
|
|
18
18
|
lastSyncDate?: string;
|
|
19
19
|
hideInRegions?: string[];
|
|
20
20
|
};
|
|
21
|
-
export declare const reindexProject: (topicProjectId: string) => Promise<
|
|
21
|
+
export declare const reindexProject: (topicProjectId: string) => Promise<{
|
|
22
|
+
taskID: number;
|
|
23
|
+
} | {
|
|
22
24
|
objectID: string;
|
|
23
25
|
name?: Partial<Record<import("../types").ContentfulLocale, string | null>> | undefined;
|
|
24
26
|
slugs?: {} | undefined;
|
|
@@ -16,7 +16,9 @@ export declare type AlgoliaStoryRecord = {
|
|
|
16
16
|
lastSyncDate?: string;
|
|
17
17
|
hideInRegions?: string[];
|
|
18
18
|
};
|
|
19
|
-
export declare const reindexStory: (topicStoryId: string) => Promise<
|
|
19
|
+
export declare const reindexStory: (topicStoryId: string) => Promise<{
|
|
20
|
+
taskID: number;
|
|
21
|
+
} | {
|
|
20
22
|
objectID: string;
|
|
21
23
|
name?: Partial<Record<import("../types").ContentfulLocale, string | null>> | undefined;
|
|
22
24
|
excerpt?: Partial<Record<import("../types").ContentfulLocale, string | null>> | undefined;
|
|
@@ -9,7 +9,9 @@ export declare const reindexSubFamilies: (offset?: number, limit?: number, catal
|
|
|
9
9
|
s3FilePath?: string | undefined;
|
|
10
10
|
total?: number | undefined;
|
|
11
11
|
}>;
|
|
12
|
-
export declare const reindexSubFamily: (topicSubFamilyEntryId: string) => Promise<
|
|
12
|
+
export declare const reindexSubFamily: (topicSubFamilyEntryId: string) => Promise<{
|
|
13
|
+
taskID: number;
|
|
14
|
+
} | {
|
|
13
15
|
objectID: string;
|
|
14
16
|
names: Partial<Record<import("../types").ContentfulLocale, string | null>>;
|
|
15
17
|
code: string;
|