@kudo.io/artworker-grpc-client-ts 2.0.314 → 2.0.316
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/00-artworking_service_connectweb.d.ts +21 -0
- package/lib/artworking/v1/00-artworking_service_connectweb.js +21 -0
- package/lib/artworking/v1/00-artworking_service_connectweb.js.map +1 -1
- package/lib/artworking/v1/generalprofilerunner_pb.d.ts +4 -0
- package/lib/artworking/v1/generalprofilerunner_pb.js +5 -0
- package/lib/artworking/v1/generalprofilerunner_pb.js.map +1 -1
- package/lib/artworking/v1/profile-report_pb.d.ts +429 -0
- package/lib/artworking/v1/profile-report_pb.js +607 -0
- package/lib/artworking/v1/profile-report_pb.js.map +1 -0
- package/package.json +1 -1
- package/src/artworking/v1/00-artworking_service_connectweb.ts +21 -0
- package/src/artworking/v1/generalprofilerunner_pb.ts +7 -1
- package/src/artworking/v1/profile-report_pb.ts +785 -0
|
@@ -5,6 +5,7 @@ import { GetLeadtimeInfoRequest, GetLeadtimeInfoResponse, GetLeadtimeSettingsReq
|
|
|
5
5
|
import { FindJobLiteRequest, FindJobLiteResponse, GetJobLiteByIdRequest, GetJobLiteByIdResponse } from "./artworklite_pb.js";
|
|
6
6
|
import { AddTagToJobRequest, AddTagToJobResponse, CreateTagRequest, CreateTagResponse, GetRecentlyUsedTagsRequest, GetRecentlyUsedTagsResponse, RemoveTagFromJobRequest, RemoveTagFromJobResponse } from "./tag_pb.js";
|
|
7
7
|
import { CreateJobShareRequest, CreateJobShareResponse, DeactivateJobShareRequest, DeactivateJobShareResponse, GetJobShareRequest, GetJobShareResponse, GetShareStatsRequest, GetShareStatsResponse, ListJobSharesRequest, ListJobSharesResponse } from "./job-share_pb.js";
|
|
8
|
+
import { GetProfilePageReportRequest, GetProfilePageReportResponse, GetProfileReportRequest, GetProfileReportResponse } from "./profile-report_pb.js";
|
|
8
9
|
/**
|
|
9
10
|
* rpc CreateFileCollection (CreateFileCollectionRequest) returns (CreateFileCollectionResponse) {}
|
|
10
11
|
* rpc FindFileCollection (FindFileCollectionRequest) returns (FindFileCollectionResponse) {}
|
|
@@ -471,5 +472,25 @@ export declare const ArtworkingService: {
|
|
|
471
472
|
readonly O: typeof GetShareStatsResponse;
|
|
472
473
|
readonly kind: MethodKind.Unary;
|
|
473
474
|
};
|
|
475
|
+
/**
|
|
476
|
+
* Profile report RPCs
|
|
477
|
+
*
|
|
478
|
+
* @generated from rpc artworking.v1.ArtworkingService.GetProfileReport
|
|
479
|
+
*/
|
|
480
|
+
readonly getProfileReport: {
|
|
481
|
+
readonly name: "GetProfileReport";
|
|
482
|
+
readonly I: typeof GetProfileReportRequest;
|
|
483
|
+
readonly O: typeof GetProfileReportResponse;
|
|
484
|
+
readonly kind: MethodKind.Unary;
|
|
485
|
+
};
|
|
486
|
+
/**
|
|
487
|
+
* @generated from rpc artworking.v1.ArtworkingService.GetProfilePageReport
|
|
488
|
+
*/
|
|
489
|
+
readonly getProfilePageReport: {
|
|
490
|
+
readonly name: "GetProfilePageReport";
|
|
491
|
+
readonly I: typeof GetProfilePageReportRequest;
|
|
492
|
+
readonly O: typeof GetProfilePageReportResponse;
|
|
493
|
+
readonly kind: MethodKind.Unary;
|
|
494
|
+
};
|
|
474
495
|
};
|
|
475
496
|
};
|
|
@@ -12,6 +12,7 @@ const leadtime_pb_js_1 = require("./leadtime_pb.js");
|
|
|
12
12
|
const artworklite_pb_js_1 = require("./artworklite_pb.js");
|
|
13
13
|
const tag_pb_js_1 = require("./tag_pb.js");
|
|
14
14
|
const job_share_pb_js_1 = require("./job-share_pb.js");
|
|
15
|
+
const profile_report_pb_js_1 = require("./profile-report_pb.js");
|
|
15
16
|
/**
|
|
16
17
|
* rpc CreateFileCollection (CreateFileCollectionRequest) returns (CreateFileCollectionResponse) {}
|
|
17
18
|
* rpc FindFileCollection (FindFileCollectionRequest) returns (FindFileCollectionResponse) {}
|
|
@@ -478,6 +479,26 @@ exports.ArtworkingService = {
|
|
|
478
479
|
O: job_share_pb_js_1.GetShareStatsResponse,
|
|
479
480
|
kind: protobuf_1.MethodKind.Unary,
|
|
480
481
|
},
|
|
482
|
+
/**
|
|
483
|
+
* Profile report RPCs
|
|
484
|
+
*
|
|
485
|
+
* @generated from rpc artworking.v1.ArtworkingService.GetProfileReport
|
|
486
|
+
*/
|
|
487
|
+
getProfileReport: {
|
|
488
|
+
name: "GetProfileReport",
|
|
489
|
+
I: profile_report_pb_js_1.GetProfileReportRequest,
|
|
490
|
+
O: profile_report_pb_js_1.GetProfileReportResponse,
|
|
491
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
492
|
+
},
|
|
493
|
+
/**
|
|
494
|
+
* @generated from rpc artworking.v1.ArtworkingService.GetProfilePageReport
|
|
495
|
+
*/
|
|
496
|
+
getProfilePageReport: {
|
|
497
|
+
name: "GetProfilePageReport",
|
|
498
|
+
I: profile_report_pb_js_1.GetProfilePageReportRequest,
|
|
499
|
+
O: profile_report_pb_js_1.GetProfilePageReportResponse,
|
|
500
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
501
|
+
},
|
|
481
502
|
}
|
|
482
503
|
};
|
|
483
504
|
//# sourceMappingURL=00-artworking_service_connectweb.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"00-artworking_service_connectweb.js","sourceRoot":"","sources":["../../../src/artworking/v1/00-artworking_service_connectweb.ts"],"names":[],"mappings":";AAAA,0EAA0E;AAC1E,wGAAwG;AACxG,oBAAoB;AACpB,cAAc;;;AAEd,uDAAkF;AAClF,iDAAgD;AAChD,mDAAimD;AACjmD,qDAAoP;AACpP,2DAA6H;AAC7H,2CAAuN;AACvN,uDAA4Q;
|
|
1
|
+
{"version":3,"file":"00-artworking_service_connectweb.js","sourceRoot":"","sources":["../../../src/artworking/v1/00-artworking_service_connectweb.ts"],"names":[],"mappings":"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"}
|
|
@@ -27,6 +27,10 @@ export declare class GeneralProfileRunnerParams extends Message<GeneralProfileRu
|
|
|
27
27
|
* @generated from field: string process_name = 5;
|
|
28
28
|
*/
|
|
29
29
|
processName: string;
|
|
30
|
+
/**
|
|
31
|
+
* @generated from field: int64 pdf_profile_id = 6;
|
|
32
|
+
*/
|
|
33
|
+
pdfProfileId: bigint;
|
|
30
34
|
constructor(data?: PartialMessage<GeneralProfileRunnerParams>);
|
|
31
35
|
static readonly runtime: typeof proto3;
|
|
32
36
|
static readonly typeName = "artworking.v1.GeneralProfileRunnerParams";
|
|
@@ -29,6 +29,10 @@ class GeneralProfileRunnerParams extends protobuf_1.Message {
|
|
|
29
29
|
* @generated from field: string process_name = 5;
|
|
30
30
|
*/
|
|
31
31
|
this.processName = "";
|
|
32
|
+
/**
|
|
33
|
+
* @generated from field: int64 pdf_profile_id = 6;
|
|
34
|
+
*/
|
|
35
|
+
this.pdfProfileId = protobuf_1.protoInt64.zero;
|
|
32
36
|
protobuf_1.proto3.util.initPartial(data, this);
|
|
33
37
|
}
|
|
34
38
|
static fromBinary(bytes, options) {
|
|
@@ -53,6 +57,7 @@ GeneralProfileRunnerParams.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
|
53
57
|
{ no: 3, name: "output_filenames", kind: "message", T: GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams, repeated: true },
|
|
54
58
|
{ no: 4, name: "unit", kind: "enum", T: protobuf_1.proto3.getEnumType(unit_pb_js_1.MeasurementUnit) },
|
|
55
59
|
{ no: 5, name: "process_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
60
|
+
{ no: 6, name: "pdf_profile_id", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
|
|
56
61
|
]);
|
|
57
62
|
/**
|
|
58
63
|
* @generated from message artworking.v1.GeneralProfileRunnerParams.GeneralProfileRunnerOutputFilenameParams
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generalprofilerunner_pb.js","sourceRoot":"","sources":["../../../src/artworking/v1/generalprofilerunner_pb.ts"],"names":[],"mappings":";AAAA,iEAAiE;AACjE,uGAAuG;AACvG,oBAAoB;AACpB,cAAc;;;AAGd,
|
|
1
|
+
{"version":3,"file":"generalprofilerunner_pb.js","sourceRoot":"","sources":["../../../src/artworking/v1/generalprofilerunner_pb.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,429 @@
|
|
|
1
|
+
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
2
|
+
import { Message, proto3, Timestamp } from "@bufbuild/protobuf";
|
|
3
|
+
/**
|
|
4
|
+
* @generated from message artworking.v1.Report
|
|
5
|
+
*/
|
|
6
|
+
export declare class Report extends Message<Report> {
|
|
7
|
+
/**
|
|
8
|
+
* Unique identifier for the job
|
|
9
|
+
*
|
|
10
|
+
* @generated from field: string id = 1;
|
|
11
|
+
*/
|
|
12
|
+
id: string;
|
|
13
|
+
/**
|
|
14
|
+
* Timestamp of when the job was created
|
|
15
|
+
*
|
|
16
|
+
* @generated from field: google.protobuf.Timestamp created_at = 2;
|
|
17
|
+
*/
|
|
18
|
+
createdAt?: Timestamp;
|
|
19
|
+
/**
|
|
20
|
+
* Timestamp of when the job was last updated
|
|
21
|
+
*
|
|
22
|
+
* @generated from field: google.protobuf.Timestamp updated_at = 3;
|
|
23
|
+
*/
|
|
24
|
+
updatedAt?: Timestamp;
|
|
25
|
+
/**
|
|
26
|
+
* @generated from field: int64 media_item_id = 4;
|
|
27
|
+
*/
|
|
28
|
+
mediaItemId: bigint;
|
|
29
|
+
/**
|
|
30
|
+
* @generated from field: repeated artworking.v1.Entry errors = 5;
|
|
31
|
+
*/
|
|
32
|
+
errors: Entry[];
|
|
33
|
+
/**
|
|
34
|
+
* @generated from field: repeated artworking.v1.Entry warnings = 6;
|
|
35
|
+
*/
|
|
36
|
+
warnings: Entry[];
|
|
37
|
+
/**
|
|
38
|
+
* @generated from field: repeated artworking.v1.Entry infos = 7;
|
|
39
|
+
*/
|
|
40
|
+
infos: Entry[];
|
|
41
|
+
/**
|
|
42
|
+
* @generated from field: artworking.v1.DocumentData stats = 8;
|
|
43
|
+
*/
|
|
44
|
+
stats?: DocumentData;
|
|
45
|
+
constructor(data?: PartialMessage<Report>);
|
|
46
|
+
static readonly runtime: typeof proto3;
|
|
47
|
+
static readonly typeName = "artworking.v1.Report";
|
|
48
|
+
static readonly fields: FieldList;
|
|
49
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Report;
|
|
50
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Report;
|
|
51
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Report;
|
|
52
|
+
static equals(a: Report | PlainMessage<Report> | undefined, b: Report | PlainMessage<Report> | undefined): boolean;
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* @generated from message artworking.v1.DocumentData
|
|
56
|
+
*/
|
|
57
|
+
export declare class DocumentData extends Message<DocumentData> {
|
|
58
|
+
/**
|
|
59
|
+
* @generated from field: int32 total_errors = 1;
|
|
60
|
+
*/
|
|
61
|
+
totalErrors: number;
|
|
62
|
+
/**
|
|
63
|
+
* @generated from field: int32 total_warnings = 2;
|
|
64
|
+
*/
|
|
65
|
+
totalWarnings: number;
|
|
66
|
+
/**
|
|
67
|
+
* @generated from field: int32 total_info = 3;
|
|
68
|
+
*/
|
|
69
|
+
totalInfo: number;
|
|
70
|
+
/**
|
|
71
|
+
* @generated from field: int32 error_hits = 4;
|
|
72
|
+
*/
|
|
73
|
+
errorHits: number;
|
|
74
|
+
/**
|
|
75
|
+
* @generated from field: int32 warning_hits = 5;
|
|
76
|
+
*/
|
|
77
|
+
warningHits: number;
|
|
78
|
+
/**
|
|
79
|
+
* @generated from field: int32 info_hits = 6;
|
|
80
|
+
*/
|
|
81
|
+
infoHits: number;
|
|
82
|
+
constructor(data?: PartialMessage<DocumentData>);
|
|
83
|
+
static readonly runtime: typeof proto3;
|
|
84
|
+
static readonly typeName = "artworking.v1.DocumentData";
|
|
85
|
+
static readonly fields: FieldList;
|
|
86
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DocumentData;
|
|
87
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DocumentData;
|
|
88
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DocumentData;
|
|
89
|
+
static equals(a: DocumentData | PlainMessage<DocumentData> | undefined, b: DocumentData | PlainMessage<DocumentData> | undefined): boolean;
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* @generated from message artworking.v1.PageReport
|
|
93
|
+
*/
|
|
94
|
+
export declare class PageReport extends Message<PageReport> {
|
|
95
|
+
/**
|
|
96
|
+
* Unique identifier for the job
|
|
97
|
+
*
|
|
98
|
+
* @generated from field: string id = 1;
|
|
99
|
+
*/
|
|
100
|
+
id: string;
|
|
101
|
+
/**
|
|
102
|
+
* Timestamp of when the job was created
|
|
103
|
+
*
|
|
104
|
+
* @generated from field: google.protobuf.Timestamp created_at = 2;
|
|
105
|
+
*/
|
|
106
|
+
createdAt?: Timestamp;
|
|
107
|
+
/**
|
|
108
|
+
* Timestamp of when the job was last updated
|
|
109
|
+
*
|
|
110
|
+
* @generated from field: google.protobuf.Timestamp updated_at = 3;
|
|
111
|
+
*/
|
|
112
|
+
updatedAt?: Timestamp;
|
|
113
|
+
/**
|
|
114
|
+
* @generated from field: int64 media_item_id = 4;
|
|
115
|
+
*/
|
|
116
|
+
mediaItemId: bigint;
|
|
117
|
+
/**
|
|
118
|
+
* @generated from field: int32 page = 5;
|
|
119
|
+
*/
|
|
120
|
+
page: number;
|
|
121
|
+
/**
|
|
122
|
+
* @generated from field: repeated artworking.v1.Entry errors = 6;
|
|
123
|
+
*/
|
|
124
|
+
errors: Entry[];
|
|
125
|
+
/**
|
|
126
|
+
* @generated from field: repeated artworking.v1.Entry warnings = 7;
|
|
127
|
+
*/
|
|
128
|
+
warnings: Entry[];
|
|
129
|
+
/**
|
|
130
|
+
* @generated from field: repeated artworking.v1.Entry infos = 8;
|
|
131
|
+
*/
|
|
132
|
+
infos: Entry[];
|
|
133
|
+
/**
|
|
134
|
+
* @generated from field: artworking.v1.DocumentData stats = 9;
|
|
135
|
+
*/
|
|
136
|
+
stats?: DocumentData;
|
|
137
|
+
constructor(data?: PartialMessage<PageReport>);
|
|
138
|
+
static readonly runtime: typeof proto3;
|
|
139
|
+
static readonly typeName = "artworking.v1.PageReport";
|
|
140
|
+
static readonly fields: FieldList;
|
|
141
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PageReport;
|
|
142
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PageReport;
|
|
143
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PageReport;
|
|
144
|
+
static equals(a: PageReport | PlainMessage<PageReport> | undefined, b: PageReport | PlainMessage<PageReport> | undefined): boolean;
|
|
145
|
+
}
|
|
146
|
+
/**
|
|
147
|
+
* @generated from message artworking.v1.Entry
|
|
148
|
+
*/
|
|
149
|
+
export declare class Entry extends Message<Entry> {
|
|
150
|
+
/**
|
|
151
|
+
* @generated from field: string rule_id = 1;
|
|
152
|
+
*/
|
|
153
|
+
ruleId: string;
|
|
154
|
+
/**
|
|
155
|
+
* @generated from field: string dict_key = 2;
|
|
156
|
+
*/
|
|
157
|
+
dictKey: string;
|
|
158
|
+
/**
|
|
159
|
+
* @generated from field: string name = 3;
|
|
160
|
+
*/
|
|
161
|
+
name: string;
|
|
162
|
+
/**
|
|
163
|
+
* @generated from field: string comment = 4;
|
|
164
|
+
*/
|
|
165
|
+
comment: string;
|
|
166
|
+
/**
|
|
167
|
+
* @generated from field: string severity = 5;
|
|
168
|
+
*/
|
|
169
|
+
severity: string;
|
|
170
|
+
/**
|
|
171
|
+
* @generated from field: repeated artworking.v1.HitDetail hits = 6;
|
|
172
|
+
*/
|
|
173
|
+
hits: HitDetail[];
|
|
174
|
+
constructor(data?: PartialMessage<Entry>);
|
|
175
|
+
static readonly runtime: typeof proto3;
|
|
176
|
+
static readonly typeName = "artworking.v1.Entry";
|
|
177
|
+
static readonly fields: FieldList;
|
|
178
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Entry;
|
|
179
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Entry;
|
|
180
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Entry;
|
|
181
|
+
static equals(a: Entry | PlainMessage<Entry> | undefined, b: Entry | PlainMessage<Entry> | undefined): boolean;
|
|
182
|
+
}
|
|
183
|
+
/**
|
|
184
|
+
* @generated from message artworking.v1.HitDetail
|
|
185
|
+
*/
|
|
186
|
+
export declare class HitDetail extends Message<HitDetail> {
|
|
187
|
+
/**
|
|
188
|
+
* @generated from field: string type = 1;
|
|
189
|
+
*/
|
|
190
|
+
type: string;
|
|
191
|
+
/**
|
|
192
|
+
* @generated from field: string page = 2;
|
|
193
|
+
*/
|
|
194
|
+
page: string;
|
|
195
|
+
/**
|
|
196
|
+
* @generated from field: artworking.v1.BoundingBox bounds = 3;
|
|
197
|
+
*/
|
|
198
|
+
bounds?: BoundingBox;
|
|
199
|
+
/**
|
|
200
|
+
* @generated from field: optional artworking.v1.TextInfo text_info = 4;
|
|
201
|
+
*/
|
|
202
|
+
textInfo?: TextInfo;
|
|
203
|
+
/**
|
|
204
|
+
* @generated from field: optional artworking.v1.ImageInfo image_info = 5;
|
|
205
|
+
*/
|
|
206
|
+
imageInfo?: ImageInfo;
|
|
207
|
+
/**
|
|
208
|
+
* @generated from field: optional artworking.v1.GraphicsInfo graphics_info = 6;
|
|
209
|
+
*/
|
|
210
|
+
graphicsInfo?: GraphicsInfo;
|
|
211
|
+
constructor(data?: PartialMessage<HitDetail>);
|
|
212
|
+
static readonly runtime: typeof proto3;
|
|
213
|
+
static readonly typeName = "artworking.v1.HitDetail";
|
|
214
|
+
static readonly fields: FieldList;
|
|
215
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): HitDetail;
|
|
216
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): HitDetail;
|
|
217
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): HitDetail;
|
|
218
|
+
static equals(a: HitDetail | PlainMessage<HitDetail> | undefined, b: HitDetail | PlainMessage<HitDetail> | undefined): boolean;
|
|
219
|
+
}
|
|
220
|
+
/**
|
|
221
|
+
* @generated from message artworking.v1.BoundingBox
|
|
222
|
+
*/
|
|
223
|
+
export declare class BoundingBox extends Message<BoundingBox> {
|
|
224
|
+
/**
|
|
225
|
+
* Lower-left X
|
|
226
|
+
*
|
|
227
|
+
* @generated from field: string llx = 1;
|
|
228
|
+
*/
|
|
229
|
+
llx: string;
|
|
230
|
+
/**
|
|
231
|
+
* Lower-left Y
|
|
232
|
+
*
|
|
233
|
+
* @generated from field: string lly = 2;
|
|
234
|
+
*/
|
|
235
|
+
lly: string;
|
|
236
|
+
/**
|
|
237
|
+
* Upper-right X
|
|
238
|
+
*
|
|
239
|
+
* @generated from field: string urx = 3;
|
|
240
|
+
*/
|
|
241
|
+
urx: string;
|
|
242
|
+
/**
|
|
243
|
+
* Upper-right Y
|
|
244
|
+
*
|
|
245
|
+
* @generated from field: string ury = 4;
|
|
246
|
+
*/
|
|
247
|
+
ury: string;
|
|
248
|
+
constructor(data?: PartialMessage<BoundingBox>);
|
|
249
|
+
static readonly runtime: typeof proto3;
|
|
250
|
+
static readonly typeName = "artworking.v1.BoundingBox";
|
|
251
|
+
static readonly fields: FieldList;
|
|
252
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BoundingBox;
|
|
253
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BoundingBox;
|
|
254
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BoundingBox;
|
|
255
|
+
static equals(a: BoundingBox | PlainMessage<BoundingBox> | undefined, b: BoundingBox | PlainMessage<BoundingBox> | undefined): boolean;
|
|
256
|
+
}
|
|
257
|
+
/**
|
|
258
|
+
* @generated from message artworking.v1.TextInfo
|
|
259
|
+
*/
|
|
260
|
+
export declare class TextInfo extends Message<TextInfo> {
|
|
261
|
+
/**
|
|
262
|
+
* @generated from field: string font_id = 1;
|
|
263
|
+
*/
|
|
264
|
+
fontId: string;
|
|
265
|
+
/**
|
|
266
|
+
* @generated from field: string fill_colorspace = 2;
|
|
267
|
+
*/
|
|
268
|
+
fillColorspace: string;
|
|
269
|
+
/**
|
|
270
|
+
* @generated from field: string fill_colorant_values = 3;
|
|
271
|
+
*/
|
|
272
|
+
fillColorantValues: string;
|
|
273
|
+
/**
|
|
274
|
+
* @generated from field: string current_font_size = 4;
|
|
275
|
+
*/
|
|
276
|
+
currentFontSize: string;
|
|
277
|
+
constructor(data?: PartialMessage<TextInfo>);
|
|
278
|
+
static readonly runtime: typeof proto3;
|
|
279
|
+
static readonly typeName = "artworking.v1.TextInfo";
|
|
280
|
+
static readonly fields: FieldList;
|
|
281
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TextInfo;
|
|
282
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TextInfo;
|
|
283
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TextInfo;
|
|
284
|
+
static equals(a: TextInfo | PlainMessage<TextInfo> | undefined, b: TextInfo | PlainMessage<TextInfo> | undefined): boolean;
|
|
285
|
+
}
|
|
286
|
+
/**
|
|
287
|
+
* @generated from message artworking.v1.ImageInfo
|
|
288
|
+
*/
|
|
289
|
+
export declare class ImageInfo extends Message<ImageInfo> {
|
|
290
|
+
/**
|
|
291
|
+
* @generated from field: string image_id = 1;
|
|
292
|
+
*/
|
|
293
|
+
imageId: string;
|
|
294
|
+
/**
|
|
295
|
+
* Vertical PPI
|
|
296
|
+
*
|
|
297
|
+
* @generated from field: string v_ppi = 2;
|
|
298
|
+
*/
|
|
299
|
+
vPpi: string;
|
|
300
|
+
/**
|
|
301
|
+
* Horizontal PPI
|
|
302
|
+
*
|
|
303
|
+
* @generated from field: string h_ppi = 3;
|
|
304
|
+
*/
|
|
305
|
+
hPpi: string;
|
|
306
|
+
constructor(data?: PartialMessage<ImageInfo>);
|
|
307
|
+
static readonly runtime: typeof proto3;
|
|
308
|
+
static readonly typeName = "artworking.v1.ImageInfo";
|
|
309
|
+
static readonly fields: FieldList;
|
|
310
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ImageInfo;
|
|
311
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ImageInfo;
|
|
312
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ImageInfo;
|
|
313
|
+
static equals(a: ImageInfo | PlainMessage<ImageInfo> | undefined, b: ImageInfo | PlainMessage<ImageInfo> | undefined): boolean;
|
|
314
|
+
}
|
|
315
|
+
/**
|
|
316
|
+
* @generated from message artworking.v1.GraphicsInfo
|
|
317
|
+
*/
|
|
318
|
+
export declare class GraphicsInfo extends Message<GraphicsInfo> {
|
|
319
|
+
/**
|
|
320
|
+
* @generated from field: string miter_limit = 1;
|
|
321
|
+
*/
|
|
322
|
+
miterLimit: string;
|
|
323
|
+
/**
|
|
324
|
+
* @generated from field: string stroke_adjustment = 2;
|
|
325
|
+
*/
|
|
326
|
+
strokeAdjustment: string;
|
|
327
|
+
/**
|
|
328
|
+
* @generated from field: string flatness_tolerance = 3;
|
|
329
|
+
*/
|
|
330
|
+
flatnessTolerance: string;
|
|
331
|
+
/**
|
|
332
|
+
* @generated from field: string smoothness_tolerance = 4;
|
|
333
|
+
*/
|
|
334
|
+
smoothnessTolerance: string;
|
|
335
|
+
/**
|
|
336
|
+
* @generated from field: string overprint_mode = 5;
|
|
337
|
+
*/
|
|
338
|
+
overprintMode: string;
|
|
339
|
+
/**
|
|
340
|
+
* @generated from field: string overprint_for_stroke = 6;
|
|
341
|
+
*/
|
|
342
|
+
overprintForStroke: string;
|
|
343
|
+
/**
|
|
344
|
+
* @generated from field: string overprint_for_fill = 7;
|
|
345
|
+
*/
|
|
346
|
+
overprintForFill: string;
|
|
347
|
+
constructor(data?: PartialMessage<GraphicsInfo>);
|
|
348
|
+
static readonly runtime: typeof proto3;
|
|
349
|
+
static readonly typeName = "artworking.v1.GraphicsInfo";
|
|
350
|
+
static readonly fields: FieldList;
|
|
351
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GraphicsInfo;
|
|
352
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GraphicsInfo;
|
|
353
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GraphicsInfo;
|
|
354
|
+
static equals(a: GraphicsInfo | PlainMessage<GraphicsInfo> | undefined, b: GraphicsInfo | PlainMessage<GraphicsInfo> | undefined): boolean;
|
|
355
|
+
}
|
|
356
|
+
/**
|
|
357
|
+
* Request and response messages for RPCs
|
|
358
|
+
*
|
|
359
|
+
* @generated from message artworking.v1.GetProfileReportRequest
|
|
360
|
+
*/
|
|
361
|
+
export declare class GetProfileReportRequest extends Message<GetProfileReportRequest> {
|
|
362
|
+
/**
|
|
363
|
+
* @generated from field: int64 media_item_id = 1;
|
|
364
|
+
*/
|
|
365
|
+
mediaItemId: bigint;
|
|
366
|
+
constructor(data?: PartialMessage<GetProfileReportRequest>);
|
|
367
|
+
static readonly runtime: typeof proto3;
|
|
368
|
+
static readonly typeName = "artworking.v1.GetProfileReportRequest";
|
|
369
|
+
static readonly fields: FieldList;
|
|
370
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProfileReportRequest;
|
|
371
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProfileReportRequest;
|
|
372
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProfileReportRequest;
|
|
373
|
+
static equals(a: GetProfileReportRequest | PlainMessage<GetProfileReportRequest> | undefined, b: GetProfileReportRequest | PlainMessage<GetProfileReportRequest> | undefined): boolean;
|
|
374
|
+
}
|
|
375
|
+
/**
|
|
376
|
+
* @generated from message artworking.v1.GetProfileReportResponse
|
|
377
|
+
*/
|
|
378
|
+
export declare class GetProfileReportResponse extends Message<GetProfileReportResponse> {
|
|
379
|
+
/**
|
|
380
|
+
* @generated from field: artworking.v1.Report report = 1;
|
|
381
|
+
*/
|
|
382
|
+
report?: Report;
|
|
383
|
+
constructor(data?: PartialMessage<GetProfileReportResponse>);
|
|
384
|
+
static readonly runtime: typeof proto3;
|
|
385
|
+
static readonly typeName = "artworking.v1.GetProfileReportResponse";
|
|
386
|
+
static readonly fields: FieldList;
|
|
387
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProfileReportResponse;
|
|
388
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProfileReportResponse;
|
|
389
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProfileReportResponse;
|
|
390
|
+
static equals(a: GetProfileReportResponse | PlainMessage<GetProfileReportResponse> | undefined, b: GetProfileReportResponse | PlainMessage<GetProfileReportResponse> | undefined): boolean;
|
|
391
|
+
}
|
|
392
|
+
/**
|
|
393
|
+
* @generated from message artworking.v1.GetProfilePageReportRequest
|
|
394
|
+
*/
|
|
395
|
+
export declare class GetProfilePageReportRequest extends Message<GetProfilePageReportRequest> {
|
|
396
|
+
/**
|
|
397
|
+
* @generated from field: int64 media_item_id = 1;
|
|
398
|
+
*/
|
|
399
|
+
mediaItemId: bigint;
|
|
400
|
+
/**
|
|
401
|
+
* @generated from field: int32 page = 2;
|
|
402
|
+
*/
|
|
403
|
+
page: number;
|
|
404
|
+
constructor(data?: PartialMessage<GetProfilePageReportRequest>);
|
|
405
|
+
static readonly runtime: typeof proto3;
|
|
406
|
+
static readonly typeName = "artworking.v1.GetProfilePageReportRequest";
|
|
407
|
+
static readonly fields: FieldList;
|
|
408
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProfilePageReportRequest;
|
|
409
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProfilePageReportRequest;
|
|
410
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProfilePageReportRequest;
|
|
411
|
+
static equals(a: GetProfilePageReportRequest | PlainMessage<GetProfilePageReportRequest> | undefined, b: GetProfilePageReportRequest | PlainMessage<GetProfilePageReportRequest> | undefined): boolean;
|
|
412
|
+
}
|
|
413
|
+
/**
|
|
414
|
+
* @generated from message artworking.v1.GetProfilePageReportResponse
|
|
415
|
+
*/
|
|
416
|
+
export declare class GetProfilePageReportResponse extends Message<GetProfilePageReportResponse> {
|
|
417
|
+
/**
|
|
418
|
+
* @generated from field: artworking.v1.PageReport page_report = 1;
|
|
419
|
+
*/
|
|
420
|
+
pageReport?: PageReport;
|
|
421
|
+
constructor(data?: PartialMessage<GetProfilePageReportResponse>);
|
|
422
|
+
static readonly runtime: typeof proto3;
|
|
423
|
+
static readonly typeName = "artworking.v1.GetProfilePageReportResponse";
|
|
424
|
+
static readonly fields: FieldList;
|
|
425
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProfilePageReportResponse;
|
|
426
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProfilePageReportResponse;
|
|
427
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProfilePageReportResponse;
|
|
428
|
+
static equals(a: GetProfilePageReportResponse | PlainMessage<GetProfilePageReportResponse> | undefined, b: GetProfilePageReportResponse | PlainMessage<GetProfilePageReportResponse> | undefined): boolean;
|
|
429
|
+
}
|