You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@reflex-platform/npm-core-sdk",
|
||||
"version": "1.10.0-SNAPSHOT-250403131345",
|
||||
"version": "1.10.0-SNAPSHOT-250403134918",
|
||||
"description": "npm libs from core model proto files",
|
||||
"homepage": "",
|
||||
"main": "index.ts",
|
||||
|
||||
38
workflow.ts
38
workflow.ts
@@ -387,6 +387,18 @@ export interface StartWorkflowExtractKPIRequest {
|
||||
columnFormats: {
|
||||
[key: number]: ExtractColumnFormat;
|
||||
};
|
||||
/**
|
||||
* @generated from protobuf field: string DateFormat = 20 [json_name = "DateFormat"];
|
||||
*/
|
||||
dateFormat: string;
|
||||
/**
|
||||
* @generated from protobuf field: string NumberFormat = 21 [json_name = "NumberFormat"];
|
||||
*/
|
||||
numberFormat: string;
|
||||
/**
|
||||
* @generated from protobuf field: api.TimeFormat TimeFormat = 22 [json_name = "TimeFormat"];
|
||||
*/
|
||||
timeFormat: TimeFormat;
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf message api.StartWorkflowExtractKPIResult
|
||||
@@ -1908,7 +1920,10 @@ class StartWorkflowExtractKPIRequest$Type extends MessageType<StartWorkflowExtra
|
||||
{ no: 16, name: "ColumnNames", kind: "scalar", jsonName: "ColumnNames", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 17, name: "ColumnTranslationMaps", kind: "map", jsonName: "ColumnTranslationMaps", K: 9 /*ScalarType.STRING*/, V: { kind: "message", T: () => TranslationMap } },
|
||||
{ no: 18, name: "FieldIdxLVDetailedQuantity", kind: "scalar", jsonName: "FieldIdxLVDetailedQuantity", repeat: 1 /*RepeatType.PACKED*/, T: 5 /*ScalarType.INT32*/ },
|
||||
{ no: 19, name: "ColumnFormats", kind: "map", jsonName: "ColumnFormats", K: 5 /*ScalarType.INT32*/, V: { kind: "message", T: () => ExtractColumnFormat } }
|
||||
{ no: 19, name: "ColumnFormats", kind: "map", jsonName: "ColumnFormats", K: 5 /*ScalarType.INT32*/, V: { kind: "message", T: () => ExtractColumnFormat } },
|
||||
{ no: 20, name: "DateFormat", kind: "scalar", jsonName: "DateFormat", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Language code to format dates <a href='https://en.wikipedia.org/wiki/ISO_639'>format</a>", example: "\"en-US\"" } } },
|
||||
{ no: 21, name: "NumberFormat", kind: "scalar", jsonName: "NumberFormat", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Language code to format numbers <a href='https://en.wikipedia.org/wiki/ISO_639'>format</a>", example: "\"en-US\"" } } },
|
||||
{ no: 22, name: "TimeFormat", kind: "enum", jsonName: "TimeFormat", T: () => ["api.TimeFormat", TimeFormat], options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Hour clock time format" } } }
|
||||
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["UserId", "ProjectId", "TargetDomain", "TargetType", "Fields", "ListSeparator", "DecimalSeparator"] } } });
|
||||
}
|
||||
create(value?: PartialMessage<StartWorkflowExtractKPIRequest>): StartWorkflowExtractKPIRequest {
|
||||
@@ -1931,6 +1946,9 @@ class StartWorkflowExtractKPIRequest$Type extends MessageType<StartWorkflowExtra
|
||||
message.columnTranslationMaps = {};
|
||||
message.fieldIdxLVDetailedQuantity = [];
|
||||
message.columnFormats = {};
|
||||
message.dateFormat = "";
|
||||
message.numberFormat = "";
|
||||
message.timeFormat = 0;
|
||||
if (value !== undefined)
|
||||
reflectionMergePartial<StartWorkflowExtractKPIRequest>(this, message, value);
|
||||
return message;
|
||||
@@ -2001,6 +2019,15 @@ class StartWorkflowExtractKPIRequest$Type extends MessageType<StartWorkflowExtra
|
||||
case /* map<int32, api.ExtractColumnFormat> ColumnFormats = 19 [json_name = "ColumnFormats"];*/ 19:
|
||||
this.binaryReadMap19(message.columnFormats, reader, options);
|
||||
break;
|
||||
case /* string DateFormat = 20 [json_name = "DateFormat"];*/ 20:
|
||||
message.dateFormat = reader.string();
|
||||
break;
|
||||
case /* string NumberFormat = 21 [json_name = "NumberFormat"];*/ 21:
|
||||
message.numberFormat = reader.string();
|
||||
break;
|
||||
case /* api.TimeFormat TimeFormat = 22 [json_name = "TimeFormat"];*/ 22:
|
||||
message.timeFormat = reader.int32();
|
||||
break;
|
||||
default:
|
||||
let u = options.readUnknownField;
|
||||
if (u === "throw")
|
||||
@@ -2114,6 +2141,15 @@ class StartWorkflowExtractKPIRequest$Type extends MessageType<StartWorkflowExtra
|
||||
ExtractColumnFormat.internalBinaryWrite(message.columnFormats[k as any], writer, options);
|
||||
writer.join().join();
|
||||
}
|
||||
/* string DateFormat = 20 [json_name = "DateFormat"]; */
|
||||
if (message.dateFormat !== "")
|
||||
writer.tag(20, WireType.LengthDelimited).string(message.dateFormat);
|
||||
/* string NumberFormat = 21 [json_name = "NumberFormat"]; */
|
||||
if (message.numberFormat !== "")
|
||||
writer.tag(21, WireType.LengthDelimited).string(message.numberFormat);
|
||||
/* api.TimeFormat TimeFormat = 22 [json_name = "TimeFormat"]; */
|
||||
if (message.timeFormat !== 0)
|
||||
writer.tag(22, WireType.Varint).int32(message.timeFormat);
|
||||
let u = options.writeUnknownFields;
|
||||
if (u !== false)
|
||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||
|
||||
Reference in New Issue
Block a user