From bb12562cf04fba91019135ff7f0424cc6dc0a4fc Mon Sep 17 00:00:00 2001 From: Will Don Date: Thu, 2 Jun 2016 07:03:52 -0700 Subject: [PATCH] Fix wssId to have type number (#9464) This fix is in accordance to docs here: https://msdn.microsoft.com/en-us/library/office/dn312519.aspx and here: https://msdn.microsoft.com/en-us/library/microsoft.sharepoint.client.taxonomy.taxonomyfieldvalue.wssid.aspx --- sharepoint/SharePoint.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sharepoint/SharePoint.d.ts b/sharepoint/SharePoint.d.ts index 2f3fa1634f..c2a8353304 100644 --- a/sharepoint/SharePoint.d.ts +++ b/sharepoint/SharePoint.d.ts @@ -6946,8 +6946,8 @@ declare namespace SP { set_label(value: string): void; get_termGuid(): SP.Guid; set_termGuid(value: SP.Guid): void; - get_wssId(): SP.Guid; - set_wssId(value: SP.Guid): void; + get_wssId(): number; + set_wssId(value: number): void; } export class MobileTaxonomyField extends SP.ClientObject {