You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by oc...@apache.org on 2023/01/25 15:32:07 UTC

[trafficcontrol-trafficops-types] 02/10: Update DSRs

This is an automated email from the ASF dual-hosted git repository.

ocket8888 pushed a commit to branch 4.x
in repository https://gitbox.apache.org/repos/asf/trafficcontrol-trafficops-types.git

commit 8a1ce7604b5e649b7f751e066a6ec4595138325b
Author: ocket8888 <oc...@apache.org>
AuthorDate: Wed Nov 23 18:49:39 2022 -0700

    Update DSRs
---
 src/delivery.service.request.ts | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/src/delivery.service.request.ts b/src/delivery.service.request.ts
index c60221d..e83c158 100644
--- a/src/delivery.service.request.ts
+++ b/src/delivery.service.request.ts
@@ -137,7 +137,12 @@ export type DeliveryServiceRequest = ResponseDeliveryServiceRequest | RequestDel
  * Both an undefined value and `null` mean "remove the current assignee".
  */
 export interface DeliveryServiceAssignmentChangeRequest {
-	assigneeId?: number | null;
+	assignee?: string | null | undefined;
+	/**
+	 * In the event that `assignee` and `assigneeId` identify different users,
+	 * the `assigneeId` will take precedence.
+	 */
+	assigneeId?: number | null | undefined;
 }
 
 /**