@binalyze/air-sdk 5.11.8 → 5.12.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.
|
@@ -2794,6 +2794,66 @@ export type CreateCaseDto = {
|
|
|
2794
2794
|
export type UpdateCaseDto = {
|
|
2795
2795
|
[key: string]: unknown;
|
|
2796
2796
|
};
|
|
2797
|
+
export type CaseFilterDto = {
|
|
2798
|
+
/**
|
|
2799
|
+
* Included case IDs
|
|
2800
|
+
*/
|
|
2801
|
+
includedIds?: Array<string>;
|
|
2802
|
+
/**
|
|
2803
|
+
* Excluded case IDs
|
|
2804
|
+
*/
|
|
2805
|
+
excludedIds?: Array<string>;
|
|
2806
|
+
/**
|
|
2807
|
+
* Organization IDs
|
|
2808
|
+
*/
|
|
2809
|
+
organizationIds: Array<number>;
|
|
2810
|
+
/**
|
|
2811
|
+
* Search term for cases
|
|
2812
|
+
*/
|
|
2813
|
+
searchTerm?: string;
|
|
2814
|
+
/**
|
|
2815
|
+
* Statuses to filter
|
|
2816
|
+
*/
|
|
2817
|
+
status?: Array<string>;
|
|
2818
|
+
/**
|
|
2819
|
+
* Started date range
|
|
2820
|
+
*/
|
|
2821
|
+
startedOn?: DateRangeDto;
|
|
2822
|
+
/**
|
|
2823
|
+
* Closed date range
|
|
2824
|
+
*/
|
|
2825
|
+
closedOn?: DateRangeDto;
|
|
2826
|
+
/**
|
|
2827
|
+
* Category IDs
|
|
2828
|
+
*/
|
|
2829
|
+
categoryIds?: Array<string>;
|
|
2830
|
+
/**
|
|
2831
|
+
* Tag IDs
|
|
2832
|
+
*/
|
|
2833
|
+
tagIds?: Array<string>;
|
|
2834
|
+
/**
|
|
2835
|
+
* Filter cases without a category
|
|
2836
|
+
*/
|
|
2837
|
+
withoutCategory?: boolean;
|
|
2838
|
+
/**
|
|
2839
|
+
* Filter cases without tags
|
|
2840
|
+
*/
|
|
2841
|
+
withoutTag?: boolean;
|
|
2842
|
+
/**
|
|
2843
|
+
* Filter cases closing soon
|
|
2844
|
+
*/
|
|
2845
|
+
closingSoon?: boolean;
|
|
2846
|
+
/**
|
|
2847
|
+
* Close reasons
|
|
2848
|
+
*/
|
|
2849
|
+
closeReasons?: Array<string>;
|
|
2850
|
+
};
|
|
2851
|
+
export type CaseOperationsByFilterRequestDto = {
|
|
2852
|
+
/**
|
|
2853
|
+
* Filter criteria for cases to process
|
|
2854
|
+
*/
|
|
2855
|
+
filter: CaseFilterDto;
|
|
2856
|
+
};
|
|
2797
2857
|
export type ChangeCaseOwnerDto = {
|
|
2798
2858
|
/**
|
|
2799
2859
|
* ID of the new owner for the case
|
|
@@ -5903,6 +5963,19 @@ export type EndpointGroupGetRootGroupsData = {
|
|
|
5903
5963
|
export type EndpointGroupGetRootGroupsResponses = {
|
|
5904
5964
|
200: unknown;
|
|
5905
5965
|
};
|
|
5966
|
+
export type GetTaskDisplayTypesData = {
|
|
5967
|
+
body?: never;
|
|
5968
|
+
path?: never;
|
|
5969
|
+
query?: never;
|
|
5970
|
+
url: '/api/public/tasks/display-types';
|
|
5971
|
+
};
|
|
5972
|
+
export type GetTaskDisplayTypesResponses = {
|
|
5973
|
+
/**
|
|
5974
|
+
* Task display types retrieved successfully
|
|
5975
|
+
*/
|
|
5976
|
+
200: Array<string>;
|
|
5977
|
+
};
|
|
5978
|
+
export type GetTaskDisplayTypesResponse = GetTaskDisplayTypesResponses[keyof GetTaskDisplayTypesResponses];
|
|
5906
5979
|
export type TaskDeleteData = {
|
|
5907
5980
|
body?: never;
|
|
5908
5981
|
path: {
|
|
@@ -7099,6 +7172,24 @@ export type LicenseSetLicenseData = {
|
|
|
7099
7172
|
export type LicenseSetLicenseResponses = {
|
|
7100
7173
|
201: unknown;
|
|
7101
7174
|
};
|
|
7175
|
+
export type LicenseRefreshLicenseData = {
|
|
7176
|
+
body?: never;
|
|
7177
|
+
path?: never;
|
|
7178
|
+
query?: never;
|
|
7179
|
+
url: '/api/public/license/refresh';
|
|
7180
|
+
};
|
|
7181
|
+
export type LicenseRefreshLicenseResponses = {
|
|
7182
|
+
200: unknown;
|
|
7183
|
+
};
|
|
7184
|
+
export type LicenseGetSubscriptionDetailsData = {
|
|
7185
|
+
body?: never;
|
|
7186
|
+
path?: never;
|
|
7187
|
+
query?: never;
|
|
7188
|
+
url: '/api/public/license/subscription-details';
|
|
7189
|
+
};
|
|
7190
|
+
export type LicenseGetSubscriptionDetailsResponses = {
|
|
7191
|
+
200: unknown;
|
|
7192
|
+
};
|
|
7102
7193
|
export type LicenseGetQuotaData = {
|
|
7103
7194
|
body?: never;
|
|
7104
7195
|
path?: never;
|
|
@@ -8524,6 +8615,24 @@ export type CaseArchiveCaseResponses = {
|
|
|
8524
8615
|
200: CaseResponseDto;
|
|
8525
8616
|
};
|
|
8526
8617
|
export type CaseArchiveCaseResponse = CaseArchiveCaseResponses[keyof CaseArchiveCaseResponses];
|
|
8618
|
+
export type CasesCloseByFilterData = {
|
|
8619
|
+
body: CaseOperationsByFilterRequestDto;
|
|
8620
|
+
path?: never;
|
|
8621
|
+
query?: never;
|
|
8622
|
+
url: '/api/public/cases/close';
|
|
8623
|
+
};
|
|
8624
|
+
export type CasesCloseByFilterResponses = {
|
|
8625
|
+
201: unknown;
|
|
8626
|
+
};
|
|
8627
|
+
export type CasesArchiveByFilterData = {
|
|
8628
|
+
body: CaseOperationsByFilterRequestDto;
|
|
8629
|
+
path?: never;
|
|
8630
|
+
query?: never;
|
|
8631
|
+
url: '/api/public/cases/archive';
|
|
8632
|
+
};
|
|
8633
|
+
export type CasesArchiveByFilterResponses = {
|
|
8634
|
+
201: unknown;
|
|
8635
|
+
};
|
|
8527
8636
|
export type CasesChangeOwnerData = {
|
|
8528
8637
|
body: ChangeCaseOwnerDto;
|
|
8529
8638
|
path: {
|
|
@@ -9566,6 +9675,15 @@ export type CloudAccountsCreateCloudAccountData = {
|
|
|
9566
9675
|
export type CloudAccountsCreateCloudAccountResponses = {
|
|
9567
9676
|
201: unknown;
|
|
9568
9677
|
};
|
|
9678
|
+
export type CloudAccountsGetConfigData = {
|
|
9679
|
+
body?: never;
|
|
9680
|
+
path?: never;
|
|
9681
|
+
query?: never;
|
|
9682
|
+
url: '/api/public/cloud-forensics/accounts/config';
|
|
9683
|
+
};
|
|
9684
|
+
export type CloudAccountsGetConfigResponses = {
|
|
9685
|
+
200: unknown;
|
|
9686
|
+
};
|
|
9569
9687
|
export type CloudAccountsExportData = {
|
|
9570
9688
|
body?: never;
|
|
9571
9689
|
path?: never;
|