This is an automated email from the ASF dual-hosted git repository. ocket8888 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/trafficcontrol-trafficops-types.git
commit eec239477b1ad0ee437c204a932b6a3d970100c9 Author: ocket8888 <[email protected]> AuthorDate: Fri Jan 27 13:32:59 2023 -0700 Fix incorrect type on DSes --- src/delivery.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/delivery.service.ts b/src/delivery.service.ts index e56959b..bb40cb9 100644 --- a/src/delivery.service.ts +++ b/src/delivery.service.ts @@ -178,7 +178,7 @@ interface RequestDeliveryServiceBase { /** Whether or not the Delivery Service is actively routed. */ active: boolean; /** Whether or not anonymization services are blocked. */ - anonymousBlockingEnabled?: number | null; + anonymousBlockingEnabled?: boolean | null; /** * @deprecated This field no longer works and is subject to removal in the * future.
