@wix/auto_sdk_media_files 1.0.32 → 1.0.34
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/build/cjs/index.d.ts +5 -19
- package/build/cjs/index.js +0 -112
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +31 -100
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +590 -1
- package/build/cjs/meta.js +119 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +5 -19
- package/build/es/index.mjs +0 -110
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +31 -100
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +590 -1
- package/build/es/meta.mjs +107 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +5 -19
- package/build/internal/cjs/index.js +0 -112
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +31 -100
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +590 -1
- package/build/internal/cjs/meta.js +119 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +5 -19
- package/build/internal/es/index.mjs +0 -110
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +31 -100
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +590 -1
- package/build/internal/es/meta.mjs +107 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { GenerateFilesDownloadUrlResponse, GenerateFileDownloadUrlOptions, GenerateFileDownloadUrlResponse, GenerateFileDownloadUrlValidationErrors, FileDescriptor, GetFileDescriptorValidationErrors, GetFileDescriptorsResponse, GetFileDescriptorsValidationErrors, UpdateFileDescriptorValidationErrors, GenerateFileUploadUrlOptions, GenerateFileUploadUrlResponse, GenerateFileUploadUrlValidationErrors, GenerateFileResumableUploadUrlOptions, GenerateFileResumableUploadUrlResponse, GenerateFileResumableUploadUrlValidationErrors, ImportFileOptions, ImportFileResponse, ImportFileValidationErrors, ImportFileRequest, BulkImportFilesResponse, BulkImportFileOptions, BulkImportFileResponse, ListFilesOptions, ListFilesResponse, ListFilesValidationErrors, SearchFilesOptions, SearchFilesResponse, SearchFilesValidationErrors, GenerateVideoStreamingUrlOptions, GenerateVideoStreamingUrlResponse, BulkDeleteFilesOptions, ListDeletedFilesOptions, ListDeletedFilesResponse, ListDeletedFilesValidationErrors,
|
|
3
|
-
export { ActionEvent, ApplicationError, Archive, AudioV2, BaseEventMetadata, BulkActionMetadata, BulkAnnotateImageResult, BulkAnnotateImagesRequest, BulkAnnotateImagesResponse, BulkDeleteFilesRequest, BulkDeleteFilesResponse, BulkImportFileRequest, BulkImportFileResult, BulkImportFilesRequest, BulkPublishDraftFileResult, BulkPublishDraftFilesRequest, BulkPublishDraftFilesResponse, BulkRestoreFilesFromTrashBinRequest, BulkRestoreFilesFromTrashBinResponse, Color, ColorRGB, Colors, ContentDisposition, ContentDispositionWithLiterals, CursorPaging, Cursors, DomainEvent, DomainEventBodyOneOf, DownloadUrl, DraftFilePublished, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, EventMetadata, ExternalInfo, FaceRecognition, FileFailed, FileMedia, FileMediaMediaOneOf, FileReady, FocalPoint, FontAsset, FontMedia, GenerateFileDownloadUrlRequest, GenerateFileResumableUploadUrlRequest, GenerateFileUploadUrlRequest, GenerateFilesDownloadUrlRequest, GenerateVideoStreamingUrlRequest, GenerateWebSocketTokenRequest, GenerateWebSocketTokenResponse, GetFileDescriptorRequest, GetFileDescriptorResponse, GetFileDescriptorsRequest, IdentificationData, IdentificationDataIdOneOf, IdentityInfo, IdentityType, IdentityTypeWithLiterals, ImageAnnotationConfigurations, ImageAnnotationType, ImageAnnotationTypeWithLiterals, ImageMedia, ItemMetadata, ListDeletedFilesRequest, ListFilesRequest, MediaType, MediaTypeWithLiterals, MessageEnvelope, Model3D, Namespace, NamespaceWithLiterals, OperationStatus, OperationStatusWithLiterals, OtherMedia, PagingMetadataV2, Plan, Plans, RestoreInfo, RootFolder, RootFolderWithLiterals, SearchFilesRequest, ServiceError, SiteQuotaExceededError, SortOrder, SortOrderWithLiterals, Sorting, State, StateWithLiterals, StreamFormat, StreamFormatWithLiterals, TotalQuota, UnsupportedRequestValueError, UpdateFileDescriptorRequest, UpdateFileDescriptorResponse, UpdateFileRequest, UpdateFileResponse, UploadProtocol, UploadProtocolWithLiterals, VideoResolution, WebhookIdentityType, WebhookIdentityTypeWithLiterals } from './index.typings.mjs';
|
|
2
|
+
import { GenerateFilesDownloadUrlResponse, GenerateFileDownloadUrlOptions, GenerateFileDownloadUrlResponse, GenerateFileDownloadUrlValidationErrors, FileDescriptor, GetFileDescriptorValidationErrors, GetFileDescriptorsResponse, GetFileDescriptorsValidationErrors, UpdateFileDescriptorValidationErrors, GenerateFileUploadUrlOptions, GenerateFileUploadUrlResponse, GenerateFileUploadUrlValidationErrors, GenerateFileResumableUploadUrlOptions, GenerateFileResumableUploadUrlResponse, GenerateFileResumableUploadUrlValidationErrors, ImportFileOptions, ImportFileResponse, ImportFileValidationErrors, ImportFileRequest, BulkImportFilesResponse, BulkImportFileOptions, BulkImportFileResponse, ListFilesOptions, ListFilesResponse, ListFilesValidationErrors, SearchFilesOptions, SearchFilesResponse, SearchFilesValidationErrors, GenerateVideoStreamingUrlOptions, GenerateVideoStreamingUrlResponse, BulkDeleteFilesOptions, ListDeletedFilesOptions, ListDeletedFilesResponse, ListDeletedFilesValidationErrors, FileDescriptorFileFailedEnvelope, FileDescriptorFileReadyEnvelope } from './index.typings.mjs';
|
|
3
|
+
export { ActionEvent, ApplicationError, Archive, AudioV2, BaseEventMetadata, BulkActionMetadata, BulkAnnotateImageResult, BulkAnnotateImagesRequest, BulkAnnotateImagesResponse, BulkDeleteFilesRequest, BulkDeleteFilesResponse, BulkImportFileRequest, BulkImportFileResult, BulkImportFilesRequest, BulkInternalImportFilesRequest, BulkInternalImportFilesResponse, BulkPublishDraftFileResult, BulkPublishDraftFilesRequest, BulkPublishDraftFilesResponse, BulkRestoreFilesFromTrashBinRequest, BulkRestoreFilesFromTrashBinResponse, Color, ColorRGB, Colors, ContentDisposition, ContentDispositionWithLiterals, CursorPaging, Cursors, DomainEvent, DomainEventBodyOneOf, DownloadUrl, DraftFilePublished, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, EventMetadata, ExternalInfo, FaceRecognition, FileFailed, FileMedia, FileMediaMediaOneOf, FileReady, FocalPoint, FontAsset, FontMedia, GenerateFileDownloadUrlRequest, GenerateFileResumableUploadUrlRequest, GenerateFileUploadUrlRequest, GenerateFilesDownloadUrlRequest, GenerateVideoStreamingUrlRequest, GenerateWebSocketTokenRequest, GenerateWebSocketTokenResponse, GetFileDescriptorRequest, GetFileDescriptorResponse, GetFileDescriptorsRequest, IdentificationData, IdentificationDataIdOneOf, IdentityInfo, IdentityType, IdentityTypeWithLiterals, ImageAnnotationConfigurations, ImageAnnotationType, ImageAnnotationTypeWithLiterals, ImageMedia, ItemMetadata, ListDeletedFilesRequest, ListFilesRequest, MediaType, MediaTypeWithLiterals, MessageEnvelope, Model3D, Namespace, NamespaceWithLiterals, OperationStatus, OperationStatusWithLiterals, OtherMedia, PagingMetadataV2, Plan, Plans, RestoreInfo, RootFolder, RootFolderWithLiterals, SearchFilesRequest, ServiceError, SiteQuotaExceededError, SortOrder, SortOrderWithLiterals, Sorting, State, StateWithLiterals, StreamFormat, StreamFormatWithLiterals, TotalQuota, UnsupportedRequestValueError, UpdateFileDescriptorRequest, UpdateFileDescriptorResponse, UpdateFileRequest, UpdateFileResponse, UploadProtocol, UploadProtocolWithLiterals, VideoResolution, WebhookIdentityType, WebhookIdentityTypeWithLiterals } from './index.typings.mjs';
|
|
4
4
|
|
|
5
5
|
declare function generateFilesDownloadUrl$1(httpClient: HttpClient): GenerateFilesDownloadUrlSignature;
|
|
6
6
|
interface GenerateFilesDownloadUrlSignature {
|
|
@@ -288,10 +288,8 @@ interface ListDeletedFilesSignature {
|
|
|
288
288
|
__validationErrorsType?: ListDeletedFilesValidationErrors;
|
|
289
289
|
}>;
|
|
290
290
|
}
|
|
291
|
-
declare const onFileDescriptorDeleted$1: EventDefinition<FileDescriptorDeletedEnvelope, "wix.media.site_media.v1.file_descriptor_deleted">;
|
|
292
291
|
declare const onFileDescriptorFileFailed$1: EventDefinition<FileDescriptorFileFailedEnvelope, "wix.media.site_media.v1.file_descriptor_file_failed">;
|
|
293
292
|
declare const onFileDescriptorFileReady$1: EventDefinition<FileDescriptorFileReadyEnvelope, "wix.media.site_media.v1.file_descriptor_file_ready">;
|
|
294
|
-
declare const onFileDescriptorUpdated$1: EventDefinition<FileDescriptorUpdatedEnvelope, "wix.media.site_media.v1.file_descriptor_updated">;
|
|
295
293
|
|
|
296
294
|
declare const generateFilesDownloadUrl: MaybeContext<BuildRESTFunction<typeof generateFilesDownloadUrl$1> & typeof generateFilesDownloadUrl$1>;
|
|
297
295
|
declare const generateFileDownloadUrl: MaybeContext<BuildRESTFunction<typeof generateFileDownloadUrl$1> & typeof generateFileDownloadUrl$1>;
|
|
@@ -310,24 +308,12 @@ declare const bulkDeleteFiles: MaybeContext<BuildRESTFunction<typeof bulkDeleteF
|
|
|
310
308
|
declare const bulkRestoreFilesFromTrashBin: MaybeContext<BuildRESTFunction<typeof bulkRestoreFilesFromTrashBin$1> & typeof bulkRestoreFilesFromTrashBin$1>;
|
|
311
309
|
declare const listDeletedFiles: MaybeContext<BuildRESTFunction<typeof listDeletedFiles$1> & typeof listDeletedFiles$1>;
|
|
312
310
|
/**
|
|
313
|
-
* Triggered when a file is
|
|
314
|
-
*
|
|
315
|
-
* If the `movedToTrash` property in the event object `true`, the file was moved to the Media Manager's trash bin. If the `movedToTrash` property in the event object is `false`, the file was permanently deleted.
|
|
316
|
-
*/
|
|
317
|
-
declare const onFileDescriptorDeleted: BuildEventDefinition<typeof onFileDescriptorDeleted$1> & typeof onFileDescriptorDeleted$1;
|
|
318
|
-
/**
|
|
319
|
-
* Triggered when a file fails during essential post-upload processing.
|
|
311
|
+
* Triggered when a file's import fails. Learn more about [knowing when a file is ready](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/importing-files#knowing-when-a-file-is-ready).
|
|
320
312
|
*/
|
|
321
313
|
declare const onFileDescriptorFileFailed: BuildEventDefinition<typeof onFileDescriptorFileFailed$1> & typeof onFileDescriptorFileFailed$1;
|
|
322
314
|
/**
|
|
323
|
-
* Triggered when a file
|
|
324
|
-
*
|
|
325
|
-
* This event is also triggred when a file is restored from the Media Manager's trash bin.
|
|
315
|
+
* Triggered when a file finishes processing successfully. Learn more about [knowing when a file is ready](https://dev.wix.com/docs/api-reference/assets/media/media-manager/files/importing-files#knowing-when-a-file-is-ready).
|
|
326
316
|
*/
|
|
327
317
|
declare const onFileDescriptorFileReady: BuildEventDefinition<typeof onFileDescriptorFileReady$1> & typeof onFileDescriptorFileReady$1;
|
|
328
|
-
/**
|
|
329
|
-
* Triggered when a file is updated, including when a file is moved to a different folder.
|
|
330
|
-
*/
|
|
331
|
-
declare const onFileDescriptorUpdated: BuildEventDefinition<typeof onFileDescriptorUpdated$1> & typeof onFileDescriptorUpdated$1;
|
|
332
318
|
|
|
333
|
-
export { BulkDeleteFilesOptions, BulkImportFileOptions, BulkImportFileResponse, BulkImportFilesResponse, FileDescriptor,
|
|
319
|
+
export { BulkDeleteFilesOptions, BulkImportFileOptions, BulkImportFileResponse, BulkImportFilesResponse, FileDescriptor, FileDescriptorFileFailedEnvelope, FileDescriptorFileReadyEnvelope, GenerateFileDownloadUrlOptions, GenerateFileDownloadUrlResponse, GenerateFileDownloadUrlValidationErrors, GenerateFileResumableUploadUrlOptions, GenerateFileResumableUploadUrlResponse, GenerateFileResumableUploadUrlValidationErrors, GenerateFileUploadUrlOptions, GenerateFileUploadUrlResponse, GenerateFileUploadUrlValidationErrors, GenerateFilesDownloadUrlResponse, GenerateVideoStreamingUrlOptions, GenerateVideoStreamingUrlResponse, GetFileDescriptorValidationErrors, GetFileDescriptorsResponse, GetFileDescriptorsValidationErrors, ImportFileOptions, ImportFileRequest, ImportFileResponse, ImportFileValidationErrors, ListDeletedFilesOptions, ListDeletedFilesResponse, ListDeletedFilesValidationErrors, ListFilesOptions, ListFilesResponse, ListFilesValidationErrors, SearchFilesOptions, SearchFilesResponse, SearchFilesValidationErrors, UpdateFileDescriptorValidationErrors, bulkDeleteFiles, bulkImportFile, bulkImportFiles, bulkRestoreFilesFromTrashBin, generateFileDownloadUrl, generateFileResumableUploadUrl, generateFileUploadUrl, generateFilesDownloadUrl, generateVideoStreamingUrl, getFileDescriptor, getFileDescriptors, importFile, listDeletedFiles, listFiles, onFileDescriptorFileFailed, onFileDescriptorFileReady, searchFiles, updateFileDescriptor };
|
|
@@ -2035,57 +2035,6 @@ function listDeletedFiles3(httpClient) {
|
|
|
2035
2035
|
{ httpClient }
|
|
2036
2036
|
);
|
|
2037
2037
|
}
|
|
2038
|
-
var onFileDescriptorDeleted = EventDefinition(
|
|
2039
|
-
"wix.media.site_media.v1.file_descriptor_deleted",
|
|
2040
|
-
true,
|
|
2041
|
-
(event) => renameKeysFromRESTResponseToSDKResponse2(
|
|
2042
|
-
transformPaths3(event, [
|
|
2043
|
-
{
|
|
2044
|
-
transformFn: transformRESTTimestampToSDKTimestamp2,
|
|
2045
|
-
paths: [
|
|
2046
|
-
{ path: "undefined.createdDate" },
|
|
2047
|
-
{ path: "undefined.updatedDate" },
|
|
2048
|
-
{ path: "undefined.lastUsedDate" },
|
|
2049
|
-
{ path: "undefined.media.archive.urlExpirationDate" },
|
|
2050
|
-
{ path: "undefined.media.model3d.urlExpirationDate" },
|
|
2051
|
-
{ path: "metadata.eventTime" }
|
|
2052
|
-
]
|
|
2053
|
-
},
|
|
2054
|
-
{
|
|
2055
|
-
transformFn: transformRESTVideoV2ToSDKVideoV22,
|
|
2056
|
-
paths: [{ path: "undefined.media.video" }]
|
|
2057
|
-
},
|
|
2058
|
-
{
|
|
2059
|
-
transformFn: transformRESTDocumentToSDKDocument2,
|
|
2060
|
-
paths: [{ path: "undefined.media.document" }]
|
|
2061
|
-
},
|
|
2062
|
-
{
|
|
2063
|
-
transformFn: transformRESTImageToSDKImage2,
|
|
2064
|
-
paths: [
|
|
2065
|
-
{ path: "undefined.media.image.image" },
|
|
2066
|
-
{ path: "undefined.media.image.previewImage" },
|
|
2067
|
-
{ path: "undefined.media.vector.image" },
|
|
2068
|
-
{ path: "undefined.media.vector.previewImage" },
|
|
2069
|
-
{ path: "undefined.media.model3d.thumbnail" },
|
|
2070
|
-
{ path: "undefined.media.icon.image" },
|
|
2071
|
-
{ path: "undefined.media.icon.previewImage" }
|
|
2072
|
-
]
|
|
2073
|
-
},
|
|
2074
|
-
{
|
|
2075
|
-
transformFn: transformRESTFloatToSDKFloat2,
|
|
2076
|
-
paths: [
|
|
2077
|
-
{ path: "undefined.media.image.faces.confidence" },
|
|
2078
|
-
{ path: "undefined.media.vector.faces.confidence" },
|
|
2079
|
-
{ path: "undefined.media.icon.faces.confidence" }
|
|
2080
|
-
]
|
|
2081
|
-
},
|
|
2082
|
-
{
|
|
2083
|
-
transformFn: transformRESTAudioToSDKAudio2,
|
|
2084
|
-
paths: [{ path: "undefined.media.audio.assets", isRepeated: true }]
|
|
2085
|
-
}
|
|
2086
|
-
])
|
|
2087
|
-
)
|
|
2088
|
-
)();
|
|
2089
2038
|
var onFileDescriptorFileFailed = EventDefinition(
|
|
2090
2039
|
"wix.media.site_media.v1.file_descriptor_file_failed",
|
|
2091
2040
|
true,
|
|
@@ -2149,57 +2098,6 @@ var onFileDescriptorFileReady = EventDefinition(
|
|
|
2149
2098
|
])
|
|
2150
2099
|
)
|
|
2151
2100
|
)();
|
|
2152
|
-
var onFileDescriptorUpdated = EventDefinition(
|
|
2153
|
-
"wix.media.site_media.v1.file_descriptor_updated",
|
|
2154
|
-
true,
|
|
2155
|
-
(event) => renameKeysFromRESTResponseToSDKResponse2(
|
|
2156
|
-
transformPaths3(event, [
|
|
2157
|
-
{
|
|
2158
|
-
transformFn: transformRESTTimestampToSDKTimestamp2,
|
|
2159
|
-
paths: [
|
|
2160
|
-
{ path: "entity.createdDate" },
|
|
2161
|
-
{ path: "entity.updatedDate" },
|
|
2162
|
-
{ path: "entity.lastUsedDate" },
|
|
2163
|
-
{ path: "entity.media.archive.urlExpirationDate" },
|
|
2164
|
-
{ path: "entity.media.model3d.urlExpirationDate" },
|
|
2165
|
-
{ path: "metadata.eventTime" }
|
|
2166
|
-
]
|
|
2167
|
-
},
|
|
2168
|
-
{
|
|
2169
|
-
transformFn: transformRESTVideoV2ToSDKVideoV22,
|
|
2170
|
-
paths: [{ path: "entity.media.video" }]
|
|
2171
|
-
},
|
|
2172
|
-
{
|
|
2173
|
-
transformFn: transformRESTDocumentToSDKDocument2,
|
|
2174
|
-
paths: [{ path: "entity.media.document" }]
|
|
2175
|
-
},
|
|
2176
|
-
{
|
|
2177
|
-
transformFn: transformRESTImageToSDKImage2,
|
|
2178
|
-
paths: [
|
|
2179
|
-
{ path: "entity.media.image.image" },
|
|
2180
|
-
{ path: "entity.media.image.previewImage" },
|
|
2181
|
-
{ path: "entity.media.vector.image" },
|
|
2182
|
-
{ path: "entity.media.vector.previewImage" },
|
|
2183
|
-
{ path: "entity.media.model3d.thumbnail" },
|
|
2184
|
-
{ path: "entity.media.icon.image" },
|
|
2185
|
-
{ path: "entity.media.icon.previewImage" }
|
|
2186
|
-
]
|
|
2187
|
-
},
|
|
2188
|
-
{
|
|
2189
|
-
transformFn: transformRESTFloatToSDKFloat2,
|
|
2190
|
-
paths: [
|
|
2191
|
-
{ path: "entity.media.image.faces.confidence" },
|
|
2192
|
-
{ path: "entity.media.vector.faces.confidence" },
|
|
2193
|
-
{ path: "entity.media.icon.faces.confidence" }
|
|
2194
|
-
]
|
|
2195
|
-
},
|
|
2196
|
-
{
|
|
2197
|
-
transformFn: transformRESTAudioToSDKAudio2,
|
|
2198
|
-
paths: [{ path: "entity.media.audio.assets", isRepeated: true }]
|
|
2199
|
-
}
|
|
2200
|
-
])
|
|
2201
|
-
)
|
|
2202
|
-
)();
|
|
2203
2101
|
|
|
2204
2102
|
// src/media-site-media-v1-file-descriptor-files.context.ts
|
|
2205
2103
|
import { createRESTModule } from "@wix/sdk-runtime/rest-modules";
|
|
@@ -2220,18 +2118,12 @@ var generateVideoStreamingUrl4 = /* @__PURE__ */ createRESTModule(generateVideoS
|
|
|
2220
2118
|
var bulkDeleteFiles4 = /* @__PURE__ */ createRESTModule(bulkDeleteFiles3);
|
|
2221
2119
|
var bulkRestoreFilesFromTrashBin4 = /* @__PURE__ */ createRESTModule(bulkRestoreFilesFromTrashBin3);
|
|
2222
2120
|
var listDeletedFiles4 = /* @__PURE__ */ createRESTModule(listDeletedFiles3);
|
|
2223
|
-
var onFileDescriptorDeleted2 = createEventModule(
|
|
2224
|
-
onFileDescriptorDeleted
|
|
2225
|
-
);
|
|
2226
2121
|
var onFileDescriptorFileFailed2 = createEventModule(
|
|
2227
2122
|
onFileDescriptorFileFailed
|
|
2228
2123
|
);
|
|
2229
2124
|
var onFileDescriptorFileReady2 = createEventModule(
|
|
2230
2125
|
onFileDescriptorFileReady
|
|
2231
2126
|
);
|
|
2232
|
-
var onFileDescriptorUpdated2 = createEventModule(
|
|
2233
|
-
onFileDescriptorUpdated
|
|
2234
|
-
);
|
|
2235
2127
|
export {
|
|
2236
2128
|
ContentDisposition,
|
|
2237
2129
|
IdentityType,
|
|
@@ -2259,10 +2151,8 @@ export {
|
|
|
2259
2151
|
importFile4 as importFile,
|
|
2260
2152
|
listDeletedFiles4 as listDeletedFiles,
|
|
2261
2153
|
listFiles4 as listFiles,
|
|
2262
|
-
onFileDescriptorDeleted2 as onFileDescriptorDeleted,
|
|
2263
2154
|
onFileDescriptorFileFailed2 as onFileDescriptorFileFailed,
|
|
2264
2155
|
onFileDescriptorFileReady2 as onFileDescriptorFileReady,
|
|
2265
|
-
onFileDescriptorUpdated2 as onFileDescriptorUpdated,
|
|
2266
2156
|
searchFiles4 as searchFiles,
|
|
2267
2157
|
updateFileDescriptor4 as updateFileDescriptor
|
|
2268
2158
|
};
|