@crowdstrike/foundry-js 0.7.0 → 0.7.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.
package/dist/types.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import type { ApiIdentifier } from './apis/available-apis';
|
2
2
|
import type { ApiRequestMessage, ApiResponseMessage } from './apis/types';
|
3
|
-
import type {
|
3
|
+
import type { PostEntitiesPutFilesV1ApiResponse } from './apis/remote-response';
|
4
4
|
export type QueryParam = string | number | string[] | number[] | boolean;
|
5
5
|
export interface BaseUrlParams {
|
6
6
|
[key: string]: QueryParam | undefined;
|
@@ -125,7 +125,7 @@ export interface RtrFileUploadPayload {
|
|
125
125
|
description?: string;
|
126
126
|
comments_for_audit_log?: string;
|
127
127
|
}
|
128
|
-
export type RtrFileUploadResponse =
|
128
|
+
export type RtrFileUploadResponse = PostEntitiesPutFilesV1ApiResponse;
|
129
129
|
export type PayloadForFileUploadType<TYPE extends FileUploadType> = TYPE extends 'remote-response' ? RtrFileUploadPayload : never;
|
130
130
|
export type ResponseForFileUploadType<TYPE extends FileUploadType> = TYPE extends 'remote-response' ? RtrFileUploadResponse : never;
|
131
131
|
export interface FileUploadRequestMessage<T extends FileUploadType = FileUploadType> extends BaseMessage {
|