You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
# CHANGELOG
|
||||
|
||||
Lib version: 1.15.0-SNAPSHOT-260819082709
|
||||
Lib version: 1.15.0-SNAPSHOT-260819083604
|
||||
|
||||
2820
lib/ruleEngine_model.pb.dart
Normal file
2820
lib/ruleEngine_model.pb.dart
Normal file
File diff suppressed because it is too large
Load Diff
346
lib/ruleEngine_model.pbenum.dart
Normal file
346
lib/ruleEngine_model.pbenum.dart
Normal file
@@ -0,0 +1,346 @@
|
||||
// This is a generated file - do not edit.
|
||||
//
|
||||
// Generated from ruleEngine_model.proto.
|
||||
|
||||
// @dart = 3.3
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// ignore_for_file: constant_identifier_names
|
||||
// ignore_for_file: curly_braces_in_flow_control_structures
|
||||
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
|
||||
// ignore_for_file: non_constant_identifier_names
|
||||
|
||||
import 'dart:core' as $core;
|
||||
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
class EngineRuleValidityType extends $pb.ProtobufEnum {
|
||||
static const EngineRuleValidityType ENGINE_RULE_VALIDITY_TYPE_UNKNOWN = EngineRuleValidityType._(0, _omitEnumNames ? '' : 'ENGINE_RULE_VALIDITY_TYPE_UNKNOWN');
|
||||
static const EngineRuleValidityType ENGINE_RULE_VALIDITY_TYPE_INDEFINITE = EngineRuleValidityType._(1, _omitEnumNames ? '' : 'ENGINE_RULE_VALIDITY_TYPE_INDEFINITE');
|
||||
static const EngineRuleValidityType ENGINE_RULE_VALIDITY_TYPE_DATE_RANGE = EngineRuleValidityType._(2, _omitEnumNames ? '' : 'ENGINE_RULE_VALIDITY_TYPE_DATE_RANGE');
|
||||
|
||||
static const $core.List<EngineRuleValidityType> values = <EngineRuleValidityType> [
|
||||
ENGINE_RULE_VALIDITY_TYPE_UNKNOWN,
|
||||
ENGINE_RULE_VALIDITY_TYPE_INDEFINITE,
|
||||
ENGINE_RULE_VALIDITY_TYPE_DATE_RANGE,
|
||||
];
|
||||
|
||||
static final $core.List<EngineRuleValidityType?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2);
|
||||
static EngineRuleValidityType? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const EngineRuleValidityType._(super.value, super.name);
|
||||
}
|
||||
|
||||
/// Note ByDay + AtTime combine to express things like "every Monday and
|
||||
/// Tuesday at 23:59:00": Frequency = WEEKLY, ByDay = [MONDAY, TUESDAY],
|
||||
/// AtTime = "23:59:00". This is already supported by the fields above.
|
||||
class RuleRecurrenceFrequency extends $pb.ProtobufEnum {
|
||||
static const RuleRecurrenceFrequency RULE_RECURRENCE_FREQUENCY_UNKNOWN = RuleRecurrenceFrequency._(0, _omitEnumNames ? '' : 'RULE_RECURRENCE_FREQUENCY_UNKNOWN');
|
||||
static const RuleRecurrenceFrequency RULE_RECURRENCE_FREQUENCY_MINUTELY = RuleRecurrenceFrequency._(5, _omitEnumNames ? '' : 'RULE_RECURRENCE_FREQUENCY_MINUTELY');
|
||||
static const RuleRecurrenceFrequency RULE_RECURRENCE_FREQUENCY_DAILY = RuleRecurrenceFrequency._(1, _omitEnumNames ? '' : 'RULE_RECURRENCE_FREQUENCY_DAILY');
|
||||
static const RuleRecurrenceFrequency RULE_RECURRENCE_FREQUENCY_WEEKLY = RuleRecurrenceFrequency._(2, _omitEnumNames ? '' : 'RULE_RECURRENCE_FREQUENCY_WEEKLY');
|
||||
static const RuleRecurrenceFrequency RULE_RECURRENCE_FREQUENCY_MONTHLY = RuleRecurrenceFrequency._(3, _omitEnumNames ? '' : 'RULE_RECURRENCE_FREQUENCY_MONTHLY');
|
||||
static const RuleRecurrenceFrequency RULE_RECURRENCE_FREQUENCY_YEARLY = RuleRecurrenceFrequency._(4, _omitEnumNames ? '' : 'RULE_RECURRENCE_FREQUENCY_YEARLY');
|
||||
|
||||
static const $core.List<RuleRecurrenceFrequency> values = <RuleRecurrenceFrequency> [
|
||||
RULE_RECURRENCE_FREQUENCY_UNKNOWN,
|
||||
RULE_RECURRENCE_FREQUENCY_MINUTELY,
|
||||
RULE_RECURRENCE_FREQUENCY_DAILY,
|
||||
RULE_RECURRENCE_FREQUENCY_WEEKLY,
|
||||
RULE_RECURRENCE_FREQUENCY_MONTHLY,
|
||||
RULE_RECURRENCE_FREQUENCY_YEARLY,
|
||||
];
|
||||
|
||||
static final $core.List<RuleRecurrenceFrequency?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 5);
|
||||
static RuleRecurrenceFrequency? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const RuleRecurrenceFrequency._(super.value, super.name);
|
||||
}
|
||||
|
||||
class EngineRuleTriggerType extends $pb.ProtobufEnum {
|
||||
static const EngineRuleTriggerType ENGINE_RULE_TRIGGER_TYPE_UNKNOWN = EngineRuleTriggerType._(0, _omitEnumNames ? '' : 'ENGINE_RULE_TRIGGER_TYPE_UNKNOWN');
|
||||
static const EngineRuleTriggerType ENGINE_RULE_TRIGGER_TYPE_SCHEDULED = EngineRuleTriggerType._(1, _omitEnumNames ? '' : 'ENGINE_RULE_TRIGGER_TYPE_SCHEDULED');
|
||||
static const EngineRuleTriggerType ENGINE_RULE_TRIGGER_TYPE_EVENT = EngineRuleTriggerType._(2, _omitEnumNames ? '' : 'ENGINE_RULE_TRIGGER_TYPE_EVENT');
|
||||
static const EngineRuleTriggerType ENGINE_RULE_TRIGGER_TYPE_MILESTONE = EngineRuleTriggerType._(3, _omitEnumNames ? '' : 'ENGINE_RULE_TRIGGER_TYPE_MILESTONE');
|
||||
|
||||
static const $core.List<EngineRuleTriggerType> values = <EngineRuleTriggerType> [
|
||||
ENGINE_RULE_TRIGGER_TYPE_UNKNOWN,
|
||||
ENGINE_RULE_TRIGGER_TYPE_SCHEDULED,
|
||||
ENGINE_RULE_TRIGGER_TYPE_EVENT,
|
||||
ENGINE_RULE_TRIGGER_TYPE_MILESTONE,
|
||||
];
|
||||
|
||||
static final $core.List<EngineRuleTriggerType?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 3);
|
||||
static EngineRuleTriggerType? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const EngineRuleTriggerType._(super.value, super.name);
|
||||
}
|
||||
|
||||
/// Logical quantifiers for collection conditions.
|
||||
class EngineRuleConditionQuantifier extends $pb.ProtobufEnum {
|
||||
static const EngineRuleConditionQuantifier RULE_CONDITION_QUANTIFIER_UNKNOWN = EngineRuleConditionQuantifier._(0, _omitEnumNames ? '' : 'RULE_CONDITION_QUANTIFIER_UNKNOWN');
|
||||
static const EngineRuleConditionQuantifier RULE_CONDITION_QUANTIFIER_ALL = EngineRuleConditionQuantifier._(1, _omitEnumNames ? '' : 'RULE_CONDITION_QUANTIFIER_ALL');
|
||||
static const EngineRuleConditionQuantifier RULE_CONDITION_QUANTIFIER_ANY = EngineRuleConditionQuantifier._(2, _omitEnumNames ? '' : 'RULE_CONDITION_QUANTIFIER_ANY');
|
||||
static const EngineRuleConditionQuantifier RULE_CONDITION_QUANTIFIER_NONE = EngineRuleConditionQuantifier._(3, _omitEnumNames ? '' : 'RULE_CONDITION_QUANTIFIER_NONE');
|
||||
|
||||
static const $core.List<EngineRuleConditionQuantifier> values = <EngineRuleConditionQuantifier> [
|
||||
RULE_CONDITION_QUANTIFIER_UNKNOWN,
|
||||
RULE_CONDITION_QUANTIFIER_ALL,
|
||||
RULE_CONDITION_QUANTIFIER_ANY,
|
||||
RULE_CONDITION_QUANTIFIER_NONE,
|
||||
];
|
||||
|
||||
static final $core.List<EngineRuleConditionQuantifier?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 3);
|
||||
static EngineRuleConditionQuantifier? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const EngineRuleConditionQuantifier._(super.value, super.name);
|
||||
}
|
||||
|
||||
class EngineRuleConditionAggregateFunction extends $pb.ProtobufEnum {
|
||||
static const EngineRuleConditionAggregateFunction RULE_CONDITION_AGGREGATE_FUNCTION_UNKNOWN = EngineRuleConditionAggregateFunction._(0, _omitEnumNames ? '' : 'RULE_CONDITION_AGGREGATE_FUNCTION_UNKNOWN');
|
||||
static const EngineRuleConditionAggregateFunction RULE_CONDITION_AGGREGATE_FUNCTION_SUM = EngineRuleConditionAggregateFunction._(1, _omitEnumNames ? '' : 'RULE_CONDITION_AGGREGATE_FUNCTION_SUM');
|
||||
static const EngineRuleConditionAggregateFunction RULE_CONDITION_AGGREGATE_FUNCTION_COUNT = EngineRuleConditionAggregateFunction._(2, _omitEnumNames ? '' : 'RULE_CONDITION_AGGREGATE_FUNCTION_COUNT');
|
||||
static const EngineRuleConditionAggregateFunction RULE_CONDITION_AGGREGATE_FUNCTION_AVG = EngineRuleConditionAggregateFunction._(3, _omitEnumNames ? '' : 'RULE_CONDITION_AGGREGATE_FUNCTION_AVG');
|
||||
static const EngineRuleConditionAggregateFunction RULE_CONDITION_AGGREGATE_FUNCTION_MIN = EngineRuleConditionAggregateFunction._(4, _omitEnumNames ? '' : 'RULE_CONDITION_AGGREGATE_FUNCTION_MIN');
|
||||
static const EngineRuleConditionAggregateFunction RULE_CONDITION_AGGREGATE_FUNCTION_MAX = EngineRuleConditionAggregateFunction._(5, _omitEnumNames ? '' : 'RULE_CONDITION_AGGREGATE_FUNCTION_MAX');
|
||||
|
||||
static const $core.List<EngineRuleConditionAggregateFunction> values = <EngineRuleConditionAggregateFunction> [
|
||||
RULE_CONDITION_AGGREGATE_FUNCTION_UNKNOWN,
|
||||
RULE_CONDITION_AGGREGATE_FUNCTION_SUM,
|
||||
RULE_CONDITION_AGGREGATE_FUNCTION_COUNT,
|
||||
RULE_CONDITION_AGGREGATE_FUNCTION_AVG,
|
||||
RULE_CONDITION_AGGREGATE_FUNCTION_MIN,
|
||||
RULE_CONDITION_AGGREGATE_FUNCTION_MAX,
|
||||
];
|
||||
|
||||
static final $core.List<EngineRuleConditionAggregateFunction?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 5);
|
||||
static EngineRuleConditionAggregateFunction? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const EngineRuleConditionAggregateFunction._(super.value, super.name);
|
||||
}
|
||||
|
||||
class EngineRuleConditionOperator extends $pb.ProtobufEnum {
|
||||
static const EngineRuleConditionOperator RULE_CONDITION_OPERATOR_UNKNOWN = EngineRuleConditionOperator._(0, _omitEnumNames ? '' : 'RULE_CONDITION_OPERATOR_UNKNOWN');
|
||||
static const EngineRuleConditionOperator RULE_CONDITION_OPERATOR_EQUALS = EngineRuleConditionOperator._(1, _omitEnumNames ? '' : 'RULE_CONDITION_OPERATOR_EQUALS');
|
||||
static const EngineRuleConditionOperator RULE_CONDITION_OPERATOR_NOT_EQUALS = EngineRuleConditionOperator._(2, _omitEnumNames ? '' : 'RULE_CONDITION_OPERATOR_NOT_EQUALS');
|
||||
static const EngineRuleConditionOperator RULE_CONDITION_OPERATOR_GREATER_THAN = EngineRuleConditionOperator._(3, _omitEnumNames ? '' : 'RULE_CONDITION_OPERATOR_GREATER_THAN');
|
||||
static const EngineRuleConditionOperator RULE_CONDITION_OPERATOR_LESS_THAN = EngineRuleConditionOperator._(4, _omitEnumNames ? '' : 'RULE_CONDITION_OPERATOR_LESS_THAN');
|
||||
static const EngineRuleConditionOperator RULE_CONDITION_OPERATOR_GREATER_OR_EQUALS = EngineRuleConditionOperator._(5, _omitEnumNames ? '' : 'RULE_CONDITION_OPERATOR_GREATER_OR_EQUALS');
|
||||
static const EngineRuleConditionOperator RULE_CONDITION_OPERATOR_LESS_OR_EQUALS = EngineRuleConditionOperator._(6, _omitEnumNames ? '' : 'RULE_CONDITION_OPERATOR_LESS_OR_EQUALS');
|
||||
static const EngineRuleConditionOperator RULE_CONDITION_OPERATOR_IN = EngineRuleConditionOperator._(7, _omitEnumNames ? '' : 'RULE_CONDITION_OPERATOR_IN');
|
||||
|
||||
static const $core.List<EngineRuleConditionOperator> values = <EngineRuleConditionOperator> [
|
||||
RULE_CONDITION_OPERATOR_UNKNOWN,
|
||||
RULE_CONDITION_OPERATOR_EQUALS,
|
||||
RULE_CONDITION_OPERATOR_NOT_EQUALS,
|
||||
RULE_CONDITION_OPERATOR_GREATER_THAN,
|
||||
RULE_CONDITION_OPERATOR_LESS_THAN,
|
||||
RULE_CONDITION_OPERATOR_GREATER_OR_EQUALS,
|
||||
RULE_CONDITION_OPERATOR_LESS_OR_EQUALS,
|
||||
RULE_CONDITION_OPERATOR_IN,
|
||||
];
|
||||
|
||||
static final $core.List<EngineRuleConditionOperator?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 7);
|
||||
static EngineRuleConditionOperator? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const EngineRuleConditionOperator._(super.value, super.name);
|
||||
}
|
||||
|
||||
class EngineRuleFieldRefScope extends $pb.ProtobufEnum {
|
||||
static const EngineRuleFieldRefScope ENGINE_RULE_FIELD_REF_SCOPE_UNKNOWN = EngineRuleFieldRefScope._(0, _omitEnumNames ? '' : 'ENGINE_RULE_FIELD_REF_SCOPE_UNKNOWN');
|
||||
static const EngineRuleFieldRefScope ENGINE_RULE_FIELD_REF_SCOPE_ABSOLUTE = EngineRuleFieldRefScope._(1, _omitEnumNames ? '' : 'ENGINE_RULE_FIELD_REF_SCOPE_ABSOLUTE');
|
||||
static const EngineRuleFieldRefScope ENGINE_RULE_FIELD_REF_SCOPE_ELEMENT = EngineRuleFieldRefScope._(2, _omitEnumNames ? '' : 'ENGINE_RULE_FIELD_REF_SCOPE_ELEMENT');
|
||||
|
||||
static const $core.List<EngineRuleFieldRefScope> values = <EngineRuleFieldRefScope> [
|
||||
ENGINE_RULE_FIELD_REF_SCOPE_UNKNOWN,
|
||||
ENGINE_RULE_FIELD_REF_SCOPE_ABSOLUTE,
|
||||
ENGINE_RULE_FIELD_REF_SCOPE_ELEMENT,
|
||||
];
|
||||
|
||||
static final $core.List<EngineRuleFieldRefScope?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2);
|
||||
static EngineRuleFieldRefScope? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const EngineRuleFieldRefScope._(super.value, super.name);
|
||||
}
|
||||
|
||||
class ComputationDueDateComputationType extends $pb.ProtobufEnum {
|
||||
static const ComputationDueDateComputationType COMPUTATION_DUE_DATE_COMPUTATION_TYPE_UNKNOWN = ComputationDueDateComputationType._(0, _omitEnumNames ? '' : 'COMPUTATION_DUE_DATE_COMPUTATION_TYPE_UNKNOWN');
|
||||
static const ComputationDueDateComputationType COMPUTATION_DUE_DATE_COMPUTATION_TYPE_ADD = ComputationDueDateComputationType._(1, _omitEnumNames ? '' : 'COMPUTATION_DUE_DATE_COMPUTATION_TYPE_ADD');
|
||||
static const ComputationDueDateComputationType COMPUTATION_DUE_DATE_COMPUTATION_TYPE_SUBTRACT = ComputationDueDateComputationType._(2, _omitEnumNames ? '' : 'COMPUTATION_DUE_DATE_COMPUTATION_TYPE_SUBTRACT');
|
||||
|
||||
static const $core.List<ComputationDueDateComputationType> values = <ComputationDueDateComputationType> [
|
||||
COMPUTATION_DUE_DATE_COMPUTATION_TYPE_UNKNOWN,
|
||||
COMPUTATION_DUE_DATE_COMPUTATION_TYPE_ADD,
|
||||
COMPUTATION_DUE_DATE_COMPUTATION_TYPE_SUBTRACT,
|
||||
];
|
||||
|
||||
static final $core.List<ComputationDueDateComputationType?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2);
|
||||
static ComputationDueDateComputationType? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const ComputationDueDateComputationType._(super.value, super.name);
|
||||
}
|
||||
|
||||
class DurationFormat extends $pb.ProtobufEnum {
|
||||
static const DurationFormat DURATION_FORMAT_UNKNOWN = DurationFormat._(0, _omitEnumNames ? '' : 'DURATION_FORMAT_UNKNOWN');
|
||||
static const DurationFormat DURATION_FORMAT_MINUTES = DurationFormat._(10, _omitEnumNames ? '' : 'DURATION_FORMAT_MINUTES');
|
||||
static const DurationFormat DURATION_FORMAT_WORKING_MINUTES = DurationFormat._(11, _omitEnumNames ? '' : 'DURATION_FORMAT_WORKING_MINUTES');
|
||||
static const DurationFormat DURATION_FORMAT_HOURS = DurationFormat._(20, _omitEnumNames ? '' : 'DURATION_FORMAT_HOURS');
|
||||
static const DurationFormat DURATION_FORMAT_WORKING_HOURS = DurationFormat._(21, _omitEnumNames ? '' : 'DURATION_FORMAT_WORKING_HOURS');
|
||||
static const DurationFormat DURATION_FORMAT_DAYS = DurationFormat._(30, _omitEnumNames ? '' : 'DURATION_FORMAT_DAYS');
|
||||
static const DurationFormat DURATION_FORMAT_WORKING_DAYS = DurationFormat._(31, _omitEnumNames ? '' : 'DURATION_FORMAT_WORKING_DAYS');
|
||||
|
||||
static const $core.List<DurationFormat> values = <DurationFormat> [
|
||||
DURATION_FORMAT_UNKNOWN,
|
||||
DURATION_FORMAT_MINUTES,
|
||||
DURATION_FORMAT_WORKING_MINUTES,
|
||||
DURATION_FORMAT_HOURS,
|
||||
DURATION_FORMAT_WORKING_HOURS,
|
||||
DURATION_FORMAT_DAYS,
|
||||
DURATION_FORMAT_WORKING_DAYS,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, DurationFormat> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static DurationFormat? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const DurationFormat._(super.value, super.name);
|
||||
}
|
||||
|
||||
class DurationRounding extends $pb.ProtobufEnum {
|
||||
static const DurationRounding DURATION_ROUNDING_UNKNOWN = DurationRounding._(0, _omitEnumNames ? '' : 'DURATION_ROUNDING_UNKNOWN');
|
||||
static const DurationRounding DURATION_ROUNDING_UP = DurationRounding._(1, _omitEnumNames ? '' : 'DURATION_ROUNDING_UP');
|
||||
static const DurationRounding DURATION_ROUNDING_DOWN = DurationRounding._(2, _omitEnumNames ? '' : 'DURATION_ROUNDING_DOWN');
|
||||
static const DurationRounding DURATION_ROUNDING_FIXED_HOUR = DurationRounding._(3, _omitEnumNames ? '' : 'DURATION_ROUNDING_FIXED_HOUR');
|
||||
|
||||
static const $core.List<DurationRounding> values = <DurationRounding> [
|
||||
DURATION_ROUNDING_UNKNOWN,
|
||||
DURATION_ROUNDING_UP,
|
||||
DURATION_ROUNDING_DOWN,
|
||||
DURATION_ROUNDING_FIXED_HOUR,
|
||||
];
|
||||
|
||||
static final $core.List<DurationRounding?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 3);
|
||||
static DurationRounding? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const DurationRounding._(super.value, super.name);
|
||||
}
|
||||
|
||||
class ComputationCustomFunctionOperator extends $pb.ProtobufEnum {
|
||||
static const ComputationCustomFunctionOperator COMPUTATION_CUSTOM_FUNCTION_OPERATOR_UNKNOWN = ComputationCustomFunctionOperator._(0, _omitEnumNames ? '' : 'COMPUTATION_CUSTOM_FUNCTION_OPERATOR_UNKNOWN');
|
||||
static const ComputationCustomFunctionOperator COMPUTATION_CUSTOM_FUNCTION_OPERATOR_ADD = ComputationCustomFunctionOperator._(1, _omitEnumNames ? '' : 'COMPUTATION_CUSTOM_FUNCTION_OPERATOR_ADD');
|
||||
static const ComputationCustomFunctionOperator COMPUTATION_CUSTOM_FUNCTION_OPERATOR_SUBTRACT = ComputationCustomFunctionOperator._(2, _omitEnumNames ? '' : 'COMPUTATION_CUSTOM_FUNCTION_OPERATOR_SUBTRACT');
|
||||
static const ComputationCustomFunctionOperator COMPUTATION_CUSTOM_FUNCTION_OPERATOR_MULTIPLY = ComputationCustomFunctionOperator._(3, _omitEnumNames ? '' : 'COMPUTATION_CUSTOM_FUNCTION_OPERATOR_MULTIPLY');
|
||||
static const ComputationCustomFunctionOperator COMPUTATION_CUSTOM_FUNCTION_OPERATOR_DIVIDE = ComputationCustomFunctionOperator._(4, _omitEnumNames ? '' : 'COMPUTATION_CUSTOM_FUNCTION_OPERATOR_DIVIDE');
|
||||
|
||||
static const $core.List<ComputationCustomFunctionOperator> values = <ComputationCustomFunctionOperator> [
|
||||
COMPUTATION_CUSTOM_FUNCTION_OPERATOR_UNKNOWN,
|
||||
COMPUTATION_CUSTOM_FUNCTION_OPERATOR_ADD,
|
||||
COMPUTATION_CUSTOM_FUNCTION_OPERATOR_SUBTRACT,
|
||||
COMPUTATION_CUSTOM_FUNCTION_OPERATOR_MULTIPLY,
|
||||
COMPUTATION_CUSTOM_FUNCTION_OPERATOR_DIVIDE,
|
||||
];
|
||||
|
||||
static final $core.List<ComputationCustomFunctionOperator?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 4);
|
||||
static ComputationCustomFunctionOperator? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const ComputationCustomFunctionOperator._(super.value, super.name);
|
||||
}
|
||||
|
||||
class CustomFunctionFormat extends $pb.ProtobufEnum {
|
||||
static const CustomFunctionFormat CUSTOM_FUNCTION_FORMAT_UNKNOWN = CustomFunctionFormat._(0, _omitEnumNames ? '' : 'CUSTOM_FUNCTION_FORMAT_UNKNOWN');
|
||||
static const CustomFunctionFormat CUSTOM_FUNCTION_FORMAT_NUMERIC = CustomFunctionFormat._(1, _omitEnumNames ? '' : 'CUSTOM_FUNCTION_FORMAT_NUMERIC');
|
||||
static const CustomFunctionFormat CUSTOM_FUNCTION_FORMAT_PERCENTAGE = CustomFunctionFormat._(2, _omitEnumNames ? '' : 'CUSTOM_FUNCTION_FORMAT_PERCENTAGE');
|
||||
|
||||
static const $core.List<CustomFunctionFormat> values = <CustomFunctionFormat> [
|
||||
CUSTOM_FUNCTION_FORMAT_UNKNOWN,
|
||||
CUSTOM_FUNCTION_FORMAT_NUMERIC,
|
||||
CUSTOM_FUNCTION_FORMAT_PERCENTAGE,
|
||||
];
|
||||
|
||||
static final $core.List<CustomFunctionFormat?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2);
|
||||
static CustomFunctionFormat? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const CustomFunctionFormat._(super.value, super.name);
|
||||
}
|
||||
|
||||
class CustomFunctionRounding extends $pb.ProtobufEnum {
|
||||
static const CustomFunctionRounding CUSTOM_FUNCTION_ROUNDING_UNKNOWN = CustomFunctionRounding._(0, _omitEnumNames ? '' : 'CUSTOM_FUNCTION_ROUNDING_UNKNOWN');
|
||||
static const CustomFunctionRounding CUSTOM_FUNCTION_ROUNDING_UP = CustomFunctionRounding._(1, _omitEnumNames ? '' : 'CUSTOM_FUNCTION_ROUNDING_UP');
|
||||
static const CustomFunctionRounding CUSTOM_FUNCTION_ROUNDING_DOWN = CustomFunctionRounding._(2, _omitEnumNames ? '' : 'CUSTOM_FUNCTION_ROUNDING_DOWN');
|
||||
|
||||
static const $core.List<CustomFunctionRounding> values = <CustomFunctionRounding> [
|
||||
CUSTOM_FUNCTION_ROUNDING_UNKNOWN,
|
||||
CUSTOM_FUNCTION_ROUNDING_UP,
|
||||
CUSTOM_FUNCTION_ROUNDING_DOWN,
|
||||
];
|
||||
|
||||
static final $core.List<CustomFunctionRounding?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2);
|
||||
static CustomFunctionRounding? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const CustomFunctionRounding._(super.value, super.name);
|
||||
}
|
||||
|
||||
class MappingTableInputDescriptionGranularity extends $pb.ProtobufEnum {
|
||||
static const MappingTableInputDescriptionGranularity MAPPING_TABLE_INPUT_DESCRIPTION_GRANULARITY_UNKNOWN = MappingTableInputDescriptionGranularity._(0, _omitEnumNames ? '' : 'MAPPING_TABLE_INPUT_DESCRIPTION_GRANULARITY_UNKNOWN');
|
||||
static const MappingTableInputDescriptionGranularity MAPPING_TABLE_INPUT_DESCRIPTION_GRANULARITY_HOUR = MappingTableInputDescriptionGranularity._(1, _omitEnumNames ? '' : 'MAPPING_TABLE_INPUT_DESCRIPTION_GRANULARITY_HOUR');
|
||||
static const MappingTableInputDescriptionGranularity MAPPING_TABLE_INPUT_DESCRIPTION_GRANULARITY_DATE = MappingTableInputDescriptionGranularity._(2, _omitEnumNames ? '' : 'MAPPING_TABLE_INPUT_DESCRIPTION_GRANULARITY_DATE');
|
||||
static const MappingTableInputDescriptionGranularity MAPPING_TABLE_INPUT_DESCRIPTION_GRANULARITY_HOUR_AND_DATE = MappingTableInputDescriptionGranularity._(3, _omitEnumNames ? '' : 'MAPPING_TABLE_INPUT_DESCRIPTION_GRANULARITY_HOUR_AND_DATE');
|
||||
|
||||
static const $core.List<MappingTableInputDescriptionGranularity> values = <MappingTableInputDescriptionGranularity> [
|
||||
MAPPING_TABLE_INPUT_DESCRIPTION_GRANULARITY_UNKNOWN,
|
||||
MAPPING_TABLE_INPUT_DESCRIPTION_GRANULARITY_HOUR,
|
||||
MAPPING_TABLE_INPUT_DESCRIPTION_GRANULARITY_DATE,
|
||||
MAPPING_TABLE_INPUT_DESCRIPTION_GRANULARITY_HOUR_AND_DATE,
|
||||
];
|
||||
|
||||
static final $core.List<MappingTableInputDescriptionGranularity?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 3);
|
||||
static MappingTableInputDescriptionGranularity? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const MappingTableInputDescriptionGranularity._(super.value, super.name);
|
||||
}
|
||||
|
||||
class MappingTableInputOperator extends $pb.ProtobufEnum {
|
||||
static const MappingTableInputOperator MAPPING_TABLE_INPUT_OPERATOR_UNKNOWN = MappingTableInputOperator._(0, _omitEnumNames ? '' : 'MAPPING_TABLE_INPUT_OPERATOR_UNKNOWN');
|
||||
static const MappingTableInputOperator MAPPING_TABLE_INPUT_OPERATOR_EQUALS = MappingTableInputOperator._(1, _omitEnumNames ? '' : 'MAPPING_TABLE_INPUT_OPERATOR_EQUALS');
|
||||
static const MappingTableInputOperator MAPPING_TABLE_INPUT_OPERATOR_NOT_EQUALS = MappingTableInputOperator._(2, _omitEnumNames ? '' : 'MAPPING_TABLE_INPUT_OPERATOR_NOT_EQUALS');
|
||||
static const MappingTableInputOperator MAPPING_TABLE_INPUT_OPERATOR_LESS_THAN = MappingTableInputOperator._(3, _omitEnumNames ? '' : 'MAPPING_TABLE_INPUT_OPERATOR_LESS_THAN');
|
||||
static const MappingTableInputOperator MAPPING_TABLE_INPUT_OPERATOR_LESS_OR_EQUALS = MappingTableInputOperator._(4, _omitEnumNames ? '' : 'MAPPING_TABLE_INPUT_OPERATOR_LESS_OR_EQUALS');
|
||||
static const MappingTableInputOperator MAPPING_TABLE_INPUT_OPERATOR_GREATER_THAN = MappingTableInputOperator._(5, _omitEnumNames ? '' : 'MAPPING_TABLE_INPUT_OPERATOR_GREATER_THAN');
|
||||
static const MappingTableInputOperator MAPPING_TABLE_INPUT_OPERATOR_GREATER_OR_EQUALS = MappingTableInputOperator._(6, _omitEnumNames ? '' : 'MAPPING_TABLE_INPUT_OPERATOR_GREATER_OR_EQUALS');
|
||||
|
||||
static const $core.List<MappingTableInputOperator> values = <MappingTableInputOperator> [
|
||||
MAPPING_TABLE_INPUT_OPERATOR_UNKNOWN,
|
||||
MAPPING_TABLE_INPUT_OPERATOR_EQUALS,
|
||||
MAPPING_TABLE_INPUT_OPERATOR_NOT_EQUALS,
|
||||
MAPPING_TABLE_INPUT_OPERATOR_LESS_THAN,
|
||||
MAPPING_TABLE_INPUT_OPERATOR_LESS_OR_EQUALS,
|
||||
MAPPING_TABLE_INPUT_OPERATOR_GREATER_THAN,
|
||||
MAPPING_TABLE_INPUT_OPERATOR_GREATER_OR_EQUALS,
|
||||
];
|
||||
|
||||
static final $core.List<MappingTableInputOperator?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 6);
|
||||
static MappingTableInputOperator? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const MappingTableInputOperator._(super.value, super.name);
|
||||
}
|
||||
|
||||
class MappingTableOutputFieldType extends $pb.ProtobufEnum {
|
||||
static const MappingTableOutputFieldType MAPPING_TABLE_OUTPUT_FIELD_TYPE_UNKNOWN = MappingTableOutputFieldType._(0, _omitEnumNames ? '' : 'MAPPING_TABLE_OUTPUT_FIELD_TYPE_UNKNOWN');
|
||||
static const MappingTableOutputFieldType MAPPING_TABLE_OUTPUT_FIELD_TYPE_INTEGER = MappingTableOutputFieldType._(1, _omitEnumNames ? '' : 'MAPPING_TABLE_OUTPUT_FIELD_TYPE_INTEGER');
|
||||
static const MappingTableOutputFieldType MAPPING_TABLE_OUTPUT_FIELD_TYPE_STRING = MappingTableOutputFieldType._(2, _omitEnumNames ? '' : 'MAPPING_TABLE_OUTPUT_FIELD_TYPE_STRING');
|
||||
static const MappingTableOutputFieldType MAPPING_TABLE_OUTPUT_FIELD_TYPE_BOOLEAN = MappingTableOutputFieldType._(3, _omitEnumNames ? '' : 'MAPPING_TABLE_OUTPUT_FIELD_TYPE_BOOLEAN');
|
||||
|
||||
static const $core.List<MappingTableOutputFieldType> values = <MappingTableOutputFieldType> [
|
||||
MAPPING_TABLE_OUTPUT_FIELD_TYPE_UNKNOWN,
|
||||
MAPPING_TABLE_OUTPUT_FIELD_TYPE_INTEGER,
|
||||
MAPPING_TABLE_OUTPUT_FIELD_TYPE_STRING,
|
||||
MAPPING_TABLE_OUTPUT_FIELD_TYPE_BOOLEAN,
|
||||
];
|
||||
|
||||
static final $core.List<MappingTableOutputFieldType?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 3);
|
||||
static MappingTableOutputFieldType? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const MappingTableOutputFieldType._(super.value, super.name);
|
||||
}
|
||||
|
||||
|
||||
const $core.bool _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|
||||
977
lib/ruleEngine_model.pbjson.dart
Normal file
977
lib/ruleEngine_model.pbjson.dart
Normal file
@@ -0,0 +1,977 @@
|
||||
// This is a generated file - do not edit.
|
||||
//
|
||||
// Generated from ruleEngine_model.proto.
|
||||
|
||||
// @dart = 3.3
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// ignore_for_file: constant_identifier_names
|
||||
// ignore_for_file: curly_braces_in_flow_control_structures
|
||||
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
|
||||
// ignore_for_file: non_constant_identifier_names, unused_import
|
||||
|
||||
import 'dart:convert' as $convert;
|
||||
import 'dart:core' as $core;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use engineRuleValidityTypeDescriptor instead')
|
||||
const EngineRuleValidityType$json = {
|
||||
'1': 'EngineRuleValidityType',
|
||||
'2': [
|
||||
{'1': 'ENGINE_RULE_VALIDITY_TYPE_UNKNOWN', '2': 0},
|
||||
{'1': 'ENGINE_RULE_VALIDITY_TYPE_INDEFINITE', '2': 1},
|
||||
{'1': 'ENGINE_RULE_VALIDITY_TYPE_DATE_RANGE', '2': 2},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleValidityType`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleValidityTypeDescriptor = $convert.base64Decode(
|
||||
'ChZFbmdpbmVSdWxlVmFsaWRpdHlUeXBlEiUKIUVOR0lORV9SVUxFX1ZBTElESVRZX1RZUEVfVU'
|
||||
'5LTk9XThAAEigKJEVOR0lORV9SVUxFX1ZBTElESVRZX1RZUEVfSU5ERUZJTklURRABEigKJEVO'
|
||||
'R0lORV9SVUxFX1ZBTElESVRZX1RZUEVfREFURV9SQU5HRRAC');
|
||||
|
||||
@$core.Deprecated('Use ruleRecurrenceFrequencyDescriptor instead')
|
||||
const RuleRecurrenceFrequency$json = {
|
||||
'1': 'RuleRecurrenceFrequency',
|
||||
'2': [
|
||||
{'1': 'RULE_RECURRENCE_FREQUENCY_UNKNOWN', '2': 0},
|
||||
{'1': 'RULE_RECURRENCE_FREQUENCY_MINUTELY', '2': 5},
|
||||
{'1': 'RULE_RECURRENCE_FREQUENCY_DAILY', '2': 1},
|
||||
{'1': 'RULE_RECURRENCE_FREQUENCY_WEEKLY', '2': 2},
|
||||
{'1': 'RULE_RECURRENCE_FREQUENCY_MONTHLY', '2': 3},
|
||||
{'1': 'RULE_RECURRENCE_FREQUENCY_YEARLY', '2': 4},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `RuleRecurrenceFrequency`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List ruleRecurrenceFrequencyDescriptor = $convert.base64Decode(
|
||||
'ChdSdWxlUmVjdXJyZW5jZUZyZXF1ZW5jeRIlCiFSVUxFX1JFQ1VSUkVOQ0VfRlJFUVVFTkNZX1'
|
||||
'VOS05PV04QABImCiJSVUxFX1JFQ1VSUkVOQ0VfRlJFUVVFTkNZX01JTlVURUxZEAUSIwofUlVM'
|
||||
'RV9SRUNVUlJFTkNFX0ZSRVFVRU5DWV9EQUlMWRABEiQKIFJVTEVfUkVDVVJSRU5DRV9GUkVRVU'
|
||||
'VOQ1lfV0VFS0xZEAISJQohUlVMRV9SRUNVUlJFTkNFX0ZSRVFVRU5DWV9NT05USExZEAMSJAog'
|
||||
'UlVMRV9SRUNVUlJFTkNFX0ZSRVFVRU5DWV9ZRUFSTFkQBA==');
|
||||
|
||||
@$core.Deprecated('Use engineRuleTriggerTypeDescriptor instead')
|
||||
const EngineRuleTriggerType$json = {
|
||||
'1': 'EngineRuleTriggerType',
|
||||
'2': [
|
||||
{'1': 'ENGINE_RULE_TRIGGER_TYPE_UNKNOWN', '2': 0},
|
||||
{'1': 'ENGINE_RULE_TRIGGER_TYPE_SCHEDULED', '2': 1},
|
||||
{'1': 'ENGINE_RULE_TRIGGER_TYPE_EVENT', '2': 2},
|
||||
{'1': 'ENGINE_RULE_TRIGGER_TYPE_MILESTONE', '2': 3},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleTriggerType`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleTriggerTypeDescriptor = $convert.base64Decode(
|
||||
'ChVFbmdpbmVSdWxlVHJpZ2dlclR5cGUSJAogRU5HSU5FX1JVTEVfVFJJR0dFUl9UWVBFX1VOS0'
|
||||
'5PV04QABImCiJFTkdJTkVfUlVMRV9UUklHR0VSX1RZUEVfU0NIRURVTEVEEAESIgoeRU5HSU5F'
|
||||
'X1JVTEVfVFJJR0dFUl9UWVBFX0VWRU5UEAISJgoiRU5HSU5FX1JVTEVfVFJJR0dFUl9UWVBFX0'
|
||||
'1JTEVTVE9ORRAD');
|
||||
|
||||
@$core.Deprecated('Use engineRuleConditionQuantifierDescriptor instead')
|
||||
const EngineRuleConditionQuantifier$json = {
|
||||
'1': 'EngineRuleConditionQuantifier',
|
||||
'2': [
|
||||
{'1': 'RULE_CONDITION_QUANTIFIER_UNKNOWN', '2': 0},
|
||||
{'1': 'RULE_CONDITION_QUANTIFIER_ALL', '2': 1},
|
||||
{'1': 'RULE_CONDITION_QUANTIFIER_ANY', '2': 2},
|
||||
{'1': 'RULE_CONDITION_QUANTIFIER_NONE', '2': 3},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleConditionQuantifier`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleConditionQuantifierDescriptor = $convert.base64Decode(
|
||||
'Ch1FbmdpbmVSdWxlQ29uZGl0aW9uUXVhbnRpZmllchIlCiFSVUxFX0NPTkRJVElPTl9RVUFOVE'
|
||||
'lGSUVSX1VOS05PV04QABIhCh1SVUxFX0NPTkRJVElPTl9RVUFOVElGSUVSX0FMTBABEiEKHVJV'
|
||||
'TEVfQ09ORElUSU9OX1FVQU5USUZJRVJfQU5ZEAISIgoeUlVMRV9DT05ESVRJT05fUVVBTlRJRk'
|
||||
'lFUl9OT05FEAM=');
|
||||
|
||||
@$core.Deprecated('Use engineRuleConditionAggregateFunctionDescriptor instead')
|
||||
const EngineRuleConditionAggregateFunction$json = {
|
||||
'1': 'EngineRuleConditionAggregateFunction',
|
||||
'2': [
|
||||
{'1': 'RULE_CONDITION_AGGREGATE_FUNCTION_UNKNOWN', '2': 0},
|
||||
{'1': 'RULE_CONDITION_AGGREGATE_FUNCTION_SUM', '2': 1},
|
||||
{'1': 'RULE_CONDITION_AGGREGATE_FUNCTION_COUNT', '2': 2},
|
||||
{'1': 'RULE_CONDITION_AGGREGATE_FUNCTION_AVG', '2': 3},
|
||||
{'1': 'RULE_CONDITION_AGGREGATE_FUNCTION_MIN', '2': 4},
|
||||
{'1': 'RULE_CONDITION_AGGREGATE_FUNCTION_MAX', '2': 5},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleConditionAggregateFunction`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleConditionAggregateFunctionDescriptor = $convert.base64Decode(
|
||||
'CiRFbmdpbmVSdWxlQ29uZGl0aW9uQWdncmVnYXRlRnVuY3Rpb24SLQopUlVMRV9DT05ESVRJT0'
|
||||
'5fQUdHUkVHQVRFX0ZVTkNUSU9OX1VOS05PV04QABIpCiVSVUxFX0NPTkRJVElPTl9BR0dSRUdB'
|
||||
'VEVfRlVOQ1RJT05fU1VNEAESKwonUlVMRV9DT05ESVRJT05fQUdHUkVHQVRFX0ZVTkNUSU9OX0'
|
||||
'NPVU5UEAISKQolUlVMRV9DT05ESVRJT05fQUdHUkVHQVRFX0ZVTkNUSU9OX0FWRxADEikKJVJV'
|
||||
'TEVfQ09ORElUSU9OX0FHR1JFR0FURV9GVU5DVElPTl9NSU4QBBIpCiVSVUxFX0NPTkRJVElPTl'
|
||||
'9BR0dSRUdBVEVfRlVOQ1RJT05fTUFYEAU=');
|
||||
|
||||
@$core.Deprecated('Use engineRuleConditionOperatorDescriptor instead')
|
||||
const EngineRuleConditionOperator$json = {
|
||||
'1': 'EngineRuleConditionOperator',
|
||||
'2': [
|
||||
{'1': 'RULE_CONDITION_OPERATOR_UNKNOWN', '2': 0},
|
||||
{'1': 'RULE_CONDITION_OPERATOR_EQUALS', '2': 1},
|
||||
{'1': 'RULE_CONDITION_OPERATOR_NOT_EQUALS', '2': 2},
|
||||
{'1': 'RULE_CONDITION_OPERATOR_GREATER_THAN', '2': 3},
|
||||
{'1': 'RULE_CONDITION_OPERATOR_LESS_THAN', '2': 4},
|
||||
{'1': 'RULE_CONDITION_OPERATOR_GREATER_OR_EQUALS', '2': 5},
|
||||
{'1': 'RULE_CONDITION_OPERATOR_LESS_OR_EQUALS', '2': 6},
|
||||
{'1': 'RULE_CONDITION_OPERATOR_IN', '2': 7},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleConditionOperator`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleConditionOperatorDescriptor = $convert.base64Decode(
|
||||
'ChtFbmdpbmVSdWxlQ29uZGl0aW9uT3BlcmF0b3ISIwofUlVMRV9DT05ESVRJT05fT1BFUkFUT1'
|
||||
'JfVU5LTk9XThAAEiIKHlJVTEVfQ09ORElUSU9OX09QRVJBVE9SX0VRVUFMUxABEiYKIlJVTEVf'
|
||||
'Q09ORElUSU9OX09QRVJBVE9SX05PVF9FUVVBTFMQAhIoCiRSVUxFX0NPTkRJVElPTl9PUEVSQV'
|
||||
'RPUl9HUkVBVEVSX1RIQU4QAxIlCiFSVUxFX0NPTkRJVElPTl9PUEVSQVRPUl9MRVNTX1RIQU4Q'
|
||||
'BBItCilSVUxFX0NPTkRJVElPTl9PUEVSQVRPUl9HUkVBVEVSX09SX0VRVUFMUxAFEioKJlJVTE'
|
||||
'VfQ09ORElUSU9OX09QRVJBVE9SX0xFU1NfT1JfRVFVQUxTEAYSHgoaUlVMRV9DT05ESVRJT05f'
|
||||
'T1BFUkFUT1JfSU4QBw==');
|
||||
|
||||
@$core.Deprecated('Use engineRuleFieldRefScopeDescriptor instead')
|
||||
const EngineRuleFieldRefScope$json = {
|
||||
'1': 'EngineRuleFieldRefScope',
|
||||
'2': [
|
||||
{'1': 'ENGINE_RULE_FIELD_REF_SCOPE_UNKNOWN', '2': 0},
|
||||
{'1': 'ENGINE_RULE_FIELD_REF_SCOPE_ABSOLUTE', '2': 1},
|
||||
{'1': 'ENGINE_RULE_FIELD_REF_SCOPE_ELEMENT', '2': 2},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleFieldRefScope`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleFieldRefScopeDescriptor = $convert.base64Decode(
|
||||
'ChdFbmdpbmVSdWxlRmllbGRSZWZTY29wZRInCiNFTkdJTkVfUlVMRV9GSUVMRF9SRUZfU0NPUE'
|
||||
'VfVU5LTk9XThAAEigKJEVOR0lORV9SVUxFX0ZJRUxEX1JFRl9TQ09QRV9BQlNPTFVURRABEicK'
|
||||
'I0VOR0lORV9SVUxFX0ZJRUxEX1JFRl9TQ09QRV9FTEVNRU5UEAI=');
|
||||
|
||||
@$core.Deprecated('Use computationDueDateComputationTypeDescriptor instead')
|
||||
const ComputationDueDateComputationType$json = {
|
||||
'1': 'ComputationDueDateComputationType',
|
||||
'2': [
|
||||
{'1': 'COMPUTATION_DUE_DATE_COMPUTATION_TYPE_UNKNOWN', '2': 0},
|
||||
{'1': 'COMPUTATION_DUE_DATE_COMPUTATION_TYPE_ADD', '2': 1},
|
||||
{'1': 'COMPUTATION_DUE_DATE_COMPUTATION_TYPE_SUBTRACT', '2': 2},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ComputationDueDateComputationType`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List computationDueDateComputationTypeDescriptor = $convert.base64Decode(
|
||||
'CiFDb21wdXRhdGlvbkR1ZURhdGVDb21wdXRhdGlvblR5cGUSMQotQ09NUFVUQVRJT05fRFVFX0'
|
||||
'RBVEVfQ09NUFVUQVRJT05fVFlQRV9VTktOT1dOEAASLQopQ09NUFVUQVRJT05fRFVFX0RBVEVf'
|
||||
'Q09NUFVUQVRJT05fVFlQRV9BREQQARIyCi5DT01QVVRBVElPTl9EVUVfREFURV9DT01QVVRBVE'
|
||||
'lPTl9UWVBFX1NVQlRSQUNUEAI=');
|
||||
|
||||
@$core.Deprecated('Use durationFormatDescriptor instead')
|
||||
const DurationFormat$json = {
|
||||
'1': 'DurationFormat',
|
||||
'2': [
|
||||
{'1': 'DURATION_FORMAT_UNKNOWN', '2': 0},
|
||||
{'1': 'DURATION_FORMAT_MINUTES', '2': 10},
|
||||
{'1': 'DURATION_FORMAT_WORKING_MINUTES', '2': 11},
|
||||
{'1': 'DURATION_FORMAT_HOURS', '2': 20},
|
||||
{'1': 'DURATION_FORMAT_WORKING_HOURS', '2': 21},
|
||||
{'1': 'DURATION_FORMAT_DAYS', '2': 30},
|
||||
{'1': 'DURATION_FORMAT_WORKING_DAYS', '2': 31},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `DurationFormat`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List durationFormatDescriptor = $convert.base64Decode(
|
||||
'Cg5EdXJhdGlvbkZvcm1hdBIbChdEVVJBVElPTl9GT1JNQVRfVU5LTk9XThAAEhsKF0RVUkFUSU'
|
||||
'9OX0ZPUk1BVF9NSU5VVEVTEAoSIwofRFVSQVRJT05fRk9STUFUX1dPUktJTkdfTUlOVVRFUxAL'
|
||||
'EhkKFURVUkFUSU9OX0ZPUk1BVF9IT1VSUxAUEiEKHURVUkFUSU9OX0ZPUk1BVF9XT1JLSU5HX0'
|
||||
'hPVVJTEBUSGAoURFVSQVRJT05fRk9STUFUX0RBWVMQHhIgChxEVVJBVElPTl9GT1JNQVRfV09S'
|
||||
'S0lOR19EQVlTEB8=');
|
||||
|
||||
@$core.Deprecated('Use durationRoundingDescriptor instead')
|
||||
const DurationRounding$json = {
|
||||
'1': 'DurationRounding',
|
||||
'2': [
|
||||
{'1': 'DURATION_ROUNDING_UNKNOWN', '2': 0},
|
||||
{'1': 'DURATION_ROUNDING_UP', '2': 1},
|
||||
{'1': 'DURATION_ROUNDING_DOWN', '2': 2},
|
||||
{'1': 'DURATION_ROUNDING_FIXED_HOUR', '2': 3},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `DurationRounding`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List durationRoundingDescriptor = $convert.base64Decode(
|
||||
'ChBEdXJhdGlvblJvdW5kaW5nEh0KGURVUkFUSU9OX1JPVU5ESU5HX1VOS05PV04QABIYChREVV'
|
||||
'JBVElPTl9ST1VORElOR19VUBABEhoKFkRVUkFUSU9OX1JPVU5ESU5HX0RPV04QAhIgChxEVVJB'
|
||||
'VElPTl9ST1VORElOR19GSVhFRF9IT1VSEAM=');
|
||||
|
||||
@$core.Deprecated('Use computationCustomFunctionOperatorDescriptor instead')
|
||||
const ComputationCustomFunctionOperator$json = {
|
||||
'1': 'ComputationCustomFunctionOperator',
|
||||
'2': [
|
||||
{'1': 'COMPUTATION_CUSTOM_FUNCTION_OPERATOR_UNKNOWN', '2': 0},
|
||||
{'1': 'COMPUTATION_CUSTOM_FUNCTION_OPERATOR_ADD', '2': 1},
|
||||
{'1': 'COMPUTATION_CUSTOM_FUNCTION_OPERATOR_SUBTRACT', '2': 2},
|
||||
{'1': 'COMPUTATION_CUSTOM_FUNCTION_OPERATOR_MULTIPLY', '2': 3},
|
||||
{'1': 'COMPUTATION_CUSTOM_FUNCTION_OPERATOR_DIVIDE', '2': 4},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ComputationCustomFunctionOperator`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List computationCustomFunctionOperatorDescriptor = $convert.base64Decode(
|
||||
'CiFDb21wdXRhdGlvbkN1c3RvbUZ1bmN0aW9uT3BlcmF0b3ISMAosQ09NUFVUQVRJT05fQ1VTVE'
|
||||
'9NX0ZVTkNUSU9OX09QRVJBVE9SX1VOS05PV04QABIsCihDT01QVVRBVElPTl9DVVNUT01fRlVO'
|
||||
'Q1RJT05fT1BFUkFUT1JfQUREEAESMQotQ09NUFVUQVRJT05fQ1VTVE9NX0ZVTkNUSU9OX09QRV'
|
||||
'JBVE9SX1NVQlRSQUNUEAISMQotQ09NUFVUQVRJT05fQ1VTVE9NX0ZVTkNUSU9OX09QRVJBVE9S'
|
||||
'X01VTFRJUExZEAMSLworQ09NUFVUQVRJT05fQ1VTVE9NX0ZVTkNUSU9OX09QRVJBVE9SX0RJVk'
|
||||
'lERRAE');
|
||||
|
||||
@$core.Deprecated('Use customFunctionFormatDescriptor instead')
|
||||
const CustomFunctionFormat$json = {
|
||||
'1': 'CustomFunctionFormat',
|
||||
'2': [
|
||||
{'1': 'CUSTOM_FUNCTION_FORMAT_UNKNOWN', '2': 0},
|
||||
{'1': 'CUSTOM_FUNCTION_FORMAT_NUMERIC', '2': 1},
|
||||
{'1': 'CUSTOM_FUNCTION_FORMAT_PERCENTAGE', '2': 2},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CustomFunctionFormat`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List customFunctionFormatDescriptor = $convert.base64Decode(
|
||||
'ChRDdXN0b21GdW5jdGlvbkZvcm1hdBIiCh5DVVNUT01fRlVOQ1RJT05fRk9STUFUX1VOS05PV0'
|
||||
'4QABIiCh5DVVNUT01fRlVOQ1RJT05fRk9STUFUX05VTUVSSUMQARIlCiFDVVNUT01fRlVOQ1RJ'
|
||||
'T05fRk9STUFUX1BFUkNFTlRBR0UQAg==');
|
||||
|
||||
@$core.Deprecated('Use customFunctionRoundingDescriptor instead')
|
||||
const CustomFunctionRounding$json = {
|
||||
'1': 'CustomFunctionRounding',
|
||||
'2': [
|
||||
{'1': 'CUSTOM_FUNCTION_ROUNDING_UNKNOWN', '2': 0},
|
||||
{'1': 'CUSTOM_FUNCTION_ROUNDING_UP', '2': 1},
|
||||
{'1': 'CUSTOM_FUNCTION_ROUNDING_DOWN', '2': 2},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CustomFunctionRounding`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List customFunctionRoundingDescriptor = $convert.base64Decode(
|
||||
'ChZDdXN0b21GdW5jdGlvblJvdW5kaW5nEiQKIENVU1RPTV9GVU5DVElPTl9ST1VORElOR19VTk'
|
||||
'tOT1dOEAASHwobQ1VTVE9NX0ZVTkNUSU9OX1JPVU5ESU5HX1VQEAESIQodQ1VTVE9NX0ZVTkNU'
|
||||
'SU9OX1JPVU5ESU5HX0RPV04QAg==');
|
||||
|
||||
@$core.Deprecated('Use mappingTableInputDescriptionGranularityDescriptor instead')
|
||||
const MappingTableInputDescriptionGranularity$json = {
|
||||
'1': 'MappingTableInputDescriptionGranularity',
|
||||
'2': [
|
||||
{'1': 'MAPPING_TABLE_INPUT_DESCRIPTION_GRANULARITY_UNKNOWN', '2': 0},
|
||||
{'1': 'MAPPING_TABLE_INPUT_DESCRIPTION_GRANULARITY_HOUR', '2': 1},
|
||||
{'1': 'MAPPING_TABLE_INPUT_DESCRIPTION_GRANULARITY_DATE', '2': 2},
|
||||
{'1': 'MAPPING_TABLE_INPUT_DESCRIPTION_GRANULARITY_HOUR_AND_DATE', '2': 3},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `MappingTableInputDescriptionGranularity`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List mappingTableInputDescriptionGranularityDescriptor = $convert.base64Decode(
|
||||
'CidNYXBwaW5nVGFibGVJbnB1dERlc2NyaXB0aW9uR3JhbnVsYXJpdHkSNwozTUFQUElOR19UQU'
|
||||
'JMRV9JTlBVVF9ERVNDUklQVElPTl9HUkFOVUxBUklUWV9VTktOT1dOEAASNAowTUFQUElOR19U'
|
||||
'QUJMRV9JTlBVVF9ERVNDUklQVElPTl9HUkFOVUxBUklUWV9IT1VSEAESNAowTUFQUElOR19UQU'
|
||||
'JMRV9JTlBVVF9ERVNDUklQVElPTl9HUkFOVUxBUklUWV9EQVRFEAISPQo5TUFQUElOR19UQUJM'
|
||||
'RV9JTlBVVF9ERVNDUklQVElPTl9HUkFOVUxBUklUWV9IT1VSX0FORF9EQVRFEAM=');
|
||||
|
||||
@$core.Deprecated('Use mappingTableInputOperatorDescriptor instead')
|
||||
const MappingTableInputOperator$json = {
|
||||
'1': 'MappingTableInputOperator',
|
||||
'2': [
|
||||
{'1': 'MAPPING_TABLE_INPUT_OPERATOR_UNKNOWN', '2': 0},
|
||||
{'1': 'MAPPING_TABLE_INPUT_OPERATOR_EQUALS', '2': 1},
|
||||
{'1': 'MAPPING_TABLE_INPUT_OPERATOR_NOT_EQUALS', '2': 2},
|
||||
{'1': 'MAPPING_TABLE_INPUT_OPERATOR_LESS_THAN', '2': 3},
|
||||
{'1': 'MAPPING_TABLE_INPUT_OPERATOR_LESS_OR_EQUALS', '2': 4},
|
||||
{'1': 'MAPPING_TABLE_INPUT_OPERATOR_GREATER_THAN', '2': 5},
|
||||
{'1': 'MAPPING_TABLE_INPUT_OPERATOR_GREATER_OR_EQUALS', '2': 6},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `MappingTableInputOperator`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List mappingTableInputOperatorDescriptor = $convert.base64Decode(
|
||||
'ChlNYXBwaW5nVGFibGVJbnB1dE9wZXJhdG9yEigKJE1BUFBJTkdfVEFCTEVfSU5QVVRfT1BFUk'
|
||||
'FUT1JfVU5LTk9XThAAEicKI01BUFBJTkdfVEFCTEVfSU5QVVRfT1BFUkFUT1JfRVFVQUxTEAES'
|
||||
'KwonTUFQUElOR19UQUJMRV9JTlBVVF9PUEVSQVRPUl9OT1RfRVFVQUxTEAISKgomTUFQUElOR1'
|
||||
'9UQUJMRV9JTlBVVF9PUEVSQVRPUl9MRVNTX1RIQU4QAxIvCitNQVBQSU5HX1RBQkxFX0lOUFVU'
|
||||
'X09QRVJBVE9SX0xFU1NfT1JfRVFVQUxTEAQSLQopTUFQUElOR19UQUJMRV9JTlBVVF9PUEVSQV'
|
||||
'RPUl9HUkVBVEVSX1RIQU4QBRIyCi5NQVBQSU5HX1RBQkxFX0lOUFVUX09QRVJBVE9SX0dSRUFU'
|
||||
'RVJfT1JfRVFVQUxTEAY=');
|
||||
|
||||
@$core.Deprecated('Use mappingTableOutputFieldTypeDescriptor instead')
|
||||
const MappingTableOutputFieldType$json = {
|
||||
'1': 'MappingTableOutputFieldType',
|
||||
'2': [
|
||||
{'1': 'MAPPING_TABLE_OUTPUT_FIELD_TYPE_UNKNOWN', '2': 0},
|
||||
{'1': 'MAPPING_TABLE_OUTPUT_FIELD_TYPE_INTEGER', '2': 1},
|
||||
{'1': 'MAPPING_TABLE_OUTPUT_FIELD_TYPE_STRING', '2': 2},
|
||||
{'1': 'MAPPING_TABLE_OUTPUT_FIELD_TYPE_BOOLEAN', '2': 3},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `MappingTableOutputFieldType`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List mappingTableOutputFieldTypeDescriptor = $convert.base64Decode(
|
||||
'ChtNYXBwaW5nVGFibGVPdXRwdXRGaWVsZFR5cGUSKwonTUFQUElOR19UQUJMRV9PVVRQVVRfRk'
|
||||
'lFTERfVFlQRV9VTktOT1dOEAASKwonTUFQUElOR19UQUJMRV9PVVRQVVRfRklFTERfVFlQRV9J'
|
||||
'TlRFR0VSEAESKgomTUFQUElOR19UQUJMRV9PVVRQVVRfRklFTERfVFlQRV9TVFJJTkcQAhIrCi'
|
||||
'dNQVBQSU5HX1RBQkxFX09VVFBVVF9GSUVMRF9UWVBFX0JPT0xFQU4QAw==');
|
||||
|
||||
@$core.Deprecated('Use engineRuleDescriptor instead')
|
||||
const EngineRule$json = {
|
||||
'1': 'EngineRule',
|
||||
'2': [
|
||||
{'1': 'ProjectID', '3': 10, '4': 1, '5': 9, '10': 'ProjectID'},
|
||||
{'1': 'Code', '3': 20, '4': 1, '5': 9, '8': {}, '10': 'Code'},
|
||||
{'1': 'Label', '3': 30, '4': 1, '5': 9, '10': 'Label'},
|
||||
{'1': 'ValidityType', '3': 40, '4': 1, '5': 14, '6': '.api.EngineRuleValidityType', '8': {}, '10': 'ValidityType'},
|
||||
{'1': 'ValidFrom', '3': 41, '4': 1, '5': 9, '8': {}, '10': 'ValidFrom'},
|
||||
{'1': 'ValidUntil', '3': 42, '4': 1, '5': 9, '8': {}, '10': 'ValidUntil'},
|
||||
{'1': 'Entity', '3': 50, '4': 1, '5': 14, '6': '.api.EntityType', '10': 'Entity'},
|
||||
{'1': 'TriggerType', '3': 60, '4': 1, '5': 14, '6': '.api.EngineRuleTriggerType', '8': {}, '10': 'TriggerType'},
|
||||
{'1': 'ScheduledTrigger', '3': 70, '4': 1, '5': 11, '6': '.api.EngineRuleScheduledTrigger', '9': 0, '10': 'ScheduledTrigger'},
|
||||
{'1': 'EventTrigger', '3': 71, '4': 1, '5': 11, '6': '.api.EngineRuleEventTrigger', '9': 0, '10': 'EventTrigger'},
|
||||
{'1': 'MilestoneTrigger', '3': 72, '4': 1, '5': 11, '6': '.api.EngineRuleMilestoneTrigger', '9': 0, '10': 'MilestoneTrigger'},
|
||||
{'1': 'Conditions', '3': 80, '4': 3, '5': 11, '6': '.api.EngineRuleCondition', '10': 'Conditions'},
|
||||
{'1': 'Actions', '3': 90, '4': 3, '5': 11, '6': '.api.EngineRuleAction', '8': {}, '10': 'Actions'},
|
||||
{'1': 'Version', '3': 100, '4': 1, '5': 5, '10': 'Version'},
|
||||
{'1': 'CreatedBy', '3': 110, '4': 1, '5': 9, '10': 'CreatedBy'},
|
||||
{'1': 'CreatedAt', '3': 120, '4': 1, '5': 9, '8': {}, '10': 'CreatedAt'},
|
||||
{'1': 'UpdatedAt', '3': 130, '4': 1, '5': 9, '8': {}, '10': 'UpdatedAt'},
|
||||
{'1': 'IsActive', '3': 140, '4': 1, '5': 8, '10': 'IsActive'},
|
||||
],
|
||||
'7': {},
|
||||
'8': [
|
||||
{'1': 'Trigger'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRule`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleDescriptor = $convert.base64Decode(
|
||||
'CgpFbmdpbmVSdWxlEhwKCVByb2plY3RJRBgKIAEoCVIJUHJvamVjdElEEkAKBENvZGUYFCABKA'
|
||||
'lCLJJBEooBD15bQS1aYS16MC05X10rJLqBARNyETIPXltBLVphLXowLTlfXSskUgRDb2RlEhQK'
|
||||
'BUxhYmVsGB4gASgJUgVMYWJlbBJMCgxWYWxpZGl0eVR5cGUYKCABKA4yGy5hcGkuRW5naW5lUn'
|
||||
'VsZVZhbGlkaXR5VHlwZUILuoEBB4IBBBABIABSDFZhbGlkaXR5VHlwZRIqCglWYWxpZEZyb20Y'
|
||||
'KSABKAlCDLqBAQhyBtABAfABAVIJVmFsaWRGcm9tEiwKClZhbGlkVW50aWwYKiABKAlCDLqBAQ'
|
||||
'hyBtABAfABAVIKVmFsaWRVbnRpbBInCgZFbnRpdHkYMiABKA4yDy5hcGkuRW50aXR5VHlwZVIG'
|
||||
'RW50aXR5EkkKC1RyaWdnZXJUeXBlGDwgASgOMhouYXBpLkVuZ2luZVJ1bGVUcmlnZ2VyVHlwZU'
|
||||
'ILuoEBB4IBBBABIABSC1RyaWdnZXJUeXBlEk0KEFNjaGVkdWxlZFRyaWdnZXIYRiABKAsyHy5h'
|
||||
'cGkuRW5naW5lUnVsZVNjaGVkdWxlZFRyaWdnZXJIAFIQU2NoZWR1bGVkVHJpZ2dlchJBCgxFdm'
|
||||
'VudFRyaWdnZXIYRyABKAsyGy5hcGkuRW5naW5lUnVsZUV2ZW50VHJpZ2dlckgAUgxFdmVudFRy'
|
||||
'aWdnZXISTQoQTWlsZXN0b25lVHJpZ2dlchhIIAEoCzIfLmFwaS5FbmdpbmVSdWxlTWlsZXN0b2'
|
||||
'5lVHJpZ2dlckgAUhBNaWxlc3RvbmVUcmlnZ2VyEjgKCkNvbmRpdGlvbnMYUCADKAsyGC5hcGku'
|
||||
'RW5naW5lUnVsZUNvbmRpdGlvblIKQ29uZGl0aW9ucxI6CgdBY3Rpb25zGFogAygLMhUuYXBpLk'
|
||||
'VuZ2luZVJ1bGVBY3Rpb25CCbqBAQWSAQIIAVIHQWN0aW9ucxIYCgdWZXJzaW9uGGQgASgFUgdW'
|
||||
'ZXJzaW9uEhwKCUNyZWF0ZWRCeRhuIAEoCVIJQ3JlYXRlZEJ5EicKCUNyZWF0ZWRBdBh4IAEoCU'
|
||||
'IJuoEBBXID0AEBUglDcmVhdGVkQXQSKAoJVXBkYXRlZEF0GIIBIAEoCUIJuoEBBXID0AEBUglV'
|
||||
'cGRhdGVkQXQSGwoISXNBY3RpdmUYjAEgASgIUghJc0FjdGl2ZTogkkEdChvSAQRDb2Rl0gEHQW'
|
||||
'N0aW9uc9IBB1RyaWdnZXJCCQoHVHJpZ2dlcg==');
|
||||
|
||||
@$core.Deprecated('Use engineRuleScheduledTriggerDescriptor instead')
|
||||
const EngineRuleScheduledTrigger$json = {
|
||||
'1': 'EngineRuleScheduledTrigger',
|
||||
'2': [
|
||||
{'1': 'Frequency', '3': 1, '4': 1, '5': 14, '6': '.api.RuleRecurrenceFrequency', '8': {}, '10': 'Frequency'},
|
||||
{'1': 'Interval', '3': 2, '4': 1, '5': 5, '8': {}, '10': 'Interval'},
|
||||
{'1': 'ByDay', '3': 3, '4': 3, '5': 14, '6': '.api.WeekDay', '8': {}, '10': 'ByDay'},
|
||||
{'1': 'StartDate', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'StartDate'},
|
||||
{'1': 'AtTime', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'AtTime'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleScheduledTrigger`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleScheduledTriggerDescriptor = $convert.base64Decode(
|
||||
'ChpFbmdpbmVSdWxlU2NoZWR1bGVkVHJpZ2dlchJHCglGcmVxdWVuY3kYASABKA4yHC5hcGkuUn'
|
||||
'VsZVJlY3VycmVuY2VGcmVxdWVuY3lCC7qBAQeCAQQQASAAUglGcmVxdWVuY3kSJAoISW50ZXJ2'
|
||||
'YWwYAiABKAVCCLqBAQQaAiAAUghJbnRlcnZhbBIyCgVCeURheRgDIAMoDjIMLmFwaS5XZWVrRG'
|
||||
'F5Qg66gQEKkgEHIgWCAQIQAVIFQnlEYXkSJwoJU3RhcnREYXRlGAQgASgJQgm6gQEFcgPQAQFS'
|
||||
'CVN0YXJ0RGF0ZRJFCgZBdFRpbWUYBSABKAlCLbqBASlyJzIlXihbMDFdXGR8MlswLTNdKTooWz'
|
||||
'AtNV1cZCk6KFswLTVdXGQpJFIGQXRUaW1lOjGSQS4KLNIBCUZyZXF1ZW5jedIBCEludGVydmFs'
|
||||
'0gEJU3RhcnREYXRl0gEGQXRUaW1l');
|
||||
|
||||
@$core.Deprecated('Use engineRuleEventTriggerDescriptor instead')
|
||||
const EngineRuleEventTrigger$json = {
|
||||
'1': 'EngineRuleEventTrigger',
|
||||
'2': [
|
||||
{'1': 'Creation', '3': 1, '4': 1, '5': 11, '6': '.api.EngineRuleEventTriggerCreation', '9': 0, '10': 'Creation'},
|
||||
{'1': 'Deletion', '3': 2, '4': 1, '5': 11, '6': '.api.EngineRuleEventTriggerDeletion', '9': 0, '10': 'Deletion'},
|
||||
{'1': 'StatusChange', '3': 3, '4': 1, '5': 11, '6': '.api.EngineRuleEventTriggerStatusChange', '9': 0, '10': 'StatusChange'},
|
||||
],
|
||||
'7': {},
|
||||
'8': [
|
||||
{'1': 'Event'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleEventTrigger`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleEventTriggerDescriptor = $convert.base64Decode(
|
||||
'ChZFbmdpbmVSdWxlRXZlbnRUcmlnZ2VyEkEKCENyZWF0aW9uGAEgASgLMiMuYXBpLkVuZ2luZV'
|
||||
'J1bGVFdmVudFRyaWdnZXJDcmVhdGlvbkgAUghDcmVhdGlvbhJBCghEZWxldGlvbhgCIAEoCzIj'
|
||||
'LmFwaS5FbmdpbmVSdWxlRXZlbnRUcmlnZ2VyRGVsZXRpb25IAFIIRGVsZXRpb24STQoMU3RhdH'
|
||||
'VzQ2hhbmdlGAMgASgLMicuYXBpLkVuZ2luZVJ1bGVFdmVudFRyaWdnZXJTdGF0dXNDaGFuZ2VI'
|
||||
'AFIMU3RhdHVzQ2hhbmdlOg2SQQoKCNIBBUV2ZW50QgcKBUV2ZW50');
|
||||
|
||||
@$core.Deprecated('Use engineRuleEventTriggerCreationDescriptor instead')
|
||||
const EngineRuleEventTriggerCreation$json = {
|
||||
'1': 'EngineRuleEventTriggerCreation',
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleEventTriggerCreation`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleEventTriggerCreationDescriptor = $convert.base64Decode(
|
||||
'Ch5FbmdpbmVSdWxlRXZlbnRUcmlnZ2VyQ3JlYXRpb24=');
|
||||
|
||||
@$core.Deprecated('Use engineRuleEventTriggerDeletionDescriptor instead')
|
||||
const EngineRuleEventTriggerDeletion$json = {
|
||||
'1': 'EngineRuleEventTriggerDeletion',
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleEventTriggerDeletion`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleEventTriggerDeletionDescriptor = $convert.base64Decode(
|
||||
'Ch5FbmdpbmVSdWxlRXZlbnRUcmlnZ2VyRGVsZXRpb24=');
|
||||
|
||||
@$core.Deprecated('Use engineRuleEventTriggerStatusChangeDescriptor instead')
|
||||
const EngineRuleEventTriggerStatusChange$json = {
|
||||
'1': 'EngineRuleEventTriggerStatusChange',
|
||||
'2': [
|
||||
{'1': 'OrderStatus', '3': 1, '4': 1, '5': 14, '6': '.api.OrderStatusCode', '9': 0, '10': 'OrderStatus'},
|
||||
{'1': 'HandlingunitStatus', '3': 2, '4': 1, '5': 14, '6': '.api.HandlingunitStatusCode', '9': 0, '10': 'HandlingunitStatus'},
|
||||
{'1': 'AppointmentStatus', '3': 3, '4': 1, '5': 14, '6': '.api.AppointmentStatusCode', '9': 0, '10': 'AppointmentStatus'},
|
||||
{'1': 'ClaimStatus', '3': 4, '4': 1, '5': 14, '6': '.api.ClaimStatus', '9': 0, '10': 'ClaimStatus'},
|
||||
{'1': 'ActorStatus', '3': 5, '4': 1, '5': 14, '6': '.api.ActorStatusCode', '9': 0, '10': 'ActorStatus'},
|
||||
{'1': 'ItemStatus', '3': 6, '4': 1, '5': 14, '6': '.api.ItemStatusCode', '9': 0, '10': 'ItemStatus'},
|
||||
{'1': 'ExecutionflowStatus', '3': 7, '4': 1, '5': 14, '6': '.api.ExecutionflowStatusCode', '9': 0, '10': 'ExecutionflowStatus'},
|
||||
{'1': 'PartnerStatus', '3': 8, '4': 1, '5': 14, '6': '.api.PartnerStatusCode', '9': 0, '10': 'PartnerStatus'},
|
||||
{'1': 'StockStatus', '3': 9, '4': 1, '5': 14, '6': '.api.StockStatusCode', '9': 0, '10': 'StockStatus'},
|
||||
{'1': 'MovementStatus', '3': 10, '4': 1, '5': 14, '6': '.api.MovementStatusCode', '9': 0, '10': 'MovementStatus'},
|
||||
],
|
||||
'7': {},
|
||||
'8': [
|
||||
{'1': 'StatusCode'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleEventTriggerStatusChange`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleEventTriggerStatusChangeDescriptor = $convert.base64Decode(
|
||||
'CiJFbmdpbmVSdWxlRXZlbnRUcmlnZ2VyU3RhdHVzQ2hhbmdlEjgKC09yZGVyU3RhdHVzGAEgAS'
|
||||
'gOMhQuYXBpLk9yZGVyU3RhdHVzQ29kZUgAUgtPcmRlclN0YXR1cxJNChJIYW5kbGluZ3VuaXRT'
|
||||
'dGF0dXMYAiABKA4yGy5hcGkuSGFuZGxpbmd1bml0U3RhdHVzQ29kZUgAUhJIYW5kbGluZ3VuaX'
|
||||
'RTdGF0dXMSSgoRQXBwb2ludG1lbnRTdGF0dXMYAyABKA4yGi5hcGkuQXBwb2ludG1lbnRTdGF0'
|
||||
'dXNDb2RlSABSEUFwcG9pbnRtZW50U3RhdHVzEjQKC0NsYWltU3RhdHVzGAQgASgOMhAuYXBpLk'
|
||||
'NsYWltU3RhdHVzSABSC0NsYWltU3RhdHVzEjgKC0FjdG9yU3RhdHVzGAUgASgOMhQuYXBpLkFj'
|
||||
'dG9yU3RhdHVzQ29kZUgAUgtBY3RvclN0YXR1cxI1CgpJdGVtU3RhdHVzGAYgASgOMhMuYXBpLk'
|
||||
'l0ZW1TdGF0dXNDb2RlSABSCkl0ZW1TdGF0dXMSUAoTRXhlY3V0aW9uZmxvd1N0YXR1cxgHIAEo'
|
||||
'DjIcLmFwaS5FeGVjdXRpb25mbG93U3RhdHVzQ29kZUgAUhNFeGVjdXRpb25mbG93U3RhdHVzEj'
|
||||
'4KDVBhcnRuZXJTdGF0dXMYCCABKA4yFi5hcGkuUGFydG5lclN0YXR1c0NvZGVIAFINUGFydG5l'
|
||||
'clN0YXR1cxI4CgtTdG9ja1N0YXR1cxgJIAEoDjIULmFwaS5TdG9ja1N0YXR1c0NvZGVIAFILU3'
|
||||
'RvY2tTdGF0dXMSQQoOTW92ZW1lbnRTdGF0dXMYCiABKA4yFy5hcGkuTW92ZW1lbnRTdGF0dXND'
|
||||
'b2RlSABSDk1vdmVtZW50U3RhdHVzOhKSQQ8KDdIBClN0YXR1c0NvZGVCDAoKU3RhdHVzQ29kZQ'
|
||||
'==');
|
||||
|
||||
@$core.Deprecated('Use engineRuleMilestoneTriggerDescriptor instead')
|
||||
const EngineRuleMilestoneTrigger$json = {
|
||||
'1': 'EngineRuleMilestoneTrigger',
|
||||
'2': [
|
||||
{'1': 'MilestoneField', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'MilestoneField'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleMilestoneTrigger`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleMilestoneTriggerDescriptor = $convert.base64Decode(
|
||||
'ChpFbmdpbmVSdWxlTWlsZXN0b25lVHJpZ2dlchIwCg5NaWxlc3RvbmVGaWVsZBgBIAEoCUIIuo'
|
||||
'EBBHICEAFSDk1pbGVzdG9uZUZpZWxkOhaSQRMKEdIBDk1pbGVzdG9uZUZpZWxk');
|
||||
|
||||
@$core.Deprecated('Use engineRuleConditionDescriptor instead')
|
||||
const EngineRuleCondition$json = {
|
||||
'1': 'EngineRuleCondition',
|
||||
'2': [
|
||||
{'1': 'Field', '3': 10, '4': 1, '5': 9, '9': 0, '10': 'Field'},
|
||||
{'1': 'Collection', '3': 11, '4': 1, '5': 11, '6': '.api.EngineRuleConditionCollectionCriteria', '9': 0, '10': 'Collection'},
|
||||
{'1': 'Aggregate', '3': 12, '4': 1, '5': 11, '6': '.api.EngineRuleConditionAggregateCriteria', '9': 0, '10': 'Aggregate'},
|
||||
{'1': 'Operator', '3': 20, '4': 1, '5': 14, '6': '.api.EngineRuleConditionOperator', '8': {}, '10': 'Operator'},
|
||||
{'1': 'LiteralValue', '3': 31, '4': 1, '5': 11, '6': '.api.EngineRuleLiteral', '9': 1, '10': 'LiteralValue'},
|
||||
{'1': 'LiteralListValue', '3': 32, '4': 1, '5': 11, '6': '.api.EngineRuleLiteralList', '9': 1, '10': 'LiteralListValue'},
|
||||
{'1': 'FieldRefValue', '3': 33, '4': 1, '5': 11, '6': '.api.EngineRuleFieldRef', '9': 1, '10': 'FieldRefValue'},
|
||||
{'1': 'ComputedValue', '3': 34, '4': 1, '5': 11, '6': '.api.EngineRuleComputedRef', '9': 1, '10': 'ComputedValue'},
|
||||
{'1': 'MappingValue', '3': 35, '4': 1, '5': 11, '6': '.api.EngineRuleMappingRef', '9': 1, '10': 'MappingValue'},
|
||||
],
|
||||
'7': {},
|
||||
'8': [
|
||||
{'1': 'Criteria'},
|
||||
{'1': 'Value'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleCondition`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleConditionDescriptor = $convert.base64Decode(
|
||||
'ChNFbmdpbmVSdWxlQ29uZGl0aW9uEhYKBUZpZWxkGAogASgJSABSBUZpZWxkEkwKCkNvbGxlY3'
|
||||
'Rpb24YCyABKAsyKi5hcGkuRW5naW5lUnVsZUNvbmRpdGlvbkNvbGxlY3Rpb25Dcml0ZXJpYUgA'
|
||||
'UgpDb2xsZWN0aW9uEkkKCUFnZ3JlZ2F0ZRgMIAEoCzIpLmFwaS5FbmdpbmVSdWxlQ29uZGl0aW'
|
||||
'9uQWdncmVnYXRlQ3JpdGVyaWFIAFIJQWdncmVnYXRlEkkKCE9wZXJhdG9yGBQgASgOMiAuYXBp'
|
||||
'LkVuZ2luZVJ1bGVDb25kaXRpb25PcGVyYXRvckILuoEBB4IBBBABIABSCE9wZXJhdG9yEjwKDE'
|
||||
'xpdGVyYWxWYWx1ZRgfIAEoCzIWLmFwaS5FbmdpbmVSdWxlTGl0ZXJhbEgBUgxMaXRlcmFsVmFs'
|
||||
'dWUSSAoQTGl0ZXJhbExpc3RWYWx1ZRggIAEoCzIaLmFwaS5FbmdpbmVSdWxlTGl0ZXJhbExpc3'
|
||||
'RIAVIQTGl0ZXJhbExpc3RWYWx1ZRI/Cg1GaWVsZFJlZlZhbHVlGCEgASgLMhcuYXBpLkVuZ2lu'
|
||||
'ZVJ1bGVGaWVsZFJlZkgBUg1GaWVsZFJlZlZhbHVlEkIKDUNvbXB1dGVkVmFsdWUYIiABKAsyGi'
|
||||
'5hcGkuRW5naW5lUnVsZUNvbXB1dGVkUmVmSAFSDUNvbXB1dGVkVmFsdWUSPwoMTWFwcGluZ1Zh'
|
||||
'bHVlGCMgASgLMhkuYXBpLkVuZ2luZVJ1bGVNYXBwaW5nUmVmSAFSDE1hcHBpbmdWYWx1ZTojkk'
|
||||
'EgCh7SAQhPcGVyYXRvctIBCENyaXRlcmlh0gEFVmFsdWVCCgoIQ3JpdGVyaWFCBwoFVmFsdWU=');
|
||||
|
||||
@$core.Deprecated('Use engineRuleConditionCollectionCriteriaDescriptor instead')
|
||||
const EngineRuleConditionCollectionCriteria$json = {
|
||||
'1': 'EngineRuleConditionCollectionCriteria',
|
||||
'2': [
|
||||
{'1': 'CollectionPath', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'CollectionPath'},
|
||||
{'1': 'ElementField', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ElementField'},
|
||||
{'1': 'Quantifier', '3': 3, '4': 1, '5': 14, '6': '.api.EngineRuleConditionQuantifier', '8': {}, '10': 'Quantifier'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleConditionCollectionCriteria`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleConditionCollectionCriteriaDescriptor = $convert.base64Decode(
|
||||
'CiVFbmdpbmVSdWxlQ29uZGl0aW9uQ29sbGVjdGlvbkNyaXRlcmlhEjAKDkNvbGxlY3Rpb25QYX'
|
||||
'RoGAEgASgJQgi6gQEEcgIQAVIOQ29sbGVjdGlvblBhdGgSLAoMRWxlbWVudEZpZWxkGAIgASgJ'
|
||||
'Qgi6gQEEcgIQAVIMRWxlbWVudEZpZWxkEk8KClF1YW50aWZpZXIYAyABKA4yIi5hcGkuRW5naW'
|
||||
'5lUnVsZUNvbmRpdGlvblF1YW50aWZpZXJCC7qBAQeCAQQQASAAUgpRdWFudGlmaWVyOjKSQS8K'
|
||||
'LdIBDkNvbGxlY3Rpb25QYXRo0gEMRWxlbWVudEZpZWxk0gEKUXVhbnRpZmllcg==');
|
||||
|
||||
@$core.Deprecated('Use engineRuleConditionAggregateCriteriaDescriptor instead')
|
||||
const EngineRuleConditionAggregateCriteria$json = {
|
||||
'1': 'EngineRuleConditionAggregateCriteria',
|
||||
'2': [
|
||||
{'1': 'Field', '3': 1, '4': 1, '5': 9, '10': 'Field'},
|
||||
{'1': 'AggregateFunction', '3': 2, '4': 1, '5': 14, '6': '.api.EngineRuleConditionAggregateFunction', '8': {}, '10': 'AggregateFunction'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleConditionAggregateCriteria`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleConditionAggregateCriteriaDescriptor = $convert.base64Decode(
|
||||
'CiRFbmdpbmVSdWxlQ29uZGl0aW9uQWdncmVnYXRlQ3JpdGVyaWESFAoFRmllbGQYASABKAlSBU'
|
||||
'ZpZWxkEmQKEUFnZ3JlZ2F0ZUZ1bmN0aW9uGAIgASgOMikuYXBpLkVuZ2luZVJ1bGVDb25kaXRp'
|
||||
'b25BZ2dyZWdhdGVGdW5jdGlvbkILuoEBB4IBBBABIABSEUFnZ3JlZ2F0ZUZ1bmN0aW9uOhmSQR'
|
||||
'YKFNIBEUFnZ3JlZ2F0ZUZ1bmN0aW9u');
|
||||
|
||||
@$core.Deprecated('Use engineRuleLiteralDescriptor instead')
|
||||
const EngineRuleLiteral$json = {
|
||||
'1': 'EngineRuleLiteral',
|
||||
'2': [
|
||||
{'1': 'Integer', '3': 1, '4': 1, '5': 3, '9': 0, '10': 'Integer'},
|
||||
{'1': 'Decimal', '3': 2, '4': 1, '5': 2, '9': 0, '10': 'Decimal'},
|
||||
{'1': 'String', '3': 3, '4': 1, '5': 9, '9': 0, '10': 'String'},
|
||||
{'1': 'Boolean', '3': 4, '4': 1, '5': 8, '9': 0, '10': 'Boolean'},
|
||||
],
|
||||
'7': {},
|
||||
'8': [
|
||||
{'1': 'Literal'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleLiteral`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleLiteralDescriptor = $convert.base64Decode(
|
||||
'ChFFbmdpbmVSdWxlTGl0ZXJhbBIaCgdJbnRlZ2VyGAEgASgDSABSB0ludGVnZXISGgoHRGVjaW'
|
||||
'1hbBgCIAEoAkgAUgdEZWNpbWFsEhgKBlN0cmluZxgDIAEoCUgAUgZTdHJpbmcSGgoHQm9vbGVh'
|
||||
'bhgEIAEoCEgAUgdCb29sZWFuOg+SQQwKCtIBB0xpdGVyYWxCCQoHTGl0ZXJhbA==');
|
||||
|
||||
@$core.Deprecated('Use engineRuleLiteralListDescriptor instead')
|
||||
const EngineRuleLiteralList$json = {
|
||||
'1': 'EngineRuleLiteralList',
|
||||
'2': [
|
||||
{'1': 'Items', '3': 1, '4': 3, '5': 11, '6': '.api.EngineRuleLiteral', '8': {}, '10': 'Items'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleLiteralList`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleLiteralListDescriptor = $convert.base64Decode(
|
||||
'ChVFbmdpbmVSdWxlTGl0ZXJhbExpc3QSNwoFSXRlbXMYASADKAsyFi5hcGkuRW5naW5lUnVsZU'
|
||||
'xpdGVyYWxCCbqBAQWSAQIIAVIFSXRlbXM6DZJBCgoI0gEFSXRlbXM=');
|
||||
|
||||
@$core.Deprecated('Use engineRuleFieldRefDescriptor instead')
|
||||
const EngineRuleFieldRef$json = {
|
||||
'1': 'EngineRuleFieldRef',
|
||||
'2': [
|
||||
{'1': 'Path', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'Path'},
|
||||
{'1': 'Scope', '3': 2, '4': 1, '5': 14, '6': '.api.EngineRuleFieldRefScope', '8': {}, '10': 'Scope'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleFieldRef`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleFieldRefDescriptor = $convert.base64Decode(
|
||||
'ChJFbmdpbmVSdWxlRmllbGRSZWYSHAoEUGF0aBgBIAEoCUIIuoEBBHICEAFSBFBhdGgSPwoFU2'
|
||||
'NvcGUYAiABKA4yHC5hcGkuRW5naW5lUnVsZUZpZWxkUmVmU2NvcGVCC7qBAQeCAQQQASAAUgVT'
|
||||
'Y29wZToUkkERCg/SAQRQYXRo0gEFU2NvcGU=');
|
||||
|
||||
@$core.Deprecated('Use engineRuleComputedRefDescriptor instead')
|
||||
const EngineRuleComputedRef$json = {
|
||||
'1': 'EngineRuleComputedRef',
|
||||
'2': [
|
||||
{'1': 'ComputationID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ComputationID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleComputedRef`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleComputedRefDescriptor = $convert.base64Decode(
|
||||
'ChVFbmdpbmVSdWxlQ29tcHV0ZWRSZWYSLgoNQ29tcHV0YXRpb25JRBgBIAEoCUIIuoEBBHICEA'
|
||||
'FSDUNvbXB1dGF0aW9uSUQ6FZJBEgoQ0gENQ29tcHV0YXRpb25JRA==');
|
||||
|
||||
@$core.Deprecated('Use engineRuleMappingRefDescriptor instead')
|
||||
const EngineRuleMappingRef$json = {
|
||||
'1': 'EngineRuleMappingRef',
|
||||
'2': [
|
||||
{'1': 'MappingID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'MappingID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleMappingRef`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleMappingRefDescriptor = $convert.base64Decode(
|
||||
'ChRFbmdpbmVSdWxlTWFwcGluZ1JlZhImCglNYXBwaW5nSUQYASABKAlCCLqBAQRyAhABUglNYX'
|
||||
'BwaW5nSUQ6EZJBDgoM0gEJTWFwcGluZ0lE');
|
||||
|
||||
@$core.Deprecated('Use engineRuleActionDescriptor instead')
|
||||
const EngineRuleAction$json = {
|
||||
'1': 'EngineRuleAction',
|
||||
'2': [
|
||||
{'1': 'CreateClaim', '3': 1, '4': 1, '5': 11, '6': '.api.EngineRuleActionCreateClaim', '9': 0, '10': 'CreateClaim'},
|
||||
{'1': 'UpdateMetadata', '3': 2, '4': 1, '5': 11, '6': '.api.EngineRuleActionUpdateMetadata', '9': 0, '10': 'UpdateMetadata'},
|
||||
{'1': 'CreateAlert', '3': 3, '4': 1, '5': 11, '6': '.api.EngineRuleActionCreateAlert', '9': 0, '10': 'CreateAlert'},
|
||||
],
|
||||
'7': {},
|
||||
'8': [
|
||||
{'1': 'Action'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleAction`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleActionDescriptor = $convert.base64Decode(
|
||||
'ChBFbmdpbmVSdWxlQWN0aW9uEkQKC0NyZWF0ZUNsYWltGAEgASgLMiAuYXBpLkVuZ2luZVJ1bG'
|
||||
'VBY3Rpb25DcmVhdGVDbGFpbUgAUgtDcmVhdGVDbGFpbRJNCg5VcGRhdGVNZXRhZGF0YRgCIAEo'
|
||||
'CzIjLmFwaS5FbmdpbmVSdWxlQWN0aW9uVXBkYXRlTWV0YWRhdGFIAFIOVXBkYXRlTWV0YWRhdG'
|
||||
'ESRAoLQ3JlYXRlQWxlcnQYAyABKAsyIC5hcGkuRW5naW5lUnVsZUFjdGlvbkNyZWF0ZUFsZXJ0'
|
||||
'SABSC0NyZWF0ZUFsZXJ0Og6SQQsKCdIBBkFjdGlvbkIICgZBY3Rpb24=');
|
||||
|
||||
@$core.Deprecated('Use engineRuleActionCreateClaimDescriptor instead')
|
||||
const EngineRuleActionCreateClaim$json = {
|
||||
'1': 'EngineRuleActionCreateClaim',
|
||||
'2': [
|
||||
{'1': 'ClaimTypeID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ClaimTypeID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleActionCreateClaim`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleActionCreateClaimDescriptor = $convert.base64Decode(
|
||||
'ChtFbmdpbmVSdWxlQWN0aW9uQ3JlYXRlQ2xhaW0SKgoLQ2xhaW1UeXBlSUQYASABKAlCCLqBAQ'
|
||||
'RyAhABUgtDbGFpbVR5cGVJRDoTkkEQCg7SAQtDbGFpbVR5cGVJRA==');
|
||||
|
||||
@$core.Deprecated('Use engineRuleActionUpdateMetadataDescriptor instead')
|
||||
const EngineRuleActionUpdateMetadata$json = {
|
||||
'1': 'EngineRuleActionUpdateMetadata',
|
||||
'2': [
|
||||
{'1': 'Field', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'Field'},
|
||||
{'1': 'Value', '3': 2, '4': 1, '5': 11, '6': '.api.EngineRuleActionAttributeValue', '8': {}, '10': 'Value'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleActionUpdateMetadata`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleActionUpdateMetadataDescriptor = $convert.base64Decode(
|
||||
'Ch5FbmdpbmVSdWxlQWN0aW9uVXBkYXRlTWV0YWRhdGESHgoFRmllbGQYASABKAlCCLqBAQRyAh'
|
||||
'ABUgVGaWVsZBJECgVWYWx1ZRgCIAEoCzIjLmFwaS5FbmdpbmVSdWxlQWN0aW9uQXR0cmlidXRl'
|
||||
'VmFsdWVCCbqBAQWKAQIQAVIFVmFsdWU6FZJBEgoQ0gEFRmllbGTSAQVWYWx1ZQ==');
|
||||
|
||||
@$core.Deprecated('Use engineRuleActionCreateAlertDescriptor instead')
|
||||
const EngineRuleActionCreateAlert$json = {
|
||||
'1': 'EngineRuleActionCreateAlert',
|
||||
'2': [
|
||||
{'1': 'Label', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'Label'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleActionCreateAlert`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleActionCreateAlertDescriptor = $convert.base64Decode(
|
||||
'ChtFbmdpbmVSdWxlQWN0aW9uQ3JlYXRlQWxlcnQSHgoFTGFiZWwYASABKAlCCLqBAQRyAhABUg'
|
||||
'VMYWJlbDoNkkEKCgjSAQVMYWJlbA==');
|
||||
|
||||
@$core.Deprecated('Use engineRuleActionAttributeValueDescriptor instead')
|
||||
const EngineRuleActionAttributeValue$json = {
|
||||
'1': 'EngineRuleActionAttributeValue',
|
||||
'2': [
|
||||
{'1': 'LiteralValue', '3': 1, '4': 1, '5': 11, '6': '.api.EngineRuleLiteral', '9': 0, '10': 'LiteralValue'},
|
||||
{'1': 'ComputedValue', '3': 2, '4': 1, '5': 11, '6': '.api.EngineRuleComputedRef', '9': 0, '10': 'ComputedValue'},
|
||||
{'1': 'MappingValue', '3': 3, '4': 1, '5': 11, '6': '.api.EngineRuleMappingRef', '9': 0, '10': 'MappingValue'},
|
||||
],
|
||||
'7': {},
|
||||
'8': [
|
||||
{'1': 'Value'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `EngineRuleActionAttributeValue`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List engineRuleActionAttributeValueDescriptor = $convert.base64Decode(
|
||||
'Ch5FbmdpbmVSdWxlQWN0aW9uQXR0cmlidXRlVmFsdWUSPAoMTGl0ZXJhbFZhbHVlGAEgASgLMh'
|
||||
'YuYXBpLkVuZ2luZVJ1bGVMaXRlcmFsSABSDExpdGVyYWxWYWx1ZRJCCg1Db21wdXRlZFZhbHVl'
|
||||
'GAIgASgLMhouYXBpLkVuZ2luZVJ1bGVDb21wdXRlZFJlZkgAUg1Db21wdXRlZFZhbHVlEj8KDE'
|
||||
'1hcHBpbmdWYWx1ZRgDIAEoCzIZLmFwaS5FbmdpbmVSdWxlTWFwcGluZ1JlZkgAUgxNYXBwaW5n'
|
||||
'VmFsdWU6DZJBCgoI0gEFVmFsdWVCBwoFVmFsdWU=');
|
||||
|
||||
@$core.Deprecated('Use computationDescriptor instead')
|
||||
const Computation$json = {
|
||||
'1': 'Computation',
|
||||
'2': [
|
||||
{'1': 'ProjectID', '3': 10, '4': 1, '5': 9, '10': 'ProjectID'},
|
||||
{'1': 'ID', '3': 20, '4': 1, '5': 9, '10': 'ID'},
|
||||
{'1': 'Label', '3': 30, '4': 1, '5': 9, '8': {}, '10': 'Label'},
|
||||
{'1': 'Entity', '3': 40, '4': 1, '5': 14, '6': '.api.EntityType', '8': {}, '10': 'Entity'},
|
||||
{'1': 'DateDuration', '3': 50, '4': 1, '5': 11, '6': '.api.ComputationDateDuration', '9': 0, '10': 'DateDuration'},
|
||||
{'1': 'DueDate', '3': 51, '4': 1, '5': 11, '6': '.api.ComputationDueDate', '9': 0, '10': 'DueDate'},
|
||||
{'1': 'StatusDuration', '3': 52, '4': 1, '5': 11, '6': '.api.ComputationStatusDuration', '9': 0, '10': 'StatusDuration'},
|
||||
{'1': 'CustomFunction', '3': 53, '4': 1, '5': 11, '6': '.api.ComputationCustomFunction', '9': 0, '10': 'CustomFunction'},
|
||||
],
|
||||
'7': {},
|
||||
'8': [
|
||||
{'1': 'Type'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `Computation`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List computationDescriptor = $convert.base64Decode(
|
||||
'CgtDb21wdXRhdGlvbhIcCglQcm9qZWN0SUQYCiABKAlSCVByb2plY3RJRBIOCgJJRBgUIAEoCV'
|
||||
'ICSUQSHgoFTGFiZWwYHiABKAlCCLqBAQRyAhABUgVMYWJlbBI0CgZFbnRpdHkYKCABKA4yDy5h'
|
||||
'cGkuRW50aXR5VHlwZUILuoEBB4IBBBABIABSBkVudGl0eRJCCgxEYXRlRHVyYXRpb24YMiABKA'
|
||||
'syHC5hcGkuQ29tcHV0YXRpb25EYXRlRHVyYXRpb25IAFIMRGF0ZUR1cmF0aW9uEjMKB0R1ZURh'
|
||||
'dGUYMyABKAsyFy5hcGkuQ29tcHV0YXRpb25EdWVEYXRlSABSB0R1ZURhdGUSSAoOU3RhdHVzRH'
|
||||
'VyYXRpb24YNCABKAsyHi5hcGkuQ29tcHV0YXRpb25TdGF0dXNEdXJhdGlvbkgAUg5TdGF0dXNE'
|
||||
'dXJhdGlvbhJICg5DdXN0b21GdW5jdGlvbhg1IAEoCzIeLmFwaS5Db21wdXRhdGlvbkN1c3RvbU'
|
||||
'Z1bmN0aW9uSABSDkN1c3RvbUZ1bmN0aW9uOh2SQRoKGNIBBUxhYmVs0gEGRW50aXR50gEEVHlw'
|
||||
'ZUIGCgRUeXBl');
|
||||
|
||||
@$core.Deprecated('Use computationDateDurationDescriptor instead')
|
||||
const ComputationDateDuration$json = {
|
||||
'1': 'ComputationDateDuration',
|
||||
'2': [
|
||||
{'1': 'StartDateField', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'StartDateField'},
|
||||
{'1': 'EndDateField', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'EndDateField'},
|
||||
{'1': 'DurationFormat', '3': 3, '4': 1, '5': 11, '6': '.api.ComputationDurationFormat', '8': {}, '10': 'DurationFormat'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ComputationDateDuration`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List computationDateDurationDescriptor = $convert.base64Decode(
|
||||
'ChdDb21wdXRhdGlvbkRhdGVEdXJhdGlvbhIwCg5TdGFydERhdGVGaWVsZBgBIAEoCUIIuoEBBH'
|
||||
'ICEAFSDlN0YXJ0RGF0ZUZpZWxkEiwKDEVuZERhdGVGaWVsZBgCIAEoCUIIuoEBBHICEAFSDEVu'
|
||||
'ZERhdGVGaWVsZBJRCg5EdXJhdGlvbkZvcm1hdBgDIAEoCzIeLmFwaS5Db21wdXRhdGlvbkR1cm'
|
||||
'F0aW9uRm9ybWF0Qgm6gQEFigECEAFSDkR1cmF0aW9uRm9ybWF0OjaSQTMKMdIBDlN0YXJ0RGF0'
|
||||
'ZUZpZWxk0gEMRW5kRGF0ZUZpZWxk0gEORHVyYXRpb25Gb3JtYXQ=');
|
||||
|
||||
@$core.Deprecated('Use computationDueDateDescriptor instead')
|
||||
const ComputationDueDate$json = {
|
||||
'1': 'ComputationDueDate',
|
||||
'2': [
|
||||
{'1': 'ReferenceDateField', '3': 10, '4': 1, '5': 9, '8': {}, '10': 'ReferenceDateField'},
|
||||
{'1': 'ComputationType', '3': 20, '4': 1, '5': 14, '6': '.api.ComputationDueDateComputationType', '8': {}, '10': 'ComputationType'},
|
||||
{'1': 'Duration', '3': 31, '4': 1, '5': 13, '9': 0, '10': 'Duration'},
|
||||
{'1': 'MappingValue', '3': 32, '4': 1, '5': 11, '6': '.api.EngineRuleMappingRef', '9': 0, '10': 'MappingValue'},
|
||||
{'1': 'DurationFormat', '3': 40, '4': 1, '5': 11, '6': '.api.ComputationDurationFormat', '8': {}, '10': 'DurationFormat'},
|
||||
],
|
||||
'7': {},
|
||||
'8': [
|
||||
{'1': 'Value'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ComputationDueDate`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List computationDueDateDescriptor = $convert.base64Decode(
|
||||
'ChJDb21wdXRhdGlvbkR1ZURhdGUSOAoSUmVmZXJlbmNlRGF0ZUZpZWxkGAogASgJQgi6gQEEcg'
|
||||
'IQAVISUmVmZXJlbmNlRGF0ZUZpZWxkEl0KD0NvbXB1dGF0aW9uVHlwZRgUIAEoDjImLmFwaS5D'
|
||||
'b21wdXRhdGlvbkR1ZURhdGVDb21wdXRhdGlvblR5cGVCC7qBAQeCAQQQASAAUg9Db21wdXRhdG'
|
||||
'lvblR5cGUSHAoIRHVyYXRpb24YHyABKA1IAFIIRHVyYXRpb24SPwoMTWFwcGluZ1ZhbHVlGCAg'
|
||||
'ASgLMhkuYXBpLkVuZ2luZVJ1bGVNYXBwaW5nUmVmSABSDE1hcHBpbmdWYWx1ZRJRCg5EdXJhdG'
|
||||
'lvbkZvcm1hdBgoIAEoCzIeLmFwaS5Db21wdXRhdGlvbkR1cmF0aW9uRm9ybWF0Qgm6gQEFigEC'
|
||||
'EAFSDkR1cmF0aW9uRm9ybWF0OkWSQUIKQNIBElJlZmVyZW5jZURhdGVGaWVsZNIBD0NvbXB1dG'
|
||||
'F0aW9uVHlwZdIBBVZhbHVl0gEORHVyYXRpb25Gb3JtYXRCBwoFVmFsdWU=');
|
||||
|
||||
@$core.Deprecated('Use computationStatusDurationDescriptor instead')
|
||||
const ComputationStatusDuration$json = {
|
||||
'1': 'ComputationStatusDuration',
|
||||
'2': [
|
||||
{'1': 'StatusCodes', '3': 1, '4': 3, '5': 9, '8': {}, '10': 'StatusCodes'},
|
||||
{'1': 'DurationFormat', '3': 2, '4': 1, '5': 11, '6': '.api.ComputationDurationFormat', '8': {}, '10': 'DurationFormat'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ComputationStatusDuration`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List computationStatusDurationDescriptor = $convert.base64Decode(
|
||||
'ChlDb21wdXRhdGlvblN0YXR1c0R1cmF0aW9uEisKC1N0YXR1c0NvZGVzGAEgAygJQgm6gQEFkg'
|
||||
'ECCAFSC1N0YXR1c0NvZGVzElEKDkR1cmF0aW9uRm9ybWF0GAIgASgLMh4uYXBpLkNvbXB1dGF0'
|
||||
'aW9uRHVyYXRpb25Gb3JtYXRCCbqBAQWKAQIQAVIORHVyYXRpb25Gb3JtYXQ6JJJBIQof0gELU3'
|
||||
'RhdHVzQ29kZXPSAQ5EdXJhdGlvbkZvcm1hdA==');
|
||||
|
||||
@$core.Deprecated('Use computationDurationFormatDescriptor instead')
|
||||
const ComputationDurationFormat$json = {
|
||||
'1': 'ComputationDurationFormat',
|
||||
'2': [
|
||||
{'1': 'Format', '3': 1, '4': 1, '5': 14, '6': '.api.DurationFormat', '8': {}, '10': 'Format'},
|
||||
{'1': 'CalendarID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'CalendarID'},
|
||||
{'1': 'Rounding', '3': 3, '4': 1, '5': 14, '6': '.api.DurationRounding', '8': {}, '10': 'Rounding'},
|
||||
{'1': 'RoundingValue', '3': 4, '4': 1, '5': 9, '10': 'RoundingValue'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ComputationDurationFormat`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List computationDurationFormatDescriptor = $convert.base64Decode(
|
||||
'ChlDb21wdXRhdGlvbkR1cmF0aW9uRm9ybWF0EjgKBkZvcm1hdBgBIAEoDjITLmFwaS5EdXJhdG'
|
||||
'lvbkZvcm1hdEILuoEBB4IBBBABIABSBkZvcm1hdBIoCgpDYWxlbmRhcklEGAIgASgJQgi6gQEE'
|
||||
'cgIQAVIKQ2FsZW5kYXJJRBI+CghSb3VuZGluZxgDIAEoDjIVLmFwaS5EdXJhdGlvblJvdW5kaW'
|
||||
'5nQgu6gQEHggEEEAEgAFIIUm91bmRpbmcSJAoNUm91bmRpbmdWYWx1ZRgEIAEoCVINUm91bmRp'
|
||||
'bmdWYWx1ZTomkkEjCiHSAQZGb3JtYXTSAQhSb3VuZGluZ9IBCkNhbGVuZGFySUQ=');
|
||||
|
||||
@$core.Deprecated('Use computationCustomFunctionDescriptor instead')
|
||||
const ComputationCustomFunction$json = {
|
||||
'1': 'ComputationCustomFunction',
|
||||
'2': [
|
||||
{'1': 'LeftField', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'LeftField'},
|
||||
{'1': 'Operator', '3': 2, '4': 1, '5': 14, '6': '.api.ComputationCustomFunctionOperator', '8': {}, '10': 'Operator'},
|
||||
{'1': 'RightField', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'RightField'},
|
||||
{'1': 'Format', '3': 4, '4': 1, '5': 11, '6': '.api.ComputationCustomFunctionFormat', '8': {}, '10': 'Format'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ComputationCustomFunction`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List computationCustomFunctionDescriptor = $convert.base64Decode(
|
||||
'ChlDb21wdXRhdGlvbkN1c3RvbUZ1bmN0aW9uEiYKCUxlZnRGaWVsZBgBIAEoCUIIuoEBBHICEA'
|
||||
'FSCUxlZnRGaWVsZBJPCghPcGVyYXRvchgCIAEoDjImLmFwaS5Db21wdXRhdGlvbkN1c3RvbUZ1'
|
||||
'bmN0aW9uT3BlcmF0b3JCC7qBAQeCAQQQASAAUghPcGVyYXRvchIoCgpSaWdodEZpZWxkGAMgAS'
|
||||
'gJQgi6gQEEcgIQAVIKUmlnaHRGaWVsZBJHCgZGb3JtYXQYBCABKAsyJC5hcGkuQ29tcHV0YXRp'
|
||||
'b25DdXN0b21GdW5jdGlvbkZvcm1hdEIJuoEBBYoBAhABUgZGb3JtYXQ6MpJBLwot0gEJTGVmdE'
|
||||
'ZpZWxk0gEIT3BlcmF0b3LSAQpSaWdodEZpZWxk0gEGRm9ybWF0');
|
||||
|
||||
@$core.Deprecated('Use computationCustomFunctionFormatDescriptor instead')
|
||||
const ComputationCustomFunctionFormat$json = {
|
||||
'1': 'ComputationCustomFunctionFormat',
|
||||
'2': [
|
||||
{'1': 'Format', '3': 1, '4': 1, '5': 14, '6': '.api.CustomFunctionFormat', '8': {}, '10': 'Format'},
|
||||
{'1': 'Precision', '3': 2, '4': 1, '5': 13, '8': {}, '10': 'Precision'},
|
||||
{'1': 'Rounding', '3': 3, '4': 1, '5': 14, '6': '.api.CustomFunctionRounding', '8': {}, '10': 'Rounding'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ComputationCustomFunctionFormat`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List computationCustomFunctionFormatDescriptor = $convert.base64Decode(
|
||||
'Ch9Db21wdXRhdGlvbkN1c3RvbUZ1bmN0aW9uRm9ybWF0Ej4KBkZvcm1hdBgBIAEoDjIZLmFwaS'
|
||||
'5DdXN0b21GdW5jdGlvbkZvcm1hdEILuoEBB4IBBBABIABSBkZvcm1hdBImCglQcmVjaXNpb24Y'
|
||||
'AiABKA1CCLqBAQQqAigAUglQcmVjaXNpb24SRAoIUm91bmRpbmcYAyABKA4yGy5hcGkuQ3VzdG'
|
||||
'9tRnVuY3Rpb25Sb3VuZGluZ0ILuoEBB4IBBBABIABSCFJvdW5kaW5nOiWSQSIKINIBBkZvcm1h'
|
||||
'dNIBCFJvdW5kaW5n0gEJUHJlY2lzaW9u');
|
||||
|
||||
@$core.Deprecated('Use mappingTableDescriptor instead')
|
||||
const MappingTable$json = {
|
||||
'1': 'MappingTable',
|
||||
'2': [
|
||||
{'1': 'ProjectID', '3': 10, '4': 1, '5': 9, '10': 'ProjectID'},
|
||||
{'1': 'ID', '3': 20, '4': 1, '5': 9, '8': {}, '10': 'ID'},
|
||||
{'1': 'Label', '3': 30, '4': 1, '5': 9, '8': {}, '10': 'Label'},
|
||||
{'1': 'Entity', '3': 40, '4': 1, '5': 14, '6': '.api.EntityType', '8': {}, '10': 'Entity'},
|
||||
{'1': 'InputFields', '3': 50, '4': 3, '5': 11, '6': '.api.MappingTableInputDescription', '8': {}, '10': 'InputFields'},
|
||||
{'1': 'OutputField', '3': 60, '4': 1, '5': 11, '6': '.api.MappingTableOutputField', '8': {}, '10': 'OutputField'},
|
||||
{'1': 'Entries', '3': 70, '4': 3, '5': 11, '6': '.api.MappingTableEntry', '8': {}, '10': 'Entries'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `MappingTable`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List mappingTableDescriptor = $convert.base64Decode(
|
||||
'CgxNYXBwaW5nVGFibGUSHAoJUHJvamVjdElEGAogASgJUglQcm9qZWN0SUQSGAoCSUQYFCABKA'
|
||||
'lCCLqBAQRyAhABUgJJRBIeCgVMYWJlbBgeIAEoCUIIuoEBBHICEAFSBUxhYmVsEjQKBkVudGl0'
|
||||
'eRgoIAEoDjIPLmFwaS5FbnRpdHlUeXBlQgu6gQEHggEEEAEgAFIGRW50aXR5Ek4KC0lucHV0Rm'
|
||||
'llbGRzGDIgAygLMiEuYXBpLk1hcHBpbmdUYWJsZUlucHV0RGVzY3JpcHRpb25CCbqBAQWSAQII'
|
||||
'AVILSW5wdXRGaWVsZHMSSQoLT3V0cHV0RmllbGQYPCABKAsyHC5hcGkuTWFwcGluZ1RhYmxlT3'
|
||||
'V0cHV0RmllbGRCCbqBAQWKAQIQAVILT3V0cHV0RmllbGQSOwoHRW50cmllcxhGIAMoCzIWLmFw'
|
||||
'aS5NYXBwaW5nVGFibGVFbnRyeUIJuoEBBZIBAggBUgdFbnRyaWVzOjySQTkKN9IBBUxhYmVs0g'
|
||||
'ELSW5wdXRGaWVsZHPSAQtPdXRwdXRGaWVsZNIBB0VudHJpZXPSAQZFbnRpdHk=');
|
||||
|
||||
@$core.Deprecated('Use mappingTableInputDescriptionDescriptor instead')
|
||||
const MappingTableInputDescription$json = {
|
||||
'1': 'MappingTableInputDescription',
|
||||
'2': [
|
||||
{'1': 'Field', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'Field'},
|
||||
{'1': 'Granularity', '3': 2, '4': 1, '5': 14, '6': '.api.MappingTableInputDescriptionGranularity', '8': {}, '10': 'Granularity'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `MappingTableInputDescription`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List mappingTableInputDescriptionDescriptor = $convert.base64Decode(
|
||||
'ChxNYXBwaW5nVGFibGVJbnB1dERlc2NyaXB0aW9uEh4KBUZpZWxkGAEgASgJQgi6gQEEcgIQAV'
|
||||
'IFRmllbGQSWwoLR3JhbnVsYXJpdHkYAiABKA4yLC5hcGkuTWFwcGluZ1RhYmxlSW5wdXREZXNj'
|
||||
'cmlwdGlvbkdyYW51bGFyaXR5Qgu6gQEHggEEEAEgAFILR3JhbnVsYXJpdHk=');
|
||||
|
||||
@$core.Deprecated('Use mappingTableEntryDescriptor instead')
|
||||
const MappingTableEntry$json = {
|
||||
'1': 'MappingTableEntry',
|
||||
'2': [
|
||||
{'1': 'Inputs', '3': 1, '4': 3, '5': 11, '6': '.api.MappingTableInput', '8': {}, '10': 'Inputs'},
|
||||
{'1': 'OutputValue', '3': 2, '4': 1, '5': 11, '6': '.api.EngineRuleLiteral', '8': {}, '10': 'OutputValue'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `MappingTableEntry`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List mappingTableEntryDescriptor = $convert.base64Decode(
|
||||
'ChFNYXBwaW5nVGFibGVFbnRyeRI5CgZJbnB1dHMYASADKAsyFi5hcGkuTWFwcGluZ1RhYmxlSW'
|
||||
'5wdXRCCbqBAQWSAQIIAVIGSW5wdXRzEkMKC091dHB1dFZhbHVlGAIgASgLMhYuYXBpLkVuZ2lu'
|
||||
'ZVJ1bGVMaXRlcmFsQgm6gQEFigECEAFSC091dHB1dFZhbHVlOhySQRkKF9IBBklucHV0c9IBC0'
|
||||
'91dHB1dFZhbHVl');
|
||||
|
||||
@$core.Deprecated('Use mappingTableInputDescriptor instead')
|
||||
const MappingTableInput$json = {
|
||||
'1': 'MappingTableInput',
|
||||
'2': [
|
||||
{'1': 'Field', '3': 10, '4': 1, '5': 9, '8': {}, '10': 'Field'},
|
||||
{'1': 'Literal', '3': 20, '4': 1, '5': 11, '6': '.api.EngineRuleLiteral', '8': {}, '9': 0, '10': 'Literal'},
|
||||
{'1': 'AllValuesMatch', '3': 21, '4': 1, '5': 8, '9': 0, '10': 'AllValuesMatch'},
|
||||
{'1': 'Operator', '3': 30, '4': 1, '5': 14, '6': '.api.MappingTableInputOperator', '8': {}, '10': 'Operator'},
|
||||
],
|
||||
'7': {},
|
||||
'8': [
|
||||
{'1': 'Value'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `MappingTableInput`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List mappingTableInputDescriptor = $convert.base64Decode(
|
||||
'ChFNYXBwaW5nVGFibGVJbnB1dBIeCgVGaWVsZBgKIAEoCUIIuoEBBHICEAFSBUZpZWxkEj0KB0'
|
||||
'xpdGVyYWwYFCABKAsyFi5hcGkuRW5naW5lUnVsZUxpdGVyYWxCCbqBAQWKAQIQAUgAUgdMaXRl'
|
||||
'cmFsEigKDkFsbFZhbHVlc01hdGNoGBUgASgISABSDkFsbFZhbHVlc01hdGNoEkcKCE9wZXJhdG'
|
||||
'9yGB4gASgOMh4uYXBpLk1hcHBpbmdUYWJsZUlucHV0T3BlcmF0b3JCC7qBAQeCAQQQASAAUghP'
|
||||
'cGVyYXRvcjoVkkESChDSAQVGaWVsZNIBBVZhbHVlQgcKBVZhbHVl');
|
||||
|
||||
@$core.Deprecated('Use mappingTableOutputFieldDescriptor instead')
|
||||
const MappingTableOutputField$json = {
|
||||
'1': 'MappingTableOutputField',
|
||||
'2': [
|
||||
{'1': 'Label', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'Label'},
|
||||
{'1': 'Type', '3': 2, '4': 1, '5': 14, '6': '.api.MappingTableOutputFieldType', '8': {}, '10': 'Type'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `MappingTableOutputField`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List mappingTableOutputFieldDescriptor = $convert.base64Decode(
|
||||
'ChdNYXBwaW5nVGFibGVPdXRwdXRGaWVsZBIeCgVMYWJlbBgBIAEoCUIIuoEBBHICEAFSBUxhYm'
|
||||
'VsEkEKBFR5cGUYAiABKA4yIC5hcGkuTWFwcGluZ1RhYmxlT3V0cHV0RmllbGRUeXBlQgu6gQEH'
|
||||
'ggEEEAEgAFIEVHlwZToUkkERCg/SAQVMYWJlbNIBBFR5cGU=');
|
||||
|
||||
1678
lib/ruleEngine_services.pb.dart
Normal file
1678
lib/ruleEngine_services.pb.dart
Normal file
File diff suppressed because it is too large
Load Diff
12
lib/ruleEngine_services.pbenum.dart
Normal file
12
lib/ruleEngine_services.pbenum.dart
Normal file
@@ -0,0 +1,12 @@
|
||||
// This is a generated file - do not edit.
|
||||
//
|
||||
// Generated from ruleEngine_services.proto.
|
||||
|
||||
// @dart = 3.3
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// ignore_for_file: constant_identifier_names
|
||||
// ignore_for_file: curly_braces_in_flow_control_structures
|
||||
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
|
||||
// ignore_for_file: non_constant_identifier_names
|
||||
|
||||
367
lib/ruleEngine_services.pbgrpc.dart
Normal file
367
lib/ruleEngine_services.pbgrpc.dart
Normal file
@@ -0,0 +1,367 @@
|
||||
// This is a generated file - do not edit.
|
||||
//
|
||||
// Generated from ruleEngine_services.proto.
|
||||
|
||||
// @dart = 3.3
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// ignore_for_file: constant_identifier_names
|
||||
// ignore_for_file: curly_braces_in_flow_control_structures
|
||||
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
|
||||
// ignore_for_file: non_constant_identifier_names
|
||||
|
||||
import 'dart:async' as $async;
|
||||
import 'dart:core' as $core;
|
||||
|
||||
import 'package:grpc/service_api.dart' as $grpc;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'ruleEngine_services.pb.dart' as $0;
|
||||
|
||||
export 'ruleEngine_services.pb.dart';
|
||||
|
||||
@$pb.GrpcServiceName('api.RuleEngineService')
|
||||
class RuleEngineServiceClient extends $grpc.Client {
|
||||
/// The hostname for this service.
|
||||
static const $core.String defaultHost = '';
|
||||
|
||||
/// OAuth scopes needed for the client.
|
||||
static const $core.List<$core.String> oauthScopes = [
|
||||
'',
|
||||
];
|
||||
|
||||
RuleEngineServiceClient(super.channel, {super.options, super.interceptors});
|
||||
|
||||
$grpc.ResponseFuture<$0.PutEngineRuleResponse> put($0.PutEngineRuleRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$put, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.GetEngineRuleResponse> get($0.GetEngineRuleRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$get, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.ListEngineRuleResponse> list($0.ListEngineRuleRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$list, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.DeleteEngineRuleResponse> delete($0.DeleteEngineRuleRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$delete, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.ToggleDebugOnResponse> toggleDebugOn($0.ToggleDebugOnRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$toggleDebugOn, request, options: options);
|
||||
}
|
||||
|
||||
// method descriptors
|
||||
|
||||
static final _$put = $grpc.ClientMethod<$0.PutEngineRuleRequest, $0.PutEngineRuleResponse>(
|
||||
'/api.RuleEngineService/Put',
|
||||
($0.PutEngineRuleRequest value) => value.writeToBuffer(),
|
||||
$0.PutEngineRuleResponse.fromBuffer);
|
||||
static final _$get = $grpc.ClientMethod<$0.GetEngineRuleRequest, $0.GetEngineRuleResponse>(
|
||||
'/api.RuleEngineService/Get',
|
||||
($0.GetEngineRuleRequest value) => value.writeToBuffer(),
|
||||
$0.GetEngineRuleResponse.fromBuffer);
|
||||
static final _$list = $grpc.ClientMethod<$0.ListEngineRuleRequest, $0.ListEngineRuleResponse>(
|
||||
'/api.RuleEngineService/List',
|
||||
($0.ListEngineRuleRequest value) => value.writeToBuffer(),
|
||||
$0.ListEngineRuleResponse.fromBuffer);
|
||||
static final _$delete = $grpc.ClientMethod<$0.DeleteEngineRuleRequest, $0.DeleteEngineRuleResponse>(
|
||||
'/api.RuleEngineService/Delete',
|
||||
($0.DeleteEngineRuleRequest value) => value.writeToBuffer(),
|
||||
$0.DeleteEngineRuleResponse.fromBuffer);
|
||||
static final _$toggleDebugOn = $grpc.ClientMethod<$0.ToggleDebugOnRequest, $0.ToggleDebugOnResponse>(
|
||||
'/api.RuleEngineService/ToggleDebugOn',
|
||||
($0.ToggleDebugOnRequest value) => value.writeToBuffer(),
|
||||
$0.ToggleDebugOnResponse.fromBuffer);
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.RuleEngineService')
|
||||
abstract class RuleEngineServiceBase extends $grpc.Service {
|
||||
$core.String get $name => 'api.RuleEngineService';
|
||||
|
||||
RuleEngineServiceBase() {
|
||||
$addMethod($grpc.ServiceMethod<$0.PutEngineRuleRequest, $0.PutEngineRuleResponse>(
|
||||
'Put',
|
||||
put_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.PutEngineRuleRequest.fromBuffer(value),
|
||||
($0.PutEngineRuleResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.GetEngineRuleRequest, $0.GetEngineRuleResponse>(
|
||||
'Get',
|
||||
get_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.GetEngineRuleRequest.fromBuffer(value),
|
||||
($0.GetEngineRuleResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.ListEngineRuleRequest, $0.ListEngineRuleResponse>(
|
||||
'List',
|
||||
list_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.ListEngineRuleRequest.fromBuffer(value),
|
||||
($0.ListEngineRuleResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.DeleteEngineRuleRequest, $0.DeleteEngineRuleResponse>(
|
||||
'Delete',
|
||||
delete_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.DeleteEngineRuleRequest.fromBuffer(value),
|
||||
($0.DeleteEngineRuleResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.ToggleDebugOnRequest, $0.ToggleDebugOnResponse>(
|
||||
'ToggleDebugOn',
|
||||
toggleDebugOn_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.ToggleDebugOnRequest.fromBuffer(value),
|
||||
($0.ToggleDebugOnResponse value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$0.PutEngineRuleResponse> put_Pre($grpc.ServiceCall $call, $async.Future<$0.PutEngineRuleRequest> $request) async {
|
||||
return put($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.PutEngineRuleResponse> put($grpc.ServiceCall call, $0.PutEngineRuleRequest request);
|
||||
|
||||
$async.Future<$0.GetEngineRuleResponse> get_Pre($grpc.ServiceCall $call, $async.Future<$0.GetEngineRuleRequest> $request) async {
|
||||
return get($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.GetEngineRuleResponse> get($grpc.ServiceCall call, $0.GetEngineRuleRequest request);
|
||||
|
||||
$async.Future<$0.ListEngineRuleResponse> list_Pre($grpc.ServiceCall $call, $async.Future<$0.ListEngineRuleRequest> $request) async {
|
||||
return list($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.ListEngineRuleResponse> list($grpc.ServiceCall call, $0.ListEngineRuleRequest request);
|
||||
|
||||
$async.Future<$0.DeleteEngineRuleResponse> delete_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteEngineRuleRequest> $request) async {
|
||||
return delete($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.DeleteEngineRuleResponse> delete($grpc.ServiceCall call, $0.DeleteEngineRuleRequest request);
|
||||
|
||||
$async.Future<$0.ToggleDebugOnResponse> toggleDebugOn_Pre($grpc.ServiceCall $call, $async.Future<$0.ToggleDebugOnRequest> $request) async {
|
||||
return toggleDebugOn($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.ToggleDebugOnResponse> toggleDebugOn($grpc.ServiceCall call, $0.ToggleDebugOnRequest request);
|
||||
|
||||
}
|
||||
@$pb.GrpcServiceName('api.ComputationService')
|
||||
class ComputationServiceClient extends $grpc.Client {
|
||||
/// The hostname for this service.
|
||||
static const $core.String defaultHost = '';
|
||||
|
||||
/// OAuth scopes needed for the client.
|
||||
static const $core.List<$core.String> oauthScopes = [
|
||||
'',
|
||||
];
|
||||
|
||||
ComputationServiceClient(super.channel, {super.options, super.interceptors});
|
||||
|
||||
$grpc.ResponseFuture<$0.PutComputationResponse> put($0.PutComputationRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$put, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.GetComputationResponse> get($0.GetComputationRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$get, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.ListComputationResponse> list($0.ListComputationRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$list, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.DeleteComputationResponse> delete($0.DeleteComputationRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$delete, request, options: options);
|
||||
}
|
||||
|
||||
// method descriptors
|
||||
|
||||
static final _$put = $grpc.ClientMethod<$0.PutComputationRequest, $0.PutComputationResponse>(
|
||||
'/api.ComputationService/Put',
|
||||
($0.PutComputationRequest value) => value.writeToBuffer(),
|
||||
$0.PutComputationResponse.fromBuffer);
|
||||
static final _$get = $grpc.ClientMethod<$0.GetComputationRequest, $0.GetComputationResponse>(
|
||||
'/api.ComputationService/Get',
|
||||
($0.GetComputationRequest value) => value.writeToBuffer(),
|
||||
$0.GetComputationResponse.fromBuffer);
|
||||
static final _$list = $grpc.ClientMethod<$0.ListComputationRequest, $0.ListComputationResponse>(
|
||||
'/api.ComputationService/List',
|
||||
($0.ListComputationRequest value) => value.writeToBuffer(),
|
||||
$0.ListComputationResponse.fromBuffer);
|
||||
static final _$delete = $grpc.ClientMethod<$0.DeleteComputationRequest, $0.DeleteComputationResponse>(
|
||||
'/api.ComputationService/Delete',
|
||||
($0.DeleteComputationRequest value) => value.writeToBuffer(),
|
||||
$0.DeleteComputationResponse.fromBuffer);
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.ComputationService')
|
||||
abstract class ComputationServiceBase extends $grpc.Service {
|
||||
$core.String get $name => 'api.ComputationService';
|
||||
|
||||
ComputationServiceBase() {
|
||||
$addMethod($grpc.ServiceMethod<$0.PutComputationRequest, $0.PutComputationResponse>(
|
||||
'Put',
|
||||
put_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.PutComputationRequest.fromBuffer(value),
|
||||
($0.PutComputationResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.GetComputationRequest, $0.GetComputationResponse>(
|
||||
'Get',
|
||||
get_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.GetComputationRequest.fromBuffer(value),
|
||||
($0.GetComputationResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.ListComputationRequest, $0.ListComputationResponse>(
|
||||
'List',
|
||||
list_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.ListComputationRequest.fromBuffer(value),
|
||||
($0.ListComputationResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.DeleteComputationRequest, $0.DeleteComputationResponse>(
|
||||
'Delete',
|
||||
delete_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.DeleteComputationRequest.fromBuffer(value),
|
||||
($0.DeleteComputationResponse value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$0.PutComputationResponse> put_Pre($grpc.ServiceCall $call, $async.Future<$0.PutComputationRequest> $request) async {
|
||||
return put($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.PutComputationResponse> put($grpc.ServiceCall call, $0.PutComputationRequest request);
|
||||
|
||||
$async.Future<$0.GetComputationResponse> get_Pre($grpc.ServiceCall $call, $async.Future<$0.GetComputationRequest> $request) async {
|
||||
return get($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.GetComputationResponse> get($grpc.ServiceCall call, $0.GetComputationRequest request);
|
||||
|
||||
$async.Future<$0.ListComputationResponse> list_Pre($grpc.ServiceCall $call, $async.Future<$0.ListComputationRequest> $request) async {
|
||||
return list($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.ListComputationResponse> list($grpc.ServiceCall call, $0.ListComputationRequest request);
|
||||
|
||||
$async.Future<$0.DeleteComputationResponse> delete_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteComputationRequest> $request) async {
|
||||
return delete($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.DeleteComputationResponse> delete($grpc.ServiceCall call, $0.DeleteComputationRequest request);
|
||||
|
||||
}
|
||||
@$pb.GrpcServiceName('api.MappingTableService')
|
||||
class MappingTableServiceClient extends $grpc.Client {
|
||||
/// The hostname for this service.
|
||||
static const $core.String defaultHost = '';
|
||||
|
||||
/// OAuth scopes needed for the client.
|
||||
static const $core.List<$core.String> oauthScopes = [
|
||||
'',
|
||||
];
|
||||
|
||||
MappingTableServiceClient(super.channel, {super.options, super.interceptors});
|
||||
|
||||
$grpc.ResponseFuture<$0.PutMappingTableResponse> put($0.PutMappingTableRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$put, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.GetMappingTableResponse> get($0.GetMappingTableRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$get, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.ListMappingTableResponse> list($0.ListMappingTableRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$list, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.DeleteMappingTableResponse> delete($0.DeleteMappingTableRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$delete, request, options: options);
|
||||
}
|
||||
|
||||
// method descriptors
|
||||
|
||||
static final _$put = $grpc.ClientMethod<$0.PutMappingTableRequest, $0.PutMappingTableResponse>(
|
||||
'/api.MappingTableService/Put',
|
||||
($0.PutMappingTableRequest value) => value.writeToBuffer(),
|
||||
$0.PutMappingTableResponse.fromBuffer);
|
||||
static final _$get = $grpc.ClientMethod<$0.GetMappingTableRequest, $0.GetMappingTableResponse>(
|
||||
'/api.MappingTableService/Get',
|
||||
($0.GetMappingTableRequest value) => value.writeToBuffer(),
|
||||
$0.GetMappingTableResponse.fromBuffer);
|
||||
static final _$list = $grpc.ClientMethod<$0.ListMappingTableRequest, $0.ListMappingTableResponse>(
|
||||
'/api.MappingTableService/List',
|
||||
($0.ListMappingTableRequest value) => value.writeToBuffer(),
|
||||
$0.ListMappingTableResponse.fromBuffer);
|
||||
static final _$delete = $grpc.ClientMethod<$0.DeleteMappingTableRequest, $0.DeleteMappingTableResponse>(
|
||||
'/api.MappingTableService/Delete',
|
||||
($0.DeleteMappingTableRequest value) => value.writeToBuffer(),
|
||||
$0.DeleteMappingTableResponse.fromBuffer);
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.MappingTableService')
|
||||
abstract class MappingTableServiceBase extends $grpc.Service {
|
||||
$core.String get $name => 'api.MappingTableService';
|
||||
|
||||
MappingTableServiceBase() {
|
||||
$addMethod($grpc.ServiceMethod<$0.PutMappingTableRequest, $0.PutMappingTableResponse>(
|
||||
'Put',
|
||||
put_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.PutMappingTableRequest.fromBuffer(value),
|
||||
($0.PutMappingTableResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.GetMappingTableRequest, $0.GetMappingTableResponse>(
|
||||
'Get',
|
||||
get_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.GetMappingTableRequest.fromBuffer(value),
|
||||
($0.GetMappingTableResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.ListMappingTableRequest, $0.ListMappingTableResponse>(
|
||||
'List',
|
||||
list_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.ListMappingTableRequest.fromBuffer(value),
|
||||
($0.ListMappingTableResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.DeleteMappingTableRequest, $0.DeleteMappingTableResponse>(
|
||||
'Delete',
|
||||
delete_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.DeleteMappingTableRequest.fromBuffer(value),
|
||||
($0.DeleteMappingTableResponse value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$0.PutMappingTableResponse> put_Pre($grpc.ServiceCall $call, $async.Future<$0.PutMappingTableRequest> $request) async {
|
||||
return put($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.PutMappingTableResponse> put($grpc.ServiceCall call, $0.PutMappingTableRequest request);
|
||||
|
||||
$async.Future<$0.GetMappingTableResponse> get_Pre($grpc.ServiceCall $call, $async.Future<$0.GetMappingTableRequest> $request) async {
|
||||
return get($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.GetMappingTableResponse> get($grpc.ServiceCall call, $0.GetMappingTableRequest request);
|
||||
|
||||
$async.Future<$0.ListMappingTableResponse> list_Pre($grpc.ServiceCall $call, $async.Future<$0.ListMappingTableRequest> $request) async {
|
||||
return list($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.ListMappingTableResponse> list($grpc.ServiceCall call, $0.ListMappingTableRequest request);
|
||||
|
||||
$async.Future<$0.DeleteMappingTableResponse> delete_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteMappingTableRequest> $request) async {
|
||||
return delete($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.DeleteMappingTableResponse> delete($grpc.ServiceCall call, $0.DeleteMappingTableRequest request);
|
||||
|
||||
}
|
||||
437
lib/ruleEngine_services.pbjson.dart
Normal file
437
lib/ruleEngine_services.pbjson.dart
Normal file
@@ -0,0 +1,437 @@
|
||||
// This is a generated file - do not edit.
|
||||
//
|
||||
// Generated from ruleEngine_services.proto.
|
||||
|
||||
// @dart = 3.3
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// ignore_for_file: constant_identifier_names
|
||||
// ignore_for_file: curly_braces_in_flow_control_structures
|
||||
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
|
||||
// ignore_for_file: non_constant_identifier_names, unused_import
|
||||
|
||||
import 'dart:convert' as $convert;
|
||||
import 'dart:core' as $core;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use putEngineRuleRequestDescriptor instead')
|
||||
const PutEngineRuleRequest$json = {
|
||||
'1': 'PutEngineRuleRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'Code', '3': 10, '4': 1, '5': 9, '8': {}, '10': 'Code'},
|
||||
{'1': 'Label', '3': 20, '4': 1, '5': 9, '10': 'Label'},
|
||||
{'1': 'ValidityType', '3': 30, '4': 1, '5': 14, '6': '.api.EngineRuleValidityType', '8': {}, '10': 'ValidityType'},
|
||||
{'1': 'ValidFrom', '3': 31, '4': 1, '5': 9, '8': {}, '10': 'ValidFrom'},
|
||||
{'1': 'ValidUntil', '3': 32, '4': 1, '5': 9, '8': {}, '10': 'ValidUntil'},
|
||||
{'1': 'Entity', '3': 40, '4': 1, '5': 14, '6': '.api.EntityType', '10': 'Entity'},
|
||||
{'1': 'ScheduledTrigger', '3': 50, '4': 1, '5': 11, '6': '.api.EngineRuleScheduledTrigger', '9': 0, '10': 'ScheduledTrigger'},
|
||||
{'1': 'EventTrigger', '3': 51, '4': 1, '5': 11, '6': '.api.EngineRuleEventTrigger', '9': 0, '10': 'EventTrigger'},
|
||||
{'1': 'MilestoneTrigger', '3': 52, '4': 1, '5': 11, '6': '.api.EngineRuleMilestoneTrigger', '9': 0, '10': 'MilestoneTrigger'},
|
||||
{'1': 'Conditions', '3': 60, '4': 3, '5': 11, '6': '.api.EngineRuleCondition', '10': 'Conditions'},
|
||||
{'1': 'Actions', '3': 70, '4': 3, '5': 11, '6': '.api.EngineRuleAction', '8': {}, '10': 'Actions'},
|
||||
{'1': 'IsActive', '3': 80, '4': 1, '5': 8, '10': 'IsActive'},
|
||||
],
|
||||
'7': {},
|
||||
'8': [
|
||||
{'1': 'Trigger'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `PutEngineRuleRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List putEngineRuleRequestDescriptor = $convert.base64Decode(
|
||||
'ChRQdXRFbmdpbmVSdWxlUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdFByb2'
|
||||
'plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEkAKBENvZGUYCiABKAlCLJJBEooBD15bQS1a'
|
||||
'YS16MC05X10rJLqBARNyETIPXltBLVphLXowLTlfXSskUgRDb2RlEhQKBUxhYmVsGBQgASgJUg'
|
||||
'VMYWJlbBJMCgxWYWxpZGl0eVR5cGUYHiABKA4yGy5hcGkuRW5naW5lUnVsZVZhbGlkaXR5VHlw'
|
||||
'ZUILuoEBB4IBBBABIABSDFZhbGlkaXR5VHlwZRIqCglWYWxpZEZyb20YHyABKAlCDLqBAQhyBt'
|
||||
'ABAfABAVIJVmFsaWRGcm9tEiwKClZhbGlkVW50aWwYICABKAlCDLqBAQhyBtABAfABAVIKVmFs'
|
||||
'aWRVbnRpbBInCgZFbnRpdHkYKCABKA4yDy5hcGkuRW50aXR5VHlwZVIGRW50aXR5Ek0KEFNjaG'
|
||||
'VkdWxlZFRyaWdnZXIYMiABKAsyHy5hcGkuRW5naW5lUnVsZVNjaGVkdWxlZFRyaWdnZXJIAFIQ'
|
||||
'U2NoZWR1bGVkVHJpZ2dlchJBCgxFdmVudFRyaWdnZXIYMyABKAsyGy5hcGkuRW5naW5lUnVsZU'
|
||||
'V2ZW50VHJpZ2dlckgAUgxFdmVudFRyaWdnZXISTQoQTWlsZXN0b25lVHJpZ2dlchg0IAEoCzIf'
|
||||
'LmFwaS5FbmdpbmVSdWxlTWlsZXN0b25lVHJpZ2dlckgAUhBNaWxlc3RvbmVUcmlnZ2VyEjgKCk'
|
||||
'NvbmRpdGlvbnMYPCADKAsyGC5hcGkuRW5naW5lUnVsZUNvbmRpdGlvblIKQ29uZGl0aW9ucxI6'
|
||||
'CgdBY3Rpb25zGEYgAygLMhUuYXBpLkVuZ2luZVJ1bGVBY3Rpb25CCbqBAQWSAQIIAVIHQWN0aW'
|
||||
'9ucxIaCghJc0FjdGl2ZRhQIAEoCFIISXNBY3RpdmU6KZJBJgok0gEGSGVhZGVy0gEEQ29kZdIB'
|
||||
'B0FjdGlvbnPSAQdUcmlnZ2VyQgkKB1RyaWdnZXI=');
|
||||
|
||||
@$core.Deprecated('Use putEngineRuleResponseDescriptor instead')
|
||||
const PutEngineRuleResponse$json = {
|
||||
'1': 'PutEngineRuleResponse',
|
||||
'2': [
|
||||
{'1': 'EngineRule', '3': 1, '4': 1, '5': 11, '6': '.api.EngineRule', '8': {}, '10': 'EngineRule'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `PutEngineRuleResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List putEngineRuleResponseDescriptor = $convert.base64Decode(
|
||||
'ChVQdXRFbmdpbmVSdWxlUmVzcG9uc2USOgoKRW5naW5lUnVsZRgBIAEoCzIPLmFwaS5Fbmdpbm'
|
||||
'VSdWxlQgm6gQEFigECEAFSCkVuZ2luZVJ1bGU=');
|
||||
|
||||
@$core.Deprecated('Use getEngineRuleRequestDescriptor instead')
|
||||
const GetEngineRuleRequest$json = {
|
||||
'1': 'GetEngineRuleRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'Code', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Code'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `GetEngineRuleRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getEngineRuleRequestDescriptor = $convert.base64Decode(
|
||||
'ChRHZXRFbmdpbmVSdWxlUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdFByb2'
|
||||
'plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEhwKBENvZGUYAiABKAlCCLqBAQRyAhABUgRD'
|
||||
'b2RlOhWSQRIKENIBBkhlYWRlctIBBENvZGU=');
|
||||
|
||||
@$core.Deprecated('Use getEngineRuleResponseDescriptor instead')
|
||||
const GetEngineRuleResponse$json = {
|
||||
'1': 'GetEngineRuleResponse',
|
||||
'2': [
|
||||
{'1': 'EngineRule', '3': 1, '4': 1, '5': 11, '6': '.api.EngineRule', '8': {}, '10': 'EngineRule'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GetEngineRuleResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getEngineRuleResponseDescriptor = $convert.base64Decode(
|
||||
'ChVHZXRFbmdpbmVSdWxlUmVzcG9uc2USOgoKRW5naW5lUnVsZRgBIAEoCzIPLmFwaS5Fbmdpbm'
|
||||
'VSdWxlQgm6gQEFigECEAFSCkVuZ2luZVJ1bGU=');
|
||||
|
||||
@$core.Deprecated('Use listEngineRuleRequestDescriptor instead')
|
||||
const ListEngineRuleRequest$json = {
|
||||
'1': 'ListEngineRuleRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'Entity', '3': 2, '4': 1, '5': 14, '6': '.api.EntityType', '10': 'Entity'},
|
||||
{'1': 'TriggerType', '3': 3, '4': 1, '5': 14, '6': '.api.EngineRuleTriggerType', '10': 'TriggerType'},
|
||||
{'1': 'IsCurrentlyValid', '3': 4, '4': 1, '5': 8, '10': 'IsCurrentlyValid'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ListEngineRuleRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listEngineRuleRequestDescriptor = $convert.base64Decode(
|
||||
'ChVMaXN0RW5naW5lUnVsZVJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3RQcm'
|
||||
'9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchInCgZFbnRpdHkYAiABKA4yDy5hcGkuRW50'
|
||||
'aXR5VHlwZVIGRW50aXR5EjwKC1RyaWdnZXJUeXBlGAMgASgOMhouYXBpLkVuZ2luZVJ1bGVUcm'
|
||||
'lnZ2VyVHlwZVILVHJpZ2dlclR5cGUSKgoQSXNDdXJyZW50bHlWYWxpZBgEIAEoCFIQSXNDdXJy'
|
||||
'ZW50bHlWYWxpZDoOkkELCgnSAQZIZWFkZXI=');
|
||||
|
||||
@$core.Deprecated('Use listEngineRuleResponseDescriptor instead')
|
||||
const ListEngineRuleResponse$json = {
|
||||
'1': 'ListEngineRuleResponse',
|
||||
'2': [
|
||||
{'1': 'EngineRules', '3': 1, '4': 3, '5': 11, '6': '.api.EngineRule', '10': 'EngineRules'},
|
||||
{'1': 'DebugUntil', '3': 2, '4': 1, '5': 3, '10': 'DebugUntil'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ListEngineRuleResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listEngineRuleResponseDescriptor = $convert.base64Decode(
|
||||
'ChZMaXN0RW5naW5lUnVsZVJlc3BvbnNlEjEKC0VuZ2luZVJ1bGVzGAEgAygLMg8uYXBpLkVuZ2'
|
||||
'luZVJ1bGVSC0VuZ2luZVJ1bGVzEh4KCkRlYnVnVW50aWwYAiABKANSCkRlYnVnVW50aWw=');
|
||||
|
||||
@$core.Deprecated('Use deleteEngineRuleRequestDescriptor instead')
|
||||
const DeleteEngineRuleRequest$json = {
|
||||
'1': 'DeleteEngineRuleRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'Code', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Code'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteEngineRuleRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteEngineRuleRequestDescriptor = $convert.base64Decode(
|
||||
'ChdEZWxldGVFbmdpbmVSdWxlUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdF'
|
||||
'Byb2plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEhwKBENvZGUYAiABKAlCCLqBAQRyAhAB'
|
||||
'UgRDb2RlOhWSQRIKENIBBkhlYWRlctIBBENvZGU=');
|
||||
|
||||
@$core.Deprecated('Use deleteEngineRuleResponseDescriptor instead')
|
||||
const DeleteEngineRuleResponse$json = {
|
||||
'1': 'DeleteEngineRuleResponse',
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteEngineRuleResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteEngineRuleResponseDescriptor = $convert.base64Decode(
|
||||
'ChhEZWxldGVFbmdpbmVSdWxlUmVzcG9uc2U=');
|
||||
|
||||
@$core.Deprecated('Use toggleDebugOnRequestDescriptor instead')
|
||||
const ToggleDebugOnRequest$json = {
|
||||
'1': 'ToggleDebugOnRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ToggleDebugOnRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List toggleDebugOnRequestDescriptor = $convert.base64Decode(
|
||||
'ChRUb2dnbGVEZWJ1Z09uUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdFByb2'
|
||||
'plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyOg6SQQsKCdIBBkhlYWRlcg==');
|
||||
|
||||
@$core.Deprecated('Use toggleDebugOnResponseDescriptor instead')
|
||||
const ToggleDebugOnResponse$json = {
|
||||
'1': 'ToggleDebugOnResponse',
|
||||
'2': [
|
||||
{'1': 'DebugUntil', '3': 1, '4': 1, '5': 3, '10': 'DebugUntil'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ToggleDebugOnResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List toggleDebugOnResponseDescriptor = $convert.base64Decode(
|
||||
'ChVUb2dnbGVEZWJ1Z09uUmVzcG9uc2USHgoKRGVidWdVbnRpbBgBIAEoA1IKRGVidWdVbnRpbA'
|
||||
'==');
|
||||
|
||||
@$core.Deprecated('Use putComputationRequestDescriptor instead')
|
||||
const PutComputationRequest$json = {
|
||||
'1': 'PutComputationRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'ID', '3': 2, '4': 1, '5': 9, '10': 'ID'},
|
||||
{'1': 'Label', '3': 20, '4': 1, '5': 9, '8': {}, '10': 'Label'},
|
||||
{'1': 'Entity', '3': 30, '4': 1, '5': 14, '6': '.api.EntityType', '8': {}, '10': 'Entity'},
|
||||
{'1': 'DateDuration', '3': 40, '4': 1, '5': 11, '6': '.api.ComputationDateDuration', '9': 0, '10': 'DateDuration'},
|
||||
{'1': 'DueDate', '3': 41, '4': 1, '5': 11, '6': '.api.ComputationDueDate', '9': 0, '10': 'DueDate'},
|
||||
{'1': 'StatusDuration', '3': 42, '4': 1, '5': 11, '6': '.api.ComputationStatusDuration', '9': 0, '10': 'StatusDuration'},
|
||||
{'1': 'CustomFunction', '3': 43, '4': 1, '5': 11, '6': '.api.ComputationCustomFunction', '9': 0, '10': 'CustomFunction'},
|
||||
],
|
||||
'7': {},
|
||||
'8': [
|
||||
{'1': 'Type'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `PutComputationRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List putComputationRequestDescriptor = $convert.base64Decode(
|
||||
'ChVQdXRDb21wdXRhdGlvblJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3RQcm'
|
||||
'9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchIOCgJJRBgCIAEoCVICSUQSHgoFTGFiZWwY'
|
||||
'FCABKAlCCLqBAQRyAhABUgVMYWJlbBI0CgZFbnRpdHkYHiABKA4yDy5hcGkuRW50aXR5VHlwZU'
|
||||
'ILuoEBB4IBBBABIABSBkVudGl0eRJCCgxEYXRlRHVyYXRpb24YKCABKAsyHC5hcGkuQ29tcHV0'
|
||||
'YXRpb25EYXRlRHVyYXRpb25IAFIMRGF0ZUR1cmF0aW9uEjMKB0R1ZURhdGUYKSABKAsyFy5hcG'
|
||||
'kuQ29tcHV0YXRpb25EdWVEYXRlSABSB0R1ZURhdGUSSAoOU3RhdHVzRHVyYXRpb24YKiABKAsy'
|
||||
'Hi5hcGkuQ29tcHV0YXRpb25TdGF0dXNEdXJhdGlvbkgAUg5TdGF0dXNEdXJhdGlvbhJICg5DdX'
|
||||
'N0b21GdW5jdGlvbhgrIAEoCzIeLmFwaS5Db21wdXRhdGlvbkN1c3RvbUZ1bmN0aW9uSABSDkN1'
|
||||
'c3RvbUZ1bmN0aW9uOiaSQSMKIdIBBkhlYWRlctIBBUxhYmVs0gEGRW50aXR50gEEVHlwZUIGCg'
|
||||
'RUeXBl');
|
||||
|
||||
@$core.Deprecated('Use putComputationResponseDescriptor instead')
|
||||
const PutComputationResponse$json = {
|
||||
'1': 'PutComputationResponse',
|
||||
'2': [
|
||||
{'1': 'Computation', '3': 1, '4': 1, '5': 11, '6': '.api.Computation', '8': {}, '10': 'Computation'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `PutComputationResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List putComputationResponseDescriptor = $convert.base64Decode(
|
||||
'ChZQdXRDb21wdXRhdGlvblJlc3BvbnNlEj0KC0NvbXB1dGF0aW9uGAEgASgLMhAuYXBpLkNvbX'
|
||||
'B1dGF0aW9uQgm6gQEFigECEAFSC0NvbXB1dGF0aW9u');
|
||||
|
||||
@$core.Deprecated('Use getComputationRequestDescriptor instead')
|
||||
const GetComputationRequest$json = {
|
||||
'1': 'GetComputationRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'ID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `GetComputationRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getComputationRequestDescriptor = $convert.base64Decode(
|
||||
'ChVHZXRDb21wdXRhdGlvblJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3RQcm'
|
||||
'9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchIYCgJJRBgCIAEoCUIIuoEBBHICEAFSAklE'
|
||||
'OhOSQRAKDtIBBkhlYWRlctIBAklE');
|
||||
|
||||
@$core.Deprecated('Use getComputationResponseDescriptor instead')
|
||||
const GetComputationResponse$json = {
|
||||
'1': 'GetComputationResponse',
|
||||
'2': [
|
||||
{'1': 'Computation', '3': 1, '4': 1, '5': 11, '6': '.api.Computation', '8': {}, '10': 'Computation'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GetComputationResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getComputationResponseDescriptor = $convert.base64Decode(
|
||||
'ChZHZXRDb21wdXRhdGlvblJlc3BvbnNlEj0KC0NvbXB1dGF0aW9uGAEgASgLMhAuYXBpLkNvbX'
|
||||
'B1dGF0aW9uQgm6gQEFigECEAFSC0NvbXB1dGF0aW9u');
|
||||
|
||||
@$core.Deprecated('Use listComputationRequestDescriptor instead')
|
||||
const ListComputationRequest$json = {
|
||||
'1': 'ListComputationRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'Entity', '3': 2, '4': 1, '5': 14, '6': '.api.EntityType', '10': 'Entity'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ListComputationRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listComputationRequestDescriptor = $convert.base64Decode(
|
||||
'ChZMaXN0Q29tcHV0YXRpb25SZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UH'
|
||||
'JvamVjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISJwoGRW50aXR5GAIgASgOMg8uYXBpLkVu'
|
||||
'dGl0eVR5cGVSBkVudGl0eToOkkELCgnSAQZIZWFkZXI=');
|
||||
|
||||
@$core.Deprecated('Use listComputationResponseDescriptor instead')
|
||||
const ListComputationResponse$json = {
|
||||
'1': 'ListComputationResponse',
|
||||
'2': [
|
||||
{'1': 'Computations', '3': 1, '4': 3, '5': 11, '6': '.api.Computation', '10': 'Computations'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ListComputationResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listComputationResponseDescriptor = $convert.base64Decode(
|
||||
'ChdMaXN0Q29tcHV0YXRpb25SZXNwb25zZRI0CgxDb21wdXRhdGlvbnMYASADKAsyEC5hcGkuQ2'
|
||||
'9tcHV0YXRpb25SDENvbXB1dGF0aW9ucw==');
|
||||
|
||||
@$core.Deprecated('Use deleteComputationRequestDescriptor instead')
|
||||
const DeleteComputationRequest$json = {
|
||||
'1': 'DeleteComputationRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'ID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteComputationRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteComputationRequestDescriptor = $convert.base64Decode(
|
||||
'ChhEZWxldGVDb21wdXRhdGlvblJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3'
|
||||
'RQcm9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchIYCgJJRBgCIAEoCUIIuoEBBHICEAFS'
|
||||
'AklEOhOSQRAKDtIBBkhlYWRlctIBAklE');
|
||||
|
||||
@$core.Deprecated('Use deleteComputationResponseDescriptor instead')
|
||||
const DeleteComputationResponse$json = {
|
||||
'1': 'DeleteComputationResponse',
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteComputationResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteComputationResponseDescriptor = $convert.base64Decode(
|
||||
'ChlEZWxldGVDb21wdXRhdGlvblJlc3BvbnNl');
|
||||
|
||||
@$core.Deprecated('Use putMappingTableRequestDescriptor instead')
|
||||
const PutMappingTableRequest$json = {
|
||||
'1': 'PutMappingTableRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'ID', '3': 2, '4': 1, '5': 9, '10': 'ID'},
|
||||
{'1': 'Label', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'Label'},
|
||||
{'1': 'Entity', '3': 4, '4': 1, '5': 14, '6': '.api.EntityType', '8': {}, '10': 'Entity'},
|
||||
{'1': 'InputFields', '3': 5, '4': 3, '5': 11, '6': '.api.MappingTableInputDescription', '8': {}, '10': 'InputFields'},
|
||||
{'1': 'OutputField', '3': 6, '4': 1, '5': 11, '6': '.api.MappingTableOutputField', '8': {}, '10': 'OutputField'},
|
||||
{'1': 'Entries', '3': 7, '4': 3, '5': 11, '6': '.api.MappingTableEntry', '8': {}, '10': 'Entries'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `PutMappingTableRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List putMappingTableRequestDescriptor = $convert.base64Decode(
|
||||
'ChZQdXRNYXBwaW5nVGFibGVSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UH'
|
||||
'JvamVjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISDgoCSUQYAiABKAlSAklEEh4KBUxhYmVs'
|
||||
'GAMgASgJQgi6gQEEcgIQAVIFTGFiZWwSNAoGRW50aXR5GAQgASgOMg8uYXBpLkVudGl0eVR5cG'
|
||||
'VCC7qBAQeCAQQQASAAUgZFbnRpdHkSTgoLSW5wdXRGaWVsZHMYBSADKAsyIS5hcGkuTWFwcGlu'
|
||||
'Z1RhYmxlSW5wdXREZXNjcmlwdGlvbkIJuoEBBZIBAggBUgtJbnB1dEZpZWxkcxJJCgtPdXRwdX'
|
||||
'RGaWVsZBgGIAEoCzIcLmFwaS5NYXBwaW5nVGFibGVPdXRwdXRGaWVsZEIJuoEBBYoBAhABUgtP'
|
||||
'dXRwdXRGaWVsZBI7CgdFbnRyaWVzGAcgAygLMhYuYXBpLk1hcHBpbmdUYWJsZUVudHJ5Qgm6gQ'
|
||||
'EFkgECCAFSB0VudHJpZXM6RZJBQgpA0gEGSGVhZGVy0gEFTGFiZWzSAQtJbnB1dEZpZWxkc9IB'
|
||||
'C091dHB1dEZpZWxk0gEHRW50cmllc9IBBkVudGl0eQ==');
|
||||
|
||||
@$core.Deprecated('Use putMappingTableResponseDescriptor instead')
|
||||
const PutMappingTableResponse$json = {
|
||||
'1': 'PutMappingTableResponse',
|
||||
'2': [
|
||||
{'1': 'MappingTable', '3': 1, '4': 1, '5': 11, '6': '.api.MappingTable', '8': {}, '10': 'MappingTable'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `PutMappingTableResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List putMappingTableResponseDescriptor = $convert.base64Decode(
|
||||
'ChdQdXRNYXBwaW5nVGFibGVSZXNwb25zZRJACgxNYXBwaW5nVGFibGUYASABKAsyES5hcGkuTW'
|
||||
'FwcGluZ1RhYmxlQgm6gQEFigECEAFSDE1hcHBpbmdUYWJsZQ==');
|
||||
|
||||
@$core.Deprecated('Use getMappingTableRequestDescriptor instead')
|
||||
const GetMappingTableRequest$json = {
|
||||
'1': 'GetMappingTableRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'ID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `GetMappingTableRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getMappingTableRequestDescriptor = $convert.base64Decode(
|
||||
'ChZHZXRNYXBwaW5nVGFibGVSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UH'
|
||||
'JvamVjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISGAoCSUQYAiABKAlCCLqBAQRyAhABUgJJ'
|
||||
'RDoTkkEQCg7SAQZIZWFkZXLSAQJJRA==');
|
||||
|
||||
@$core.Deprecated('Use getMappingTableResponseDescriptor instead')
|
||||
const GetMappingTableResponse$json = {
|
||||
'1': 'GetMappingTableResponse',
|
||||
'2': [
|
||||
{'1': 'MappingTable', '3': 1, '4': 1, '5': 11, '6': '.api.MappingTable', '8': {}, '10': 'MappingTable'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GetMappingTableResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getMappingTableResponseDescriptor = $convert.base64Decode(
|
||||
'ChdHZXRNYXBwaW5nVGFibGVSZXNwb25zZRJACgxNYXBwaW5nVGFibGUYASABKAsyES5hcGkuTW'
|
||||
'FwcGluZ1RhYmxlQgm6gQEFigECEAFSDE1hcHBpbmdUYWJsZQ==');
|
||||
|
||||
@$core.Deprecated('Use listMappingTableRequestDescriptor instead')
|
||||
const ListMappingTableRequest$json = {
|
||||
'1': 'ListMappingTableRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'Entity', '3': 2, '4': 1, '5': 14, '6': '.api.EntityType', '10': 'Entity'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ListMappingTableRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listMappingTableRequestDescriptor = $convert.base64Decode(
|
||||
'ChdMaXN0TWFwcGluZ1RhYmxlUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdF'
|
||||
'Byb2plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEicKBkVudGl0eRgCIAEoDjIPLmFwaS5F'
|
||||
'bnRpdHlUeXBlUgZFbnRpdHk6DpJBCwoJ0gEGSGVhZGVy');
|
||||
|
||||
@$core.Deprecated('Use listMappingTableResponseDescriptor instead')
|
||||
const ListMappingTableResponse$json = {
|
||||
'1': 'ListMappingTableResponse',
|
||||
'2': [
|
||||
{'1': 'MappingTables', '3': 1, '4': 3, '5': 11, '6': '.api.MappingTable', '10': 'MappingTables'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ListMappingTableResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listMappingTableResponseDescriptor = $convert.base64Decode(
|
||||
'ChhMaXN0TWFwcGluZ1RhYmxlUmVzcG9uc2USNwoNTWFwcGluZ1RhYmxlcxgBIAMoCzIRLmFwaS'
|
||||
'5NYXBwaW5nVGFibGVSDU1hcHBpbmdUYWJsZXM=');
|
||||
|
||||
@$core.Deprecated('Use deleteMappingTableRequestDescriptor instead')
|
||||
const DeleteMappingTableRequest$json = {
|
||||
'1': 'DeleteMappingTableRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'ID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteMappingTableRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteMappingTableRequestDescriptor = $convert.base64Decode(
|
||||
'ChlEZWxldGVNYXBwaW5nVGFibGVSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZX'
|
||||
'N0UHJvamVjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISGAoCSUQYAiABKAlCCLqBAQRyAhAB'
|
||||
'UgJJRDoTkkEQCg7SAQZIZWFkZXLSAQJJRA==');
|
||||
|
||||
@$core.Deprecated('Use deleteMappingTableResponseDescriptor instead')
|
||||
const DeleteMappingTableResponse$json = {
|
||||
'1': 'DeleteMappingTableResponse',
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteMappingTableResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteMappingTableResponseDescriptor = $convert.base64Decode(
|
||||
'ChpEZWxldGVNYXBwaW5nVGFibGVSZXNwb25zZQ==');
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: dart_core_sdk
|
||||
description: dart libs from core model proto files
|
||||
version: 1.15.0-SNAPSHOT-260819082709
|
||||
version: 1.15.0-SNAPSHOT-260819083604
|
||||
homepage: ''
|
||||
publish_to: ''
|
||||
repository: ''
|
||||
|
||||
Reference in New Issue
Block a user