@in-human-resources/backend-proto 0.1.4 → 0.1.6
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/README.md +16 -1
- package/api/v1/README.md +7 -0
- package/api/v1/hiring.proto +19 -0
- package/api/v1/pipeline.proto +156 -0
- package/buf.gen.yaml +3 -3
- package/gen/ts/api/v1/auth_connect.ts +3 -3
- package/gen/ts/api/v1/auth_pb.ts +2 -2
- package/gen/ts/api/v1/candidate_connect.ts +3 -3
- package/gen/ts/api/v1/candidate_pb.ts +1 -1
- package/gen/ts/api/v1/common_pb.ts +1 -1
- package/gen/ts/api/v1/company_connect.ts +3 -3
- package/gen/ts/api/v1/company_pb.ts +1 -1
- package/gen/ts/api/v1/hiring_connect.ts +95 -2
- package/gen/ts/api/v1/hiring_pb.ts +31 -1
- package/gen/ts/api/v1/pipeline_pb.ts +1220 -0
- package/gen/ts/auth/v1/service_connect.ts +2 -2
- package/gen/ts/auth/v1/service_pb.ts +2 -2
- package/gen/ts/common/v1/common_pb.ts +1 -1
- package/gen/ts/hiring/v1/pipeline_pb.ts +1220 -0
- package/gen/ts/hiring/v1/service_connect.ts +95 -2
- package/gen/ts/hiring/v1/service_pb.ts +31 -1
- package/gen/ts/in-human-resources-backend-proto-0.1.6-local.tgz +0 -0
- package/gen/ts/node_modules/.package-lock.json +39 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/README.md +43 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/binary-encoding.d.ts +422 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/binary-encoding.js +444 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/binary-format.d.ts +113 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/binary-format.js +15 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/codegen-info.d.ts +33 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/codegen-info.js +69 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/create-descriptor-set.d.ts +36 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/create-descriptor-set.js +910 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/create-registry-from-desc.d.ts +15 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/create-registry-from-desc.js +264 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/create-registry.d.ts +13 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/create-registry.js +103 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/descriptor-set.d.ts +672 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/descriptor-set.js +15 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/enum.d.ts +35 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/enum.js +15 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/extension-accessor.d.ts +35 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/extension-accessor.js +114 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/extension.d.ts +24 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/extension.js +15 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/field-list.d.ts +27 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/field-list.js +15 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/field.d.ts +314 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/field.js +15 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/any_pb.d.ts +157 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/any_pb.js +273 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/api_pb.d.ts +256 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/api_pb.js +316 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/compiler/plugin_pb.d.ts +271 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/compiler/plugin_pb.js +219 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/descriptor_pb.d.ts +2277 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/descriptor_pb.js +2077 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/duration_pb.d.ts +100 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/duration_pb.js +169 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/empty_pb.d.ts +28 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/empty_pb.js +52 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/field_mask_pb.d.ts +227 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/field_mask_pb.js +311 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/source_context_pb.d.ts +29 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/source_context_pb.js +55 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/struct_pb.d.ts +158 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/struct_pb.js +240 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/timestamp_pb.d.ts +132 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/timestamp_pb.js +213 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/type_pb.d.ts +437 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/type_pb.js +562 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/wrappers_pb.d.ts +267 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/wrappers_pb.js +569 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/varint.d.ts +70 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/google/varint.js +323 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/index.d.ts +42 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/index.js +85 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/is-message.d.ts +22 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/is-message.js +52 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/json-format.d.ts +111 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/json-format.js +15 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/message-type.d.ts +51 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/message-type.js +15 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/message.d.ts +131 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/message.js +129 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/package.json +1 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/assert.d.ts +16 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/assert.js +59 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/binary-format.d.ts +7 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/binary-format.js +431 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/enum.d.ts +27 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/enum.js +94 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/extensions.d.ts +34 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/extensions.js +86 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/feature-set.d.ts +19 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/feature-set.js +120 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/field-list.d.ts +18 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/field-list.js +76 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/field-normalize.d.ts +9 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/field-normalize.js +69 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/field-wrapper.d.ts +25 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/field-wrapper.js +57 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/field.d.ts +16 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/field.js +45 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/json-format.d.ts +2 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/json-format.js +626 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/message-type.d.ts +18 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/message-type.js +50 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/names.d.ts +43 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/names.js +278 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/options-map.d.ts +7 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/options-map.js +15 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/proto-runtime.d.ts +53 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/proto-runtime.js +41 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/reflect.d.ts +9 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/reflect.js +79 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/reify-wkt.d.ts +102 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/reify-wkt.js +172 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/scalars.d.ts +18 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/scalars.js +105 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/text-format.d.ts +4 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/text-format.js +189 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/util-common.d.ts +2 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/util-common.js +247 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/util.d.ts +38 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/private/util.js +15 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto-base64.d.ts +18 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto-base64.js +128 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto-delimited.d.ts +54 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto-delimited.js +155 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto-double.d.ts +5 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto-double.js +29 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.d.ts +95 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.js +116 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto2.d.ts +4 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto2.js +53 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto3.d.ts +4 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/proto3.js +56 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/scalar.d.ts +53 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/scalar.js +81 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/service-type.d.ts +96 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/service-type.js +53 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/to-plain-message.d.ts +12 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/to-plain-message.js +72 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/type-registry.d.ts +66 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/cjs/type-registry.js +15 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/binary-encoding.d.ts +422 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/binary-encoding.js +439 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/binary-format.d.ts +113 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/binary-format.js +14 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/codegen-info.d.ts +33 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/codegen-info.js +67 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/create-descriptor-set.d.ts +36 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/create-descriptor-set.js +906 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/create-registry-from-desc.d.ts +15 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/create-registry-from-desc.js +261 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/create-registry.d.ts +13 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/create-registry.js +98 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/descriptor-set.d.ts +672 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/descriptor-set.js +14 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/enum.d.ts +35 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/enum.js +14 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/extension-accessor.d.ts +35 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/extension-accessor.js +107 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/extension.d.ts +24 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/extension.js +14 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/field-list.d.ts +27 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/field-list.js +14 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/field.d.ts +314 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/field.js +14 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/any_pb.d.ts +157 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/any_pb.js +269 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/api_pb.d.ts +256 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/api_pb.js +310 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/compiler/plugin_pb.d.ts +271 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/compiler/plugin_pb.js +212 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/descriptor_pb.d.ts +2277 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/descriptor_pb.js +2041 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/duration_pb.d.ts +100 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/duration_pb.js +165 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/empty_pb.d.ts +28 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/empty_pb.js +48 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/field_mask_pb.d.ts +227 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/field_mask_pb.js +307 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/source_context_pb.d.ts +29 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/source_context_pb.js +51 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/struct_pb.d.ts +158 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/struct_pb.js +234 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/timestamp_pb.d.ts +132 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/timestamp_pb.js +209 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/type_pb.d.ts +437 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/type_pb.js +554 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/wrappers_pb.d.ts +267 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/wrappers_pb.js +557 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/varint.d.ts +70 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/google/varint.js +313 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/index.d.ts +42 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/index.js +43 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/is-message.d.ts +22 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/is-message.js +48 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/json-format.d.ts +111 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/json-format.js +14 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/message-type.d.ts +51 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/message-type.js +14 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/message.d.ts +131 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/message.js +125 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/assert.d.ts +16 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/assert.js +52 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/binary-format.d.ts +7 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/binary-format.js +427 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/enum.d.ts +27 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/enum.js +87 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/extensions.d.ts +34 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/extensions.js +81 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/feature-set.d.ts +19 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/feature-set.js +116 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/field-list.d.ts +18 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/field-list.js +72 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/field-normalize.d.ts +9 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/field-normalize.js +65 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/field-wrapper.d.ts +25 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/field-wrapper.js +53 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/field.d.ts +16 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/field.js +41 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/json-format.d.ts +2 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/json-format.js +623 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/message-type.d.ts +18 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/message-type.js +46 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/names.d.ts +43 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/names.js +269 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/options-map.d.ts +7 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/options-map.js +14 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/proto-runtime.d.ts +53 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/proto-runtime.js +37 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/reflect.d.ts +9 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/reflect.js +74 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/reify-wkt.d.ts +102 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/reify-wkt.js +168 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/scalars.d.ts +18 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/scalars.js +99 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/text-format.d.ts +4 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/text-format.js +184 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/util-common.d.ts +2 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/util-common.js +244 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/util.d.ts +38 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/private/util.js +14 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto-base64.d.ts +18 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto-base64.js +125 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto-delimited.d.ts +54 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto-delimited.js +152 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto-double.d.ts +5 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto-double.js +26 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto-int64.d.ts +95 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto-int64.js +113 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto2.d.ts +4 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto2.js +50 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto3.d.ts +4 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/proto3.js +53 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/scalar.d.ts +53 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/scalar.js +78 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/service-type.d.ts +96 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/service-type.js +50 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/to-plain-message.d.ts +12 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/to-plain-message.js +70 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/type-registry.d.ts +66 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/dist/esm/type-registry.js +14 -0
- package/gen/ts/node_modules/@bufbuild/protobuf/package.json +40 -0
- package/gen/ts/node_modules/@connectrpc/connect/README.md +62 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/any-client.d.ts +22 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/any-client.js +34 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/call-options.d.ts +34 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/call-options.js +15 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/callback-client.d.ts +31 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/callback-client.js +116 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/code.d.ts +75 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/code.js +92 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/connect-error.d.ts +90 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/connect-error.js +134 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/context-values.d.ts +34 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/context-values.js +41 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/cors.d.ts +45 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/cors.js +82 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/http-headers.d.ts +36 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/http-headers.js +68 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/implementation.d.ts +165 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/implementation.js +79 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/index.d.ts +22 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/index.js +47 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/interceptor.d.ts +155 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/interceptor.js +27 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/method-type.d.ts +43 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/method-type.js +15 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/package.json +1 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/promise-client.d.ts +49 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/promise-client.js +147 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/async-iterable.d.ts +527 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/async-iterable.js +959 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/compression.d.ts +48 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/compression.js +75 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/content-type-matcher.d.ts +16 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/content-type-matcher.js +43 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/create-method-url.d.ts +17 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/create-method-url.js +36 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/envelope.d.ts +59 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/envelope.js +152 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/index.d.ts +24 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/index.js +93 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/invoke-implementation.d.ts +21 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/invoke-implementation.js +250 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/limit-io.d.ts +24 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/limit-io.js +80 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/normalize.d.ts +12 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/normalize.js +56 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/protocol-handler-factory.d.ts +18 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/protocol-handler-factory.js +15 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/run-call.d.ts +45 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/run-call.js +119 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/serialization.d.ts +104 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/serialization.js +148 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/signals.d.ts +36 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/signals.js +100 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/transport-options.d.ts +98 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/transport-options.js +15 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-fetch.d.ts +35 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-fetch.js +150 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-handler-client.d.ts +7 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-handler-client.js +90 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-handler.d.ts +155 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-handler.js +131 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/universal.d.ts +102 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol/universal.js +78 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/code-string.d.ts +16 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/code-string.js +52 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/content-type.d.ts +40 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/content-type.js +71 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/end-stream.d.ts +44 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/end-stream.js +132 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/error-json.d.ts +36 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/error-json.js +163 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/get-request.d.ts +7 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/get-request.js +68 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/handler-factory.d.ts +6 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/handler-factory.js +281 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/headers.d.ts +12 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/headers.js +28 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/http-status.d.ts +15 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/http-status.js +90 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/index.d.ts +16 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/index.js +81 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/parse-timeout.d.ts +13 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/parse-timeout.js +44 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/query-params.d.ts +8 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/query-params.js +24 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/request-header.d.ts +19 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/request-header.js +70 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/trailer-mux.d.ts +19 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/trailer-mux.js +53 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/transport.d.ts +6 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/transport.js +214 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/validate-response.d.ts +30 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/validate-response.js +72 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/version.d.ts +20 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/version.js +58 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/content-type.d.ts +16 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/content-type.js +38 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/gen/status_pb.d.ts +89 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/gen/status_pb.js +120 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/handler-factory.d.ts +6 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/handler-factory.js +122 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/headers.d.ts +12 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/headers.js +28 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/http-status.d.ts +8 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/http-status.js +46 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/index.d.ts +10 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/index.js +61 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/parse-timeout.d.ts +13 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/parse-timeout.js +53 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/request-header.d.ts +13 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/request-header.js +56 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/trailer-status.d.ts +28 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/trailer-status.js +104 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/transport.d.ts +6 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/transport.js +185 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/validate-response.d.ts +33 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/validate-response.js +75 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/validate-trailer.d.ts +13 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/validate-trailer.js +44 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/content-type.d.ts +19 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/content-type.js +41 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/handler-factory.d.ts +6 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/handler-factory.js +128 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/headers.d.ts +20 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/headers.js +44 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/index.d.ts +8 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/index.js +61 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/request-header.d.ts +13 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/request-header.js +59 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/trailer.d.ts +27 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/trailer.js +71 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/transport.d.ts +6 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/transport.js +238 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/validate-response.d.ts +34 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/validate-response.js +73 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/router-transport.d.ts +13 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/router-transport.js +32 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/router.d.ts +88 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/router.js +83 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/transport.d.ts +20 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/cjs/transport.js +15 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/any-client.d.ts +22 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/any-client.js +31 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/call-options.d.ts +34 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/call-options.js +14 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/callback-client.d.ts +31 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/callback-client.js +113 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/code.d.ts +75 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/code.js +89 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/connect-error.d.ts +90 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/connect-error.js +130 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/context-values.d.ts +34 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/context-values.js +37 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/cors.d.ts +45 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/cors.js +79 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/http-headers.d.ts +36 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/http-headers.js +63 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/implementation.d.ts +165 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/implementation.js +75 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/index.d.ts +22 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/index.js +27 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/interceptor.d.ts +155 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/interceptor.js +24 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/method-type.d.ts +43 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/method-type.js +14 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/promise-client.d.ts +49 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/promise-client.js +139 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/async-iterable.d.ts +527 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/async-iterable.js +937 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/compression.d.ts +48 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/compression.js +71 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/content-type-matcher.d.ts +16 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/content-type-matcher.js +40 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/create-method-url.d.ts +17 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/create-method-url.js +33 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/envelope.d.ts +59 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/envelope.js +145 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/index.d.ts +24 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/index.js +32 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/invoke-implementation.d.ts +21 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/invoke-implementation.js +246 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/limit-io.d.ts +24 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/limit-io.js +75 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/normalize.d.ts +12 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/normalize.js +53 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/protocol-handler-factory.d.ts +18 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/protocol-handler-factory.js +14 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/run-call.d.ts +45 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/run-call.js +115 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/serialization.d.ts +104 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/serialization.js +140 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/signals.d.ts +36 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/signals.js +95 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/transport-options.d.ts +98 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/transport-options.js +14 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/universal-fetch.d.ts +35 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/universal-fetch.js +142 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/universal-handler-client.d.ts +7 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/universal-handler-client.js +87 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/universal-handler.d.ts +155 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/universal-handler.js +125 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/universal.d.ts +102 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol/universal.js +74 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/code-string.d.ts +16 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/code-string.js +48 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/content-type.d.ts +40 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/content-type.js +66 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/end-stream.d.ts +44 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/end-stream.js +126 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/error-json.d.ts +36 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/error-json.js +157 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/get-request.d.ts +7 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/get-request.js +65 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/handler-factory.d.ts +6 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/handler-factory.js +278 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/headers.d.ts +12 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/headers.js +25 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/http-status.d.ts +15 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/http-status.js +86 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/index.d.ts +16 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/index.js +33 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/parse-timeout.d.ts +13 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/parse-timeout.js +41 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/query-params.d.ts +8 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/query-params.js +21 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/request-header.d.ts +19 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/request-header.js +66 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/trailer-mux.d.ts +19 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/trailer-mux.js +49 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/transport.d.ts +6 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/transport.js +211 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/validate-response.d.ts +30 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/validate-response.js +68 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/version.d.ts +20 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-connect/version.js +53 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/content-type.d.ts +16 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/content-type.js +34 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/gen/status_pb.d.ts +89 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/gen/status_pb.js +116 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/handler-factory.d.ts +6 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/handler-factory.js +119 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/headers.d.ts +12 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/headers.js +25 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/http-status.d.ts +8 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/http-status.js +43 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/index.d.ts +10 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/index.js +28 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/parse-timeout.d.ts +13 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/parse-timeout.js +50 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/request-header.d.ts +13 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/request-header.js +52 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/trailer-status.d.ts +28 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/trailer-status.js +99 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/transport.d.ts +6 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/transport.js +182 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/validate-response.d.ts +33 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/validate-response.js +71 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/validate-trailer.d.ts +13 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/validate-trailer.js +41 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/content-type.d.ts +19 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/content-type.js +37 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/handler-factory.d.ts +6 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/handler-factory.js +125 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/headers.d.ts +20 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/headers.js +33 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/index.d.ts +8 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/index.js +26 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/request-header.d.ts +13 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/request-header.js +55 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/trailer.d.ts +27 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/trailer.js +65 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/transport.d.ts +6 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/transport.js +235 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/validate-response.d.ts +34 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/validate-response.js +69 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/router-transport.d.ts +13 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/router-transport.js +29 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/router.d.ts +88 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/router.js +80 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/transport.d.ts +20 -0
- package/gen/ts/node_modules/@connectrpc/connect/dist/esm/transport.js +14 -0
- package/gen/ts/node_modules/@connectrpc/connect/package.json +75 -0
- package/gen/ts/node_modules/@connectrpc/connect/protocol-connect.js +16 -0
- package/gen/ts/node_modules/@connectrpc/connect/protocol-grpc-web.js +16 -0
- package/gen/ts/node_modules/@connectrpc/connect/protocol-grpc.js +16 -0
- package/gen/ts/node_modules/@connectrpc/connect/protocol.js +16 -0
- package/gen/ts/node_modules/typescript/LICENSE.txt +55 -0
- package/gen/ts/node_modules/typescript/README.md +50 -0
- package/gen/ts/node_modules/typescript/SECURITY.md +41 -0
- package/gen/ts/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
- package/gen/ts/node_modules/typescript/bin/tsc +2 -0
- package/gen/ts/node_modules/typescript/bin/tsserver +2 -0
- package/gen/ts/node_modules/typescript/lib/_tsc.js +133818 -0
- package/gen/ts/node_modules/typescript/lib/_tsserver.js +659 -0
- package/gen/ts/node_modules/typescript/lib/_typingsInstaller.js +222 -0
- package/gen/ts/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +2122 -0
- package/gen/ts/node_modules/typescript/lib/de/diagnosticMessages.generated.json +2122 -0
- package/gen/ts/node_modules/typescript/lib/es/diagnosticMessages.generated.json +2122 -0
- package/gen/ts/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +2122 -0
- package/gen/ts/node_modules/typescript/lib/it/diagnosticMessages.generated.json +2122 -0
- package/gen/ts/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +2122 -0
- package/gen/ts/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +2122 -0
- package/gen/ts/node_modules/typescript/lib/lib.d.ts +22 -0
- package/gen/ts/node_modules/typescript/lib/lib.decorators.d.ts +384 -0
- package/gen/ts/node_modules/typescript/lib/lib.decorators.legacy.d.ts +22 -0
- package/gen/ts/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +41 -0
- package/gen/ts/node_modules/typescript/lib/lib.dom.d.ts +39429 -0
- package/gen/ts/node_modules/typescript/lib/lib.dom.iterable.d.ts +571 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2015.collection.d.ts +147 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2015.core.d.ts +597 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2015.d.ts +28 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2015.generator.d.ts +77 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2015.iterable.d.ts +605 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2015.promise.d.ts +81 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2015.proxy.d.ts +128 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2015.reflect.d.ts +144 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2015.symbol.d.ts +46 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +326 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2016.array.include.d.ts +116 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2016.d.ts +21 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2016.full.d.ts +23 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2016.intl.d.ts +31 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts +21 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2017.d.ts +26 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2017.date.d.ts +31 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2017.full.d.ts +23 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2017.intl.d.ts +44 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2017.object.d.ts +49 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +135 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2017.string.d.ts +45 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +53 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +77 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +53 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2018.d.ts +24 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2018.full.d.ts +24 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2018.intl.d.ts +83 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2018.promise.d.ts +30 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2018.regexp.d.ts +37 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2019.array.d.ts +79 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2019.d.ts +24 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2019.full.d.ts +24 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2019.intl.d.ts +23 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2019.object.d.ts +33 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2019.string.d.ts +37 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2019.symbol.d.ts +24 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2020.bigint.d.ts +765 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2020.d.ts +27 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2020.date.d.ts +42 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2020.full.d.ts +24 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2020.intl.d.ts +474 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2020.number.d.ts +28 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2020.promise.d.ts +47 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +99 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2020.string.d.ts +44 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +41 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2021.d.ts +23 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2021.full.d.ts +24 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2021.intl.d.ts +166 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2021.promise.d.ts +48 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2021.string.d.ts +33 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2021.weakref.d.ts +78 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2022.array.d.ts +121 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2022.d.ts +25 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2022.error.d.ts +75 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2022.full.d.ts +24 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2022.intl.d.ts +145 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2022.object.d.ts +26 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2022.regexp.d.ts +39 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2022.string.d.ts +25 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2023.array.d.ts +924 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2023.collection.d.ts +21 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2023.d.ts +22 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2023.full.d.ts +24 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2023.intl.d.ts +56 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts +65 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2024.collection.d.ts +29 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2024.d.ts +26 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2024.full.d.ts +24 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2024.object.d.ts +29 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2024.promise.d.ts +35 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2024.regexp.d.ts +25 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts +68 -0
- package/gen/ts/node_modules/typescript/lib/lib.es2024.string.d.ts +29 -0
- package/gen/ts/node_modules/typescript/lib/lib.es5.d.ts +4601 -0
- package/gen/ts/node_modules/typescript/lib/lib.es6.d.ts +23 -0
- package/gen/ts/node_modules/typescript/lib/lib.esnext.array.d.ts +35 -0
- package/gen/ts/node_modules/typescript/lib/lib.esnext.collection.d.ts +96 -0
- package/gen/ts/node_modules/typescript/lib/lib.esnext.d.ts +29 -0
- package/gen/ts/node_modules/typescript/lib/lib.esnext.decorators.d.ts +28 -0
- package/gen/ts/node_modules/typescript/lib/lib.esnext.disposable.d.ts +193 -0
- package/gen/ts/node_modules/typescript/lib/lib.esnext.error.d.ts +24 -0
- package/gen/ts/node_modules/typescript/lib/lib.esnext.float16.d.ts +445 -0
- package/gen/ts/node_modules/typescript/lib/lib.esnext.full.d.ts +24 -0
- package/gen/ts/node_modules/typescript/lib/lib.esnext.intl.d.ts +21 -0
- package/gen/ts/node_modules/typescript/lib/lib.esnext.iterator.d.ts +148 -0
- package/gen/ts/node_modules/typescript/lib/lib.esnext.promise.d.ts +34 -0
- package/gen/ts/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts +25 -0
- package/gen/ts/node_modules/typescript/lib/lib.scripthost.d.ts +322 -0
- package/gen/ts/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +41 -0
- package/gen/ts/node_modules/typescript/lib/lib.webworker.d.ts +13150 -0
- package/gen/ts/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +23 -0
- package/gen/ts/node_modules/typescript/lib/lib.webworker.iterable.d.ts +340 -0
- package/gen/ts/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +2122 -0
- package/gen/ts/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +2122 -0
- package/gen/ts/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +2122 -0
- package/gen/ts/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +2122 -0
- package/gen/ts/node_modules/typescript/lib/tsc.js +8 -0
- package/gen/ts/node_modules/typescript/lib/tsserver.js +8 -0
- package/gen/ts/node_modules/typescript/lib/tsserverlibrary.d.ts +17 -0
- package/gen/ts/node_modules/typescript/lib/tsserverlibrary.js +21 -0
- package/gen/ts/node_modules/typescript/lib/typesMap.json +497 -0
- package/gen/ts/node_modules/typescript/lib/typescript.d.ts +11437 -0
- package/gen/ts/node_modules/typescript/lib/typescript.js +200276 -0
- package/gen/ts/node_modules/typescript/lib/typingsInstaller.js +8 -0
- package/gen/ts/node_modules/typescript/lib/watchGuard.js +53 -0
- package/gen/ts/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +2122 -0
- package/gen/ts/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +2122 -0
- package/gen/ts/node_modules/typescript/package.json +120 -0
- package/gen/ts/package-lock.json +51 -0
- package/gen/ts/workflow/v1/service_connect.ts +87 -0
- package/gen/ts/workflow/v1/service_pb.ts +594 -0
- package/hiring/v1/pipeline.proto +156 -0
- package/hiring/v1/service.proto +19 -0
- package/package.json +14 -2
- package/workflow/v1/service.proto +87 -0
|
@@ -0,0 +1,1220 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v1.10.1 with parameter "target=ts,import_extension=.js"
|
|
2
|
+
// @generated from file api/v1/pipeline.proto (package api.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
|
|
6
|
+
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
7
|
+
import { Message, proto3 } from "@bufbuild/protobuf";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Pipeline capability aligns with business hiring automation areas.
|
|
11
|
+
*
|
|
12
|
+
* @generated from enum api.v1.PipelineCapability
|
|
13
|
+
*/
|
|
14
|
+
export enum PipelineCapability {
|
|
15
|
+
/**
|
|
16
|
+
* @generated from enum value: PIPELINE_CAPABILITY_UNSPECIFIED = 0;
|
|
17
|
+
*/
|
|
18
|
+
UNSPECIFIED = 0,
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* @generated from enum value: PIPELINE_CAPABILITY_SCREENING = 1;
|
|
22
|
+
*/
|
|
23
|
+
SCREENING = 1,
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* @generated from enum value: PIPELINE_CAPABILITY_RECRUITER_REVIEW = 2;
|
|
27
|
+
*/
|
|
28
|
+
RECRUITER_REVIEW = 2,
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* @generated from enum value: PIPELINE_CAPABILITY_ASSESSMENT = 3;
|
|
32
|
+
*/
|
|
33
|
+
ASSESSMENT = 3,
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @generated from enum value: PIPELINE_CAPABILITY_INTERVIEW = 4;
|
|
37
|
+
*/
|
|
38
|
+
INTERVIEW = 4,
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* @generated from enum value: PIPELINE_CAPABILITY_OFFER = 5;
|
|
42
|
+
*/
|
|
43
|
+
OFFER = 5,
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* @generated from enum value: PIPELINE_CAPABILITY_COMMUNICATION = 6;
|
|
47
|
+
*/
|
|
48
|
+
COMMUNICATION = 6,
|
|
49
|
+
}
|
|
50
|
+
// Retrieve enum metadata with: proto3.getEnumType(PipelineCapability)
|
|
51
|
+
proto3.util.setEnumType(PipelineCapability, "api.v1.PipelineCapability", [
|
|
52
|
+
{ no: 0, name: "PIPELINE_CAPABILITY_UNSPECIFIED" },
|
|
53
|
+
{ no: 1, name: "PIPELINE_CAPABILITY_SCREENING" },
|
|
54
|
+
{ no: 2, name: "PIPELINE_CAPABILITY_RECRUITER_REVIEW" },
|
|
55
|
+
{ no: 3, name: "PIPELINE_CAPABILITY_ASSESSMENT" },
|
|
56
|
+
{ no: 4, name: "PIPELINE_CAPABILITY_INTERVIEW" },
|
|
57
|
+
{ no: 5, name: "PIPELINE_CAPABILITY_OFFER" },
|
|
58
|
+
{ no: 6, name: "PIPELINE_CAPABILITY_COMMUNICATION" },
|
|
59
|
+
]);
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* @generated from enum api.v1.PipelineStepType
|
|
63
|
+
*/
|
|
64
|
+
export enum PipelineStepType {
|
|
65
|
+
/**
|
|
66
|
+
* @generated from enum value: PIPELINE_STEP_TYPE_UNSPECIFIED = 0;
|
|
67
|
+
*/
|
|
68
|
+
UNSPECIFIED = 0,
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* @generated from enum value: PIPELINE_STEP_TYPE_AUTOMATED = 1;
|
|
72
|
+
*/
|
|
73
|
+
AUTOMATED = 1,
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* @generated from enum value: PIPELINE_STEP_TYPE_HUMAN_GATE = 2;
|
|
77
|
+
*/
|
|
78
|
+
HUMAN_GATE = 2,
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* @generated from enum value: PIPELINE_STEP_TYPE_ASSESSMENT = 3;
|
|
82
|
+
*/
|
|
83
|
+
ASSESSMENT = 3,
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* @generated from enum value: PIPELINE_STEP_TYPE_INTERVIEW = 4;
|
|
87
|
+
*/
|
|
88
|
+
INTERVIEW = 4,
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* @generated from enum value: PIPELINE_STEP_TYPE_OFFER = 5;
|
|
92
|
+
*/
|
|
93
|
+
OFFER = 5,
|
|
94
|
+
}
|
|
95
|
+
// Retrieve enum metadata with: proto3.getEnumType(PipelineStepType)
|
|
96
|
+
proto3.util.setEnumType(PipelineStepType, "api.v1.PipelineStepType", [
|
|
97
|
+
{ no: 0, name: "PIPELINE_STEP_TYPE_UNSPECIFIED" },
|
|
98
|
+
{ no: 1, name: "PIPELINE_STEP_TYPE_AUTOMATED" },
|
|
99
|
+
{ no: 2, name: "PIPELINE_STEP_TYPE_HUMAN_GATE" },
|
|
100
|
+
{ no: 3, name: "PIPELINE_STEP_TYPE_ASSESSMENT" },
|
|
101
|
+
{ no: 4, name: "PIPELINE_STEP_TYPE_INTERVIEW" },
|
|
102
|
+
{ no: 5, name: "PIPELINE_STEP_TYPE_OFFER" },
|
|
103
|
+
]);
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* @generated from message api.v1.BlockSLA
|
|
107
|
+
*/
|
|
108
|
+
export class BlockSLA extends Message<BlockSLA> {
|
|
109
|
+
/**
|
|
110
|
+
* @generated from field: int32 reminder_after_days = 1;
|
|
111
|
+
*/
|
|
112
|
+
reminderAfterDays = 0;
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* @generated from field: int32 escalate_after_days = 2;
|
|
116
|
+
*/
|
|
117
|
+
escalateAfterDays = 0;
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* @generated from field: int32 auto_reject_after_days = 3;
|
|
121
|
+
*/
|
|
122
|
+
autoRejectAfterDays = 0;
|
|
123
|
+
|
|
124
|
+
constructor(data?: PartialMessage<BlockSLA>) {
|
|
125
|
+
super();
|
|
126
|
+
proto3.util.initPartial(data, this);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
130
|
+
static readonly typeName = "api.v1.BlockSLA";
|
|
131
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
132
|
+
{ no: 1, name: "reminder_after_days", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
133
|
+
{ no: 2, name: "escalate_after_days", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
134
|
+
{ no: 3, name: "auto_reject_after_days", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
135
|
+
]);
|
|
136
|
+
|
|
137
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BlockSLA {
|
|
138
|
+
return new BlockSLA().fromBinary(bytes, options);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BlockSLA {
|
|
142
|
+
return new BlockSLA().fromJson(jsonValue, options);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BlockSLA {
|
|
146
|
+
return new BlockSLA().fromJsonString(jsonString, options);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
static equals(a: BlockSLA | PlainMessage<BlockSLA> | undefined, b: BlockSLA | PlainMessage<BlockSLA> | undefined): boolean {
|
|
150
|
+
return proto3.util.equals(BlockSLA, a, b);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* @generated from message api.v1.ManualFieldSpec
|
|
156
|
+
*/
|
|
157
|
+
export class ManualFieldSpec extends Message<ManualFieldSpec> {
|
|
158
|
+
/**
|
|
159
|
+
* @generated from field: string id = 1;
|
|
160
|
+
*/
|
|
161
|
+
id = "";
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* @generated from field: string label = 2;
|
|
165
|
+
*/
|
|
166
|
+
label = "";
|
|
167
|
+
|
|
168
|
+
/**
|
|
169
|
+
* @generated from field: string type = 3;
|
|
170
|
+
*/
|
|
171
|
+
type = "";
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* @generated from field: bool required = 4;
|
|
175
|
+
*/
|
|
176
|
+
required = false;
|
|
177
|
+
|
|
178
|
+
constructor(data?: PartialMessage<ManualFieldSpec>) {
|
|
179
|
+
super();
|
|
180
|
+
proto3.util.initPartial(data, this);
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
184
|
+
static readonly typeName = "api.v1.ManualFieldSpec";
|
|
185
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
186
|
+
{ no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
187
|
+
{ no: 2, name: "label", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
188
|
+
{ no: 3, name: "type", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
189
|
+
{ no: 4, name: "required", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
190
|
+
]);
|
|
191
|
+
|
|
192
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ManualFieldSpec {
|
|
193
|
+
return new ManualFieldSpec().fromBinary(bytes, options);
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ManualFieldSpec {
|
|
197
|
+
return new ManualFieldSpec().fromJson(jsonValue, options);
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ManualFieldSpec {
|
|
201
|
+
return new ManualFieldSpec().fromJsonString(jsonString, options);
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
static equals(a: ManualFieldSpec | PlainMessage<ManualFieldSpec> | undefined, b: ManualFieldSpec | PlainMessage<ManualFieldSpec> | undefined): boolean {
|
|
205
|
+
return proto3.util.equals(ManualFieldSpec, a, b);
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
/**
|
|
210
|
+
* @generated from message api.v1.ManualFieldsConfig
|
|
211
|
+
*/
|
|
212
|
+
export class ManualFieldsConfig extends Message<ManualFieldsConfig> {
|
|
213
|
+
/**
|
|
214
|
+
* @generated from field: repeated api.v1.ManualFieldSpec fields = 1;
|
|
215
|
+
*/
|
|
216
|
+
fields: ManualFieldSpec[] = [];
|
|
217
|
+
|
|
218
|
+
constructor(data?: PartialMessage<ManualFieldsConfig>) {
|
|
219
|
+
super();
|
|
220
|
+
proto3.util.initPartial(data, this);
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
224
|
+
static readonly typeName = "api.v1.ManualFieldsConfig";
|
|
225
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
226
|
+
{ no: 1, name: "fields", kind: "message", T: ManualFieldSpec, repeated: true },
|
|
227
|
+
]);
|
|
228
|
+
|
|
229
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ManualFieldsConfig {
|
|
230
|
+
return new ManualFieldsConfig().fromBinary(bytes, options);
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ManualFieldsConfig {
|
|
234
|
+
return new ManualFieldsConfig().fromJson(jsonValue, options);
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ManualFieldsConfig {
|
|
238
|
+
return new ManualFieldsConfig().fromJsonString(jsonString, options);
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
static equals(a: ManualFieldsConfig | PlainMessage<ManualFieldsConfig> | undefined, b: ManualFieldsConfig | PlainMessage<ManualFieldsConfig> | undefined): boolean {
|
|
242
|
+
return proto3.util.equals(ManualFieldsConfig, a, b);
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
/**
|
|
247
|
+
* @generated from message api.v1.PipelineBlock
|
|
248
|
+
*/
|
|
249
|
+
export class PipelineBlock extends Message<PipelineBlock> {
|
|
250
|
+
/**
|
|
251
|
+
* @generated from field: string block_id = 1;
|
|
252
|
+
*/
|
|
253
|
+
blockId = "";
|
|
254
|
+
|
|
255
|
+
/**
|
|
256
|
+
* @generated from field: int32 sort_order = 2;
|
|
257
|
+
*/
|
|
258
|
+
sortOrder = 0;
|
|
259
|
+
|
|
260
|
+
/**
|
|
261
|
+
* @generated from field: api.v1.PipelineCapability capability = 3;
|
|
262
|
+
*/
|
|
263
|
+
capability = PipelineCapability.UNSPECIFIED;
|
|
264
|
+
|
|
265
|
+
/**
|
|
266
|
+
* @generated from field: bool enabled = 4;
|
|
267
|
+
*/
|
|
268
|
+
enabled = false;
|
|
269
|
+
|
|
270
|
+
/**
|
|
271
|
+
* @generated from field: string display_name = 5;
|
|
272
|
+
*/
|
|
273
|
+
displayName = "";
|
|
274
|
+
|
|
275
|
+
/**
|
|
276
|
+
* @generated from field: string candidate_status_label = 6;
|
|
277
|
+
*/
|
|
278
|
+
candidateStatusLabel = "";
|
|
279
|
+
|
|
280
|
+
/**
|
|
281
|
+
* @generated from field: api.v1.PipelineStepType step_type = 7;
|
|
282
|
+
*/
|
|
283
|
+
stepType = PipelineStepType.UNSPECIFIED;
|
|
284
|
+
|
|
285
|
+
/**
|
|
286
|
+
* @generated from field: api.v1.BlockSLA sla = 8;
|
|
287
|
+
*/
|
|
288
|
+
sla?: BlockSLA;
|
|
289
|
+
|
|
290
|
+
/**
|
|
291
|
+
* @generated from field: api.v1.ManualFieldsConfig manual_fields = 9;
|
|
292
|
+
*/
|
|
293
|
+
manualFields?: ManualFieldsConfig;
|
|
294
|
+
|
|
295
|
+
/**
|
|
296
|
+
* @generated from field: string config_json = 10;
|
|
297
|
+
*/
|
|
298
|
+
configJson = "";
|
|
299
|
+
|
|
300
|
+
constructor(data?: PartialMessage<PipelineBlock>) {
|
|
301
|
+
super();
|
|
302
|
+
proto3.util.initPartial(data, this);
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
306
|
+
static readonly typeName = "api.v1.PipelineBlock";
|
|
307
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
308
|
+
{ no: 1, name: "block_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
309
|
+
{ no: 2, name: "sort_order", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
310
|
+
{ no: 3, name: "capability", kind: "enum", T: proto3.getEnumType(PipelineCapability) },
|
|
311
|
+
{ no: 4, name: "enabled", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
312
|
+
{ no: 5, name: "display_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
313
|
+
{ no: 6, name: "candidate_status_label", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
314
|
+
{ no: 7, name: "step_type", kind: "enum", T: proto3.getEnumType(PipelineStepType) },
|
|
315
|
+
{ no: 8, name: "sla", kind: "message", T: BlockSLA },
|
|
316
|
+
{ no: 9, name: "manual_fields", kind: "message", T: ManualFieldsConfig },
|
|
317
|
+
{ no: 10, name: "config_json", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
318
|
+
]);
|
|
319
|
+
|
|
320
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PipelineBlock {
|
|
321
|
+
return new PipelineBlock().fromBinary(bytes, options);
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PipelineBlock {
|
|
325
|
+
return new PipelineBlock().fromJson(jsonValue, options);
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PipelineBlock {
|
|
329
|
+
return new PipelineBlock().fromJsonString(jsonString, options);
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
static equals(a: PipelineBlock | PlainMessage<PipelineBlock> | undefined, b: PipelineBlock | PlainMessage<PipelineBlock> | undefined): boolean {
|
|
333
|
+
return proto3.util.equals(PipelineBlock, a, b);
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
/**
|
|
338
|
+
* @generated from message api.v1.PipelineDefinition
|
|
339
|
+
*/
|
|
340
|
+
export class PipelineDefinition extends Message<PipelineDefinition> {
|
|
341
|
+
/**
|
|
342
|
+
* @generated from field: string definition_id = 1;
|
|
343
|
+
*/
|
|
344
|
+
definitionId = "";
|
|
345
|
+
|
|
346
|
+
/**
|
|
347
|
+
* @generated from field: string company_id = 2;
|
|
348
|
+
*/
|
|
349
|
+
companyId = "";
|
|
350
|
+
|
|
351
|
+
/**
|
|
352
|
+
* @generated from field: string name = 3;
|
|
353
|
+
*/
|
|
354
|
+
name = "";
|
|
355
|
+
|
|
356
|
+
/**
|
|
357
|
+
* @generated from field: string description = 4;
|
|
358
|
+
*/
|
|
359
|
+
description = "";
|
|
360
|
+
|
|
361
|
+
/**
|
|
362
|
+
* @generated from field: string slug = 5;
|
|
363
|
+
*/
|
|
364
|
+
slug = "";
|
|
365
|
+
|
|
366
|
+
/**
|
|
367
|
+
* @generated from field: int32 version = 6;
|
|
368
|
+
*/
|
|
369
|
+
version = 0;
|
|
370
|
+
|
|
371
|
+
/**
|
|
372
|
+
* @generated from field: string status = 7;
|
|
373
|
+
*/
|
|
374
|
+
status = "";
|
|
375
|
+
|
|
376
|
+
/**
|
|
377
|
+
* @generated from field: bool is_platform = 8;
|
|
378
|
+
*/
|
|
379
|
+
isPlatform = false;
|
|
380
|
+
|
|
381
|
+
/**
|
|
382
|
+
* @generated from field: string source_template_id = 9;
|
|
383
|
+
*/
|
|
384
|
+
sourceTemplateId = "";
|
|
385
|
+
|
|
386
|
+
/**
|
|
387
|
+
* @generated from field: int32 schema_version = 10;
|
|
388
|
+
*/
|
|
389
|
+
schemaVersion = 0;
|
|
390
|
+
|
|
391
|
+
/**
|
|
392
|
+
* @generated from field: repeated api.v1.PipelineBlock blocks = 11;
|
|
393
|
+
*/
|
|
394
|
+
blocks: PipelineBlock[] = [];
|
|
395
|
+
|
|
396
|
+
constructor(data?: PartialMessage<PipelineDefinition>) {
|
|
397
|
+
super();
|
|
398
|
+
proto3.util.initPartial(data, this);
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
402
|
+
static readonly typeName = "api.v1.PipelineDefinition";
|
|
403
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
404
|
+
{ no: 1, name: "definition_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
405
|
+
{ no: 2, name: "company_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
406
|
+
{ no: 3, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
407
|
+
{ no: 4, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
408
|
+
{ no: 5, name: "slug", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
409
|
+
{ no: 6, name: "version", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
410
|
+
{ no: 7, name: "status", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
411
|
+
{ no: 8, name: "is_platform", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
412
|
+
{ no: 9, name: "source_template_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
413
|
+
{ no: 10, name: "schema_version", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
414
|
+
{ no: 11, name: "blocks", kind: "message", T: PipelineBlock, repeated: true },
|
|
415
|
+
]);
|
|
416
|
+
|
|
417
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PipelineDefinition {
|
|
418
|
+
return new PipelineDefinition().fromBinary(bytes, options);
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PipelineDefinition {
|
|
422
|
+
return new PipelineDefinition().fromJson(jsonValue, options);
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PipelineDefinition {
|
|
426
|
+
return new PipelineDefinition().fromJsonString(jsonString, options);
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
static equals(a: PipelineDefinition | PlainMessage<PipelineDefinition> | undefined, b: PipelineDefinition | PlainMessage<PipelineDefinition> | undefined): boolean {
|
|
430
|
+
return proto3.util.equals(PipelineDefinition, a, b);
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
/**
|
|
435
|
+
* @generated from message api.v1.ExecutionStep
|
|
436
|
+
*/
|
|
437
|
+
export class ExecutionStep extends Message<ExecutionStep> {
|
|
438
|
+
/**
|
|
439
|
+
* @generated from field: string stage_id = 1;
|
|
440
|
+
*/
|
|
441
|
+
stageId = "";
|
|
442
|
+
|
|
443
|
+
/**
|
|
444
|
+
* @generated from field: api.v1.PipelineStepType step_type = 2;
|
|
445
|
+
*/
|
|
446
|
+
stepType = PipelineStepType.UNSPECIFIED;
|
|
447
|
+
|
|
448
|
+
/**
|
|
449
|
+
* @generated from field: string block_id = 3;
|
|
450
|
+
*/
|
|
451
|
+
blockId = "";
|
|
452
|
+
|
|
453
|
+
/**
|
|
454
|
+
* @generated from field: api.v1.PipelineCapability capability = 4;
|
|
455
|
+
*/
|
|
456
|
+
capability = PipelineCapability.UNSPECIFIED;
|
|
457
|
+
|
|
458
|
+
/**
|
|
459
|
+
* @generated from field: api.v1.BlockSLA sla = 5;
|
|
460
|
+
*/
|
|
461
|
+
sla?: BlockSLA;
|
|
462
|
+
|
|
463
|
+
/**
|
|
464
|
+
* @generated from field: string config_json = 6;
|
|
465
|
+
*/
|
|
466
|
+
configJson = "";
|
|
467
|
+
|
|
468
|
+
/**
|
|
469
|
+
* @generated from field: string manual_fields_json = 7;
|
|
470
|
+
*/
|
|
471
|
+
manualFieldsJson = "";
|
|
472
|
+
|
|
473
|
+
constructor(data?: PartialMessage<ExecutionStep>) {
|
|
474
|
+
super();
|
|
475
|
+
proto3.util.initPartial(data, this);
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
479
|
+
static readonly typeName = "api.v1.ExecutionStep";
|
|
480
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
481
|
+
{ no: 1, name: "stage_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
482
|
+
{ no: 2, name: "step_type", kind: "enum", T: proto3.getEnumType(PipelineStepType) },
|
|
483
|
+
{ no: 3, name: "block_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
484
|
+
{ no: 4, name: "capability", kind: "enum", T: proto3.getEnumType(PipelineCapability) },
|
|
485
|
+
{ no: 5, name: "sla", kind: "message", T: BlockSLA },
|
|
486
|
+
{ no: 6, name: "config_json", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
487
|
+
{ no: 7, name: "manual_fields_json", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
488
|
+
]);
|
|
489
|
+
|
|
490
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ExecutionStep {
|
|
491
|
+
return new ExecutionStep().fromBinary(bytes, options);
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ExecutionStep {
|
|
495
|
+
return new ExecutionStep().fromJson(jsonValue, options);
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ExecutionStep {
|
|
499
|
+
return new ExecutionStep().fromJsonString(jsonString, options);
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
static equals(a: ExecutionStep | PlainMessage<ExecutionStep> | undefined, b: ExecutionStep | PlainMessage<ExecutionStep> | undefined): boolean {
|
|
503
|
+
return proto3.util.equals(ExecutionStep, a, b);
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
/**
|
|
508
|
+
* @generated from message api.v1.PipelineSnapshot
|
|
509
|
+
*/
|
|
510
|
+
export class PipelineSnapshot extends Message<PipelineSnapshot> {
|
|
511
|
+
/**
|
|
512
|
+
* @generated from field: string definition_id = 1;
|
|
513
|
+
*/
|
|
514
|
+
definitionId = "";
|
|
515
|
+
|
|
516
|
+
/**
|
|
517
|
+
* @generated from field: int32 definition_version = 2;
|
|
518
|
+
*/
|
|
519
|
+
definitionVersion = 0;
|
|
520
|
+
|
|
521
|
+
/**
|
|
522
|
+
* @generated from field: int32 schema_version = 3;
|
|
523
|
+
*/
|
|
524
|
+
schemaVersion = 0;
|
|
525
|
+
|
|
526
|
+
/**
|
|
527
|
+
* @generated from field: string definition_name = 4;
|
|
528
|
+
*/
|
|
529
|
+
definitionName = "";
|
|
530
|
+
|
|
531
|
+
/**
|
|
532
|
+
* @generated from field: repeated api.v1.ExecutionStep steps = 5;
|
|
533
|
+
*/
|
|
534
|
+
steps: ExecutionStep[] = [];
|
|
535
|
+
|
|
536
|
+
constructor(data?: PartialMessage<PipelineSnapshot>) {
|
|
537
|
+
super();
|
|
538
|
+
proto3.util.initPartial(data, this);
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
542
|
+
static readonly typeName = "api.v1.PipelineSnapshot";
|
|
543
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
544
|
+
{ no: 1, name: "definition_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
545
|
+
{ no: 2, name: "definition_version", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
546
|
+
{ no: 3, name: "schema_version", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
547
|
+
{ no: 4, name: "definition_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
548
|
+
{ no: 5, name: "steps", kind: "message", T: ExecutionStep, repeated: true },
|
|
549
|
+
]);
|
|
550
|
+
|
|
551
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PipelineSnapshot {
|
|
552
|
+
return new PipelineSnapshot().fromBinary(bytes, options);
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PipelineSnapshot {
|
|
556
|
+
return new PipelineSnapshot().fromJson(jsonValue, options);
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PipelineSnapshot {
|
|
560
|
+
return new PipelineSnapshot().fromJsonString(jsonString, options);
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
static equals(a: PipelineSnapshot | PlainMessage<PipelineSnapshot> | undefined, b: PipelineSnapshot | PlainMessage<PipelineSnapshot> | undefined): boolean {
|
|
564
|
+
return proto3.util.equals(PipelineSnapshot, a, b);
|
|
565
|
+
}
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
/**
|
|
569
|
+
* @generated from message api.v1.ListPlatformPipelineTemplatesRequest
|
|
570
|
+
*/
|
|
571
|
+
export class ListPlatformPipelineTemplatesRequest extends Message<ListPlatformPipelineTemplatesRequest> {
|
|
572
|
+
constructor(data?: PartialMessage<ListPlatformPipelineTemplatesRequest>) {
|
|
573
|
+
super();
|
|
574
|
+
proto3.util.initPartial(data, this);
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
578
|
+
static readonly typeName = "api.v1.ListPlatformPipelineTemplatesRequest";
|
|
579
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
580
|
+
]);
|
|
581
|
+
|
|
582
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListPlatformPipelineTemplatesRequest {
|
|
583
|
+
return new ListPlatformPipelineTemplatesRequest().fromBinary(bytes, options);
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListPlatformPipelineTemplatesRequest {
|
|
587
|
+
return new ListPlatformPipelineTemplatesRequest().fromJson(jsonValue, options);
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListPlatformPipelineTemplatesRequest {
|
|
591
|
+
return new ListPlatformPipelineTemplatesRequest().fromJsonString(jsonString, options);
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
static equals(a: ListPlatformPipelineTemplatesRequest | PlainMessage<ListPlatformPipelineTemplatesRequest> | undefined, b: ListPlatformPipelineTemplatesRequest | PlainMessage<ListPlatformPipelineTemplatesRequest> | undefined): boolean {
|
|
595
|
+
return proto3.util.equals(ListPlatformPipelineTemplatesRequest, a, b);
|
|
596
|
+
}
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
/**
|
|
600
|
+
* @generated from message api.v1.ListPlatformPipelineTemplatesResponse
|
|
601
|
+
*/
|
|
602
|
+
export class ListPlatformPipelineTemplatesResponse extends Message<ListPlatformPipelineTemplatesResponse> {
|
|
603
|
+
/**
|
|
604
|
+
* @generated from field: repeated api.v1.PipelineDefinition templates = 1;
|
|
605
|
+
*/
|
|
606
|
+
templates: PipelineDefinition[] = [];
|
|
607
|
+
|
|
608
|
+
constructor(data?: PartialMessage<ListPlatformPipelineTemplatesResponse>) {
|
|
609
|
+
super();
|
|
610
|
+
proto3.util.initPartial(data, this);
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
614
|
+
static readonly typeName = "api.v1.ListPlatformPipelineTemplatesResponse";
|
|
615
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
616
|
+
{ no: 1, name: "templates", kind: "message", T: PipelineDefinition, repeated: true },
|
|
617
|
+
]);
|
|
618
|
+
|
|
619
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListPlatformPipelineTemplatesResponse {
|
|
620
|
+
return new ListPlatformPipelineTemplatesResponse().fromBinary(bytes, options);
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListPlatformPipelineTemplatesResponse {
|
|
624
|
+
return new ListPlatformPipelineTemplatesResponse().fromJson(jsonValue, options);
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListPlatformPipelineTemplatesResponse {
|
|
628
|
+
return new ListPlatformPipelineTemplatesResponse().fromJsonString(jsonString, options);
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
static equals(a: ListPlatformPipelineTemplatesResponse | PlainMessage<ListPlatformPipelineTemplatesResponse> | undefined, b: ListPlatformPipelineTemplatesResponse | PlainMessage<ListPlatformPipelineTemplatesResponse> | undefined): boolean {
|
|
632
|
+
return proto3.util.equals(ListPlatformPipelineTemplatesResponse, a, b);
|
|
633
|
+
}
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
/**
|
|
637
|
+
* @generated from message api.v1.GetPipelineDefinitionRequest
|
|
638
|
+
*/
|
|
639
|
+
export class GetPipelineDefinitionRequest extends Message<GetPipelineDefinitionRequest> {
|
|
640
|
+
/**
|
|
641
|
+
* @generated from field: string definition_id = 1;
|
|
642
|
+
*/
|
|
643
|
+
definitionId = "";
|
|
644
|
+
|
|
645
|
+
constructor(data?: PartialMessage<GetPipelineDefinitionRequest>) {
|
|
646
|
+
super();
|
|
647
|
+
proto3.util.initPartial(data, this);
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
651
|
+
static readonly typeName = "api.v1.GetPipelineDefinitionRequest";
|
|
652
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
653
|
+
{ no: 1, name: "definition_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
654
|
+
]);
|
|
655
|
+
|
|
656
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetPipelineDefinitionRequest {
|
|
657
|
+
return new GetPipelineDefinitionRequest().fromBinary(bytes, options);
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetPipelineDefinitionRequest {
|
|
661
|
+
return new GetPipelineDefinitionRequest().fromJson(jsonValue, options);
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetPipelineDefinitionRequest {
|
|
665
|
+
return new GetPipelineDefinitionRequest().fromJsonString(jsonString, options);
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
static equals(a: GetPipelineDefinitionRequest | PlainMessage<GetPipelineDefinitionRequest> | undefined, b: GetPipelineDefinitionRequest | PlainMessage<GetPipelineDefinitionRequest> | undefined): boolean {
|
|
669
|
+
return proto3.util.equals(GetPipelineDefinitionRequest, a, b);
|
|
670
|
+
}
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
/**
|
|
674
|
+
* @generated from message api.v1.ListPipelineDefinitionsRequest
|
|
675
|
+
*/
|
|
676
|
+
export class ListPipelineDefinitionsRequest extends Message<ListPipelineDefinitionsRequest> {
|
|
677
|
+
constructor(data?: PartialMessage<ListPipelineDefinitionsRequest>) {
|
|
678
|
+
super();
|
|
679
|
+
proto3.util.initPartial(data, this);
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
683
|
+
static readonly typeName = "api.v1.ListPipelineDefinitionsRequest";
|
|
684
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
685
|
+
]);
|
|
686
|
+
|
|
687
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListPipelineDefinitionsRequest {
|
|
688
|
+
return new ListPipelineDefinitionsRequest().fromBinary(bytes, options);
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListPipelineDefinitionsRequest {
|
|
692
|
+
return new ListPipelineDefinitionsRequest().fromJson(jsonValue, options);
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListPipelineDefinitionsRequest {
|
|
696
|
+
return new ListPipelineDefinitionsRequest().fromJsonString(jsonString, options);
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
static equals(a: ListPipelineDefinitionsRequest | PlainMessage<ListPipelineDefinitionsRequest> | undefined, b: ListPipelineDefinitionsRequest | PlainMessage<ListPipelineDefinitionsRequest> | undefined): boolean {
|
|
700
|
+
return proto3.util.equals(ListPipelineDefinitionsRequest, a, b);
|
|
701
|
+
}
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
/**
|
|
705
|
+
* @generated from message api.v1.ListPipelineDefinitionsResponse
|
|
706
|
+
*/
|
|
707
|
+
export class ListPipelineDefinitionsResponse extends Message<ListPipelineDefinitionsResponse> {
|
|
708
|
+
/**
|
|
709
|
+
* @generated from field: repeated api.v1.PipelineDefinition definitions = 1;
|
|
710
|
+
*/
|
|
711
|
+
definitions: PipelineDefinition[] = [];
|
|
712
|
+
|
|
713
|
+
constructor(data?: PartialMessage<ListPipelineDefinitionsResponse>) {
|
|
714
|
+
super();
|
|
715
|
+
proto3.util.initPartial(data, this);
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
719
|
+
static readonly typeName = "api.v1.ListPipelineDefinitionsResponse";
|
|
720
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
721
|
+
{ no: 1, name: "definitions", kind: "message", T: PipelineDefinition, repeated: true },
|
|
722
|
+
]);
|
|
723
|
+
|
|
724
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListPipelineDefinitionsResponse {
|
|
725
|
+
return new ListPipelineDefinitionsResponse().fromBinary(bytes, options);
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListPipelineDefinitionsResponse {
|
|
729
|
+
return new ListPipelineDefinitionsResponse().fromJson(jsonValue, options);
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListPipelineDefinitionsResponse {
|
|
733
|
+
return new ListPipelineDefinitionsResponse().fromJsonString(jsonString, options);
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
static equals(a: ListPipelineDefinitionsResponse | PlainMessage<ListPipelineDefinitionsResponse> | undefined, b: ListPipelineDefinitionsResponse | PlainMessage<ListPipelineDefinitionsResponse> | undefined): boolean {
|
|
737
|
+
return proto3.util.equals(ListPipelineDefinitionsResponse, a, b);
|
|
738
|
+
}
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
/**
|
|
742
|
+
* @generated from message api.v1.CreatePipelineDefinitionRequest
|
|
743
|
+
*/
|
|
744
|
+
export class CreatePipelineDefinitionRequest extends Message<CreatePipelineDefinitionRequest> {
|
|
745
|
+
/**
|
|
746
|
+
* @generated from field: string name = 1;
|
|
747
|
+
*/
|
|
748
|
+
name = "";
|
|
749
|
+
|
|
750
|
+
/**
|
|
751
|
+
* @generated from field: string description = 2;
|
|
752
|
+
*/
|
|
753
|
+
description = "";
|
|
754
|
+
|
|
755
|
+
/**
|
|
756
|
+
* @generated from field: repeated api.v1.PipelineBlock blocks = 3;
|
|
757
|
+
*/
|
|
758
|
+
blocks: PipelineBlock[] = [];
|
|
759
|
+
|
|
760
|
+
constructor(data?: PartialMessage<CreatePipelineDefinitionRequest>) {
|
|
761
|
+
super();
|
|
762
|
+
proto3.util.initPartial(data, this);
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
766
|
+
static readonly typeName = "api.v1.CreatePipelineDefinitionRequest";
|
|
767
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
768
|
+
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
769
|
+
{ no: 2, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
770
|
+
{ no: 3, name: "blocks", kind: "message", T: PipelineBlock, repeated: true },
|
|
771
|
+
]);
|
|
772
|
+
|
|
773
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreatePipelineDefinitionRequest {
|
|
774
|
+
return new CreatePipelineDefinitionRequest().fromBinary(bytes, options);
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreatePipelineDefinitionRequest {
|
|
778
|
+
return new CreatePipelineDefinitionRequest().fromJson(jsonValue, options);
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreatePipelineDefinitionRequest {
|
|
782
|
+
return new CreatePipelineDefinitionRequest().fromJsonString(jsonString, options);
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
static equals(a: CreatePipelineDefinitionRequest | PlainMessage<CreatePipelineDefinitionRequest> | undefined, b: CreatePipelineDefinitionRequest | PlainMessage<CreatePipelineDefinitionRequest> | undefined): boolean {
|
|
786
|
+
return proto3.util.equals(CreatePipelineDefinitionRequest, a, b);
|
|
787
|
+
}
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
/**
|
|
791
|
+
* @generated from message api.v1.CreatePipelineDefinitionResponse
|
|
792
|
+
*/
|
|
793
|
+
export class CreatePipelineDefinitionResponse extends Message<CreatePipelineDefinitionResponse> {
|
|
794
|
+
/**
|
|
795
|
+
* @generated from field: string definition_id = 1;
|
|
796
|
+
*/
|
|
797
|
+
definitionId = "";
|
|
798
|
+
|
|
799
|
+
constructor(data?: PartialMessage<CreatePipelineDefinitionResponse>) {
|
|
800
|
+
super();
|
|
801
|
+
proto3.util.initPartial(data, this);
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
805
|
+
static readonly typeName = "api.v1.CreatePipelineDefinitionResponse";
|
|
806
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
807
|
+
{ no: 1, name: "definition_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
808
|
+
]);
|
|
809
|
+
|
|
810
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreatePipelineDefinitionResponse {
|
|
811
|
+
return new CreatePipelineDefinitionResponse().fromBinary(bytes, options);
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreatePipelineDefinitionResponse {
|
|
815
|
+
return new CreatePipelineDefinitionResponse().fromJson(jsonValue, options);
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreatePipelineDefinitionResponse {
|
|
819
|
+
return new CreatePipelineDefinitionResponse().fromJsonString(jsonString, options);
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
static equals(a: CreatePipelineDefinitionResponse | PlainMessage<CreatePipelineDefinitionResponse> | undefined, b: CreatePipelineDefinitionResponse | PlainMessage<CreatePipelineDefinitionResponse> | undefined): boolean {
|
|
823
|
+
return proto3.util.equals(CreatePipelineDefinitionResponse, a, b);
|
|
824
|
+
}
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
/**
|
|
828
|
+
* @generated from message api.v1.UpdatePipelineDefinitionRequest
|
|
829
|
+
*/
|
|
830
|
+
export class UpdatePipelineDefinitionRequest extends Message<UpdatePipelineDefinitionRequest> {
|
|
831
|
+
/**
|
|
832
|
+
* @generated from field: string definition_id = 1;
|
|
833
|
+
*/
|
|
834
|
+
definitionId = "";
|
|
835
|
+
|
|
836
|
+
/**
|
|
837
|
+
* @generated from field: string name = 2;
|
|
838
|
+
*/
|
|
839
|
+
name = "";
|
|
840
|
+
|
|
841
|
+
/**
|
|
842
|
+
* @generated from field: string description = 3;
|
|
843
|
+
*/
|
|
844
|
+
description = "";
|
|
845
|
+
|
|
846
|
+
/**
|
|
847
|
+
* @generated from field: repeated api.v1.PipelineBlock blocks = 4;
|
|
848
|
+
*/
|
|
849
|
+
blocks: PipelineBlock[] = [];
|
|
850
|
+
|
|
851
|
+
constructor(data?: PartialMessage<UpdatePipelineDefinitionRequest>) {
|
|
852
|
+
super();
|
|
853
|
+
proto3.util.initPartial(data, this);
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
857
|
+
static readonly typeName = "api.v1.UpdatePipelineDefinitionRequest";
|
|
858
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
859
|
+
{ no: 1, name: "definition_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
860
|
+
{ no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
861
|
+
{ no: 3, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
862
|
+
{ no: 4, name: "blocks", kind: "message", T: PipelineBlock, repeated: true },
|
|
863
|
+
]);
|
|
864
|
+
|
|
865
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdatePipelineDefinitionRequest {
|
|
866
|
+
return new UpdatePipelineDefinitionRequest().fromBinary(bytes, options);
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdatePipelineDefinitionRequest {
|
|
870
|
+
return new UpdatePipelineDefinitionRequest().fromJson(jsonValue, options);
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdatePipelineDefinitionRequest {
|
|
874
|
+
return new UpdatePipelineDefinitionRequest().fromJsonString(jsonString, options);
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
static equals(a: UpdatePipelineDefinitionRequest | PlainMessage<UpdatePipelineDefinitionRequest> | undefined, b: UpdatePipelineDefinitionRequest | PlainMessage<UpdatePipelineDefinitionRequest> | undefined): boolean {
|
|
878
|
+
return proto3.util.equals(UpdatePipelineDefinitionRequest, a, b);
|
|
879
|
+
}
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
/**
|
|
883
|
+
* @generated from message api.v1.PublishPipelineDefinitionRequest
|
|
884
|
+
*/
|
|
885
|
+
export class PublishPipelineDefinitionRequest extends Message<PublishPipelineDefinitionRequest> {
|
|
886
|
+
/**
|
|
887
|
+
* @generated from field: string definition_id = 1;
|
|
888
|
+
*/
|
|
889
|
+
definitionId = "";
|
|
890
|
+
|
|
891
|
+
constructor(data?: PartialMessage<PublishPipelineDefinitionRequest>) {
|
|
892
|
+
super();
|
|
893
|
+
proto3.util.initPartial(data, this);
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
897
|
+
static readonly typeName = "api.v1.PublishPipelineDefinitionRequest";
|
|
898
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
899
|
+
{ no: 1, name: "definition_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
900
|
+
]);
|
|
901
|
+
|
|
902
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PublishPipelineDefinitionRequest {
|
|
903
|
+
return new PublishPipelineDefinitionRequest().fromBinary(bytes, options);
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PublishPipelineDefinitionRequest {
|
|
907
|
+
return new PublishPipelineDefinitionRequest().fromJson(jsonValue, options);
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PublishPipelineDefinitionRequest {
|
|
911
|
+
return new PublishPipelineDefinitionRequest().fromJsonString(jsonString, options);
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
static equals(a: PublishPipelineDefinitionRequest | PlainMessage<PublishPipelineDefinitionRequest> | undefined, b: PublishPipelineDefinitionRequest | PlainMessage<PublishPipelineDefinitionRequest> | undefined): boolean {
|
|
915
|
+
return proto3.util.equals(PublishPipelineDefinitionRequest, a, b);
|
|
916
|
+
}
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
/**
|
|
920
|
+
* @generated from message api.v1.PublishPipelineDefinitionResponse
|
|
921
|
+
*/
|
|
922
|
+
export class PublishPipelineDefinitionResponse extends Message<PublishPipelineDefinitionResponse> {
|
|
923
|
+
/**
|
|
924
|
+
* @generated from field: int32 version = 1;
|
|
925
|
+
*/
|
|
926
|
+
version = 0;
|
|
927
|
+
|
|
928
|
+
constructor(data?: PartialMessage<PublishPipelineDefinitionResponse>) {
|
|
929
|
+
super();
|
|
930
|
+
proto3.util.initPartial(data, this);
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
934
|
+
static readonly typeName = "api.v1.PublishPipelineDefinitionResponse";
|
|
935
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
936
|
+
{ no: 1, name: "version", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
937
|
+
]);
|
|
938
|
+
|
|
939
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PublishPipelineDefinitionResponse {
|
|
940
|
+
return new PublishPipelineDefinitionResponse().fromBinary(bytes, options);
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PublishPipelineDefinitionResponse {
|
|
944
|
+
return new PublishPipelineDefinitionResponse().fromJson(jsonValue, options);
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PublishPipelineDefinitionResponse {
|
|
948
|
+
return new PublishPipelineDefinitionResponse().fromJsonString(jsonString, options);
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
static equals(a: PublishPipelineDefinitionResponse | PlainMessage<PublishPipelineDefinitionResponse> | undefined, b: PublishPipelineDefinitionResponse | PlainMessage<PublishPipelineDefinitionResponse> | undefined): boolean {
|
|
952
|
+
return proto3.util.equals(PublishPipelineDefinitionResponse, a, b);
|
|
953
|
+
}
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
/**
|
|
957
|
+
* @generated from message api.v1.ClonePipelineFromTemplateRequest
|
|
958
|
+
*/
|
|
959
|
+
export class ClonePipelineFromTemplateRequest extends Message<ClonePipelineFromTemplateRequest> {
|
|
960
|
+
/**
|
|
961
|
+
* @generated from field: string template_id = 1;
|
|
962
|
+
*/
|
|
963
|
+
templateId = "";
|
|
964
|
+
|
|
965
|
+
/**
|
|
966
|
+
* @generated from field: string name = 2;
|
|
967
|
+
*/
|
|
968
|
+
name = "";
|
|
969
|
+
|
|
970
|
+
constructor(data?: PartialMessage<ClonePipelineFromTemplateRequest>) {
|
|
971
|
+
super();
|
|
972
|
+
proto3.util.initPartial(data, this);
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
976
|
+
static readonly typeName = "api.v1.ClonePipelineFromTemplateRequest";
|
|
977
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
978
|
+
{ no: 1, name: "template_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
979
|
+
{ no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
980
|
+
]);
|
|
981
|
+
|
|
982
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ClonePipelineFromTemplateRequest {
|
|
983
|
+
return new ClonePipelineFromTemplateRequest().fromBinary(bytes, options);
|
|
984
|
+
}
|
|
985
|
+
|
|
986
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ClonePipelineFromTemplateRequest {
|
|
987
|
+
return new ClonePipelineFromTemplateRequest().fromJson(jsonValue, options);
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ClonePipelineFromTemplateRequest {
|
|
991
|
+
return new ClonePipelineFromTemplateRequest().fromJsonString(jsonString, options);
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
static equals(a: ClonePipelineFromTemplateRequest | PlainMessage<ClonePipelineFromTemplateRequest> | undefined, b: ClonePipelineFromTemplateRequest | PlainMessage<ClonePipelineFromTemplateRequest> | undefined): boolean {
|
|
995
|
+
return proto3.util.equals(ClonePipelineFromTemplateRequest, a, b);
|
|
996
|
+
}
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
/**
|
|
1000
|
+
* @generated from message api.v1.ClonePipelineFromTemplateResponse
|
|
1001
|
+
*/
|
|
1002
|
+
export class ClonePipelineFromTemplateResponse extends Message<ClonePipelineFromTemplateResponse> {
|
|
1003
|
+
/**
|
|
1004
|
+
* @generated from field: string definition_id = 1;
|
|
1005
|
+
*/
|
|
1006
|
+
definitionId = "";
|
|
1007
|
+
|
|
1008
|
+
constructor(data?: PartialMessage<ClonePipelineFromTemplateResponse>) {
|
|
1009
|
+
super();
|
|
1010
|
+
proto3.util.initPartial(data, this);
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1014
|
+
static readonly typeName = "api.v1.ClonePipelineFromTemplateResponse";
|
|
1015
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1016
|
+
{ no: 1, name: "definition_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1017
|
+
]);
|
|
1018
|
+
|
|
1019
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ClonePipelineFromTemplateResponse {
|
|
1020
|
+
return new ClonePipelineFromTemplateResponse().fromBinary(bytes, options);
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ClonePipelineFromTemplateResponse {
|
|
1024
|
+
return new ClonePipelineFromTemplateResponse().fromJson(jsonValue, options);
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ClonePipelineFromTemplateResponse {
|
|
1028
|
+
return new ClonePipelineFromTemplateResponse().fromJsonString(jsonString, options);
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
static equals(a: ClonePipelineFromTemplateResponse | PlainMessage<ClonePipelineFromTemplateResponse> | undefined, b: ClonePipelineFromTemplateResponse | PlainMessage<ClonePipelineFromTemplateResponse> | undefined): boolean {
|
|
1032
|
+
return proto3.util.equals(ClonePipelineFromTemplateResponse, a, b);
|
|
1033
|
+
}
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
/**
|
|
1037
|
+
* @generated from message api.v1.SetCompanyDefaultPipelineRequest
|
|
1038
|
+
*/
|
|
1039
|
+
export class SetCompanyDefaultPipelineRequest extends Message<SetCompanyDefaultPipelineRequest> {
|
|
1040
|
+
/**
|
|
1041
|
+
* @generated from field: string definition_id = 1;
|
|
1042
|
+
*/
|
|
1043
|
+
definitionId = "";
|
|
1044
|
+
|
|
1045
|
+
constructor(data?: PartialMessage<SetCompanyDefaultPipelineRequest>) {
|
|
1046
|
+
super();
|
|
1047
|
+
proto3.util.initPartial(data, this);
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1051
|
+
static readonly typeName = "api.v1.SetCompanyDefaultPipelineRequest";
|
|
1052
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1053
|
+
{ no: 1, name: "definition_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1054
|
+
]);
|
|
1055
|
+
|
|
1056
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetCompanyDefaultPipelineRequest {
|
|
1057
|
+
return new SetCompanyDefaultPipelineRequest().fromBinary(bytes, options);
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetCompanyDefaultPipelineRequest {
|
|
1061
|
+
return new SetCompanyDefaultPipelineRequest().fromJson(jsonValue, options);
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1064
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetCompanyDefaultPipelineRequest {
|
|
1065
|
+
return new SetCompanyDefaultPipelineRequest().fromJsonString(jsonString, options);
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
static equals(a: SetCompanyDefaultPipelineRequest | PlainMessage<SetCompanyDefaultPipelineRequest> | undefined, b: SetCompanyDefaultPipelineRequest | PlainMessage<SetCompanyDefaultPipelineRequest> | undefined): boolean {
|
|
1069
|
+
return proto3.util.equals(SetCompanyDefaultPipelineRequest, a, b);
|
|
1070
|
+
}
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
/**
|
|
1074
|
+
* @generated from message api.v1.SetCompanyDefaultPipelineResponse
|
|
1075
|
+
*/
|
|
1076
|
+
export class SetCompanyDefaultPipelineResponse extends Message<SetCompanyDefaultPipelineResponse> {
|
|
1077
|
+
constructor(data?: PartialMessage<SetCompanyDefaultPipelineResponse>) {
|
|
1078
|
+
super();
|
|
1079
|
+
proto3.util.initPartial(data, this);
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1083
|
+
static readonly typeName = "api.v1.SetCompanyDefaultPipelineResponse";
|
|
1084
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1085
|
+
]);
|
|
1086
|
+
|
|
1087
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetCompanyDefaultPipelineResponse {
|
|
1088
|
+
return new SetCompanyDefaultPipelineResponse().fromBinary(bytes, options);
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetCompanyDefaultPipelineResponse {
|
|
1092
|
+
return new SetCompanyDefaultPipelineResponse().fromJson(jsonValue, options);
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetCompanyDefaultPipelineResponse {
|
|
1096
|
+
return new SetCompanyDefaultPipelineResponse().fromJsonString(jsonString, options);
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
static equals(a: SetCompanyDefaultPipelineResponse | PlainMessage<SetCompanyDefaultPipelineResponse> | undefined, b: SetCompanyDefaultPipelineResponse | PlainMessage<SetCompanyDefaultPipelineResponse> | undefined): boolean {
|
|
1100
|
+
return proto3.util.equals(SetCompanyDefaultPipelineResponse, a, b);
|
|
1101
|
+
}
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
/**
|
|
1105
|
+
* @generated from message api.v1.SetJobPipelineDefinitionRequest
|
|
1106
|
+
*/
|
|
1107
|
+
export class SetJobPipelineDefinitionRequest extends Message<SetJobPipelineDefinitionRequest> {
|
|
1108
|
+
/**
|
|
1109
|
+
* @generated from field: string job_id = 1;
|
|
1110
|
+
*/
|
|
1111
|
+
jobId = "";
|
|
1112
|
+
|
|
1113
|
+
/**
|
|
1114
|
+
* @generated from field: string definition_id = 2;
|
|
1115
|
+
*/
|
|
1116
|
+
definitionId = "";
|
|
1117
|
+
|
|
1118
|
+
constructor(data?: PartialMessage<SetJobPipelineDefinitionRequest>) {
|
|
1119
|
+
super();
|
|
1120
|
+
proto3.util.initPartial(data, this);
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1124
|
+
static readonly typeName = "api.v1.SetJobPipelineDefinitionRequest";
|
|
1125
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1126
|
+
{ no: 1, name: "job_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1127
|
+
{ no: 2, name: "definition_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1128
|
+
]);
|
|
1129
|
+
|
|
1130
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetJobPipelineDefinitionRequest {
|
|
1131
|
+
return new SetJobPipelineDefinitionRequest().fromBinary(bytes, options);
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetJobPipelineDefinitionRequest {
|
|
1135
|
+
return new SetJobPipelineDefinitionRequest().fromJson(jsonValue, options);
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetJobPipelineDefinitionRequest {
|
|
1139
|
+
return new SetJobPipelineDefinitionRequest().fromJsonString(jsonString, options);
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
static equals(a: SetJobPipelineDefinitionRequest | PlainMessage<SetJobPipelineDefinitionRequest> | undefined, b: SetJobPipelineDefinitionRequest | PlainMessage<SetJobPipelineDefinitionRequest> | undefined): boolean {
|
|
1143
|
+
return proto3.util.equals(SetJobPipelineDefinitionRequest, a, b);
|
|
1144
|
+
}
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
/**
|
|
1148
|
+
* @generated from message api.v1.GetApplicationPipelineSnapshotRequest
|
|
1149
|
+
*/
|
|
1150
|
+
export class GetApplicationPipelineSnapshotRequest extends Message<GetApplicationPipelineSnapshotRequest> {
|
|
1151
|
+
/**
|
|
1152
|
+
* @generated from field: string application_id = 1;
|
|
1153
|
+
*/
|
|
1154
|
+
applicationId = "";
|
|
1155
|
+
|
|
1156
|
+
constructor(data?: PartialMessage<GetApplicationPipelineSnapshotRequest>) {
|
|
1157
|
+
super();
|
|
1158
|
+
proto3.util.initPartial(data, this);
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1162
|
+
static readonly typeName = "api.v1.GetApplicationPipelineSnapshotRequest";
|
|
1163
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1164
|
+
{ no: 1, name: "application_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1165
|
+
]);
|
|
1166
|
+
|
|
1167
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetApplicationPipelineSnapshotRequest {
|
|
1168
|
+
return new GetApplicationPipelineSnapshotRequest().fromBinary(bytes, options);
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetApplicationPipelineSnapshotRequest {
|
|
1172
|
+
return new GetApplicationPipelineSnapshotRequest().fromJson(jsonValue, options);
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetApplicationPipelineSnapshotRequest {
|
|
1176
|
+
return new GetApplicationPipelineSnapshotRequest().fromJsonString(jsonString, options);
|
|
1177
|
+
}
|
|
1178
|
+
|
|
1179
|
+
static equals(a: GetApplicationPipelineSnapshotRequest | PlainMessage<GetApplicationPipelineSnapshotRequest> | undefined, b: GetApplicationPipelineSnapshotRequest | PlainMessage<GetApplicationPipelineSnapshotRequest> | undefined): boolean {
|
|
1180
|
+
return proto3.util.equals(GetApplicationPipelineSnapshotRequest, a, b);
|
|
1181
|
+
}
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
/**
|
|
1185
|
+
* @generated from message api.v1.GetApplicationPipelineSnapshotResponse
|
|
1186
|
+
*/
|
|
1187
|
+
export class GetApplicationPipelineSnapshotResponse extends Message<GetApplicationPipelineSnapshotResponse> {
|
|
1188
|
+
/**
|
|
1189
|
+
* @generated from field: api.v1.PipelineSnapshot snapshot = 1;
|
|
1190
|
+
*/
|
|
1191
|
+
snapshot?: PipelineSnapshot;
|
|
1192
|
+
|
|
1193
|
+
constructor(data?: PartialMessage<GetApplicationPipelineSnapshotResponse>) {
|
|
1194
|
+
super();
|
|
1195
|
+
proto3.util.initPartial(data, this);
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
1199
|
+
static readonly typeName = "api.v1.GetApplicationPipelineSnapshotResponse";
|
|
1200
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
1201
|
+
{ no: 1, name: "snapshot", kind: "message", T: PipelineSnapshot },
|
|
1202
|
+
]);
|
|
1203
|
+
|
|
1204
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetApplicationPipelineSnapshotResponse {
|
|
1205
|
+
return new GetApplicationPipelineSnapshotResponse().fromBinary(bytes, options);
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetApplicationPipelineSnapshotResponse {
|
|
1209
|
+
return new GetApplicationPipelineSnapshotResponse().fromJson(jsonValue, options);
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetApplicationPipelineSnapshotResponse {
|
|
1213
|
+
return new GetApplicationPipelineSnapshotResponse().fromJsonString(jsonString, options);
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
static equals(a: GetApplicationPipelineSnapshotResponse | PlainMessage<GetApplicationPipelineSnapshotResponse> | undefined, b: GetApplicationPipelineSnapshotResponse | PlainMessage<GetApplicationPipelineSnapshotResponse> | undefined): boolean {
|
|
1217
|
+
return proto3.util.equals(GetApplicationPipelineSnapshotResponse, a, b);
|
|
1218
|
+
}
|
|
1219
|
+
}
|
|
1220
|
+
|