You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
# CHANGELOG
|
||||
|
||||
Lib version: 1.10.0-SNAPSHOT-250401095430
|
||||
Lib version: 1.10.0-SNAPSHOT-250403073237
|
||||
|
||||
@@ -5188,6 +5188,7 @@ class ExtractColumnFormat extends $pb.GeneratedMessage {
|
||||
factory ExtractColumnFormat({
|
||||
ExtractColumnFormat_type? type,
|
||||
$core.String? format,
|
||||
$core.bool? time,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (type != null) {
|
||||
@@ -5196,6 +5197,9 @@ class ExtractColumnFormat extends $pb.GeneratedMessage {
|
||||
if (format != null) {
|
||||
$result.format = format;
|
||||
}
|
||||
if (time != null) {
|
||||
$result.time = time;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
ExtractColumnFormat._() : super();
|
||||
@@ -5205,6 +5209,7 @@ class ExtractColumnFormat extends $pb.GeneratedMessage {
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ExtractColumnFormat', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..e<ExtractColumnFormat_type>(1, _omitFieldNames ? '' : 'Type', $pb.PbFieldType.OE, protoName: 'Type', defaultOrMaker: ExtractColumnFormat_type.UNKNOWN, valueOf: ExtractColumnFormat_type.valueOf, enumValues: ExtractColumnFormat_type.values)
|
||||
..aOS(2, _omitFieldNames ? '' : 'Format', protoName: 'Format')
|
||||
..aOB(3, _omitFieldNames ? '' : 'Time', protoName: 'Time')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -5246,6 +5251,15 @@ class ExtractColumnFormat extends $pb.GeneratedMessage {
|
||||
$core.bool hasFormat() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearFormat() => $_clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool get time => $_getBF(2);
|
||||
@$pb.TagNumber(3)
|
||||
set time($core.bool v) { $_setBool(2, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasTime() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearTime() => $_clearField(3);
|
||||
}
|
||||
|
||||
class ExtractQuery extends $pb.GeneratedMessage {
|
||||
@@ -5260,6 +5274,9 @@ class ExtractQuery extends $pb.GeneratedMessage {
|
||||
$pb.PbMap<$core.String, TranslationMap>? columnTranslationMaps,
|
||||
$pb.PbMap<$core.int, ExtractColumnFormat>? columnFormats,
|
||||
$core.String? targetTimeZone,
|
||||
$core.String? dateFormat,
|
||||
$core.String? numberFormat,
|
||||
TimeFormat? timeFormat,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
@@ -5292,6 +5309,15 @@ class ExtractQuery extends $pb.GeneratedMessage {
|
||||
if (targetTimeZone != null) {
|
||||
$result.targetTimeZone = targetTimeZone;
|
||||
}
|
||||
if (dateFormat != null) {
|
||||
$result.dateFormat = dateFormat;
|
||||
}
|
||||
if (numberFormat != null) {
|
||||
$result.numberFormat = numberFormat;
|
||||
}
|
||||
if (timeFormat != null) {
|
||||
$result.timeFormat = timeFormat;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
ExtractQuery._() : super();
|
||||
@@ -5309,6 +5335,9 @@ class ExtractQuery extends $pb.GeneratedMessage {
|
||||
..m<$core.String, TranslationMap>(8, _omitFieldNames ? '' : 'ColumnTranslationMaps', protoName: 'ColumnTranslationMaps', entryClassName: 'ExtractQuery.ColumnTranslationMapsEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OM, valueCreator: TranslationMap.create, valueDefaultOrMaker: TranslationMap.getDefault, packageName: const $pb.PackageName('api'))
|
||||
..m<$core.int, ExtractColumnFormat>(9, _omitFieldNames ? '' : 'ColumnFormats', protoName: 'ColumnFormats', entryClassName: 'ExtractQuery.ColumnFormatsEntry', keyFieldType: $pb.PbFieldType.O3, valueFieldType: $pb.PbFieldType.OM, valueCreator: ExtractColumnFormat.create, valueDefaultOrMaker: ExtractColumnFormat.getDefault, packageName: const $pb.PackageName('api'))
|
||||
..aOS(10, _omitFieldNames ? '' : 'TargetTimeZone', protoName: 'TargetTimeZone')
|
||||
..aOS(11, _omitFieldNames ? '' : 'DateFormat', protoName: 'DateFormat')
|
||||
..aOS(12, _omitFieldNames ? '' : 'NumberFormat', protoName: 'NumberFormat')
|
||||
..e<TimeFormat>(13, _omitFieldNames ? '' : 'TimeFormat', $pb.PbFieldType.OE, protoName: 'TimeFormat', defaultOrMaker: TimeFormat.H12, valueOf: TimeFormat.valueOf, enumValues: TimeFormat.values)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -5394,6 +5423,33 @@ class ExtractQuery extends $pb.GeneratedMessage {
|
||||
$core.bool hasTargetTimeZone() => $_has(9);
|
||||
@$pb.TagNumber(10)
|
||||
void clearTargetTimeZone() => $_clearField(10);
|
||||
|
||||
@$pb.TagNumber(11)
|
||||
$core.String get dateFormat => $_getSZ(10);
|
||||
@$pb.TagNumber(11)
|
||||
set dateFormat($core.String v) { $_setString(10, v); }
|
||||
@$pb.TagNumber(11)
|
||||
$core.bool hasDateFormat() => $_has(10);
|
||||
@$pb.TagNumber(11)
|
||||
void clearDateFormat() => $_clearField(11);
|
||||
|
||||
@$pb.TagNumber(12)
|
||||
$core.String get numberFormat => $_getSZ(11);
|
||||
@$pb.TagNumber(12)
|
||||
set numberFormat($core.String v) { $_setString(11, v); }
|
||||
@$pb.TagNumber(12)
|
||||
$core.bool hasNumberFormat() => $_has(11);
|
||||
@$pb.TagNumber(12)
|
||||
void clearNumberFormat() => $_clearField(12);
|
||||
|
||||
@$pb.TagNumber(13)
|
||||
TimeFormat get timeFormat => $_getN(12);
|
||||
@$pb.TagNumber(13)
|
||||
set timeFormat(TimeFormat v) { $_setField(13, v); }
|
||||
@$pb.TagNumber(13)
|
||||
$core.bool hasTimeFormat() => $_has(12);
|
||||
@$pb.TagNumber(13)
|
||||
void clearTimeFormat() => $_clearField(13);
|
||||
}
|
||||
|
||||
class ExtractResult extends $pb.GeneratedMessage {
|
||||
|
||||
@@ -370,6 +370,23 @@ class ClaimCriticality extends $pb.ProtobufEnum {
|
||||
const ClaimCriticality._(super.v, super.n);
|
||||
}
|
||||
|
||||
class TimeFormat extends $pb.ProtobufEnum {
|
||||
static const TimeFormat H12 = TimeFormat._(0, _omitEnumNames ? '' : 'H12');
|
||||
static const TimeFormat H23 = TimeFormat._(1, _omitEnumNames ? '' : 'H23');
|
||||
static const TimeFormat H24 = TimeFormat._(2, _omitEnumNames ? '' : 'H24');
|
||||
|
||||
static const $core.List<TimeFormat> values = <TimeFormat> [
|
||||
H12,
|
||||
H23,
|
||||
H24,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, TimeFormat> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static TimeFormat? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const TimeFormat._(super.v, super.n);
|
||||
}
|
||||
|
||||
class EntityAdminPlatform extends $pb.ProtobufEnum {
|
||||
static const EntityAdminPlatform PROJECT_PLATFORM = EntityAdminPlatform._(0, _omitEnumNames ? '' : 'PROJECT_PLATFORM');
|
||||
static const EntityAdminPlatform METRICS = EntityAdminPlatform._(1, _omitEnumNames ? '' : 'METRICS');
|
||||
@@ -438,11 +455,13 @@ class ExtractColumnFormat_type extends $pb.ProtobufEnum {
|
||||
static const ExtractColumnFormat_type UNKNOWN = ExtractColumnFormat_type._(0, _omitEnumNames ? '' : 'UNKNOWN');
|
||||
static const ExtractColumnFormat_type DATE = ExtractColumnFormat_type._(1, _omitEnumNames ? '' : 'DATE');
|
||||
static const ExtractColumnFormat_type SUFFIX = ExtractColumnFormat_type._(2, _omitEnumNames ? '' : 'SUFFIX');
|
||||
static const ExtractColumnFormat_type NUMBER = ExtractColumnFormat_type._(3, _omitEnumNames ? '' : 'NUMBER');
|
||||
|
||||
static const $core.List<ExtractColumnFormat_type> values = <ExtractColumnFormat_type> [
|
||||
UNKNOWN,
|
||||
DATE,
|
||||
SUFFIX,
|
||||
NUMBER,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, ExtractColumnFormat_type> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
|
||||
@@ -296,6 +296,20 @@ final $typed_data.Uint8List claimCriticalityDescriptor = $convert.base64Decode(
|
||||
'TEFJTV9DUklUSUNBTElUWV9ISUdIEB4SHgoaQ0xBSU1fQ1JJVElDQUxJVFlfQkxPQ0tJTkcQKA'
|
||||
'==');
|
||||
|
||||
@$core.Deprecated('Use timeFormatDescriptor instead')
|
||||
const TimeFormat$json = {
|
||||
'1': 'TimeFormat',
|
||||
'2': [
|
||||
{'1': 'H12', '2': 0},
|
||||
{'1': 'H23', '2': 1},
|
||||
{'1': 'H24', '2': 2},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `TimeFormat`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List timeFormatDescriptor = $convert.base64Decode(
|
||||
'CgpUaW1lRm9ybWF0EgcKA0gxMhAAEgcKA0gyMxABEgcKA0gyNBAC');
|
||||
|
||||
@$core.Deprecated('Use entityAdminPlatformDescriptor instead')
|
||||
const EntityAdminPlatform$json = {
|
||||
'1': 'EntityAdminPlatform',
|
||||
@@ -1518,7 +1532,8 @@ const ExtractColumnFormat$json = {
|
||||
'1': 'ExtractColumnFormat',
|
||||
'2': [
|
||||
{'1': 'Type', '3': 1, '4': 1, '5': 14, '6': '.api.ExtractColumnFormat.type', '10': 'Type'},
|
||||
{'1': 'Format', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Format'},
|
||||
{'1': 'Format', '3': 2, '4': 1, '5': 9, '10': 'Format'},
|
||||
{'1': 'Time', '3': 3, '4': 1, '5': 8, '10': 'Time'},
|
||||
],
|
||||
'4': [ExtractColumnFormat_type$json],
|
||||
};
|
||||
@@ -1530,14 +1545,16 @@ const ExtractColumnFormat_type$json = {
|
||||
{'1': 'UNKNOWN', '2': 0},
|
||||
{'1': 'DATE', '2': 1},
|
||||
{'1': 'SUFFIX', '2': 2},
|
||||
{'1': 'NUMBER', '2': 3},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ExtractColumnFormat`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List extractColumnFormatDescriptor = $convert.base64Decode(
|
||||
'ChNFeHRyYWN0Q29sdW1uRm9ybWF0EjEKBFR5cGUYASABKA4yHS5hcGkuRXh0cmFjdENvbHVtbk'
|
||||
'Zvcm1hdC50eXBlUgRUeXBlEh8KBkZvcm1hdBgCIAEoCUIH+kIEcgIQAVIGRm9ybWF0IikKBHR5'
|
||||
'cGUSCwoHVU5LTk9XThAAEggKBERBVEUQARIKCgZTVUZGSVgQAg==');
|
||||
'Zvcm1hdC50eXBlUgRUeXBlEhYKBkZvcm1hdBgCIAEoCVIGRm9ybWF0EhIKBFRpbWUYAyABKAhS'
|
||||
'BFRpbWUiNQoEdHlwZRILCgdVTktOT1dOEAASCAoEREFURRABEgoKBlNVRkZJWBACEgoKBk5VTU'
|
||||
'JFUhAD');
|
||||
|
||||
@$core.Deprecated('Use extractQueryDescriptor instead')
|
||||
const ExtractQuery$json = {
|
||||
@@ -1553,6 +1570,9 @@ const ExtractQuery$json = {
|
||||
{'1': 'ColumnTranslationMaps', '3': 8, '4': 3, '5': 11, '6': '.api.ExtractQuery.ColumnTranslationMapsEntry', '10': 'ColumnTranslationMaps'},
|
||||
{'1': 'ColumnFormats', '3': 9, '4': 3, '5': 11, '6': '.api.ExtractQuery.ColumnFormatsEntry', '10': 'ColumnFormats'},
|
||||
{'1': 'TargetTimeZone', '3': 10, '4': 1, '5': 9, '8': {}, '10': 'TargetTimeZone'},
|
||||
{'1': 'DateFormat', '3': 11, '4': 1, '5': 9, '8': {}, '10': 'DateFormat'},
|
||||
{'1': 'NumberFormat', '3': 12, '4': 1, '5': 9, '8': {}, '10': 'NumberFormat'},
|
||||
{'1': 'TimeFormat', '3': 13, '4': 1, '5': 14, '6': '.api.TimeFormat', '8': {}, '10': 'TimeFormat'},
|
||||
],
|
||||
'3': [ExtractQuery_ColumnTranslationMapsEntry$json, ExtractQuery_ColumnFormatsEntry$json],
|
||||
'7': {},
|
||||
@@ -1592,11 +1612,18 @@ final $typed_data.Uint8List extractQueryDescriptor = $convert.base64Decode(
|
||||
'RhcmdldFRpbWVab25lGAogASgJQocBkkF6MmhUYXJnZXQgdXNlciB0aW1lIHpvbmUgIDxhIGhy'
|
||||
'ZWY9J2h0dHBzOi8vZW4ud2lraXBlZGlhLm9yZy93aWtpL0xpc3Rfb2ZfdHpfZGF0YWJhc2VfdG'
|
||||
'ltZV96b25lcyc+Zm9ybWF0PC9hPkoOIkV1cm9wZS9QYXJpcyL6QgdyBRAB4AEBUg5UYXJnZXRU'
|
||||
'aW1lWm9uZRpdChpDb2x1bW5UcmFuc2xhdGlvbk1hcHNFbnRyeRIQCgNrZXkYASABKAlSA2tleR'
|
||||
'IpCgV2YWx1ZRgCIAEoCzITLmFwaS5UcmFuc2xhdGlvbk1hcFIFdmFsdWU6AjgBGloKEkNvbHVt'
|
||||
'bkZvcm1hdHNFbnRyeRIQCgNrZXkYASABKAVSA2tleRIuCgV2YWx1ZRgCIAEoCzIYLmFwaS5FeH'
|
||||
'RyYWN0Q29sdW1uRm9ybWF0UgV2YWx1ZToCOAE6UJJBTQpL0gEGSGVhZGVy0gEGVXNlcklk0gEG'
|
||||
'RmllbGRz0gENTGlzdFNlcGFyYXRvctIBEERlY2ltYWxTZXBhcmF0b3LSAQpDb2x1bW5OYW1l');
|
||||
'aW1lWm9uZRKHAQoKRGF0ZUZvcm1hdBgLIAEoCUJnkkFkMllMYW5ndWFnZSBjb2RlIHRvIGZvcm'
|
||||
'1hdCBkYXRlcyAgPGEgaHJlZj0naHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNPXzYz'
|
||||
'OSc+Zm9ybWF0PC9hPkoHImVuLVVTIlIKRGF0ZUZvcm1hdBKMAQoMTnVtYmVyRm9ybWF0GAwgAS'
|
||||
'gJQmiSQWUyWkxhbmd1YWdlIGNvZGUgdG8gZm9ybWF0IG51bWJlcnMgPGEgaHJlZj0naHR0cHM6'
|
||||
'Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNPXzYzOSc+Zm9ybWF0PC9hPkoHImVuLVVTIlIMTn'
|
||||
'VtYmVyRm9ybWF0EkwKClRpbWVGb3JtYXQYDSABKA4yDy5hcGkuVGltZUZvcm1hdEIbkkEYMhZI'
|
||||
'b3VyIGNsb2NrIHRpbWUgZm9ybWF0UgpUaW1lRm9ybWF0Gl0KGkNvbHVtblRyYW5zbGF0aW9uTW'
|
||||
'Fwc0VudHJ5EhAKA2tleRgBIAEoCVIDa2V5EikKBXZhbHVlGAIgASgLMhMuYXBpLlRyYW5zbGF0'
|
||||
'aW9uTWFwUgV2YWx1ZToCOAEaWgoSQ29sdW1uRm9ybWF0c0VudHJ5EhAKA2tleRgBIAEoBVIDa2'
|
||||
'V5Ei4KBXZhbHVlGAIgASgLMhguYXBpLkV4dHJhY3RDb2x1bW5Gb3JtYXRSBXZhbHVlOgI4ATpQ'
|
||||
'kkFNCkvSAQZIZWFkZXLSAQZVc2VySWTSAQZGaWVsZHPSAQ1MaXN0U2VwYXJhdG9y0gEQRGVjaW'
|
||||
'1hbFNlcGFyYXRvctIBCkNvbHVtbk5hbWU=');
|
||||
|
||||
@$core.Deprecated('Use extractResultDescriptor instead')
|
||||
const ExtractResult$json = {
|
||||
|
||||
@@ -1023,6 +1023,9 @@ class StartWorkflowExtractDataFromDBRequest extends $pb.GeneratedMessage {
|
||||
$pb.PbMap<$core.String, $29.TranslationMap>? columnTranslationMaps,
|
||||
$pb.PbMap<$core.int, $29.ExtractColumnFormat>? columnFormats,
|
||||
$core.String? targetTimeZone,
|
||||
$core.String? dateFormat,
|
||||
$core.String? numberFormat,
|
||||
$29.TimeFormat? timeFormat,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (userId != null) {
|
||||
@@ -1061,6 +1064,15 @@ class StartWorkflowExtractDataFromDBRequest extends $pb.GeneratedMessage {
|
||||
if (targetTimeZone != null) {
|
||||
$result.targetTimeZone = targetTimeZone;
|
||||
}
|
||||
if (dateFormat != null) {
|
||||
$result.dateFormat = dateFormat;
|
||||
}
|
||||
if (numberFormat != null) {
|
||||
$result.numberFormat = numberFormat;
|
||||
}
|
||||
if (timeFormat != null) {
|
||||
$result.timeFormat = timeFormat;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
StartWorkflowExtractDataFromDBRequest._() : super();
|
||||
@@ -1080,6 +1092,9 @@ class StartWorkflowExtractDataFromDBRequest extends $pb.GeneratedMessage {
|
||||
..m<$core.String, $29.TranslationMap>(10, _omitFieldNames ? '' : 'ColumnTranslationMaps', protoName: 'ColumnTranslationMaps', entryClassName: 'StartWorkflowExtractDataFromDBRequest.ColumnTranslationMapsEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OM, valueCreator: $29.TranslationMap.create, valueDefaultOrMaker: $29.TranslationMap.getDefault, packageName: const $pb.PackageName('api'))
|
||||
..m<$core.int, $29.ExtractColumnFormat>(11, _omitFieldNames ? '' : 'ColumnFormats', protoName: 'ColumnFormats', entryClassName: 'StartWorkflowExtractDataFromDBRequest.ColumnFormatsEntry', keyFieldType: $pb.PbFieldType.O3, valueFieldType: $pb.PbFieldType.OM, valueCreator: $29.ExtractColumnFormat.create, valueDefaultOrMaker: $29.ExtractColumnFormat.getDefault, packageName: const $pb.PackageName('api'))
|
||||
..aOS(12, _omitFieldNames ? '' : 'TargetTimeZone', protoName: 'TargetTimeZone')
|
||||
..aOS(13, _omitFieldNames ? '' : 'DateFormat', protoName: 'DateFormat')
|
||||
..aOS(14, _omitFieldNames ? '' : 'NumberFormat', protoName: 'NumberFormat')
|
||||
..e<$29.TimeFormat>(15, _omitFieldNames ? '' : 'TimeFormat', $pb.PbFieldType.OE, protoName: 'TimeFormat', defaultOrMaker: $29.TimeFormat.H12, valueOf: $29.TimeFormat.valueOf, enumValues: $29.TimeFormat.values)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -1181,6 +1196,33 @@ class StartWorkflowExtractDataFromDBRequest extends $pb.GeneratedMessage {
|
||||
$core.bool hasTargetTimeZone() => $_has(11);
|
||||
@$pb.TagNumber(12)
|
||||
void clearTargetTimeZone() => $_clearField(12);
|
||||
|
||||
@$pb.TagNumber(13)
|
||||
$core.String get dateFormat => $_getSZ(12);
|
||||
@$pb.TagNumber(13)
|
||||
set dateFormat($core.String v) { $_setString(12, v); }
|
||||
@$pb.TagNumber(13)
|
||||
$core.bool hasDateFormat() => $_has(12);
|
||||
@$pb.TagNumber(13)
|
||||
void clearDateFormat() => $_clearField(13);
|
||||
|
||||
@$pb.TagNumber(14)
|
||||
$core.String get numberFormat => $_getSZ(13);
|
||||
@$pb.TagNumber(14)
|
||||
set numberFormat($core.String v) { $_setString(13, v); }
|
||||
@$pb.TagNumber(14)
|
||||
$core.bool hasNumberFormat() => $_has(13);
|
||||
@$pb.TagNumber(14)
|
||||
void clearNumberFormat() => $_clearField(14);
|
||||
|
||||
@$pb.TagNumber(15)
|
||||
$29.TimeFormat get timeFormat => $_getN(14);
|
||||
@$pb.TagNumber(15)
|
||||
set timeFormat($29.TimeFormat v) { $_setField(15, v); }
|
||||
@$pb.TagNumber(15)
|
||||
$core.bool hasTimeFormat() => $_has(14);
|
||||
@$pb.TagNumber(15)
|
||||
void clearTimeFormat() => $_clearField(15);
|
||||
}
|
||||
|
||||
class StartWorkflowExtractDataFromDBResult extends $pb.GeneratedMessage {
|
||||
|
||||
@@ -285,6 +285,9 @@ const StartWorkflowExtractDataFromDBRequest$json = {
|
||||
{'1': 'ColumnTranslationMaps', '3': 10, '4': 3, '5': 11, '6': '.api.StartWorkflowExtractDataFromDBRequest.ColumnTranslationMapsEntry', '10': 'ColumnTranslationMaps'},
|
||||
{'1': 'ColumnFormats', '3': 11, '4': 3, '5': 11, '6': '.api.StartWorkflowExtractDataFromDBRequest.ColumnFormatsEntry', '10': 'ColumnFormats'},
|
||||
{'1': 'TargetTimeZone', '3': 12, '4': 1, '5': 9, '8': {}, '10': 'TargetTimeZone'},
|
||||
{'1': 'DateFormat', '3': 13, '4': 1, '5': 9, '8': {}, '10': 'DateFormat'},
|
||||
{'1': 'NumberFormat', '3': 14, '4': 1, '5': 9, '8': {}, '10': 'NumberFormat'},
|
||||
{'1': 'TimeFormat', '3': 15, '4': 1, '5': 14, '6': '.api.TimeFormat', '8': {}, '10': 'TimeFormat'},
|
||||
],
|
||||
'3': [StartWorkflowExtractDataFromDBRequest_ColumnTranslationMapsEntry$json, StartWorkflowExtractDataFromDBRequest_ColumnFormatsEntry$json],
|
||||
'7': {},
|
||||
@@ -326,12 +329,19 @@ final $typed_data.Uint8List startWorkflowExtractDataFromDBRequestDescriptor = $c
|
||||
'JtYXRzRW50cnlSDUNvbHVtbkZvcm1hdHMSsAEKDlRhcmdldFRpbWVab25lGAwgASgJQocBkkF6'
|
||||
'MmhUYXJnZXQgdXNlciB0aW1lIHpvbmUgIDxhIGhyZWY9J2h0dHBzOi8vZW4ud2lraXBlZGlhLm'
|
||||
'9yZy93aWtpL0xpc3Rfb2ZfdHpfZGF0YWJhc2VfdGltZV96b25lcyc+Zm9ybWF0PC9hPkoOIkV1'
|
||||
'cm9wZS9QYXJpcyL6QgdyBRAB4AEBUg5UYXJnZXRUaW1lWm9uZRpdChpDb2x1bW5UcmFuc2xhdG'
|
||||
'lvbk1hcHNFbnRyeRIQCgNrZXkYASABKAlSA2tleRIpCgV2YWx1ZRgCIAEoCzITLmFwaS5UcmFu'
|
||||
'c2xhdGlvbk1hcFIFdmFsdWU6AjgBGloKEkNvbHVtbkZvcm1hdHNFbnRyeRIQCgNrZXkYASABKA'
|
||||
'VSA2tleRIuCgV2YWx1ZRgCIAEoCzIYLmFwaS5FeHRyYWN0Q29sdW1uRm9ybWF0UgV2YWx1ZToC'
|
||||
'OAE6YpJBXwpd0gEGVXNlcklk0gEJUHJvamVjdElk0gEMVGFyZ2V0RG9tYWlu0gEKVGFyZ2V0VH'
|
||||
'lwZdIBBkZpZWxkc9IBDUxpc3RTZXBhcmF0b3LSARBEZWNpbWFsU2VwYXJhdG9y');
|
||||
'cm9wZS9QYXJpcyL6QgdyBRAB4AEBUg5UYXJnZXRUaW1lWm9uZRKHAQoKRGF0ZUZvcm1hdBgNIA'
|
||||
'EoCUJnkkFkMllMYW5ndWFnZSBjb2RlIHRvIGZvcm1hdCBkYXRlcyAgPGEgaHJlZj0naHR0cHM6'
|
||||
'Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNPXzYzOSc+Zm9ybWF0PC9hPkoHImVuLVVTIlIKRG'
|
||||
'F0ZUZvcm1hdBKMAQoMTnVtYmVyRm9ybWF0GA4gASgJQmiSQWUyWkxhbmd1YWdlIGNvZGUgdG8g'
|
||||
'Zm9ybWF0IG51bWJlcnMgPGEgaHJlZj0naHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSV'
|
||||
'NPXzYzOSc+Zm9ybWF0PC9hPkoHImVuLVVTIlIMTnVtYmVyRm9ybWF0EkwKClRpbWVGb3JtYXQY'
|
||||
'DyABKA4yDy5hcGkuVGltZUZvcm1hdEIbkkEYMhZIb3VyIGNsb2NrIHRpbWUgZm9ybWF0UgpUaW'
|
||||
'1lRm9ybWF0Gl0KGkNvbHVtblRyYW5zbGF0aW9uTWFwc0VudHJ5EhAKA2tleRgBIAEoCVIDa2V5'
|
||||
'EikKBXZhbHVlGAIgASgLMhMuYXBpLlRyYW5zbGF0aW9uTWFwUgV2YWx1ZToCOAEaWgoSQ29sdW'
|
||||
'1uRm9ybWF0c0VudHJ5EhAKA2tleRgBIAEoBVIDa2V5Ei4KBXZhbHVlGAIgASgLMhguYXBpLkV4'
|
||||
'dHJhY3RDb2x1bW5Gb3JtYXRSBXZhbHVlOgI4ATpikkFfCl3SAQZVc2VySWTSAQlQcm9qZWN0SW'
|
||||
'TSAQxUYXJnZXREb21haW7SAQpUYXJnZXRUeXBl0gEGRmllbGRz0gENTGlzdFNlcGFyYXRvctIB'
|
||||
'EERlY2ltYWxTZXBhcmF0b3I=');
|
||||
|
||||
@$core.Deprecated('Use startWorkflowExtractDataFromDBResultDescriptor instead')
|
||||
const StartWorkflowExtractDataFromDBResult$json = {
|
||||
|
||||
10
pubspec.lock
10
pubspec.lock
@@ -61,18 +61,18 @@ packages:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: googleapis_auth
|
||||
sha256: befd71383a955535060acde8792e7efc11d2fccd03dd1d3ec434e85b68775938
|
||||
sha256: b81fe352cc4a330b3710d2b7ad258d9bcef6f909bb759b306bf42973a7d046db
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "1.6.0"
|
||||
version: "2.0.0"
|
||||
grpc:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
name: grpc
|
||||
sha256: "751635443218cc81d2120e566e47567d4e033a10f99de859f21b65eefcad8488"
|
||||
sha256: "30e1edae6846b163a64f6d8716e3443980fe1f7d2d1f086f011d24ea186f2582"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "4.0.3"
|
||||
version: "4.0.4"
|
||||
http:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -162,4 +162,4 @@ packages:
|
||||
source: hosted
|
||||
version: "1.1.1"
|
||||
sdks:
|
||||
dart: ">=3.5.0 <4.0.0"
|
||||
dart: ">=3.6.0 <4.0.0"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: dart_core_sdk
|
||||
description: dart libs from core model proto files
|
||||
version: 1.10.0-SNAPSHOT-250401095430
|
||||
version: 1.10.0-SNAPSHOT-250403073237
|
||||
homepage: ''
|
||||
publish_to: ''
|
||||
repository: ''
|
||||
|
||||
Reference in New Issue
Block a user