@kudo.io/artworker-grpc-client-ts 2.0.284 → 2.0.285
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/lib/artworking/v1/artwork_pb.d.ts +0 -118
- package/lib/artworking/v1/artwork_pb.js +0 -111
- package/lib/artworking/v1/artwork_pb.js.map +1 -1
- package/lib/artworking/v1/fileconversion_pb.d.ts +0 -33
- package/lib/artworking/v1/fileconversion_pb.js +1 -48
- package/lib/artworking/v1/fileconversion_pb.js.map +1 -1
- package/lib/artworking/v1/fixup_pb.d.ts +0 -33
- package/lib/artworking/v1/fixup_pb.js +1 -48
- package/lib/artworking/v1/fixup_pb.js.map +1 -1
- package/lib/artworking/v1/imagetask_pb.d.ts +28 -7
- package/lib/artworking/v1/imagetask_pb.js +20 -7
- package/lib/artworking/v1/imagetask_pb.js.map +1 -1
- package/lib/artworking/v1/vectorisation_pb.d.ts +78 -0
- package/lib/artworking/v1/vectorisation_pb.js +143 -0
- package/lib/artworking/v1/vectorisation_pb.js.map +1 -0
- package/lib/preflight/v2/00-preflight_service_connectweb.d.ts +86 -0
- package/lib/preflight/v2/00-preflight_service_connectweb.js +86 -0
- package/lib/preflight/v2/00-preflight_service_connectweb.js.map +1 -1
- package/lib/preflight/v2/config_pb.d.ts +11 -0
- package/lib/preflight/v2/config_pb.js +3 -0
- package/lib/preflight/v2/config_pb.js.map +1 -1
- package/lib/timeline/v1/file-timeline_pb.d.ts +7 -7
- package/lib/timeline/v1/file-timeline_pb.js +4 -3
- package/lib/timeline/v1/file-timeline_pb.js.map +1 -1
- package/lib/timeline/v1/fixup_pb.d.ts +0 -76
- package/lib/timeline/v1/fixup_pb.js +1 -99
- package/lib/timeline/v1/fixup_pb.js.map +1 -1
- package/lib/timeline/v1/timeline_pb.d.ts +7 -7
- package/lib/timeline/v1/timeline_pb.js +4 -3
- package/lib/timeline/v1/timeline_pb.js.map +1 -1
- package/package.json +1 -1
- package/src/artworking/v1/artwork_pb.ts +0 -156
- package/src/artworking/v1/fileconversion_pb.ts +1 -62
- package/src/artworking/v1/fixup_pb.ts +1 -62
- package/src/artworking/v1/imagetask_pb.ts +37 -10
- package/src/artworking/v1/vectorisation_pb.ts +168 -0
- package/src/preflight/v2/00-preflight_service_connectweb.ts +86 -0
- package/src/preflight/v2/config_pb.ts +15 -0
- package/src/timeline/v1/file-timeline_pb.ts +8 -10
- package/src/timeline/v1/fixup_pb.ts +1 -137
- package/src/timeline/v1/timeline_pb.ts +8 -10
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
2
2
|
import { Message, proto3, Timestamp } from "@bufbuild/protobuf";
|
|
3
3
|
import { Media } from "../../media/v1/media_pb.js";
|
|
4
|
-
import { FixupAction } from "./fixup_pb.js";
|
|
5
|
-
import { ConversionAction } from "./fileconversion_pb.js";
|
|
6
4
|
import { ImageTaskAction } from "./imagetask_pb.js";
|
|
7
5
|
import { PreflightResult } from "../../common/v1/preflight-warning_pb.js";
|
|
8
6
|
import { EmailStatus } from "../../common/v1/email_pb.js";
|
|
@@ -260,36 +258,6 @@ export declare enum ArtworkItemState {
|
|
|
260
258
|
* @generated from enum value: ARTWORK_ITEM_STATE_ARCHIVED = 8;
|
|
261
259
|
*/
|
|
262
260
|
ARCHIVED = 8,
|
|
263
|
-
/**
|
|
264
|
-
* file fix-up in progress
|
|
265
|
-
*
|
|
266
|
-
* @generated from enum value: ARTWORK_ITEM_STATE_FIXUP_IN_PROGRESS = 9;
|
|
267
|
-
*/
|
|
268
|
-
FIXUP_IN_PROGRESS = 9,
|
|
269
|
-
/**
|
|
270
|
-
* file fix-up has failed
|
|
271
|
-
*
|
|
272
|
-
* @generated from enum value: ARTWORK_ITEM_STATE_FIXUP_FAILED = 10;
|
|
273
|
-
*/
|
|
274
|
-
FIXUP_FAILED = 10,
|
|
275
|
-
/**
|
|
276
|
-
* file fix-up is complete and is pending review
|
|
277
|
-
*
|
|
278
|
-
* @generated from enum value: ARTWORK_ITEM_STATE_FIXUP_PENDING_REVIEW = 11;
|
|
279
|
-
*/
|
|
280
|
-
FIXUP_PENDING_REVIEW = 11,
|
|
281
|
-
/**
|
|
282
|
-
* file conversion in progress
|
|
283
|
-
*
|
|
284
|
-
* @generated from enum value: ARTWORK_ITEM_STATE_CONVERSION_IN_PROGRESS = 12;
|
|
285
|
-
*/
|
|
286
|
-
CONVERSION_IN_PROGRESS = 12,
|
|
287
|
-
/**
|
|
288
|
-
* file conversion has failed
|
|
289
|
-
*
|
|
290
|
-
* @generated from enum value: ARTWORK_ITEM_STATE_CONVERSION_FAILED = 13;
|
|
291
|
-
*/
|
|
292
|
-
CONVERSION_FAILED = 13,
|
|
293
261
|
/**
|
|
294
262
|
* image task in progress
|
|
295
263
|
*
|
|
@@ -393,66 +361,6 @@ export declare enum FileActionType {
|
|
|
393
361
|
* @generated from enum value: FILE_ACTION_REPLACE = 12;
|
|
394
362
|
*/
|
|
395
363
|
FILE_ACTION_REPLACE = 12,
|
|
396
|
-
/**
|
|
397
|
-
* Begin the file fixup process
|
|
398
|
-
*
|
|
399
|
-
* @generated from enum value: FILE_ACTION_START_FIXUP = 13;
|
|
400
|
-
*/
|
|
401
|
-
FILE_ACTION_START_FIXUP = 13,
|
|
402
|
-
/**
|
|
403
|
-
* Abort an ongoing fixup process
|
|
404
|
-
*
|
|
405
|
-
* @generated from enum value: FILE_ACTION_ABORT_FIXUP = 14;
|
|
406
|
-
*/
|
|
407
|
-
FILE_ACTION_ABORT_FIXUP = 14,
|
|
408
|
-
/**
|
|
409
|
-
* Accept the results of a fixup
|
|
410
|
-
*
|
|
411
|
-
* @generated from enum value: FILE_ACTION_ACCEPT_FIXUP = 15;
|
|
412
|
-
*/
|
|
413
|
-
FILE_ACTION_ACCEPT_FIXUP = 15,
|
|
414
|
-
/**
|
|
415
|
-
* Reject the results of a fixup
|
|
416
|
-
*
|
|
417
|
-
* @generated from enum value: FILE_ACTION_REJECT_FIXUP = 16;
|
|
418
|
-
*/
|
|
419
|
-
FILE_ACTION_REJECT_FIXUP = 16,
|
|
420
|
-
/**
|
|
421
|
-
* Mark fixup process as complete
|
|
422
|
-
*
|
|
423
|
-
* @generated from enum value: FILE_ACTION_FIXUP_COMPLETE = 17;
|
|
424
|
-
*/
|
|
425
|
-
FILE_ACTION_FIXUP_COMPLETE = 17,
|
|
426
|
-
/**
|
|
427
|
-
* Mark fixup process as failed
|
|
428
|
-
*
|
|
429
|
-
* @generated from enum value: FILE_ACTION_FIXUP_FAILED = 18;
|
|
430
|
-
*/
|
|
431
|
-
FILE_ACTION_FIXUP_FAILED = 18,
|
|
432
|
-
/**
|
|
433
|
-
* Start a conversion process
|
|
434
|
-
*
|
|
435
|
-
* @generated from enum value: FILE_ACTION_START_CONVERSION = 19;
|
|
436
|
-
*/
|
|
437
|
-
FILE_ACTION_START_CONVERSION = 19,
|
|
438
|
-
/**
|
|
439
|
-
* Abort a conversion process
|
|
440
|
-
*
|
|
441
|
-
* @generated from enum value: FILE_ACTION_ABORT_CONVERSION = 20;
|
|
442
|
-
*/
|
|
443
|
-
FILE_ACTION_ABORT_CONVERSION = 20,
|
|
444
|
-
/**
|
|
445
|
-
* Mark conversion process as complete
|
|
446
|
-
*
|
|
447
|
-
* @generated from enum value: FILE_ACTION_CONVERSION_COMPLETE = 21;
|
|
448
|
-
*/
|
|
449
|
-
FILE_ACTION_CONVERSION_COMPLETE = 21,
|
|
450
|
-
/**
|
|
451
|
-
* Mark conversion process as failed
|
|
452
|
-
*
|
|
453
|
-
* @generated from enum value: FILE_ACTION_CONVERSION_FAILED = 22;
|
|
454
|
-
*/
|
|
455
|
-
FILE_ACTION_CONVERSION_FAILED = 22,
|
|
456
364
|
/**
|
|
457
365
|
* Start an image task with confirmation
|
|
458
366
|
*
|
|
@@ -740,26 +648,12 @@ export declare class ArtworkItem extends Message<ArtworkItem> {
|
|
|
740
648
|
* @generated from field: artworking.v1.RejectionReasons rejection_reasons = 17;
|
|
741
649
|
*/
|
|
742
650
|
rejectionReasons?: RejectionReasons;
|
|
743
|
-
/**
|
|
744
|
-
* Information about any fixup process applied to this item
|
|
745
|
-
*
|
|
746
|
-
* @generated from field: optional artworking.v1.FixupAction fixup = 18 [deprecated = true];
|
|
747
|
-
* @deprecated
|
|
748
|
-
*/
|
|
749
|
-
fixup?: FixupAction;
|
|
750
651
|
/**
|
|
751
652
|
* The last action performed. Differs from "latest_relevant_action" in that "latest_relevant_action" gives the latest relavent action taking context into account. For example, if an item is rejected, moved to assets, then moved to active; the last_action_performed is moved-to-active but the "latest_action" is "rejected"
|
|
752
653
|
*
|
|
753
654
|
* @generated from field: artworking.v1.FileActionType last_action_performed = 19;
|
|
754
655
|
*/
|
|
755
656
|
lastActionPerformed: FileActionType;
|
|
756
|
-
/**
|
|
757
|
-
* Information about any conversion process applied to this item
|
|
758
|
-
*
|
|
759
|
-
* @generated from field: optional artworking.v1.ConversionAction file_convert = 20 [deprecated = true];
|
|
760
|
-
* @deprecated
|
|
761
|
-
*/
|
|
762
|
-
fileConvert?: ConversionAction;
|
|
763
657
|
/**
|
|
764
658
|
* Information about any image task applied to this item
|
|
765
659
|
*
|
|
@@ -1897,18 +1791,6 @@ export declare class SubmitJobActionRequest_FileAction extends Message<SubmitJob
|
|
|
1897
1791
|
* @generated from field: artworking.v1.RejectionReasons rejection_reasons = 6;
|
|
1898
1792
|
*/
|
|
1899
1793
|
rejectionReasons?: RejectionReasons;
|
|
1900
|
-
/**
|
|
1901
|
-
* Fixup action details if applicable
|
|
1902
|
-
*
|
|
1903
|
-
* @generated from field: artworking.v1.FixupAction fixup_action = 7;
|
|
1904
|
-
*/
|
|
1905
|
-
fixupAction?: FixupAction;
|
|
1906
|
-
/**
|
|
1907
|
-
* Conversion action details if applicable
|
|
1908
|
-
*
|
|
1909
|
-
* @generated from field: artworking.v1.ConversionAction file_convert = 8;
|
|
1910
|
-
*/
|
|
1911
|
-
fileConvert?: ConversionAction;
|
|
1912
1794
|
/**
|
|
1913
1795
|
* Image task action details if applicable
|
|
1914
1796
|
*
|
|
@@ -8,8 +8,6 @@ exports.SubmitJobActionRequest_FileAction = exports.SubmitJobActionRequest = exp
|
|
|
8
8
|
exports.ListDraftActionsResponse = exports.ListDraftActionsRequest = exports.ClearDraftActionResponse = exports.ClearDraftActionRequest = exports.GetDraftActionResponse = exports.GetDraftActionRequest = exports.UpsertDraftActionResponse = exports.UpsertDraftActionRequest = exports.Testing = exports.ClearDraftActionsResponse = exports.ClearDraftActionsRequest = exports.ChangeJobTypeResponse = exports.ChangeJobTypeRequest = exports.AddJobToJobGroupResponse = exports.AddJobToJobGroupRequest = exports.GetJobTypeCountsResponse = exports.GetJobTypeCountsRequest = exports.CompanyJobCountResponse = exports.CompanyJobCountRequest = exports.CustomerJobCountResponse = exports.CustomerJobCountRequest = exports.SetMeasurementUnitResponse = exports.SetMeasurementUnitRequest = exports.GetAllMediaItemsForJobResponse = exports.GetAllMediaItemsForJobRequest = exports.GetJobStateResponse = exports.GetJobStateRequest = exports.ChangeAllContactsJobsResponse = exports.ChangeAllContactsJobsRequest = exports.ChangeJobsContactResponse = exports.ChangeJobsContactRequest = exports.AddInternalJobNoteResponse = exports.AddInternalJobNoteRequest = exports.MarkAsCompleteResponse = exports.MarkAsCompleteRequest = exports.GetJobFilterSummaryResponse = exports.GetJobFilterSummaryRequest = exports.JobFilterSummary = exports.GetJobStatsResponse = exports.GetJobStatsRequest = exports.JobStats = exports.SubmitBulkJobActionResponse_BulkActionResults = exports.SubmitBulkJobActionResponse_BulkActionResultFailure = exports.SubmitBulkJobActionResponse = exports.SubmitBulkJobActionRequest_JobActionItem = exports.SubmitBulkJobActionRequest = exports.SubmitJobActionResponse = exports.SubmitJobActionRequest_JobActionItem = void 0;
|
|
9
9
|
const protobuf_1 = require("@bufbuild/protobuf");
|
|
10
10
|
const media_pb_js_1 = require("../../media/v1/media_pb.js");
|
|
11
|
-
const fixup_pb_js_1 = require("./fixup_pb.js");
|
|
12
|
-
const fileconversion_pb_js_1 = require("./fileconversion_pb.js");
|
|
13
11
|
const imagetask_pb_js_1 = require("./imagetask_pb.js");
|
|
14
12
|
const preflight_warning_pb_js_1 = require("../../common/v1/preflight-warning_pb.js");
|
|
15
13
|
const email_pb_js_1 = require("../../common/v1/email_pb.js");
|
|
@@ -310,36 +308,6 @@ var ArtworkItemState;
|
|
|
310
308
|
* @generated from enum value: ARTWORK_ITEM_STATE_ARCHIVED = 8;
|
|
311
309
|
*/
|
|
312
310
|
ArtworkItemState[ArtworkItemState["ARCHIVED"] = 8] = "ARCHIVED";
|
|
313
|
-
/**
|
|
314
|
-
* file fix-up in progress
|
|
315
|
-
*
|
|
316
|
-
* @generated from enum value: ARTWORK_ITEM_STATE_FIXUP_IN_PROGRESS = 9;
|
|
317
|
-
*/
|
|
318
|
-
ArtworkItemState[ArtworkItemState["FIXUP_IN_PROGRESS"] = 9] = "FIXUP_IN_PROGRESS";
|
|
319
|
-
/**
|
|
320
|
-
* file fix-up has failed
|
|
321
|
-
*
|
|
322
|
-
* @generated from enum value: ARTWORK_ITEM_STATE_FIXUP_FAILED = 10;
|
|
323
|
-
*/
|
|
324
|
-
ArtworkItemState[ArtworkItemState["FIXUP_FAILED"] = 10] = "FIXUP_FAILED";
|
|
325
|
-
/**
|
|
326
|
-
* file fix-up is complete and is pending review
|
|
327
|
-
*
|
|
328
|
-
* @generated from enum value: ARTWORK_ITEM_STATE_FIXUP_PENDING_REVIEW = 11;
|
|
329
|
-
*/
|
|
330
|
-
ArtworkItemState[ArtworkItemState["FIXUP_PENDING_REVIEW"] = 11] = "FIXUP_PENDING_REVIEW";
|
|
331
|
-
/**
|
|
332
|
-
* file conversion in progress
|
|
333
|
-
*
|
|
334
|
-
* @generated from enum value: ARTWORK_ITEM_STATE_CONVERSION_IN_PROGRESS = 12;
|
|
335
|
-
*/
|
|
336
|
-
ArtworkItemState[ArtworkItemState["CONVERSION_IN_PROGRESS"] = 12] = "CONVERSION_IN_PROGRESS";
|
|
337
|
-
/**
|
|
338
|
-
* file conversion has failed
|
|
339
|
-
*
|
|
340
|
-
* @generated from enum value: ARTWORK_ITEM_STATE_CONVERSION_FAILED = 13;
|
|
341
|
-
*/
|
|
342
|
-
ArtworkItemState[ArtworkItemState["CONVERSION_FAILED"] = 13] = "CONVERSION_FAILED";
|
|
343
311
|
/**
|
|
344
312
|
* image task in progress
|
|
345
313
|
*
|
|
@@ -370,11 +338,6 @@ protobuf_1.proto3.util.setEnumType(ArtworkItemState, "artworking.v1.ArtworkItemS
|
|
|
370
338
|
{ no: 6, name: "ARTWORK_ITEM_STATE_COMPLETE" },
|
|
371
339
|
{ no: 7, name: "ARTWORK_ITEM_STATE_MARKED_AS_ASSET" },
|
|
372
340
|
{ no: 8, name: "ARTWORK_ITEM_STATE_ARCHIVED" },
|
|
373
|
-
{ no: 9, name: "ARTWORK_ITEM_STATE_FIXUP_IN_PROGRESS" },
|
|
374
|
-
{ no: 10, name: "ARTWORK_ITEM_STATE_FIXUP_FAILED" },
|
|
375
|
-
{ no: 11, name: "ARTWORK_ITEM_STATE_FIXUP_PENDING_REVIEW" },
|
|
376
|
-
{ no: 12, name: "ARTWORK_ITEM_STATE_CONVERSION_IN_PROGRESS" },
|
|
377
|
-
{ no: 13, name: "ARTWORK_ITEM_STATE_CONVERSION_FAILED" },
|
|
378
341
|
{ no: 14, name: "ARTWORK_ITEM_STATE_IMAGE_TASK_IN_PROGRESS" },
|
|
379
342
|
{ no: 15, name: "ARTWORK_ITEM_STATE_IMAGE_TASK_PENDING_REVIEW" },
|
|
380
343
|
{ no: 16, name: "ARTWORK_ITEM_STATE_IMAGE_TASK_FAILED" },
|
|
@@ -464,66 +427,6 @@ var FileActionType;
|
|
|
464
427
|
* @generated from enum value: FILE_ACTION_REPLACE = 12;
|
|
465
428
|
*/
|
|
466
429
|
FileActionType[FileActionType["FILE_ACTION_REPLACE"] = 12] = "FILE_ACTION_REPLACE";
|
|
467
|
-
/**
|
|
468
|
-
* Begin the file fixup process
|
|
469
|
-
*
|
|
470
|
-
* @generated from enum value: FILE_ACTION_START_FIXUP = 13;
|
|
471
|
-
*/
|
|
472
|
-
FileActionType[FileActionType["FILE_ACTION_START_FIXUP"] = 13] = "FILE_ACTION_START_FIXUP";
|
|
473
|
-
/**
|
|
474
|
-
* Abort an ongoing fixup process
|
|
475
|
-
*
|
|
476
|
-
* @generated from enum value: FILE_ACTION_ABORT_FIXUP = 14;
|
|
477
|
-
*/
|
|
478
|
-
FileActionType[FileActionType["FILE_ACTION_ABORT_FIXUP"] = 14] = "FILE_ACTION_ABORT_FIXUP";
|
|
479
|
-
/**
|
|
480
|
-
* Accept the results of a fixup
|
|
481
|
-
*
|
|
482
|
-
* @generated from enum value: FILE_ACTION_ACCEPT_FIXUP = 15;
|
|
483
|
-
*/
|
|
484
|
-
FileActionType[FileActionType["FILE_ACTION_ACCEPT_FIXUP"] = 15] = "FILE_ACTION_ACCEPT_FIXUP";
|
|
485
|
-
/**
|
|
486
|
-
* Reject the results of a fixup
|
|
487
|
-
*
|
|
488
|
-
* @generated from enum value: FILE_ACTION_REJECT_FIXUP = 16;
|
|
489
|
-
*/
|
|
490
|
-
FileActionType[FileActionType["FILE_ACTION_REJECT_FIXUP"] = 16] = "FILE_ACTION_REJECT_FIXUP";
|
|
491
|
-
/**
|
|
492
|
-
* Mark fixup process as complete
|
|
493
|
-
*
|
|
494
|
-
* @generated from enum value: FILE_ACTION_FIXUP_COMPLETE = 17;
|
|
495
|
-
*/
|
|
496
|
-
FileActionType[FileActionType["FILE_ACTION_FIXUP_COMPLETE"] = 17] = "FILE_ACTION_FIXUP_COMPLETE";
|
|
497
|
-
/**
|
|
498
|
-
* Mark fixup process as failed
|
|
499
|
-
*
|
|
500
|
-
* @generated from enum value: FILE_ACTION_FIXUP_FAILED = 18;
|
|
501
|
-
*/
|
|
502
|
-
FileActionType[FileActionType["FILE_ACTION_FIXUP_FAILED"] = 18] = "FILE_ACTION_FIXUP_FAILED";
|
|
503
|
-
/**
|
|
504
|
-
* Start a conversion process
|
|
505
|
-
*
|
|
506
|
-
* @generated from enum value: FILE_ACTION_START_CONVERSION = 19;
|
|
507
|
-
*/
|
|
508
|
-
FileActionType[FileActionType["FILE_ACTION_START_CONVERSION"] = 19] = "FILE_ACTION_START_CONVERSION";
|
|
509
|
-
/**
|
|
510
|
-
* Abort a conversion process
|
|
511
|
-
*
|
|
512
|
-
* @generated from enum value: FILE_ACTION_ABORT_CONVERSION = 20;
|
|
513
|
-
*/
|
|
514
|
-
FileActionType[FileActionType["FILE_ACTION_ABORT_CONVERSION"] = 20] = "FILE_ACTION_ABORT_CONVERSION";
|
|
515
|
-
/**
|
|
516
|
-
* Mark conversion process as complete
|
|
517
|
-
*
|
|
518
|
-
* @generated from enum value: FILE_ACTION_CONVERSION_COMPLETE = 21;
|
|
519
|
-
*/
|
|
520
|
-
FileActionType[FileActionType["FILE_ACTION_CONVERSION_COMPLETE"] = 21] = "FILE_ACTION_CONVERSION_COMPLETE";
|
|
521
|
-
/**
|
|
522
|
-
* Mark conversion process as failed
|
|
523
|
-
*
|
|
524
|
-
* @generated from enum value: FILE_ACTION_CONVERSION_FAILED = 22;
|
|
525
|
-
*/
|
|
526
|
-
FileActionType[FileActionType["FILE_ACTION_CONVERSION_FAILED"] = 22] = "FILE_ACTION_CONVERSION_FAILED";
|
|
527
430
|
/**
|
|
528
431
|
* Start an image task with confirmation
|
|
529
432
|
*
|
|
@@ -588,16 +491,6 @@ protobuf_1.proto3.util.setEnumType(FileActionType, "artworking.v1.FileActionType
|
|
|
588
491
|
{ no: 10, name: "FILE_ACTION_MARK_AS_ACTIVE" },
|
|
589
492
|
{ no: 11, name: "FILE_ACTION_MARK_AS_ARCHIVE" },
|
|
590
493
|
{ no: 12, name: "FILE_ACTION_REPLACE" },
|
|
591
|
-
{ no: 13, name: "FILE_ACTION_START_FIXUP" },
|
|
592
|
-
{ no: 14, name: "FILE_ACTION_ABORT_FIXUP" },
|
|
593
|
-
{ no: 15, name: "FILE_ACTION_ACCEPT_FIXUP" },
|
|
594
|
-
{ no: 16, name: "FILE_ACTION_REJECT_FIXUP" },
|
|
595
|
-
{ no: 17, name: "FILE_ACTION_FIXUP_COMPLETE" },
|
|
596
|
-
{ no: 18, name: "FILE_ACTION_FIXUP_FAILED" },
|
|
597
|
-
{ no: 19, name: "FILE_ACTION_START_CONVERSION" },
|
|
598
|
-
{ no: 20, name: "FILE_ACTION_ABORT_CONVERSION" },
|
|
599
|
-
{ no: 21, name: "FILE_ACTION_CONVERSION_COMPLETE" },
|
|
600
|
-
{ no: 22, name: "FILE_ACTION_CONVERSION_FAILED" },
|
|
601
494
|
{ no: 23, name: "FILE_ACTION_START_IMAGE_TASK_WITH_CONFIRMATION" },
|
|
602
495
|
{ no: 24, name: "FILE_ACTION_START_IMAGE_TASK_WITHOUT_CONFIRMATION" },
|
|
603
496
|
{ no: 25, name: "FILE_ACTION_ABORT_IMAGE_TASK" },
|
|
@@ -924,9 +817,7 @@ ArtworkItem.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
|
924
817
|
{ no: 15, name: "supplier_allowed_actions", kind: "enum", T: protobuf_1.proto3.getEnumType(FileActionType), repeated: true },
|
|
925
818
|
{ no: 16, name: "media_item_id", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
|
|
926
819
|
{ no: 17, name: "rejection_reasons", kind: "message", T: RejectionReasons },
|
|
927
|
-
{ no: 18, name: "fixup", kind: "message", T: fixup_pb_js_1.FixupAction, opt: true },
|
|
928
820
|
{ no: 19, name: "last_action_performed", kind: "enum", T: protobuf_1.proto3.getEnumType(FileActionType) },
|
|
929
|
-
{ no: 20, name: "file_convert", kind: "message", T: fileconversion_pb_js_1.ConversionAction, opt: true },
|
|
930
821
|
{ no: 21, name: "image_task", kind: "message", T: imagetask_pb_js_1.ImageTaskAction, opt: true },
|
|
931
822
|
]);
|
|
932
823
|
/**
|
|
@@ -2568,8 +2459,6 @@ SubmitJobActionRequest_FileAction.fields = protobuf_1.proto3.util.newFieldList((
|
|
|
2568
2459
|
{ no: 4, name: "message", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
2569
2460
|
{ no: 5, name: "disabled_file_actions", kind: "enum", T: protobuf_1.proto3.getEnumType(FileActionType), repeated: true },
|
|
2570
2461
|
{ no: 6, name: "rejection_reasons", kind: "message", T: RejectionReasons },
|
|
2571
|
-
{ no: 7, name: "fixup_action", kind: "message", T: fixup_pb_js_1.FixupAction },
|
|
2572
|
-
{ no: 8, name: "file_convert", kind: "message", T: fileconversion_pb_js_1.ConversionAction },
|
|
2573
2462
|
{ no: 9, name: "image_task_action", kind: "message", T: imagetask_pb_js_1.ImageTaskAction },
|
|
2574
2463
|
]);
|
|
2575
2464
|
/**
|