@eide/foir-proto-ts 0.61.0 → 0.62.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/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
5
|
|
|
6
|
-
import { CleanupOrphanedFilesRequest, CleanupOrphanedFilesResponse, ConfirmFileUploadRequest, ConfirmFileUploadResponse, CreateFileUploadRequest, CreateFileUploadResponse, DeleteFileRequest, DeleteFileResponse, GetFileRequest, GetFileResponse, GetStorageUsageRequest, GetStorageUsageResponse, ListFilesRequest, ListFilesResponse, PermanentlyDeleteFileRequest, PermanentlyDeleteFileResponse, RemoveFileUsageRequest, RemoveFileUsageResponse, RestoreFileRequest, RestoreFileResponse, TrackFileUsageRequest, TrackFileUsageResponse, UpdateFileMetadataRequest, UpdateFileMetadataResponse, UpdateFileRequest, UpdateFileResponse } from "./storage_pbjs";
|
|
6
|
+
import { CleanupOrphanedFilesRequest, CleanupOrphanedFilesResponse, ConfirmFileUploadRequest, ConfirmFileUploadResponse, CreateFileUploadRequest, CreateFileUploadResponse, DeleteFileRequest, DeleteFileResponse, GetFileRequest, GetFileResponse, GetStorageUsageRequest, GetStorageUsageResponse, ListFilesRequest, ListFilesResponse, PermanentlyDeleteFileRequest, PermanentlyDeleteFileResponse, RemoveFileUsageRequest, RemoveFileUsageResponse, RestoreFileRequest, RestoreFileResponse, RetryFileGenerationRequest, RetryFileGenerationResponse, TrackFileUsageRequest, TrackFileUsageResponse, UpdateFileMetadataRequest, UpdateFileMetadataResponse, UpdateFileRequest, UpdateFileResponse } from "./storage_pbjs";
|
|
7
7
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -139,6 +139,18 @@ export declare const StorageService: {
|
|
|
139
139
|
readonly O: typeof CleanupOrphanedFilesResponse,
|
|
140
140
|
readonly kind: MethodKind.Unary,
|
|
141
141
|
},
|
|
142
|
+
/**
|
|
143
|
+
* Re-enqueue generation of a single derived asset for a video file. Used by
|
|
144
|
+
* the admin "Retry" buttons and by the storage sweeper's recovery path.
|
|
145
|
+
*
|
|
146
|
+
* @generated from rpc storage.v1.StorageService.RetryFileGeneration
|
|
147
|
+
*/
|
|
148
|
+
readonly retryFileGeneration: {
|
|
149
|
+
readonly name: "RetryFileGeneration",
|
|
150
|
+
readonly I: typeof RetryFileGenerationRequest,
|
|
151
|
+
readonly O: typeof RetryFileGenerationResponse,
|
|
152
|
+
readonly kind: MethodKind.Unary,
|
|
153
|
+
},
|
|
142
154
|
}
|
|
143
155
|
};
|
|
144
156
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
5
|
|
|
6
|
-
import { CleanupOrphanedFilesRequest, CleanupOrphanedFilesResponse, ConfirmFileUploadRequest, ConfirmFileUploadResponse, CreateFileUploadRequest, CreateFileUploadResponse, DeleteFileRequest, DeleteFileResponse, GetFileRequest, GetFileResponse, GetStorageUsageRequest, GetStorageUsageResponse, ListFilesRequest, ListFilesResponse, PermanentlyDeleteFileRequest, PermanentlyDeleteFileResponse, RemoveFileUsageRequest, RemoveFileUsageResponse, RestoreFileRequest, RestoreFileResponse, TrackFileUsageRequest, TrackFileUsageResponse, UpdateFileMetadataRequest, UpdateFileMetadataResponse, UpdateFileRequest, UpdateFileResponse } from "./storage_pbjs";
|
|
6
|
+
import { CleanupOrphanedFilesRequest, CleanupOrphanedFilesResponse, ConfirmFileUploadRequest, ConfirmFileUploadResponse, CreateFileUploadRequest, CreateFileUploadResponse, DeleteFileRequest, DeleteFileResponse, GetFileRequest, GetFileResponse, GetStorageUsageRequest, GetStorageUsageResponse, ListFilesRequest, ListFilesResponse, PermanentlyDeleteFileRequest, PermanentlyDeleteFileResponse, RemoveFileUsageRequest, RemoveFileUsageResponse, RestoreFileRequest, RestoreFileResponse, RetryFileGenerationRequest, RetryFileGenerationResponse, TrackFileUsageRequest, TrackFileUsageResponse, UpdateFileMetadataRequest, UpdateFileMetadataResponse, UpdateFileRequest, UpdateFileResponse } from "./storage_pbjs";
|
|
7
7
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -139,6 +139,18 @@ export const StorageService = {
|
|
|
139
139
|
O: CleanupOrphanedFilesResponse,
|
|
140
140
|
kind: MethodKind.Unary,
|
|
141
141
|
},
|
|
142
|
+
/**
|
|
143
|
+
* Re-enqueue generation of a single derived asset for a video file. Used by
|
|
144
|
+
* the admin "Retry" buttons and by the storage sweeper's recovery path.
|
|
145
|
+
*
|
|
146
|
+
* @generated from rpc storage.v1.StorageService.RetryFileGeneration
|
|
147
|
+
*/
|
|
148
|
+
retryFileGeneration: {
|
|
149
|
+
name: "RetryFileGeneration",
|
|
150
|
+
I: RetryFileGenerationRequest,
|
|
151
|
+
O: RetryFileGenerationResponse,
|
|
152
|
+
kind: MethodKind.Unary,
|
|
153
|
+
},
|
|
142
154
|
}
|
|
143
155
|
};
|
|
144
156
|
|
|
@@ -167,6 +167,68 @@ export declare type File = Message<"storage.v1.File"> & {
|
|
|
167
167
|
* @generated from field: optional google.protobuf.Timestamp deleted_at = 62;
|
|
168
168
|
*/
|
|
169
169
|
deletedAt?: Timestamp | undefined;
|
|
170
|
+
|
|
171
|
+
/**
|
|
172
|
+
* Per-asset processing status (videos only; SKIPPED for non-video files).
|
|
173
|
+
*
|
|
174
|
+
* @generated from field: storage.v1.FileStatus thumbnail_status = 70;
|
|
175
|
+
*/
|
|
176
|
+
thumbnailStatus: FileStatus;
|
|
177
|
+
|
|
178
|
+
/**
|
|
179
|
+
* @generated from field: int32 thumbnail_attempts = 71;
|
|
180
|
+
*/
|
|
181
|
+
thumbnailAttempts: number;
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* @generated from field: optional google.protobuf.Timestamp thumbnail_last_attempt_at = 72;
|
|
185
|
+
*/
|
|
186
|
+
thumbnailLastAttemptAt?: Timestamp | undefined;
|
|
187
|
+
|
|
188
|
+
/**
|
|
189
|
+
* @generated from field: optional string thumbnail_last_error = 73;
|
|
190
|
+
*/
|
|
191
|
+
thumbnailLastError?: string | undefined;
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* @generated from field: storage.v1.FileStatus preview_status = 74;
|
|
195
|
+
*/
|
|
196
|
+
previewStatus: FileStatus;
|
|
197
|
+
|
|
198
|
+
/**
|
|
199
|
+
* @generated from field: int32 preview_attempts = 75;
|
|
200
|
+
*/
|
|
201
|
+
previewAttempts: number;
|
|
202
|
+
|
|
203
|
+
/**
|
|
204
|
+
* @generated from field: optional google.protobuf.Timestamp preview_last_attempt_at = 76;
|
|
205
|
+
*/
|
|
206
|
+
previewLastAttemptAt?: Timestamp | undefined;
|
|
207
|
+
|
|
208
|
+
/**
|
|
209
|
+
* @generated from field: optional string preview_last_error = 77;
|
|
210
|
+
*/
|
|
211
|
+
previewLastError?: string | undefined;
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* @generated from field: storage.v1.FileStatus hls_status = 78;
|
|
215
|
+
*/
|
|
216
|
+
hlsStatus: FileStatus;
|
|
217
|
+
|
|
218
|
+
/**
|
|
219
|
+
* @generated from field: int32 hls_attempts = 79;
|
|
220
|
+
*/
|
|
221
|
+
hlsAttempts: number;
|
|
222
|
+
|
|
223
|
+
/**
|
|
224
|
+
* @generated from field: optional google.protobuf.Timestamp hls_last_attempt_at = 80;
|
|
225
|
+
*/
|
|
226
|
+
hlsLastAttemptAt?: Timestamp | undefined;
|
|
227
|
+
|
|
228
|
+
/**
|
|
229
|
+
* @generated from field: optional string hls_last_error = 81;
|
|
230
|
+
*/
|
|
231
|
+
hlsLastError?: string | undefined;
|
|
170
232
|
};
|
|
171
233
|
|
|
172
234
|
/**
|
|
@@ -748,6 +810,43 @@ export declare type CleanupOrphanedFilesResponse = Message<"storage.v1.CleanupOr
|
|
|
748
810
|
*/
|
|
749
811
|
export declare const CleanupOrphanedFilesResponseSchema: GenMessage<CleanupOrphanedFilesResponse>;
|
|
750
812
|
|
|
813
|
+
/**
|
|
814
|
+
* @generated from message storage.v1.RetryFileGenerationRequest
|
|
815
|
+
*/
|
|
816
|
+
export declare type RetryFileGenerationRequest = Message<"storage.v1.RetryFileGenerationRequest"> & {
|
|
817
|
+
/**
|
|
818
|
+
* @generated from field: string file_id = 1;
|
|
819
|
+
*/
|
|
820
|
+
fileId: string;
|
|
821
|
+
|
|
822
|
+
/**
|
|
823
|
+
* @generated from field: storage.v1.FileAssetKind asset = 2;
|
|
824
|
+
*/
|
|
825
|
+
asset: FileAssetKind;
|
|
826
|
+
};
|
|
827
|
+
|
|
828
|
+
/**
|
|
829
|
+
* Describes the message storage.v1.RetryFileGenerationRequest.
|
|
830
|
+
* Use `create(RetryFileGenerationRequestSchema)` to create a new message.
|
|
831
|
+
*/
|
|
832
|
+
export declare const RetryFileGenerationRequestSchema: GenMessage<RetryFileGenerationRequest>;
|
|
833
|
+
|
|
834
|
+
/**
|
|
835
|
+
* @generated from message storage.v1.RetryFileGenerationResponse
|
|
836
|
+
*/
|
|
837
|
+
export declare type RetryFileGenerationResponse = Message<"storage.v1.RetryFileGenerationResponse"> & {
|
|
838
|
+
/**
|
|
839
|
+
* @generated from field: storage.v1.File file = 1;
|
|
840
|
+
*/
|
|
841
|
+
file?: File | undefined;
|
|
842
|
+
};
|
|
843
|
+
|
|
844
|
+
/**
|
|
845
|
+
* Describes the message storage.v1.RetryFileGenerationResponse.
|
|
846
|
+
* Use `create(RetryFileGenerationResponseSchema)` to create a new message.
|
|
847
|
+
*/
|
|
848
|
+
export declare const RetryFileGenerationResponseSchema: GenMessage<RetryFileGenerationResponse>;
|
|
849
|
+
|
|
751
850
|
/**
|
|
752
851
|
* @generated from enum storage.v1.FileStatus
|
|
753
852
|
*/
|
|
@@ -776,6 +875,15 @@ export enum FileStatus {
|
|
|
776
875
|
* @generated from enum value: FILE_STATUS_FAILED = 4;
|
|
777
876
|
*/
|
|
778
877
|
FAILED = 4,
|
|
878
|
+
|
|
879
|
+
/**
|
|
880
|
+
* SKIPPED means the asset is not applicable for this file (e.g. HLS for a
|
|
881
|
+
* non-video, or HLS for a tenant without a paid subscription). The sweeper
|
|
882
|
+
* ignores SKIPPED rows.
|
|
883
|
+
*
|
|
884
|
+
* @generated from enum value: FILE_STATUS_SKIPPED = 5;
|
|
885
|
+
*/
|
|
886
|
+
SKIPPED = 5,
|
|
779
887
|
}
|
|
780
888
|
|
|
781
889
|
/**
|
|
@@ -808,6 +916,39 @@ export enum FileSource {
|
|
|
808
916
|
*/
|
|
809
917
|
export declare const FileSourceSchema: GenEnum<FileSource>;
|
|
810
918
|
|
|
919
|
+
/**
|
|
920
|
+
* FileAssetKind identifies a derived asset for a video file. Used by
|
|
921
|
+
* RetryFileGeneration to target a specific output.
|
|
922
|
+
*
|
|
923
|
+
* @generated from enum storage.v1.FileAssetKind
|
|
924
|
+
*/
|
|
925
|
+
export enum FileAssetKind {
|
|
926
|
+
/**
|
|
927
|
+
* @generated from enum value: FILE_ASSET_KIND_UNSPECIFIED = 0;
|
|
928
|
+
*/
|
|
929
|
+
UNSPECIFIED = 0,
|
|
930
|
+
|
|
931
|
+
/**
|
|
932
|
+
* @generated from enum value: FILE_ASSET_KIND_THUMBNAIL = 1;
|
|
933
|
+
*/
|
|
934
|
+
THUMBNAIL = 1,
|
|
935
|
+
|
|
936
|
+
/**
|
|
937
|
+
* @generated from enum value: FILE_ASSET_KIND_PREVIEW = 2;
|
|
938
|
+
*/
|
|
939
|
+
PREVIEW = 2,
|
|
940
|
+
|
|
941
|
+
/**
|
|
942
|
+
* @generated from enum value: FILE_ASSET_KIND_HLS = 3;
|
|
943
|
+
*/
|
|
944
|
+
HLS = 3,
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
/**
|
|
948
|
+
* Describes the enum storage.v1.FileAssetKind.
|
|
949
|
+
*/
|
|
950
|
+
export declare const FileAssetKindSchema: GenEnum<FileAssetKind>;
|
|
951
|
+
|
|
811
952
|
/**
|
|
812
953
|
* @generated from service storage.v1.StorageService
|
|
813
954
|
*/
|
|
@@ -926,5 +1067,16 @@ export declare const StorageService: GenService<{
|
|
|
926
1067
|
input: typeof CleanupOrphanedFilesRequestSchema;
|
|
927
1068
|
output: typeof CleanupOrphanedFilesResponseSchema;
|
|
928
1069
|
},
|
|
1070
|
+
/**
|
|
1071
|
+
* Re-enqueue generation of a single derived asset for a video file. Used by
|
|
1072
|
+
* the admin "Retry" buttons and by the storage sweeper's recovery path.
|
|
1073
|
+
*
|
|
1074
|
+
* @generated from rpc storage.v1.StorageService.RetryFileGeneration
|
|
1075
|
+
*/
|
|
1076
|
+
retryFileGeneration: {
|
|
1077
|
+
methodKind: "unary";
|
|
1078
|
+
input: typeof RetryFileGenerationRequestSchema;
|
|
1079
|
+
output: typeof RetryFileGenerationResponseSchema;
|
|
1080
|
+
},
|
|
929
1081
|
}>;
|
|
930
1082
|
|
|
@@ -9,7 +9,7 @@ import { file_google_protobuf_struct, file_google_protobuf_timestamp } from "@bu
|
|
|
9
9
|
* Describes the file storage/v1/storage.proto.
|
|
10
10
|
*/
|
|
11
11
|
export const file_storage_v1_storage = /*@__PURE__*/
|
|
12
|
-
fileDesc("
|
|
12
|
+
fileDesc("ChhzdG9yYWdlL3YxL3N0b3JhZ2UucHJvdG8SCnN0b3JhZ2UudjEigg4KBEZpbGUSCgoCaWQYASABKAkSEAoIZmlsZW5hbWUYAiABKAkSEQoJbWltZV90eXBlGAMgASgJEgwKBHNpemUYBCABKAMSCwoDdXJsGAUgASgJEhMKC3N0b3JhZ2Vfa2V5GAYgASgJEiYKBnNvdXJjZRgHIAEoDjIWLnN0b3JhZ2UudjEuRmlsZVNvdXJjZRImCgZzdGF0dXMYCCABKA4yFi5zdG9yYWdlLnYxLkZpbGVTdGF0dXMSEwoGZm9sZGVyGAkgASgJSACIAQESDAoEdGFncxgKIAMoCRIpCghtZXRhZGF0YRgLIAEoCzIXLmdvb2dsZS5wcm90b2J1Zi5TdHJ1Y3QSEgoFd2lkdGgYFCABKAVIAYgBARITCgZoZWlnaHQYFSABKAVIAogBARIVCghibHVyaGFzaBgWIAEoCUgDiAEBEhsKDmRvbWluYW50X2NvbG9yGBcgASgJSASIAQESFQoIZHVyYXRpb24YGCABKAFIBYgBARIaCg10aHVtYm5haWxfdXJsGBkgASgJSAaIAQESGAoLcHJldmlld191cmwYGiABKAlIB4gBARIdChBobHNfbWFuaWZlc3RfdXJsGBsgASgJSAiIAQESFQoIYWx0X3RleHQYHCABKAlICYgBARIUCgdjYXB0aW9uGB0gASgJSAqIAQESGAoLZGVzY3JpcHRpb24YHiABKAlIC4gBARI4Cg11c2FnZV9ieV90eXBlGCggAygLMiEuc3RvcmFnZS52MS5GaWxlLlVzYWdlQnlUeXBlRW50cnkSNQoMbGFzdF91c2VkX2F0GCkgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEgMiAEBEhcKCmNyZWF0ZWRfYnkYMiABKAlIDYgBARIYCgtjdXN0b21lcl9pZBgzIAEoCUgOiAEBEi4KCmNyZWF0ZWRfYXQYPCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEi4KCnVwZGF0ZWRfYXQYPSABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEjMKCmRlbGV0ZWRfYXQYPiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wSA+IAQESMAoQdGh1bWJuYWlsX3N0YXR1cxhGIAEoDjIWLnN0b3JhZ2UudjEuRmlsZVN0YXR1cxIaChJ0aHVtYm5haWxfYXR0ZW1wdHMYRyABKAUSQgoZdGh1bWJuYWlsX2xhc3RfYXR0ZW1wdF9hdBhIIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXBIEIgBARIhChR0aHVtYm5haWxfbGFzdF9lcnJvchhJIAEoCUgRiAEBEi4KDnByZXZpZXdfc3RhdHVzGEogASgOMhYuc3RvcmFnZS52MS5GaWxlU3RhdHVzEhgKEHByZXZpZXdfYXR0ZW1wdHMYSyABKAUSQAoXcHJldmlld19sYXN0X2F0dGVtcHRfYXQYTCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wSBKIAQESHwoScHJldmlld19sYXN0X2Vycm9yGE0gASgJSBOIAQESKgoKaGxzX3N0YXR1cxhOIAEoDjIWLnN0b3JhZ2UudjEuRmlsZVN0YXR1cxIUCgxobHNfYXR0ZW1wdHMYTyABKAUSPAoTaGxzX2xhc3RfYXR0ZW1wdF9hdBhQIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXBIFIgBARIbCg5obHNfbGFzdF9lcnJvchhRIAEoCUgViAEBGjIKEFVzYWdlQnlUeXBlRW50cnkSCwoDa2V5GAEgASgJEg0KBXZhbHVlGAIgASgFOgI4AUIJCgdfZm9sZGVyQggKBl93aWR0aEIJCgdfaGVpZ2h0QgsKCV9ibHVyaGFzaEIRCg9fZG9taW5hbnRfY29sb3JCCwoJX2R1cmF0aW9uQhAKDl90aHVtYm5haWxfdXJsQg4KDF9wcmV2aWV3X3VybEITChFfaGxzX21hbmlmZXN0X3VybEILCglfYWx0X3RleHRCCgoIX2NhcHRpb25CDgoMX2Rlc2NyaXB0aW9uQg8KDV9sYXN0X3VzZWRfYXRCDQoLX2NyZWF0ZWRfYnlCDgoMX2N1c3RvbWVyX2lkQg0KC19kZWxldGVkX2F0QhwKGl90aHVtYm5haWxfbGFzdF9hdHRlbXB0X2F0QhcKFV90aHVtYm5haWxfbGFzdF9lcnJvckIaChhfcHJldmlld19sYXN0X2F0dGVtcHRfYXRCFQoTX3ByZXZpZXdfbGFzdF9lcnJvckIWChRfaGxzX2xhc3RfYXR0ZW1wdF9hdEIRCg9faGxzX2xhc3RfZXJyb3IiOAoMU3RvcmFnZVVzYWdlEhMKC3RvdGFsX2ZpbGVzGAEgASgFEhMKC3RvdGFsX2J5dGVzGAIgASgDIqkBChdDcmVhdGVGaWxlVXBsb2FkUmVxdWVzdBIQCghmaWxlbmFtZRgBIAEoCRIRCgltaW1lX3R5cGUYAiABKAkSDAoEc2l6ZRgDIAEoAxITCgZmb2xkZXIYBCABKAlIAIgBARIuCghtZXRhZGF0YRgFIAEoCzIXLmdvb2dsZS5wcm90b2J1Zi5TdHJ1Y3RIAYgBAUIJCgdfZm9sZGVyQgsKCV9tZXRhZGF0YSKGAQoYQ3JlYXRlRmlsZVVwbG9hZFJlc3BvbnNlEhEKCXVwbG9hZF9pZBgBIAEoCRISCgp1cGxvYWRfdXJsGAIgASgJEhMKC3N0b3JhZ2Vfa2V5GAMgASgJEi4KCmV4cGlyZXNfYXQYBCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wIi0KGENvbmZpcm1GaWxlVXBsb2FkUmVxdWVzdBIRCgl1cGxvYWRfaWQYASABKAkiOwoZQ29uZmlybUZpbGVVcGxvYWRSZXNwb25zZRIeCgRmaWxlGAEgASgLMhAuc3RvcmFnZS52MS5GaWxlIhwKDkdldEZpbGVSZXF1ZXN0EgoKAmlkGAEgASgJIjEKD0dldEZpbGVSZXNwb25zZRIeCgRmaWxlGAEgASgLMhAuc3RvcmFnZS52MS5GaWxlIugBChBMaXN0RmlsZXNSZXF1ZXN0EhMKBmZvbGRlchgBIAEoCUgAiAEBEhYKCW1pbWVfdHlwZRgCIAEoCUgBiAEBEisKBnN0YXR1cxgDIAEoDjIWLnN0b3JhZ2UudjEuRmlsZVN0YXR1c0gCiAEBEhMKBnNlYXJjaBgEIAEoCUgDiAEBEhcKD2luY2x1ZGVfZGVsZXRlZBgFIAEoCBINCgVsaW1pdBgGIAEoBRIOCgZvZmZzZXQYByABKAVCCQoHX2ZvbGRlckIMCgpfbWltZV90eXBlQgkKB19zdGF0dXNCCQoHX3NlYXJjaCJDChFMaXN0RmlsZXNSZXNwb25zZRIfCgVpdGVtcxgBIAMoCzIQLnN0b3JhZ2UudjEuRmlsZRINCgV0b3RhbBgCIAEoBSIYChZHZXRTdG9yYWdlVXNhZ2VSZXF1ZXN0IkIKF0dldFN0b3JhZ2VVc2FnZVJlc3BvbnNlEicKBXVzYWdlGAEgASgLMhguc3RvcmFnZS52MS5TdG9yYWdlVXNhZ2Ui5gEKEVVwZGF0ZUZpbGVSZXF1ZXN0EgoKAmlkGAEgASgJEhUKCGZpbGVuYW1lGAIgASgJSACIAQESEwoGZm9sZGVyGAMgASgJSAGIAQESDAoEdGFncxgEIAMoCRIrCgZzdGF0dXMYBSABKA4yFi5zdG9yYWdlLnYxLkZpbGVTdGF0dXNIAogBARIuCghtZXRhZGF0YRgGIAEoCzIXLmdvb2dsZS5wcm90b2J1Zi5TdHJ1Y3RIA4gBAUILCglfZmlsZW5hbWVCCQoHX2ZvbGRlckIJCgdfc3RhdHVzQgsKCV9tZXRhZGF0YSI0ChJVcGRhdGVGaWxlUmVzcG9uc2USHgoEZmlsZRgBIAEoCzIQLnN0b3JhZ2UudjEuRmlsZSKXAQoZVXBkYXRlRmlsZU1ldGFkYXRhUmVxdWVzdBIKCgJpZBgBIAEoCRIVCghhbHRfdGV4dBgCIAEoCUgAiAEBEhQKB2NhcHRpb24YAyABKAlIAYgBARIYCgtkZXNjcmlwdGlvbhgEIAEoCUgCiAEBQgsKCV9hbHRfdGV4dEIKCghfY2FwdGlvbkIOCgxfZGVzY3JpcHRpb24iPAoaVXBkYXRlRmlsZU1ldGFkYXRhUmVzcG9uc2USHgoEZmlsZRgBIAEoCzIQLnN0b3JhZ2UudjEuRmlsZSIfChFEZWxldGVGaWxlUmVxdWVzdBIKCgJpZBgBIAEoCSIlChJEZWxldGVGaWxlUmVzcG9uc2USDwoHc3VjY2VzcxgBIAEoCCIqChxQZXJtYW5lbnRseURlbGV0ZUZpbGVSZXF1ZXN0EgoKAmlkGAEgASgJIjAKHVBlcm1hbmVudGx5RGVsZXRlRmlsZVJlc3BvbnNlEg8KB3N1Y2Nlc3MYASABKAgiIAoSUmVzdG9yZUZpbGVSZXF1ZXN0EgoKAmlkGAEgASgJIjUKE1Jlc3RvcmVGaWxlUmVzcG9uc2USHgoEZmlsZRgBIAEoCzIQLnN0b3JhZ2UudjEuRmlsZSI9ChVUcmFja0ZpbGVVc2FnZVJlcXVlc3QSDwoHZmlsZV9pZBgBIAEoCRITCgtlbnRpdHlfdHlwZRgCIAEoCSI4ChZUcmFja0ZpbGVVc2FnZVJlc3BvbnNlEh4KBGZpbGUYASABKAsyEC5zdG9yYWdlLnYxLkZpbGUiPgoWUmVtb3ZlRmlsZVVzYWdlUmVxdWVzdBIPCgdmaWxlX2lkGAEgASgJEhMKC2VudGl0eV90eXBlGAIgASgJIioKF1JlbW92ZUZpbGVVc2FnZVJlc3BvbnNlEg8KB3N1Y2Nlc3MYASABKAgiXAobQ2xlYW51cE9ycGhhbmVkRmlsZXNSZXF1ZXN0Eh0KFW9ycGhhbl90aHJlc2hvbGRfZGF5cxgBIAEoBRIPCgdkcnlfcnVuGAIgASgIEg0KBWxpbWl0GAMgASgFIlUKHENsZWFudXBPcnBoYW5lZEZpbGVzUmVzcG9uc2USDwoHZGVsZXRlZBgBIAEoBRITCgtmcmVlZF9ieXRlcxgCIAEoAxIPCgdkcnlfcnVuGAMgASgIIlcKGlJldHJ5RmlsZUdlbmVyYXRpb25SZXF1ZXN0Eg8KB2ZpbGVfaWQYASABKAkSKAoFYXNzZXQYAiABKA4yGS5zdG9yYWdlLnYxLkZpbGVBc3NldEtpbmQiPQobUmV0cnlGaWxlR2VuZXJhdGlvblJlc3BvbnNlEh4KBGZpbGUYASABKAsyEC5zdG9yYWdlLnYxLkZpbGUqpgEKCkZpbGVTdGF0dXMSGwoXRklMRV9TVEFUVVNfVU5TUEVDSUZJRUQQABIXChNGSUxFX1NUQVRVU19QRU5ESU5HEAESGgoWRklMRV9TVEFUVVNfUFJPQ0VTU0lORxACEhUKEUZJTEVfU1RBVFVTX1JFQURZEAMSFgoSRklMRV9TVEFUVVNfRkFJTEVEEAQSFwoTRklMRV9TVEFUVVNfU0tJUFBFRBAFKl0KCkZpbGVTb3VyY2USGwoXRklMRV9TT1VSQ0VfVU5TUEVDSUZJRUQQABIYChRGSUxFX1NPVVJDRV9JTlRFUk5BTBABEhgKFEZJTEVfU09VUkNFX0VYVEVSTkFMEAIqhQEKDUZpbGVBc3NldEtpbmQSHwobRklMRV9BU1NFVF9LSU5EX1VOU1BFQ0lGSUVEEAASHQoZRklMRV9BU1NFVF9LSU5EX1RIVU1CTkFJTBABEhsKF0ZJTEVfQVNTRVRfS0lORF9QUkVWSUVXEAISFwoTRklMRV9BU1NFVF9LSU5EX0hMUxADMoAKCg5TdG9yYWdlU2VydmljZRJdChBDcmVhdGVGaWxlVXBsb2FkEiMuc3RvcmFnZS52MS5DcmVhdGVGaWxlVXBsb2FkUmVxdWVzdBokLnN0b3JhZ2UudjEuQ3JlYXRlRmlsZVVwbG9hZFJlc3BvbnNlEmAKEUNvbmZpcm1GaWxlVXBsb2FkEiQuc3RvcmFnZS52MS5Db25maXJtRmlsZVVwbG9hZFJlcXVlc3QaJS5zdG9yYWdlLnYxLkNvbmZpcm1GaWxlVXBsb2FkUmVzcG9uc2USQgoHR2V0RmlsZRIaLnN0b3JhZ2UudjEuR2V0RmlsZVJlcXVlc3QaGy5zdG9yYWdlLnYxLkdldEZpbGVSZXNwb25zZRJICglMaXN0RmlsZXMSHC5zdG9yYWdlLnYxLkxpc3RGaWxlc1JlcXVlc3QaHS5zdG9yYWdlLnYxLkxpc3RGaWxlc1Jlc3BvbnNlEloKD0dldFN0b3JhZ2VVc2FnZRIiLnN0b3JhZ2UudjEuR2V0U3RvcmFnZVVzYWdlUmVxdWVzdBojLnN0b3JhZ2UudjEuR2V0U3RvcmFnZVVzYWdlUmVzcG9uc2USSwoKVXBkYXRlRmlsZRIdLnN0b3JhZ2UudjEuVXBkYXRlRmlsZVJlcXVlc3QaHi5zdG9yYWdlLnYxLlVwZGF0ZUZpbGVSZXNwb25zZRJjChJVcGRhdGVGaWxlTWV0YWRhdGESJS5zdG9yYWdlLnYxLlVwZGF0ZUZpbGVNZXRhZGF0YVJlcXVlc3QaJi5zdG9yYWdlLnYxLlVwZGF0ZUZpbGVNZXRhZGF0YVJlc3BvbnNlEksKCkRlbGV0ZUZpbGUSHS5zdG9yYWdlLnYxLkRlbGV0ZUZpbGVSZXF1ZXN0Gh4uc3RvcmFnZS52MS5EZWxldGVGaWxlUmVzcG9uc2USbAoVUGVybWFuZW50bHlEZWxldGVGaWxlEiguc3RvcmFnZS52MS5QZXJtYW5lbnRseURlbGV0ZUZpbGVSZXF1ZXN0Gikuc3RvcmFnZS52MS5QZXJtYW5lbnRseURlbGV0ZUZpbGVSZXNwb25zZRJOCgtSZXN0b3JlRmlsZRIeLnN0b3JhZ2UudjEuUmVzdG9yZUZpbGVSZXF1ZXN0Gh8uc3RvcmFnZS52MS5SZXN0b3JlRmlsZVJlc3BvbnNlElcKDlRyYWNrRmlsZVVzYWdlEiEuc3RvcmFnZS52MS5UcmFja0ZpbGVVc2FnZVJlcXVlc3QaIi5zdG9yYWdlLnYxLlRyYWNrRmlsZVVzYWdlUmVzcG9uc2USWgoPUmVtb3ZlRmlsZVVzYWdlEiIuc3RvcmFnZS52MS5SZW1vdmVGaWxlVXNhZ2VSZXF1ZXN0GiMuc3RvcmFnZS52MS5SZW1vdmVGaWxlVXNhZ2VSZXNwb25zZRJpChRDbGVhbnVwT3JwaGFuZWRGaWxlcxInLnN0b3JhZ2UudjEuQ2xlYW51cE9ycGhhbmVkRmlsZXNSZXF1ZXN0Giguc3RvcmFnZS52MS5DbGVhbnVwT3JwaGFuZWRGaWxlc1Jlc3BvbnNlEmYKE1JldHJ5RmlsZUdlbmVyYXRpb24SJi5zdG9yYWdlLnYxLlJldHJ5RmlsZUdlbmVyYXRpb25SZXF1ZXN0Gicuc3RvcmFnZS52MS5SZXRyeUZpbGVHZW5lcmF0aW9uUmVzcG9uc2VCO1o5Z2l0aHViLmNvbS9laWRlc3R1ZGlvL2ZvaXIvZ2VuL3Byb3RvL3N0b3JhZ2UvdjE7c3RvcmFnZXYxYgZwcm90bzM", [file_google_protobuf_struct, file_google_protobuf_timestamp]);
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
15
|
* Describes the message storage.v1.File.
|
|
@@ -207,6 +207,20 @@ export const CleanupOrphanedFilesRequestSchema = /*@__PURE__*/
|
|
|
207
207
|
export const CleanupOrphanedFilesResponseSchema = /*@__PURE__*/
|
|
208
208
|
messageDesc(file_storage_v1_storage, 27);
|
|
209
209
|
|
|
210
|
+
/**
|
|
211
|
+
* Describes the message storage.v1.RetryFileGenerationRequest.
|
|
212
|
+
* Use `create(RetryFileGenerationRequestSchema)` to create a new message.
|
|
213
|
+
*/
|
|
214
|
+
export const RetryFileGenerationRequestSchema = /*@__PURE__*/
|
|
215
|
+
messageDesc(file_storage_v1_storage, 28);
|
|
216
|
+
|
|
217
|
+
/**
|
|
218
|
+
* Describes the message storage.v1.RetryFileGenerationResponse.
|
|
219
|
+
* Use `create(RetryFileGenerationResponseSchema)` to create a new message.
|
|
220
|
+
*/
|
|
221
|
+
export const RetryFileGenerationResponseSchema = /*@__PURE__*/
|
|
222
|
+
messageDesc(file_storage_v1_storage, 29);
|
|
223
|
+
|
|
210
224
|
/**
|
|
211
225
|
* Describes the enum storage.v1.FileStatus.
|
|
212
226
|
*/
|
|
@@ -231,6 +245,21 @@ export const FileSourceSchema = /*@__PURE__*/
|
|
|
231
245
|
export const FileSource = /*@__PURE__*/
|
|
232
246
|
tsEnum(FileSourceSchema);
|
|
233
247
|
|
|
248
|
+
/**
|
|
249
|
+
* Describes the enum storage.v1.FileAssetKind.
|
|
250
|
+
*/
|
|
251
|
+
export const FileAssetKindSchema = /*@__PURE__*/
|
|
252
|
+
enumDesc(file_storage_v1_storage, 2);
|
|
253
|
+
|
|
254
|
+
/**
|
|
255
|
+
* FileAssetKind identifies a derived asset for a video file. Used by
|
|
256
|
+
* RetryFileGeneration to target a specific output.
|
|
257
|
+
*
|
|
258
|
+
* @generated from enum storage.v1.FileAssetKind
|
|
259
|
+
*/
|
|
260
|
+
export const FileAssetKind = /*@__PURE__*/
|
|
261
|
+
tsEnum(FileAssetKindSchema);
|
|
262
|
+
|
|
234
263
|
/**
|
|
235
264
|
* @generated from service storage.v1.StorageService
|
|
236
265
|
*/
|