feat: adjust rate limits for tariffs in Yandex Market API

This commit is contained in:
2025-08-19 15:26:06 +03:00
parent b4e55197be
commit 434b53361b
2 changed files with 2 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ type RateLimit struct {
// Path rate limits for Yandex Market API
var PathLimits = map[string]RateLimit{
"/tariffs/calculate": {Count: 100, TimeDelta: time.Minute},
"/tariffs/calculate": {Count: 95, TimeDelta: time.Minute},
"/campaigns": {Count: 300, TimeDelta: time.Minute},
"/orders": {Count: 1000, TimeDelta: time.Minute},
}