@tricoteuses/assemblee 3.0.0 → 3.0.1
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.
|
@@ -2,75 +2,89 @@ import { z } from 'zod';
|
|
|
2
2
|
import { ReunionClean as Reunion } from '../schemas/clean/agendas.js';
|
|
3
3
|
import { DocumentClean as Document, DivisionClean as Division } from '../schemas/clean/dossiers_legislatifs.js';
|
|
4
4
|
declare const retrieveDocumentsParser: import('zod-opts').Parser<{
|
|
5
|
-
|
|
5
|
+
format: {
|
|
6
6
|
alias: string;
|
|
7
7
|
description: string;
|
|
8
|
-
type: z.ZodDefault<z.ZodArray<z.
|
|
8
|
+
type: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
9
9
|
};
|
|
10
|
-
|
|
10
|
+
"not-found": {
|
|
11
11
|
alias: string;
|
|
12
12
|
description: string;
|
|
13
13
|
type: z.ZodDefault<z.ZodBoolean>;
|
|
14
14
|
};
|
|
15
|
-
|
|
15
|
+
"document-type": {
|
|
16
16
|
alias: string;
|
|
17
17
|
description: string;
|
|
18
|
-
type: z.ZodDefault<z.
|
|
18
|
+
type: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
19
19
|
};
|
|
20
|
-
|
|
20
|
+
forceParseDocuments: {
|
|
21
21
|
description: string;
|
|
22
|
-
type: z.
|
|
22
|
+
type: z.ZodDefault<z.ZodBoolean>;
|
|
23
23
|
};
|
|
24
|
-
|
|
24
|
+
uid: {
|
|
25
25
|
alias: string;
|
|
26
26
|
description: string;
|
|
27
|
-
type: z.
|
|
27
|
+
type: z.ZodOptional<z.ZodString>;
|
|
28
28
|
};
|
|
29
|
-
|
|
29
|
+
categories: {
|
|
30
30
|
alias: string;
|
|
31
31
|
description: string;
|
|
32
32
|
type: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
33
33
|
};
|
|
34
|
-
|
|
34
|
+
legislature: {
|
|
35
|
+
alias: string;
|
|
36
|
+
description: string;
|
|
37
|
+
type: z.ZodDefault<z.ZodArray<z.ZodNumber>>;
|
|
38
|
+
};
|
|
39
|
+
silent: {
|
|
35
40
|
alias: string;
|
|
36
41
|
description: string;
|
|
37
42
|
type: z.ZodDefault<z.ZodBoolean>;
|
|
38
43
|
};
|
|
39
|
-
|
|
44
|
+
verbose: {
|
|
45
|
+
alias: string;
|
|
40
46
|
description: string;
|
|
41
47
|
type: z.ZodDefault<z.ZodBoolean>;
|
|
42
48
|
};
|
|
43
|
-
|
|
49
|
+
"only-recent": {
|
|
50
|
+
description: string;
|
|
51
|
+
type: z.ZodOptional<z.ZodNumber>;
|
|
52
|
+
};
|
|
53
|
+
keepDir: {
|
|
44
54
|
description: string;
|
|
45
55
|
type: z.ZodDefault<z.ZodBoolean>;
|
|
46
56
|
};
|
|
47
|
-
|
|
57
|
+
clone: {
|
|
48
58
|
alias: string;
|
|
49
59
|
description: string;
|
|
50
|
-
type: z.
|
|
60
|
+
type: z.ZodOptional<z.ZodString>;
|
|
51
61
|
};
|
|
52
|
-
|
|
62
|
+
commit: {
|
|
53
63
|
alias: string;
|
|
54
64
|
description: string;
|
|
55
65
|
type: z.ZodDefault<z.ZodBoolean>;
|
|
56
66
|
};
|
|
57
|
-
|
|
67
|
+
remote: {
|
|
68
|
+
alias: string;
|
|
58
69
|
description: string;
|
|
59
|
-
type: z.ZodDefault<z.
|
|
70
|
+
type: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
60
71
|
};
|
|
61
|
-
|
|
72
|
+
pull: {
|
|
62
73
|
alias: string;
|
|
63
74
|
description: string;
|
|
64
|
-
type: z.ZodDefault<z.
|
|
75
|
+
type: z.ZodDefault<z.ZodBoolean>;
|
|
65
76
|
};
|
|
66
|
-
|
|
77
|
+
fetchDocuments: {
|
|
67
78
|
description: string;
|
|
68
79
|
type: z.ZodDefault<z.ZodBoolean>;
|
|
69
80
|
};
|
|
70
|
-
|
|
71
|
-
alias: string;
|
|
81
|
+
parseDocuments: {
|
|
72
82
|
description: string;
|
|
73
|
-
type: z.
|
|
83
|
+
type: z.ZodDefault<z.ZodBoolean>;
|
|
84
|
+
};
|
|
85
|
+
fetchVideos: {
|
|
86
|
+
description: string;
|
|
87
|
+
type: z.ZodDefault<z.ZodBoolean>;
|
|
74
88
|
};
|
|
75
89
|
}, [{
|
|
76
90
|
description: string;
|
|
@@ -5,6 +5,11 @@ type ProcessDatasetArguments = {
|
|
|
5
5
|
options: Options;
|
|
6
6
|
};
|
|
7
7
|
declare const retrieveOpenDataParser: import('zod-opts').Parser<{
|
|
8
|
+
fetch: {
|
|
9
|
+
alias: string;
|
|
10
|
+
description: string;
|
|
11
|
+
type: import('zod').ZodDefault<import('zod').ZodBoolean>;
|
|
12
|
+
};
|
|
8
13
|
categories: {
|
|
9
14
|
alias: string;
|
|
10
15
|
description: string;
|
|
@@ -29,11 +34,42 @@ declare const retrieveOpenDataParser: import('zod-opts').Parser<{
|
|
|
29
34
|
description: string;
|
|
30
35
|
type: import('zod').ZodOptional<import('zod').ZodNumber>;
|
|
31
36
|
};
|
|
32
|
-
|
|
37
|
+
keepDir: {
|
|
38
|
+
description: string;
|
|
39
|
+
type: import('zod').ZodDefault<import('zod').ZodBoolean>;
|
|
40
|
+
};
|
|
41
|
+
clone: {
|
|
42
|
+
alias: string;
|
|
43
|
+
description: string;
|
|
44
|
+
type: import('zod').ZodOptional<import('zod').ZodString>;
|
|
45
|
+
};
|
|
46
|
+
commit: {
|
|
33
47
|
alias: string;
|
|
34
48
|
description: string;
|
|
35
49
|
type: import('zod').ZodDefault<import('zod').ZodBoolean>;
|
|
36
50
|
};
|
|
51
|
+
remote: {
|
|
52
|
+
alias: string;
|
|
53
|
+
description: string;
|
|
54
|
+
type: import('zod').ZodDefault<import('zod').ZodArray<import('zod').ZodString>>;
|
|
55
|
+
};
|
|
56
|
+
pull: {
|
|
57
|
+
alias: string;
|
|
58
|
+
description: string;
|
|
59
|
+
type: import('zod').ZodDefault<import('zod').ZodBoolean>;
|
|
60
|
+
};
|
|
61
|
+
fetchDocuments: {
|
|
62
|
+
description: string;
|
|
63
|
+
type: import('zod').ZodDefault<import('zod').ZodBoolean>;
|
|
64
|
+
};
|
|
65
|
+
parseDocuments: {
|
|
66
|
+
description: string;
|
|
67
|
+
type: import('zod').ZodDefault<import('zod').ZodBoolean>;
|
|
68
|
+
};
|
|
69
|
+
fetchVideos: {
|
|
70
|
+
description: string;
|
|
71
|
+
type: import('zod').ZodDefault<import('zod').ZodBoolean>;
|
|
72
|
+
};
|
|
37
73
|
}, [{
|
|
38
74
|
description: string;
|
|
39
75
|
type: import('zod').ZodString;
|
|
@@ -83,3 +83,65 @@ export declare const keepDirOption: {
|
|
|
83
83
|
description: string;
|
|
84
84
|
type: z.ZodDefault<z.ZodBoolean>;
|
|
85
85
|
};
|
|
86
|
+
export declare const commonOptions: {
|
|
87
|
+
readonly categories: {
|
|
88
|
+
alias: string;
|
|
89
|
+
description: string;
|
|
90
|
+
type: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
91
|
+
};
|
|
92
|
+
readonly legislature: {
|
|
93
|
+
alias: string;
|
|
94
|
+
description: string;
|
|
95
|
+
type: z.ZodDefault<z.ZodArray<z.ZodNumber>>;
|
|
96
|
+
};
|
|
97
|
+
readonly silent: {
|
|
98
|
+
alias: string;
|
|
99
|
+
description: string;
|
|
100
|
+
type: z.ZodDefault<z.ZodBoolean>;
|
|
101
|
+
};
|
|
102
|
+
readonly verbose: {
|
|
103
|
+
alias: string;
|
|
104
|
+
description: string;
|
|
105
|
+
type: z.ZodDefault<z.ZodBoolean>;
|
|
106
|
+
};
|
|
107
|
+
readonly "only-recent": {
|
|
108
|
+
description: string;
|
|
109
|
+
type: z.ZodOptional<z.ZodNumber>;
|
|
110
|
+
};
|
|
111
|
+
readonly keepDir: {
|
|
112
|
+
description: string;
|
|
113
|
+
type: z.ZodDefault<z.ZodBoolean>;
|
|
114
|
+
};
|
|
115
|
+
readonly clone: {
|
|
116
|
+
alias: string;
|
|
117
|
+
description: string;
|
|
118
|
+
type: z.ZodOptional<z.ZodString>;
|
|
119
|
+
};
|
|
120
|
+
readonly commit: {
|
|
121
|
+
alias: string;
|
|
122
|
+
description: string;
|
|
123
|
+
type: z.ZodDefault<z.ZodBoolean>;
|
|
124
|
+
};
|
|
125
|
+
readonly remote: {
|
|
126
|
+
alias: string;
|
|
127
|
+
description: string;
|
|
128
|
+
type: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
129
|
+
};
|
|
130
|
+
readonly pull: {
|
|
131
|
+
alias: string;
|
|
132
|
+
description: string;
|
|
133
|
+
type: z.ZodDefault<z.ZodBoolean>;
|
|
134
|
+
};
|
|
135
|
+
readonly fetchDocuments: {
|
|
136
|
+
description: string;
|
|
137
|
+
type: z.ZodDefault<z.ZodBoolean>;
|
|
138
|
+
};
|
|
139
|
+
readonly parseDocuments: {
|
|
140
|
+
description: string;
|
|
141
|
+
type: z.ZodDefault<z.ZodBoolean>;
|
|
142
|
+
};
|
|
143
|
+
readonly fetchVideos: {
|
|
144
|
+
description: string;
|
|
145
|
+
type: z.ZodDefault<z.ZodBoolean>;
|
|
146
|
+
};
|
|
147
|
+
};
|