@kudo.io/artworker-grpc-client-ts 2.0.299 → 2.0.301
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/generalprofilerunner_pb.d.ts +55 -0
- package/lib/artworking/v1/generalprofilerunner_pb.js +88 -0
- package/lib/artworking/v1/generalprofilerunner_pb.js.map +1 -0
- package/lib/artworking/v1/imagetask_pb.d.ts +12 -1
- package/lib/artworking/v1/imagetask_pb.js +7 -0
- package/lib/artworking/v1/imagetask_pb.js.map +1 -1
- package/lib/pdfprofile/v2/form_schema_pb.d.ts +32 -0
- package/lib/pdfprofile/v2/form_schema_pb.js +42 -0
- package/lib/pdfprofile/v2/form_schema_pb.js.map +1 -0
- package/lib/pdfprofile/v2/meta_pb.d.ts +134 -0
- package/lib/pdfprofile/v2/meta_pb.js +188 -0
- package/lib/pdfprofile/v2/meta_pb.js.map +1 -0
- package/lib/pdfprofile/v2/parameters_schema_pb.d.ts +384 -0
- package/lib/pdfprofile/v2/parameters_schema_pb.js +429 -0
- package/lib/pdfprofile/v2/parameters_schema_pb.js.map +1 -0
- package/lib/pdfprofile/v2/pdfprofile_connectweb.d.ts +78 -0
- package/lib/pdfprofile/v2/pdfprofile_connectweb.js +86 -0
- package/lib/pdfprofile/v2/pdfprofile_connectweb.js.map +1 -0
- package/lib/pdfprofile/v2/pdfprofile_pb.d.ts +430 -0
- package/lib/pdfprofile/v2/pdfprofile_pb.js +640 -0
- package/lib/pdfprofile/v2/pdfprofile_pb.js.map +1 -0
- package/package.json +1 -1
- package/src/artworking/v1/generalprofilerunner_pb.ts +109 -0
- package/src/artworking/v1/imagetask_pb.ts +14 -0
- package/src/pdfprofile/v2/form_schema_pb.ts +60 -0
- package/src/pdfprofile/v2/meta_pb.ts +222 -0
- package/src/pdfprofile/v2/parameters_schema_pb.ts +579 -0
- package/src/pdfprofile/v2/pdfprofile_connectweb.ts +85 -0
- package/src/pdfprofile/v2/pdfprofile_pb.ts +810 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
2
|
+
import { Message, proto3, Struct } from "@bufbuild/protobuf";
|
|
3
|
+
import { MeasurementUnit } from "../../common/v1/unit_pb.js";
|
|
4
|
+
/**
|
|
5
|
+
* @generated from message artworking.v1.GeneralProfileRunnerParams
|
|
6
|
+
*/
|
|
7
|
+
export declare class GeneralProfileRunnerParams extends Message<GeneralProfileRunnerParams> {
|
|
8
|
+
/**
|
|
9
|
+
* Using google.protobuf.Struct to allow flexible key-value options
|
|
10
|
+
*
|
|
11
|
+
* @generated from field: google.protobuf.Struct options = 1;
|
|
12
|
+
*/
|
|
13
|
+
options?: Struct;
|
|
14
|
+
/**
|
|
15
|
+
* @generated from field: string page_range = 2;
|
|
16
|
+
*/
|
|
17
|
+
pageRange: string;
|
|
18
|
+
/**
|
|
19
|
+
* @generated from field: repeated artworking.v1.GeneralProfileRunnerParams.GeneralProfileRunnerOutputFilenameParams output_filenames = 3;
|
|
20
|
+
*/
|
|
21
|
+
outputFilenames: GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams[];
|
|
22
|
+
/**
|
|
23
|
+
* @generated from field: common.v1.MeasurementUnit unit = 4;
|
|
24
|
+
*/
|
|
25
|
+
unit: MeasurementUnit;
|
|
26
|
+
constructor(data?: PartialMessage<GeneralProfileRunnerParams>);
|
|
27
|
+
static readonly runtime: typeof proto3;
|
|
28
|
+
static readonly typeName = "artworking.v1.GeneralProfileRunnerParams";
|
|
29
|
+
static readonly fields: FieldList;
|
|
30
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GeneralProfileRunnerParams;
|
|
31
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GeneralProfileRunnerParams;
|
|
32
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GeneralProfileRunnerParams;
|
|
33
|
+
static equals(a: GeneralProfileRunnerParams | PlainMessage<GeneralProfileRunnerParams> | undefined, b: GeneralProfileRunnerParams | PlainMessage<GeneralProfileRunnerParams> | undefined): boolean;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* @generated from message artworking.v1.GeneralProfileRunnerParams.GeneralProfileRunnerOutputFilenameParams
|
|
37
|
+
*/
|
|
38
|
+
export declare class GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams extends Message<GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams> {
|
|
39
|
+
/**
|
|
40
|
+
* @generated from field: string output_filename = 1;
|
|
41
|
+
*/
|
|
42
|
+
outputFilename: string;
|
|
43
|
+
/**
|
|
44
|
+
* @generated from field: string file_num = 2;
|
|
45
|
+
*/
|
|
46
|
+
fileNum: string;
|
|
47
|
+
constructor(data?: PartialMessage<GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams>);
|
|
48
|
+
static readonly runtime: typeof proto3;
|
|
49
|
+
static readonly typeName = "artworking.v1.GeneralProfileRunnerParams.GeneralProfileRunnerOutputFilenameParams";
|
|
50
|
+
static readonly fields: FieldList;
|
|
51
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams;
|
|
52
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams;
|
|
53
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams;
|
|
54
|
+
static equals(a: GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams | PlainMessage<GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams> | undefined, b: GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams | PlainMessage<GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams> | undefined): boolean;
|
|
55
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @generated by protoc-gen-es v1.10.1 with parameter "target=ts"
|
|
3
|
+
// @generated from file artworking/v1/generalprofilerunner.proto (package artworking.v1, syntax proto3)
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
// @ts-nocheck
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
exports.GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams = exports.GeneralProfileRunnerParams = void 0;
|
|
8
|
+
const protobuf_1 = require("@bufbuild/protobuf");
|
|
9
|
+
const unit_pb_js_1 = require("../../common/v1/unit_pb.js");
|
|
10
|
+
/**
|
|
11
|
+
* @generated from message artworking.v1.GeneralProfileRunnerParams
|
|
12
|
+
*/
|
|
13
|
+
class GeneralProfileRunnerParams extends protobuf_1.Message {
|
|
14
|
+
constructor(data) {
|
|
15
|
+
super();
|
|
16
|
+
/**
|
|
17
|
+
* @generated from field: string page_range = 2;
|
|
18
|
+
*/
|
|
19
|
+
this.pageRange = "";
|
|
20
|
+
/**
|
|
21
|
+
* @generated from field: repeated artworking.v1.GeneralProfileRunnerParams.GeneralProfileRunnerOutputFilenameParams output_filenames = 3;
|
|
22
|
+
*/
|
|
23
|
+
this.outputFilenames = [];
|
|
24
|
+
/**
|
|
25
|
+
* @generated from field: common.v1.MeasurementUnit unit = 4;
|
|
26
|
+
*/
|
|
27
|
+
this.unit = unit_pb_js_1.MeasurementUnit.UNKNOWN;
|
|
28
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
29
|
+
}
|
|
30
|
+
static fromBinary(bytes, options) {
|
|
31
|
+
return new GeneralProfileRunnerParams().fromBinary(bytes, options);
|
|
32
|
+
}
|
|
33
|
+
static fromJson(jsonValue, options) {
|
|
34
|
+
return new GeneralProfileRunnerParams().fromJson(jsonValue, options);
|
|
35
|
+
}
|
|
36
|
+
static fromJsonString(jsonString, options) {
|
|
37
|
+
return new GeneralProfileRunnerParams().fromJsonString(jsonString, options);
|
|
38
|
+
}
|
|
39
|
+
static equals(a, b) {
|
|
40
|
+
return protobuf_1.proto3.util.equals(GeneralProfileRunnerParams, a, b);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
exports.GeneralProfileRunnerParams = GeneralProfileRunnerParams;
|
|
44
|
+
GeneralProfileRunnerParams.runtime = protobuf_1.proto3;
|
|
45
|
+
GeneralProfileRunnerParams.typeName = "artworking.v1.GeneralProfileRunnerParams";
|
|
46
|
+
GeneralProfileRunnerParams.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
47
|
+
{ no: 1, name: "options", kind: "message", T: protobuf_1.Struct },
|
|
48
|
+
{ no: 2, name: "page_range", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
49
|
+
{ no: 3, name: "output_filenames", kind: "message", T: GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams, repeated: true },
|
|
50
|
+
{ no: 4, name: "unit", kind: "enum", T: protobuf_1.proto3.getEnumType(unit_pb_js_1.MeasurementUnit) },
|
|
51
|
+
]);
|
|
52
|
+
/**
|
|
53
|
+
* @generated from message artworking.v1.GeneralProfileRunnerParams.GeneralProfileRunnerOutputFilenameParams
|
|
54
|
+
*/
|
|
55
|
+
class GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams extends protobuf_1.Message {
|
|
56
|
+
constructor(data) {
|
|
57
|
+
super();
|
|
58
|
+
/**
|
|
59
|
+
* @generated from field: string output_filename = 1;
|
|
60
|
+
*/
|
|
61
|
+
this.outputFilename = "";
|
|
62
|
+
/**
|
|
63
|
+
* @generated from field: string file_num = 2;
|
|
64
|
+
*/
|
|
65
|
+
this.fileNum = "";
|
|
66
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
67
|
+
}
|
|
68
|
+
static fromBinary(bytes, options) {
|
|
69
|
+
return new GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams().fromBinary(bytes, options);
|
|
70
|
+
}
|
|
71
|
+
static fromJson(jsonValue, options) {
|
|
72
|
+
return new GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams().fromJson(jsonValue, options);
|
|
73
|
+
}
|
|
74
|
+
static fromJsonString(jsonString, options) {
|
|
75
|
+
return new GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams().fromJsonString(jsonString, options);
|
|
76
|
+
}
|
|
77
|
+
static equals(a, b) {
|
|
78
|
+
return protobuf_1.proto3.util.equals(GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams, a, b);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
exports.GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams = GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams;
|
|
82
|
+
GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams.runtime = protobuf_1.proto3;
|
|
83
|
+
GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams.typeName = "artworking.v1.GeneralProfileRunnerParams.GeneralProfileRunnerOutputFilenameParams";
|
|
84
|
+
GeneralProfileRunnerParams_GeneralProfileRunnerOutputFilenameParams.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
85
|
+
{ no: 1, name: "output_filename", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
86
|
+
{ no: 2, name: "file_num", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
87
|
+
]);
|
|
88
|
+
//# sourceMappingURL=generalprofilerunner_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generalprofilerunner_pb.js","sourceRoot":"","sources":["../../../src/artworking/v1/generalprofilerunner_pb.ts"],"names":[],"mappings":"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"}
|
|
@@ -5,6 +5,7 @@ import { FixupParams } from "./fixup_pb.js";
|
|
|
5
5
|
import { CompleteVectorisationParams, CreateVectorisePreviewParams } from "./vectorisation_pb.js";
|
|
6
6
|
import { UpscaleParams } from "./upscale_pb.js";
|
|
7
7
|
import { QuickfixesParams } from "./quickfixes_pb.js";
|
|
8
|
+
import { GeneralProfileRunnerParams } from "./generalprofilerunner_pb.js";
|
|
8
9
|
/**
|
|
9
10
|
* @generated from enum artworking.v1.ImageTaskType
|
|
10
11
|
*/
|
|
@@ -36,7 +37,11 @@ export declare enum ImageTaskType {
|
|
|
36
37
|
/**
|
|
37
38
|
* @generated from enum value: IMAGE_TASK_TYPE_QUICKFIXES = 6;
|
|
38
39
|
*/
|
|
39
|
-
QUICKFIXES = 6
|
|
40
|
+
QUICKFIXES = 6,
|
|
41
|
+
/**
|
|
42
|
+
* @generated from enum value: IMAGE_TASK_TYPE_GENERAL_PROFILE_RUNNER = 7;
|
|
43
|
+
*/
|
|
44
|
+
GENERAL_PROFILE_RUNNER = 7
|
|
40
45
|
}
|
|
41
46
|
/**
|
|
42
47
|
* @generated from message artworking.v1.ImageTaskAction
|
|
@@ -107,6 +112,12 @@ export declare class ImageTaskAction extends Message<ImageTaskAction> {
|
|
|
107
112
|
*/
|
|
108
113
|
value: QuickfixesParams;
|
|
109
114
|
case: "quickfixesParams";
|
|
115
|
+
} | {
|
|
116
|
+
/**
|
|
117
|
+
* @generated from field: artworking.v1.GeneralProfileRunnerParams general_profile_runner_params = 13;
|
|
118
|
+
*/
|
|
119
|
+
value: GeneralProfileRunnerParams;
|
|
120
|
+
case: "generalProfileRunnerParams";
|
|
110
121
|
} | {
|
|
111
122
|
case: undefined;
|
|
112
123
|
value?: undefined;
|
|
@@ -11,6 +11,7 @@ const fixup_pb_js_1 = require("./fixup_pb.js");
|
|
|
11
11
|
const vectorisation_pb_js_1 = require("./vectorisation_pb.js");
|
|
12
12
|
const upscale_pb_js_1 = require("./upscale_pb.js");
|
|
13
13
|
const quickfixes_pb_js_1 = require("./quickfixes_pb.js");
|
|
14
|
+
const generalprofilerunner_pb_js_1 = require("./generalprofilerunner_pb.js");
|
|
14
15
|
/**
|
|
15
16
|
* @generated from enum artworking.v1.ImageTaskType
|
|
16
17
|
*/
|
|
@@ -44,6 +45,10 @@ var ImageTaskType;
|
|
|
44
45
|
* @generated from enum value: IMAGE_TASK_TYPE_QUICKFIXES = 6;
|
|
45
46
|
*/
|
|
46
47
|
ImageTaskType[ImageTaskType["QUICKFIXES"] = 6] = "QUICKFIXES";
|
|
48
|
+
/**
|
|
49
|
+
* @generated from enum value: IMAGE_TASK_TYPE_GENERAL_PROFILE_RUNNER = 7;
|
|
50
|
+
*/
|
|
51
|
+
ImageTaskType[ImageTaskType["GENERAL_PROFILE_RUNNER"] = 7] = "GENERAL_PROFILE_RUNNER";
|
|
47
52
|
})(ImageTaskType = exports.ImageTaskType || (exports.ImageTaskType = {}));
|
|
48
53
|
// Retrieve enum metadata with: proto3.getEnumType(ImageTaskType)
|
|
49
54
|
protobuf_1.proto3.util.setEnumType(ImageTaskType, "artworking.v1.ImageTaskType", [
|
|
@@ -54,6 +59,7 @@ protobuf_1.proto3.util.setEnumType(ImageTaskType, "artworking.v1.ImageTaskType",
|
|
|
54
59
|
{ no: 4, name: "IMAGE_TASK_TYPE_VECTORISE_COMPLETE" },
|
|
55
60
|
{ no: 5, name: "IMAGE_TASK_TYPE_UPSCALE" },
|
|
56
61
|
{ no: 6, name: "IMAGE_TASK_TYPE_QUICKFIXES" },
|
|
62
|
+
{ no: 7, name: "IMAGE_TASK_TYPE_GENERAL_PROFILE_RUNNER" },
|
|
57
63
|
]);
|
|
58
64
|
/**
|
|
59
65
|
* @generated from message artworking.v1.ImageTaskAction
|
|
@@ -120,5 +126,6 @@ ImageTaskAction.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
|
120
126
|
{ no: 9, name: "complete_vectorisation_params", kind: "message", T: vectorisation_pb_js_1.CompleteVectorisationParams, oneof: "params" },
|
|
121
127
|
{ no: 11, name: "upscale_params", kind: "message", T: upscale_pb_js_1.UpscaleParams, oneof: "params" },
|
|
122
128
|
{ no: 12, name: "quickfixes_params", kind: "message", T: quickfixes_pb_js_1.QuickfixesParams, oneof: "params" },
|
|
129
|
+
{ no: 13, name: "general_profile_runner_params", kind: "message", T: generalprofilerunner_pb_js_1.GeneralProfileRunnerParams, oneof: "params" },
|
|
123
130
|
]);
|
|
124
131
|
//# sourceMappingURL=imagetask_pb.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"imagetask_pb.js","sourceRoot":"","sources":["../../../src/artworking/v1/imagetask_pb.ts"],"names":[],"mappings":";AAAA,iEAAiE;AACjE,4FAA4F;AAC5F,oBAAoB;AACpB,cAAc;;;AAGd,iDAAiE;AACjE,iEAA0D;AAC1D,+CAA4C;AAC5C,+DAAkG;AAClG,mDAAgD;AAChD,yDAAsD;
|
|
1
|
+
{"version":3,"file":"imagetask_pb.js","sourceRoot":"","sources":["../../../src/artworking/v1/imagetask_pb.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
2
|
+
import { Message, proto3 } from "@bufbuild/protobuf";
|
|
3
|
+
import { FormMeta } from "./meta_pb.js";
|
|
4
|
+
import { ParametersSchema } from "./parameters_schema_pb.js";
|
|
5
|
+
/**
|
|
6
|
+
* FormSchema represents a complete PDF profile configuration
|
|
7
|
+
* Renamed from PDFProfile to match new-schema.ts terminology
|
|
8
|
+
*
|
|
9
|
+
* @generated from message pdfprofile.v2.FormSchema
|
|
10
|
+
*/
|
|
11
|
+
export declare class FormSchema extends Message<FormSchema> {
|
|
12
|
+
/**
|
|
13
|
+
* Profile metadata and UI configuration
|
|
14
|
+
*
|
|
15
|
+
* @generated from field: pdfprofile.v2.FormMeta meta = 1;
|
|
16
|
+
*/
|
|
17
|
+
meta?: FormMeta;
|
|
18
|
+
/**
|
|
19
|
+
* JSON Schema 2020-12 compliant parameters schema
|
|
20
|
+
*
|
|
21
|
+
* @generated from field: pdfprofile.v2.ParametersSchema parameters_schema = 2;
|
|
22
|
+
*/
|
|
23
|
+
parametersSchema?: ParametersSchema;
|
|
24
|
+
constructor(data?: PartialMessage<FormSchema>);
|
|
25
|
+
static readonly runtime: typeof proto3;
|
|
26
|
+
static readonly typeName = "pdfprofile.v2.FormSchema";
|
|
27
|
+
static readonly fields: FieldList;
|
|
28
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FormSchema;
|
|
29
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FormSchema;
|
|
30
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FormSchema;
|
|
31
|
+
static equals(a: FormSchema | PlainMessage<FormSchema> | undefined, b: FormSchema | PlainMessage<FormSchema> | undefined): boolean;
|
|
32
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @generated by protoc-gen-es v1.10.1 with parameter "target=ts"
|
|
3
|
+
// @generated from file pdfprofile/v2/form_schema.proto (package pdfprofile.v2, syntax proto3)
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
// @ts-nocheck
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
exports.FormSchema = void 0;
|
|
8
|
+
const protobuf_1 = require("@bufbuild/protobuf");
|
|
9
|
+
const meta_pb_js_1 = require("./meta_pb.js");
|
|
10
|
+
const parameters_schema_pb_js_1 = require("./parameters_schema_pb.js");
|
|
11
|
+
/**
|
|
12
|
+
* FormSchema represents a complete PDF profile configuration
|
|
13
|
+
* Renamed from PDFProfile to match new-schema.ts terminology
|
|
14
|
+
*
|
|
15
|
+
* @generated from message pdfprofile.v2.FormSchema
|
|
16
|
+
*/
|
|
17
|
+
class FormSchema extends protobuf_1.Message {
|
|
18
|
+
constructor(data) {
|
|
19
|
+
super();
|
|
20
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
21
|
+
}
|
|
22
|
+
static fromBinary(bytes, options) {
|
|
23
|
+
return new FormSchema().fromBinary(bytes, options);
|
|
24
|
+
}
|
|
25
|
+
static fromJson(jsonValue, options) {
|
|
26
|
+
return new FormSchema().fromJson(jsonValue, options);
|
|
27
|
+
}
|
|
28
|
+
static fromJsonString(jsonString, options) {
|
|
29
|
+
return new FormSchema().fromJsonString(jsonString, options);
|
|
30
|
+
}
|
|
31
|
+
static equals(a, b) {
|
|
32
|
+
return protobuf_1.proto3.util.equals(FormSchema, a, b);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
exports.FormSchema = FormSchema;
|
|
36
|
+
FormSchema.runtime = protobuf_1.proto3;
|
|
37
|
+
FormSchema.typeName = "pdfprofile.v2.FormSchema";
|
|
38
|
+
FormSchema.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
39
|
+
{ no: 1, name: "meta", kind: "message", T: meta_pb_js_1.FormMeta },
|
|
40
|
+
{ no: 2, name: "parameters_schema", kind: "message", T: parameters_schema_pb_js_1.ParametersSchema },
|
|
41
|
+
]);
|
|
42
|
+
//# sourceMappingURL=form_schema_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"form_schema_pb.js","sourceRoot":"","sources":["../../../src/pdfprofile/v2/form_schema_pb.ts"],"names":[],"mappings":";AAAA,iEAAiE;AACjE,8FAA8F;AAC9F,oBAAoB;AACpB,cAAc;;;AAGd,iDAAqD;AACrD,6CAAwC;AACxC,uEAA6D;AAE7D;;;;;GAKG;AACH,MAAa,UAAW,SAAQ,kBAAmB;IAejD,YAAY,IAAiC;QAC3C,KAAK,EAAE,CAAC;QACR,iBAAM,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;IACtC,CAAC;IASD,MAAM,CAAC,UAAU,CAAC,KAAiB,EAAE,OAAoC;QACvE,OAAO,IAAI,UAAU,EAAE,CAAC,UAAU,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;IACrD,CAAC;IAED,MAAM,CAAC,QAAQ,CAAC,SAAoB,EAAE,OAAkC;QACtE,OAAO,IAAI,UAAU,EAAE,CAAC,QAAQ,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;IACvD,CAAC;IAED,MAAM,CAAC,cAAc,CAAC,UAAkB,EAAE,OAAkC;QAC1E,OAAO,IAAI,UAAU,EAAE,CAAC,cAAc,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC;IAC9D,CAAC;IAED,MAAM,CAAC,MAAM,CAAC,CAAoD,EAAE,CAAoD;QACtH,OAAO,iBAAM,CAAC,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;IAC9C,CAAC;;AAzCH,gCA0CC;AAtBiB,kBAAO,GAAkB,iBAAM,CAAC;AAChC,mBAAQ,GAAG,0BAA0B,CAAC;AACtC,iBAAM,GAAc,iBAAM,CAAC,IAAI,CAAC,YAAY,CAAC,GAAG,EAAE,CAAC;IACjE,EAAE,EAAE,EAAE,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC,EAAE,qBAAQ,EAAE;IACrD,EAAE,EAAE,EAAE,CAAC,EAAE,IAAI,EAAE,mBAAmB,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC,EAAE,0CAAgB,EAAE;CAC3E,CAAC,CAAC"}
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
2
|
+
import { Message, proto3 } from "@bufbuild/protobuf";
|
|
3
|
+
/**
|
|
4
|
+
* FormMeta represents the metadata section of a form schema
|
|
5
|
+
* Simplified to match new-schema.ts FormSchema.meta structure
|
|
6
|
+
*
|
|
7
|
+
* @generated from message pdfprofile.v2.FormMeta
|
|
8
|
+
*/
|
|
9
|
+
export declare class FormMeta extends Message<FormMeta> {
|
|
10
|
+
/**
|
|
11
|
+
* Unique profile identifier
|
|
12
|
+
*
|
|
13
|
+
* @generated from field: string profile_id = 1;
|
|
14
|
+
*/
|
|
15
|
+
profileId: string;
|
|
16
|
+
/**
|
|
17
|
+
* Human-readable profile name
|
|
18
|
+
*
|
|
19
|
+
* @generated from field: string name = 2;
|
|
20
|
+
*/
|
|
21
|
+
name: string;
|
|
22
|
+
/**
|
|
23
|
+
* Profile type
|
|
24
|
+
*
|
|
25
|
+
* @generated from field: string type = 3;
|
|
26
|
+
*/
|
|
27
|
+
type: string;
|
|
28
|
+
/**
|
|
29
|
+
* Profile version number
|
|
30
|
+
*
|
|
31
|
+
* @generated from field: int32 version = 4;
|
|
32
|
+
*/
|
|
33
|
+
version: number;
|
|
34
|
+
/**
|
|
35
|
+
* Current status of the profile
|
|
36
|
+
*
|
|
37
|
+
* @generated from field: string status = 5;
|
|
38
|
+
*/
|
|
39
|
+
status: string;
|
|
40
|
+
/**
|
|
41
|
+
* Profile description (optional)
|
|
42
|
+
*
|
|
43
|
+
* @generated from field: string description = 6;
|
|
44
|
+
*/
|
|
45
|
+
description: string;
|
|
46
|
+
/**
|
|
47
|
+
* UI configuration for rendering forms
|
|
48
|
+
*
|
|
49
|
+
* @generated from field: pdfprofile.v2.FormUI ui = 7;
|
|
50
|
+
*/
|
|
51
|
+
ui?: FormUI;
|
|
52
|
+
constructor(data?: PartialMessage<FormMeta>);
|
|
53
|
+
static readonly runtime: typeof proto3;
|
|
54
|
+
static readonly typeName = "pdfprofile.v2.FormMeta";
|
|
55
|
+
static readonly fields: FieldList;
|
|
56
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FormMeta;
|
|
57
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FormMeta;
|
|
58
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FormMeta;
|
|
59
|
+
static equals(a: FormMeta | PlainMessage<FormMeta> | undefined, b: FormMeta | PlainMessage<FormMeta> | undefined): boolean;
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* FormUI represents UI configuration for the form
|
|
63
|
+
* Simplified to match new-schema.ts FormSchema.meta.ui structure
|
|
64
|
+
*
|
|
65
|
+
* @generated from message pdfprofile.v2.FormUI
|
|
66
|
+
*/
|
|
67
|
+
export declare class FormUI extends Message<FormUI> {
|
|
68
|
+
/**
|
|
69
|
+
* Sections for organizing parameters
|
|
70
|
+
*
|
|
71
|
+
* @generated from field: repeated pdfprofile.v2.FormSection sections = 1;
|
|
72
|
+
*/
|
|
73
|
+
sections: FormSection[];
|
|
74
|
+
/**
|
|
75
|
+
* Order of sections in the UI
|
|
76
|
+
*
|
|
77
|
+
* @generated from field: repeated string order = 2;
|
|
78
|
+
*/
|
|
79
|
+
order: string[];
|
|
80
|
+
/**
|
|
81
|
+
* Label for the submit button (optional)
|
|
82
|
+
*
|
|
83
|
+
* @generated from field: string submit_label = 3;
|
|
84
|
+
*/
|
|
85
|
+
submitLabel: string;
|
|
86
|
+
/**
|
|
87
|
+
* URL for help documentation (optional)
|
|
88
|
+
*
|
|
89
|
+
* @generated from field: string help_url = 4;
|
|
90
|
+
*/
|
|
91
|
+
helpUrl: string;
|
|
92
|
+
constructor(data?: PartialMessage<FormUI>);
|
|
93
|
+
static readonly runtime: typeof proto3;
|
|
94
|
+
static readonly typeName = "pdfprofile.v2.FormUI";
|
|
95
|
+
static readonly fields: FieldList;
|
|
96
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FormUI;
|
|
97
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FormUI;
|
|
98
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FormUI;
|
|
99
|
+
static equals(a: FormUI | PlainMessage<FormUI> | undefined, b: FormUI | PlainMessage<FormUI> | undefined): boolean;
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* FormSection represents a section in the UI
|
|
103
|
+
* Matches new-schema.ts FormSection type exactly
|
|
104
|
+
*
|
|
105
|
+
* @generated from message pdfprofile.v2.FormSection
|
|
106
|
+
*/
|
|
107
|
+
export declare class FormSection extends Message<FormSection> {
|
|
108
|
+
/**
|
|
109
|
+
* Unique section identifier
|
|
110
|
+
*
|
|
111
|
+
* @generated from field: string id = 1;
|
|
112
|
+
*/
|
|
113
|
+
id: string;
|
|
114
|
+
/**
|
|
115
|
+
* Section title
|
|
116
|
+
*
|
|
117
|
+
* @generated from field: string title = 2;
|
|
118
|
+
*/
|
|
119
|
+
title: string;
|
|
120
|
+
/**
|
|
121
|
+
* Optional section description
|
|
122
|
+
*
|
|
123
|
+
* @generated from field: string description = 3;
|
|
124
|
+
*/
|
|
125
|
+
description: string;
|
|
126
|
+
constructor(data?: PartialMessage<FormSection>);
|
|
127
|
+
static readonly runtime: typeof proto3;
|
|
128
|
+
static readonly typeName = "pdfprofile.v2.FormSection";
|
|
129
|
+
static readonly fields: FieldList;
|
|
130
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FormSection;
|
|
131
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FormSection;
|
|
132
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FormSection;
|
|
133
|
+
static equals(a: FormSection | PlainMessage<FormSection> | undefined, b: FormSection | PlainMessage<FormSection> | undefined): boolean;
|
|
134
|
+
}
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @generated by protoc-gen-es v1.10.1 with parameter "target=ts"
|
|
3
|
+
// @generated from file pdfprofile/v2/meta.proto (package pdfprofile.v2, syntax proto3)
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
// @ts-nocheck
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
exports.FormSection = exports.FormUI = exports.FormMeta = void 0;
|
|
8
|
+
const protobuf_1 = require("@bufbuild/protobuf");
|
|
9
|
+
/**
|
|
10
|
+
* FormMeta represents the metadata section of a form schema
|
|
11
|
+
* Simplified to match new-schema.ts FormSchema.meta structure
|
|
12
|
+
*
|
|
13
|
+
* @generated from message pdfprofile.v2.FormMeta
|
|
14
|
+
*/
|
|
15
|
+
class FormMeta extends protobuf_1.Message {
|
|
16
|
+
constructor(data) {
|
|
17
|
+
super();
|
|
18
|
+
/**
|
|
19
|
+
* Unique profile identifier
|
|
20
|
+
*
|
|
21
|
+
* @generated from field: string profile_id = 1;
|
|
22
|
+
*/
|
|
23
|
+
this.profileId = "";
|
|
24
|
+
/**
|
|
25
|
+
* Human-readable profile name
|
|
26
|
+
*
|
|
27
|
+
* @generated from field: string name = 2;
|
|
28
|
+
*/
|
|
29
|
+
this.name = "";
|
|
30
|
+
/**
|
|
31
|
+
* Profile type
|
|
32
|
+
*
|
|
33
|
+
* @generated from field: string type = 3;
|
|
34
|
+
*/
|
|
35
|
+
this.type = "";
|
|
36
|
+
/**
|
|
37
|
+
* Profile version number
|
|
38
|
+
*
|
|
39
|
+
* @generated from field: int32 version = 4;
|
|
40
|
+
*/
|
|
41
|
+
this.version = 0;
|
|
42
|
+
/**
|
|
43
|
+
* Current status of the profile
|
|
44
|
+
*
|
|
45
|
+
* @generated from field: string status = 5;
|
|
46
|
+
*/
|
|
47
|
+
this.status = "";
|
|
48
|
+
/**
|
|
49
|
+
* Profile description (optional)
|
|
50
|
+
*
|
|
51
|
+
* @generated from field: string description = 6;
|
|
52
|
+
*/
|
|
53
|
+
this.description = "";
|
|
54
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
55
|
+
}
|
|
56
|
+
static fromBinary(bytes, options) {
|
|
57
|
+
return new FormMeta().fromBinary(bytes, options);
|
|
58
|
+
}
|
|
59
|
+
static fromJson(jsonValue, options) {
|
|
60
|
+
return new FormMeta().fromJson(jsonValue, options);
|
|
61
|
+
}
|
|
62
|
+
static fromJsonString(jsonString, options) {
|
|
63
|
+
return new FormMeta().fromJsonString(jsonString, options);
|
|
64
|
+
}
|
|
65
|
+
static equals(a, b) {
|
|
66
|
+
return protobuf_1.proto3.util.equals(FormMeta, a, b);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
exports.FormMeta = FormMeta;
|
|
70
|
+
FormMeta.runtime = protobuf_1.proto3;
|
|
71
|
+
FormMeta.typeName = "pdfprofile.v2.FormMeta";
|
|
72
|
+
FormMeta.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
73
|
+
{ no: 1, name: "profile_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
74
|
+
{ no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
75
|
+
{ no: 3, name: "type", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
76
|
+
{ no: 4, name: "version", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
77
|
+
{ no: 5, name: "status", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
78
|
+
{ no: 6, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
79
|
+
{ no: 7, name: "ui", kind: "message", T: FormUI },
|
|
80
|
+
]);
|
|
81
|
+
/**
|
|
82
|
+
* FormUI represents UI configuration for the form
|
|
83
|
+
* Simplified to match new-schema.ts FormSchema.meta.ui structure
|
|
84
|
+
*
|
|
85
|
+
* @generated from message pdfprofile.v2.FormUI
|
|
86
|
+
*/
|
|
87
|
+
class FormUI extends protobuf_1.Message {
|
|
88
|
+
constructor(data) {
|
|
89
|
+
super();
|
|
90
|
+
/**
|
|
91
|
+
* Sections for organizing parameters
|
|
92
|
+
*
|
|
93
|
+
* @generated from field: repeated pdfprofile.v2.FormSection sections = 1;
|
|
94
|
+
*/
|
|
95
|
+
this.sections = [];
|
|
96
|
+
/**
|
|
97
|
+
* Order of sections in the UI
|
|
98
|
+
*
|
|
99
|
+
* @generated from field: repeated string order = 2;
|
|
100
|
+
*/
|
|
101
|
+
this.order = [];
|
|
102
|
+
/**
|
|
103
|
+
* Label for the submit button (optional)
|
|
104
|
+
*
|
|
105
|
+
* @generated from field: string submit_label = 3;
|
|
106
|
+
*/
|
|
107
|
+
this.submitLabel = "";
|
|
108
|
+
/**
|
|
109
|
+
* URL for help documentation (optional)
|
|
110
|
+
*
|
|
111
|
+
* @generated from field: string help_url = 4;
|
|
112
|
+
*/
|
|
113
|
+
this.helpUrl = "";
|
|
114
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
115
|
+
}
|
|
116
|
+
static fromBinary(bytes, options) {
|
|
117
|
+
return new FormUI().fromBinary(bytes, options);
|
|
118
|
+
}
|
|
119
|
+
static fromJson(jsonValue, options) {
|
|
120
|
+
return new FormUI().fromJson(jsonValue, options);
|
|
121
|
+
}
|
|
122
|
+
static fromJsonString(jsonString, options) {
|
|
123
|
+
return new FormUI().fromJsonString(jsonString, options);
|
|
124
|
+
}
|
|
125
|
+
static equals(a, b) {
|
|
126
|
+
return protobuf_1.proto3.util.equals(FormUI, a, b);
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
exports.FormUI = FormUI;
|
|
130
|
+
FormUI.runtime = protobuf_1.proto3;
|
|
131
|
+
FormUI.typeName = "pdfprofile.v2.FormUI";
|
|
132
|
+
FormUI.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
133
|
+
{ no: 1, name: "sections", kind: "message", T: FormSection, repeated: true },
|
|
134
|
+
{ no: 2, name: "order", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
135
|
+
{ no: 3, name: "submit_label", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
136
|
+
{ no: 4, name: "help_url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
137
|
+
]);
|
|
138
|
+
/**
|
|
139
|
+
* FormSection represents a section in the UI
|
|
140
|
+
* Matches new-schema.ts FormSection type exactly
|
|
141
|
+
*
|
|
142
|
+
* @generated from message pdfprofile.v2.FormSection
|
|
143
|
+
*/
|
|
144
|
+
class FormSection extends protobuf_1.Message {
|
|
145
|
+
constructor(data) {
|
|
146
|
+
super();
|
|
147
|
+
/**
|
|
148
|
+
* Unique section identifier
|
|
149
|
+
*
|
|
150
|
+
* @generated from field: string id = 1;
|
|
151
|
+
*/
|
|
152
|
+
this.id = "";
|
|
153
|
+
/**
|
|
154
|
+
* Section title
|
|
155
|
+
*
|
|
156
|
+
* @generated from field: string title = 2;
|
|
157
|
+
*/
|
|
158
|
+
this.title = "";
|
|
159
|
+
/**
|
|
160
|
+
* Optional section description
|
|
161
|
+
*
|
|
162
|
+
* @generated from field: string description = 3;
|
|
163
|
+
*/
|
|
164
|
+
this.description = "";
|
|
165
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
166
|
+
}
|
|
167
|
+
static fromBinary(bytes, options) {
|
|
168
|
+
return new FormSection().fromBinary(bytes, options);
|
|
169
|
+
}
|
|
170
|
+
static fromJson(jsonValue, options) {
|
|
171
|
+
return new FormSection().fromJson(jsonValue, options);
|
|
172
|
+
}
|
|
173
|
+
static fromJsonString(jsonString, options) {
|
|
174
|
+
return new FormSection().fromJsonString(jsonString, options);
|
|
175
|
+
}
|
|
176
|
+
static equals(a, b) {
|
|
177
|
+
return protobuf_1.proto3.util.equals(FormSection, a, b);
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
exports.FormSection = FormSection;
|
|
181
|
+
FormSection.runtime = protobuf_1.proto3;
|
|
182
|
+
FormSection.typeName = "pdfprofile.v2.FormSection";
|
|
183
|
+
FormSection.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
184
|
+
{ no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
185
|
+
{ no: 2, name: "title", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
186
|
+
{ no: 3, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
187
|
+
]);
|
|
188
|
+
//# sourceMappingURL=meta_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"meta_pb.js","sourceRoot":"","sources":["../../../src/pdfprofile/v2/meta_pb.ts"],"names":[],"mappings":"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"}
|