@tricoteuses/assemblee 3.0.9 → 3.0.10
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.
|
@@ -45,6 +45,10 @@ declare const retrieveDocumentsParser: import('zod-opts').Parser<{
|
|
|
45
45
|
description: string;
|
|
46
46
|
type: z.ZodOptional<z.ZodNumber>;
|
|
47
47
|
};
|
|
48
|
+
skipReident: {
|
|
49
|
+
description: string;
|
|
50
|
+
type: z.ZodDefault<z.ZodBoolean>;
|
|
51
|
+
};
|
|
48
52
|
keepDir: {
|
|
49
53
|
description: string;
|
|
50
54
|
type: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -34,6 +34,10 @@ declare const retrieveOpenDataParser: import('zod-opts').Parser<{
|
|
|
34
34
|
description: string;
|
|
35
35
|
type: import('zod').ZodOptional<import('zod').ZodNumber>;
|
|
36
36
|
};
|
|
37
|
+
skipReident: {
|
|
38
|
+
description: string;
|
|
39
|
+
type: import('zod').ZodDefault<import('zod').ZodBoolean>;
|
|
40
|
+
};
|
|
37
41
|
keepDir: {
|
|
38
42
|
description: string;
|
|
39
43
|
type: import('zod').ZodDefault<import('zod').ZodBoolean>;
|
|
@@ -89,5 +93,5 @@ type Options = ReturnType<typeof retrieveOpenDataParser.parse>;
|
|
|
89
93
|
* @param {any} options - Options to control the processing behavior, such as fetching and silent mode.
|
|
90
94
|
* @returns {Promise<void>} A promise that resolves when the dataset processing is complete.
|
|
91
95
|
*/
|
|
92
|
-
export declare function processDataset({ dataset, dataDir, options: { fetch, silent }, }: ProcessDatasetArguments): Promise<void>;
|
|
96
|
+
export declare function processDataset({ dataset, dataDir, options: { fetch, silent, skipReident }, }: ProcessDatasetArguments): Promise<void>;
|
|
93
97
|
export {};
|
|
@@ -83,6 +83,10 @@ export declare const keepDirOption: {
|
|
|
83
83
|
description: string;
|
|
84
84
|
type: z.ZodDefault<z.ZodBoolean>;
|
|
85
85
|
};
|
|
86
|
+
export declare const skipReidentOption: {
|
|
87
|
+
description: string;
|
|
88
|
+
type: z.ZodDefault<z.ZodBoolean>;
|
|
89
|
+
};
|
|
86
90
|
export declare const commonOptions: {
|
|
87
91
|
readonly categories: {
|
|
88
92
|
alias: string;
|
|
@@ -108,6 +112,10 @@ export declare const commonOptions: {
|
|
|
108
112
|
description: string;
|
|
109
113
|
type: z.ZodOptional<z.ZodNumber>;
|
|
110
114
|
};
|
|
115
|
+
readonly skipReident: {
|
|
116
|
+
description: string;
|
|
117
|
+
type: z.ZodDefault<z.ZodBoolean>;
|
|
118
|
+
};
|
|
111
119
|
readonly keepDir: {
|
|
112
120
|
description: string;
|
|
113
121
|
type: z.ZodDefault<z.ZodBoolean>;
|