@revxui/api-clients-ts 3.0.0-beta02-03 → 3.0.0-beta02-05
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/fesm2022/revxui-api-clients-ts.mjs.map +1 -1
- package/index.d.ts +4 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3083,8 +3083,8 @@ interface MetaRuleDto {
|
|
|
3083
3083
|
filterType?: MetaRuleDto.FilterTypeEnum;
|
|
3084
3084
|
valueType?: MetaRuleDto.ValueTypeEnum;
|
|
3085
3085
|
active?: boolean;
|
|
3086
|
-
ruleOperators?:
|
|
3087
|
-
ruleValues?:
|
|
3086
|
+
ruleOperators?: Array<RuleOperatorDto>;
|
|
3087
|
+
ruleValues?: Array<RuleValueDto>;
|
|
3088
3088
|
}
|
|
3089
3089
|
declare namespace MetaRuleDto {
|
|
3090
3090
|
const FilterTypeEnum: {
|
|
@@ -3964,7 +3964,7 @@ interface AuditDetails {
|
|
|
3964
3964
|
entity_type?: string;
|
|
3965
3965
|
entity_id?: number;
|
|
3966
3966
|
entity_name?: string;
|
|
3967
|
-
changes?:
|
|
3967
|
+
changes?: Array<AuditChange>;
|
|
3968
3968
|
}
|
|
3969
3969
|
|
|
3970
3970
|
/**
|
|
@@ -17176,7 +17176,7 @@ interface StrategyDTO {
|
|
|
17176
17176
|
fcapInterval?: number;
|
|
17177
17177
|
fcapFrequency?: number;
|
|
17178
17178
|
isNative?: boolean;
|
|
17179
|
-
connectionTypes?:
|
|
17179
|
+
connectionTypes?: Array<StrategyDTO.ConnectionTypesEnum>;
|
|
17180
17180
|
placements?: Array<BaseModel>;
|
|
17181
17181
|
budgetBy?: number;
|
|
17182
17182
|
pixels?: Array<BaseModel>;
|