Skip to content

Commit 8759835

Browse files
committed
⬆️ Update erpc types
1 parent 576e301 commit 8759835

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/generatedTypes/erpcTypes.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -145,11 +145,11 @@ export interface RetryPolicyConfig {
145145
jitter: string;
146146
}
147147
export interface CircuitBreakerPolicyConfig {
148-
failureThresholdCount: number /* int */;
149-
failureThresholdCapacity: number /* int */;
148+
failureThresholdCount: number /* uint */;
149+
failureThresholdCapacity: number /* uint */;
150150
halfOpenAfter: string;
151-
successThresholdCount: number /* int */;
152-
successThresholdCapacity: number /* int */;
151+
successThresholdCount: number /* uint */;
152+
successThresholdCapacity: number /* uint */;
153153
}
154154
export interface TimeoutPolicyConfig {
155155
duration: string;
@@ -167,7 +167,7 @@ export interface RateLimitBudgetConfig {
167167
}
168168
export interface RateLimitRuleConfig {
169169
method: string;
170-
maxCount: number /* int */;
170+
maxCount: number /* uint */;
171171
period: string;
172172
waitTime: string;
173173
}

0 commit comments

Comments
 (0)