@kudo.io/artworker-grpc-client-ts 2.0.275 → 2.0.277
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/preflight/v2/preflight-batch_pb.d.ts +80 -1
- package/lib/preflight/v2/preflight-batch_pb.js +109 -1
- package/lib/preflight/v2/preflight-batch_pb.js.map +1 -1
- package/lib/preflight/v2/preflight_pb.d.ts +34 -12
- package/lib/preflight/v2/preflight_pb.js +64 -14
- package/lib/preflight/v2/preflight_pb.js.map +1 -1
- package/package.json +1 -1
- package/src/preflight/v2/preflight-batch_pb.ts +154 -1
- package/src/preflight/v2/preflight_pb.ts +74 -12
|
@@ -890,10 +890,6 @@ export class ImageChecks_Checks extends Message<ImageChecks_Checks> {
|
|
|
890
890
|
}
|
|
891
891
|
|
|
892
892
|
/**
|
|
893
|
-
* -----------------------------------------------------------------------
|
|
894
|
-
* Specialized Check messages
|
|
895
|
-
* -----------------------------------------------------------------------
|
|
896
|
-
*
|
|
897
893
|
* @generated from message preflight.v2.ColourCheck
|
|
898
894
|
*/
|
|
899
895
|
export class ColourCheck extends Message<ColourCheck> {
|
|
@@ -1637,10 +1633,43 @@ export class ImageResolutionCheck extends Message<ImageResolutionCheck> {
|
|
|
1637
1633
|
}
|
|
1638
1634
|
|
|
1639
1635
|
/**
|
|
1640
|
-
*
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1636
|
+
* @generated from message preflight.v2.PageCountCheckInput
|
|
1637
|
+
*/
|
|
1638
|
+
export class PageCountCheckInput extends Message<PageCountCheckInput> {
|
|
1639
|
+
/**
|
|
1640
|
+
* @generated from field: int32 expected_page_count = 1;
|
|
1641
|
+
*/
|
|
1642
|
+
expectedPageCount = 0;
|
|
1643
|
+
|
|
1644
|
+
constructor(data?: PartialMessage<PageCountCheckInput>) {
|
|
1645
|
+
super();
|
|
1646
|
+
proto3.util.initPartial(data, this);
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1650
|
+
static readonly typeName = "preflight.v2.PageCountCheckInput";
|
|
1651
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1652
|
+
{ no: 1, name: "expected_page_count", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
1653
|
+
]);
|
|
1654
|
+
|
|
1655
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PageCountCheckInput {
|
|
1656
|
+
return new PageCountCheckInput().fromBinary(bytes, options);
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1659
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PageCountCheckInput {
|
|
1660
|
+
return new PageCountCheckInput().fromJson(jsonValue, options);
|
|
1661
|
+
}
|
|
1662
|
+
|
|
1663
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PageCountCheckInput {
|
|
1664
|
+
return new PageCountCheckInput().fromJsonString(jsonString, options);
|
|
1665
|
+
}
|
|
1666
|
+
|
|
1667
|
+
static equals(a: PageCountCheckInput | PlainMessage<PageCountCheckInput> | undefined, b: PageCountCheckInput | PlainMessage<PageCountCheckInput> | undefined): boolean {
|
|
1668
|
+
return proto3.util.equals(PageCountCheckInput, a, b);
|
|
1669
|
+
}
|
|
1670
|
+
}
|
|
1671
|
+
|
|
1672
|
+
/**
|
|
1644
1673
|
* @generated from message preflight.v2.ColourCheckInput
|
|
1645
1674
|
*/
|
|
1646
1675
|
export class ColourCheckInput extends Message<ColourCheckInput> {
|
|
@@ -1964,10 +1993,43 @@ export class ImageResolutionCheckInput extends Message<ImageResolutionCheckInput
|
|
|
1964
1993
|
}
|
|
1965
1994
|
|
|
1966
1995
|
/**
|
|
1967
|
-
*
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1996
|
+
* @generated from message preflight.v2.PageCountCheckOutput
|
|
1997
|
+
*/
|
|
1998
|
+
export class PageCountCheckOutput extends Message<PageCountCheckOutput> {
|
|
1999
|
+
/**
|
|
2000
|
+
* @generated from field: int32 actual_page_count = 1;
|
|
2001
|
+
*/
|
|
2002
|
+
actualPageCount = 0;
|
|
2003
|
+
|
|
2004
|
+
constructor(data?: PartialMessage<PageCountCheckOutput>) {
|
|
2005
|
+
super();
|
|
2006
|
+
proto3.util.initPartial(data, this);
|
|
2007
|
+
}
|
|
2008
|
+
|
|
2009
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
2010
|
+
static readonly typeName = "preflight.v2.PageCountCheckOutput";
|
|
2011
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
2012
|
+
{ no: 1, name: "actual_page_count", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
2013
|
+
]);
|
|
2014
|
+
|
|
2015
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PageCountCheckOutput {
|
|
2016
|
+
return new PageCountCheckOutput().fromBinary(bytes, options);
|
|
2017
|
+
}
|
|
2018
|
+
|
|
2019
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PageCountCheckOutput {
|
|
2020
|
+
return new PageCountCheckOutput().fromJson(jsonValue, options);
|
|
2021
|
+
}
|
|
2022
|
+
|
|
2023
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PageCountCheckOutput {
|
|
2024
|
+
return new PageCountCheckOutput().fromJsonString(jsonString, options);
|
|
2025
|
+
}
|
|
2026
|
+
|
|
2027
|
+
static equals(a: PageCountCheckOutput | PlainMessage<PageCountCheckOutput> | undefined, b: PageCountCheckOutput | PlainMessage<PageCountCheckOutput> | undefined): boolean {
|
|
2028
|
+
return proto3.util.equals(PageCountCheckOutput, a, b);
|
|
2029
|
+
}
|
|
2030
|
+
}
|
|
2031
|
+
|
|
2032
|
+
/**
|
|
1971
2033
|
* @generated from message preflight.v2.ColourCheckOutput
|
|
1972
2034
|
*/
|
|
1973
2035
|
export class ColourCheckOutput extends Message<ColourCheckOutput> {
|