@platformatic/watt-extra 1.0.1-alpha.0 → 1.0.1-alpha.2
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/clients/compliance/compliance-types.d.ts +725 -1125
- package/clients/compliance/compliance.mjs +449 -780
- package/clients/compliance/compliance.openapi.json +447 -509
- package/lib/watt.js +13 -22
- package/package.json +9 -9
- package/plugins/compliancy.js +3 -9
- package/plugins/metadata.js +20 -0
- package/test/compliancy.test.js +2 -3
- package/test/fixtures/service-1/platformatic.json +8 -3
- package/test/helper.js +9 -2
- package/test/spawn.test.js +8 -1
|
@@ -5,1021 +5,812 @@ export interface FullResponse<T, U extends number> {
|
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
export type GetReportsRequest = {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
'where.ruleSet.contained'?: string;
|
|
92
|
-
'where.ruleSet.overlaps'?: string;
|
|
93
|
-
'where.or'?: Array<string>;
|
|
94
|
-
'orderby.applicationId'?: 'asc' | 'desc';
|
|
95
|
-
'orderby.createdAt'?: 'asc' | 'desc';
|
|
96
|
-
'orderby.id'?: 'asc' | 'desc';
|
|
97
|
-
'orderby.result'?: 'asc' | 'desc';
|
|
98
|
-
'orderby.ruleSet'?: 'asc' | 'desc';
|
|
99
|
-
}
|
|
8
|
+
'limit'?: number;
|
|
9
|
+
'offset'?: number;
|
|
10
|
+
'totalCount'?: boolean;
|
|
11
|
+
'fields'?: Array<'applicationId' | 'bundleId' | 'createdAt' | 'id' | 'result' | 'ruleSet'>;
|
|
12
|
+
'where.applicationId.eq'?: string;
|
|
13
|
+
'where.applicationId.neq'?: string;
|
|
14
|
+
'where.applicationId.gt'?: string;
|
|
15
|
+
'where.applicationId.gte'?: string;
|
|
16
|
+
'where.applicationId.lt'?: string;
|
|
17
|
+
'where.applicationId.lte'?: string;
|
|
18
|
+
'where.applicationId.like'?: string;
|
|
19
|
+
'where.applicationId.in'?: string;
|
|
20
|
+
'where.applicationId.nin'?: string;
|
|
21
|
+
'where.applicationId.contains'?: string;
|
|
22
|
+
'where.applicationId.contained'?: string;
|
|
23
|
+
'where.applicationId.overlaps'?: string;
|
|
24
|
+
'where.bundleId.eq'?: string;
|
|
25
|
+
'where.bundleId.neq'?: string;
|
|
26
|
+
'where.bundleId.gt'?: string;
|
|
27
|
+
'where.bundleId.gte'?: string;
|
|
28
|
+
'where.bundleId.lt'?: string;
|
|
29
|
+
'where.bundleId.lte'?: string;
|
|
30
|
+
'where.bundleId.like'?: string;
|
|
31
|
+
'where.bundleId.in'?: string;
|
|
32
|
+
'where.bundleId.nin'?: string;
|
|
33
|
+
'where.bundleId.contains'?: string;
|
|
34
|
+
'where.bundleId.contained'?: string;
|
|
35
|
+
'where.bundleId.overlaps'?: string;
|
|
36
|
+
'where.createdAt.eq'?: string;
|
|
37
|
+
'where.createdAt.neq'?: string;
|
|
38
|
+
'where.createdAt.gt'?: string;
|
|
39
|
+
'where.createdAt.gte'?: string;
|
|
40
|
+
'where.createdAt.lt'?: string;
|
|
41
|
+
'where.createdAt.lte'?: string;
|
|
42
|
+
'where.createdAt.like'?: string;
|
|
43
|
+
'where.createdAt.in'?: string;
|
|
44
|
+
'where.createdAt.nin'?: string;
|
|
45
|
+
'where.createdAt.contains'?: string;
|
|
46
|
+
'where.createdAt.contained'?: string;
|
|
47
|
+
'where.createdAt.overlaps'?: string;
|
|
48
|
+
'where.id.eq'?: string;
|
|
49
|
+
'where.id.neq'?: string;
|
|
50
|
+
'where.id.gt'?: string;
|
|
51
|
+
'where.id.gte'?: string;
|
|
52
|
+
'where.id.lt'?: string;
|
|
53
|
+
'where.id.lte'?: string;
|
|
54
|
+
'where.id.like'?: string;
|
|
55
|
+
'where.id.in'?: string;
|
|
56
|
+
'where.id.nin'?: string;
|
|
57
|
+
'where.id.contains'?: string;
|
|
58
|
+
'where.id.contained'?: string;
|
|
59
|
+
'where.id.overlaps'?: string;
|
|
60
|
+
'where.result.eq'?: boolean;
|
|
61
|
+
'where.result.neq'?: boolean;
|
|
62
|
+
'where.result.gt'?: boolean;
|
|
63
|
+
'where.result.gte'?: boolean;
|
|
64
|
+
'where.result.lt'?: boolean;
|
|
65
|
+
'where.result.lte'?: boolean;
|
|
66
|
+
'where.result.like'?: boolean;
|
|
67
|
+
'where.result.in'?: string;
|
|
68
|
+
'where.result.nin'?: string;
|
|
69
|
+
'where.result.contains'?: string;
|
|
70
|
+
'where.result.contained'?: string;
|
|
71
|
+
'where.result.overlaps'?: string;
|
|
72
|
+
'where.ruleSet.eq'?: string;
|
|
73
|
+
'where.ruleSet.neq'?: string;
|
|
74
|
+
'where.ruleSet.gt'?: string;
|
|
75
|
+
'where.ruleSet.gte'?: string;
|
|
76
|
+
'where.ruleSet.lt'?: string;
|
|
77
|
+
'where.ruleSet.lte'?: string;
|
|
78
|
+
'where.ruleSet.like'?: string;
|
|
79
|
+
'where.ruleSet.in'?: string;
|
|
80
|
+
'where.ruleSet.nin'?: string;
|
|
81
|
+
'where.ruleSet.contains'?: string;
|
|
82
|
+
'where.ruleSet.contained'?: string;
|
|
83
|
+
'where.ruleSet.overlaps'?: string;
|
|
84
|
+
'where.or'?: Array<string>;
|
|
85
|
+
'orderby.applicationId'?: 'asc' | 'desc';
|
|
86
|
+
'orderby.bundleId'?: 'asc' | 'desc';
|
|
87
|
+
'orderby.createdAt'?: 'asc' | 'desc';
|
|
88
|
+
'orderby.id'?: 'asc' | 'desc';
|
|
89
|
+
'orderby.result'?: 'asc' | 'desc';
|
|
90
|
+
'orderby.ruleSet'?: 'asc' | 'desc';
|
|
100
91
|
}
|
|
101
92
|
|
|
102
|
-
|
|
103
|
-
* Default Response
|
|
104
|
-
*/
|
|
105
|
-
export type GetReportsResponseOK = Array<{ 'id'?: string | null; 'applicationId'?: string | null; 'result'?: boolean | null; 'ruleSet'?: object | null; 'createdAt'?: string | null }>
|
|
93
|
+
export type GetReportsResponseOK = Array<{ 'id'?: string | null; 'applicationId'?: string | null; 'bundleId'?: string | null; 'result'?: boolean | null; 'ruleSet'?: object; 'createdAt'?: string | null }>
|
|
106
94
|
export type GetReportsResponses =
|
|
107
|
-
|
|
95
|
+
GetReportsResponseOK
|
|
108
96
|
|
|
109
97
|
export type CreateReportRequest = {
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
'result': boolean;
|
|
117
|
-
'ruleSet': object;
|
|
118
|
-
'createdAt'?: string | null;
|
|
119
|
-
}
|
|
98
|
+
'id'?: string;
|
|
99
|
+
'applicationId'?: string | null;
|
|
100
|
+
'bundleId'?: string | null;
|
|
101
|
+
'result': boolean;
|
|
102
|
+
'ruleSet': object;
|
|
103
|
+
'createdAt'?: string | null;
|
|
120
104
|
}
|
|
121
105
|
|
|
122
|
-
|
|
123
|
-
* A Report
|
|
124
|
-
*/
|
|
125
|
-
export type CreateReportResponseOK = { 'id'?: string | null; 'applicationId'?: string | null; 'result'?: boolean | null; 'ruleSet'?: object | null; 'createdAt'?: string | null }
|
|
106
|
+
export type CreateReportResponseOK = { 'id'?: string | null; 'applicationId'?: string | null; 'bundleId'?: string | null; 'result'?: boolean | null; 'ruleSet'?: object; 'createdAt'?: string | null }
|
|
126
107
|
export type CreateReportResponses =
|
|
127
|
-
|
|
108
|
+
CreateReportResponseOK
|
|
128
109
|
|
|
129
110
|
export type UpdateReportsRequest = {
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
111
|
+
'fields'?: Array<'applicationId' | 'bundleId' | 'createdAt' | 'id' | 'result' | 'ruleSet'>;
|
|
112
|
+
'where.applicationId.eq'?: string;
|
|
113
|
+
'where.applicationId.neq'?: string;
|
|
114
|
+
'where.applicationId.gt'?: string;
|
|
115
|
+
'where.applicationId.gte'?: string;
|
|
116
|
+
'where.applicationId.lt'?: string;
|
|
117
|
+
'where.applicationId.lte'?: string;
|
|
118
|
+
'where.applicationId.like'?: string;
|
|
119
|
+
'where.applicationId.in'?: string;
|
|
120
|
+
'where.applicationId.nin'?: string;
|
|
121
|
+
'where.applicationId.contains'?: string;
|
|
122
|
+
'where.applicationId.contained'?: string;
|
|
123
|
+
'where.applicationId.overlaps'?: string;
|
|
124
|
+
'where.bundleId.eq'?: string;
|
|
125
|
+
'where.bundleId.neq'?: string;
|
|
126
|
+
'where.bundleId.gt'?: string;
|
|
127
|
+
'where.bundleId.gte'?: string;
|
|
128
|
+
'where.bundleId.lt'?: string;
|
|
129
|
+
'where.bundleId.lte'?: string;
|
|
130
|
+
'where.bundleId.like'?: string;
|
|
131
|
+
'where.bundleId.in'?: string;
|
|
132
|
+
'where.bundleId.nin'?: string;
|
|
133
|
+
'where.bundleId.contains'?: string;
|
|
134
|
+
'where.bundleId.contained'?: string;
|
|
135
|
+
'where.bundleId.overlaps'?: string;
|
|
136
|
+
'where.createdAt.eq'?: string;
|
|
137
|
+
'where.createdAt.neq'?: string;
|
|
138
|
+
'where.createdAt.gt'?: string;
|
|
139
|
+
'where.createdAt.gte'?: string;
|
|
140
|
+
'where.createdAt.lt'?: string;
|
|
141
|
+
'where.createdAt.lte'?: string;
|
|
142
|
+
'where.createdAt.like'?: string;
|
|
143
|
+
'where.createdAt.in'?: string;
|
|
144
|
+
'where.createdAt.nin'?: string;
|
|
145
|
+
'where.createdAt.contains'?: string;
|
|
146
|
+
'where.createdAt.contained'?: string;
|
|
147
|
+
'where.createdAt.overlaps'?: string;
|
|
148
|
+
'where.id.eq'?: string;
|
|
149
|
+
'where.id.neq'?: string;
|
|
150
|
+
'where.id.gt'?: string;
|
|
151
|
+
'where.id.gte'?: string;
|
|
152
|
+
'where.id.lt'?: string;
|
|
153
|
+
'where.id.lte'?: string;
|
|
154
|
+
'where.id.like'?: string;
|
|
155
|
+
'where.id.in'?: string;
|
|
156
|
+
'where.id.nin'?: string;
|
|
157
|
+
'where.id.contains'?: string;
|
|
158
|
+
'where.id.contained'?: string;
|
|
159
|
+
'where.id.overlaps'?: string;
|
|
160
|
+
'where.result.eq'?: boolean;
|
|
161
|
+
'where.result.neq'?: boolean;
|
|
162
|
+
'where.result.gt'?: boolean;
|
|
163
|
+
'where.result.gte'?: boolean;
|
|
164
|
+
'where.result.lt'?: boolean;
|
|
165
|
+
'where.result.lte'?: boolean;
|
|
166
|
+
'where.result.like'?: boolean;
|
|
167
|
+
'where.result.in'?: string;
|
|
168
|
+
'where.result.nin'?: string;
|
|
169
|
+
'where.result.contains'?: string;
|
|
170
|
+
'where.result.contained'?: string;
|
|
171
|
+
'where.result.overlaps'?: string;
|
|
172
|
+
'where.ruleSet.eq'?: string;
|
|
173
|
+
'where.ruleSet.neq'?: string;
|
|
174
|
+
'where.ruleSet.gt'?: string;
|
|
175
|
+
'where.ruleSet.gte'?: string;
|
|
176
|
+
'where.ruleSet.lt'?: string;
|
|
177
|
+
'where.ruleSet.lte'?: string;
|
|
178
|
+
'where.ruleSet.like'?: string;
|
|
179
|
+
'where.ruleSet.in'?: string;
|
|
180
|
+
'where.ruleSet.nin'?: string;
|
|
181
|
+
'where.ruleSet.contains'?: string;
|
|
182
|
+
'where.ruleSet.contained'?: string;
|
|
183
|
+
'where.ruleSet.overlaps'?: string;
|
|
184
|
+
'where.or'?: Array<string>;
|
|
185
|
+
'id'?: string;
|
|
186
|
+
'applicationId'?: string | null;
|
|
187
|
+
'bundleId'?: string | null;
|
|
188
|
+
'result': boolean;
|
|
189
|
+
'ruleSet': object;
|
|
190
|
+
'createdAt'?: string | null;
|
|
206
191
|
}
|
|
207
192
|
|
|
208
|
-
|
|
209
|
-
* Default Response
|
|
210
|
-
*/
|
|
211
|
-
export type UpdateReportsResponseOK = Array<{ 'id'?: string | null; 'applicationId'?: string | null; 'result'?: boolean | null; 'ruleSet'?: object | null; 'createdAt'?: string | null }>
|
|
193
|
+
export type UpdateReportsResponseOK = Array<{ 'id'?: string | null; 'applicationId'?: string | null; 'bundleId'?: string | null; 'result'?: boolean | null; 'ruleSet'?: object; 'createdAt'?: string | null }>
|
|
212
194
|
export type UpdateReportsResponses =
|
|
213
|
-
|
|
195
|
+
UpdateReportsResponseOK
|
|
214
196
|
|
|
215
197
|
export type GetReportByIdRequest = {
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
}
|
|
219
|
-
query?: {
|
|
220
|
-
'fields'?: Array<'applicationId' | 'createdAt' | 'id' | 'result' | 'ruleSet'>;
|
|
221
|
-
}
|
|
198
|
+
'fields'?: Array<'applicationId' | 'bundleId' | 'createdAt' | 'id' | 'result' | 'ruleSet'>;
|
|
199
|
+
'id': string;
|
|
222
200
|
}
|
|
223
201
|
|
|
224
|
-
|
|
225
|
-
* A Report
|
|
226
|
-
*/
|
|
227
|
-
export type GetReportByIdResponseOK = { 'id'?: string | null; 'applicationId'?: string | null; 'result'?: boolean | null; 'ruleSet'?: object | null; 'createdAt'?: string | null }
|
|
202
|
+
export type GetReportByIdResponseOK = { 'id'?: string | null; 'applicationId'?: string | null; 'bundleId'?: string | null; 'result'?: boolean | null; 'ruleSet'?: object; 'createdAt'?: string | null }
|
|
228
203
|
export type GetReportByIdResponses =
|
|
229
|
-
|
|
204
|
+
GetReportByIdResponseOK
|
|
230
205
|
|
|
231
206
|
export type UpdateReportRequest = {
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
'applicationId'?: string | null;
|
|
240
|
-
'result': boolean;
|
|
241
|
-
'ruleSet': object;
|
|
242
|
-
'createdAt'?: string | null;
|
|
243
|
-
}
|
|
207
|
+
'fields'?: Array<'applicationId' | 'bundleId' | 'createdAt' | 'id' | 'result' | 'ruleSet'>;
|
|
208
|
+
'id': string;
|
|
209
|
+
'applicationId'?: string | null;
|
|
210
|
+
'bundleId'?: string | null;
|
|
211
|
+
'result': boolean;
|
|
212
|
+
'ruleSet': object;
|
|
213
|
+
'createdAt'?: string | null;
|
|
244
214
|
}
|
|
245
215
|
|
|
246
|
-
|
|
247
|
-
* A Report
|
|
248
|
-
*/
|
|
249
|
-
export type UpdateReportResponseOK = { 'id'?: string | null; 'applicationId'?: string | null; 'result'?: boolean | null; 'ruleSet'?: object | null; 'createdAt'?: string | null }
|
|
216
|
+
export type UpdateReportResponseOK = { 'id'?: string | null; 'applicationId'?: string | null; 'bundleId'?: string | null; 'result'?: boolean | null; 'ruleSet'?: object; 'createdAt'?: string | null }
|
|
250
217
|
export type UpdateReportResponses =
|
|
251
|
-
|
|
218
|
+
UpdateReportResponseOK
|
|
252
219
|
|
|
253
220
|
export type DeleteReportsRequest = {
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
}
|
|
257
|
-
query?: {
|
|
258
|
-
'fields'?: Array<'applicationId' | 'createdAt' | 'id' | 'result' | 'ruleSet'>;
|
|
259
|
-
}
|
|
221
|
+
'fields'?: Array<'applicationId' | 'bundleId' | 'createdAt' | 'id' | 'result' | 'ruleSet'>;
|
|
222
|
+
'id': string;
|
|
260
223
|
}
|
|
261
224
|
|
|
262
|
-
|
|
263
|
-
* A Report
|
|
264
|
-
*/
|
|
265
|
-
export type DeleteReportsResponseOK = { 'id'?: string | null; 'applicationId'?: string | null; 'result'?: boolean | null; 'ruleSet'?: object | null; 'createdAt'?: string | null }
|
|
225
|
+
export type DeleteReportsResponseOK = { 'id'?: string | null; 'applicationId'?: string | null; 'bundleId'?: string | null; 'result'?: boolean | null; 'ruleSet'?: object; 'createdAt'?: string | null }
|
|
266
226
|
export type DeleteReportsResponses =
|
|
267
|
-
|
|
227
|
+
DeleteReportsResponseOK
|
|
268
228
|
|
|
269
229
|
export type CreateRuleRequest = {
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
'description'?: string | null;
|
|
277
|
-
'label'?: string | null;
|
|
278
|
-
'config': object;
|
|
279
|
-
'createdAt'?: string | null;
|
|
280
|
-
}
|
|
230
|
+
'id'?: string;
|
|
231
|
+
'name'?: string | null;
|
|
232
|
+
'description'?: string | null;
|
|
233
|
+
'label'?: string | null;
|
|
234
|
+
'config': object;
|
|
235
|
+
'createdAt'?: string | null;
|
|
281
236
|
}
|
|
282
237
|
|
|
283
|
-
|
|
284
|
-
* A Rule
|
|
285
|
-
*/
|
|
286
|
-
export type CreateRuleResponseOK = { 'id'?: string | null; 'name'?: string | null; 'description'?: string | null; 'label'?: string | null; 'config'?: object | null; 'createdAt'?: string | null }
|
|
238
|
+
export type CreateRuleResponseOK = { 'id'?: string | null; 'name'?: string | null; 'description'?: string | null; 'label'?: string | null; 'config'?: object; 'createdAt'?: string | null }
|
|
287
239
|
export type CreateRuleResponses =
|
|
288
|
-
|
|
240
|
+
CreateRuleResponseOK
|
|
289
241
|
|
|
290
242
|
export type UpdateRulesRequest = {
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
'where.or'?: Array<string>;
|
|
372
|
-
}
|
|
373
|
-
body: {
|
|
374
|
-
'id'?: string;
|
|
375
|
-
'name'?: string | null;
|
|
376
|
-
'description'?: string | null;
|
|
377
|
-
'label'?: string | null;
|
|
378
|
-
'config': object;
|
|
379
|
-
'createdAt'?: string | null;
|
|
380
|
-
}
|
|
243
|
+
'fields'?: Array<'config' | 'createdAt' | 'description' | 'id' | 'label' | 'name'>;
|
|
244
|
+
'where.config.eq'?: string;
|
|
245
|
+
'where.config.neq'?: string;
|
|
246
|
+
'where.config.gt'?: string;
|
|
247
|
+
'where.config.gte'?: string;
|
|
248
|
+
'where.config.lt'?: string;
|
|
249
|
+
'where.config.lte'?: string;
|
|
250
|
+
'where.config.like'?: string;
|
|
251
|
+
'where.config.in'?: string;
|
|
252
|
+
'where.config.nin'?: string;
|
|
253
|
+
'where.config.contains'?: string;
|
|
254
|
+
'where.config.contained'?: string;
|
|
255
|
+
'where.config.overlaps'?: string;
|
|
256
|
+
'where.createdAt.eq'?: string;
|
|
257
|
+
'where.createdAt.neq'?: string;
|
|
258
|
+
'where.createdAt.gt'?: string;
|
|
259
|
+
'where.createdAt.gte'?: string;
|
|
260
|
+
'where.createdAt.lt'?: string;
|
|
261
|
+
'where.createdAt.lte'?: string;
|
|
262
|
+
'where.createdAt.like'?: string;
|
|
263
|
+
'where.createdAt.in'?: string;
|
|
264
|
+
'where.createdAt.nin'?: string;
|
|
265
|
+
'where.createdAt.contains'?: string;
|
|
266
|
+
'where.createdAt.contained'?: string;
|
|
267
|
+
'where.createdAt.overlaps'?: string;
|
|
268
|
+
'where.description.eq'?: string;
|
|
269
|
+
'where.description.neq'?: string;
|
|
270
|
+
'where.description.gt'?: string;
|
|
271
|
+
'where.description.gte'?: string;
|
|
272
|
+
'where.description.lt'?: string;
|
|
273
|
+
'where.description.lte'?: string;
|
|
274
|
+
'where.description.like'?: string;
|
|
275
|
+
'where.description.in'?: string;
|
|
276
|
+
'where.description.nin'?: string;
|
|
277
|
+
'where.description.contains'?: string;
|
|
278
|
+
'where.description.contained'?: string;
|
|
279
|
+
'where.description.overlaps'?: string;
|
|
280
|
+
'where.id.eq'?: string;
|
|
281
|
+
'where.id.neq'?: string;
|
|
282
|
+
'where.id.gt'?: string;
|
|
283
|
+
'where.id.gte'?: string;
|
|
284
|
+
'where.id.lt'?: string;
|
|
285
|
+
'where.id.lte'?: string;
|
|
286
|
+
'where.id.like'?: string;
|
|
287
|
+
'where.id.in'?: string;
|
|
288
|
+
'where.id.nin'?: string;
|
|
289
|
+
'where.id.contains'?: string;
|
|
290
|
+
'where.id.contained'?: string;
|
|
291
|
+
'where.id.overlaps'?: string;
|
|
292
|
+
'where.label.eq'?: string;
|
|
293
|
+
'where.label.neq'?: string;
|
|
294
|
+
'where.label.gt'?: string;
|
|
295
|
+
'where.label.gte'?: string;
|
|
296
|
+
'where.label.lt'?: string;
|
|
297
|
+
'where.label.lte'?: string;
|
|
298
|
+
'where.label.like'?: string;
|
|
299
|
+
'where.label.in'?: string;
|
|
300
|
+
'where.label.nin'?: string;
|
|
301
|
+
'where.label.contains'?: string;
|
|
302
|
+
'where.label.contained'?: string;
|
|
303
|
+
'where.label.overlaps'?: string;
|
|
304
|
+
'where.name.eq'?: string;
|
|
305
|
+
'where.name.neq'?: string;
|
|
306
|
+
'where.name.gt'?: string;
|
|
307
|
+
'where.name.gte'?: string;
|
|
308
|
+
'where.name.lt'?: string;
|
|
309
|
+
'where.name.lte'?: string;
|
|
310
|
+
'where.name.like'?: string;
|
|
311
|
+
'where.name.in'?: string;
|
|
312
|
+
'where.name.nin'?: string;
|
|
313
|
+
'where.name.contains'?: string;
|
|
314
|
+
'where.name.contained'?: string;
|
|
315
|
+
'where.name.overlaps'?: string;
|
|
316
|
+
'where.or'?: Array<string>;
|
|
317
|
+
'id'?: string;
|
|
318
|
+
'name'?: string | null;
|
|
319
|
+
'description'?: string | null;
|
|
320
|
+
'label'?: string | null;
|
|
321
|
+
'config': object;
|
|
322
|
+
'createdAt'?: string | null;
|
|
381
323
|
}
|
|
382
324
|
|
|
383
|
-
|
|
384
|
-
* Default Response
|
|
385
|
-
*/
|
|
386
|
-
export type UpdateRulesResponseOK = Array<{ 'id'?: string | null; 'name'?: string | null; 'description'?: string | null; 'label'?: string | null; 'config'?: object | null; 'createdAt'?: string | null }>
|
|
325
|
+
export type UpdateRulesResponseOK = Array<{ 'id'?: string | null; 'name'?: string | null; 'description'?: string | null; 'label'?: string | null; 'config'?: object; 'createdAt'?: string | null }>
|
|
387
326
|
export type UpdateRulesResponses =
|
|
388
|
-
|
|
327
|
+
UpdateRulesResponseOK
|
|
389
328
|
|
|
390
329
|
export type GetRuleByIdRequest = {
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
}
|
|
394
|
-
query?: {
|
|
395
|
-
'fields'?: Array<'config' | 'createdAt' | 'description' | 'id' | 'label' | 'name'>;
|
|
396
|
-
}
|
|
330
|
+
'fields'?: Array<'config' | 'createdAt' | 'description' | 'id' | 'label' | 'name'>;
|
|
331
|
+
'id': string;
|
|
397
332
|
}
|
|
398
333
|
|
|
399
|
-
|
|
400
|
-
* A Rule
|
|
401
|
-
*/
|
|
402
|
-
export type GetRuleByIdResponseOK = { 'id'?: string | null; 'name'?: string | null; 'description'?: string | null; 'label'?: string | null; 'config'?: object | null; 'createdAt'?: string | null }
|
|
334
|
+
export type GetRuleByIdResponseOK = { 'id'?: string | null; 'name'?: string | null; 'description'?: string | null; 'label'?: string | null; 'config'?: object; 'createdAt'?: string | null }
|
|
403
335
|
export type GetRuleByIdResponses =
|
|
404
|
-
|
|
336
|
+
GetRuleByIdResponseOK
|
|
405
337
|
|
|
406
338
|
export type UpdateRuleRequest = {
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
'name'?: string | null;
|
|
415
|
-
'description'?: string | null;
|
|
416
|
-
'label'?: string | null;
|
|
417
|
-
'config': object;
|
|
418
|
-
'createdAt'?: string | null;
|
|
419
|
-
}
|
|
339
|
+
'fields'?: Array<'config' | 'createdAt' | 'description' | 'id' | 'label' | 'name'>;
|
|
340
|
+
'id': string;
|
|
341
|
+
'name'?: string | null;
|
|
342
|
+
'description'?: string | null;
|
|
343
|
+
'label'?: string | null;
|
|
344
|
+
'config': object;
|
|
345
|
+
'createdAt'?: string | null;
|
|
420
346
|
}
|
|
421
347
|
|
|
422
|
-
|
|
423
|
-
* A Rule
|
|
424
|
-
*/
|
|
425
|
-
export type UpdateRuleResponseOK = { 'id'?: string | null; 'name'?: string | null; 'description'?: string | null; 'label'?: string | null; 'config'?: object | null; 'createdAt'?: string | null }
|
|
348
|
+
export type UpdateRuleResponseOK = { 'id'?: string | null; 'name'?: string | null; 'description'?: string | null; 'label'?: string | null; 'config'?: object; 'createdAt'?: string | null }
|
|
426
349
|
export type UpdateRuleResponses =
|
|
427
|
-
|
|
350
|
+
UpdateRuleResponseOK
|
|
428
351
|
|
|
429
352
|
export type DeleteRulesRequest = {
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
}
|
|
433
|
-
query?: {
|
|
434
|
-
'fields'?: Array<'config' | 'createdAt' | 'description' | 'id' | 'label' | 'name'>;
|
|
435
|
-
}
|
|
353
|
+
'fields'?: Array<'config' | 'createdAt' | 'description' | 'id' | 'label' | 'name'>;
|
|
354
|
+
'id': string;
|
|
436
355
|
}
|
|
437
356
|
|
|
438
|
-
|
|
439
|
-
* A Rule
|
|
440
|
-
*/
|
|
441
|
-
export type DeleteRulesResponseOK = { 'id'?: string | null; 'name'?: string | null; 'description'?: string | null; 'label'?: string | null; 'config'?: object | null; 'createdAt'?: string | null }
|
|
357
|
+
export type DeleteRulesResponseOK = { 'id'?: string | null; 'name'?: string | null; 'description'?: string | null; 'label'?: string | null; 'config'?: object; 'createdAt'?: string | null }
|
|
442
358
|
export type DeleteRulesResponses =
|
|
443
|
-
|
|
359
|
+
DeleteRulesResponseOK
|
|
444
360
|
|
|
445
361
|
export type GetRuleConfigsForRuleRequest = {
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
}
|
|
449
|
-
query?: {
|
|
450
|
-
/**
|
|
451
|
-
* Limit will be applied by default if not passed. If the provided value exceeds the maximum allowed value a validation error will be thrown
|
|
452
|
-
*/
|
|
453
|
-
'limit'?: number;
|
|
454
|
-
'offset'?: number;
|
|
455
|
-
'fields'?: Array<'applicationId' | 'createdAt' | 'enabled' | 'id' | 'options' | 'ruleId' | 'type'>;
|
|
456
|
-
'totalCount'?: boolean;
|
|
457
|
-
}
|
|
362
|
+
'fields'?: Array<'applicationId' | 'createdAt' | 'enabled' | 'id' | 'options' | 'ruleId' | 'type'>;
|
|
363
|
+
'id': string;
|
|
458
364
|
}
|
|
459
365
|
|
|
460
|
-
|
|
461
|
-
* Default Response
|
|
462
|
-
*/
|
|
463
|
-
export type GetRuleConfigsForRuleResponseOK = Array<{ 'id'?: string | null; 'type'?: 'global' | 'local' | null; 'applicationId'?: string | null; 'enabled'?: boolean | null; 'ruleId'?: string | null; 'options'?: object | null; 'createdAt'?: string | null }>
|
|
366
|
+
export type GetRuleConfigsForRuleResponseOK = Array<{ 'id'?: string | null; 'type'?: 'global' | 'local'; 'applicationId'?: string | null; 'enabled'?: boolean | null; 'ruleId'?: string | null; 'options'?: object; 'createdAt'?: string | null }>
|
|
464
367
|
export type GetRuleConfigsForRuleResponses =
|
|
465
|
-
|
|
368
|
+
GetRuleConfigsForRuleResponseOK
|
|
466
369
|
|
|
467
370
|
export type GetRuleConfigsRequest = {
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
'where.ruleId.contained'?: string;
|
|
565
|
-
'where.ruleId.overlaps'?: string;
|
|
566
|
-
'where.type.eq'?: 'global' | 'local';
|
|
567
|
-
'where.type.neq'?: 'global' | 'local';
|
|
568
|
-
'where.type.gt'?: 'global' | 'local';
|
|
569
|
-
'where.type.gte'?: 'global' | 'local';
|
|
570
|
-
'where.type.lt'?: 'global' | 'local';
|
|
571
|
-
'where.type.lte'?: 'global' | 'local';
|
|
572
|
-
'where.type.like'?: 'global' | 'local';
|
|
573
|
-
'where.type.ilike'?: 'global' | 'local';
|
|
574
|
-
'where.type.in'?: string;
|
|
575
|
-
'where.type.nin'?: string;
|
|
576
|
-
'where.type.contains'?: string;
|
|
577
|
-
'where.type.contained'?: string;
|
|
578
|
-
'where.type.overlaps'?: string;
|
|
579
|
-
'where.or'?: Array<string>;
|
|
580
|
-
'orderby.applicationId'?: 'asc' | 'desc';
|
|
581
|
-
'orderby.createdAt'?: 'asc' | 'desc';
|
|
582
|
-
'orderby.enabled'?: 'asc' | 'desc';
|
|
583
|
-
'orderby.id'?: 'asc' | 'desc';
|
|
584
|
-
'orderby.options'?: 'asc' | 'desc';
|
|
585
|
-
'orderby.ruleId'?: 'asc' | 'desc';
|
|
586
|
-
'orderby.type'?: 'asc' | 'desc';
|
|
587
|
-
}
|
|
371
|
+
'limit'?: number;
|
|
372
|
+
'offset'?: number;
|
|
373
|
+
'totalCount'?: boolean;
|
|
374
|
+
'fields'?: Array<'applicationId' | 'createdAt' | 'enabled' | 'id' | 'options' | 'ruleId' | 'type'>;
|
|
375
|
+
'where.applicationId.eq'?: string;
|
|
376
|
+
'where.applicationId.neq'?: string;
|
|
377
|
+
'where.applicationId.gt'?: string;
|
|
378
|
+
'where.applicationId.gte'?: string;
|
|
379
|
+
'where.applicationId.lt'?: string;
|
|
380
|
+
'where.applicationId.lte'?: string;
|
|
381
|
+
'where.applicationId.like'?: string;
|
|
382
|
+
'where.applicationId.in'?: string;
|
|
383
|
+
'where.applicationId.nin'?: string;
|
|
384
|
+
'where.applicationId.contains'?: string;
|
|
385
|
+
'where.applicationId.contained'?: string;
|
|
386
|
+
'where.applicationId.overlaps'?: string;
|
|
387
|
+
'where.createdAt.eq'?: string;
|
|
388
|
+
'where.createdAt.neq'?: string;
|
|
389
|
+
'where.createdAt.gt'?: string;
|
|
390
|
+
'where.createdAt.gte'?: string;
|
|
391
|
+
'where.createdAt.lt'?: string;
|
|
392
|
+
'where.createdAt.lte'?: string;
|
|
393
|
+
'where.createdAt.like'?: string;
|
|
394
|
+
'where.createdAt.in'?: string;
|
|
395
|
+
'where.createdAt.nin'?: string;
|
|
396
|
+
'where.createdAt.contains'?: string;
|
|
397
|
+
'where.createdAt.contained'?: string;
|
|
398
|
+
'where.createdAt.overlaps'?: string;
|
|
399
|
+
'where.enabled.eq'?: boolean;
|
|
400
|
+
'where.enabled.neq'?: boolean;
|
|
401
|
+
'where.enabled.gt'?: boolean;
|
|
402
|
+
'where.enabled.gte'?: boolean;
|
|
403
|
+
'where.enabled.lt'?: boolean;
|
|
404
|
+
'where.enabled.lte'?: boolean;
|
|
405
|
+
'where.enabled.like'?: boolean;
|
|
406
|
+
'where.enabled.in'?: string;
|
|
407
|
+
'where.enabled.nin'?: string;
|
|
408
|
+
'where.enabled.contains'?: string;
|
|
409
|
+
'where.enabled.contained'?: string;
|
|
410
|
+
'where.enabled.overlaps'?: string;
|
|
411
|
+
'where.id.eq'?: string;
|
|
412
|
+
'where.id.neq'?: string;
|
|
413
|
+
'where.id.gt'?: string;
|
|
414
|
+
'where.id.gte'?: string;
|
|
415
|
+
'where.id.lt'?: string;
|
|
416
|
+
'where.id.lte'?: string;
|
|
417
|
+
'where.id.like'?: string;
|
|
418
|
+
'where.id.in'?: string;
|
|
419
|
+
'where.id.nin'?: string;
|
|
420
|
+
'where.id.contains'?: string;
|
|
421
|
+
'where.id.contained'?: string;
|
|
422
|
+
'where.id.overlaps'?: string;
|
|
423
|
+
'where.options.eq'?: string;
|
|
424
|
+
'where.options.neq'?: string;
|
|
425
|
+
'where.options.gt'?: string;
|
|
426
|
+
'where.options.gte'?: string;
|
|
427
|
+
'where.options.lt'?: string;
|
|
428
|
+
'where.options.lte'?: string;
|
|
429
|
+
'where.options.like'?: string;
|
|
430
|
+
'where.options.in'?: string;
|
|
431
|
+
'where.options.nin'?: string;
|
|
432
|
+
'where.options.contains'?: string;
|
|
433
|
+
'where.options.contained'?: string;
|
|
434
|
+
'where.options.overlaps'?: string;
|
|
435
|
+
'where.ruleId.eq'?: string;
|
|
436
|
+
'where.ruleId.neq'?: string;
|
|
437
|
+
'where.ruleId.gt'?: string;
|
|
438
|
+
'where.ruleId.gte'?: string;
|
|
439
|
+
'where.ruleId.lt'?: string;
|
|
440
|
+
'where.ruleId.lte'?: string;
|
|
441
|
+
'where.ruleId.like'?: string;
|
|
442
|
+
'where.ruleId.in'?: string;
|
|
443
|
+
'where.ruleId.nin'?: string;
|
|
444
|
+
'where.ruleId.contains'?: string;
|
|
445
|
+
'where.ruleId.contained'?: string;
|
|
446
|
+
'where.ruleId.overlaps'?: string;
|
|
447
|
+
'where.type.eq'?: 'global' | 'local';
|
|
448
|
+
'where.type.neq'?: 'global' | 'local';
|
|
449
|
+
'where.type.gt'?: 'global' | 'local';
|
|
450
|
+
'where.type.gte'?: 'global' | 'local';
|
|
451
|
+
'where.type.lt'?: 'global' | 'local';
|
|
452
|
+
'where.type.lte'?: 'global' | 'local';
|
|
453
|
+
'where.type.like'?: 'global' | 'local';
|
|
454
|
+
'where.type.in'?: string;
|
|
455
|
+
'where.type.nin'?: string;
|
|
456
|
+
'where.type.contains'?: string;
|
|
457
|
+
'where.type.contained'?: string;
|
|
458
|
+
'where.type.overlaps'?: string;
|
|
459
|
+
'where.or'?: Array<string>;
|
|
460
|
+
'orderby.applicationId'?: 'asc' | 'desc';
|
|
461
|
+
'orderby.createdAt'?: 'asc' | 'desc';
|
|
462
|
+
'orderby.enabled'?: 'asc' | 'desc';
|
|
463
|
+
'orderby.id'?: 'asc' | 'desc';
|
|
464
|
+
'orderby.options'?: 'asc' | 'desc';
|
|
465
|
+
'orderby.ruleId'?: 'asc' | 'desc';
|
|
466
|
+
'orderby.type'?: 'asc' | 'desc';
|
|
588
467
|
}
|
|
589
468
|
|
|
590
|
-
|
|
591
|
-
* Default Response
|
|
592
|
-
*/
|
|
593
|
-
export type GetRuleConfigsResponseOK = Array<{ 'id'?: string | null; 'type'?: 'global' | 'local' | null; 'applicationId'?: string | null; 'enabled'?: boolean | null; 'ruleId'?: string | null; 'options'?: object | null; 'createdAt'?: string | null }>
|
|
469
|
+
export type GetRuleConfigsResponseOK = Array<{ 'id'?: string | null; 'type'?: 'global' | 'local'; 'applicationId'?: string | null; 'enabled'?: boolean | null; 'ruleId'?: string | null; 'options'?: object; 'createdAt'?: string | null }>
|
|
594
470
|
export type GetRuleConfigsResponses =
|
|
595
|
-
|
|
471
|
+
GetRuleConfigsResponseOK
|
|
596
472
|
|
|
597
473
|
export type CreateRuleConfigRequest = {
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
'enabled'?: boolean | null;
|
|
606
|
-
'ruleId': string;
|
|
607
|
-
'options': object;
|
|
608
|
-
'createdAt'?: string | null;
|
|
609
|
-
}
|
|
474
|
+
'id'?: string;
|
|
475
|
+
'type': 'global' | 'local';
|
|
476
|
+
'applicationId'?: string | null;
|
|
477
|
+
'enabled'?: boolean | null;
|
|
478
|
+
'ruleId': string;
|
|
479
|
+
'options': object;
|
|
480
|
+
'createdAt'?: string | null;
|
|
610
481
|
}
|
|
611
482
|
|
|
612
|
-
|
|
613
|
-
* A RuleConfig
|
|
614
|
-
*/
|
|
615
|
-
export type CreateRuleConfigResponseOK = { 'id'?: string | null; 'type'?: 'global' | 'local' | null; 'applicationId'?: string | null; 'enabled'?: boolean | null; 'ruleId'?: string | null; 'options'?: object | null; 'createdAt'?: string | null }
|
|
483
|
+
export type CreateRuleConfigResponseOK = { 'id'?: string | null; 'type'?: 'global' | 'local'; 'applicationId'?: string | null; 'enabled'?: boolean | null; 'ruleId'?: string | null; 'options'?: object; 'createdAt'?: string | null }
|
|
616
484
|
export type CreateRuleConfigResponses =
|
|
617
|
-
|
|
485
|
+
CreateRuleConfigResponseOK
|
|
618
486
|
|
|
619
487
|
export type UpdateRuleConfigsRequest = {
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
'where.or'?: Array<string>;
|
|
714
|
-
}
|
|
715
|
-
body: {
|
|
716
|
-
'id'?: string;
|
|
717
|
-
'type': 'global' | 'local';
|
|
718
|
-
'applicationId'?: string | null;
|
|
719
|
-
'enabled'?: boolean | null;
|
|
720
|
-
'ruleId': string;
|
|
721
|
-
'options': object;
|
|
722
|
-
'createdAt'?: string | null;
|
|
723
|
-
}
|
|
488
|
+
'fields'?: Array<'applicationId' | 'createdAt' | 'enabled' | 'id' | 'options' | 'ruleId' | 'type'>;
|
|
489
|
+
'where.applicationId.eq'?: string;
|
|
490
|
+
'where.applicationId.neq'?: string;
|
|
491
|
+
'where.applicationId.gt'?: string;
|
|
492
|
+
'where.applicationId.gte'?: string;
|
|
493
|
+
'where.applicationId.lt'?: string;
|
|
494
|
+
'where.applicationId.lte'?: string;
|
|
495
|
+
'where.applicationId.like'?: string;
|
|
496
|
+
'where.applicationId.in'?: string;
|
|
497
|
+
'where.applicationId.nin'?: string;
|
|
498
|
+
'where.applicationId.contains'?: string;
|
|
499
|
+
'where.applicationId.contained'?: string;
|
|
500
|
+
'where.applicationId.overlaps'?: string;
|
|
501
|
+
'where.createdAt.eq'?: string;
|
|
502
|
+
'where.createdAt.neq'?: string;
|
|
503
|
+
'where.createdAt.gt'?: string;
|
|
504
|
+
'where.createdAt.gte'?: string;
|
|
505
|
+
'where.createdAt.lt'?: string;
|
|
506
|
+
'where.createdAt.lte'?: string;
|
|
507
|
+
'where.createdAt.like'?: string;
|
|
508
|
+
'where.createdAt.in'?: string;
|
|
509
|
+
'where.createdAt.nin'?: string;
|
|
510
|
+
'where.createdAt.contains'?: string;
|
|
511
|
+
'where.createdAt.contained'?: string;
|
|
512
|
+
'where.createdAt.overlaps'?: string;
|
|
513
|
+
'where.enabled.eq'?: boolean;
|
|
514
|
+
'where.enabled.neq'?: boolean;
|
|
515
|
+
'where.enabled.gt'?: boolean;
|
|
516
|
+
'where.enabled.gte'?: boolean;
|
|
517
|
+
'where.enabled.lt'?: boolean;
|
|
518
|
+
'where.enabled.lte'?: boolean;
|
|
519
|
+
'where.enabled.like'?: boolean;
|
|
520
|
+
'where.enabled.in'?: string;
|
|
521
|
+
'where.enabled.nin'?: string;
|
|
522
|
+
'where.enabled.contains'?: string;
|
|
523
|
+
'where.enabled.contained'?: string;
|
|
524
|
+
'where.enabled.overlaps'?: string;
|
|
525
|
+
'where.id.eq'?: string;
|
|
526
|
+
'where.id.neq'?: string;
|
|
527
|
+
'where.id.gt'?: string;
|
|
528
|
+
'where.id.gte'?: string;
|
|
529
|
+
'where.id.lt'?: string;
|
|
530
|
+
'where.id.lte'?: string;
|
|
531
|
+
'where.id.like'?: string;
|
|
532
|
+
'where.id.in'?: string;
|
|
533
|
+
'where.id.nin'?: string;
|
|
534
|
+
'where.id.contains'?: string;
|
|
535
|
+
'where.id.contained'?: string;
|
|
536
|
+
'where.id.overlaps'?: string;
|
|
537
|
+
'where.options.eq'?: string;
|
|
538
|
+
'where.options.neq'?: string;
|
|
539
|
+
'where.options.gt'?: string;
|
|
540
|
+
'where.options.gte'?: string;
|
|
541
|
+
'where.options.lt'?: string;
|
|
542
|
+
'where.options.lte'?: string;
|
|
543
|
+
'where.options.like'?: string;
|
|
544
|
+
'where.options.in'?: string;
|
|
545
|
+
'where.options.nin'?: string;
|
|
546
|
+
'where.options.contains'?: string;
|
|
547
|
+
'where.options.contained'?: string;
|
|
548
|
+
'where.options.overlaps'?: string;
|
|
549
|
+
'where.ruleId.eq'?: string;
|
|
550
|
+
'where.ruleId.neq'?: string;
|
|
551
|
+
'where.ruleId.gt'?: string;
|
|
552
|
+
'where.ruleId.gte'?: string;
|
|
553
|
+
'where.ruleId.lt'?: string;
|
|
554
|
+
'where.ruleId.lte'?: string;
|
|
555
|
+
'where.ruleId.like'?: string;
|
|
556
|
+
'where.ruleId.in'?: string;
|
|
557
|
+
'where.ruleId.nin'?: string;
|
|
558
|
+
'where.ruleId.contains'?: string;
|
|
559
|
+
'where.ruleId.contained'?: string;
|
|
560
|
+
'where.ruleId.overlaps'?: string;
|
|
561
|
+
'where.type.eq'?: 'global' | 'local';
|
|
562
|
+
'where.type.neq'?: 'global' | 'local';
|
|
563
|
+
'where.type.gt'?: 'global' | 'local';
|
|
564
|
+
'where.type.gte'?: 'global' | 'local';
|
|
565
|
+
'where.type.lt'?: 'global' | 'local';
|
|
566
|
+
'where.type.lte'?: 'global' | 'local';
|
|
567
|
+
'where.type.like'?: 'global' | 'local';
|
|
568
|
+
'where.type.in'?: string;
|
|
569
|
+
'where.type.nin'?: string;
|
|
570
|
+
'where.type.contains'?: string;
|
|
571
|
+
'where.type.contained'?: string;
|
|
572
|
+
'where.type.overlaps'?: string;
|
|
573
|
+
'where.or'?: Array<string>;
|
|
574
|
+
'id'?: string;
|
|
575
|
+
'type': 'global' | 'local';
|
|
576
|
+
'applicationId'?: string | null;
|
|
577
|
+
'enabled'?: boolean | null;
|
|
578
|
+
'ruleId': string;
|
|
579
|
+
'options': object;
|
|
580
|
+
'createdAt'?: string | null;
|
|
724
581
|
}
|
|
725
582
|
|
|
726
|
-
|
|
727
|
-
* Default Response
|
|
728
|
-
*/
|
|
729
|
-
export type UpdateRuleConfigsResponseOK = Array<{ 'id'?: string | null; 'type'?: 'global' | 'local' | null; 'applicationId'?: string | null; 'enabled'?: boolean | null; 'ruleId'?: string | null; 'options'?: object | null; 'createdAt'?: string | null }>
|
|
583
|
+
export type UpdateRuleConfigsResponseOK = Array<{ 'id'?: string | null; 'type'?: 'global' | 'local'; 'applicationId'?: string | null; 'enabled'?: boolean | null; 'ruleId'?: string | null; 'options'?: object; 'createdAt'?: string | null }>
|
|
730
584
|
export type UpdateRuleConfigsResponses =
|
|
731
|
-
|
|
585
|
+
UpdateRuleConfigsResponseOK
|
|
732
586
|
|
|
733
587
|
export type GetRuleConfigByIdRequest = {
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
}
|
|
737
|
-
query?: {
|
|
738
|
-
'fields'?: Array<'applicationId' | 'createdAt' | 'enabled' | 'id' | 'options' | 'ruleId' | 'type'>;
|
|
739
|
-
}
|
|
588
|
+
'fields'?: Array<'applicationId' | 'createdAt' | 'enabled' | 'id' | 'options' | 'ruleId' | 'type'>;
|
|
589
|
+
'id': string;
|
|
740
590
|
}
|
|
741
591
|
|
|
742
|
-
|
|
743
|
-
* A RuleConfig
|
|
744
|
-
*/
|
|
745
|
-
export type GetRuleConfigByIdResponseOK = { 'id'?: string | null; 'type'?: 'global' | 'local' | null; 'applicationId'?: string | null; 'enabled'?: boolean | null; 'ruleId'?: string | null; 'options'?: object | null; 'createdAt'?: string | null }
|
|
592
|
+
export type GetRuleConfigByIdResponseOK = { 'id'?: string | null; 'type'?: 'global' | 'local'; 'applicationId'?: string | null; 'enabled'?: boolean | null; 'ruleId'?: string | null; 'options'?: object; 'createdAt'?: string | null }
|
|
746
593
|
export type GetRuleConfigByIdResponses =
|
|
747
|
-
|
|
594
|
+
GetRuleConfigByIdResponseOK
|
|
748
595
|
|
|
749
596
|
export type UpdateRuleConfigRequest = {
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
'applicationId'?: string | null;
|
|
759
|
-
'enabled'?: boolean | null;
|
|
760
|
-
'ruleId': string;
|
|
761
|
-
'options': object;
|
|
762
|
-
'createdAt'?: string | null;
|
|
763
|
-
}
|
|
597
|
+
'fields'?: Array<'applicationId' | 'createdAt' | 'enabled' | 'id' | 'options' | 'ruleId' | 'type'>;
|
|
598
|
+
'id': string;
|
|
599
|
+
'type': 'global' | 'local';
|
|
600
|
+
'applicationId'?: string | null;
|
|
601
|
+
'enabled'?: boolean | null;
|
|
602
|
+
'ruleId': string;
|
|
603
|
+
'options': object;
|
|
604
|
+
'createdAt'?: string | null;
|
|
764
605
|
}
|
|
765
606
|
|
|
766
|
-
|
|
767
|
-
* A RuleConfig
|
|
768
|
-
*/
|
|
769
|
-
export type UpdateRuleConfigResponseOK = { 'id'?: string | null; 'type'?: 'global' | 'local' | null; 'applicationId'?: string | null; 'enabled'?: boolean | null; 'ruleId'?: string | null; 'options'?: object | null; 'createdAt'?: string | null }
|
|
607
|
+
export type UpdateRuleConfigResponseOK = { 'id'?: string | null; 'type'?: 'global' | 'local'; 'applicationId'?: string | null; 'enabled'?: boolean | null; 'ruleId'?: string | null; 'options'?: object; 'createdAt'?: string | null }
|
|
770
608
|
export type UpdateRuleConfigResponses =
|
|
771
|
-
|
|
609
|
+
UpdateRuleConfigResponseOK
|
|
772
610
|
|
|
773
611
|
export type DeleteRuleConfigsRequest = {
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
}
|
|
777
|
-
query?: {
|
|
778
|
-
'fields'?: Array<'applicationId' | 'createdAt' | 'enabled' | 'id' | 'options' | 'ruleId' | 'type'>;
|
|
779
|
-
}
|
|
612
|
+
'fields'?: Array<'applicationId' | 'createdAt' | 'enabled' | 'id' | 'options' | 'ruleId' | 'type'>;
|
|
613
|
+
'id': string;
|
|
780
614
|
}
|
|
781
615
|
|
|
782
|
-
|
|
783
|
-
* A RuleConfig
|
|
784
|
-
*/
|
|
785
|
-
export type DeleteRuleConfigsResponseOK = { 'id'?: string | null; 'type'?: 'global' | 'local' | null; 'applicationId'?: string | null; 'enabled'?: boolean | null; 'ruleId'?: string | null; 'options'?: object | null; 'createdAt'?: string | null }
|
|
616
|
+
export type DeleteRuleConfigsResponseOK = { 'id'?: string | null; 'type'?: 'global' | 'local'; 'applicationId'?: string | null; 'enabled'?: boolean | null; 'ruleId'?: string | null; 'options'?: object; 'createdAt'?: string | null }
|
|
786
617
|
export type DeleteRuleConfigsResponses =
|
|
787
|
-
|
|
618
|
+
DeleteRuleConfigsResponseOK
|
|
788
619
|
|
|
789
620
|
export type GetRuleForRuleConfigRequest = {
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
}
|
|
793
|
-
query?: {
|
|
794
|
-
'fields'?: Array<'config' | 'createdAt' | 'description' | 'id' | 'label' | 'name'>;
|
|
795
|
-
}
|
|
621
|
+
'fields'?: Array<'config' | 'createdAt' | 'description' | 'id' | 'label' | 'name'>;
|
|
622
|
+
'id': string;
|
|
796
623
|
}
|
|
797
624
|
|
|
798
|
-
|
|
799
|
-
* A Rule
|
|
800
|
-
*/
|
|
801
|
-
export type GetRuleForRuleConfigResponseOK = { 'id'?: string | null; 'name'?: string | null; 'description'?: string | null; 'label'?: string | null; 'config'?: object | null; 'createdAt'?: string | null }
|
|
625
|
+
export type GetRuleForRuleConfigResponseOK = { 'id'?: string | null; 'name'?: string | null; 'description'?: string | null; 'label'?: string | null; 'config'?: object; 'createdAt'?: string | null }
|
|
802
626
|
export type GetRuleForRuleConfigResponses =
|
|
803
|
-
|
|
627
|
+
GetRuleForRuleConfigResponseOK
|
|
804
628
|
|
|
805
629
|
export type GetMetadataRequest = {
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
'where.id.contained'?: string;
|
|
877
|
-
'where.id.overlaps'?: string;
|
|
878
|
-
'where.or'?: Array<string>;
|
|
879
|
-
'orderby.applicationId'?: 'asc' | 'desc';
|
|
880
|
-
'orderby.createdAt'?: 'asc' | 'desc';
|
|
881
|
-
'orderby.data'?: 'asc' | 'desc';
|
|
882
|
-
'orderby.id'?: 'asc' | 'desc';
|
|
883
|
-
}
|
|
630
|
+
'limit'?: number;
|
|
631
|
+
'offset'?: number;
|
|
632
|
+
'totalCount'?: boolean;
|
|
633
|
+
'fields'?: Array<'applicationId' | 'bundleId' | 'createdAt' | 'data' | 'id'>;
|
|
634
|
+
'where.applicationId.eq'?: string;
|
|
635
|
+
'where.applicationId.neq'?: string;
|
|
636
|
+
'where.applicationId.gt'?: string;
|
|
637
|
+
'where.applicationId.gte'?: string;
|
|
638
|
+
'where.applicationId.lt'?: string;
|
|
639
|
+
'where.applicationId.lte'?: string;
|
|
640
|
+
'where.applicationId.like'?: string;
|
|
641
|
+
'where.applicationId.in'?: string;
|
|
642
|
+
'where.applicationId.nin'?: string;
|
|
643
|
+
'where.applicationId.contains'?: string;
|
|
644
|
+
'where.applicationId.contained'?: string;
|
|
645
|
+
'where.applicationId.overlaps'?: string;
|
|
646
|
+
'where.bundleId.eq'?: string;
|
|
647
|
+
'where.bundleId.neq'?: string;
|
|
648
|
+
'where.bundleId.gt'?: string;
|
|
649
|
+
'where.bundleId.gte'?: string;
|
|
650
|
+
'where.bundleId.lt'?: string;
|
|
651
|
+
'where.bundleId.lte'?: string;
|
|
652
|
+
'where.bundleId.like'?: string;
|
|
653
|
+
'where.bundleId.in'?: string;
|
|
654
|
+
'where.bundleId.nin'?: string;
|
|
655
|
+
'where.bundleId.contains'?: string;
|
|
656
|
+
'where.bundleId.contained'?: string;
|
|
657
|
+
'where.bundleId.overlaps'?: string;
|
|
658
|
+
'where.createdAt.eq'?: string;
|
|
659
|
+
'where.createdAt.neq'?: string;
|
|
660
|
+
'where.createdAt.gt'?: string;
|
|
661
|
+
'where.createdAt.gte'?: string;
|
|
662
|
+
'where.createdAt.lt'?: string;
|
|
663
|
+
'where.createdAt.lte'?: string;
|
|
664
|
+
'where.createdAt.like'?: string;
|
|
665
|
+
'where.createdAt.in'?: string;
|
|
666
|
+
'where.createdAt.nin'?: string;
|
|
667
|
+
'where.createdAt.contains'?: string;
|
|
668
|
+
'where.createdAt.contained'?: string;
|
|
669
|
+
'where.createdAt.overlaps'?: string;
|
|
670
|
+
'where.data.eq'?: string;
|
|
671
|
+
'where.data.neq'?: string;
|
|
672
|
+
'where.data.gt'?: string;
|
|
673
|
+
'where.data.gte'?: string;
|
|
674
|
+
'where.data.lt'?: string;
|
|
675
|
+
'where.data.lte'?: string;
|
|
676
|
+
'where.data.like'?: string;
|
|
677
|
+
'where.data.in'?: string;
|
|
678
|
+
'where.data.nin'?: string;
|
|
679
|
+
'where.data.contains'?: string;
|
|
680
|
+
'where.data.contained'?: string;
|
|
681
|
+
'where.data.overlaps'?: string;
|
|
682
|
+
'where.id.eq'?: string;
|
|
683
|
+
'where.id.neq'?: string;
|
|
684
|
+
'where.id.gt'?: string;
|
|
685
|
+
'where.id.gte'?: string;
|
|
686
|
+
'where.id.lt'?: string;
|
|
687
|
+
'where.id.lte'?: string;
|
|
688
|
+
'where.id.like'?: string;
|
|
689
|
+
'where.id.in'?: string;
|
|
690
|
+
'where.id.nin'?: string;
|
|
691
|
+
'where.id.contains'?: string;
|
|
692
|
+
'where.id.contained'?: string;
|
|
693
|
+
'where.id.overlaps'?: string;
|
|
694
|
+
'where.or'?: Array<string>;
|
|
695
|
+
'orderby.applicationId'?: 'asc' | 'desc';
|
|
696
|
+
'orderby.bundleId'?: 'asc' | 'desc';
|
|
697
|
+
'orderby.createdAt'?: 'asc' | 'desc';
|
|
698
|
+
'orderby.data'?: 'asc' | 'desc';
|
|
699
|
+
'orderby.id'?: 'asc' | 'desc';
|
|
884
700
|
}
|
|
885
701
|
|
|
886
|
-
|
|
887
|
-
* Default Response
|
|
888
|
-
*/
|
|
889
|
-
export type GetMetadataResponseOK = Array<{ 'id'?: string | null; 'applicationId'?: string | null; 'data'?: object | null; 'createdAt'?: string | null }>
|
|
702
|
+
export type GetMetadataResponseOK = Array<{ 'id'?: string | null; 'applicationId'?: string | null; 'bundleId'?: string | null; 'data'?: object; 'createdAt'?: string | null }>
|
|
890
703
|
export type GetMetadataResponses =
|
|
891
|
-
|
|
704
|
+
GetMetadataResponseOK
|
|
892
705
|
|
|
893
706
|
export type UpdateMetadataRequest = {
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
707
|
+
'fields'?: Array<'applicationId' | 'bundleId' | 'createdAt' | 'data' | 'id'>;
|
|
708
|
+
'where.applicationId.eq'?: string;
|
|
709
|
+
'where.applicationId.neq'?: string;
|
|
710
|
+
'where.applicationId.gt'?: string;
|
|
711
|
+
'where.applicationId.gte'?: string;
|
|
712
|
+
'where.applicationId.lt'?: string;
|
|
713
|
+
'where.applicationId.lte'?: string;
|
|
714
|
+
'where.applicationId.like'?: string;
|
|
715
|
+
'where.applicationId.in'?: string;
|
|
716
|
+
'where.applicationId.nin'?: string;
|
|
717
|
+
'where.applicationId.contains'?: string;
|
|
718
|
+
'where.applicationId.contained'?: string;
|
|
719
|
+
'where.applicationId.overlaps'?: string;
|
|
720
|
+
'where.bundleId.eq'?: string;
|
|
721
|
+
'where.bundleId.neq'?: string;
|
|
722
|
+
'where.bundleId.gt'?: string;
|
|
723
|
+
'where.bundleId.gte'?: string;
|
|
724
|
+
'where.bundleId.lt'?: string;
|
|
725
|
+
'where.bundleId.lte'?: string;
|
|
726
|
+
'where.bundleId.like'?: string;
|
|
727
|
+
'where.bundleId.in'?: string;
|
|
728
|
+
'where.bundleId.nin'?: string;
|
|
729
|
+
'where.bundleId.contains'?: string;
|
|
730
|
+
'where.bundleId.contained'?: string;
|
|
731
|
+
'where.bundleId.overlaps'?: string;
|
|
732
|
+
'where.createdAt.eq'?: string;
|
|
733
|
+
'where.createdAt.neq'?: string;
|
|
734
|
+
'where.createdAt.gt'?: string;
|
|
735
|
+
'where.createdAt.gte'?: string;
|
|
736
|
+
'where.createdAt.lt'?: string;
|
|
737
|
+
'where.createdAt.lte'?: string;
|
|
738
|
+
'where.createdAt.like'?: string;
|
|
739
|
+
'where.createdAt.in'?: string;
|
|
740
|
+
'where.createdAt.nin'?: string;
|
|
741
|
+
'where.createdAt.contains'?: string;
|
|
742
|
+
'where.createdAt.contained'?: string;
|
|
743
|
+
'where.createdAt.overlaps'?: string;
|
|
744
|
+
'where.data.eq'?: string;
|
|
745
|
+
'where.data.neq'?: string;
|
|
746
|
+
'where.data.gt'?: string;
|
|
747
|
+
'where.data.gte'?: string;
|
|
748
|
+
'where.data.lt'?: string;
|
|
749
|
+
'where.data.lte'?: string;
|
|
750
|
+
'where.data.like'?: string;
|
|
751
|
+
'where.data.in'?: string;
|
|
752
|
+
'where.data.nin'?: string;
|
|
753
|
+
'where.data.contains'?: string;
|
|
754
|
+
'where.data.contained'?: string;
|
|
755
|
+
'where.data.overlaps'?: string;
|
|
756
|
+
'where.id.eq'?: string;
|
|
757
|
+
'where.id.neq'?: string;
|
|
758
|
+
'where.id.gt'?: string;
|
|
759
|
+
'where.id.gte'?: string;
|
|
760
|
+
'where.id.lt'?: string;
|
|
761
|
+
'where.id.lte'?: string;
|
|
762
|
+
'where.id.like'?: string;
|
|
763
|
+
'where.id.in'?: string;
|
|
764
|
+
'where.id.nin'?: string;
|
|
765
|
+
'where.id.contains'?: string;
|
|
766
|
+
'where.id.contained'?: string;
|
|
767
|
+
'where.id.overlaps'?: string;
|
|
768
|
+
'where.or'?: Array<string>;
|
|
769
|
+
'id'?: string;
|
|
770
|
+
'applicationId'?: string | null;
|
|
771
|
+
'bundleId'?: string | null;
|
|
772
|
+
'data': object;
|
|
773
|
+
'createdAt'?: string | null;
|
|
956
774
|
}
|
|
957
775
|
|
|
958
|
-
|
|
959
|
-
* Default Response
|
|
960
|
-
*/
|
|
961
|
-
export type UpdateMetadataResponseOK = Array<{ 'id'?: string | null; 'applicationId'?: string | null; 'data'?: object | null; 'createdAt'?: string | null }>
|
|
776
|
+
export type UpdateMetadataResponseOK = Array<{ 'id'?: string | null; 'applicationId'?: string | null; 'bundleId'?: string | null; 'data'?: object; 'createdAt'?: string | null }>
|
|
962
777
|
export type UpdateMetadataResponses =
|
|
963
|
-
|
|
778
|
+
UpdateMetadataResponseOK
|
|
964
779
|
|
|
965
780
|
export type GetMetadatumByIdRequest = {
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
}
|
|
969
|
-
query?: {
|
|
970
|
-
'fields'?: Array<'applicationId' | 'createdAt' | 'data' | 'id'>;
|
|
971
|
-
}
|
|
781
|
+
'fields'?: Array<'applicationId' | 'bundleId' | 'createdAt' | 'data' | 'id'>;
|
|
782
|
+
'id': string;
|
|
972
783
|
}
|
|
973
784
|
|
|
974
|
-
|
|
975
|
-
* A Metadatum
|
|
976
|
-
*/
|
|
977
|
-
export type GetMetadatumByIdResponseOK = { 'id'?: string | null; 'applicationId'?: string | null; 'data'?: object | null; 'createdAt'?: string | null }
|
|
785
|
+
export type GetMetadatumByIdResponseOK = { 'id'?: string | null; 'applicationId'?: string | null; 'bundleId'?: string | null; 'data'?: object; 'createdAt'?: string | null }
|
|
978
786
|
export type GetMetadatumByIdResponses =
|
|
979
|
-
|
|
787
|
+
GetMetadatumByIdResponseOK
|
|
980
788
|
|
|
981
789
|
export type UpdateMetadatumRequest = {
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
body: {
|
|
989
|
-
'applicationId'?: string | null;
|
|
990
|
-
'data': object;
|
|
991
|
-
'createdAt'?: string | null;
|
|
992
|
-
}
|
|
790
|
+
'fields'?: Array<'applicationId' | 'bundleId' | 'createdAt' | 'data' | 'id'>;
|
|
791
|
+
'id': string;
|
|
792
|
+
'applicationId'?: string | null;
|
|
793
|
+
'bundleId'?: string | null;
|
|
794
|
+
'data': object;
|
|
795
|
+
'createdAt'?: string | null;
|
|
993
796
|
}
|
|
994
797
|
|
|
995
|
-
|
|
996
|
-
* A Metadatum
|
|
997
|
-
*/
|
|
998
|
-
export type UpdateMetadatumResponseOK = { 'id'?: string | null; 'applicationId'?: string | null; 'data'?: object | null; 'createdAt'?: string | null }
|
|
798
|
+
export type UpdateMetadatumResponseOK = { 'id'?: string | null; 'applicationId'?: string | null; 'bundleId'?: string | null; 'data'?: object; 'createdAt'?: string | null }
|
|
999
799
|
export type UpdateMetadatumResponses =
|
|
1000
|
-
|
|
800
|
+
UpdateMetadatumResponseOK
|
|
1001
801
|
|
|
1002
802
|
export type DeleteMetadataRequest = {
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
}
|
|
1006
|
-
query?: {
|
|
1007
|
-
'fields'?: Array<'applicationId' | 'createdAt' | 'data' | 'id'>;
|
|
1008
|
-
}
|
|
803
|
+
'fields'?: Array<'applicationId' | 'bundleId' | 'createdAt' | 'data' | 'id'>;
|
|
804
|
+
'id': string;
|
|
1009
805
|
}
|
|
1010
806
|
|
|
1011
|
-
|
|
1012
|
-
* A Metadatum
|
|
1013
|
-
*/
|
|
1014
|
-
export type DeleteMetadataResponseOK = { 'id'?: string | null; 'applicationId'?: string | null; 'data'?: object | null; 'createdAt'?: string | null }
|
|
807
|
+
export type DeleteMetadataResponseOK = { 'id'?: string | null; 'applicationId'?: string | null; 'bundleId'?: string | null; 'data'?: object; 'createdAt'?: string | null }
|
|
1015
808
|
export type DeleteMetadataResponses =
|
|
1016
|
-
|
|
809
|
+
DeleteMetadataResponseOK
|
|
1017
810
|
|
|
1018
811
|
export type PostComplianceRequest = {
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
'podId': string;
|
|
1022
|
-
}
|
|
812
|
+
'applicationId': string;
|
|
813
|
+
'bundleId': string;
|
|
1023
814
|
}
|
|
1024
815
|
|
|
1025
816
|
export type PostComplianceResponseOK = unknown
|
|
@@ -1027,11 +818,9 @@ export type PostComplianceResponses =
|
|
|
1027
818
|
FullResponse<PostComplianceResponseOK, 200>
|
|
1028
819
|
|
|
1029
820
|
export type PostMetadataRequest = {
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
'data': object;
|
|
1034
|
-
}
|
|
821
|
+
'applicationId': string;
|
|
822
|
+
'bundleId': string;
|
|
823
|
+
'data': object;
|
|
1035
824
|
}
|
|
1036
825
|
|
|
1037
826
|
export type PostMetadataResponseOK = unknown
|
|
@@ -1039,14 +828,10 @@ export type PostMetadataResponses =
|
|
|
1039
828
|
FullResponse<PostMetadataResponseOK, 200>
|
|
1040
829
|
|
|
1041
830
|
export type PostRulesNameRequest = {
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
'applicationId': string;
|
|
1047
|
-
'enabled': boolean;
|
|
1048
|
-
'options': object;
|
|
1049
|
-
}
|
|
831
|
+
'name': string;
|
|
832
|
+
'applicationId': string;
|
|
833
|
+
'enabled': boolean;
|
|
834
|
+
'options': object;
|
|
1050
835
|
}
|
|
1051
836
|
|
|
1052
837
|
export type PostRulesNameResponseOK = unknown
|
|
@@ -1054,7 +839,7 @@ export type PostRulesNameResponses =
|
|
|
1054
839
|
FullResponse<PostRulesNameResponseOK, 200>
|
|
1055
840
|
|
|
1056
841
|
export type GetRulesRequest = {
|
|
1057
|
-
|
|
842
|
+
unknown
|
|
1058
843
|
}
|
|
1059
844
|
|
|
1060
845
|
export type GetRulesResponseOK = unknown
|
|
@@ -1064,224 +849,39 @@ export type GetRulesResponses =
|
|
|
1064
849
|
|
|
1065
850
|
|
|
1066
851
|
export interface Compliance {
|
|
1067
|
-
setBaseUrl(newUrl: string): void;
|
|
1068
|
-
setDefaultHeaders(headers:
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
* Fetch Report using its id from the database.
|
|
1098
|
-
* @param req - request parameters object
|
|
1099
|
-
* @returns the API response
|
|
1100
|
-
*/
|
|
1101
|
-
getReportById(req: GetReportByIdRequest): Promise<GetReportByIdResponses>;
|
|
1102
|
-
/**
|
|
1103
|
-
* Update report.
|
|
1104
|
-
*
|
|
1105
|
-
* Update report in the database.
|
|
1106
|
-
* @param req - request parameters object
|
|
1107
|
-
* @returns the API response
|
|
1108
|
-
*/
|
|
1109
|
-
updateReport(req: UpdateReportRequest): Promise<UpdateReportResponses>;
|
|
1110
|
-
/**
|
|
1111
|
-
* Delete reports.
|
|
1112
|
-
*
|
|
1113
|
-
* Delete one or more reports from the Database.
|
|
1114
|
-
* @param req - request parameters object
|
|
1115
|
-
* @returns the API response
|
|
1116
|
-
*/
|
|
1117
|
-
deleteReports(req: DeleteReportsRequest): Promise<DeleteReportsResponses>;
|
|
1118
|
-
/**
|
|
1119
|
-
* Create rule.
|
|
1120
|
-
*
|
|
1121
|
-
* Add new rule to the database.
|
|
1122
|
-
* @param req - request parameters object
|
|
1123
|
-
* @returns the API response
|
|
1124
|
-
*/
|
|
1125
|
-
createRule(req: CreateRuleRequest): Promise<CreateRuleResponses>;
|
|
1126
|
-
/**
|
|
1127
|
-
* Update rules.
|
|
1128
|
-
*
|
|
1129
|
-
* Update one or more rules in the database.
|
|
1130
|
-
* @param req - request parameters object
|
|
1131
|
-
* @returns the API response
|
|
1132
|
-
*/
|
|
1133
|
-
updateRules(req: UpdateRulesRequest): Promise<UpdateRulesResponses>;
|
|
1134
|
-
/**
|
|
1135
|
-
* Get Rule by id.
|
|
1136
|
-
*
|
|
1137
|
-
* Fetch Rule using its id from the database.
|
|
1138
|
-
* @param req - request parameters object
|
|
1139
|
-
* @returns the API response
|
|
1140
|
-
*/
|
|
1141
|
-
getRuleById(req: GetRuleByIdRequest): Promise<GetRuleByIdResponses>;
|
|
1142
|
-
/**
|
|
1143
|
-
* Update rule.
|
|
1144
|
-
*
|
|
1145
|
-
* Update rule in the database.
|
|
1146
|
-
* @param req - request parameters object
|
|
1147
|
-
* @returns the API response
|
|
1148
|
-
*/
|
|
1149
|
-
updateRule(req: UpdateRuleRequest): Promise<UpdateRuleResponses>;
|
|
1150
|
-
/**
|
|
1151
|
-
* Delete rules.
|
|
1152
|
-
*
|
|
1153
|
-
* Delete one or more rules from the Database.
|
|
1154
|
-
* @param req - request parameters object
|
|
1155
|
-
* @returns the API response
|
|
1156
|
-
*/
|
|
1157
|
-
deleteRules(req: DeleteRulesRequest): Promise<DeleteRulesResponses>;
|
|
1158
|
-
/**
|
|
1159
|
-
* Get ruleConfigs for rule.
|
|
1160
|
-
*
|
|
1161
|
-
* Fetch all the ruleConfigs for rule from the database.
|
|
1162
|
-
* @param req - request parameters object
|
|
1163
|
-
* @returns the API response
|
|
1164
|
-
*/
|
|
1165
|
-
getRuleConfigsForRule(req: GetRuleConfigsForRuleRequest): Promise<GetRuleConfigsForRuleResponses>;
|
|
1166
|
-
/**
|
|
1167
|
-
* Get ruleConfigs.
|
|
1168
|
-
*
|
|
1169
|
-
* Fetch ruleConfigs from the database.
|
|
1170
|
-
* @param req - request parameters object
|
|
1171
|
-
* @returns the API response
|
|
1172
|
-
*/
|
|
1173
|
-
getRuleConfigs(req: GetRuleConfigsRequest): Promise<GetRuleConfigsResponses>;
|
|
1174
|
-
/**
|
|
1175
|
-
* Create ruleConfig.
|
|
1176
|
-
*
|
|
1177
|
-
* Add new ruleConfig to the database.
|
|
1178
|
-
* @param req - request parameters object
|
|
1179
|
-
* @returns the API response
|
|
1180
|
-
*/
|
|
1181
|
-
createRuleConfig(req: CreateRuleConfigRequest): Promise<CreateRuleConfigResponses>;
|
|
1182
|
-
/**
|
|
1183
|
-
* Update ruleConfigs.
|
|
1184
|
-
*
|
|
1185
|
-
* Update one or more ruleConfigs in the database.
|
|
1186
|
-
* @param req - request parameters object
|
|
1187
|
-
* @returns the API response
|
|
1188
|
-
*/
|
|
1189
|
-
updateRuleConfigs(req: UpdateRuleConfigsRequest): Promise<UpdateRuleConfigsResponses>;
|
|
1190
|
-
/**
|
|
1191
|
-
* Get RuleConfig by id.
|
|
1192
|
-
*
|
|
1193
|
-
* Fetch RuleConfig using its id from the database.
|
|
1194
|
-
* @param req - request parameters object
|
|
1195
|
-
* @returns the API response
|
|
1196
|
-
*/
|
|
1197
|
-
getRuleConfigById(req: GetRuleConfigByIdRequest): Promise<GetRuleConfigByIdResponses>;
|
|
1198
|
-
/**
|
|
1199
|
-
* Update ruleConfig.
|
|
1200
|
-
*
|
|
1201
|
-
* Update ruleConfig in the database.
|
|
1202
|
-
* @param req - request parameters object
|
|
1203
|
-
* @returns the API response
|
|
1204
|
-
*/
|
|
1205
|
-
updateRuleConfig(req: UpdateRuleConfigRequest): Promise<UpdateRuleConfigResponses>;
|
|
1206
|
-
/**
|
|
1207
|
-
* Delete ruleConfigs.
|
|
1208
|
-
*
|
|
1209
|
-
* Delete one or more ruleConfigs from the Database.
|
|
1210
|
-
* @param req - request parameters object
|
|
1211
|
-
* @returns the API response
|
|
1212
|
-
*/
|
|
1213
|
-
deleteRuleConfigs(req: DeleteRuleConfigsRequest): Promise<DeleteRuleConfigsResponses>;
|
|
1214
|
-
/**
|
|
1215
|
-
* Get rule for ruleConfig.
|
|
1216
|
-
*
|
|
1217
|
-
* Fetch the rule for ruleConfig from the database.
|
|
1218
|
-
* @param req - request parameters object
|
|
1219
|
-
* @returns the API response
|
|
1220
|
-
*/
|
|
1221
|
-
getRuleForRuleConfig(req: GetRuleForRuleConfigRequest): Promise<GetRuleForRuleConfigResponses>;
|
|
1222
|
-
/**
|
|
1223
|
-
* Get metadata.
|
|
1224
|
-
*
|
|
1225
|
-
* Fetch metadata from the database.
|
|
1226
|
-
* @param req - request parameters object
|
|
1227
|
-
* @returns the API response
|
|
1228
|
-
*/
|
|
1229
|
-
getMetadata(req: GetMetadataRequest): Promise<GetMetadataResponses>;
|
|
1230
|
-
/**
|
|
1231
|
-
* Update metadata.
|
|
1232
|
-
*
|
|
1233
|
-
* Update one or more metadata in the database.
|
|
1234
|
-
* @param req - request parameters object
|
|
1235
|
-
* @returns the API response
|
|
1236
|
-
*/
|
|
1237
|
-
updateMetadata(req: UpdateMetadataRequest): Promise<UpdateMetadataResponses>;
|
|
1238
|
-
/**
|
|
1239
|
-
* Get Metadatum by id.
|
|
1240
|
-
*
|
|
1241
|
-
* Fetch Metadatum using its id from the database.
|
|
1242
|
-
* @param req - request parameters object
|
|
1243
|
-
* @returns the API response
|
|
1244
|
-
*/
|
|
1245
|
-
getMetadatumById(req: GetMetadatumByIdRequest): Promise<GetMetadatumByIdResponses>;
|
|
1246
|
-
/**
|
|
1247
|
-
* Update metadatum.
|
|
1248
|
-
*
|
|
1249
|
-
* Update metadatum in the database.
|
|
1250
|
-
* @param req - request parameters object
|
|
1251
|
-
* @returns the API response
|
|
1252
|
-
*/
|
|
1253
|
-
updateMetadatum(req: UpdateMetadatumRequest): Promise<UpdateMetadatumResponses>;
|
|
1254
|
-
/**
|
|
1255
|
-
* Delete metadata.
|
|
1256
|
-
*
|
|
1257
|
-
* Delete one or more metadata from the Database.
|
|
1258
|
-
* @param req - request parameters object
|
|
1259
|
-
* @returns the API response
|
|
1260
|
-
*/
|
|
1261
|
-
deleteMetadata(req: DeleteMetadataRequest): Promise<DeleteMetadataResponses>;
|
|
1262
|
-
/**
|
|
1263
|
-
* @param req - request parameters object
|
|
1264
|
-
* @returns the API response
|
|
1265
|
-
*/
|
|
1266
|
-
postCompliance(req: PostComplianceRequest): Promise<PostComplianceResponses>;
|
|
1267
|
-
/**
|
|
1268
|
-
* @param req - request parameters object
|
|
1269
|
-
* @returns the API response
|
|
1270
|
-
*/
|
|
1271
|
-
postMetadata(req: PostMetadataRequest): Promise<PostMetadataResponses>;
|
|
1272
|
-
/**
|
|
1273
|
-
* @param req - request parameters object
|
|
1274
|
-
* @returns the API response
|
|
1275
|
-
*/
|
|
1276
|
-
postRulesName(req: PostRulesNameRequest): Promise<PostRulesNameResponses>;
|
|
1277
|
-
/**
|
|
1278
|
-
* @param req - request parameters object
|
|
1279
|
-
* @returns the API response
|
|
1280
|
-
*/
|
|
1281
|
-
getRules(req: GetRulesRequest): Promise<GetRulesResponses>;
|
|
852
|
+
setBaseUrl(newUrl: string) : void;
|
|
853
|
+
setDefaultHeaders(headers: Object) : void;
|
|
854
|
+
getReports(req?: GetReportsRequest): Promise<GetReportsResponses>;
|
|
855
|
+
createReport(req?: CreateReportRequest): Promise<CreateReportResponses>;
|
|
856
|
+
updateReports(req?: UpdateReportsRequest): Promise<UpdateReportsResponses>;
|
|
857
|
+
getReportById(req?: GetReportByIdRequest): Promise<GetReportByIdResponses>;
|
|
858
|
+
updateReport(req?: UpdateReportRequest): Promise<UpdateReportResponses>;
|
|
859
|
+
deleteReports(req?: DeleteReportsRequest): Promise<DeleteReportsResponses>;
|
|
860
|
+
createRule(req?: CreateRuleRequest): Promise<CreateRuleResponses>;
|
|
861
|
+
updateRules(req?: UpdateRulesRequest): Promise<UpdateRulesResponses>;
|
|
862
|
+
getRuleById(req?: GetRuleByIdRequest): Promise<GetRuleByIdResponses>;
|
|
863
|
+
updateRule(req?: UpdateRuleRequest): Promise<UpdateRuleResponses>;
|
|
864
|
+
deleteRules(req?: DeleteRulesRequest): Promise<DeleteRulesResponses>;
|
|
865
|
+
getRuleConfigsForRule(req?: GetRuleConfigsForRuleRequest): Promise<GetRuleConfigsForRuleResponses>;
|
|
866
|
+
getRuleConfigs(req?: GetRuleConfigsRequest): Promise<GetRuleConfigsResponses>;
|
|
867
|
+
createRuleConfig(req?: CreateRuleConfigRequest): Promise<CreateRuleConfigResponses>;
|
|
868
|
+
updateRuleConfigs(req?: UpdateRuleConfigsRequest): Promise<UpdateRuleConfigsResponses>;
|
|
869
|
+
getRuleConfigById(req?: GetRuleConfigByIdRequest): Promise<GetRuleConfigByIdResponses>;
|
|
870
|
+
updateRuleConfig(req?: UpdateRuleConfigRequest): Promise<UpdateRuleConfigResponses>;
|
|
871
|
+
deleteRuleConfigs(req?: DeleteRuleConfigsRequest): Promise<DeleteRuleConfigsResponses>;
|
|
872
|
+
getRuleForRuleConfig(req?: GetRuleForRuleConfigRequest): Promise<GetRuleForRuleConfigResponses>;
|
|
873
|
+
getMetadata(req?: GetMetadataRequest): Promise<GetMetadataResponses>;
|
|
874
|
+
updateMetadata(req?: UpdateMetadataRequest): Promise<UpdateMetadataResponses>;
|
|
875
|
+
getMetadatumById(req?: GetMetadatumByIdRequest): Promise<GetMetadatumByIdResponses>;
|
|
876
|
+
updateMetadatum(req?: UpdateMetadatumRequest): Promise<UpdateMetadatumResponses>;
|
|
877
|
+
deleteMetadata(req?: DeleteMetadataRequest): Promise<DeleteMetadataResponses>;
|
|
878
|
+
postCompliance(req?: PostComplianceRequest): Promise<PostComplianceResponses>;
|
|
879
|
+
postMetadata(req?: PostMetadataRequest): Promise<PostMetadataResponses>;
|
|
880
|
+
postRulesName(req?: PostRulesNameRequest): Promise<PostRulesNameResponses>;
|
|
881
|
+
getRules(req?: GetRulesRequest): Promise<GetRulesResponses>;
|
|
1282
882
|
}
|
|
1283
883
|
type PlatformaticFrontendClient = Omit<Compliance, 'setBaseUrl'>
|
|
1284
884
|
type BuildOptions = {
|
|
1285
|
-
headers?:
|
|
885
|
+
headers?: Object
|
|
1286
886
|
}
|
|
1287
887
|
export default function build(url: string, options?: BuildOptions): PlatformaticFrontendClient
|