@ogcio/building-blocks-sdk 0.2.13 → 0.2.15

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.
@@ -171,132 +171,7 @@ export interface paths {
171
171
  cookie?: never;
172
172
  };
173
173
  /** @description List profile imports with pagination */
174
- get: {
175
- parameters: {
176
- query?: {
177
- organizationId?: string;
178
- source?: "csv" | "json";
179
- /** @description Indicates where to start fetching data or how many records to skip, defining the initial position within the list */
180
- offset?: string;
181
- /** @description Indicates the maximum number (100) of items that will be returned in a single request */
182
- limit?: string;
183
- };
184
- header?: never;
185
- path?: never;
186
- cookie?: never;
187
- };
188
- requestBody?: never;
189
- responses: {
190
- /** @description Default Response */
191
- 200: {
192
- headers: {
193
- [name: string]: unknown;
194
- };
195
- content: {
196
- "application/json": {
197
- data: {
198
- /** Format: uuid */
199
- id: string;
200
- organisationId?: string;
201
- status: string;
202
- source: "csv" | "json";
203
- metadata?: {
204
- filename: string;
205
- mimetype: string;
206
- };
207
- /** Format: date-time */
208
- createdAt: string;
209
- /** Format: date-time */
210
- updatedAt: string;
211
- }[];
212
- metadata?: {
213
- /** @description Object containing the links to the related endpoints */
214
- links?: {
215
- self: {
216
- /** @description URL pointing to the request itself */
217
- href?: string;
218
- };
219
- next?: {
220
- /** @description URL pointing to the next page of results in a paginated response. If there are no more results, this field may be omitted */
221
- href?: string;
222
- };
223
- prev?: {
224
- /** @description URL pointing to the previous page of results in a paginated response. If there are no more results, this field may be omitted */
225
- href?: string;
226
- };
227
- first: {
228
- /** @description URL pointing to the first page of results in a paginated response */
229
- href?: string;
230
- };
231
- last: {
232
- /** @description URL pointing to the first page of results in a paginated response */
233
- href?: string;
234
- };
235
- /** @description It may contain a list of other useful URLs, e.g. one entry for page:'page 1', 'page 2' */
236
- pages: {
237
- [key: string]: {
238
- href?: string;
239
- };
240
- };
241
- };
242
- /** @description Number representing the total number of available items */
243
- totalCount?: number;
244
- };
245
- };
246
- };
247
- };
248
- /** @description Default Response */
249
- "4XX": {
250
- headers: {
251
- [name: string]: unknown;
252
- };
253
- content: {
254
- "application/json": {
255
- /** @description Code used to categorize the error */
256
- code: string;
257
- /** @description Description of the error */
258
- detail: string;
259
- /** @description Unique request id. This one will be used to troubleshoot the problems */
260
- requestId: string;
261
- /** @description Name of the error type */
262
- name: string;
263
- /** @description List of the validation errors */
264
- validation?: {
265
- fieldName: string;
266
- message: string;
267
- }[];
268
- validationContext?: string;
269
- statusCode: number;
270
- };
271
- };
272
- };
273
- /** @description Default Response */
274
- "5XX": {
275
- headers: {
276
- [name: string]: unknown;
277
- };
278
- content: {
279
- "application/json": {
280
- /** @description Code used to categorize the error */
281
- code: string;
282
- /** @description Description of the error */
283
- detail: string;
284
- /** @description Unique request id. This one will be used to troubleshoot the problems */
285
- requestId: string;
286
- /** @description Name of the error type */
287
- name: string;
288
- /** @description List of the validation errors */
289
- validation?: {
290
- fieldName: string;
291
- message: string;
292
- }[];
293
- validationContext?: string;
294
- statusCode: number;
295
- };
296
- };
297
- };
298
- };
299
- };
174
+ get: operations["listProfileImports"];
300
175
  put?: never;
301
176
  post?: never;
302
177
  delete?: never;
@@ -931,6 +806,132 @@ export interface operations {
931
806
  };
932
807
  };
933
808
  };
809
+ listProfileImports: {
810
+ parameters: {
811
+ query?: {
812
+ organizationId?: string;
813
+ source?: "csv" | "json";
814
+ /** @description Indicates where to start fetching data or how many records to skip, defining the initial position within the list */
815
+ offset?: string;
816
+ /** @description Indicates the maximum number (100) of items that will be returned in a single request */
817
+ limit?: string;
818
+ };
819
+ header?: never;
820
+ path?: never;
821
+ cookie?: never;
822
+ };
823
+ requestBody?: never;
824
+ responses: {
825
+ /** @description Default Response */
826
+ 200: {
827
+ headers: {
828
+ [name: string]: unknown;
829
+ };
830
+ content: {
831
+ "application/json": {
832
+ data: {
833
+ /** Format: uuid */
834
+ id: string;
835
+ organisationId?: string;
836
+ status: string;
837
+ source: "csv" | "json";
838
+ metadata?: {
839
+ filename: string;
840
+ mimetype: string;
841
+ };
842
+ /** Format: date-time */
843
+ createdAt: string;
844
+ /** Format: date-time */
845
+ updatedAt: string;
846
+ }[];
847
+ metadata?: {
848
+ /** @description Object containing the links to the related endpoints */
849
+ links?: {
850
+ self: {
851
+ /** @description URL pointing to the request itself */
852
+ href?: string;
853
+ };
854
+ next?: {
855
+ /** @description URL pointing to the next page of results in a paginated response. If there are no more results, this field may be omitted */
856
+ href?: string;
857
+ };
858
+ prev?: {
859
+ /** @description URL pointing to the previous page of results in a paginated response. If there are no more results, this field may be omitted */
860
+ href?: string;
861
+ };
862
+ first: {
863
+ /** @description URL pointing to the first page of results in a paginated response */
864
+ href?: string;
865
+ };
866
+ last: {
867
+ /** @description URL pointing to the first page of results in a paginated response */
868
+ href?: string;
869
+ };
870
+ /** @description It may contain a list of other useful URLs, e.g. one entry for page:'page 1', 'page 2' */
871
+ pages: {
872
+ [key: string]: {
873
+ href?: string;
874
+ };
875
+ };
876
+ };
877
+ /** @description Number representing the total number of available items */
878
+ totalCount?: number;
879
+ };
880
+ };
881
+ };
882
+ };
883
+ /** @description Default Response */
884
+ "4XX": {
885
+ headers: {
886
+ [name: string]: unknown;
887
+ };
888
+ content: {
889
+ "application/json": {
890
+ /** @description Code used to categorize the error */
891
+ code: string;
892
+ /** @description Description of the error */
893
+ detail: string;
894
+ /** @description Unique request id. This one will be used to troubleshoot the problems */
895
+ requestId: string;
896
+ /** @description Name of the error type */
897
+ name: string;
898
+ /** @description List of the validation errors */
899
+ validation?: {
900
+ fieldName: string;
901
+ message: string;
902
+ }[];
903
+ validationContext?: string;
904
+ statusCode: number;
905
+ };
906
+ };
907
+ };
908
+ /** @description Default Response */
909
+ "5XX": {
910
+ headers: {
911
+ [name: string]: unknown;
912
+ };
913
+ content: {
914
+ "application/json": {
915
+ /** @description Code used to categorize the error */
916
+ code: string;
917
+ /** @description Description of the error */
918
+ detail: string;
919
+ /** @description Unique request id. This one will be used to troubleshoot the problems */
920
+ requestId: string;
921
+ /** @description Name of the error type */
922
+ name: string;
923
+ /** @description List of the validation errors */
924
+ validation?: {
925
+ fieldName: string;
926
+ message: string;
927
+ }[];
928
+ validationContext?: string;
929
+ statusCode: number;
930
+ };
931
+ };
932
+ };
933
+ };
934
+ };
934
935
  getProfileImportDetails: {
935
936
  parameters: {
936
937
  query?: never;
@@ -1584,7 +1585,7 @@ export interface operations {
1584
1585
  details: {
1585
1586
  email?: string | null;
1586
1587
  rawData: {
1587
- [key: string]: string | null | number | boolean;
1588
+ [key: string]: string | null | number | boolean | (string | null | boolean | number)[];
1588
1589
  };
1589
1590
  };
1590
1591
  };