@jrojaspin/security-map-api-cli 9.8.0 → 9.9.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/apis/ReportApi.d.ts +6 -1
- package/dist/apis/ReportApi.js +24 -1
- package/dist/apis/ReportApi.js.map +1 -1
- package/dist/index.cjs +498 -362
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +184 -148
- package/dist/index.mjs +479 -358
- package/dist/index.mjs.map +1 -1
- package/dist/models/Def230.d.ts +8 -0
- package/dist/models/Def230.js +16 -0
- package/dist/models/{Def227.js.map → Def230.js.map} +1 -1
- package/dist/models/ReportAllItemsListOutput.d.ts +2 -2
- package/dist/models/ReportAllItemsListOutput.js +3 -3
- package/dist/models/ReportQueryAssistantDto.d.ts +12 -0
- package/dist/models/ReportQueryAssistantDto.js +41 -0
- package/dist/models/ReportQueryAssistantDto.js.map +1 -0
- package/dist/models/ReportQueryAssistantInput.d.ts +10 -0
- package/dist/models/ReportQueryAssistantInput.js +31 -0
- package/dist/models/ReportQueryAssistantInput.js.map +1 -0
- package/dist/models/ReportQueryAssistantOutput.d.ts +9 -0
- package/dist/models/ReportQueryAssistantOutput.js +29 -0
- package/dist/models/ReportQueryAssistantOutput.js.map +1 -0
- package/dist/models/index.d.ts +4 -1
- package/dist/models/index.js +4 -1
- package/dist/models/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/models/Def227.d.ts +0 -8
- package/dist/models/Def227.js +0 -16
package/dist/index.d.ts
CHANGED
|
@@ -496,14 +496,14 @@ declare function ComputeRouteInputFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
496
496
|
declare function ComputeRouteInputToJSON(json: any): ComputeRouteInput;
|
|
497
497
|
declare function ComputeRouteInputToJSONTyped(value?: ComputeRouteInput | null, ignoreDiscriminator?: boolean): any;
|
|
498
498
|
|
|
499
|
-
interface
|
|
499
|
+
interface Def230 {
|
|
500
500
|
[key: string]: any;
|
|
501
501
|
}
|
|
502
|
-
declare function
|
|
503
|
-
declare function
|
|
504
|
-
declare function
|
|
505
|
-
declare function
|
|
506
|
-
declare function
|
|
502
|
+
declare function instanceOfDef230(value: object): value is Def230;
|
|
503
|
+
declare function Def230FromJSON(json: any): Def230;
|
|
504
|
+
declare function Def230FromJSONTyped(json: any, ignoreDiscriminator: boolean): Def230;
|
|
505
|
+
declare function Def230ToJSON(json: any): Def230;
|
|
506
|
+
declare function Def230ToJSONTyped(value?: Def230 | null, ignoreDiscriminator?: boolean): any;
|
|
507
507
|
|
|
508
508
|
declare const HealthcheckStatusValue: {
|
|
509
509
|
readonly Ok: "ok";
|
|
@@ -2055,7 +2055,7 @@ declare function PlaceDetailsOutputToJSON(json: any): PlaceDetailsOutput;
|
|
|
2055
2055
|
declare function PlaceDetailsOutputToJSONTyped(value?: PlaceDetailsOutput | null, ignoreDiscriminator?: boolean): any;
|
|
2056
2056
|
|
|
2057
2057
|
interface ReportAllItemsListOutput {
|
|
2058
|
-
data: Array<
|
|
2058
|
+
data: Array<Def230>;
|
|
2059
2059
|
pageInfo: PageInfo;
|
|
2060
2060
|
}
|
|
2061
2061
|
declare function instanceOfReportAllItemsListOutput(value: object): value is ReportAllItemsListOutput;
|
|
@@ -2275,6 +2275,176 @@ declare function ReportOutputFromJSONTyped(json: any, ignoreDiscriminator: boole
|
|
|
2275
2275
|
declare function ReportOutputToJSON(json: any): ReportOutput;
|
|
2276
2276
|
declare function ReportOutputToJSONTyped(value?: ReportOutput | null, ignoreDiscriminator?: boolean): any;
|
|
2277
2277
|
|
|
2278
|
+
interface ReportQueryMetric {
|
|
2279
|
+
op: ReportQueryMetricOpEnum;
|
|
2280
|
+
field?: string;
|
|
2281
|
+
label?: string;
|
|
2282
|
+
}
|
|
2283
|
+
declare const ReportQueryMetricOpEnum: {
|
|
2284
|
+
readonly Count: "count";
|
|
2285
|
+
readonly CountDistinct: "count_distinct";
|
|
2286
|
+
readonly Sum: "sum";
|
|
2287
|
+
readonly Avg: "avg";
|
|
2288
|
+
readonly Min: "min";
|
|
2289
|
+
readonly Max: "max";
|
|
2290
|
+
};
|
|
2291
|
+
type ReportQueryMetricOpEnum = typeof ReportQueryMetricOpEnum[keyof typeof ReportQueryMetricOpEnum];
|
|
2292
|
+
declare function instanceOfReportQueryMetric(value: object): value is ReportQueryMetric;
|
|
2293
|
+
declare function ReportQueryMetricFromJSON(json: any): ReportQueryMetric;
|
|
2294
|
+
declare function ReportQueryMetricFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportQueryMetric;
|
|
2295
|
+
declare function ReportQueryMetricToJSON(json: any): ReportQueryMetric;
|
|
2296
|
+
declare function ReportQueryMetricToJSONTyped(value?: ReportQueryMetric | null, ignoreDiscriminator?: boolean): any;
|
|
2297
|
+
|
|
2298
|
+
interface ReportQueryFilter {
|
|
2299
|
+
field: string;
|
|
2300
|
+
op: ReportQueryFilterOpEnum;
|
|
2301
|
+
values: Array<string>;
|
|
2302
|
+
}
|
|
2303
|
+
declare const ReportQueryFilterOpEnum: {
|
|
2304
|
+
readonly Contains: "contains";
|
|
2305
|
+
readonly NotContains: "not_contains";
|
|
2306
|
+
readonly Eq: "eq";
|
|
2307
|
+
readonly Neq: "neq";
|
|
2308
|
+
readonly In: "in";
|
|
2309
|
+
readonly NotIn: "not_in";
|
|
2310
|
+
readonly Gt: "gt";
|
|
2311
|
+
readonly Gte: "gte";
|
|
2312
|
+
readonly Lt: "lt";
|
|
2313
|
+
readonly Lte: "lte";
|
|
2314
|
+
readonly IsEmpty: "is_empty";
|
|
2315
|
+
readonly IsNotEmpty: "is_not_empty";
|
|
2316
|
+
};
|
|
2317
|
+
type ReportQueryFilterOpEnum = typeof ReportQueryFilterOpEnum[keyof typeof ReportQueryFilterOpEnum];
|
|
2318
|
+
declare function instanceOfReportQueryFilter(value: object): value is ReportQueryFilter;
|
|
2319
|
+
declare function ReportQueryFilterFromJSON(json: any): ReportQueryFilter;
|
|
2320
|
+
declare function ReportQueryFilterFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportQueryFilter;
|
|
2321
|
+
declare function ReportQueryFilterToJSON(json: any): ReportQueryFilter;
|
|
2322
|
+
declare function ReportQueryFilterToJSONTyped(value?: ReportQueryFilter | null, ignoreDiscriminator?: boolean): any;
|
|
2323
|
+
|
|
2324
|
+
interface ReportQueryDimension {
|
|
2325
|
+
field: string;
|
|
2326
|
+
bucket?: ReportQueryDimensionBucketEnum;
|
|
2327
|
+
normalize?: ReportQueryDimensionNormalizeEnum;
|
|
2328
|
+
includeEmpty?: boolean;
|
|
2329
|
+
}
|
|
2330
|
+
declare const ReportQueryDimensionBucketEnum: {
|
|
2331
|
+
readonly Day: "day";
|
|
2332
|
+
readonly Week: "week";
|
|
2333
|
+
readonly Month: "month";
|
|
2334
|
+
readonly Quarter: "quarter";
|
|
2335
|
+
readonly Year: "year";
|
|
2336
|
+
};
|
|
2337
|
+
type ReportQueryDimensionBucketEnum = typeof ReportQueryDimensionBucketEnum[keyof typeof ReportQueryDimensionBucketEnum];
|
|
2338
|
+
declare const ReportQueryDimensionNormalizeEnum: {
|
|
2339
|
+
readonly None: "none";
|
|
2340
|
+
readonly TrimCase: "trim_case";
|
|
2341
|
+
readonly Ipp: "ipp";
|
|
2342
|
+
};
|
|
2343
|
+
type ReportQueryDimensionNormalizeEnum = typeof ReportQueryDimensionNormalizeEnum[keyof typeof ReportQueryDimensionNormalizeEnum];
|
|
2344
|
+
declare function instanceOfReportQueryDimension(value: object): value is ReportQueryDimension;
|
|
2345
|
+
declare function ReportQueryDimensionFromJSON(json: any): ReportQueryDimension;
|
|
2346
|
+
declare function ReportQueryDimensionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportQueryDimension;
|
|
2347
|
+
declare function ReportQueryDimensionToJSON(json: any): ReportQueryDimension;
|
|
2348
|
+
declare function ReportQueryDimensionToJSONTyped(value?: ReportQueryDimension | null, ignoreDiscriminator?: boolean): any;
|
|
2349
|
+
|
|
2350
|
+
interface ReportQuerySeries {
|
|
2351
|
+
label?: string;
|
|
2352
|
+
source: ReportQuerySeriesSourceEnum;
|
|
2353
|
+
itemTypeIds: Array<number>;
|
|
2354
|
+
filters: Array<ReportQueryFilter>;
|
|
2355
|
+
metric: ReportQueryMetric;
|
|
2356
|
+
splitBy?: ReportQueryDimension;
|
|
2357
|
+
chart?: ReportQuerySeriesChartEnum;
|
|
2358
|
+
color?: string;
|
|
2359
|
+
axis?: ReportQuerySeriesAxisEnum;
|
|
2360
|
+
}
|
|
2361
|
+
declare const ReportQuerySeriesSourceEnum: {
|
|
2362
|
+
readonly Items: "items";
|
|
2363
|
+
readonly Articles: "articles";
|
|
2364
|
+
readonly StateHistory: "state_history";
|
|
2365
|
+
};
|
|
2366
|
+
type ReportQuerySeriesSourceEnum = typeof ReportQuerySeriesSourceEnum[keyof typeof ReportQuerySeriesSourceEnum];
|
|
2367
|
+
declare const ReportQuerySeriesChartEnum: {
|
|
2368
|
+
readonly Bar: "bar";
|
|
2369
|
+
readonly Line: "line";
|
|
2370
|
+
};
|
|
2371
|
+
type ReportQuerySeriesChartEnum = typeof ReportQuerySeriesChartEnum[keyof typeof ReportQuerySeriesChartEnum];
|
|
2372
|
+
declare const ReportQuerySeriesAxisEnum: {
|
|
2373
|
+
readonly Y: "y";
|
|
2374
|
+
readonly Y2: "y2";
|
|
2375
|
+
};
|
|
2376
|
+
type ReportQuerySeriesAxisEnum = typeof ReportQuerySeriesAxisEnum[keyof typeof ReportQuerySeriesAxisEnum];
|
|
2377
|
+
declare function instanceOfReportQuerySeries(value: object): value is ReportQuerySeries;
|
|
2378
|
+
declare function ReportQuerySeriesFromJSON(json: any): ReportQuerySeries;
|
|
2379
|
+
declare function ReportQuerySeriesFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportQuerySeries;
|
|
2380
|
+
declare function ReportQuerySeriesToJSON(json: any): ReportQuerySeries;
|
|
2381
|
+
declare function ReportQuerySeriesToJSONTyped(value?: ReportQuerySeries | null, ignoreDiscriminator?: boolean): any;
|
|
2382
|
+
|
|
2383
|
+
interface ReportQueryDefinition {
|
|
2384
|
+
version?: number;
|
|
2385
|
+
source?: ReportQueryDefinitionSourceEnum;
|
|
2386
|
+
itemTypeIds?: Array<number>;
|
|
2387
|
+
dimensions?: Array<ReportQueryDimension>;
|
|
2388
|
+
metrics?: Array<ReportQueryMetric>;
|
|
2389
|
+
filters?: Array<ReportQueryFilter>;
|
|
2390
|
+
x?: ReportQueryDimension;
|
|
2391
|
+
series?: Array<ReportQuerySeries>;
|
|
2392
|
+
chart?: ReportQueryDefinitionChartEnum;
|
|
2393
|
+
labelX?: string;
|
|
2394
|
+
labelY?: string;
|
|
2395
|
+
labelY2?: string;
|
|
2396
|
+
}
|
|
2397
|
+
declare const ReportQueryDefinitionSourceEnum: {
|
|
2398
|
+
readonly Items: "items";
|
|
2399
|
+
readonly Articles: "articles";
|
|
2400
|
+
readonly StateHistory: "state_history";
|
|
2401
|
+
};
|
|
2402
|
+
type ReportQueryDefinitionSourceEnum = typeof ReportQueryDefinitionSourceEnum[keyof typeof ReportQueryDefinitionSourceEnum];
|
|
2403
|
+
declare const ReportQueryDefinitionChartEnum: {
|
|
2404
|
+
readonly Bar: "bar";
|
|
2405
|
+
readonly Line: "line";
|
|
2406
|
+
readonly Pie: "pie";
|
|
2407
|
+
readonly StackedBar: "stacked_bar";
|
|
2408
|
+
readonly Table: "table";
|
|
2409
|
+
};
|
|
2410
|
+
type ReportQueryDefinitionChartEnum = typeof ReportQueryDefinitionChartEnum[keyof typeof ReportQueryDefinitionChartEnum];
|
|
2411
|
+
declare function instanceOfReportQueryDefinition(value: object): value is ReportQueryDefinition;
|
|
2412
|
+
declare function ReportQueryDefinitionFromJSON(json: any): ReportQueryDefinition;
|
|
2413
|
+
declare function ReportQueryDefinitionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportQueryDefinition;
|
|
2414
|
+
declare function ReportQueryDefinitionToJSON(json: any): ReportQueryDefinition;
|
|
2415
|
+
declare function ReportQueryDefinitionToJSONTyped(value?: ReportQueryDefinition | null, ignoreDiscriminator?: boolean): any;
|
|
2416
|
+
|
|
2417
|
+
interface ReportQueryAssistantDto {
|
|
2418
|
+
title: string;
|
|
2419
|
+
explanation: string;
|
|
2420
|
+
definition: ReportQueryDefinition;
|
|
2421
|
+
remainingToday: number;
|
|
2422
|
+
}
|
|
2423
|
+
declare function instanceOfReportQueryAssistantDto(value: object): value is ReportQueryAssistantDto;
|
|
2424
|
+
declare function ReportQueryAssistantDtoFromJSON(json: any): ReportQueryAssistantDto;
|
|
2425
|
+
declare function ReportQueryAssistantDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportQueryAssistantDto;
|
|
2426
|
+
declare function ReportQueryAssistantDtoToJSON(json: any): ReportQueryAssistantDto;
|
|
2427
|
+
declare function ReportQueryAssistantDtoToJSONTyped(value?: ReportQueryAssistantDto | null, ignoreDiscriminator?: boolean): any;
|
|
2428
|
+
|
|
2429
|
+
interface ReportQueryAssistantInput {
|
|
2430
|
+
prompt: string;
|
|
2431
|
+
definition?: ReportQueryDefinition;
|
|
2432
|
+
}
|
|
2433
|
+
declare function instanceOfReportQueryAssistantInput(value: object): value is ReportQueryAssistantInput;
|
|
2434
|
+
declare function ReportQueryAssistantInputFromJSON(json: any): ReportQueryAssistantInput;
|
|
2435
|
+
declare function ReportQueryAssistantInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportQueryAssistantInput;
|
|
2436
|
+
declare function ReportQueryAssistantInputToJSON(json: any): ReportQueryAssistantInput;
|
|
2437
|
+
declare function ReportQueryAssistantInputToJSONTyped(value?: ReportQueryAssistantInput | null, ignoreDiscriminator?: boolean): any;
|
|
2438
|
+
|
|
2439
|
+
interface ReportQueryAssistantOutput {
|
|
2440
|
+
data: ReportQueryAssistantDto;
|
|
2441
|
+
}
|
|
2442
|
+
declare function instanceOfReportQueryAssistantOutput(value: object): value is ReportQueryAssistantOutput;
|
|
2443
|
+
declare function ReportQueryAssistantOutputFromJSON(json: any): ReportQueryAssistantOutput;
|
|
2444
|
+
declare function ReportQueryAssistantOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportQueryAssistantOutput;
|
|
2445
|
+
declare function ReportQueryAssistantOutputToJSON(json: any): ReportQueryAssistantOutput;
|
|
2446
|
+
declare function ReportQueryAssistantOutputToJSONTyped(value?: ReportQueryAssistantOutput | null, ignoreDiscriminator?: boolean): any;
|
|
2447
|
+
|
|
2278
2448
|
declare const ReportQueryAxis: {
|
|
2279
2449
|
readonly Y: "y";
|
|
2280
2450
|
readonly Y2: "y2";
|
|
@@ -2444,145 +2614,6 @@ declare function ReportQueryDateBucketFromJSONTyped(json: any, ignoreDiscriminat
|
|
|
2444
2614
|
declare function ReportQueryDateBucketToJSON(value?: ReportQueryDateBucket | null): any;
|
|
2445
2615
|
declare function ReportQueryDateBucketToJSONTyped(value: any, ignoreDiscriminator: boolean): ReportQueryDateBucket;
|
|
2446
2616
|
|
|
2447
|
-
interface ReportQueryMetric {
|
|
2448
|
-
op: ReportQueryMetricOpEnum;
|
|
2449
|
-
field?: string;
|
|
2450
|
-
label?: string;
|
|
2451
|
-
}
|
|
2452
|
-
declare const ReportQueryMetricOpEnum: {
|
|
2453
|
-
readonly Count: "count";
|
|
2454
|
-
readonly CountDistinct: "count_distinct";
|
|
2455
|
-
readonly Sum: "sum";
|
|
2456
|
-
readonly Avg: "avg";
|
|
2457
|
-
readonly Min: "min";
|
|
2458
|
-
readonly Max: "max";
|
|
2459
|
-
};
|
|
2460
|
-
type ReportQueryMetricOpEnum = typeof ReportQueryMetricOpEnum[keyof typeof ReportQueryMetricOpEnum];
|
|
2461
|
-
declare function instanceOfReportQueryMetric(value: object): value is ReportQueryMetric;
|
|
2462
|
-
declare function ReportQueryMetricFromJSON(json: any): ReportQueryMetric;
|
|
2463
|
-
declare function ReportQueryMetricFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportQueryMetric;
|
|
2464
|
-
declare function ReportQueryMetricToJSON(json: any): ReportQueryMetric;
|
|
2465
|
-
declare function ReportQueryMetricToJSONTyped(value?: ReportQueryMetric | null, ignoreDiscriminator?: boolean): any;
|
|
2466
|
-
|
|
2467
|
-
interface ReportQueryFilter {
|
|
2468
|
-
field: string;
|
|
2469
|
-
op: ReportQueryFilterOpEnum;
|
|
2470
|
-
values: Array<string>;
|
|
2471
|
-
}
|
|
2472
|
-
declare const ReportQueryFilterOpEnum: {
|
|
2473
|
-
readonly Contains: "contains";
|
|
2474
|
-
readonly NotContains: "not_contains";
|
|
2475
|
-
readonly Eq: "eq";
|
|
2476
|
-
readonly Neq: "neq";
|
|
2477
|
-
readonly In: "in";
|
|
2478
|
-
readonly NotIn: "not_in";
|
|
2479
|
-
readonly Gt: "gt";
|
|
2480
|
-
readonly Gte: "gte";
|
|
2481
|
-
readonly Lt: "lt";
|
|
2482
|
-
readonly Lte: "lte";
|
|
2483
|
-
readonly IsEmpty: "is_empty";
|
|
2484
|
-
readonly IsNotEmpty: "is_not_empty";
|
|
2485
|
-
};
|
|
2486
|
-
type ReportQueryFilterOpEnum = typeof ReportQueryFilterOpEnum[keyof typeof ReportQueryFilterOpEnum];
|
|
2487
|
-
declare function instanceOfReportQueryFilter(value: object): value is ReportQueryFilter;
|
|
2488
|
-
declare function ReportQueryFilterFromJSON(json: any): ReportQueryFilter;
|
|
2489
|
-
declare function ReportQueryFilterFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportQueryFilter;
|
|
2490
|
-
declare function ReportQueryFilterToJSON(json: any): ReportQueryFilter;
|
|
2491
|
-
declare function ReportQueryFilterToJSONTyped(value?: ReportQueryFilter | null, ignoreDiscriminator?: boolean): any;
|
|
2492
|
-
|
|
2493
|
-
interface ReportQueryDimension {
|
|
2494
|
-
field: string;
|
|
2495
|
-
bucket?: ReportQueryDimensionBucketEnum;
|
|
2496
|
-
normalize?: ReportQueryDimensionNormalizeEnum;
|
|
2497
|
-
includeEmpty?: boolean;
|
|
2498
|
-
}
|
|
2499
|
-
declare const ReportQueryDimensionBucketEnum: {
|
|
2500
|
-
readonly Day: "day";
|
|
2501
|
-
readonly Week: "week";
|
|
2502
|
-
readonly Month: "month";
|
|
2503
|
-
readonly Quarter: "quarter";
|
|
2504
|
-
readonly Year: "year";
|
|
2505
|
-
};
|
|
2506
|
-
type ReportQueryDimensionBucketEnum = typeof ReportQueryDimensionBucketEnum[keyof typeof ReportQueryDimensionBucketEnum];
|
|
2507
|
-
declare const ReportQueryDimensionNormalizeEnum: {
|
|
2508
|
-
readonly None: "none";
|
|
2509
|
-
readonly TrimCase: "trim_case";
|
|
2510
|
-
readonly Ipp: "ipp";
|
|
2511
|
-
};
|
|
2512
|
-
type ReportQueryDimensionNormalizeEnum = typeof ReportQueryDimensionNormalizeEnum[keyof typeof ReportQueryDimensionNormalizeEnum];
|
|
2513
|
-
declare function instanceOfReportQueryDimension(value: object): value is ReportQueryDimension;
|
|
2514
|
-
declare function ReportQueryDimensionFromJSON(json: any): ReportQueryDimension;
|
|
2515
|
-
declare function ReportQueryDimensionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportQueryDimension;
|
|
2516
|
-
declare function ReportQueryDimensionToJSON(json: any): ReportQueryDimension;
|
|
2517
|
-
declare function ReportQueryDimensionToJSONTyped(value?: ReportQueryDimension | null, ignoreDiscriminator?: boolean): any;
|
|
2518
|
-
|
|
2519
|
-
interface ReportQuerySeries {
|
|
2520
|
-
label?: string;
|
|
2521
|
-
source: ReportQuerySeriesSourceEnum;
|
|
2522
|
-
itemTypeIds: Array<number>;
|
|
2523
|
-
filters: Array<ReportQueryFilter>;
|
|
2524
|
-
metric: ReportQueryMetric;
|
|
2525
|
-
splitBy?: ReportQueryDimension;
|
|
2526
|
-
chart?: ReportQuerySeriesChartEnum;
|
|
2527
|
-
color?: string;
|
|
2528
|
-
axis?: ReportQuerySeriesAxisEnum;
|
|
2529
|
-
}
|
|
2530
|
-
declare const ReportQuerySeriesSourceEnum: {
|
|
2531
|
-
readonly Items: "items";
|
|
2532
|
-
readonly Articles: "articles";
|
|
2533
|
-
readonly StateHistory: "state_history";
|
|
2534
|
-
};
|
|
2535
|
-
type ReportQuerySeriesSourceEnum = typeof ReportQuerySeriesSourceEnum[keyof typeof ReportQuerySeriesSourceEnum];
|
|
2536
|
-
declare const ReportQuerySeriesChartEnum: {
|
|
2537
|
-
readonly Bar: "bar";
|
|
2538
|
-
readonly Line: "line";
|
|
2539
|
-
};
|
|
2540
|
-
type ReportQuerySeriesChartEnum = typeof ReportQuerySeriesChartEnum[keyof typeof ReportQuerySeriesChartEnum];
|
|
2541
|
-
declare const ReportQuerySeriesAxisEnum: {
|
|
2542
|
-
readonly Y: "y";
|
|
2543
|
-
readonly Y2: "y2";
|
|
2544
|
-
};
|
|
2545
|
-
type ReportQuerySeriesAxisEnum = typeof ReportQuerySeriesAxisEnum[keyof typeof ReportQuerySeriesAxisEnum];
|
|
2546
|
-
declare function instanceOfReportQuerySeries(value: object): value is ReportQuerySeries;
|
|
2547
|
-
declare function ReportQuerySeriesFromJSON(json: any): ReportQuerySeries;
|
|
2548
|
-
declare function ReportQuerySeriesFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportQuerySeries;
|
|
2549
|
-
declare function ReportQuerySeriesToJSON(json: any): ReportQuerySeries;
|
|
2550
|
-
declare function ReportQuerySeriesToJSONTyped(value?: ReportQuerySeries | null, ignoreDiscriminator?: boolean): any;
|
|
2551
|
-
|
|
2552
|
-
interface ReportQueryDefinition {
|
|
2553
|
-
version?: number;
|
|
2554
|
-
source?: ReportQueryDefinitionSourceEnum;
|
|
2555
|
-
itemTypeIds?: Array<number>;
|
|
2556
|
-
dimensions?: Array<ReportQueryDimension>;
|
|
2557
|
-
metrics?: Array<ReportQueryMetric>;
|
|
2558
|
-
filters?: Array<ReportQueryFilter>;
|
|
2559
|
-
x?: ReportQueryDimension;
|
|
2560
|
-
series?: Array<ReportQuerySeries>;
|
|
2561
|
-
chart?: ReportQueryDefinitionChartEnum;
|
|
2562
|
-
labelX?: string;
|
|
2563
|
-
labelY?: string;
|
|
2564
|
-
labelY2?: string;
|
|
2565
|
-
}
|
|
2566
|
-
declare const ReportQueryDefinitionSourceEnum: {
|
|
2567
|
-
readonly Items: "items";
|
|
2568
|
-
readonly Articles: "articles";
|
|
2569
|
-
readonly StateHistory: "state_history";
|
|
2570
|
-
};
|
|
2571
|
-
type ReportQueryDefinitionSourceEnum = typeof ReportQueryDefinitionSourceEnum[keyof typeof ReportQueryDefinitionSourceEnum];
|
|
2572
|
-
declare const ReportQueryDefinitionChartEnum: {
|
|
2573
|
-
readonly Bar: "bar";
|
|
2574
|
-
readonly Line: "line";
|
|
2575
|
-
readonly Pie: "pie";
|
|
2576
|
-
readonly StackedBar: "stacked_bar";
|
|
2577
|
-
readonly Table: "table";
|
|
2578
|
-
};
|
|
2579
|
-
type ReportQueryDefinitionChartEnum = typeof ReportQueryDefinitionChartEnum[keyof typeof ReportQueryDefinitionChartEnum];
|
|
2580
|
-
declare function instanceOfReportQueryDefinition(value: object): value is ReportQueryDefinition;
|
|
2581
|
-
declare function ReportQueryDefinitionFromJSON(json: any): ReportQueryDefinition;
|
|
2582
|
-
declare function ReportQueryDefinitionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReportQueryDefinition;
|
|
2583
|
-
declare function ReportQueryDefinitionToJSON(json: any): ReportQueryDefinition;
|
|
2584
|
-
declare function ReportQueryDefinitionToJSONTyped(value?: ReportQueryDefinition | null, ignoreDiscriminator?: boolean): any;
|
|
2585
|
-
|
|
2586
2617
|
interface ReportQueryDto {
|
|
2587
2618
|
id: number;
|
|
2588
2619
|
title: string;
|
|
@@ -3546,6 +3577,9 @@ interface ApiV1ReportReportIdDeleteRequest {
|
|
|
3546
3577
|
interface ApiV1ReportReportIdGetRequest {
|
|
3547
3578
|
reportId: string;
|
|
3548
3579
|
}
|
|
3580
|
+
interface ApiV2ReportAssistantPostRequest {
|
|
3581
|
+
reportQueryAssistantInput: ReportQueryAssistantInput;
|
|
3582
|
+
}
|
|
3549
3583
|
interface ApiV2ReportPostRequest {
|
|
3550
3584
|
reportQueryInput: ReportQueryInput;
|
|
3551
3585
|
}
|
|
@@ -3598,6 +3632,8 @@ declare class ReportApi extends BaseAPI {
|
|
|
3598
3632
|
apiV1ReportReportIdDelete(requestParameters: ApiV1ReportReportIdDeleteRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ReportColumnOutput>;
|
|
3599
3633
|
apiV1ReportReportIdGetRaw(requestParameters: ApiV1ReportReportIdGetRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ReportOutput>>;
|
|
3600
3634
|
apiV1ReportReportIdGet(requestParameters: ApiV1ReportReportIdGetRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ReportOutput>;
|
|
3635
|
+
apiV2ReportAssistantPostRaw(requestParameters: ApiV2ReportAssistantPostRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ReportQueryAssistantOutput>>;
|
|
3636
|
+
apiV2ReportAssistantPost(requestParameters: ApiV2ReportAssistantPostRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ReportQueryAssistantOutput>;
|
|
3601
3637
|
apiV2ReportCatalogGetRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ReportQueryCatalogOutput>>;
|
|
3602
3638
|
apiV2ReportCatalogGet(initOverrides?: RequestInit | InitOverrideFunction): Promise<ReportQueryCatalogOutput>;
|
|
3603
3639
|
apiV2ReportGetRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ReportQueryListOutput>>;
|
|
@@ -3692,5 +3728,5 @@ declare class StateMachineApi extends BaseAPI {
|
|
|
3692
3728
|
apiV1StatemachineStateMachineIdTransitionPost(requestParameters: ApiV1StatemachineStateMachineIdTransitionPostRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<StateMachineDefinitionOutput>;
|
|
3693
3729
|
}
|
|
3694
3730
|
|
|
3695
|
-
export { AccountApi, AccountORMFromJSON, AccountORMFromJSONTyped, AccountORMToJSON, AccountORMToJSONTyped, AccountOutputFromJSON, AccountOutputFromJSONTyped, AccountOutputToJSON, AccountOutputToJSONTyped, AddUserToOrganizationDtoFromJSON, AddUserToOrganizationDtoFromJSONTyped, AddUserToOrganizationDtoToJSON, AddUserToOrganizationDtoToJSONTyped, ApiV1MapPost402ResponseFromJSON, ApiV1MapPost402ResponseFromJSONTyped, ApiV1MapPost402ResponseToJSON, ApiV1MapPost402ResponseToJSONTyped, ApiV1ReportItemGetOrderDirectionEnum, ApiV1ReportItemGetQOperatorEnum, ApiV1ReportReportIdDataPostFormatEnum, ArticleApi, ArticleORMFromJSON, ArticleORMFromJSONTyped, ArticleORMToJSON, ArticleORMToJSONTyped, ArticlePresentationORMFromJSON, ArticlePresentationORMFromJSONTyped, ArticlePresentationORMToJSON, ArticlePresentationORMToJSONTyped, ArticleTypeORMFromJSON, ArticleTypeORMFromJSONTyped, ArticleTypeORMToJSON, ArticleTypeORMToJSONTyped, AutoCompleteORMFromJSON, AutoCompleteORMFromJSONTyped, AutoCompleteORMToJSON, AutoCompleteORMToJSONTyped, AvailableArticlesDtoFromJSON, AvailableArticlesDtoFromJSONTyped, AvailableArticlesDtoToJSON, AvailableArticlesDtoToJSONTyped, AvailableArticlesOutputFromJSON, AvailableArticlesOutputFromJSONTyped, AvailableArticlesOutputToJSON, AvailableArticlesOutputToJSONTyped, AxisGridFromJSON, AxisGridFromJSONTyped, AxisGridToJSON, AxisGridToJSONTyped, AxisTimeFromJSON, AxisTimeFromJSONTyped, AxisTimeToJSON, AxisTimeToJSONTyped, AxisTitleFromJSON, AxisTitleFromJSONTyped, AxisTitleToJSON, AxisTitleToJSONTyped, BASE_PATH, BackofficeApi, BaseAPI, BlobApiResponse, COLLECTION_FORMATS, CalculateTourInputFromJSON, CalculateTourInputFromJSONTyped, CalculateTourInputToJSON, CalculateTourInputToJSONTyped, CalculateTourOutputFromJSON, CalculateTourOutputFromJSONTyped, CalculateTourOutputToJSON, CalculateTourOutputToJSONTyped, ChartConfigurationFromJSON, ChartConfigurationFromJSONTyped, ChartConfigurationToJSON, ChartConfigurationToJSONTyped, ChartDataFromJSON, ChartDataFromJSONTyped, ChartDataToJSON, ChartDataToJSONTyped, ChartDatasetFromJSON, ChartDatasetFromJSONTyped, ChartDatasetToJSON, ChartDatasetToJSONTyped, ChartLegendFromJSON, ChartLegendFromJSONTyped, ChartLegendPositionEnum, ChartLegendToJSON, ChartLegendToJSONTyped, ChartOptionsFromJSON, ChartOptionsFromJSONTyped, ChartOptionsToJSON, ChartOptionsToJSONTyped, ChartPluginsFromJSON, ChartPluginsFromJSONTyped, ChartPluginsToJSON, ChartPluginsToJSONTyped, ChartScalesFromJSON, ChartScalesFromJSONTyped, ChartScalesToJSON, ChartScalesToJSONTyped, ChartTitleFromJSON, ChartTitleFromJSONTyped, ChartTitleToJSON, ChartTitleToJSONTyped, ComputeRouteInputFromJSON, ComputeRouteInputFromJSONTyped, ComputeRouteInputToJSON, ComputeRouteInputToJSONTyped, ComputeRouteInputTravelModeEnum, Configuration, CoordDtoFromJSON, CoordDtoFromJSONTyped, CoordDtoToJSON, CoordDtoToJSONTyped, DataPointFromJSON, DataPointFromJSONTyped, DataPointToJSON, DataPointToJSONTyped, Def227FromJSON, Def227FromJSONTyped, Def227ToJSON, Def227ToJSONTyped, DefaultApi, DefaultConfig, FetchError, HealthcheckApi, HealthcheckStatusValue, HealthcheckStatusValueFromJSON, HealthcheckStatusValueFromJSONTyped, HealthcheckStatusValueToJSON, HealthcheckStatusValueToJSONTyped, InternalMapItemSearchResultORMFromJSON, InternalMapItemSearchResultORMFromJSONTyped, InternalMapItemSearchResultORMToJSON, InternalMapItemSearchResultORMToJSONTyped, ItemApi, ItemDecorationDtoFromJSON, ItemDecorationDtoFromJSONTyped, ItemDecorationDtoToJSON, ItemDecorationDtoToJSONTyped, ItemLayerLinkInputDtoFromJSON, ItemLayerLinkInputDtoFromJSONTyped, ItemLayerLinkInputDtoToJSON, ItemLayerLinkInputDtoToJSONTyped, ItemLinkToLayerOutputFromJSON, ItemLinkToLayerOutputFromJSONTyped, ItemLinkToLayerOutputToJSON, ItemLinkToLayerOutputToJSONTyped, ItemRenderOptionsInputFillTypeEnum, ItemRenderOptionsInputFromJSON, ItemRenderOptionsInputFromJSONTyped, ItemRenderOptionsInputToJSON, ItemRenderOptionsInputToJSONTyped, ItemRenderOptionsOutputFromJSON, ItemRenderOptionsOutputFromJSONTyped, ItemRenderOptionsOutputToJSON, ItemRenderOptionsOutputToJSONTyped, ItemTypeApi, ItemTypeFormDtoFromJSON, ItemTypeFormDtoFromJSONTyped, ItemTypeFormDtoToJSON, ItemTypeFormDtoToJSONTyped, ItemTypeFormOutputFromJSON, ItemTypeFormOutputFromJSONTyped, ItemTypeFormOutputToJSON, ItemTypeFormOutputToJSONTyped, ItemTypeInitialValueInputDtoFromJSON, ItemTypeInitialValueInputDtoFromJSONTyped, ItemTypeInitialValueInputDtoToJSON, ItemTypeInitialValueInputDtoToJSONTyped, ItemTypeInitialValueOutputFromJSON, ItemTypeInitialValueOutputFromJSONTyped, ItemTypeInitialValueOutputToJSON, ItemTypeInitialValueOutputToJSONTyped, ItemTypeOutputFromJSON, ItemTypeOutputFromJSONTyped, ItemTypeOutputToJSON, ItemTypeOutputToJSONTyped, ItemsOutputFromJSON, ItemsOutputFromJSONTyped, ItemsOutputToJSON, ItemsOutputToJSONTyped, JSONApiResponse, JobApi, JobCatalogOutputFromJSON, JobCatalogOutputFromJSONTyped, JobCatalogOutputToJSON, JobCatalogOutputToJSONTyped, JobDefinitionORMFromJSON, JobDefinitionORMFromJSONTyped, JobDefinitionORMToJSON, JobDefinitionORMToJSONTyped, JobInstanceListOutputFromJSON, JobInstanceListOutputFromJSONTyped, JobInstanceListOutputToJSON, JobInstanceListOutputToJSONTyped, JobInstanceORMFromJSON, JobInstanceORMFromJSONTyped, JobInstanceORMToJSON, JobInstanceORMToJSONTyped, JobInstanceOutputFromJSON, JobInstanceOutputFromJSONTyped, JobInstanceOutputToJSON, JobInstanceOutputToJSONTyped, JobRequestInputFromJSON, JobRequestInputFromJSONTyped, JobRequestInputToJSON, JobRequestInputToJSONTyped, JobResultUpdateInputFromJSON, JobResultUpdateInputFromJSONTyped, JobResultUpdateInputToJSON, JobResultUpdateInputToJSONTyped, JournalApi, JournalBookORMFromJSON, JournalBookORMFromJSONTyped, JournalBookORMToJSON, JournalBookORMToJSONTyped, JournalEntryArticleORMFromJSON, JournalEntryArticleORMFromJSONTyped, JournalEntryArticleORMToJSON, JournalEntryArticleORMToJSONTyped, JournalEntryInputFromJSON, JournalEntryInputFromJSONTyped, JournalEntryInputToJSON, JournalEntryInputToJSONTyped, JournalEntryListOutputFromJSON, JournalEntryListOutputFromJSONTyped, JournalEntryListOutputToJSON, JournalEntryListOutputToJSONTyped, JournalEntryMultimediaInputFromJSON, JournalEntryMultimediaInputFromJSONTyped, JournalEntryMultimediaInputToJSON, JournalEntryMultimediaInputToJSONTyped, JournalEntryMultimediaORMFromJSON, JournalEntryMultimediaORMFromJSONTyped, JournalEntryMultimediaORMToJSON, JournalEntryMultimediaORMToJSONTyped, JournalEntryMultimediaOutputFromJSON, JournalEntryMultimediaOutputFromJSONTyped, JournalEntryMultimediaOutputToJSON, JournalEntryMultimediaOutputToJSONTyped, JournalEntryORMFromJSON, JournalEntryORMFromJSONTyped, JournalEntryORMToJSON, JournalEntryORMToJSONTyped, JournalEntryOutputDtoFromJSON, JournalEntryOutputDtoFromJSONTyped, JournalEntryOutputDtoToJSON, JournalEntryOutputDtoToJSONTyped, JournalEntryOutputFromJSON, JournalEntryOutputFromJSONTyped, JournalEntryOutputToJSON, JournalEntryOutputToJSONTyped, LayerApi, LayerFieldFilterOperator, LayerFieldFilterOperatorFromJSON, LayerFieldFilterOperatorFromJSONTyped, LayerFieldFilterOperatorToJSON, LayerFieldFilterOperatorToJSONTyped, LayerInputDtoFromJSON, LayerInputDtoFromJSONTyped, LayerInputDtoToJSON, LayerInputDtoToJSONTyped, LayerItemTypeFieldFilterDtoFromJSON, LayerItemTypeFieldFilterDtoFromJSONTyped, LayerItemTypeFieldFilterDtoOperatorEnum, LayerItemTypeFieldFilterDtoToJSON, LayerItemTypeFieldFilterDtoToJSONTyped, LegendPosition, LegendPositionFromJSON, LegendPositionFromJSONTyped, LegendPositionToJSON, LegendPositionToJSONTyped, LocationApi, LocationForReportORMFromJSON, LocationForReportORMFromJSONTyped, LocationForReportORMToJSON, LocationForReportORMToJSONTyped, LocationORMFromJSON, LocationORMFromJSONTyped, LocationORMToJSON, LocationORMToJSONTyped, LocationOutputFromJSON, LocationOutputFromJSONTyped, LocationOutputToJSON, LocationOutputToJSONTyped, LoginApi, MagnitudeORMFromJSON, MagnitudeORMFromJSONTyped, MagnitudeORMToJSON, MagnitudeORMToJSONTyped, ManualLoginInputFromJSON, ManualLoginInputFromJSONTyped, ManualLoginInputToJSON, ManualLoginInputToJSONTyped, ManualLoginPasswordUpdateInputFromJSON, ManualLoginPasswordUpdateInputFromJSONTyped, ManualLoginPasswordUpdateInputToJSON, ManualLoginPasswordUpdateInputToJSONTyped, ManualRegisterInputFromJSON, ManualRegisterInputFromJSONTyped, ManualRegisterInputToJSON, ManualRegisterInputToJSONTyped, MapApi, MapClusterListOutputPaginatedFromJSON, MapClusterListOutputPaginatedFromJSONTyped, MapClusterListOutputPaginatedToJSON, MapClusterListOutputPaginatedToJSONTyped, MapClusterORMFromJSON, MapClusterORMFromJSONTyped, MapClusterORMToJSON, MapClusterORMToJSONTyped, MapItemArticleInputDtoFromJSON, MapItemArticleInputDtoFromJSONTyped, MapItemArticleInputDtoToJSON, MapItemArticleInputDtoToJSONTyped, MapItemArticleORMFromJSON, MapItemArticleORMFromJSONTyped, MapItemArticleORMToJSON, MapItemArticleORMToJSONTyped, MapItemCustomFieldDefinitionORMFieldTypeEnum, MapItemCustomFieldDefinitionORMFromJSON, MapItemCustomFieldDefinitionORMFromJSONTyped, MapItemCustomFieldDefinitionORMToJSON, MapItemCustomFieldDefinitionORMToJSONTyped, MapItemDynamicFieldInputDtoFromJSON, MapItemDynamicFieldInputDtoFromJSONTyped, MapItemDynamicFieldInputDtoToJSON, MapItemDynamicFieldInputDtoToJSONTyped, MapItemDynamicFieldORMFromJSON, MapItemDynamicFieldORMFromJSONTyped, MapItemDynamicFieldORMToJSON, MapItemDynamicFieldORMToJSONTyped, MapItemDynamicFieldWithDefinitionORMFromJSON, MapItemDynamicFieldWithDefinitionORMFromJSONTyped, MapItemDynamicFieldWithDefinitionORMToJSON, MapItemDynamicFieldWithDefinitionORMToJSONTyped, MapItemFieldType, MapItemFieldTypeFromJSON, MapItemFieldTypeFromJSONTyped, MapItemFieldTypeToJSON, MapItemFieldTypeToJSONTyped, MapItemInputFromJSON, MapItemInputFromJSONTyped, MapItemInputToJSON, MapItemInputToJSONTyped, MapItemLinkORMFromJSON, MapItemLinkORMFromJSONTyped, MapItemLinkORMToJSON, MapItemLinkORMToJSONTyped, MapItemLinkOutputFromJSON, MapItemLinkOutputFromJSONTyped, MapItemLinkOutputToJSON, MapItemLinkOutputToJSONTyped, MapItemListOutputFromJSON, MapItemListOutputFromJSONTyped, MapItemListOutputPaginatedFromJSON, MapItemListOutputPaginatedFromJSONTyped, MapItemListOutputPaginatedToJSON, MapItemListOutputPaginatedToJSONTyped, MapItemListOutputToJSON, MapItemListOutputToJSONTyped, MapItemMultimediaORMFromJSON, MapItemMultimediaORMFromJSONTyped, MapItemMultimediaORMToJSON, MapItemMultimediaORMToJSONTyped, MapItemMultimediaOutputFromJSON, MapItemMultimediaOutputFromJSONTyped, MapItemMultimediaOutputToJSON, MapItemMultimediaOutputToJSONTyped, MapItemNearByORMFromJSON, MapItemNearByORMFromJSONTyped, MapItemNearByORMToJSON, MapItemNearByORMToJSONTyped, MapItemORMFromJSON, MapItemORMFromJSONTyped, MapItemORMToJSON, MapItemORMToJSONTyped, MapItemOutputDtoFromJSON, MapItemOutputDtoFromJSONTyped, MapItemOutputDtoPropsFromJSON, MapItemOutputDtoPropsFromJSONTyped, MapItemOutputDtoPropsToJSON, MapItemOutputDtoPropsToJSONTyped, MapItemOutputDtoToJSON, MapItemOutputDtoToJSONTyped, MapItemOutputFromJSON, MapItemOutputFromJSONTyped, MapItemOutputToJSON, MapItemOutputToJSONTyped, MapItemRenderFillOption, MapItemRenderFillOptionFromJSON, MapItemRenderFillOptionFromJSONTyped, MapItemRenderFillOptionToJSON, MapItemRenderFillOptionToJSONTyped, MapItemRenderOptionsORMFillTypeEnum, MapItemRenderOptionsORMFromJSON, MapItemRenderOptionsORMFromJSONTyped, MapItemRenderOptionsORMToJSON, MapItemRenderOptionsORMToJSONTyped, MapItemStateTransitionLogDtoFromJSON, MapItemStateTransitionLogDtoFromJSONTyped, MapItemStateTransitionLogDtoToJSON, MapItemStateTransitionLogDtoToJSONTyped, MapItemTypeDynamicFieldDefinitionOutputFromJSON, MapItemTypeDynamicFieldDefinitionOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionOutputToJSON, MapItemTypeDynamicFieldDefinitionOutputToJSONTyped, MapItemTypeDynamicFieldDefinitionSingleOutputFromJSON, MapItemTypeDynamicFieldDefinitionSingleOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionSingleOutputToJSON, MapItemTypeDynamicFieldDefinitionSingleOutputToJSONTyped, MapItemTypeDynamicFieldDefinitionValuesOutputFromJSON, MapItemTypeDynamicFieldDefinitionValuesOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionValuesOutputToJSON, MapItemTypeDynamicFieldDefinitionValuesOutputToJSONTyped, MapItemTypeFormAction, MapItemTypeFormActionFromJSON, MapItemTypeFormActionFromJSONTyped, MapItemTypeFormActionToJSON, MapItemTypeFormActionToJSONTyped, MapItemTypeFormORMFromJSON, MapItemTypeFormORMFromJSONTyped, MapItemTypeFormORMTargetActionNameEnum, MapItemTypeFormORMToJSON, MapItemTypeFormORMToJSONTyped, MapItemTypeFormOutputFromJSON, MapItemTypeFormOutputFromJSONTyped, MapItemTypeFormOutputToJSON, MapItemTypeFormOutputToJSONTyped, MapItemTypeFormSectionBaseFieldId, MapItemTypeFormSectionBaseFieldIdFromJSON, MapItemTypeFormSectionBaseFieldIdFromJSONTyped, MapItemTypeFormSectionBaseFieldIdToJSON, MapItemTypeFormSectionBaseFieldIdToJSONTyped, MapItemTypeFormSectionDtoFromJSON, MapItemTypeFormSectionDtoFromJSONTyped, MapItemTypeFormSectionDtoToJSON, MapItemTypeFormSectionDtoToJSONTyped, MapItemTypeFormSectionFieldMetaType, MapItemTypeFormSectionFieldMetaTypeFromJSON, MapItemTypeFormSectionFieldMetaTypeFromJSONTyped, MapItemTypeFormSectionFieldMetaTypeToJSON, MapItemTypeFormSectionFieldMetaTypeToJSONTyped, MapItemTypeFormSectionFieldORMFieldMetaTypeEnum, MapItemTypeFormSectionFieldORMFieldTypeEnum, MapItemTypeFormSectionFieldORMFromJSON, MapItemTypeFormSectionFieldORMFromJSONTyped, MapItemTypeFormSectionFieldORMToJSON, MapItemTypeFormSectionFieldORMToJSONTyped, MapItemTypeFormSectionFieldOutputFromJSON, MapItemTypeFormSectionFieldOutputFromJSONTyped, MapItemTypeFormSectionFieldOutputToJSON, MapItemTypeFormSectionFieldOutputToJSONTyped, MapItemTypeFormSectionORMFromJSON, MapItemTypeFormSectionORMFromJSONTyped, MapItemTypeFormSectionORMToJSON, MapItemTypeFormSectionORMToJSONTyped, MapItemTypeFormSectionOutputFromJSON, MapItemTypeFormSectionOutputFromJSONTyped, MapItemTypeFormSectionOutputToJSON, MapItemTypeFormSectionOutputToJSONTyped, MapItemTypeInitialValueORMFromJSON, MapItemTypeInitialValueORMFromJSONTyped, MapItemTypeInitialValueORMToJSON, MapItemTypeInitialValueORMToJSONTyped, MapItemTypeORMFromJSON, MapItemTypeORMFromJSONTyped, MapItemTypeORMToJSON, MapItemTypeORMToJSONTyped, MapItemTypeOutputFromJSON, MapItemTypeOutputFromJSONTyped, MapItemTypeOutputToJSON, MapItemTypeOutputToJSONTyped, MapItemTypeSingleOutputFromJSON, MapItemTypeSingleOutputFromJSONTyped, MapItemTypeSingleOutputToJSON, MapItemTypeSingleOutputToJSONTyped, MapItemWithPointsInputFromJSON, MapItemWithPointsInputFromJSONTyped, MapItemWithPointsInputToJSON, MapItemWithPointsInputToJSONTyped, MapLayerContourCoordORMFromJSON, MapLayerContourCoordORMFromJSONTyped, MapLayerContourCoordORMToJSON, MapLayerContourCoordORMToJSONTyped, MapLayerInputFromJSON, MapLayerInputFromJSONTyped, MapLayerInputToJSON, MapLayerInputToJSONTyped, MapLayerItemDecorationORMFromJSON, MapLayerItemDecorationORMFromJSONTyped, MapLayerItemDecorationORMToJSON, MapLayerItemDecorationORMToJSONTyped, MapLayerItemORMFromJSON, MapLayerItemORMFromJSONTyped, MapLayerItemORMToJSON, MapLayerItemORMToJSONTyped, MapLayerItemTypeFieldFilterORMFromJSON, MapLayerItemTypeFieldFilterORMFromJSONTyped, MapLayerItemTypeFieldFilterORMOperatorEnum, MapLayerItemTypeFieldFilterORMToJSON, MapLayerItemTypeFieldFilterORMToJSONTyped, MapLayerListOutputFromJSON, MapLayerListOutputFromJSONTyped, MapLayerListOutputToJSON, MapLayerListOutputToJSONTyped, MapLayerORMFromJSON, MapLayerORMFromJSONTyped, MapLayerORMToJSON, MapLayerORMToJSONTyped, MapLayerOutputDtoFromJSON, MapLayerOutputDtoFromJSONTyped, MapLayerOutputDtoToJSON, MapLayerOutputDtoToJSONTyped, MapLayerOutputFromJSON, MapLayerOutputFromJSONTyped, MapLayerOutputToJSON, MapLayerOutputToJSONTyped, MapListOutputFromJSON, MapListOutputFromJSONTyped, MapListOutputToJSON, MapListOutputToJSONTyped, MapORMFromJSON, MapORMFromJSONTyped, MapORMToJSON, MapORMToJSONTyped, MapOutputFromJSON, MapOutputFromJSONTyped, MapOutputToJSON, MapOutputToJSONTyped, MapZoneInputFromJSON, MapZoneInputFromJSONTyped, MapZoneInputToJSON, MapZoneInputToJSONTyped, MapZoneORMFromJSON, MapZoneORMFromJSONTyped, MapZoneORMToJSON, MapZoneORMToJSONTyped, MapZoneOutputDtoFromJSON, MapZoneOutputDtoFromJSONTyped, MapZoneOutputDtoToJSON, MapZoneOutputDtoToJSONTyped, MapZoneOutputFromJSON, MapZoneOutputFromJSONTyped, MapZoneOutputToJSON, MapZoneOutputToJSONTyped, MapZonePointInputFromJSON, MapZonePointInputFromJSONTyped, MapZonePointInputToJSON, MapZonePointInputToJSONTyped, MapZonePointORMFromJSON, MapZonePointORMFromJSONTyped, MapZonePointORMToJSON, MapZonePointORMToJSONTyped, MapZoneWithPointsInputFromJSON, MapZoneWithPointsInputFromJSONTyped, MapZoneWithPointsInputToJSON, MapZoneWithPointsInputToJSONTyped, McpApi, MeasureUnitORMFromJSON, MeasureUnitORMFromJSONTyped, MeasureUnitORMToJSON, MeasureUnitORMToJSONTyped, ModelRequestContextFromJSON, ModelRequestContextFromJSONTyped, ModelRequestContextToJSON, ModelRequestContextToJSONTyped, MultimediaApi, MultimediaORMFromJSON, MultimediaORMFromJSONTyped, MultimediaORMToJSON, MultimediaORMToJSONTyped, MultimediaOutputFromJSON, MultimediaOutputFromJSONTyped, MultimediaOutputToJSON, MultimediaOutputToJSONTyped, MultipleMultimediaOutputFromJSON, MultipleMultimediaOutputFromJSONTyped, MultipleMultimediaOutputToJSON, MultipleMultimediaOutputToJSONTyped, NearbyPlaceDtoFromJSON, NearbyPlaceDtoFromJSONTyped, NearbyPlaceDtoToJSON, NearbyPlaceDtoToJSONTyped, NominatimAddressORMFromJSON, NominatimAddressORMFromJSONTyped, NominatimAddressORMToJSON, NominatimAddressORMToJSONTyped, NominatimORMFromJSON, NominatimORMFromJSONTyped, NominatimORMToJSON, NominatimORMToJSONTyped, OAuthApi, OAuthClientORMFromJSON, OAuthClientORMFromJSONTyped, OAuthClientORMToJSON, OAuthClientORMToJSONTyped, OAuthRefreshTokenORMFromJSON, OAuthRefreshTokenORMFromJSONTyped, OAuthRefreshTokenORMToJSON, OAuthRefreshTokenORMToJSONTyped, OrganizationApi, OrganizationORMFromJSON, OrganizationORMFromJSONTyped, OrganizationORMToJSON, OrganizationORMToJSONTyped, PageInfoFromJSON, PageInfoFromJSONTyped, PageInfoToJSON, PageInfoToJSONTyped, PlaceAddressDtoFromJSON, PlaceAddressDtoFromJSONTyped, PlaceAddressDtoToJSON, PlaceAddressDtoToJSONTyped, PlaceApi, PlaceDetailsDtoFromJSON, PlaceDetailsDtoFromJSONTyped, PlaceDetailsDtoToJSON, PlaceDetailsDtoToJSONTyped, PlaceDetailsOutputFromJSON, PlaceDetailsOutputFromJSONTyped, PlaceDetailsOutputToJSON, PlaceDetailsOutputToJSONTyped, ReportAllItemsListOutputFromJSON, ReportAllItemsListOutputFromJSONTyped, ReportAllItemsListOutputToJSON, ReportAllItemsListOutputToJSONTyped, ReportApi, ReportAvailableColumnDtoColumnTypeEnum, ReportAvailableColumnDtoFromJSON, ReportAvailableColumnDtoFromJSONTyped, ReportAvailableColumnDtoToJSON, ReportAvailableColumnDtoToJSONTyped, ReportAvailableColumnsListOutputFromJSON, ReportAvailableColumnsListOutputFromJSONTyped, ReportAvailableColumnsListOutputToJSON, ReportAvailableColumnsListOutputToJSONTyped, ReportColumnFilterListOutputFromJSON, ReportColumnFilterListOutputFromJSONTyped, ReportColumnFilterListOutputToJSON, ReportColumnFilterListOutputToJSONTyped, ReportColumnFilterORMFromJSON, ReportColumnFilterORMFromJSONTyped, ReportColumnFilterORMToJSON, ReportColumnFilterORMToJSONTyped, ReportColumnFilterOutputFromJSON, ReportColumnFilterOutputFromJSONTyped, ReportColumnFilterOutputToJSON, ReportColumnFilterOutputToJSONTyped, ReportColumnListOutputFromJSON, ReportColumnListOutputFromJSONTyped, ReportColumnListOutputToJSON, ReportColumnListOutputToJSONTyped, ReportColumnORMFromJSON, ReportColumnORMFromJSONTyped, ReportColumnORMToJSON, ReportColumnORMToJSONTyped, ReportColumnOutputFromJSON, ReportColumnOutputFromJSONTyped, ReportColumnOutputToJSON, ReportColumnOutputToJSONTyped, ReportConfigurationDtoFromJSON, ReportConfigurationDtoFromJSONTyped, ReportConfigurationDtoToJSON, ReportConfigurationDtoToJSONTyped, ReportDataCSVDtoFromJSON, ReportDataCSVDtoFromJSONTyped, ReportDataCSVDtoToJSON, ReportDataCSVDtoToJSONTyped, ReportDataDtoFromJSON, ReportDataDtoFromJSONTyped, ReportDataDtoToJSON, ReportDataDtoToJSONTyped, ReportDataJSONDtoFromJSON, ReportDataJSONDtoFromJSONTyped, ReportDataJSONDtoToJSON, ReportDataJSONDtoToJSONTyped, ReportDataORMFromJSON, ReportDataORMFromJSONTyped, ReportDataORMToJSON, ReportDataORMToJSONTyped, ReportDataOutputFromJSON, ReportDataOutputFromJSONTyped, ReportDataOutputToJSON, ReportDataOutputToJSONTyped, ReportDataRowORMFromJSON, ReportDataRowORMFromJSONTyped, ReportDataRowORMToJSON, ReportDataRowORMToJSONTyped, ReportDtoFromJSON, ReportDtoFromJSONTyped, ReportDtoToJSON, ReportDtoToJSONTyped, ReportListOutputFromJSON, ReportListOutputFromJSONTyped, ReportListOutputToJSON, ReportListOutputToJSONTyped, ReportORMFromJSON, ReportORMFromJSONTyped, ReportORMToJSON, ReportORMToJSONTyped, ReportOutputFromJSON, ReportOutputFromJSONTyped, ReportOutputToJSON, ReportOutputToJSONTyped, ReportQueryAxis, ReportQueryAxisFromJSON, ReportQueryAxisFromJSONTyped, ReportQueryAxisToJSON, ReportQueryAxisToJSONTyped, ReportQueryCatalogFieldBucketsEnum, ReportQueryCatalogFieldFilterOperatorsEnum, ReportQueryCatalogFieldFromJSON, ReportQueryCatalogFieldFromJSONTyped, ReportQueryCatalogFieldMetricOperationsEnum, ReportQueryCatalogFieldSourcesEnum, ReportQueryCatalogFieldSuggestedNormalizeEnum, ReportQueryCatalogFieldToJSON, ReportQueryCatalogFieldToJSONTyped, ReportQueryCatalogFieldTypeEnum, ReportQueryCatalogOutputFromJSON, ReportQueryCatalogOutputFromJSONTyped, ReportQueryCatalogOutputToJSON, ReportQueryCatalogOutputToJSONTyped, ReportQueryChart, ReportQueryChartFromJSON, ReportQueryChartFromJSONTyped, ReportQueryChartToJSON, ReportQueryChartToJSONTyped, ReportQueryDataDtoFromJSON, ReportQueryDataDtoFromJSONTyped, ReportQueryDataDtoToJSON, ReportQueryDataDtoToJSONTyped, ReportQueryDataOutputFromJSON, ReportQueryDataOutputFromJSONTyped, ReportQueryDataOutputToJSON, ReportQueryDataOutputToJSONTyped, ReportQueryDateBucket, ReportQueryDateBucketFromJSON, ReportQueryDateBucketFromJSONTyped, ReportQueryDateBucketToJSON, ReportQueryDateBucketToJSONTyped, ReportQueryDefinitionChartEnum, ReportQueryDefinitionFromJSON, ReportQueryDefinitionFromJSONTyped, ReportQueryDefinitionSourceEnum, ReportQueryDefinitionToJSON, ReportQueryDefinitionToJSONTyped, ReportQueryDimensionBucketEnum, ReportQueryDimensionFromJSON, ReportQueryDimensionFromJSONTyped, ReportQueryDimensionNormalizeEnum, ReportQueryDimensionToJSON, ReportQueryDimensionToJSONTyped, ReportQueryDtoFromJSON, ReportQueryDtoFromJSONTyped, ReportQueryDtoToJSON, ReportQueryDtoToJSONTyped, ReportQueryFieldType, ReportQueryFieldTypeFromJSON, ReportQueryFieldTypeFromJSONTyped, ReportQueryFieldTypeToJSON, ReportQueryFieldTypeToJSONTyped, ReportQueryFilterFromJSON, ReportQueryFilterFromJSONTyped, ReportQueryFilterOpEnum, ReportQueryFilterOperator, ReportQueryFilterOperatorFromJSON, ReportQueryFilterOperatorFromJSONTyped, ReportQueryFilterOperatorToJSON, ReportQueryFilterOperatorToJSONTyped, ReportQueryFilterToJSON, ReportQueryFilterToJSONTyped, ReportQueryInputFromJSON, ReportQueryInputFromJSONTyped, ReportQueryInputToJSON, ReportQueryInputToJSONTyped, ReportQueryListOutputFromJSON, ReportQueryListOutputFromJSONTyped, ReportQueryListOutputToJSON, ReportQueryListOutputToJSONTyped, ReportQueryMetricFromJSON, ReportQueryMetricFromJSONTyped, ReportQueryMetricOpEnum, ReportQueryMetricOperation, ReportQueryMetricOperationFromJSON, ReportQueryMetricOperationFromJSONTyped, ReportQueryMetricOperationToJSON, ReportQueryMetricOperationToJSONTyped, ReportQueryMetricToJSON, ReportQueryMetricToJSONTyped, ReportQueryNormalize, ReportQueryNormalizeFromJSON, ReportQueryNormalizeFromJSONTyped, ReportQueryNormalizeToJSON, ReportQueryNormalizeToJSONTyped, ReportQueryOutputFromJSON, ReportQueryOutputFromJSONTyped, ReportQueryOutputToJSON, ReportQueryOutputToJSONTyped, ReportQueryPreviewInputFromJSON, ReportQueryPreviewInputFromJSONTyped, ReportQueryPreviewInputToJSON, ReportQueryPreviewInputToJSONTyped, ReportQueryResultColumnFromJSON, ReportQueryResultColumnFromJSONTyped, ReportQueryResultColumnToJSON, ReportQueryResultColumnToJSONTyped, ReportQueryResultFromJSON, ReportQueryResultFromJSONTyped, ReportQueryResultRowFromJSON, ReportQueryResultRowFromJSONTyped, ReportQueryResultRowToJSON, ReportQueryResultRowToJSONTyped, ReportQueryResultToJSON, ReportQueryResultToJSONTyped, ReportQuerySeriesAxisEnum, ReportQuerySeriesChart, ReportQuerySeriesChartEnum, ReportQuerySeriesChartFromJSON, ReportQuerySeriesChartFromJSONTyped, ReportQuerySeriesChartToJSON, ReportQuerySeriesChartToJSONTyped, ReportQuerySeriesFromJSON, ReportQuerySeriesFromJSONTyped, ReportQuerySeriesSourceEnum, ReportQuerySeriesToJSON, ReportQuerySeriesToJSONTyped, ReportQuerySource, ReportQuerySourceFromJSON, ReportQuerySourceFromJSONTyped, ReportQuerySourceToJSON, ReportQuerySourceToJSONTyped, RequiredError, ResponseError, ReverseGeoCodingOutputFromJSON, ReverseGeoCodingOutputFromJSONTyped, ReverseGeoCodingOutputToJSON, ReverseGeoCodingOutputToJSONTyped, RouteApi, RouteDtoFromJSON, RouteDtoFromJSONTyped, RouteDtoToJSON, RouteDtoToJSONTyped, RouteLegDtoFromJSON, RouteLegDtoFromJSONTyped, RouteLegDtoToJSON, RouteLegDtoToJSONTyped, RouteOutputFromJSON, RouteOutputFromJSONTyped, RouteOutputToJSON, RouteOutputToJSONTyped, RouteStepDtoFromJSON, RouteStepDtoFromJSONTyped, RouteStepDtoToJSON, RouteStepDtoToJSONTyped, RouteTravelMode, RouteTravelModeFromJSON, RouteTravelModeFromJSONTyped, RouteTravelModeToJSON, RouteTravelModeToJSONTyped, SEARCHSECTIONS, SEARCHSECTIONSFromJSON, SEARCHSECTIONSFromJSONTyped, SEARCHSECTIONSToJSON, SEARCHSECTIONSToJSONTyped, SearchApi, SearchORMFromJSON, SearchORMFromJSONTyped, SearchORMToJSON, SearchORMToJSONTyped, SearchOutputFromJSON, SearchOutputFromJSONTyped, SearchOutputToJSON, SearchOutputToJSONTyped, SearchResultDtoFromJSON, SearchResultDtoFromJSONTyped, SearchResultDtoToJSON, SearchResultDtoToJSONTyped, SearchResultSectionDtoFromJSON, SearchResultSectionDtoFromJSONTyped, SearchResultSectionDtoToJSON, SearchResultSectionDtoToJSONTyped, SearchResultSectionItemFromJSON, SearchResultSectionItemFromJSONTyped, SearchResultSectionItemToJSON, SearchResultSectionItemToJSONTyped, SourceApi, SourceDtoFromJSON, SourceDtoFromJSONTyped, SourceDtoToJSON, SourceDtoToJSONTyped, SourceListOutputFromJSON, SourceListOutputFromJSONTyped, SourceListOutputToJSON, SourceListOutputToJSONTyped, SourceOutputFromJSON, SourceOutputFromJSONTyped, SourceOutputToJSON, SourceOutputToJSONTyped, StateMachineApi, StateMachineDefinitionListOutputFromJSON, StateMachineDefinitionListOutputFromJSONTyped, StateMachineDefinitionListOutputToJSON, StateMachineDefinitionListOutputToJSONTyped, StateMachineDefinitionOutputDtoFromJSON, StateMachineDefinitionOutputDtoFromJSONTyped, StateMachineDefinitionOutputDtoToJSON, StateMachineDefinitionOutputDtoToJSONTyped, StateMachineDefinitionOutputFromJSON, StateMachineDefinitionOutputFromJSONTyped, StateMachineDefinitionOutputToJSON, StateMachineDefinitionOutputToJSONTyped, StateMachineInputFromJSON, StateMachineInputFromJSONTyped, StateMachineInputToJSON, StateMachineInputToJSONTyped, StateMachineORMFromJSON, StateMachineORMFromJSONTyped, StateMachineORMToJSON, StateMachineORMToJSONTyped, StateMachineOutputFromJSON, StateMachineOutputFromJSONTyped, StateMachineOutputToJSON, StateMachineOutputToJSONTyped, StateMachineStateInputFromJSON, StateMachineStateInputFromJSONTyped, StateMachineStateInputToJSON, StateMachineStateInputToJSONTyped, StateMachineStateORMFromJSON, StateMachineStateORMFromJSONTyped, StateMachineStateORMToJSON, StateMachineStateORMToJSONTyped, StateMachineStateOutputDtoFromJSON, StateMachineStateOutputDtoFromJSONTyped, StateMachineStateOutputDtoToJSON, StateMachineStateOutputDtoToJSONTyped, StateMachineTransitionInputFromJSON, StateMachineTransitionInputFromJSONTyped, StateMachineTransitionInputToJSON, StateMachineTransitionInputToJSONTyped, StateMachineTransitionLogORMFromJSON, StateMachineTransitionLogORMFromJSONTyped, StateMachineTransitionLogORMToJSON, StateMachineTransitionLogORMToJSONTyped, StateMachineTransitionORMFromJSON, StateMachineTransitionORMFromJSONTyped, StateMachineTransitionORMToJSON, StateMachineTransitionORMToJSONTyped, StateMachineTransitionOutputDtoFromJSON, StateMachineTransitionOutputDtoFromJSONTyped, StateMachineTransitionOutputDtoToJSON, StateMachineTransitionOutputDtoToJSONTyped, TextApiResponse, UpdateUserInOrganizationPasswordDtoFromJSON, UpdateUserInOrganizationPasswordDtoFromJSONTyped, UpdateUserInOrganizationPasswordDtoToJSON, UpdateUserInOrganizationPasswordDtoToJSONTyped, UploadDtoFromJSON, UploadDtoFromJSONTyped, UploadDtoToJSON, UploadDtoToJSONTyped, UploadOutputFromJSON, UploadOutputFromJSONTyped, UploadOutputToJSON, UploadOutputToJSONTyped, UserDtoFromJSON, UserDtoFromJSONTyped, UserDtoToJSON, UserDtoToJSONTyped, UserInOrganizationDtoFromJSON, UserInOrganizationDtoFromJSONTyped, UserInOrganizationDtoToJSON, UserInOrganizationDtoToJSONTyped, UserInOrganizationOutputFromJSON, UserInOrganizationOutputFromJSONTyped, UserInOrganizationOutputToJSON, UserInOrganizationOutputToJSONTyped, UserORMFromJSON, UserORMFromJSONTyped, UserORMToJSON, UserORMToJSONTyped, UserPaymentControlDtoFromJSON, UserPaymentControlDtoFromJSONTyped, UserPaymentControlDtoToJSON, UserPaymentControlDtoToJSONTyped, UserPaymentControlOutputFromJSON, UserPaymentControlOutputFromJSONTyped, UserPaymentControlOutputToJSON, UserPaymentControlOutputToJSONTyped, VoidApiResponse, XAxisOptionsFromJSON, XAxisOptionsFromJSONTyped, XAxisOptionsToJSON, XAxisOptionsToJSONTyped, YAxisOptionsFromJSON, YAxisOptionsFromJSONTyped, YAxisOptionsToJSON, YAxisOptionsToJSONTyped, canConsumeForm, exists, instanceOfAccountORM, instanceOfAccountOutput, instanceOfAddUserToOrganizationDto, instanceOfApiV1MapPost402Response, instanceOfArticleORM, instanceOfArticlePresentationORM, instanceOfArticleTypeORM, instanceOfAutoCompleteORM, instanceOfAvailableArticlesDto, instanceOfAvailableArticlesOutput, instanceOfAxisGrid, instanceOfAxisTime, instanceOfAxisTitle, instanceOfCalculateTourInput, instanceOfCalculateTourOutput, instanceOfChartConfiguration, instanceOfChartData, instanceOfChartDataset, instanceOfChartLegend, instanceOfChartOptions, instanceOfChartPlugins, instanceOfChartScales, instanceOfChartTitle, instanceOfComputeRouteInput, instanceOfCoordDto, instanceOfDataPoint, instanceOfDef227, instanceOfHealthcheckStatusValue, instanceOfInternalMapItemSearchResultORM, instanceOfItemDecorationDto, instanceOfItemLayerLinkInputDto, instanceOfItemLinkToLayerOutput, instanceOfItemRenderOptionsInput, instanceOfItemRenderOptionsOutput, instanceOfItemTypeFormDto, instanceOfItemTypeFormOutput, instanceOfItemTypeInitialValueInputDto, instanceOfItemTypeInitialValueOutput, instanceOfItemTypeOutput, instanceOfItemsOutput, instanceOfJobCatalogOutput, instanceOfJobDefinitionORM, instanceOfJobInstanceListOutput, instanceOfJobInstanceORM, instanceOfJobInstanceOutput, instanceOfJobRequestInput, instanceOfJobResultUpdateInput, instanceOfJournalBookORM, instanceOfJournalEntryArticleORM, instanceOfJournalEntryInput, instanceOfJournalEntryListOutput, instanceOfJournalEntryMultimediaInput, instanceOfJournalEntryMultimediaORM, instanceOfJournalEntryMultimediaOutput, instanceOfJournalEntryORM, instanceOfJournalEntryOutput, instanceOfJournalEntryOutputDto, instanceOfLayerFieldFilterOperator, instanceOfLayerInputDto, instanceOfLayerItemTypeFieldFilterDto, instanceOfLegendPosition, instanceOfLocationForReportORM, instanceOfLocationORM, instanceOfLocationOutput, instanceOfMagnitudeORM, instanceOfManualLoginInput, instanceOfManualLoginPasswordUpdateInput, instanceOfManualRegisterInput, instanceOfMapClusterListOutputPaginated, instanceOfMapClusterORM, instanceOfMapItemArticleInputDto, instanceOfMapItemArticleORM, instanceOfMapItemCustomFieldDefinitionORM, instanceOfMapItemDynamicFieldInputDto, instanceOfMapItemDynamicFieldORM, instanceOfMapItemDynamicFieldWithDefinitionORM, instanceOfMapItemFieldType, instanceOfMapItemInput, instanceOfMapItemLinkORM, instanceOfMapItemLinkOutput, instanceOfMapItemListOutput, instanceOfMapItemListOutputPaginated, instanceOfMapItemMultimediaORM, instanceOfMapItemMultimediaOutput, instanceOfMapItemNearByORM, instanceOfMapItemORM, instanceOfMapItemOutput, instanceOfMapItemOutputDto, instanceOfMapItemOutputDtoProps, instanceOfMapItemRenderFillOption, instanceOfMapItemRenderOptionsORM, instanceOfMapItemStateTransitionLogDto, instanceOfMapItemTypeDynamicFieldDefinitionOutput, instanceOfMapItemTypeDynamicFieldDefinitionSingleOutput, instanceOfMapItemTypeDynamicFieldDefinitionValuesOutput, instanceOfMapItemTypeFormAction, instanceOfMapItemTypeFormORM, instanceOfMapItemTypeFormOutput, instanceOfMapItemTypeFormSectionBaseFieldId, instanceOfMapItemTypeFormSectionDto, instanceOfMapItemTypeFormSectionFieldMetaType, instanceOfMapItemTypeFormSectionFieldORM, instanceOfMapItemTypeFormSectionFieldOutput, instanceOfMapItemTypeFormSectionORM, instanceOfMapItemTypeFormSectionOutput, instanceOfMapItemTypeInitialValueORM, instanceOfMapItemTypeORM, instanceOfMapItemTypeOutput, instanceOfMapItemTypeSingleOutput, instanceOfMapItemWithPointsInput, instanceOfMapLayerContourCoordORM, instanceOfMapLayerInput, instanceOfMapLayerItemDecorationORM, instanceOfMapLayerItemORM, instanceOfMapLayerItemTypeFieldFilterORM, instanceOfMapLayerListOutput, instanceOfMapLayerORM, instanceOfMapLayerOutput, instanceOfMapLayerOutputDto, instanceOfMapListOutput, instanceOfMapORM, instanceOfMapOutput, instanceOfMapZoneInput, instanceOfMapZoneORM, instanceOfMapZoneOutput, instanceOfMapZoneOutputDto, instanceOfMapZonePointInput, instanceOfMapZonePointORM, instanceOfMapZoneWithPointsInput, instanceOfMeasureUnitORM, instanceOfModelRequestContext, instanceOfMultimediaORM, instanceOfMultimediaOutput, instanceOfMultipleMultimediaOutput, instanceOfNearbyPlaceDto, instanceOfNominatimAddressORM, instanceOfNominatimORM, instanceOfOAuthClientORM, instanceOfOAuthRefreshTokenORM, instanceOfOrganizationORM, instanceOfPageInfo, instanceOfPlaceAddressDto, instanceOfPlaceDetailsDto, instanceOfPlaceDetailsOutput, instanceOfReportAllItemsListOutput, instanceOfReportAvailableColumnDto, instanceOfReportAvailableColumnsListOutput, instanceOfReportColumnFilterListOutput, instanceOfReportColumnFilterORM, instanceOfReportColumnFilterOutput, instanceOfReportColumnListOutput, instanceOfReportColumnORM, instanceOfReportColumnOutput, instanceOfReportConfigurationDto, instanceOfReportDataCSVDto, instanceOfReportDataDto, instanceOfReportDataJSONDto, instanceOfReportDataORM, instanceOfReportDataOutput, instanceOfReportDataRowORM, instanceOfReportDto, instanceOfReportListOutput, instanceOfReportORM, instanceOfReportOutput, instanceOfReportQueryAxis, instanceOfReportQueryCatalogField, instanceOfReportQueryCatalogOutput, instanceOfReportQueryChart, instanceOfReportQueryDataDto, instanceOfReportQueryDataOutput, instanceOfReportQueryDateBucket, instanceOfReportQueryDefinition, instanceOfReportQueryDimension, instanceOfReportQueryDto, instanceOfReportQueryFieldType, instanceOfReportQueryFilter, instanceOfReportQueryFilterOperator, instanceOfReportQueryInput, instanceOfReportQueryListOutput, instanceOfReportQueryMetric, instanceOfReportQueryMetricOperation, instanceOfReportQueryNormalize, instanceOfReportQueryOutput, instanceOfReportQueryPreviewInput, instanceOfReportQueryResult, instanceOfReportQueryResultColumn, instanceOfReportQueryResultRow, instanceOfReportQuerySeries, instanceOfReportQuerySeriesChart, instanceOfReportQuerySource, instanceOfReverseGeoCodingOutput, instanceOfRouteDto, instanceOfRouteLegDto, instanceOfRouteOutput, instanceOfRouteStepDto, instanceOfRouteTravelMode, instanceOfSEARCHSECTIONS, instanceOfSearchORM, instanceOfSearchOutput, instanceOfSearchResultDto, instanceOfSearchResultSectionDto, instanceOfSearchResultSectionItem, instanceOfSourceDto, instanceOfSourceListOutput, instanceOfSourceOutput, instanceOfStateMachineDefinitionListOutput, instanceOfStateMachineDefinitionOutput, instanceOfStateMachineDefinitionOutputDto, instanceOfStateMachineInput, instanceOfStateMachineORM, instanceOfStateMachineOutput, instanceOfStateMachineStateInput, instanceOfStateMachineStateORM, instanceOfStateMachineStateOutputDto, instanceOfStateMachineTransitionInput, instanceOfStateMachineTransitionLogORM, instanceOfStateMachineTransitionORM, instanceOfStateMachineTransitionOutputDto, instanceOfUpdateUserInOrganizationPasswordDto, instanceOfUploadDto, instanceOfUploadOutput, instanceOfUserDto, instanceOfUserInOrganizationDto, instanceOfUserInOrganizationOutput, instanceOfUserORM, instanceOfUserPaymentControlDto, instanceOfUserPaymentControlOutput, instanceOfXAxisOptions, instanceOfYAxisOptions, mapValues, querystring };
|
|
3696
|
-
export type { AccountORM, AccountOutput, AddUserToOrganizationDto, ApiResponse, ApiV1AccountPostRequest, ApiV1AccountSearchHistoryDeleteRequest, ApiV1AuthManualLoginPostRequest, ApiV1AuthManualPasswordPutRequest, ApiV1AuthManualRegisterPostRequest, ApiV1BackofficeSearchCacheDeleteRequest, ApiV1ItemGetRequest, ApiV1ItemItemIdDeleteRequest, ApiV1ItemItemIdGetRequest, ApiV1ItemItemIdLayerGetRequest, ApiV1ItemItemIdLinkPostRequest, ApiV1ItemItemIdMultimediaPostRequest, ApiV1ItemItemIdRenderPostRequest, ApiV1ItemNearbyGetRequest, ApiV1ItemPostRequest, ApiV1ItemPutRequest, ApiV1ItemTypeDynamicfieldFieldDefinitionIdAutocompleteGetRequest, ApiV1ItemTypeDynamicfieldFieldDefinitionIdInitialValueInitialValueIdDeleteRequest, ApiV1ItemTypeDynamicfieldFieldDefinitionIdInitialValuePostRequest, ApiV1ItemTypeFormSectionFieldFieldIdDeleteRequest, ApiV1ItemTypeItemTypeIdDeleteRequest, ApiV1ItemTypeItemTypeIdFormGetRequest, ApiV1ItemWithinGetRequest, ApiV1JobJobIdGetRequest, ApiV1JobJobIdPutRequest, ApiV1JobPostRequest, ApiV1JournalParentIdEntryJournalEntryIdMultimediaPostRequest, ApiV1JournalParentIdGetRequest, ApiV1JournalParentIdPostRequest, ApiV1JournalParentIdPutRequest, ApiV1LayerLayerIdDeleteRequest, ApiV1LayerLayerIdGetRequest, ApiV1LayerLayerIdItemGetRequest, ApiV1LayerLayerIdItemItemIdPostRequest, ApiV1LayerLayerIdPutRequest, ApiV1LayerLayerIdTourPostRequest, ApiV1LayerLayerIdViewportItemPostRequest, ApiV1LayerPostRequest, ApiV1LayerViewportTileMapZoomLevelTileXTileYGetRequest, ApiV1LocationPointPostRequest, ApiV1LocationZonePostRequest, ApiV1MapCodeMapCodeGetRequest, ApiV1MapMapIdGetRequest, ApiV1MapMapIdLayerGetRequest, ApiV1MapPost402Response, ApiV1MapPostRequest, ApiV1MultimediaHumanRelativeUrlGetRequest, ApiV1MultimediaMultimediaIdGetRequest, ApiV1MultimediaPostRequest, ApiV1MultimediaPptxPostRequest, ApiV1OrganizationPostRequest, ApiV1OrganizationPutRequest, ApiV1OrganizationUserPostRequest, ApiV1OrganizationUserUserIdDeleteRequest, ApiV1OrganizationUserUserIdPasswordPutRequest, ApiV1PlaceDetailsGetRequest, ApiV1ReportItemGetRequest, ApiV1ReportReportIdColumnColumnIdDeleteRequest, ApiV1ReportReportIdColumnColumnIdFilterFilterIdDeleteRequest, ApiV1ReportReportIdColumnColumnIdFilterGetRequest, ApiV1ReportReportIdColumnColumnIdFilterPostRequest, ApiV1ReportReportIdColumnColumnIdFilterPutRequest, ApiV1ReportReportIdColumnGetRequest, ApiV1ReportReportIdColumnPostRequest, ApiV1ReportReportIdColumnPutRequest, ApiV1ReportReportIdDataPostRequest, ApiV1ReportReportIdDeleteRequest, ApiV1ReportReportIdGetRequest, ApiV1RouteComputePostRequest, ApiV1SearchAutocompletePostRequest, ApiV1SearchPostRequest, ApiV1SearchReverseGetRequest, ApiV1SourcePostRequest, ApiV1StatemachineStateMachineIdStatePostRequest, ApiV1StatemachineStateMachineIdTransitionPostRequest, ApiV2ItemPostRequest, ApiV2ReportPostRequest, ApiV2ReportPreviewPostRequest, ApiV2ReportReportIdDataPostRequest, ApiV2ReportReportIdGetRequest, ApiV2ReportReportIdPutRequest, ArticleORM, ArticlePresentationORM, ArticleTypeORM, AutoCompleteORM, AvailableArticlesDto, AvailableArticlesOutput, AxisGrid, AxisTime, AxisTitle, CalculateTourInput, CalculateTourOutput, ChartConfiguration, ChartData, ChartDataset, ChartLegend, ChartOptions, ChartPlugins, ChartScales, ChartTitle, ComputeRouteInput, ConfigurationParameters, Consume, CoordDto, DataPoint,
|
|
3731
|
+
export { AccountApi, AccountORMFromJSON, AccountORMFromJSONTyped, AccountORMToJSON, AccountORMToJSONTyped, AccountOutputFromJSON, AccountOutputFromJSONTyped, AccountOutputToJSON, AccountOutputToJSONTyped, AddUserToOrganizationDtoFromJSON, AddUserToOrganizationDtoFromJSONTyped, AddUserToOrganizationDtoToJSON, AddUserToOrganizationDtoToJSONTyped, ApiV1MapPost402ResponseFromJSON, ApiV1MapPost402ResponseFromJSONTyped, ApiV1MapPost402ResponseToJSON, ApiV1MapPost402ResponseToJSONTyped, ApiV1ReportItemGetOrderDirectionEnum, ApiV1ReportItemGetQOperatorEnum, ApiV1ReportReportIdDataPostFormatEnum, ArticleApi, ArticleORMFromJSON, ArticleORMFromJSONTyped, ArticleORMToJSON, ArticleORMToJSONTyped, ArticlePresentationORMFromJSON, ArticlePresentationORMFromJSONTyped, ArticlePresentationORMToJSON, ArticlePresentationORMToJSONTyped, ArticleTypeORMFromJSON, ArticleTypeORMFromJSONTyped, ArticleTypeORMToJSON, ArticleTypeORMToJSONTyped, AutoCompleteORMFromJSON, AutoCompleteORMFromJSONTyped, AutoCompleteORMToJSON, AutoCompleteORMToJSONTyped, AvailableArticlesDtoFromJSON, AvailableArticlesDtoFromJSONTyped, AvailableArticlesDtoToJSON, AvailableArticlesDtoToJSONTyped, AvailableArticlesOutputFromJSON, AvailableArticlesOutputFromJSONTyped, AvailableArticlesOutputToJSON, AvailableArticlesOutputToJSONTyped, AxisGridFromJSON, AxisGridFromJSONTyped, AxisGridToJSON, AxisGridToJSONTyped, AxisTimeFromJSON, AxisTimeFromJSONTyped, AxisTimeToJSON, AxisTimeToJSONTyped, AxisTitleFromJSON, AxisTitleFromJSONTyped, AxisTitleToJSON, AxisTitleToJSONTyped, BASE_PATH, BackofficeApi, BaseAPI, BlobApiResponse, COLLECTION_FORMATS, CalculateTourInputFromJSON, CalculateTourInputFromJSONTyped, CalculateTourInputToJSON, CalculateTourInputToJSONTyped, CalculateTourOutputFromJSON, CalculateTourOutputFromJSONTyped, CalculateTourOutputToJSON, CalculateTourOutputToJSONTyped, ChartConfigurationFromJSON, ChartConfigurationFromJSONTyped, ChartConfigurationToJSON, ChartConfigurationToJSONTyped, ChartDataFromJSON, ChartDataFromJSONTyped, ChartDataToJSON, ChartDataToJSONTyped, ChartDatasetFromJSON, ChartDatasetFromJSONTyped, ChartDatasetToJSON, ChartDatasetToJSONTyped, ChartLegendFromJSON, ChartLegendFromJSONTyped, ChartLegendPositionEnum, ChartLegendToJSON, ChartLegendToJSONTyped, ChartOptionsFromJSON, ChartOptionsFromJSONTyped, ChartOptionsToJSON, ChartOptionsToJSONTyped, ChartPluginsFromJSON, ChartPluginsFromJSONTyped, ChartPluginsToJSON, ChartPluginsToJSONTyped, ChartScalesFromJSON, ChartScalesFromJSONTyped, ChartScalesToJSON, ChartScalesToJSONTyped, ChartTitleFromJSON, ChartTitleFromJSONTyped, ChartTitleToJSON, ChartTitleToJSONTyped, ComputeRouteInputFromJSON, ComputeRouteInputFromJSONTyped, ComputeRouteInputToJSON, ComputeRouteInputToJSONTyped, ComputeRouteInputTravelModeEnum, Configuration, CoordDtoFromJSON, CoordDtoFromJSONTyped, CoordDtoToJSON, CoordDtoToJSONTyped, DataPointFromJSON, DataPointFromJSONTyped, DataPointToJSON, DataPointToJSONTyped, Def230FromJSON, Def230FromJSONTyped, Def230ToJSON, Def230ToJSONTyped, DefaultApi, DefaultConfig, FetchError, HealthcheckApi, HealthcheckStatusValue, HealthcheckStatusValueFromJSON, HealthcheckStatusValueFromJSONTyped, HealthcheckStatusValueToJSON, HealthcheckStatusValueToJSONTyped, InternalMapItemSearchResultORMFromJSON, InternalMapItemSearchResultORMFromJSONTyped, InternalMapItemSearchResultORMToJSON, InternalMapItemSearchResultORMToJSONTyped, ItemApi, ItemDecorationDtoFromJSON, ItemDecorationDtoFromJSONTyped, ItemDecorationDtoToJSON, ItemDecorationDtoToJSONTyped, ItemLayerLinkInputDtoFromJSON, ItemLayerLinkInputDtoFromJSONTyped, ItemLayerLinkInputDtoToJSON, ItemLayerLinkInputDtoToJSONTyped, ItemLinkToLayerOutputFromJSON, ItemLinkToLayerOutputFromJSONTyped, ItemLinkToLayerOutputToJSON, ItemLinkToLayerOutputToJSONTyped, ItemRenderOptionsInputFillTypeEnum, ItemRenderOptionsInputFromJSON, ItemRenderOptionsInputFromJSONTyped, ItemRenderOptionsInputToJSON, ItemRenderOptionsInputToJSONTyped, ItemRenderOptionsOutputFromJSON, ItemRenderOptionsOutputFromJSONTyped, ItemRenderOptionsOutputToJSON, ItemRenderOptionsOutputToJSONTyped, ItemTypeApi, ItemTypeFormDtoFromJSON, ItemTypeFormDtoFromJSONTyped, ItemTypeFormDtoToJSON, ItemTypeFormDtoToJSONTyped, ItemTypeFormOutputFromJSON, ItemTypeFormOutputFromJSONTyped, ItemTypeFormOutputToJSON, ItemTypeFormOutputToJSONTyped, ItemTypeInitialValueInputDtoFromJSON, ItemTypeInitialValueInputDtoFromJSONTyped, ItemTypeInitialValueInputDtoToJSON, ItemTypeInitialValueInputDtoToJSONTyped, ItemTypeInitialValueOutputFromJSON, ItemTypeInitialValueOutputFromJSONTyped, ItemTypeInitialValueOutputToJSON, ItemTypeInitialValueOutputToJSONTyped, ItemTypeOutputFromJSON, ItemTypeOutputFromJSONTyped, ItemTypeOutputToJSON, ItemTypeOutputToJSONTyped, ItemsOutputFromJSON, ItemsOutputFromJSONTyped, ItemsOutputToJSON, ItemsOutputToJSONTyped, JSONApiResponse, JobApi, JobCatalogOutputFromJSON, JobCatalogOutputFromJSONTyped, JobCatalogOutputToJSON, JobCatalogOutputToJSONTyped, JobDefinitionORMFromJSON, JobDefinitionORMFromJSONTyped, JobDefinitionORMToJSON, JobDefinitionORMToJSONTyped, JobInstanceListOutputFromJSON, JobInstanceListOutputFromJSONTyped, JobInstanceListOutputToJSON, JobInstanceListOutputToJSONTyped, JobInstanceORMFromJSON, JobInstanceORMFromJSONTyped, JobInstanceORMToJSON, JobInstanceORMToJSONTyped, JobInstanceOutputFromJSON, JobInstanceOutputFromJSONTyped, JobInstanceOutputToJSON, JobInstanceOutputToJSONTyped, JobRequestInputFromJSON, JobRequestInputFromJSONTyped, JobRequestInputToJSON, JobRequestInputToJSONTyped, JobResultUpdateInputFromJSON, JobResultUpdateInputFromJSONTyped, JobResultUpdateInputToJSON, JobResultUpdateInputToJSONTyped, JournalApi, JournalBookORMFromJSON, JournalBookORMFromJSONTyped, JournalBookORMToJSON, JournalBookORMToJSONTyped, JournalEntryArticleORMFromJSON, JournalEntryArticleORMFromJSONTyped, JournalEntryArticleORMToJSON, JournalEntryArticleORMToJSONTyped, JournalEntryInputFromJSON, JournalEntryInputFromJSONTyped, JournalEntryInputToJSON, JournalEntryInputToJSONTyped, JournalEntryListOutputFromJSON, JournalEntryListOutputFromJSONTyped, JournalEntryListOutputToJSON, JournalEntryListOutputToJSONTyped, JournalEntryMultimediaInputFromJSON, JournalEntryMultimediaInputFromJSONTyped, JournalEntryMultimediaInputToJSON, JournalEntryMultimediaInputToJSONTyped, JournalEntryMultimediaORMFromJSON, JournalEntryMultimediaORMFromJSONTyped, JournalEntryMultimediaORMToJSON, JournalEntryMultimediaORMToJSONTyped, JournalEntryMultimediaOutputFromJSON, JournalEntryMultimediaOutputFromJSONTyped, JournalEntryMultimediaOutputToJSON, JournalEntryMultimediaOutputToJSONTyped, JournalEntryORMFromJSON, JournalEntryORMFromJSONTyped, JournalEntryORMToJSON, JournalEntryORMToJSONTyped, JournalEntryOutputDtoFromJSON, JournalEntryOutputDtoFromJSONTyped, JournalEntryOutputDtoToJSON, JournalEntryOutputDtoToJSONTyped, JournalEntryOutputFromJSON, JournalEntryOutputFromJSONTyped, JournalEntryOutputToJSON, JournalEntryOutputToJSONTyped, LayerApi, LayerFieldFilterOperator, LayerFieldFilterOperatorFromJSON, LayerFieldFilterOperatorFromJSONTyped, LayerFieldFilterOperatorToJSON, LayerFieldFilterOperatorToJSONTyped, LayerInputDtoFromJSON, LayerInputDtoFromJSONTyped, LayerInputDtoToJSON, LayerInputDtoToJSONTyped, LayerItemTypeFieldFilterDtoFromJSON, LayerItemTypeFieldFilterDtoFromJSONTyped, LayerItemTypeFieldFilterDtoOperatorEnum, LayerItemTypeFieldFilterDtoToJSON, LayerItemTypeFieldFilterDtoToJSONTyped, LegendPosition, LegendPositionFromJSON, LegendPositionFromJSONTyped, LegendPositionToJSON, LegendPositionToJSONTyped, LocationApi, LocationForReportORMFromJSON, LocationForReportORMFromJSONTyped, LocationForReportORMToJSON, LocationForReportORMToJSONTyped, LocationORMFromJSON, LocationORMFromJSONTyped, LocationORMToJSON, LocationORMToJSONTyped, LocationOutputFromJSON, LocationOutputFromJSONTyped, LocationOutputToJSON, LocationOutputToJSONTyped, LoginApi, MagnitudeORMFromJSON, MagnitudeORMFromJSONTyped, MagnitudeORMToJSON, MagnitudeORMToJSONTyped, ManualLoginInputFromJSON, ManualLoginInputFromJSONTyped, ManualLoginInputToJSON, ManualLoginInputToJSONTyped, ManualLoginPasswordUpdateInputFromJSON, ManualLoginPasswordUpdateInputFromJSONTyped, ManualLoginPasswordUpdateInputToJSON, ManualLoginPasswordUpdateInputToJSONTyped, ManualRegisterInputFromJSON, ManualRegisterInputFromJSONTyped, ManualRegisterInputToJSON, ManualRegisterInputToJSONTyped, MapApi, MapClusterListOutputPaginatedFromJSON, MapClusterListOutputPaginatedFromJSONTyped, MapClusterListOutputPaginatedToJSON, MapClusterListOutputPaginatedToJSONTyped, MapClusterORMFromJSON, MapClusterORMFromJSONTyped, MapClusterORMToJSON, MapClusterORMToJSONTyped, MapItemArticleInputDtoFromJSON, MapItemArticleInputDtoFromJSONTyped, MapItemArticleInputDtoToJSON, MapItemArticleInputDtoToJSONTyped, MapItemArticleORMFromJSON, MapItemArticleORMFromJSONTyped, MapItemArticleORMToJSON, MapItemArticleORMToJSONTyped, MapItemCustomFieldDefinitionORMFieldTypeEnum, MapItemCustomFieldDefinitionORMFromJSON, MapItemCustomFieldDefinitionORMFromJSONTyped, MapItemCustomFieldDefinitionORMToJSON, MapItemCustomFieldDefinitionORMToJSONTyped, MapItemDynamicFieldInputDtoFromJSON, MapItemDynamicFieldInputDtoFromJSONTyped, MapItemDynamicFieldInputDtoToJSON, MapItemDynamicFieldInputDtoToJSONTyped, MapItemDynamicFieldORMFromJSON, MapItemDynamicFieldORMFromJSONTyped, MapItemDynamicFieldORMToJSON, MapItemDynamicFieldORMToJSONTyped, MapItemDynamicFieldWithDefinitionORMFromJSON, MapItemDynamicFieldWithDefinitionORMFromJSONTyped, MapItemDynamicFieldWithDefinitionORMToJSON, MapItemDynamicFieldWithDefinitionORMToJSONTyped, MapItemFieldType, MapItemFieldTypeFromJSON, MapItemFieldTypeFromJSONTyped, MapItemFieldTypeToJSON, MapItemFieldTypeToJSONTyped, MapItemInputFromJSON, MapItemInputFromJSONTyped, MapItemInputToJSON, MapItemInputToJSONTyped, MapItemLinkORMFromJSON, MapItemLinkORMFromJSONTyped, MapItemLinkORMToJSON, MapItemLinkORMToJSONTyped, MapItemLinkOutputFromJSON, MapItemLinkOutputFromJSONTyped, MapItemLinkOutputToJSON, MapItemLinkOutputToJSONTyped, MapItemListOutputFromJSON, MapItemListOutputFromJSONTyped, MapItemListOutputPaginatedFromJSON, MapItemListOutputPaginatedFromJSONTyped, MapItemListOutputPaginatedToJSON, MapItemListOutputPaginatedToJSONTyped, MapItemListOutputToJSON, MapItemListOutputToJSONTyped, MapItemMultimediaORMFromJSON, MapItemMultimediaORMFromJSONTyped, MapItemMultimediaORMToJSON, MapItemMultimediaORMToJSONTyped, MapItemMultimediaOutputFromJSON, MapItemMultimediaOutputFromJSONTyped, MapItemMultimediaOutputToJSON, MapItemMultimediaOutputToJSONTyped, MapItemNearByORMFromJSON, MapItemNearByORMFromJSONTyped, MapItemNearByORMToJSON, MapItemNearByORMToJSONTyped, MapItemORMFromJSON, MapItemORMFromJSONTyped, MapItemORMToJSON, MapItemORMToJSONTyped, MapItemOutputDtoFromJSON, MapItemOutputDtoFromJSONTyped, MapItemOutputDtoPropsFromJSON, MapItemOutputDtoPropsFromJSONTyped, MapItemOutputDtoPropsToJSON, MapItemOutputDtoPropsToJSONTyped, MapItemOutputDtoToJSON, MapItemOutputDtoToJSONTyped, MapItemOutputFromJSON, MapItemOutputFromJSONTyped, MapItemOutputToJSON, MapItemOutputToJSONTyped, MapItemRenderFillOption, MapItemRenderFillOptionFromJSON, MapItemRenderFillOptionFromJSONTyped, MapItemRenderFillOptionToJSON, MapItemRenderFillOptionToJSONTyped, MapItemRenderOptionsORMFillTypeEnum, MapItemRenderOptionsORMFromJSON, MapItemRenderOptionsORMFromJSONTyped, MapItemRenderOptionsORMToJSON, MapItemRenderOptionsORMToJSONTyped, MapItemStateTransitionLogDtoFromJSON, MapItemStateTransitionLogDtoFromJSONTyped, MapItemStateTransitionLogDtoToJSON, MapItemStateTransitionLogDtoToJSONTyped, MapItemTypeDynamicFieldDefinitionOutputFromJSON, MapItemTypeDynamicFieldDefinitionOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionOutputToJSON, MapItemTypeDynamicFieldDefinitionOutputToJSONTyped, MapItemTypeDynamicFieldDefinitionSingleOutputFromJSON, MapItemTypeDynamicFieldDefinitionSingleOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionSingleOutputToJSON, MapItemTypeDynamicFieldDefinitionSingleOutputToJSONTyped, MapItemTypeDynamicFieldDefinitionValuesOutputFromJSON, MapItemTypeDynamicFieldDefinitionValuesOutputFromJSONTyped, MapItemTypeDynamicFieldDefinitionValuesOutputToJSON, MapItemTypeDynamicFieldDefinitionValuesOutputToJSONTyped, MapItemTypeFormAction, MapItemTypeFormActionFromJSON, MapItemTypeFormActionFromJSONTyped, MapItemTypeFormActionToJSON, MapItemTypeFormActionToJSONTyped, MapItemTypeFormORMFromJSON, MapItemTypeFormORMFromJSONTyped, MapItemTypeFormORMTargetActionNameEnum, MapItemTypeFormORMToJSON, MapItemTypeFormORMToJSONTyped, MapItemTypeFormOutputFromJSON, MapItemTypeFormOutputFromJSONTyped, MapItemTypeFormOutputToJSON, MapItemTypeFormOutputToJSONTyped, MapItemTypeFormSectionBaseFieldId, MapItemTypeFormSectionBaseFieldIdFromJSON, MapItemTypeFormSectionBaseFieldIdFromJSONTyped, MapItemTypeFormSectionBaseFieldIdToJSON, MapItemTypeFormSectionBaseFieldIdToJSONTyped, MapItemTypeFormSectionDtoFromJSON, MapItemTypeFormSectionDtoFromJSONTyped, MapItemTypeFormSectionDtoToJSON, MapItemTypeFormSectionDtoToJSONTyped, MapItemTypeFormSectionFieldMetaType, MapItemTypeFormSectionFieldMetaTypeFromJSON, MapItemTypeFormSectionFieldMetaTypeFromJSONTyped, MapItemTypeFormSectionFieldMetaTypeToJSON, MapItemTypeFormSectionFieldMetaTypeToJSONTyped, MapItemTypeFormSectionFieldORMFieldMetaTypeEnum, MapItemTypeFormSectionFieldORMFieldTypeEnum, MapItemTypeFormSectionFieldORMFromJSON, MapItemTypeFormSectionFieldORMFromJSONTyped, MapItemTypeFormSectionFieldORMToJSON, MapItemTypeFormSectionFieldORMToJSONTyped, MapItemTypeFormSectionFieldOutputFromJSON, MapItemTypeFormSectionFieldOutputFromJSONTyped, MapItemTypeFormSectionFieldOutputToJSON, MapItemTypeFormSectionFieldOutputToJSONTyped, MapItemTypeFormSectionORMFromJSON, MapItemTypeFormSectionORMFromJSONTyped, MapItemTypeFormSectionORMToJSON, MapItemTypeFormSectionORMToJSONTyped, MapItemTypeFormSectionOutputFromJSON, MapItemTypeFormSectionOutputFromJSONTyped, MapItemTypeFormSectionOutputToJSON, MapItemTypeFormSectionOutputToJSONTyped, MapItemTypeInitialValueORMFromJSON, MapItemTypeInitialValueORMFromJSONTyped, MapItemTypeInitialValueORMToJSON, MapItemTypeInitialValueORMToJSONTyped, MapItemTypeORMFromJSON, MapItemTypeORMFromJSONTyped, MapItemTypeORMToJSON, MapItemTypeORMToJSONTyped, MapItemTypeOutputFromJSON, MapItemTypeOutputFromJSONTyped, MapItemTypeOutputToJSON, MapItemTypeOutputToJSONTyped, MapItemTypeSingleOutputFromJSON, MapItemTypeSingleOutputFromJSONTyped, MapItemTypeSingleOutputToJSON, MapItemTypeSingleOutputToJSONTyped, MapItemWithPointsInputFromJSON, MapItemWithPointsInputFromJSONTyped, MapItemWithPointsInputToJSON, MapItemWithPointsInputToJSONTyped, MapLayerContourCoordORMFromJSON, MapLayerContourCoordORMFromJSONTyped, MapLayerContourCoordORMToJSON, MapLayerContourCoordORMToJSONTyped, MapLayerInputFromJSON, MapLayerInputFromJSONTyped, MapLayerInputToJSON, MapLayerInputToJSONTyped, MapLayerItemDecorationORMFromJSON, MapLayerItemDecorationORMFromJSONTyped, MapLayerItemDecorationORMToJSON, MapLayerItemDecorationORMToJSONTyped, MapLayerItemORMFromJSON, MapLayerItemORMFromJSONTyped, MapLayerItemORMToJSON, MapLayerItemORMToJSONTyped, MapLayerItemTypeFieldFilterORMFromJSON, MapLayerItemTypeFieldFilterORMFromJSONTyped, MapLayerItemTypeFieldFilterORMOperatorEnum, MapLayerItemTypeFieldFilterORMToJSON, MapLayerItemTypeFieldFilterORMToJSONTyped, MapLayerListOutputFromJSON, MapLayerListOutputFromJSONTyped, MapLayerListOutputToJSON, MapLayerListOutputToJSONTyped, MapLayerORMFromJSON, MapLayerORMFromJSONTyped, MapLayerORMToJSON, MapLayerORMToJSONTyped, MapLayerOutputDtoFromJSON, MapLayerOutputDtoFromJSONTyped, MapLayerOutputDtoToJSON, MapLayerOutputDtoToJSONTyped, MapLayerOutputFromJSON, MapLayerOutputFromJSONTyped, MapLayerOutputToJSON, MapLayerOutputToJSONTyped, MapListOutputFromJSON, MapListOutputFromJSONTyped, MapListOutputToJSON, MapListOutputToJSONTyped, MapORMFromJSON, MapORMFromJSONTyped, MapORMToJSON, MapORMToJSONTyped, MapOutputFromJSON, MapOutputFromJSONTyped, MapOutputToJSON, MapOutputToJSONTyped, MapZoneInputFromJSON, MapZoneInputFromJSONTyped, MapZoneInputToJSON, MapZoneInputToJSONTyped, MapZoneORMFromJSON, MapZoneORMFromJSONTyped, MapZoneORMToJSON, MapZoneORMToJSONTyped, MapZoneOutputDtoFromJSON, MapZoneOutputDtoFromJSONTyped, MapZoneOutputDtoToJSON, MapZoneOutputDtoToJSONTyped, MapZoneOutputFromJSON, MapZoneOutputFromJSONTyped, MapZoneOutputToJSON, MapZoneOutputToJSONTyped, MapZonePointInputFromJSON, MapZonePointInputFromJSONTyped, MapZonePointInputToJSON, MapZonePointInputToJSONTyped, MapZonePointORMFromJSON, MapZonePointORMFromJSONTyped, MapZonePointORMToJSON, MapZonePointORMToJSONTyped, MapZoneWithPointsInputFromJSON, MapZoneWithPointsInputFromJSONTyped, MapZoneWithPointsInputToJSON, MapZoneWithPointsInputToJSONTyped, McpApi, MeasureUnitORMFromJSON, MeasureUnitORMFromJSONTyped, MeasureUnitORMToJSON, MeasureUnitORMToJSONTyped, ModelRequestContextFromJSON, ModelRequestContextFromJSONTyped, ModelRequestContextToJSON, ModelRequestContextToJSONTyped, MultimediaApi, MultimediaORMFromJSON, MultimediaORMFromJSONTyped, MultimediaORMToJSON, MultimediaORMToJSONTyped, MultimediaOutputFromJSON, MultimediaOutputFromJSONTyped, MultimediaOutputToJSON, MultimediaOutputToJSONTyped, MultipleMultimediaOutputFromJSON, MultipleMultimediaOutputFromJSONTyped, MultipleMultimediaOutputToJSON, MultipleMultimediaOutputToJSONTyped, NearbyPlaceDtoFromJSON, NearbyPlaceDtoFromJSONTyped, NearbyPlaceDtoToJSON, NearbyPlaceDtoToJSONTyped, NominatimAddressORMFromJSON, NominatimAddressORMFromJSONTyped, NominatimAddressORMToJSON, NominatimAddressORMToJSONTyped, NominatimORMFromJSON, NominatimORMFromJSONTyped, NominatimORMToJSON, NominatimORMToJSONTyped, OAuthApi, OAuthClientORMFromJSON, OAuthClientORMFromJSONTyped, OAuthClientORMToJSON, OAuthClientORMToJSONTyped, OAuthRefreshTokenORMFromJSON, OAuthRefreshTokenORMFromJSONTyped, OAuthRefreshTokenORMToJSON, OAuthRefreshTokenORMToJSONTyped, OrganizationApi, OrganizationORMFromJSON, OrganizationORMFromJSONTyped, OrganizationORMToJSON, OrganizationORMToJSONTyped, PageInfoFromJSON, PageInfoFromJSONTyped, PageInfoToJSON, PageInfoToJSONTyped, PlaceAddressDtoFromJSON, PlaceAddressDtoFromJSONTyped, PlaceAddressDtoToJSON, PlaceAddressDtoToJSONTyped, PlaceApi, PlaceDetailsDtoFromJSON, PlaceDetailsDtoFromJSONTyped, PlaceDetailsDtoToJSON, PlaceDetailsDtoToJSONTyped, PlaceDetailsOutputFromJSON, PlaceDetailsOutputFromJSONTyped, PlaceDetailsOutputToJSON, PlaceDetailsOutputToJSONTyped, ReportAllItemsListOutputFromJSON, ReportAllItemsListOutputFromJSONTyped, ReportAllItemsListOutputToJSON, ReportAllItemsListOutputToJSONTyped, ReportApi, ReportAvailableColumnDtoColumnTypeEnum, ReportAvailableColumnDtoFromJSON, ReportAvailableColumnDtoFromJSONTyped, ReportAvailableColumnDtoToJSON, ReportAvailableColumnDtoToJSONTyped, ReportAvailableColumnsListOutputFromJSON, ReportAvailableColumnsListOutputFromJSONTyped, ReportAvailableColumnsListOutputToJSON, ReportAvailableColumnsListOutputToJSONTyped, ReportColumnFilterListOutputFromJSON, ReportColumnFilterListOutputFromJSONTyped, ReportColumnFilterListOutputToJSON, ReportColumnFilterListOutputToJSONTyped, ReportColumnFilterORMFromJSON, ReportColumnFilterORMFromJSONTyped, ReportColumnFilterORMToJSON, ReportColumnFilterORMToJSONTyped, ReportColumnFilterOutputFromJSON, ReportColumnFilterOutputFromJSONTyped, ReportColumnFilterOutputToJSON, ReportColumnFilterOutputToJSONTyped, ReportColumnListOutputFromJSON, ReportColumnListOutputFromJSONTyped, ReportColumnListOutputToJSON, ReportColumnListOutputToJSONTyped, ReportColumnORMFromJSON, ReportColumnORMFromJSONTyped, ReportColumnORMToJSON, ReportColumnORMToJSONTyped, ReportColumnOutputFromJSON, ReportColumnOutputFromJSONTyped, ReportColumnOutputToJSON, ReportColumnOutputToJSONTyped, ReportConfigurationDtoFromJSON, ReportConfigurationDtoFromJSONTyped, ReportConfigurationDtoToJSON, ReportConfigurationDtoToJSONTyped, ReportDataCSVDtoFromJSON, ReportDataCSVDtoFromJSONTyped, ReportDataCSVDtoToJSON, ReportDataCSVDtoToJSONTyped, ReportDataDtoFromJSON, ReportDataDtoFromJSONTyped, ReportDataDtoToJSON, ReportDataDtoToJSONTyped, ReportDataJSONDtoFromJSON, ReportDataJSONDtoFromJSONTyped, ReportDataJSONDtoToJSON, ReportDataJSONDtoToJSONTyped, ReportDataORMFromJSON, ReportDataORMFromJSONTyped, ReportDataORMToJSON, ReportDataORMToJSONTyped, ReportDataOutputFromJSON, ReportDataOutputFromJSONTyped, ReportDataOutputToJSON, ReportDataOutputToJSONTyped, ReportDataRowORMFromJSON, ReportDataRowORMFromJSONTyped, ReportDataRowORMToJSON, ReportDataRowORMToJSONTyped, ReportDtoFromJSON, ReportDtoFromJSONTyped, ReportDtoToJSON, ReportDtoToJSONTyped, ReportListOutputFromJSON, ReportListOutputFromJSONTyped, ReportListOutputToJSON, ReportListOutputToJSONTyped, ReportORMFromJSON, ReportORMFromJSONTyped, ReportORMToJSON, ReportORMToJSONTyped, ReportOutputFromJSON, ReportOutputFromJSONTyped, ReportOutputToJSON, ReportOutputToJSONTyped, ReportQueryAssistantDtoFromJSON, ReportQueryAssistantDtoFromJSONTyped, ReportQueryAssistantDtoToJSON, ReportQueryAssistantDtoToJSONTyped, ReportQueryAssistantInputFromJSON, ReportQueryAssistantInputFromJSONTyped, ReportQueryAssistantInputToJSON, ReportQueryAssistantInputToJSONTyped, ReportQueryAssistantOutputFromJSON, ReportQueryAssistantOutputFromJSONTyped, ReportQueryAssistantOutputToJSON, ReportQueryAssistantOutputToJSONTyped, ReportQueryAxis, ReportQueryAxisFromJSON, ReportQueryAxisFromJSONTyped, ReportQueryAxisToJSON, ReportQueryAxisToJSONTyped, ReportQueryCatalogFieldBucketsEnum, ReportQueryCatalogFieldFilterOperatorsEnum, ReportQueryCatalogFieldFromJSON, ReportQueryCatalogFieldFromJSONTyped, ReportQueryCatalogFieldMetricOperationsEnum, ReportQueryCatalogFieldSourcesEnum, ReportQueryCatalogFieldSuggestedNormalizeEnum, ReportQueryCatalogFieldToJSON, ReportQueryCatalogFieldToJSONTyped, ReportQueryCatalogFieldTypeEnum, ReportQueryCatalogOutputFromJSON, ReportQueryCatalogOutputFromJSONTyped, ReportQueryCatalogOutputToJSON, ReportQueryCatalogOutputToJSONTyped, ReportQueryChart, ReportQueryChartFromJSON, ReportQueryChartFromJSONTyped, ReportQueryChartToJSON, ReportQueryChartToJSONTyped, ReportQueryDataDtoFromJSON, ReportQueryDataDtoFromJSONTyped, ReportQueryDataDtoToJSON, ReportQueryDataDtoToJSONTyped, ReportQueryDataOutputFromJSON, ReportQueryDataOutputFromJSONTyped, ReportQueryDataOutputToJSON, ReportQueryDataOutputToJSONTyped, ReportQueryDateBucket, ReportQueryDateBucketFromJSON, ReportQueryDateBucketFromJSONTyped, ReportQueryDateBucketToJSON, ReportQueryDateBucketToJSONTyped, ReportQueryDefinitionChartEnum, ReportQueryDefinitionFromJSON, ReportQueryDefinitionFromJSONTyped, ReportQueryDefinitionSourceEnum, ReportQueryDefinitionToJSON, ReportQueryDefinitionToJSONTyped, ReportQueryDimensionBucketEnum, ReportQueryDimensionFromJSON, ReportQueryDimensionFromJSONTyped, ReportQueryDimensionNormalizeEnum, ReportQueryDimensionToJSON, ReportQueryDimensionToJSONTyped, ReportQueryDtoFromJSON, ReportQueryDtoFromJSONTyped, ReportQueryDtoToJSON, ReportQueryDtoToJSONTyped, ReportQueryFieldType, ReportQueryFieldTypeFromJSON, ReportQueryFieldTypeFromJSONTyped, ReportQueryFieldTypeToJSON, ReportQueryFieldTypeToJSONTyped, ReportQueryFilterFromJSON, ReportQueryFilterFromJSONTyped, ReportQueryFilterOpEnum, ReportQueryFilterOperator, ReportQueryFilterOperatorFromJSON, ReportQueryFilterOperatorFromJSONTyped, ReportQueryFilterOperatorToJSON, ReportQueryFilterOperatorToJSONTyped, ReportQueryFilterToJSON, ReportQueryFilterToJSONTyped, ReportQueryInputFromJSON, ReportQueryInputFromJSONTyped, ReportQueryInputToJSON, ReportQueryInputToJSONTyped, ReportQueryListOutputFromJSON, ReportQueryListOutputFromJSONTyped, ReportQueryListOutputToJSON, ReportQueryListOutputToJSONTyped, ReportQueryMetricFromJSON, ReportQueryMetricFromJSONTyped, ReportQueryMetricOpEnum, ReportQueryMetricOperation, ReportQueryMetricOperationFromJSON, ReportQueryMetricOperationFromJSONTyped, ReportQueryMetricOperationToJSON, ReportQueryMetricOperationToJSONTyped, ReportQueryMetricToJSON, ReportQueryMetricToJSONTyped, ReportQueryNormalize, ReportQueryNormalizeFromJSON, ReportQueryNormalizeFromJSONTyped, ReportQueryNormalizeToJSON, ReportQueryNormalizeToJSONTyped, ReportQueryOutputFromJSON, ReportQueryOutputFromJSONTyped, ReportQueryOutputToJSON, ReportQueryOutputToJSONTyped, ReportQueryPreviewInputFromJSON, ReportQueryPreviewInputFromJSONTyped, ReportQueryPreviewInputToJSON, ReportQueryPreviewInputToJSONTyped, ReportQueryResultColumnFromJSON, ReportQueryResultColumnFromJSONTyped, ReportQueryResultColumnToJSON, ReportQueryResultColumnToJSONTyped, ReportQueryResultFromJSON, ReportQueryResultFromJSONTyped, ReportQueryResultRowFromJSON, ReportQueryResultRowFromJSONTyped, ReportQueryResultRowToJSON, ReportQueryResultRowToJSONTyped, ReportQueryResultToJSON, ReportQueryResultToJSONTyped, ReportQuerySeriesAxisEnum, ReportQuerySeriesChart, ReportQuerySeriesChartEnum, ReportQuerySeriesChartFromJSON, ReportQuerySeriesChartFromJSONTyped, ReportQuerySeriesChartToJSON, ReportQuerySeriesChartToJSONTyped, ReportQuerySeriesFromJSON, ReportQuerySeriesFromJSONTyped, ReportQuerySeriesSourceEnum, ReportQuerySeriesToJSON, ReportQuerySeriesToJSONTyped, ReportQuerySource, ReportQuerySourceFromJSON, ReportQuerySourceFromJSONTyped, ReportQuerySourceToJSON, ReportQuerySourceToJSONTyped, RequiredError, ResponseError, ReverseGeoCodingOutputFromJSON, ReverseGeoCodingOutputFromJSONTyped, ReverseGeoCodingOutputToJSON, ReverseGeoCodingOutputToJSONTyped, RouteApi, RouteDtoFromJSON, RouteDtoFromJSONTyped, RouteDtoToJSON, RouteDtoToJSONTyped, RouteLegDtoFromJSON, RouteLegDtoFromJSONTyped, RouteLegDtoToJSON, RouteLegDtoToJSONTyped, RouteOutputFromJSON, RouteOutputFromJSONTyped, RouteOutputToJSON, RouteOutputToJSONTyped, RouteStepDtoFromJSON, RouteStepDtoFromJSONTyped, RouteStepDtoToJSON, RouteStepDtoToJSONTyped, RouteTravelMode, RouteTravelModeFromJSON, RouteTravelModeFromJSONTyped, RouteTravelModeToJSON, RouteTravelModeToJSONTyped, SEARCHSECTIONS, SEARCHSECTIONSFromJSON, SEARCHSECTIONSFromJSONTyped, SEARCHSECTIONSToJSON, SEARCHSECTIONSToJSONTyped, SearchApi, SearchORMFromJSON, SearchORMFromJSONTyped, SearchORMToJSON, SearchORMToJSONTyped, SearchOutputFromJSON, SearchOutputFromJSONTyped, SearchOutputToJSON, SearchOutputToJSONTyped, SearchResultDtoFromJSON, SearchResultDtoFromJSONTyped, SearchResultDtoToJSON, SearchResultDtoToJSONTyped, SearchResultSectionDtoFromJSON, SearchResultSectionDtoFromJSONTyped, SearchResultSectionDtoToJSON, SearchResultSectionDtoToJSONTyped, SearchResultSectionItemFromJSON, SearchResultSectionItemFromJSONTyped, SearchResultSectionItemToJSON, SearchResultSectionItemToJSONTyped, SourceApi, SourceDtoFromJSON, SourceDtoFromJSONTyped, SourceDtoToJSON, SourceDtoToJSONTyped, SourceListOutputFromJSON, SourceListOutputFromJSONTyped, SourceListOutputToJSON, SourceListOutputToJSONTyped, SourceOutputFromJSON, SourceOutputFromJSONTyped, SourceOutputToJSON, SourceOutputToJSONTyped, StateMachineApi, StateMachineDefinitionListOutputFromJSON, StateMachineDefinitionListOutputFromJSONTyped, StateMachineDefinitionListOutputToJSON, StateMachineDefinitionListOutputToJSONTyped, StateMachineDefinitionOutputDtoFromJSON, StateMachineDefinitionOutputDtoFromJSONTyped, StateMachineDefinitionOutputDtoToJSON, StateMachineDefinitionOutputDtoToJSONTyped, StateMachineDefinitionOutputFromJSON, StateMachineDefinitionOutputFromJSONTyped, StateMachineDefinitionOutputToJSON, StateMachineDefinitionOutputToJSONTyped, StateMachineInputFromJSON, StateMachineInputFromJSONTyped, StateMachineInputToJSON, StateMachineInputToJSONTyped, StateMachineORMFromJSON, StateMachineORMFromJSONTyped, StateMachineORMToJSON, StateMachineORMToJSONTyped, StateMachineOutputFromJSON, StateMachineOutputFromJSONTyped, StateMachineOutputToJSON, StateMachineOutputToJSONTyped, StateMachineStateInputFromJSON, StateMachineStateInputFromJSONTyped, StateMachineStateInputToJSON, StateMachineStateInputToJSONTyped, StateMachineStateORMFromJSON, StateMachineStateORMFromJSONTyped, StateMachineStateORMToJSON, StateMachineStateORMToJSONTyped, StateMachineStateOutputDtoFromJSON, StateMachineStateOutputDtoFromJSONTyped, StateMachineStateOutputDtoToJSON, StateMachineStateOutputDtoToJSONTyped, StateMachineTransitionInputFromJSON, StateMachineTransitionInputFromJSONTyped, StateMachineTransitionInputToJSON, StateMachineTransitionInputToJSONTyped, StateMachineTransitionLogORMFromJSON, StateMachineTransitionLogORMFromJSONTyped, StateMachineTransitionLogORMToJSON, StateMachineTransitionLogORMToJSONTyped, StateMachineTransitionORMFromJSON, StateMachineTransitionORMFromJSONTyped, StateMachineTransitionORMToJSON, StateMachineTransitionORMToJSONTyped, StateMachineTransitionOutputDtoFromJSON, StateMachineTransitionOutputDtoFromJSONTyped, StateMachineTransitionOutputDtoToJSON, StateMachineTransitionOutputDtoToJSONTyped, TextApiResponse, UpdateUserInOrganizationPasswordDtoFromJSON, UpdateUserInOrganizationPasswordDtoFromJSONTyped, UpdateUserInOrganizationPasswordDtoToJSON, UpdateUserInOrganizationPasswordDtoToJSONTyped, UploadDtoFromJSON, UploadDtoFromJSONTyped, UploadDtoToJSON, UploadDtoToJSONTyped, UploadOutputFromJSON, UploadOutputFromJSONTyped, UploadOutputToJSON, UploadOutputToJSONTyped, UserDtoFromJSON, UserDtoFromJSONTyped, UserDtoToJSON, UserDtoToJSONTyped, UserInOrganizationDtoFromJSON, UserInOrganizationDtoFromJSONTyped, UserInOrganizationDtoToJSON, UserInOrganizationDtoToJSONTyped, UserInOrganizationOutputFromJSON, UserInOrganizationOutputFromJSONTyped, UserInOrganizationOutputToJSON, UserInOrganizationOutputToJSONTyped, UserORMFromJSON, UserORMFromJSONTyped, UserORMToJSON, UserORMToJSONTyped, UserPaymentControlDtoFromJSON, UserPaymentControlDtoFromJSONTyped, UserPaymentControlDtoToJSON, UserPaymentControlDtoToJSONTyped, UserPaymentControlOutputFromJSON, UserPaymentControlOutputFromJSONTyped, UserPaymentControlOutputToJSON, UserPaymentControlOutputToJSONTyped, VoidApiResponse, XAxisOptionsFromJSON, XAxisOptionsFromJSONTyped, XAxisOptionsToJSON, XAxisOptionsToJSONTyped, YAxisOptionsFromJSON, YAxisOptionsFromJSONTyped, YAxisOptionsToJSON, YAxisOptionsToJSONTyped, canConsumeForm, exists, instanceOfAccountORM, instanceOfAccountOutput, instanceOfAddUserToOrganizationDto, instanceOfApiV1MapPost402Response, instanceOfArticleORM, instanceOfArticlePresentationORM, instanceOfArticleTypeORM, instanceOfAutoCompleteORM, instanceOfAvailableArticlesDto, instanceOfAvailableArticlesOutput, instanceOfAxisGrid, instanceOfAxisTime, instanceOfAxisTitle, instanceOfCalculateTourInput, instanceOfCalculateTourOutput, instanceOfChartConfiguration, instanceOfChartData, instanceOfChartDataset, instanceOfChartLegend, instanceOfChartOptions, instanceOfChartPlugins, instanceOfChartScales, instanceOfChartTitle, instanceOfComputeRouteInput, instanceOfCoordDto, instanceOfDataPoint, instanceOfDef230, instanceOfHealthcheckStatusValue, instanceOfInternalMapItemSearchResultORM, instanceOfItemDecorationDto, instanceOfItemLayerLinkInputDto, instanceOfItemLinkToLayerOutput, instanceOfItemRenderOptionsInput, instanceOfItemRenderOptionsOutput, instanceOfItemTypeFormDto, instanceOfItemTypeFormOutput, instanceOfItemTypeInitialValueInputDto, instanceOfItemTypeInitialValueOutput, instanceOfItemTypeOutput, instanceOfItemsOutput, instanceOfJobCatalogOutput, instanceOfJobDefinitionORM, instanceOfJobInstanceListOutput, instanceOfJobInstanceORM, instanceOfJobInstanceOutput, instanceOfJobRequestInput, instanceOfJobResultUpdateInput, instanceOfJournalBookORM, instanceOfJournalEntryArticleORM, instanceOfJournalEntryInput, instanceOfJournalEntryListOutput, instanceOfJournalEntryMultimediaInput, instanceOfJournalEntryMultimediaORM, instanceOfJournalEntryMultimediaOutput, instanceOfJournalEntryORM, instanceOfJournalEntryOutput, instanceOfJournalEntryOutputDto, instanceOfLayerFieldFilterOperator, instanceOfLayerInputDto, instanceOfLayerItemTypeFieldFilterDto, instanceOfLegendPosition, instanceOfLocationForReportORM, instanceOfLocationORM, instanceOfLocationOutput, instanceOfMagnitudeORM, instanceOfManualLoginInput, instanceOfManualLoginPasswordUpdateInput, instanceOfManualRegisterInput, instanceOfMapClusterListOutputPaginated, instanceOfMapClusterORM, instanceOfMapItemArticleInputDto, instanceOfMapItemArticleORM, instanceOfMapItemCustomFieldDefinitionORM, instanceOfMapItemDynamicFieldInputDto, instanceOfMapItemDynamicFieldORM, instanceOfMapItemDynamicFieldWithDefinitionORM, instanceOfMapItemFieldType, instanceOfMapItemInput, instanceOfMapItemLinkORM, instanceOfMapItemLinkOutput, instanceOfMapItemListOutput, instanceOfMapItemListOutputPaginated, instanceOfMapItemMultimediaORM, instanceOfMapItemMultimediaOutput, instanceOfMapItemNearByORM, instanceOfMapItemORM, instanceOfMapItemOutput, instanceOfMapItemOutputDto, instanceOfMapItemOutputDtoProps, instanceOfMapItemRenderFillOption, instanceOfMapItemRenderOptionsORM, instanceOfMapItemStateTransitionLogDto, instanceOfMapItemTypeDynamicFieldDefinitionOutput, instanceOfMapItemTypeDynamicFieldDefinitionSingleOutput, instanceOfMapItemTypeDynamicFieldDefinitionValuesOutput, instanceOfMapItemTypeFormAction, instanceOfMapItemTypeFormORM, instanceOfMapItemTypeFormOutput, instanceOfMapItemTypeFormSectionBaseFieldId, instanceOfMapItemTypeFormSectionDto, instanceOfMapItemTypeFormSectionFieldMetaType, instanceOfMapItemTypeFormSectionFieldORM, instanceOfMapItemTypeFormSectionFieldOutput, instanceOfMapItemTypeFormSectionORM, instanceOfMapItemTypeFormSectionOutput, instanceOfMapItemTypeInitialValueORM, instanceOfMapItemTypeORM, instanceOfMapItemTypeOutput, instanceOfMapItemTypeSingleOutput, instanceOfMapItemWithPointsInput, instanceOfMapLayerContourCoordORM, instanceOfMapLayerInput, instanceOfMapLayerItemDecorationORM, instanceOfMapLayerItemORM, instanceOfMapLayerItemTypeFieldFilterORM, instanceOfMapLayerListOutput, instanceOfMapLayerORM, instanceOfMapLayerOutput, instanceOfMapLayerOutputDto, instanceOfMapListOutput, instanceOfMapORM, instanceOfMapOutput, instanceOfMapZoneInput, instanceOfMapZoneORM, instanceOfMapZoneOutput, instanceOfMapZoneOutputDto, instanceOfMapZonePointInput, instanceOfMapZonePointORM, instanceOfMapZoneWithPointsInput, instanceOfMeasureUnitORM, instanceOfModelRequestContext, instanceOfMultimediaORM, instanceOfMultimediaOutput, instanceOfMultipleMultimediaOutput, instanceOfNearbyPlaceDto, instanceOfNominatimAddressORM, instanceOfNominatimORM, instanceOfOAuthClientORM, instanceOfOAuthRefreshTokenORM, instanceOfOrganizationORM, instanceOfPageInfo, instanceOfPlaceAddressDto, instanceOfPlaceDetailsDto, instanceOfPlaceDetailsOutput, instanceOfReportAllItemsListOutput, instanceOfReportAvailableColumnDto, instanceOfReportAvailableColumnsListOutput, instanceOfReportColumnFilterListOutput, instanceOfReportColumnFilterORM, instanceOfReportColumnFilterOutput, instanceOfReportColumnListOutput, instanceOfReportColumnORM, instanceOfReportColumnOutput, instanceOfReportConfigurationDto, instanceOfReportDataCSVDto, instanceOfReportDataDto, instanceOfReportDataJSONDto, instanceOfReportDataORM, instanceOfReportDataOutput, instanceOfReportDataRowORM, instanceOfReportDto, instanceOfReportListOutput, instanceOfReportORM, instanceOfReportOutput, instanceOfReportQueryAssistantDto, instanceOfReportQueryAssistantInput, instanceOfReportQueryAssistantOutput, instanceOfReportQueryAxis, instanceOfReportQueryCatalogField, instanceOfReportQueryCatalogOutput, instanceOfReportQueryChart, instanceOfReportQueryDataDto, instanceOfReportQueryDataOutput, instanceOfReportQueryDateBucket, instanceOfReportQueryDefinition, instanceOfReportQueryDimension, instanceOfReportQueryDto, instanceOfReportQueryFieldType, instanceOfReportQueryFilter, instanceOfReportQueryFilterOperator, instanceOfReportQueryInput, instanceOfReportQueryListOutput, instanceOfReportQueryMetric, instanceOfReportQueryMetricOperation, instanceOfReportQueryNormalize, instanceOfReportQueryOutput, instanceOfReportQueryPreviewInput, instanceOfReportQueryResult, instanceOfReportQueryResultColumn, instanceOfReportQueryResultRow, instanceOfReportQuerySeries, instanceOfReportQuerySeriesChart, instanceOfReportQuerySource, instanceOfReverseGeoCodingOutput, instanceOfRouteDto, instanceOfRouteLegDto, instanceOfRouteOutput, instanceOfRouteStepDto, instanceOfRouteTravelMode, instanceOfSEARCHSECTIONS, instanceOfSearchORM, instanceOfSearchOutput, instanceOfSearchResultDto, instanceOfSearchResultSectionDto, instanceOfSearchResultSectionItem, instanceOfSourceDto, instanceOfSourceListOutput, instanceOfSourceOutput, instanceOfStateMachineDefinitionListOutput, instanceOfStateMachineDefinitionOutput, instanceOfStateMachineDefinitionOutputDto, instanceOfStateMachineInput, instanceOfStateMachineORM, instanceOfStateMachineOutput, instanceOfStateMachineStateInput, instanceOfStateMachineStateORM, instanceOfStateMachineStateOutputDto, instanceOfStateMachineTransitionInput, instanceOfStateMachineTransitionLogORM, instanceOfStateMachineTransitionORM, instanceOfStateMachineTransitionOutputDto, instanceOfUpdateUserInOrganizationPasswordDto, instanceOfUploadDto, instanceOfUploadOutput, instanceOfUserDto, instanceOfUserInOrganizationDto, instanceOfUserInOrganizationOutput, instanceOfUserORM, instanceOfUserPaymentControlDto, instanceOfUserPaymentControlOutput, instanceOfXAxisOptions, instanceOfYAxisOptions, mapValues, querystring };
|
|
3732
|
+
export type { AccountORM, AccountOutput, AddUserToOrganizationDto, ApiResponse, ApiV1AccountPostRequest, ApiV1AccountSearchHistoryDeleteRequest, ApiV1AuthManualLoginPostRequest, ApiV1AuthManualPasswordPutRequest, ApiV1AuthManualRegisterPostRequest, ApiV1BackofficeSearchCacheDeleteRequest, ApiV1ItemGetRequest, ApiV1ItemItemIdDeleteRequest, ApiV1ItemItemIdGetRequest, ApiV1ItemItemIdLayerGetRequest, ApiV1ItemItemIdLinkPostRequest, ApiV1ItemItemIdMultimediaPostRequest, ApiV1ItemItemIdRenderPostRequest, ApiV1ItemNearbyGetRequest, ApiV1ItemPostRequest, ApiV1ItemPutRequest, ApiV1ItemTypeDynamicfieldFieldDefinitionIdAutocompleteGetRequest, ApiV1ItemTypeDynamicfieldFieldDefinitionIdInitialValueInitialValueIdDeleteRequest, ApiV1ItemTypeDynamicfieldFieldDefinitionIdInitialValuePostRequest, ApiV1ItemTypeFormSectionFieldFieldIdDeleteRequest, ApiV1ItemTypeItemTypeIdDeleteRequest, ApiV1ItemTypeItemTypeIdFormGetRequest, ApiV1ItemWithinGetRequest, ApiV1JobJobIdGetRequest, ApiV1JobJobIdPutRequest, ApiV1JobPostRequest, ApiV1JournalParentIdEntryJournalEntryIdMultimediaPostRequest, ApiV1JournalParentIdGetRequest, ApiV1JournalParentIdPostRequest, ApiV1JournalParentIdPutRequest, ApiV1LayerLayerIdDeleteRequest, ApiV1LayerLayerIdGetRequest, ApiV1LayerLayerIdItemGetRequest, ApiV1LayerLayerIdItemItemIdPostRequest, ApiV1LayerLayerIdPutRequest, ApiV1LayerLayerIdTourPostRequest, ApiV1LayerLayerIdViewportItemPostRequest, ApiV1LayerPostRequest, ApiV1LayerViewportTileMapZoomLevelTileXTileYGetRequest, ApiV1LocationPointPostRequest, ApiV1LocationZonePostRequest, ApiV1MapCodeMapCodeGetRequest, ApiV1MapMapIdGetRequest, ApiV1MapMapIdLayerGetRequest, ApiV1MapPost402Response, ApiV1MapPostRequest, ApiV1MultimediaHumanRelativeUrlGetRequest, ApiV1MultimediaMultimediaIdGetRequest, ApiV1MultimediaPostRequest, ApiV1MultimediaPptxPostRequest, ApiV1OrganizationPostRequest, ApiV1OrganizationPutRequest, ApiV1OrganizationUserPostRequest, ApiV1OrganizationUserUserIdDeleteRequest, ApiV1OrganizationUserUserIdPasswordPutRequest, ApiV1PlaceDetailsGetRequest, ApiV1ReportItemGetRequest, ApiV1ReportReportIdColumnColumnIdDeleteRequest, ApiV1ReportReportIdColumnColumnIdFilterFilterIdDeleteRequest, ApiV1ReportReportIdColumnColumnIdFilterGetRequest, ApiV1ReportReportIdColumnColumnIdFilterPostRequest, ApiV1ReportReportIdColumnColumnIdFilterPutRequest, ApiV1ReportReportIdColumnGetRequest, ApiV1ReportReportIdColumnPostRequest, ApiV1ReportReportIdColumnPutRequest, ApiV1ReportReportIdDataPostRequest, ApiV1ReportReportIdDeleteRequest, ApiV1ReportReportIdGetRequest, ApiV1RouteComputePostRequest, ApiV1SearchAutocompletePostRequest, ApiV1SearchPostRequest, ApiV1SearchReverseGetRequest, ApiV1SourcePostRequest, ApiV1StatemachineStateMachineIdStatePostRequest, ApiV1StatemachineStateMachineIdTransitionPostRequest, ApiV2ItemPostRequest, ApiV2ReportAssistantPostRequest, ApiV2ReportPostRequest, ApiV2ReportPreviewPostRequest, ApiV2ReportReportIdDataPostRequest, ApiV2ReportReportIdGetRequest, ApiV2ReportReportIdPutRequest, ArticleORM, ArticlePresentationORM, ArticleTypeORM, AutoCompleteORM, AvailableArticlesDto, AvailableArticlesOutput, AxisGrid, AxisTime, AxisTitle, CalculateTourInput, CalculateTourOutput, ChartConfiguration, ChartData, ChartDataset, ChartLegend, ChartOptions, ChartPlugins, ChartScales, ChartTitle, ComputeRouteInput, ConfigurationParameters, Consume, CoordDto, DataPoint, Def230, ErrorContext, FetchAPI, FetchParams, HTTPBody, HTTPHeaders, HTTPMethod, HTTPQuery, HTTPRequestInit, InitOverrideFunction, InternalMapItemSearchResultORM, ItemDecorationDto, ItemLayerLinkInputDto, ItemLinkToLayerOutput, ItemRenderOptionsInput, ItemRenderOptionsOutput, ItemTypeFormDto, ItemTypeFormOutput, ItemTypeInitialValueInputDto, ItemTypeInitialValueOutput, ItemTypeOutput, ItemsOutput, JobCatalogOutput, JobDefinitionORM, JobInstanceListOutput, JobInstanceORM, JobInstanceOutput, JobRequestInput, JobResultUpdateInput, JournalBookORM, JournalEntryArticleORM, JournalEntryInput, JournalEntryListOutput, JournalEntryMultimediaInput, JournalEntryMultimediaORM, JournalEntryMultimediaOutput, JournalEntryORM, JournalEntryOutput, JournalEntryOutputDto, Json, LayerInputDto, LayerItemTypeFieldFilterDto, LocationForReportORM, LocationORM, LocationOutput, MagnitudeORM, ManualLoginInput, ManualLoginPasswordUpdateInput, ManualRegisterInput, MapClusterListOutputPaginated, MapClusterORM, MapItemArticleInputDto, MapItemArticleORM, MapItemCustomFieldDefinitionORM, MapItemDynamicFieldInputDto, MapItemDynamicFieldORM, MapItemDynamicFieldWithDefinitionORM, MapItemInput, MapItemLinkORM, MapItemLinkOutput, MapItemListOutput, MapItemListOutputPaginated, MapItemMultimediaORM, MapItemMultimediaOutput, MapItemNearByORM, MapItemORM, MapItemOutput, MapItemOutputDto, MapItemOutputDtoProps, MapItemRenderOptionsORM, MapItemStateTransitionLogDto, MapItemTypeDynamicFieldDefinitionOutput, MapItemTypeDynamicFieldDefinitionSingleOutput, MapItemTypeDynamicFieldDefinitionValuesOutput, MapItemTypeFormORM, MapItemTypeFormOutput, MapItemTypeFormSectionDto, MapItemTypeFormSectionFieldORM, MapItemTypeFormSectionFieldOutput, MapItemTypeFormSectionORM, MapItemTypeFormSectionOutput, MapItemTypeInitialValueORM, MapItemTypeORM, MapItemTypeOutput, MapItemTypeSingleOutput, MapItemWithPointsInput, MapLayerContourCoordORM, MapLayerInput, MapLayerItemDecorationORM, MapLayerItemORM, MapLayerItemTypeFieldFilterORM, MapLayerListOutput, MapLayerORM, MapLayerOutput, MapLayerOutputDto, MapListOutput, MapORM, MapOutput, MapZoneInput, MapZoneORM, MapZoneOutput, MapZoneOutputDto, MapZonePointInput, MapZonePointORM, MapZoneWithPointsInput, MeasureUnitORM, Middleware, ModelPropertyNaming, ModelRequestContext, MultimediaORM, MultimediaOutput, MultipleMultimediaOutput, NearbyPlaceDto, NominatimAddressORM, NominatimORM, OAuthClientORM, OAuthRefreshTokenORM, OrganizationORM, PageInfo, PlaceAddressDto, PlaceDetailsDto, PlaceDetailsOutput, ReportAllItemsListOutput, ReportAvailableColumnDto, ReportAvailableColumnsListOutput, ReportColumnFilterListOutput, ReportColumnFilterORM, ReportColumnFilterOutput, ReportColumnListOutput, ReportColumnORM, ReportColumnOutput, ReportConfigurationDto, ReportDataCSVDto, ReportDataDto, ReportDataJSONDto, ReportDataORM, ReportDataOutput, ReportDataRowORM, ReportDto, ReportListOutput, ReportORM, ReportOutput, ReportQueryAssistantDto, ReportQueryAssistantInput, ReportQueryAssistantOutput, ReportQueryCatalogField, ReportQueryCatalogOutput, ReportQueryDataDto, ReportQueryDataOutput, ReportQueryDefinition, ReportQueryDimension, ReportQueryDto, ReportQueryFilter, ReportQueryInput, ReportQueryListOutput, ReportQueryMetric, ReportQueryOutput, ReportQueryPreviewInput, ReportQueryResult, ReportQueryResultColumn, ReportQueryResultRow, ReportQuerySeries, RequestContext, RequestOpts, ResponseContext, ResponseTransformer, ReverseGeoCodingOutput, RouteDto, RouteLegDto, RouteOutput, RouteStepDto, SearchORM, SearchOutput, SearchResultDto, SearchResultSectionDto, SearchResultSectionItem, SourceDto, SourceListOutput, SourceOutput, StateMachineDefinitionListOutput, StateMachineDefinitionOutput, StateMachineDefinitionOutputDto, StateMachineInput, StateMachineORM, StateMachineOutput, StateMachineStateInput, StateMachineStateORM, StateMachineStateOutputDto, StateMachineTransitionInput, StateMachineTransitionLogORM, StateMachineTransitionORM, StateMachineTransitionOutputDto, UpdateUserInOrganizationPasswordDto, UploadDto, UploadOutput, UserDto, UserInOrganizationDto, UserInOrganizationOutput, UserORM, UserPaymentControlDto, UserPaymentControlOutput, XAxisOptions, YAxisOptions };
|