@binalyze/air-sdk 5.17.4 → 5.18.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -170,6 +170,22 @@ export type FilterEndpointDto = {
170
170
  * Filter by asset IDs
171
171
  */
172
172
  assetIds?: Array<string>;
173
+ /**
174
+ * Filter by IPv4 address (searches netInterfaces ipv4Addrs)
175
+ */
176
+ ipv4Address?: string;
177
+ /**
178
+ * Filter by IPv6 address (searches netInterfaces ipv6Addrs)
179
+ */
180
+ ipv6Address?: string;
181
+ /**
182
+ * Filter by MAC address (searches netInterfaces macAddr)
183
+ */
184
+ macAddress?: string;
185
+ /**
186
+ * Filter by network interface name (searches netInterfaces name)
187
+ */
188
+ interfaceName?: string;
173
189
  };
174
190
  export type UpdateEndpointTagsDto = {
175
191
  [key: string]: unknown;
@@ -373,6 +389,22 @@ export type FilterEndpointWithTaskCountDto = {
373
389
  * Filter by asset IDs
374
390
  */
375
391
  assetIds?: Array<string>;
392
+ /**
393
+ * Filter by IPv4 address (searches netInterfaces ipv4Addrs)
394
+ */
395
+ ipv4Address?: string;
396
+ /**
397
+ * Filter by IPv6 address (searches netInterfaces ipv6Addrs)
398
+ */
399
+ ipv6Address?: string;
400
+ /**
401
+ * Filter by MAC address (searches netInterfaces macAddr)
402
+ */
403
+ macAddress?: string;
404
+ /**
405
+ * Filter by network interface name (searches netInterfaces name)
406
+ */
407
+ interfaceName?: string;
376
408
  };
377
409
  export type ImportPpcasEndpointDto = {
378
410
  [key: string]: unknown;
@@ -1009,9 +1041,6 @@ export type AgentDto = {
1009
1041
  export type EnforceTfaDto = {
1010
1042
  [key: string]: unknown;
1011
1043
  };
1012
- export type SaveSingleSignOnDto = {
1013
- [key: string]: unknown;
1014
- };
1015
1044
  export type AutoAssetTaggingDto = {
1016
1045
  [key: string]: unknown;
1017
1046
  };
@@ -1091,6 +1120,15 @@ export type MitreAttackReleaseNotesResponseDto = {
1091
1120
  export type MandatoryCaseSelectionDto = {
1092
1121
  [key: string]: unknown;
1093
1122
  };
1123
+ export type SsoProviderResponseDto = {
1124
+ [key: string]: unknown;
1125
+ };
1126
+ export type CreateSsoProviderRequestDto = {
1127
+ [key: string]: unknown;
1128
+ };
1129
+ export type UpdateSsoProviderRequestDto = {
1130
+ [key: string]: unknown;
1131
+ };
1094
1132
  export type UpdateProfileDto = {
1095
1133
  [key: string]: unknown;
1096
1134
  };
@@ -1122,6 +1160,24 @@ export type UserProfileDto = {
1122
1160
  */
1123
1161
  department?: string;
1124
1162
  };
1163
+ export type UserPreferencesDto = {
1164
+ /**
1165
+ * Date format pattern (dayjs)
1166
+ */
1167
+ datePattern?: 'D-M-YY' | 'DD-MM-YYYY' | 'DD-MM-YY' | 'DD-MMM-YY' | 'DD/MMM/YYYY' | 'DD/MM/YYYY' | 'DD/MM/YY' | 'DD.MMM.YYYY' | 'DD.MM.YYYY' | 'DD.MM.YY' | 'DD.M.YY' | 'DD. MMM. YYYY' | 'D/MM/YY' | 'D/M/YYYY' | 'D/M/YY' | 'D.MM.YYYY' | 'D.M.YYYY' | 'D.M.YY' | 'D. M. YYYY' | 'D MMM YYYY';
1168
+ /**
1169
+ * Time format pattern (dayjs)
1170
+ */
1171
+ timePattern?: 'h:mm A' | 'hh:mm A' | 'H:mm' | 'HH:mm' | 'HH:mm [Uhr]' | 'H.mm' | 'HH.mm' | 'HH[H]mm' | 'HH[h]mm';
1172
+ /**
1173
+ * Date display mode
1174
+ */
1175
+ dateDisplayMode?: 'relative' | 'formatted';
1176
+ /**
1177
+ * IANA timezone identifier (null = browser auto-detect)
1178
+ */
1179
+ timezone?: string;
1180
+ };
1125
1181
  export type UserDto = {
1126
1182
  /**
1127
1183
  * User identifier
@@ -1159,6 +1215,10 @@ export type UserDto = {
1159
1215
  * User profile
1160
1216
  */
1161
1217
  profile: UserProfileDto;
1218
+ /**
1219
+ * User display preferences
1220
+ */
1221
+ preferences: UserPreferencesDto;
1162
1222
  /**
1163
1223
  * Two-factor authentication enabled
1164
1224
  */
@@ -1172,9 +1232,9 @@ export type UserDto = {
1172
1232
  */
1173
1233
  updatedAt: string;
1174
1234
  /**
1175
- * Single sign-on type
1235
+ * SSO provider identifier
1176
1236
  */
1177
- ssoType?: 'azure' | 'okta' | 'forti-authenticator';
1237
+ ssoType?: string;
1178
1238
  /**
1179
1239
  * Indicates whether the user has a password set
1180
1240
  */
@@ -1391,8 +1451,81 @@ export type UpdateUserGroupRequestDto = {
1391
1451
  */
1392
1452
  userIds?: Array<string>;
1393
1453
  };
1394
- export type InstallApiDto = {
1395
- [key: string]: unknown;
1454
+ export type UserPatTokenDto = {
1455
+ /**
1456
+ * Opaque UUID identifier of the personal access token. Used as the URL parameter for rotate/delete operations. Stable across rotations.
1457
+ */
1458
+ id: string;
1459
+ /**
1460
+ * Human-readable title for the personal access token
1461
+ */
1462
+ title: string;
1463
+ /**
1464
+ * When the PAT becomes invalid for authentication. `null` means the token never expires.
1465
+ */
1466
+ expiresAt?: string | null;
1467
+ /**
1468
+ * Most recent successful authentication timestamp; updated at most once per minute.
1469
+ */
1470
+ lastUsedAt?: string | null;
1471
+ /**
1472
+ * The created at timestamp of the personal access token
1473
+ */
1474
+ createdAt: string;
1475
+ /**
1476
+ * The updated at timestamp of the personal access token
1477
+ */
1478
+ updatedAt: string;
1479
+ };
1480
+ export type UserPatTokenWithTokenDto = {
1481
+ /**
1482
+ * Opaque UUID identifier of the personal access token. Used as the URL parameter for rotate/delete operations. Stable across rotations.
1483
+ */
1484
+ id: string;
1485
+ /**
1486
+ * Human-readable title for the personal access token
1487
+ */
1488
+ title: string;
1489
+ /**
1490
+ * When the PAT becomes invalid for authentication. `null` means the token never expires.
1491
+ */
1492
+ expiresAt?: string | null;
1493
+ /**
1494
+ * Most recent successful authentication timestamp; updated at most once per minute.
1495
+ */
1496
+ lastUsedAt?: string | null;
1497
+ /**
1498
+ * The created at timestamp of the personal access token
1499
+ */
1500
+ createdAt: string;
1501
+ /**
1502
+ * The updated at timestamp of the personal access token
1503
+ */
1504
+ updatedAt: string;
1505
+ /**
1506
+ * The raw personal access token. This value is only returned once at creation/rotation and is NOT recoverable afterwards.
1507
+ */
1508
+ token: string;
1509
+ };
1510
+ export type FilterUserPatTokensRequestDto = {
1511
+ /**
1512
+ * Free-text term matched against the PAT title (case-insensitive).
1513
+ */
1514
+ searchTerm?: string;
1515
+ /**
1516
+ * Exact title filter (case-insensitive substring match).
1517
+ */
1518
+ title?: string;
1519
+ };
1520
+ export type CreateUserPatTokenRequestDto = {
1521
+ /**
1522
+ * Human-readable title for the personal access token
1523
+ */
1524
+ title: string;
1525
+ /**
1526
+ * ISO-8601 timestamp at which the PAT becomes invalid. Omit for a non-expiring token.
1527
+ */
1528
+ expiresAt?: string;
1396
1529
  };
1397
1530
  export type SetLicenseDto = {
1398
1531
  [key: string]: unknown;
@@ -2598,6 +2731,9 @@ export type FilterPoliciesDto = {
2598
2731
  export type UpdatePrioritiesDto = {
2599
2732
  [key: string]: unknown;
2600
2733
  };
2734
+ export type UpdatePolicyStatusDto = {
2735
+ [key: string]: unknown;
2736
+ };
2601
2737
  export type OrganizationListItemResponseDto = {
2602
2738
  /**
2603
2739
  * Organization identifier
@@ -3250,7 +3386,7 @@ export type CreateCaseDto = {
3250
3386
  */
3251
3387
  name: string;
3252
3388
  /**
3253
- * User ID to assign as the owner of the case
3389
+ * User ID to assign as the owner of the case. Optional only when the caller is a System API token and the visibility is publicToOrganization. For all other callers, or when creating a private case, the caller becomes the owner if this field is omitted.
3254
3390
  */
3255
3391
  ownerUserId?: string;
3256
3392
  /**
@@ -4339,6 +4475,9 @@ export type ImportTornadoEvidenceDto = {
4339
4475
  export type FindingExclusionRuleDto = {
4340
4476
  [key: string]: unknown;
4341
4477
  };
4478
+ export type BulkAddFindingExclusionRulesDto = {
4479
+ [key: string]: unknown;
4480
+ };
4342
4481
  export type GetFindingExclusionRulesMatchesDto = {
4343
4482
  [key: string]: unknown;
4344
4483
  };
@@ -4507,6 +4646,51 @@ export type FilterRecentActivityRequestDto = {
4507
4646
  */
4508
4647
  searchTerm?: string;
4509
4648
  };
4649
+ export type ApiError = {
4650
+ /**
4651
+ * Stable, machine-readable error code (UPPER_SNAKE_CASE).
4652
+ */
4653
+ code: string;
4654
+ /**
4655
+ * Human-readable message safe for surfacing to clients.
4656
+ */
4657
+ message: string;
4658
+ /**
4659
+ * Field path the error refers to, when applicable.
4660
+ */
4661
+ field?: string;
4662
+ /**
4663
+ * Additional structured context. Shape is per error code.
4664
+ */
4665
+ details?: {
4666
+ [key: string]: unknown;
4667
+ };
4668
+ };
4669
+ export type ApiSuccessResponseDto = {
4670
+ success: boolean;
4671
+ statusCode: number;
4672
+ /**
4673
+ * Operation result payload.
4674
+ */
4675
+ result: {
4676
+ [key: string]: unknown;
4677
+ };
4678
+ /**
4679
+ * Always empty on success; typed for envelope uniformity.
4680
+ */
4681
+ errors: Array<ApiError>;
4682
+ };
4683
+ export type ApiErrorResponseDto = {
4684
+ success: boolean;
4685
+ statusCode: number;
4686
+ /**
4687
+ * Always null on failure; typed for envelope uniformity.
4688
+ */
4689
+ result: {
4690
+ [key: string]: unknown;
4691
+ } | null;
4692
+ errors: Array<ApiError>;
4693
+ };
4510
4694
  export type AcquisitionWebhookDto = {
4511
4695
  [key: string]: unknown;
4512
4696
  };
@@ -5193,9 +5377,6 @@ export type AgentDtoWritable = {
5193
5377
  export type EnforceTfaDtoWritable = {
5194
5378
  [key: string]: unknown;
5195
5379
  };
5196
- export type SaveSingleSignOnDtoWritable = {
5197
- [key: string]: unknown;
5198
- };
5199
5380
  export type AutoAssetTaggingDtoWritable = {
5200
5381
  [key: string]: unknown;
5201
5382
  };
@@ -5235,6 +5416,15 @@ export type MitreAttackDatabaseSettingsDtoWritable = {
5235
5416
  export type MandatoryCaseSelectionDtoWritable = {
5236
5417
  [key: string]: unknown;
5237
5418
  };
5419
+ export type SsoProviderResponseDtoWritable = {
5420
+ [key: string]: unknown;
5421
+ };
5422
+ export type CreateSsoProviderRequestDtoWritable = {
5423
+ [key: string]: unknown;
5424
+ };
5425
+ export type UpdateSsoProviderRequestDtoWritable = {
5426
+ [key: string]: unknown;
5427
+ };
5238
5428
  export type UpdateProfileDtoWritable = {
5239
5429
  [key: string]: unknown;
5240
5430
  };
@@ -5271,6 +5461,10 @@ export type UserDtoWritable = {
5271
5461
  * User profile
5272
5462
  */
5273
5463
  profile: UserProfileDto;
5464
+ /**
5465
+ * User display preferences
5466
+ */
5467
+ preferences: UserPreferencesDto;
5274
5468
  /**
5275
5469
  * Two-factor authentication enabled
5276
5470
  */
@@ -5284,9 +5478,9 @@ export type UserDtoWritable = {
5284
5478
  */
5285
5479
  updatedAt: string;
5286
5480
  /**
5287
- * Single sign-on type
5481
+ * SSO provider identifier
5288
5482
  */
5289
- ssoType?: 'azure' | 'okta' | 'forti-authenticator';
5483
+ ssoType?: string;
5290
5484
  /**
5291
5485
  * Indicates whether the user has a password set
5292
5486
  */
@@ -5322,9 +5516,6 @@ export type CreateApiUserDtoWritable = {
5322
5516
  export type SsoGroupConfigDtoWritable = {
5323
5517
  [key: string]: unknown;
5324
5518
  };
5325
- export type InstallApiDtoWritable = {
5326
- [key: string]: unknown;
5327
- };
5328
5519
  export type SetLicenseDtoWritable = {
5329
5520
  [key: string]: unknown;
5330
5521
  };
@@ -5421,6 +5612,9 @@ export type FilterPoliciesDtoWritable = {
5421
5612
  export type UpdatePrioritiesDtoWritable = {
5422
5613
  [key: string]: unknown;
5423
5614
  };
5615
+ export type UpdatePolicyStatusDtoWritable = {
5616
+ [key: string]: unknown;
5617
+ };
5424
5618
  export type OrganizationContactWritable = {
5425
5619
  [key: string]: unknown;
5426
5620
  };
@@ -5559,6 +5753,9 @@ export type ImportTornadoEvidenceDtoWritable = {
5559
5753
  export type FindingExclusionRuleDtoWritable = {
5560
5754
  [key: string]: unknown;
5561
5755
  };
5756
+ export type BulkAddFindingExclusionRulesDtoWritable = {
5757
+ [key: string]: unknown;
5758
+ };
5562
5759
  export type GetFindingExclusionRulesMatchesDtoWritable = {
5563
5760
  [key: string]: unknown;
5564
5761
  };
@@ -5769,7 +5966,7 @@ export type ParamsGetMitreAttackTacticsData = {
5769
5966
  export type ParamsGetMitreAttackTacticsResponses = {
5770
5967
  200: unknown;
5771
5968
  };
5772
- export type EndpointExportEndpointsData = {
5969
+ export type EndpointExportEndpoints0Data = {
5773
5970
  body?: never;
5774
5971
  path?: never;
5775
5972
  query: {
@@ -5778,7 +5975,7 @@ export type EndpointExportEndpointsData = {
5778
5975
  };
5779
5976
  url: '/api/public/endpoints/export';
5780
5977
  };
5781
- export type EndpointExportEndpointsResponses = {
5978
+ export type EndpointExportEndpoints0Responses = {
5782
5979
  200: unknown;
5783
5980
  };
5784
5981
  export type EndpointExportEndpoints1Data = {
@@ -5964,7 +6161,7 @@ export type EndpointGetEndpointsWithTaskCountData = {
5964
6161
  export type EndpointGetEndpointsWithTaskCountResponses = {
5965
6162
  200: unknown;
5966
6163
  };
5967
- export type EndpointGetEndpointsStatsData = {
6164
+ export type EndpointGetEndpointsStats0Data = {
5968
6165
  body?: never;
5969
6166
  path?: never;
5970
6167
  query: {
@@ -5972,7 +6169,7 @@ export type EndpointGetEndpointsStatsData = {
5972
6169
  };
5973
6170
  url: '/api/public/endpoints/stats';
5974
6171
  };
5975
- export type EndpointGetEndpointsStatsResponses = {
6172
+ export type EndpointGetEndpointsStats0Responses = {
5976
6173
  200: unknown;
5977
6174
  };
5978
6175
  export type EndpointGetEndpointsStats1Data = {
@@ -5986,7 +6183,7 @@ export type EndpointGetEndpointsStats1Data = {
5986
6183
  export type EndpointGetEndpointsStats1Responses = {
5987
6184
  200: unknown;
5988
6185
  };
5989
- export type EndpointGetDeviceNameConflictsData = {
6186
+ export type EndpointGetDeviceNameConflicts0Data = {
5990
6187
  body?: never;
5991
6188
  path?: never;
5992
6189
  query: {
@@ -5997,7 +6194,7 @@ export type EndpointGetDeviceNameConflictsData = {
5997
6194
  };
5998
6195
  url: '/api/public/endpoints/device-name-conflicts';
5999
6196
  };
6000
- export type EndpointGetDeviceNameConflictsResponses = {
6197
+ export type EndpointGetDeviceNameConflicts0Responses = {
6001
6198
  200: unknown;
6002
6199
  };
6003
6200
  export type EndpointGetDeviceNameConflicts1Data = {
@@ -6050,13 +6247,13 @@ export type AssetsGetMany4Responses = {
6050
6247
  200: EndpointEntity;
6051
6248
  };
6052
6249
  export type AssetsGetMany4Response = AssetsGetMany4Responses[keyof AssetsGetMany4Responses];
6053
- export type EndpointImportPpcAsEndpointData = {
6250
+ export type EndpointImportPpcAsEndpoint0Data = {
6054
6251
  body: ImportPpcasEndpointDtoWritable;
6055
6252
  path?: never;
6056
6253
  query?: never;
6057
6254
  url: '/api/public/endpoints/import/ppc';
6058
6255
  };
6059
- export type EndpointImportPpcAsEndpointResponses = {
6256
+ export type EndpointImportPpcAsEndpoint0Responses = {
6060
6257
  201: unknown;
6061
6258
  };
6062
6259
  export type EndpointImportPpcAsEndpoint1Data = {
@@ -6068,7 +6265,7 @@ export type EndpointImportPpcAsEndpoint1Data = {
6068
6265
  export type EndpointImportPpcAsEndpoint1Responses = {
6069
6266
  201: unknown;
6070
6267
  };
6071
- export type EndpointImportPpcToExistedEndpointData = {
6268
+ export type EndpointImportPpcToExistedEndpoint0Data = {
6072
6269
  body?: never;
6073
6270
  path: {
6074
6271
  /**
@@ -6079,7 +6276,7 @@ export type EndpointImportPpcToExistedEndpointData = {
6079
6276
  query?: never;
6080
6277
  url: '/api/public/endpoints/{id}/import/ppc';
6081
6278
  };
6082
- export type EndpointImportPpcToExistedEndpointResponses = {
6279
+ export type EndpointImportPpcToExistedEndpoint0Responses = {
6083
6280
  201: unknown;
6084
6281
  };
6085
6282
  export type EndpointImportPpcToExistedEndpoint1Data = {
@@ -6096,13 +6293,13 @@ export type EndpointImportPpcToExistedEndpoint1Data = {
6096
6293
  export type EndpointImportPpcToExistedEndpoint1Responses = {
6097
6294
  201: unknown;
6098
6295
  };
6099
- export type EndpointUninstallAgentsAndPurgeByFilterData = {
6296
+ export type EndpointUninstallAgentsAndPurgeByFilter0Data = {
6100
6297
  body: DeleteEndpointsByFilterApiDtoWritable;
6101
6298
  path?: never;
6102
6299
  query?: never;
6103
6300
  url: '/api/public/endpoints/purge';
6104
6301
  };
6105
- export type EndpointUninstallAgentsAndPurgeByFilterResponses = {
6302
+ export type EndpointUninstallAgentsAndPurgeByFilter0Responses = {
6106
6303
  200: unknown;
6107
6304
  };
6108
6305
  export type EndpointUninstallAgentsAndPurgeByFilter1Data = {
@@ -6123,13 +6320,13 @@ export type EndpointUninstallAgentsAndPurgeByFilter2Data = {
6123
6320
  export type EndpointUninstallAgentsAndPurgeByFilter2Responses = {
6124
6321
  200: unknown;
6125
6322
  };
6126
- export type EndpointUninstallEndpointsByFilterData = {
6323
+ export type EndpointUninstallEndpointsByFilter0Data = {
6127
6324
  body: DeleteEndpointsByFilterApiDtoWritable;
6128
6325
  path?: never;
6129
6326
  query?: never;
6130
6327
  url: '/api/public/endpoints/uninstall';
6131
6328
  };
6132
- export type EndpointUninstallEndpointsByFilterResponses = {
6329
+ export type EndpointUninstallEndpointsByFilter0Responses = {
6133
6330
  200: unknown;
6134
6331
  };
6135
6332
  export type EndpointUninstallEndpointsByFilter1Data = {
@@ -6141,13 +6338,13 @@ export type EndpointUninstallEndpointsByFilter1Data = {
6141
6338
  export type EndpointUninstallEndpointsByFilter1Responses = {
6142
6339
  200: unknown;
6143
6340
  };
6144
- export type EndpointPurgeAssetDataByFilterData = {
6341
+ export type EndpointPurgeAssetDataByFilter0Data = {
6145
6342
  body: DeleteEndpointsByFilterApiDtoWritable;
6146
6343
  path?: never;
6147
6344
  query?: never;
6148
6345
  url: '/api/public/endpoints/purge-without-uninstall';
6149
6346
  };
6150
- export type EndpointPurgeAssetDataByFilterResponses = {
6347
+ export type EndpointPurgeAssetDataByFilter0Responses = {
6151
6348
  200: unknown;
6152
6349
  };
6153
6350
  export type EndpointPurgeAssetDataByFilter1Data = {
@@ -6231,7 +6428,7 @@ export type AssetsSetMitreAttackDatabaseVersion2Responses = {
6231
6428
  */
6232
6429
  201: unknown;
6233
6430
  };
6234
- export type EndpointFilterDisksData = {
6431
+ export type EndpointFilterDisks0Data = {
6235
6432
  body?: never;
6236
6433
  path?: never;
6237
6434
  query: {
@@ -6255,7 +6452,7 @@ export type EndpointFilterDisksData = {
6255
6452
  };
6256
6453
  url: '/api/public/endpoints/disks';
6257
6454
  };
6258
- export type EndpointFilterDisksResponses = {
6455
+ export type EndpointFilterDisks0Responses = {
6259
6456
  200: unknown;
6260
6457
  };
6261
6458
  export type EndpointFilterDisks1Data = {
@@ -6285,13 +6482,13 @@ export type EndpointFilterDisks1Data = {
6285
6482
  export type EndpointFilterDisks1Responses = {
6286
6483
  200: unknown;
6287
6484
  };
6288
- export type EndpointFilterByPolicyFilterData = {
6485
+ export type EndpointFilterByPolicyFilter0Data = {
6289
6486
  body: FilterEndpointsByPolicyFilterDtoWritable;
6290
6487
  path?: never;
6291
6488
  query?: never;
6292
6489
  url: '/api/public/endpoints/policy/filter';
6293
6490
  };
6294
- export type EndpointFilterByPolicyFilterResponses = {
6491
+ export type EndpointFilterByPolicyFilter0Responses = {
6295
6492
  201: unknown;
6296
6493
  };
6297
6494
  export type EndpointFilterByPolicyFilter1Data = {
@@ -6303,13 +6500,13 @@ export type EndpointFilterByPolicyFilter1Data = {
6303
6500
  export type EndpointFilterByPolicyFilter1Responses = {
6304
6501
  201: unknown;
6305
6502
  };
6306
- export type EndpointSearchData = {
6503
+ export type EndpointSearch0Data = {
6307
6504
  body?: never;
6308
6505
  path?: never;
6309
6506
  query?: never;
6310
6507
  url: '/api/public/endpoints/search';
6311
6508
  };
6312
- export type EndpointSearchResponses = {
6509
+ export type EndpointSearch0Responses = {
6313
6510
  200: unknown;
6314
6511
  };
6315
6512
  export type EndpointSearch1Data = {
@@ -6321,7 +6518,7 @@ export type EndpointSearch1Data = {
6321
6518
  export type EndpointSearch1Responses = {
6322
6519
  200: unknown;
6323
6520
  };
6324
- export type EndpointGetCasesByIdData = {
6521
+ export type EndpointGetCasesById0Data = {
6325
6522
  body?: never;
6326
6523
  path: {
6327
6524
  id: string;
@@ -6347,7 +6544,7 @@ export type EndpointGetCasesByIdData = {
6347
6544
  };
6348
6545
  url: '/api/public/endpoints/{id}/cases';
6349
6546
  };
6350
- export type EndpointGetCasesByIdResponses = {
6547
+ export type EndpointGetCasesById0Responses = {
6351
6548
  200: unknown;
6352
6549
  };
6353
6550
  export type EndpointGetCasesById1Data = {
@@ -6379,7 +6576,7 @@ export type EndpointGetCasesById1Data = {
6379
6576
  export type EndpointGetCasesById1Responses = {
6380
6577
  200: unknown;
6381
6578
  };
6382
- export type EndpointExportCasesByEndpointIdData = {
6579
+ export type EndpointExportCasesByEndpointId0Data = {
6383
6580
  body?: never;
6384
6581
  path: {
6385
6582
  id: string;
@@ -6405,7 +6602,7 @@ export type EndpointExportCasesByEndpointIdData = {
6405
6602
  };
6406
6603
  url: '/api/public/endpoints/{id}/cases/export';
6407
6604
  };
6408
- export type EndpointExportCasesByEndpointIdResponses = {
6605
+ export type EndpointExportCasesByEndpointId0Responses = {
6409
6606
  200: unknown;
6410
6607
  };
6411
6608
  export type EndpointExportCasesByEndpointId1Data = {
@@ -6437,13 +6634,13 @@ export type EndpointExportCasesByEndpointId1Data = {
6437
6634
  export type EndpointExportCasesByEndpointId1Responses = {
6438
6635
  200: unknown;
6439
6636
  };
6440
- export type EndpointSetExcludeFromUpdatesToEndpointsByFilterData = {
6637
+ export type EndpointSetExcludeFromUpdatesToEndpointsByFilter0Data = {
6441
6638
  body: EndpointUpdateExclusionByFilterDtoWritable;
6442
6639
  path?: never;
6443
6640
  query?: never;
6444
6641
  url: '/api/public/endpoints/update-exclusion';
6445
6642
  };
6446
- export type EndpointSetExcludeFromUpdatesToEndpointsByFilterResponses = {
6643
+ export type EndpointSetExcludeFromUpdatesToEndpointsByFilter0Responses = {
6447
6644
  201: unknown;
6448
6645
  };
6449
6646
  export type EndpointSetExcludeFromUpdatesToEndpointsByFilter1Data = {
@@ -6455,13 +6652,13 @@ export type EndpointSetExcludeFromUpdatesToEndpointsByFilter1Data = {
6455
6652
  export type EndpointSetExcludeFromUpdatesToEndpointsByFilter1Responses = {
6456
6653
  201: unknown;
6457
6654
  };
6458
- export type EndpointDownloadLogFileData = {
6655
+ export type EndpointDownloadLogFile0Data = {
6459
6656
  body?: never;
6460
6657
  path?: never;
6461
6658
  query?: never;
6462
6659
  url: '/api/public/endpoints/{endpointId}/logs/{taskId}';
6463
6660
  };
6464
- export type EndpointDownloadLogFileResponses = {
6661
+ export type EndpointDownloadLogFile0Responses = {
6465
6662
  200: unknown;
6466
6663
  };
6467
6664
  export type EndpointDownloadLogFile1Data = {
@@ -6473,13 +6670,13 @@ export type EndpointDownloadLogFile1Data = {
6473
6670
  export type EndpointDownloadLogFile1Responses = {
6474
6671
  200: unknown;
6475
6672
  };
6476
- export type EndpointSyncLdapData = {
6673
+ export type EndpointSyncLdap0Data = {
6477
6674
  body?: never;
6478
6675
  path?: never;
6479
6676
  query?: never;
6480
6677
  url: '/api/public/endpoints/sync';
6481
6678
  };
6482
- export type EndpointSyncLdapResponses = {
6679
+ export type EndpointSyncLdap0Responses = {
6483
6680
  201: unknown;
6484
6681
  };
6485
6682
  export type EndpointSyncLdap1Data = {
@@ -6491,7 +6688,7 @@ export type EndpointSyncLdap1Data = {
6491
6688
  export type EndpointSyncLdap1Responses = {
6492
6689
  201: unknown;
6493
6690
  };
6494
- export type EndpointGetCloudAssetDetailsData = {
6691
+ export type EndpointGetCloudAssetDetails0Data = {
6495
6692
  body?: never;
6496
6693
  path: {
6497
6694
  /**
@@ -6502,7 +6699,7 @@ export type EndpointGetCloudAssetDetailsData = {
6502
6699
  query?: never;
6503
6700
  url: '/api/public/endpoints/{id}/cloud-asset-details';
6504
6701
  };
6505
- export type EndpointGetCloudAssetDetailsResponses = {
6702
+ export type EndpointGetCloudAssetDetails0Responses = {
6506
6703
  200: unknown;
6507
6704
  };
6508
6705
  export type EndpointGetCloudAssetDetails1Data = {
@@ -6519,13 +6716,13 @@ export type EndpointGetCloudAssetDetails1Data = {
6519
6716
  export type EndpointGetCloudAssetDetails1Responses = {
6520
6717
  200: unknown;
6521
6718
  };
6522
- export type EndpointDeployCloudAssetsByFilterData = {
6719
+ export type EndpointDeployCloudAssetsByFilter0Data = {
6523
6720
  body: DeployCloudAssetsDtoWritable;
6524
6721
  path?: never;
6525
6722
  query?: never;
6526
6723
  url: '/api/public/endpoints/deploy';
6527
6724
  };
6528
- export type EndpointDeployCloudAssetsByFilterResponses = {
6725
+ export type EndpointDeployCloudAssetsByFilter0Responses = {
6529
6726
  201: unknown;
6530
6727
  };
6531
6728
  export type EndpointDeployCloudAssetsByFilter1Data = {
@@ -6537,13 +6734,13 @@ export type EndpointDeployCloudAssetsByFilter1Data = {
6537
6734
  export type EndpointDeployCloudAssetsByFilter1Responses = {
6538
6735
  201: unknown;
6539
6736
  };
6540
- export type EndpointUpdateEndpointConnectionRouteData = {
6737
+ export type EndpointUpdateEndpointConnectionRoute0Data = {
6541
6738
  body: UpdateEndpointConnectionRouteDtoWritable;
6542
6739
  path?: never;
6543
6740
  query?: never;
6544
6741
  url: '/api/public/endpoints/connection-route';
6545
6742
  };
6546
- export type EndpointUpdateEndpointConnectionRouteResponses = {
6743
+ export type EndpointUpdateEndpointConnectionRoute0Responses = {
6547
6744
  200: unknown;
6548
6745
  };
6549
6746
  export type EndpointUpdateEndpointConnectionRoute1Data = {
@@ -6555,7 +6752,7 @@ export type EndpointUpdateEndpointConnectionRoute1Data = {
6555
6752
  export type EndpointUpdateEndpointConnectionRoute1Responses = {
6556
6753
  200: unknown;
6557
6754
  };
6558
- export type EndpointSetMaintenanceModeData = {
6755
+ export type EndpointSetMaintenanceMode0Data = {
6559
6756
  body: SetMaintenanceModeDto;
6560
6757
  path: {
6561
6758
  endpointId: string;
@@ -6563,7 +6760,7 @@ export type EndpointSetMaintenanceModeData = {
6563
6760
  query?: never;
6564
6761
  url: '/api/public/endpoints/{endpointId}/maintenance-mode';
6565
6762
  };
6566
- export type EndpointSetMaintenanceModeResponses = {
6763
+ export type EndpointSetMaintenanceMode0Responses = {
6567
6764
  201: unknown;
6568
6765
  };
6569
6766
  export type EndpointSetMaintenanceMode1Data = {
@@ -6895,13 +7092,13 @@ export type AssetsAssignShutdownTask2Responses = {
6895
7092
  201: Array<AssignedTaskDto>;
6896
7093
  };
6897
7094
  export type AssetsAssignShutdownTask2Response = AssetsAssignShutdownTask2Responses[keyof AssetsAssignShutdownTask2Responses];
6898
- export type EndpointTaskAssignRetrieveLogTaskData = {
7095
+ export type EndpointTaskAssignRetrieveLogTask0Data = {
6899
7096
  body: RetrieveLogsDtoWritable;
6900
7097
  path?: never;
6901
7098
  query?: never;
6902
7099
  url: '/api/public/endpoints/tasks/retrieve-logs';
6903
7100
  };
6904
- export type EndpointTaskAssignRetrieveLogTaskResponses = {
7101
+ export type EndpointTaskAssignRetrieveLogTask0Responses = {
6905
7102
  201: unknown;
6906
7103
  };
6907
7104
  export type EndpointTaskAssignRetrieveLogTask1Data = {
@@ -6913,13 +7110,13 @@ export type EndpointTaskAssignRetrieveLogTask1Data = {
6913
7110
  export type EndpointTaskAssignRetrieveLogTask1Responses = {
6914
7111
  201: unknown;
6915
7112
  };
6916
- export type EndpointTaskAssignFixUpdateRequiredIssueTaskData = {
7113
+ export type EndpointTaskAssignFixUpdateRequiredIssueTask0Data = {
6917
7114
  body: FixVersionUpdateDtoWritable;
6918
7115
  path?: never;
6919
7116
  query?: never;
6920
7117
  url: '/api/public/endpoints/tasks/version-update';
6921
7118
  };
6922
- export type EndpointTaskAssignFixUpdateRequiredIssueTaskResponses = {
7119
+ export type EndpointTaskAssignFixUpdateRequiredIssueTask0Responses = {
6923
7120
  201: unknown;
6924
7121
  };
6925
7122
  export type EndpointTaskAssignFixUpdateRequiredIssueTask1Data = {
@@ -7029,13 +7226,13 @@ export type AssetsGetTasks2Responses = {
7029
7226
  200: Array<TaskEntity>;
7030
7227
  };
7031
7228
  export type AssetsGetTasks2Response = AssetsGetTasks2Responses[keyof AssetsGetTasks2Responses];
7032
- export type EndpointTaskPurgeLocalDataData = {
7229
+ export type EndpointTaskPurgeLocalData0Data = {
7033
7230
  body: PurgeLocalDataDtoWritable;
7034
7231
  path?: never;
7035
7232
  query?: never;
7036
7233
  url: '/api/public/endpoints/tasks/purge-local-task-data';
7037
7234
  };
7038
- export type EndpointTaskPurgeLocalDataResponses = {
7235
+ export type EndpointTaskPurgeLocalData0Responses = {
7039
7236
  201: unknown;
7040
7237
  };
7041
7238
  export type EndpointTaskPurgeLocalData1Data = {
@@ -7047,13 +7244,13 @@ export type EndpointTaskPurgeLocalData1Data = {
7047
7244
  export type EndpointTaskPurgeLocalData1Responses = {
7048
7245
  201: unknown;
7049
7246
  };
7050
- export type EndpointTaskRetryUploadData = {
7247
+ export type EndpointTaskRetryUpload0Data = {
7051
7248
  body?: never;
7052
7249
  path?: never;
7053
7250
  query?: never;
7054
7251
  url: '/api/public/endpoints/tasks/{taskAssignmentId}/retry-upload';
7055
7252
  };
7056
- export type EndpointTaskRetryUploadResponses = {
7253
+ export type EndpointTaskRetryUpload0Responses = {
7057
7254
  200: unknown;
7058
7255
  };
7059
7256
  export type EndpointTaskRetryUpload1Data = {
@@ -7405,24 +7602,6 @@ export type SettingsSaveEnforceTfaData = {
7405
7602
  export type SettingsSaveEnforceTfaResponses = {
7406
7603
  200: unknown;
7407
7604
  };
7408
- export type SettingsSingleSignOnCallbackData = {
7409
- body?: never;
7410
- path?: never;
7411
- query?: never;
7412
- url: '/api/public/settings/sso/{type}/callback-url';
7413
- };
7414
- export type SettingsSingleSignOnCallbackResponses = {
7415
- 200: unknown;
7416
- };
7417
- export type SettingsSaveSingleSignOnData = {
7418
- body: SaveSingleSignOnDtoWritable;
7419
- path?: never;
7420
- query?: never;
7421
- url: '/api/public/settings/single-sign-on';
7422
- };
7423
- export type SettingsSaveSingleSignOnResponses = {
7424
- 200: unknown;
7425
- };
7426
7605
  export type SettingsSaveAutoAssetTaggingData = {
7427
7606
  body: AutoAssetTaggingDtoWritable;
7428
7607
  path?: never;
@@ -7598,6 +7777,61 @@ export type SettingsSaveMandatoryCaseSelectionData = {
7598
7777
  export type SettingsSaveMandatoryCaseSelectionResponses = {
7599
7778
  200: unknown;
7600
7779
  };
7780
+ export type SettingsSingleSignOnCallbackData = {
7781
+ body?: never;
7782
+ path?: never;
7783
+ query?: never;
7784
+ url: '/api/public/settings/sso/{identifier}/callback-url';
7785
+ };
7786
+ export type SettingsSingleSignOnCallbackResponses = {
7787
+ 200: unknown;
7788
+ };
7789
+ export type SettingsGetSsoProvidersData = {
7790
+ body?: never;
7791
+ path?: never;
7792
+ query?: never;
7793
+ url: '/api/public/settings/sso-providers';
7794
+ };
7795
+ export type SettingsGetSsoProvidersResponses = {
7796
+ 200: Array<SsoProviderResponseDto>;
7797
+ };
7798
+ export type SettingsGetSsoProvidersResponse = SettingsGetSsoProvidersResponses[keyof SettingsGetSsoProvidersResponses];
7799
+ export type SettingsCreateSsoProviderData = {
7800
+ body: CreateSsoProviderRequestDtoWritable;
7801
+ path?: never;
7802
+ query?: never;
7803
+ url: '/api/public/settings/sso-providers';
7804
+ };
7805
+ export type SettingsCreateSsoProviderResponses = {
7806
+ 201: SsoProviderResponseDto;
7807
+ };
7808
+ export type SettingsCreateSsoProviderResponse = SettingsCreateSsoProviderResponses[keyof SettingsCreateSsoProviderResponses];
7809
+ export type SettingsDeleteSsoProviderData = {
7810
+ body?: never;
7811
+ path: {
7812
+ id: string;
7813
+ };
7814
+ query?: never;
7815
+ url: '/api/public/settings/sso-providers/{id}';
7816
+ };
7817
+ export type SettingsDeleteSsoProviderResponses = {
7818
+ /**
7819
+ * SSO provider deleted
7820
+ */
7821
+ 204: void;
7822
+ };
7823
+ export type SettingsDeleteSsoProviderResponse = SettingsDeleteSsoProviderResponses[keyof SettingsDeleteSsoProviderResponses];
7824
+ export type SettingsUpdateSsoProviderData = {
7825
+ body: UpdateSsoProviderRequestDtoWritable;
7826
+ path: {
7827
+ id: string;
7828
+ };
7829
+ query?: never;
7830
+ url: '/api/public/settings/sso-providers/{id}';
7831
+ };
7832
+ export type SettingsUpdateSsoProviderResponses = {
7833
+ 200: unknown;
7834
+ };
7601
7835
  export type AuthCheckAuthData = {
7602
7836
  body?: never;
7603
7837
  path?: never;
@@ -7959,24 +8193,86 @@ export type UserGroupUpdateGroupData = {
7959
8193
  export type UserGroupUpdateGroupResponses = {
7960
8194
  200: unknown;
7961
8195
  };
7962
- export type SetupCheckSetupDataData = {
8196
+ export type UserPatTokensGetManyData = {
7963
8197
  body?: never;
7964
8198
  path?: never;
7965
- query?: never;
7966
- url: '/api/public/setup/check';
8199
+ query: {
8200
+ /**
8201
+ * Number of items per page
8202
+ */
8203
+ pageSize?: number;
8204
+ /**
8205
+ * Page number to retrieve
8206
+ */
8207
+ pageNumber?: number;
8208
+ /**
8209
+ * Sort direction
8210
+ */
8211
+ sortType?: 'ASC' | 'DESC';
8212
+ /**
8213
+ * Field name to sort by
8214
+ */
8215
+ sortBy?: 'title' | 'expiresAt' | 'lastUsedAt' | 'createdAt' | 'updatedAt';
8216
+ filter: FilterUserPatTokensRequestDto;
8217
+ };
8218
+ url: '/api/public/user-management/pat-tokens';
7967
8219
  };
7968
- export type SetupCheckSetupDataResponses = {
7969
- 201: unknown;
8220
+ export type UserPatTokensGetManyResponses = {
8221
+ 200: PagingQueryResultDto;
7970
8222
  };
7971
- export type SetupInstallData = {
7972
- body: InstallApiDtoWritable;
8223
+ export type UserPatTokensGetManyResponse = UserPatTokensGetManyResponses[keyof UserPatTokensGetManyResponses];
8224
+ export type UserPatTokensCreateData = {
8225
+ body: CreateUserPatTokenRequestDto;
7973
8226
  path?: never;
7974
8227
  query?: never;
7975
- url: '/api/public/setup/install';
8228
+ url: '/api/public/user-management/pat-tokens';
7976
8229
  };
7977
- export type SetupInstallResponses = {
7978
- 201: unknown;
8230
+ export type UserPatTokensCreateResponses = {
8231
+ 201: UserPatTokenWithTokenDto;
8232
+ };
8233
+ export type UserPatTokensCreateResponse = UserPatTokensCreateResponses[keyof UserPatTokensCreateResponses];
8234
+ export type UserPatTokensRotateData = {
8235
+ body?: never;
8236
+ path: {
8237
+ /**
8238
+ * UUID of the PAT row (returned in the listing response as `id`).
8239
+ */
8240
+ id: string;
8241
+ };
8242
+ query?: never;
8243
+ url: '/api/public/user-management/pat-tokens/{id}/rotate';
8244
+ };
8245
+ export type UserPatTokensRotateErrors = {
8246
+ /**
8247
+ * The PAT does not exist or does not belong to the caller.
8248
+ */
8249
+ 404: unknown;
8250
+ };
8251
+ export type UserPatTokensRotateResponses = {
8252
+ 200: UserPatTokenWithTokenDto;
8253
+ };
8254
+ export type UserPatTokensRotateResponse = UserPatTokensRotateResponses[keyof UserPatTokensRotateResponses];
8255
+ export type UserPatTokensDeleteData = {
8256
+ body?: never;
8257
+ path: {
8258
+ /**
8259
+ * UUID of the PAT row (returned in the listing response as `id`).
8260
+ */
8261
+ id: string;
8262
+ };
8263
+ query?: never;
8264
+ url: '/api/public/user-management/pat-tokens/{id}';
8265
+ };
8266
+ export type UserPatTokensDeleteErrors = {
8267
+ /**
8268
+ * The PAT does not exist or does not belong to the caller.
8269
+ */
8270
+ 404: unknown;
7979
8271
  };
8272
+ export type UserPatTokensDeleteResponses = {
8273
+ 204: void;
8274
+ };
8275
+ export type UserPatTokensDeleteResponse = UserPatTokensDeleteResponses[keyof UserPatTokensDeleteResponses];
7980
8276
  export type LicenseGetLicenseData = {
7981
8277
  body?: never;
7982
8278
  path?: never;
@@ -8582,13 +8878,13 @@ export type DeleteTriageRuleTagResponses = {
8582
8878
  */
8583
8879
  200: unknown;
8584
8880
  };
8585
- export type EvidenceGetCaseReportData = {
8881
+ export type EvidenceGetCaseReport0Data = {
8586
8882
  body?: never;
8587
8883
  path?: never;
8588
8884
  query?: never;
8589
8885
  url: '/api/public/evidence/case/report/{endpointId}/{taskId}';
8590
8886
  };
8591
- export type EvidenceGetCaseReportResponses = {
8887
+ export type EvidenceGetCaseReport0Responses = {
8592
8888
  200: unknown;
8593
8889
  };
8594
8890
  export type EvidenceGetCaseReport1Data = {
@@ -9045,6 +9341,15 @@ export type PolicyUpdateData = {
9045
9341
  export type PolicyUpdateResponses = {
9046
9342
  200: unknown;
9047
9343
  };
9344
+ export type PolicyUpdateStatusData = {
9345
+ body: UpdatePolicyStatusDtoWritable;
9346
+ path?: never;
9347
+ query?: never;
9348
+ url: '/api/public/policies/{id}/update-status';
9349
+ };
9350
+ export type PolicyUpdateStatusResponses = {
9351
+ 200: unknown;
9352
+ };
9048
9353
  export type PolicyCheckNameExistsData = {
9049
9354
  body?: never;
9050
9355
  path?: never;
@@ -9485,7 +9790,7 @@ export type CaseExportCaseNotesData = {
9485
9790
  export type CaseExportCaseNotesResponses = {
9486
9791
  200: unknown;
9487
9792
  };
9488
- export type CaseExportCaseEndpointsData = {
9793
+ export type CaseExportCaseEndpoints0Data = {
9489
9794
  body?: never;
9490
9795
  path: {
9491
9796
  id: string;
@@ -9495,7 +9800,7 @@ export type CaseExportCaseEndpointsData = {
9495
9800
  };
9496
9801
  url: '/api/public/cases/{id}/endpoints/export';
9497
9802
  };
9498
- export type CaseExportCaseEndpointsResponses = {
9803
+ export type CaseExportCaseEndpoints0Responses = {
9499
9804
  200: unknown;
9500
9805
  };
9501
9806
  export type CaseExportCaseEndpoints1Data = {
@@ -9934,7 +10239,7 @@ export type CasesGetUsersResponses = {
9934
10239
  200: CaseUsersPageDto;
9935
10240
  };
9936
10241
  export type CasesGetUsersResponse = CasesGetUsersResponses[keyof CasesGetUsersResponses];
9937
- export type CaseRemoveEndpointsFromCaseByFilterData = {
10242
+ export type CaseRemoveEndpointsFromCaseByFilter0Data = {
9938
10243
  body: RemoveEndpointFromCaseDtoWritable;
9939
10244
  path: {
9940
10245
  caseId: string;
@@ -9942,7 +10247,7 @@ export type CaseRemoveEndpointsFromCaseByFilterData = {
9942
10247
  query?: never;
9943
10248
  url: '/api/public/cases/{caseId}/endpoints';
9944
10249
  };
9945
- export type CaseRemoveEndpointsFromCaseByFilterResponses = {
10250
+ export type CaseRemoveEndpointsFromCaseByFilter0Responses = {
9946
10251
  200: unknown;
9947
10252
  };
9948
10253
  export type CaseRemoveEndpointsFromCaseByFilter1Data = {
@@ -11418,7 +11723,7 @@ export type InvestigationCreateExportRequestForFindingsData = {
11418
11723
  export type InvestigationCreateExportRequestForFindingsResponses = {
11419
11724
  201: unknown;
11420
11725
  };
11421
- export type InvestigationImportTornadoEvidenceToInvestigationData = {
11726
+ export type InvestigationImportTornadoEvidenceToInvestigation0Data = {
11422
11727
  body: ImportTornadoEvidenceDtoWritable;
11423
11728
  path: {
11424
11729
  investigationId: string;
@@ -11426,7 +11731,7 @@ export type InvestigationImportTornadoEvidenceToInvestigationData = {
11426
11731
  query?: never;
11427
11732
  url: '/api/public/investigation-hub/investigations/{investigationId}/import-sqlite-v2';
11428
11733
  };
11429
- export type InvestigationImportTornadoEvidenceToInvestigationResponses = {
11734
+ export type InvestigationImportTornadoEvidenceToInvestigation0Responses = {
11430
11735
  201: unknown;
11431
11736
  };
11432
11737
  export type InvestigationImportTornadoEvidenceToInvestigation1Data = {
@@ -11449,6 +11754,15 @@ export type InvestigationExclusionAddFindingExclusionRuleData = {
11449
11754
  export type InvestigationExclusionAddFindingExclusionRuleResponses = {
11450
11755
  201: unknown;
11451
11756
  };
11757
+ export type InvestigationExclusionBulkAddFindingExclusionRulesData = {
11758
+ body: BulkAddFindingExclusionRulesDtoWritable;
11759
+ path?: never;
11760
+ query?: never;
11761
+ url: '/api/public/investigation-hub/findings/exclusion-rules/bulk';
11762
+ };
11763
+ export type InvestigationExclusionBulkAddFindingExclusionRulesResponses = {
11764
+ 201: unknown;
11765
+ };
11452
11766
  export type InvestigationExclusionGetFindingExclusionRulesMatchesData = {
11453
11767
  body: GetFindingExclusionRulesMatchesDtoWritable;
11454
11768
  path?: never;
@@ -12069,6 +12383,45 @@ export type ProcessorGetProcessorTypeByAssetTypeData = {
12069
12383
  export type ProcessorGetProcessorTypeByAssetTypeResponses = {
12070
12384
  200: unknown;
12071
12385
  };
12386
+ export type AssetV2ApiControllerGetAssetByIdData = {
12387
+ body?: never;
12388
+ path: {
12389
+ id: string;
12390
+ };
12391
+ query?: never;
12392
+ url: '/api/v2/assets/{id}';
12393
+ };
12394
+ export type AssetV2ApiControllerGetAssetByIdErrors = {
12395
+ /**
12396
+ * Validation error
12397
+ */
12398
+ 400: ApiErrorResponseDto;
12399
+ /**
12400
+ * Authentication required
12401
+ */
12402
+ 401: ApiErrorResponseDto;
12403
+ /**
12404
+ * Insufficient privileges
12405
+ */
12406
+ 403: ApiErrorResponseDto;
12407
+ /**
12408
+ * Resource not found
12409
+ */
12410
+ 404: ApiErrorResponseDto;
12411
+ /**
12412
+ * Conflict with current state
12413
+ */
12414
+ 409: ApiErrorResponseDto;
12415
+ /**
12416
+ * Server error
12417
+ */
12418
+ 500: ApiErrorResponseDto;
12419
+ };
12420
+ export type AssetV2ApiControllerGetAssetByIdError = AssetV2ApiControllerGetAssetByIdErrors[keyof AssetV2ApiControllerGetAssetByIdErrors];
12421
+ export type AssetV2ApiControllerGetAssetByIdResponses = {
12422
+ 200: ApiSuccessResponseDto;
12423
+ };
12424
+ export type AssetV2ApiControllerGetAssetByIdResponse = AssetV2ApiControllerGetAssetByIdResponses[keyof AssetV2ApiControllerGetAssetByIdResponses];
12072
12425
  export type WebhookFilterParsersData = {
12073
12426
  body?: never;
12074
12427
  path?: never;
@@ -12998,5 +13351,5 @@ export type ImageEvidenceAcquisitionProfilesDeleteBulkResponses = {
12998
13351
  200: unknown;
12999
13352
  };
13000
13353
  export type ClientOptions = {
13001
- baseURL: 'https://dev-air.com' | (string & {});
13354
+ baseURL: string;
13002
13355
  };