@kudo.io/artworker-grpc-client-ts 3.0.32 → 3.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/lib/artworker/v1/artworker-service_pb.d.ts +1 -41
- package/lib/artworker/v1/artworker-service_pb.js +1 -1
- package/lib/artworker/v1/artworker-service_pb.js.map +1 -1
- package/lib/artworker/v1/artworker_pb.d.ts +0 -336
- package/lib/artworker/v1/artworker_pb.js +47 -185
- package/lib/artworker/v1/artworker_pb.js.map +1 -1
- package/lib/artworking/v1/00-artworking_service_pb.d.ts +1 -57
- package/lib/artworking/v1/00-artworking_service_pb.js +1 -1
- package/lib/artworking/v1/00-artworking_service_pb.js.map +1 -1
- package/lib/artworking/v1/artwork_pb.d.ts +1 -67
- package/lib/artworking/v1/artwork_pb.js +1 -18
- package/lib/artworking/v1/artwork_pb.js.map +1 -1
- package/lib/artworking/v1/fixup_pb.d.ts +4 -0
- package/lib/artworking/v1/fixup_pb.js +1 -1
- package/lib/artworking/v1/fixup_pb.js.map +1 -1
- package/lib/artworking/v1/job-group_pb.d.ts +2 -433
- package/lib/artworking/v1/job-group_pb.js +2 -130
- package/lib/artworking/v1/job-group_pb.js.map +1 -1
- package/lib/media/v1/media_pb.d.ts +0 -29
- package/lib/media/v1/media_pb.js +1 -11
- package/lib/media/v1/media_pb.js.map +1 -1
- package/lib/media/v1/media_service_pb.d.ts +1 -9
- package/lib/media/v1/media_service_pb.js +1 -1
- package/lib/media/v1/media_service_pb.js.map +1 -1
- package/lib/preflight/v2/guide_pb.d.ts +5 -0
- package/lib/preflight/v2/guide_pb.js +2 -1
- package/lib/preflight/v2/guide_pb.js.map +1 -1
- package/package.json +1 -1
- package/src/artworker/v1/artworker-service_pb.ts +2 -42
- package/src/artworker/v1/artworker_pb.ts +47 -451
- package/src/artworking/v1/00-artworking_service_pb.ts +2 -58
- package/src/artworking/v1/artwork_pb.ts +1 -79
- package/src/artworking/v1/fixup_pb.ts +6 -1
- package/src/artworking/v1/job-group_pb.ts +4 -516
- package/src/media/v1/media_pb.ts +1 -38
- package/src/media/v1/media_service_pb.ts +2 -10
- package/src/preflight/v2/guide_pb.ts +8 -1
- package/src/notification/v2/notification_pb.ts +0 -1142
- package/src/notification/v2/notification_service_pb.ts +0 -142
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import type { ExternalLink, Job,
|
|
3
|
-
import type { MeasurementUnit } from "../../common/v1/unit_pb.js";
|
|
4
|
-
import type { PaginatedQuery, PaginatedResponse } from "../../common/v1/query_pb.js";
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { ExternalLink, Job, JobType, LeadtimeLengthUnit } from "./artwork_pb.js";
|
|
5
3
|
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
6
4
|
import type { Message } from "@bufbuild/protobuf";
|
|
7
5
|
/**
|
|
@@ -92,22 +90,6 @@ export type JobGroup = Message<"artworking.v1.JobGroup"> & {
|
|
|
92
90
|
* @generated from field: artworking.v1.JobType job_type = 20;
|
|
93
91
|
*/
|
|
94
92
|
jobType: JobType;
|
|
95
|
-
/**
|
|
96
|
-
* External reference for API lookups
|
|
97
|
-
*
|
|
98
|
-
* @generated from field: string external_ref = 21;
|
|
99
|
-
*/
|
|
100
|
-
externalRef: string;
|
|
101
|
-
/**
|
|
102
|
-
* Unique identifier (UUID)
|
|
103
|
-
*
|
|
104
|
-
* @generated from field: string uri = 22;
|
|
105
|
-
*/
|
|
106
|
-
uri: string;
|
|
107
|
-
/**
|
|
108
|
-
* @generated from field: bool enable_chaser_emails = 23;
|
|
109
|
-
*/
|
|
110
|
-
enableChaserEmails: boolean;
|
|
111
93
|
};
|
|
112
94
|
/**
|
|
113
95
|
* Describes the message artworking.v1.JobGroup.
|
|
@@ -262,24 +244,6 @@ export type CreateJobGroupRequest_JobGroupJobParams = Message<"artworking.v1.Cre
|
|
|
262
244
|
* @generated from field: repeated int64 media_item_ids = 3;
|
|
263
245
|
*/
|
|
264
246
|
mediaItemIds: bigint[];
|
|
265
|
-
/**
|
|
266
|
-
* External reference for API lookups (unique per supplier)
|
|
267
|
-
*
|
|
268
|
-
* @generated from field: optional string external_ref = 4;
|
|
269
|
-
*/
|
|
270
|
-
externalRef?: string;
|
|
271
|
-
/**
|
|
272
|
-
* Per-job external link
|
|
273
|
-
*
|
|
274
|
-
* @generated from field: optional artworking.v1.ExternalLink external_link = 5;
|
|
275
|
-
*/
|
|
276
|
-
externalLink?: ExternalLink;
|
|
277
|
-
/**
|
|
278
|
-
* Per-job measurement unit
|
|
279
|
-
*
|
|
280
|
-
* @generated from field: optional common.v1.MeasurementUnit measurement_unit = 6;
|
|
281
|
-
*/
|
|
282
|
-
measurementUnit?: MeasurementUnit;
|
|
283
247
|
};
|
|
284
248
|
/**
|
|
285
249
|
* Describes the message artworking.v1.CreateJobGroupRequest.JobGroupJobParams.
|
|
@@ -304,398 +268,3 @@ export type CreateJobGroupResponse = Message<"artworking.v1.CreateJobGroupRespon
|
|
|
304
268
|
* Use `create(CreateJobGroupResponseSchema)` to create a new message.
|
|
305
269
|
*/
|
|
306
270
|
export declare const CreateJobGroupResponseSchema: GenMessage<CreateJobGroupResponse>;
|
|
307
|
-
/**
|
|
308
|
-
* GetJobGroupById
|
|
309
|
-
*
|
|
310
|
-
* @generated from message artworking.v1.GetJobGroupByIdRequest
|
|
311
|
-
*/
|
|
312
|
-
export type GetJobGroupByIdRequest = Message<"artworking.v1.GetJobGroupByIdRequest"> & {
|
|
313
|
-
/**
|
|
314
|
-
* JobGroup ID
|
|
315
|
-
*
|
|
316
|
-
* @generated from field: string id = 1;
|
|
317
|
-
*/
|
|
318
|
-
id: string;
|
|
319
|
-
};
|
|
320
|
-
/**
|
|
321
|
-
* Describes the message artworking.v1.GetJobGroupByIdRequest.
|
|
322
|
-
* Use `create(GetJobGroupByIdRequestSchema)` to create a new message.
|
|
323
|
-
*/
|
|
324
|
-
export declare const GetJobGroupByIdRequestSchema: GenMessage<GetJobGroupByIdRequest>;
|
|
325
|
-
/**
|
|
326
|
-
* @generated from message artworking.v1.GetJobGroupByIdResponse
|
|
327
|
-
*/
|
|
328
|
-
export type GetJobGroupByIdResponse = Message<"artworking.v1.GetJobGroupByIdResponse"> & {
|
|
329
|
-
/**
|
|
330
|
-
* @generated from field: artworking.v1.JobGroup job_group = 1;
|
|
331
|
-
*/
|
|
332
|
-
jobGroup?: JobGroup;
|
|
333
|
-
};
|
|
334
|
-
/**
|
|
335
|
-
* Describes the message artworking.v1.GetJobGroupByIdResponse.
|
|
336
|
-
* Use `create(GetJobGroupByIdResponseSchema)` to create a new message.
|
|
337
|
-
*/
|
|
338
|
-
export declare const GetJobGroupByIdResponseSchema: GenMessage<GetJobGroupByIdResponse>;
|
|
339
|
-
/**
|
|
340
|
-
* GetJobGroupByUri
|
|
341
|
-
*
|
|
342
|
-
* @generated from message artworking.v1.GetJobGroupByUriRequest
|
|
343
|
-
*/
|
|
344
|
-
export type GetJobGroupByUriRequest = Message<"artworking.v1.GetJobGroupByUriRequest"> & {
|
|
345
|
-
/**
|
|
346
|
-
* JobGroup URI (UUID)
|
|
347
|
-
*
|
|
348
|
-
* @generated from field: string uri = 1;
|
|
349
|
-
*/
|
|
350
|
-
uri: string;
|
|
351
|
-
};
|
|
352
|
-
/**
|
|
353
|
-
* Describes the message artworking.v1.GetJobGroupByUriRequest.
|
|
354
|
-
* Use `create(GetJobGroupByUriRequestSchema)` to create a new message.
|
|
355
|
-
*/
|
|
356
|
-
export declare const GetJobGroupByUriRequestSchema: GenMessage<GetJobGroupByUriRequest>;
|
|
357
|
-
/**
|
|
358
|
-
* @generated from message artworking.v1.GetJobGroupByUriResponse
|
|
359
|
-
*/
|
|
360
|
-
export type GetJobGroupByUriResponse = Message<"artworking.v1.GetJobGroupByUriResponse"> & {
|
|
361
|
-
/**
|
|
362
|
-
* @generated from field: artworking.v1.JobGroup job_group = 1;
|
|
363
|
-
*/
|
|
364
|
-
jobGroup?: JobGroup;
|
|
365
|
-
};
|
|
366
|
-
/**
|
|
367
|
-
* Describes the message artworking.v1.GetJobGroupByUriResponse.
|
|
368
|
-
* Use `create(GetJobGroupByUriResponseSchema)` to create a new message.
|
|
369
|
-
*/
|
|
370
|
-
export declare const GetJobGroupByUriResponseSchema: GenMessage<GetJobGroupByUriResponse>;
|
|
371
|
-
/**
|
|
372
|
-
* GetJobsByJobGroupUri - Get paginated Jobs for a JobGroup by URI
|
|
373
|
-
*
|
|
374
|
-
* @generated from message artworking.v1.GetJobsByJobGroupUriRequest
|
|
375
|
-
*/
|
|
376
|
-
export type GetJobsByJobGroupUriRequest = Message<"artworking.v1.GetJobsByJobGroupUriRequest"> & {
|
|
377
|
-
/**
|
|
378
|
-
* JobGroup URI (UUID)
|
|
379
|
-
*
|
|
380
|
-
* @generated from field: string uri = 1;
|
|
381
|
-
*/
|
|
382
|
-
uri: string;
|
|
383
|
-
/**
|
|
384
|
-
* Pagination and sorting
|
|
385
|
-
*
|
|
386
|
-
* @generated from field: common.v1.PaginatedQuery query = 2;
|
|
387
|
-
*/
|
|
388
|
-
query?: PaginatedQuery;
|
|
389
|
-
};
|
|
390
|
-
/**
|
|
391
|
-
* Describes the message artworking.v1.GetJobsByJobGroupUriRequest.
|
|
392
|
-
* Use `create(GetJobsByJobGroupUriRequestSchema)` to create a new message.
|
|
393
|
-
*/
|
|
394
|
-
export declare const GetJobsByJobGroupUriRequestSchema: GenMessage<GetJobsByJobGroupUriRequest>;
|
|
395
|
-
/**
|
|
396
|
-
* @generated from message artworking.v1.GetJobsByJobGroupUriResponse
|
|
397
|
-
*/
|
|
398
|
-
export type GetJobsByJobGroupUriResponse = Message<"artworking.v1.GetJobsByJobGroupUriResponse"> & {
|
|
399
|
-
/**
|
|
400
|
-
* @generated from field: repeated artworking.v1.Job jobs = 1;
|
|
401
|
-
*/
|
|
402
|
-
jobs: Job[];
|
|
403
|
-
/**
|
|
404
|
-
* @generated from field: common.v1.PaginatedResponse pagination = 2;
|
|
405
|
-
*/
|
|
406
|
-
pagination?: PaginatedResponse;
|
|
407
|
-
};
|
|
408
|
-
/**
|
|
409
|
-
* Describes the message artworking.v1.GetJobsByJobGroupUriResponse.
|
|
410
|
-
* Use `create(GetJobsByJobGroupUriResponseSchema)` to create a new message.
|
|
411
|
-
*/
|
|
412
|
-
export declare const GetJobsByJobGroupUriResponseSchema: GenMessage<GetJobsByJobGroupUriResponse>;
|
|
413
|
-
/**
|
|
414
|
-
* @generated from message artworking.v1.FilterJobGroupRequestFilter
|
|
415
|
-
*/
|
|
416
|
-
export type FilterJobGroupRequestFilter = Message<"artworking.v1.FilterJobGroupRequestFilter"> & {
|
|
417
|
-
/**
|
|
418
|
-
* @generated from field: string value = 1;
|
|
419
|
-
*/
|
|
420
|
-
value: string;
|
|
421
|
-
/**
|
|
422
|
-
* @generated from field: artworking.v1.JobGroupFilterType filter_type = 2;
|
|
423
|
-
*/
|
|
424
|
-
filterType: JobGroupFilterType;
|
|
425
|
-
/**
|
|
426
|
-
* @generated from field: artworking.v1.JobFilterCondition filter_condition = 3;
|
|
427
|
-
*/
|
|
428
|
-
filterCondition: JobFilterCondition;
|
|
429
|
-
};
|
|
430
|
-
/**
|
|
431
|
-
* Describes the message artworking.v1.FilterJobGroupRequestFilter.
|
|
432
|
-
* Use `create(FilterJobGroupRequestFilterSchema)` to create a new message.
|
|
433
|
-
*/
|
|
434
|
-
export declare const FilterJobGroupRequestFilterSchema: GenMessage<FilterJobGroupRequestFilter>;
|
|
435
|
-
/**
|
|
436
|
-
* @generated from message artworking.v1.FindJobGroupRequest
|
|
437
|
-
*/
|
|
438
|
-
export type FindJobGroupRequest = Message<"artworking.v1.FindJobGroupRequest"> & {
|
|
439
|
-
/**
|
|
440
|
-
* Filter by contact IDs
|
|
441
|
-
*
|
|
442
|
-
* @generated from field: repeated int64 contact_ids = 1;
|
|
443
|
-
*/
|
|
444
|
-
contactIds: bigint[];
|
|
445
|
-
/**
|
|
446
|
-
* Custom filters
|
|
447
|
-
*
|
|
448
|
-
* @generated from field: repeated artworking.v1.FilterJobGroupRequestFilter filters = 2;
|
|
449
|
-
*/
|
|
450
|
-
filters: FilterJobGroupRequestFilter[];
|
|
451
|
-
/**
|
|
452
|
-
* Pagination and sorting
|
|
453
|
-
*
|
|
454
|
-
* @generated from field: common.v1.PaginatedQuery query = 3;
|
|
455
|
-
*/
|
|
456
|
-
query?: PaginatedQuery;
|
|
457
|
-
/**
|
|
458
|
-
* Filter by company IDs
|
|
459
|
-
*
|
|
460
|
-
* @generated from field: repeated int64 company_ids = 4;
|
|
461
|
-
*/
|
|
462
|
-
companyIds: bigint[];
|
|
463
|
-
/**
|
|
464
|
-
* Filter by creation date
|
|
465
|
-
*
|
|
466
|
-
* @generated from field: google.protobuf.Timestamp created_after = 5;
|
|
467
|
-
*/
|
|
468
|
-
createdAfter?: Timestamp;
|
|
469
|
-
/**
|
|
470
|
-
* Filter by creation date
|
|
471
|
-
*
|
|
472
|
-
* @generated from field: google.protobuf.Timestamp created_before = 6;
|
|
473
|
-
*/
|
|
474
|
-
createdBefore?: Timestamp;
|
|
475
|
-
};
|
|
476
|
-
/**
|
|
477
|
-
* Describes the message artworking.v1.FindJobGroupRequest.
|
|
478
|
-
* Use `create(FindJobGroupRequestSchema)` to create a new message.
|
|
479
|
-
*/
|
|
480
|
-
export declare const FindJobGroupRequestSchema: GenMessage<FindJobGroupRequest>;
|
|
481
|
-
/**
|
|
482
|
-
* @generated from message artworking.v1.FindJobGroupResponse
|
|
483
|
-
*/
|
|
484
|
-
export type FindJobGroupResponse = Message<"artworking.v1.FindJobGroupResponse"> & {
|
|
485
|
-
/**
|
|
486
|
-
* @generated from field: repeated artworking.v1.JobGroup data = 1;
|
|
487
|
-
*/
|
|
488
|
-
data: JobGroup[];
|
|
489
|
-
/**
|
|
490
|
-
* @generated from field: common.v1.PaginatedResponse pagination = 2;
|
|
491
|
-
*/
|
|
492
|
-
pagination?: PaginatedResponse;
|
|
493
|
-
};
|
|
494
|
-
/**
|
|
495
|
-
* Describes the message artworking.v1.FindJobGroupResponse.
|
|
496
|
-
* Use `create(FindJobGroupResponseSchema)` to create a new message.
|
|
497
|
-
*/
|
|
498
|
-
export declare const FindJobGroupResponseSchema: GenMessage<FindJobGroupResponse>;
|
|
499
|
-
/**
|
|
500
|
-
* UpdateJobGroup
|
|
501
|
-
*
|
|
502
|
-
* @generated from message artworking.v1.UpdateJobGroupRequest
|
|
503
|
-
*/
|
|
504
|
-
export type UpdateJobGroupRequest = Message<"artworking.v1.UpdateJobGroupRequest"> & {
|
|
505
|
-
/**
|
|
506
|
-
* JobGroup ID
|
|
507
|
-
*
|
|
508
|
-
* @generated from field: string id = 1;
|
|
509
|
-
*/
|
|
510
|
-
id: string;
|
|
511
|
-
/**
|
|
512
|
-
* JobGroup reference
|
|
513
|
-
*
|
|
514
|
-
* @generated from field: optional string ref = 2;
|
|
515
|
-
*/
|
|
516
|
-
ref?: string;
|
|
517
|
-
/**
|
|
518
|
-
* Order reference
|
|
519
|
-
*
|
|
520
|
-
* @generated from field: optional string order_ref = 3;
|
|
521
|
-
*/
|
|
522
|
-
orderRef?: string;
|
|
523
|
-
/**
|
|
524
|
-
* Company name
|
|
525
|
-
*
|
|
526
|
-
* @generated from field: optional string company_name = 4;
|
|
527
|
-
*/
|
|
528
|
-
companyName?: string;
|
|
529
|
-
/**
|
|
530
|
-
* Leadtime length
|
|
531
|
-
*
|
|
532
|
-
* @generated from field: optional int32 leadtime_length = 5;
|
|
533
|
-
*/
|
|
534
|
-
leadtimeLength?: number;
|
|
535
|
-
/**
|
|
536
|
-
* Leadtime unit
|
|
537
|
-
*
|
|
538
|
-
* @generated from field: optional artworking.v1.LeadtimeLengthUnit leadtime_length_unit = 6;
|
|
539
|
-
*/
|
|
540
|
-
leadtimeLengthUnit?: LeadtimeLengthUnit;
|
|
541
|
-
/**
|
|
542
|
-
* External link
|
|
543
|
-
*
|
|
544
|
-
* @generated from field: optional artworking.v1.ExternalLink external_link = 7;
|
|
545
|
-
*/
|
|
546
|
-
externalLink?: ExternalLink;
|
|
547
|
-
/**
|
|
548
|
-
* Update external reference
|
|
549
|
-
*
|
|
550
|
-
* @generated from field: optional string external_ref = 8;
|
|
551
|
-
*/
|
|
552
|
-
externalRef?: string;
|
|
553
|
-
};
|
|
554
|
-
/**
|
|
555
|
-
* Describes the message artworking.v1.UpdateJobGroupRequest.
|
|
556
|
-
* Use `create(UpdateJobGroupRequestSchema)` to create a new message.
|
|
557
|
-
*/
|
|
558
|
-
export declare const UpdateJobGroupRequestSchema: GenMessage<UpdateJobGroupRequest>;
|
|
559
|
-
/**
|
|
560
|
-
* @generated from message artworking.v1.UpdateJobGroupResponse
|
|
561
|
-
*/
|
|
562
|
-
export type UpdateJobGroupResponse = Message<"artworking.v1.UpdateJobGroupResponse"> & {
|
|
563
|
-
/**
|
|
564
|
-
* @generated from field: artworking.v1.JobGroup job_group = 1;
|
|
565
|
-
*/
|
|
566
|
-
jobGroup?: JobGroup;
|
|
567
|
-
};
|
|
568
|
-
/**
|
|
569
|
-
* Describes the message artworking.v1.UpdateJobGroupResponse.
|
|
570
|
-
* Use `create(UpdateJobGroupResponseSchema)` to create a new message.
|
|
571
|
-
*/
|
|
572
|
-
export declare const UpdateJobGroupResponseSchema: GenMessage<UpdateJobGroupResponse>;
|
|
573
|
-
/**
|
|
574
|
-
* @generated from message artworking.v1.SetJobGroupSettingsRequest
|
|
575
|
-
*/
|
|
576
|
-
export type SetJobGroupSettingsRequest = Message<"artworking.v1.SetJobGroupSettingsRequest"> & {
|
|
577
|
-
/**
|
|
578
|
-
* JobGroup ID
|
|
579
|
-
*
|
|
580
|
-
* @generated from field: string id = 1;
|
|
581
|
-
*/
|
|
582
|
-
id: string;
|
|
583
|
-
/**
|
|
584
|
-
* @generated from field: bool enable_chaser_emails = 2;
|
|
585
|
-
*/
|
|
586
|
-
enableChaserEmails: boolean;
|
|
587
|
-
};
|
|
588
|
-
/**
|
|
589
|
-
* Describes the message artworking.v1.SetJobGroupSettingsRequest.
|
|
590
|
-
* Use `create(SetJobGroupSettingsRequestSchema)` to create a new message.
|
|
591
|
-
*/
|
|
592
|
-
export declare const SetJobGroupSettingsRequestSchema: GenMessage<SetJobGroupSettingsRequest>;
|
|
593
|
-
/**
|
|
594
|
-
* @generated from message artworking.v1.SetJobGroupSettingsResponse
|
|
595
|
-
*/
|
|
596
|
-
export type SetJobGroupSettingsResponse = Message<"artworking.v1.SetJobGroupSettingsResponse"> & {
|
|
597
|
-
/**
|
|
598
|
-
* @generated from field: artworking.v1.JobGroup job_group = 1;
|
|
599
|
-
*/
|
|
600
|
-
jobGroup?: JobGroup;
|
|
601
|
-
};
|
|
602
|
-
/**
|
|
603
|
-
* Describes the message artworking.v1.SetJobGroupSettingsResponse.
|
|
604
|
-
* Use `create(SetJobGroupSettingsResponseSchema)` to create a new message.
|
|
605
|
-
*/
|
|
606
|
-
export declare const SetJobGroupSettingsResponseSchema: GenMessage<SetJobGroupSettingsResponse>;
|
|
607
|
-
/**
|
|
608
|
-
* DeleteJobGroup
|
|
609
|
-
*
|
|
610
|
-
* @generated from message artworking.v1.DeleteJobGroupRequest
|
|
611
|
-
*/
|
|
612
|
-
export type DeleteJobGroupRequest = Message<"artworking.v1.DeleteJobGroupRequest"> & {
|
|
613
|
-
/**
|
|
614
|
-
* JobGroup ID
|
|
615
|
-
*
|
|
616
|
-
* @generated from field: string id = 1;
|
|
617
|
-
*/
|
|
618
|
-
id: string;
|
|
619
|
-
/**
|
|
620
|
-
* Delete all Jobs in the group (default: true)
|
|
621
|
-
*
|
|
622
|
-
* @generated from field: bool cascade = 2;
|
|
623
|
-
*/
|
|
624
|
-
cascade: boolean;
|
|
625
|
-
};
|
|
626
|
-
/**
|
|
627
|
-
* Describes the message artworking.v1.DeleteJobGroupRequest.
|
|
628
|
-
* Use `create(DeleteJobGroupRequestSchema)` to create a new message.
|
|
629
|
-
*/
|
|
630
|
-
export declare const DeleteJobGroupRequestSchema: GenMessage<DeleteJobGroupRequest>;
|
|
631
|
-
/**
|
|
632
|
-
* @generated from message artworking.v1.DeleteJobGroupResponse
|
|
633
|
-
*/
|
|
634
|
-
export type DeleteJobGroupResponse = Message<"artworking.v1.DeleteJobGroupResponse"> & {
|
|
635
|
-
/**
|
|
636
|
-
* @generated from field: bool ok = 1;
|
|
637
|
-
*/
|
|
638
|
-
ok: boolean;
|
|
639
|
-
/**
|
|
640
|
-
* Number of Jobs deleted
|
|
641
|
-
*
|
|
642
|
-
* @generated from field: int32 deleted_jobs_count = 2;
|
|
643
|
-
*/
|
|
644
|
-
deletedJobsCount: number;
|
|
645
|
-
};
|
|
646
|
-
/**
|
|
647
|
-
* Describes the message artworking.v1.DeleteJobGroupResponse.
|
|
648
|
-
* Use `create(DeleteJobGroupResponseSchema)` to create a new message.
|
|
649
|
-
*/
|
|
650
|
-
export declare const DeleteJobGroupResponseSchema: GenMessage<DeleteJobGroupResponse>;
|
|
651
|
-
/**
|
|
652
|
-
* FindJobGroup
|
|
653
|
-
*
|
|
654
|
-
* @generated from enum artworking.v1.JobGroupFilterType
|
|
655
|
-
*/
|
|
656
|
-
export declare enum JobGroupFilterType {
|
|
657
|
-
/**
|
|
658
|
-
* @generated from enum value: JOB_GROUP_FILTER_TYPE_UNDEFINED = 0;
|
|
659
|
-
*/
|
|
660
|
-
UNDEFINED = 0,
|
|
661
|
-
/**
|
|
662
|
-
* JobGroup ref
|
|
663
|
-
*
|
|
664
|
-
* @generated from enum value: JOB_GROUP_FILTER_TYPE_REF = 1;
|
|
665
|
-
*/
|
|
666
|
-
REF = 1,
|
|
667
|
-
/**
|
|
668
|
-
* Order reference
|
|
669
|
-
*
|
|
670
|
-
* @generated from enum value: JOB_GROUP_FILTER_TYPE_ORDER_REF = 2;
|
|
671
|
-
*/
|
|
672
|
-
ORDER_REF = 2,
|
|
673
|
-
/**
|
|
674
|
-
* Contact email
|
|
675
|
-
*
|
|
676
|
-
* @generated from enum value: JOB_GROUP_FILTER_TYPE_CONTACT_EMAIL = 3;
|
|
677
|
-
*/
|
|
678
|
-
CONTACT_EMAIL = 3,
|
|
679
|
-
/**
|
|
680
|
-
* Company name
|
|
681
|
-
*
|
|
682
|
-
* @generated from enum value: JOB_GROUP_FILTER_TYPE_COMPANY_NAME = 4;
|
|
683
|
-
*/
|
|
684
|
-
COMPANY_NAME = 4,
|
|
685
|
-
/**
|
|
686
|
-
* Contact name
|
|
687
|
-
*
|
|
688
|
-
* @generated from enum value: JOB_GROUP_FILTER_TYPE_CONTACT_NAME = 5;
|
|
689
|
-
*/
|
|
690
|
-
CONTACT_NAME = 5,
|
|
691
|
-
/**
|
|
692
|
-
* External reference filter
|
|
693
|
-
*
|
|
694
|
-
* @generated from enum value: JOB_GROUP_FILTER_TYPE_EXTERNAL_REF = 6;
|
|
695
|
-
*/
|
|
696
|
-
EXTERNAL_REF = 6
|
|
697
|
-
}
|
|
698
|
-
/**
|
|
699
|
-
* Describes the enum artworking.v1.JobGroupFilterType.
|
|
700
|
-
*/
|
|
701
|
-
export declare const JobGroupFilterTypeSchema: GenEnum<JobGroupFilterType>;
|
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
// @generated by protoc-gen-es v2.10.1 with parameter "target=ts,import_extension=js"
|
|
2
2
|
// @generated from file artworking/v1/job-group.proto (package artworking.v1, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
|
-
import {
|
|
4
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
5
|
import { file_artworking_v1_artwork } from "./artwork_pb.js";
|
|
6
6
|
import { file_common_v1_unit } from "../../common/v1/unit_pb.js";
|
|
7
|
-
import { file_common_v1_query } from "../../common/v1/query_pb.js";
|
|
8
7
|
import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
9
8
|
/**
|
|
10
9
|
* Describes the file artworking/v1/job-group.proto.
|
|
11
10
|
*/
|
|
12
|
-
export const file_artworking_v1_job_group = /*@__PURE__*/ fileDesc("
|
|
11
|
+
export const file_artworking_v1_job_group = /*@__PURE__*/ fileDesc("Ch1hcnR3b3JraW5nL3YxL2pvYi1ncm91cC5wcm90bxINYXJ0d29ya2luZy52MSK0BAoISm9iR3JvdXASCgoCaWQYASABKAkSLgoKY3JlYXRlZF9hdBgCIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASLgoKdXBkYXRlZF9hdBgDIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASEgoKY3VzdG9tX3VpZBgEIAEoCRILCgNyZWYYBSABKAkSEgoKY29udGFjdF9pZBgGIAEoAxITCgtjb250YWN0X3JlZhgHIAEoCRIUCgxjb250YWN0X25hbWUYCCABKAkSEgoKY29tcGFueV9pZBgJIAEoAxIUCgxjb21wYW55X25hbWUYCiABKAkSEwoLc3VwcGxpZXJfaWQYCyABKAMSFQoNc3VwcGxpZXJfbmFtZRgMIAEoCRIRCglvcmRlcl9yZWYYDSABKAkSFwoPbGVhZHRpbWVfbGVuZ3RoGA4gASgFEj8KFGxlYWR0aW1lX2xlbmd0aF91bml0GA8gASgOMiEuYXJ0d29ya2luZy52MS5MZWFkdGltZUxlbmd0aFVuaXQSEQoJdGVtcG9yYXJ5GBAgASgIEhEKCWpvYl9jb3VudBgRIAEoBRIyCg1leHRlcm5hbF9saW5rGBIgASgLMhsuYXJ0d29ya2luZy52MS5FeHRlcm5hbExpbmsSFQoNY29udGFjdF9lbWFpbBgTIAEoCRIoCghqb2JfdHlwZRgUIAEoDjIWLmFydHdvcmtpbmcudjEuSm9iVHlwZSK3AQoPSW50ZWdyYXRpb25EYXRhEhIKCmN1c3RvbV9yZWYYASABKAkSQwoLY3VzdG9tX2RhdGEYAiADKAsyLi5hcnR3b3JraW5nLnYxLkludGVncmF0aW9uRGF0YS5DdXN0b21EYXRhRW50cnkSGAoQaW50ZWdyYXRpb25fbmFtZRgDIAEoCRoxCg9DdXN0b21EYXRhRW50cnkSCwoDa2V5GAEgASgJEg0KBXZhbHVlGAIgASgJOgI4ASLUAgoXSW50ZWdyYXRpb25Kb2JHcm91cERhdGESEgoKY3VzdG9tX3JlZhgBIAEoCRJLCgtjdXN0b21fZGF0YRgCIAMoCzI2LmFydHdvcmtpbmcudjEuSW50ZWdyYXRpb25Kb2JHcm91cERhdGEuQ3VzdG9tRGF0YUVudHJ5EhgKEGludGVncmF0aW9uX25hbWUYAyABKAkSPgoEam9icxgEIAMoCzIwLmFydHdvcmtpbmcudjEuSW50ZWdyYXRpb25Kb2JHcm91cERhdGEuSm9ic0VudHJ5GjEKD0N1c3RvbURhdGFFbnRyeRILCgNrZXkYASABKAkSDQoFdmFsdWUYAiABKAk6AjgBGksKCUpvYnNFbnRyeRILCgNrZXkYASABKAkSLQoFdmFsdWUYAiABKAsyHi5hcnR3b3JraW5nLnYxLkludGVncmF0aW9uRGF0YToCOAEiiAUKFUNyZWF0ZUpvYkdyb3VwUmVxdWVzdBISCgpjb250YWN0X2lkGAEgASgDEhQKDGNvbnRhY3RfbmFtZRgCIAEoCRIRCglvcmRlcl9yZWYYAyABKAkSSQoJam9iUGFyYW1zGAQgAygLMjYuYXJ0d29ya2luZy52MS5DcmVhdGVKb2JHcm91cFJlcXVlc3QuSm9iR3JvdXBKb2JQYXJhbXMSEQoJdGVtcG9yYXJ5GAUgASgIEg8KB2FwaV9rZXkYBiABKAkSEgoKY3VzdG9tX3VpZBgHIAEoCRISCgpjb21wYW55X2lkGAggASgDEhQKDGNvbXBhbnlfbmFtZRgJIAEoCRITCgtjb250YWN0X3JlZhgKIAEoCRI3Cg1leHRlcm5hbF9saW5rGAsgASgLMhsuYXJ0d29ya2luZy52MS5FeHRlcm5hbExpbmtIAIgBARIVCg1jb250YWN0X2VtYWlsGAwgASgJEkUKEGludGVncmF0aW9uX2RhdGEYDSABKAsyJi5hcnR3b3JraW5nLnYxLkludGVncmF0aW9uSm9iR3JvdXBEYXRhSAGIAQESKAoIam9iX3R5cGUYDiABKA4yFi5hcnR3b3JraW5nLnYxLkpvYlR5cGUSEwoLc3VwcGxpZXJfaWQYDyABKAMSFgoOc3VwcGxpZXJfZW1haWwYECABKAkaWwoRSm9iR3JvdXBKb2JQYXJhbXMSDAoEbmFtZRgBIAEoCRIUCgdtZXNzYWdlGAIgASgJSACIAQESFgoObWVkaWFfaXRlbV9pZHMYAyADKANCCgoIX21lc3NhZ2VCEAoOX2V4dGVybmFsX2xpbmtCEwoRX2ludGVncmF0aW9uX2RhdGEiZgoWQ3JlYXRlSm9iR3JvdXBSZXNwb25zZRIqCglqb2JfZ3JvdXAYASABKAsyFy5hcnR3b3JraW5nLnYxLkpvYkdyb3VwEiAKBGpvYnMYAiADKAsyEi5hcnR3b3JraW5nLnYxLkpvYkJQWk5iaXRidWNrZXQub3JnL2t1ZG91ay9hcnR3b3JrZXItYmFja2VuZC9wcm90by9nZW4vZ28vYXJ0d29ya2luZy92MTthcnR3b3JraW5ndjFiBnByb3RvMw", [file_artworking_v1_artwork, file_common_v1_unit, file_google_protobuf_timestamp]);
|
|
13
12
|
/**
|
|
14
13
|
* Describes the message artworking.v1.JobGroup.
|
|
15
14
|
* Use `create(JobGroupSchema)` to create a new message.
|
|
@@ -40,131 +39,4 @@ export const CreateJobGroupRequest_JobGroupJobParamsSchema = /*@__PURE__*/ messa
|
|
|
40
39
|
* Use `create(CreateJobGroupResponseSchema)` to create a new message.
|
|
41
40
|
*/
|
|
42
41
|
export const CreateJobGroupResponseSchema = /*@__PURE__*/ messageDesc(file_artworking_v1_job_group, 4);
|
|
43
|
-
/**
|
|
44
|
-
* Describes the message artworking.v1.GetJobGroupByIdRequest.
|
|
45
|
-
* Use `create(GetJobGroupByIdRequestSchema)` to create a new message.
|
|
46
|
-
*/
|
|
47
|
-
export const GetJobGroupByIdRequestSchema = /*@__PURE__*/ messageDesc(file_artworking_v1_job_group, 5);
|
|
48
|
-
/**
|
|
49
|
-
* Describes the message artworking.v1.GetJobGroupByIdResponse.
|
|
50
|
-
* Use `create(GetJobGroupByIdResponseSchema)` to create a new message.
|
|
51
|
-
*/
|
|
52
|
-
export const GetJobGroupByIdResponseSchema = /*@__PURE__*/ messageDesc(file_artworking_v1_job_group, 6);
|
|
53
|
-
/**
|
|
54
|
-
* Describes the message artworking.v1.GetJobGroupByUriRequest.
|
|
55
|
-
* Use `create(GetJobGroupByUriRequestSchema)` to create a new message.
|
|
56
|
-
*/
|
|
57
|
-
export const GetJobGroupByUriRequestSchema = /*@__PURE__*/ messageDesc(file_artworking_v1_job_group, 7);
|
|
58
|
-
/**
|
|
59
|
-
* Describes the message artworking.v1.GetJobGroupByUriResponse.
|
|
60
|
-
* Use `create(GetJobGroupByUriResponseSchema)` to create a new message.
|
|
61
|
-
*/
|
|
62
|
-
export const GetJobGroupByUriResponseSchema = /*@__PURE__*/ messageDesc(file_artworking_v1_job_group, 8);
|
|
63
|
-
/**
|
|
64
|
-
* Describes the message artworking.v1.GetJobsByJobGroupUriRequest.
|
|
65
|
-
* Use `create(GetJobsByJobGroupUriRequestSchema)` to create a new message.
|
|
66
|
-
*/
|
|
67
|
-
export const GetJobsByJobGroupUriRequestSchema = /*@__PURE__*/ messageDesc(file_artworking_v1_job_group, 9);
|
|
68
|
-
/**
|
|
69
|
-
* Describes the message artworking.v1.GetJobsByJobGroupUriResponse.
|
|
70
|
-
* Use `create(GetJobsByJobGroupUriResponseSchema)` to create a new message.
|
|
71
|
-
*/
|
|
72
|
-
export const GetJobsByJobGroupUriResponseSchema = /*@__PURE__*/ messageDesc(file_artworking_v1_job_group, 10);
|
|
73
|
-
/**
|
|
74
|
-
* Describes the message artworking.v1.FilterJobGroupRequestFilter.
|
|
75
|
-
* Use `create(FilterJobGroupRequestFilterSchema)` to create a new message.
|
|
76
|
-
*/
|
|
77
|
-
export const FilterJobGroupRequestFilterSchema = /*@__PURE__*/ messageDesc(file_artworking_v1_job_group, 11);
|
|
78
|
-
/**
|
|
79
|
-
* Describes the message artworking.v1.FindJobGroupRequest.
|
|
80
|
-
* Use `create(FindJobGroupRequestSchema)` to create a new message.
|
|
81
|
-
*/
|
|
82
|
-
export const FindJobGroupRequestSchema = /*@__PURE__*/ messageDesc(file_artworking_v1_job_group, 12);
|
|
83
|
-
/**
|
|
84
|
-
* Describes the message artworking.v1.FindJobGroupResponse.
|
|
85
|
-
* Use `create(FindJobGroupResponseSchema)` to create a new message.
|
|
86
|
-
*/
|
|
87
|
-
export const FindJobGroupResponseSchema = /*@__PURE__*/ messageDesc(file_artworking_v1_job_group, 13);
|
|
88
|
-
/**
|
|
89
|
-
* Describes the message artworking.v1.UpdateJobGroupRequest.
|
|
90
|
-
* Use `create(UpdateJobGroupRequestSchema)` to create a new message.
|
|
91
|
-
*/
|
|
92
|
-
export const UpdateJobGroupRequestSchema = /*@__PURE__*/ messageDesc(file_artworking_v1_job_group, 14);
|
|
93
|
-
/**
|
|
94
|
-
* Describes the message artworking.v1.UpdateJobGroupResponse.
|
|
95
|
-
* Use `create(UpdateJobGroupResponseSchema)` to create a new message.
|
|
96
|
-
*/
|
|
97
|
-
export const UpdateJobGroupResponseSchema = /*@__PURE__*/ messageDesc(file_artworking_v1_job_group, 15);
|
|
98
|
-
/**
|
|
99
|
-
* Describes the message artworking.v1.SetJobGroupSettingsRequest.
|
|
100
|
-
* Use `create(SetJobGroupSettingsRequestSchema)` to create a new message.
|
|
101
|
-
*/
|
|
102
|
-
export const SetJobGroupSettingsRequestSchema = /*@__PURE__*/ messageDesc(file_artworking_v1_job_group, 16);
|
|
103
|
-
/**
|
|
104
|
-
* Describes the message artworking.v1.SetJobGroupSettingsResponse.
|
|
105
|
-
* Use `create(SetJobGroupSettingsResponseSchema)` to create a new message.
|
|
106
|
-
*/
|
|
107
|
-
export const SetJobGroupSettingsResponseSchema = /*@__PURE__*/ messageDesc(file_artworking_v1_job_group, 17);
|
|
108
|
-
/**
|
|
109
|
-
* Describes the message artworking.v1.DeleteJobGroupRequest.
|
|
110
|
-
* Use `create(DeleteJobGroupRequestSchema)` to create a new message.
|
|
111
|
-
*/
|
|
112
|
-
export const DeleteJobGroupRequestSchema = /*@__PURE__*/ messageDesc(file_artworking_v1_job_group, 18);
|
|
113
|
-
/**
|
|
114
|
-
* Describes the message artworking.v1.DeleteJobGroupResponse.
|
|
115
|
-
* Use `create(DeleteJobGroupResponseSchema)` to create a new message.
|
|
116
|
-
*/
|
|
117
|
-
export const DeleteJobGroupResponseSchema = /*@__PURE__*/ messageDesc(file_artworking_v1_job_group, 19);
|
|
118
|
-
/**
|
|
119
|
-
* FindJobGroup
|
|
120
|
-
*
|
|
121
|
-
* @generated from enum artworking.v1.JobGroupFilterType
|
|
122
|
-
*/
|
|
123
|
-
export var JobGroupFilterType;
|
|
124
|
-
(function (JobGroupFilterType) {
|
|
125
|
-
/**
|
|
126
|
-
* @generated from enum value: JOB_GROUP_FILTER_TYPE_UNDEFINED = 0;
|
|
127
|
-
*/
|
|
128
|
-
JobGroupFilterType[JobGroupFilterType["UNDEFINED"] = 0] = "UNDEFINED";
|
|
129
|
-
/**
|
|
130
|
-
* JobGroup ref
|
|
131
|
-
*
|
|
132
|
-
* @generated from enum value: JOB_GROUP_FILTER_TYPE_REF = 1;
|
|
133
|
-
*/
|
|
134
|
-
JobGroupFilterType[JobGroupFilterType["REF"] = 1] = "REF";
|
|
135
|
-
/**
|
|
136
|
-
* Order reference
|
|
137
|
-
*
|
|
138
|
-
* @generated from enum value: JOB_GROUP_FILTER_TYPE_ORDER_REF = 2;
|
|
139
|
-
*/
|
|
140
|
-
JobGroupFilterType[JobGroupFilterType["ORDER_REF"] = 2] = "ORDER_REF";
|
|
141
|
-
/**
|
|
142
|
-
* Contact email
|
|
143
|
-
*
|
|
144
|
-
* @generated from enum value: JOB_GROUP_FILTER_TYPE_CONTACT_EMAIL = 3;
|
|
145
|
-
*/
|
|
146
|
-
JobGroupFilterType[JobGroupFilterType["CONTACT_EMAIL"] = 3] = "CONTACT_EMAIL";
|
|
147
|
-
/**
|
|
148
|
-
* Company name
|
|
149
|
-
*
|
|
150
|
-
* @generated from enum value: JOB_GROUP_FILTER_TYPE_COMPANY_NAME = 4;
|
|
151
|
-
*/
|
|
152
|
-
JobGroupFilterType[JobGroupFilterType["COMPANY_NAME"] = 4] = "COMPANY_NAME";
|
|
153
|
-
/**
|
|
154
|
-
* Contact name
|
|
155
|
-
*
|
|
156
|
-
* @generated from enum value: JOB_GROUP_FILTER_TYPE_CONTACT_NAME = 5;
|
|
157
|
-
*/
|
|
158
|
-
JobGroupFilterType[JobGroupFilterType["CONTACT_NAME"] = 5] = "CONTACT_NAME";
|
|
159
|
-
/**
|
|
160
|
-
* External reference filter
|
|
161
|
-
*
|
|
162
|
-
* @generated from enum value: JOB_GROUP_FILTER_TYPE_EXTERNAL_REF = 6;
|
|
163
|
-
*/
|
|
164
|
-
JobGroupFilterType[JobGroupFilterType["EXTERNAL_REF"] = 6] = "EXTERNAL_REF";
|
|
165
|
-
})(JobGroupFilterType || (JobGroupFilterType = {}));
|
|
166
|
-
/**
|
|
167
|
-
* Describes the enum artworking.v1.JobGroupFilterType.
|
|
168
|
-
*/
|
|
169
|
-
export const JobGroupFilterTypeSchema = /*@__PURE__*/ enumDesc(file_artworking_v1_job_group, 0);
|
|
170
42
|
//# sourceMappingURL=job-group_pb.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"job-group_pb.js","sourceRoot":"","sources":["../../../src/artworking/v1/job-group_pb.ts"],"names":[],"mappings":"AAAA,qFAAqF;AACrF,4FAA4F;AAC5F,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,
|
|
1
|
+
{"version":3,"file":"job-group_pb.js","sourceRoot":"","sources":["../../../src/artworking/v1/job-group_pb.ts"],"names":[],"mappings":"AAAA,qFAAqF;AACrF,4FAA4F;AAC5F,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,0BAA0B,EAAE,MAAM,iBAAiB,CAAC;AAC7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AAEjE,OAAO,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAGxE;;GAEG;AACH,MAAM,CAAC,MAAM,4BAA4B,GAAY,aAAa,CAChE,QAAQ,CAAC,4lFAA4lF,EAAE,CAAC,0BAA0B,EAAE,mBAAmB,EAAE,8BAA8B,CAAC,CAAC,CAAC;AA2G5rF;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAyB,aAAa,CAC/D,WAAW,CAAC,4BAA4B,EAAE,CAAC,CAAC,CAAC;AAsB/C;;;GAGG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAgC,aAAa,CAC7E,WAAW,CAAC,4BAA4B,EAAE,CAAC,CAAC,CAAC;AA2B/C;;;GAGG;AACH,MAAM,CAAC,MAAM,6BAA6B,GAAwC,aAAa,CAC7F,WAAW,CAAC,4BAA4B,EAAE,CAAC,CAAC,CAAC;AA2F/C;;;GAGG;AACH,MAAM,CAAC,MAAM,2BAA2B,GAAsC,aAAa,CACzF,WAAW,CAAC,4BAA4B,EAAE,CAAC,CAAC,CAAC;AAsB/C;;;GAGG;AACH,MAAM,CAAC,MAAM,6CAA6C,GAAwD,aAAa,CAC7H,WAAW,CAAC,4BAA4B,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;AAiBlD;;;GAGG;AACH,MAAM,CAAC,MAAM,4BAA4B,GAAuC,aAAa,CAC3F,WAAW,CAAC,4BAA4B,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -471,12 +471,6 @@ export type CreateMediaItemRequest = Message<"media.v1.CreateMediaItemRequest">
|
|
|
471
471
|
* @generated from field: bool bleed_applied = 11;
|
|
472
472
|
*/
|
|
473
473
|
bleedApplied: boolean;
|
|
474
|
-
/**
|
|
475
|
-
* If true, don't trigger preview generation on create (for staging uploads)
|
|
476
|
-
*
|
|
477
|
-
* @generated from field: bool skip_preview_gen = 12;
|
|
478
|
-
*/
|
|
479
|
-
skipPreviewGen: boolean;
|
|
480
474
|
};
|
|
481
475
|
/**
|
|
482
476
|
* Describes the message media.v1.CreateMediaItemRequest.
|
|
@@ -838,26 +832,3 @@ export type GetFileTypeSupportResponse_ContentTypeSupport = Message<"media.v1.Ge
|
|
|
838
832
|
* Use `create(GetFileTypeSupportResponse_ContentTypeSupportSchema)` to create a new message.
|
|
839
833
|
*/
|
|
840
834
|
export declare const GetFileTypeSupportResponse_ContentTypeSupportSchema: GenMessage<GetFileTypeSupportResponse_ContentTypeSupport>;
|
|
841
|
-
/**
|
|
842
|
-
* @generated from message media.v1.TriggerPreviewGenerationRequest
|
|
843
|
-
*/
|
|
844
|
-
export type TriggerPreviewGenerationRequest = Message<"media.v1.TriggerPreviewGenerationRequest"> & {
|
|
845
|
-
/**
|
|
846
|
-
* @generated from field: repeated int64 media_item_ids = 1;
|
|
847
|
-
*/
|
|
848
|
-
mediaItemIds: bigint[];
|
|
849
|
-
};
|
|
850
|
-
/**
|
|
851
|
-
* Describes the message media.v1.TriggerPreviewGenerationRequest.
|
|
852
|
-
* Use `create(TriggerPreviewGenerationRequestSchema)` to create a new message.
|
|
853
|
-
*/
|
|
854
|
-
export declare const TriggerPreviewGenerationRequestSchema: GenMessage<TriggerPreviewGenerationRequest>;
|
|
855
|
-
/**
|
|
856
|
-
* @generated from message media.v1.TriggerPreviewGenerationResponse
|
|
857
|
-
*/
|
|
858
|
-
export type TriggerPreviewGenerationResponse = Message<"media.v1.TriggerPreviewGenerationResponse"> & {};
|
|
859
|
-
/**
|
|
860
|
-
* Describes the message media.v1.TriggerPreviewGenerationResponse.
|
|
861
|
-
* Use `create(TriggerPreviewGenerationResponseSchema)` to create a new message.
|
|
862
|
-
*/
|
|
863
|
-
export declare const TriggerPreviewGenerationResponseSchema: GenMessage<TriggerPreviewGenerationResponse>;
|