From 17eb85b296129e9d0c117de1ecb1e3ce9d07ea5c Mon Sep 17 00:00:00 2001 From: SomaticIT Date: Fri, 10 Oct 2014 19:37:19 +0200 Subject: [PATCH 1/2] Fix implementation of QueueMessageResult --- node-azure/azure.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/node-azure/azure.d.ts b/node-azure/azure.d.ts index cb759f19e..06eb80831 100644 --- a/node-azure/azure.d.ts +++ b/node-azure/azure.d.ts @@ -945,6 +945,11 @@ declare module "azure" { export class QueueMessageResult { queue: string; + insertiontime: string; + expirationtime: string; + timenextvisible: string; + messagetext: string; + dequeuecount: string; messageid: string; popreceipt: string; metadata: StorageMetadata; From 0de8a1c4c4ab902f16ba418263600ca908d8b2ad Mon Sep 17 00:00:00 2001 From: SomaticIT Date: Fri, 10 Oct 2014 23:26:33 +0200 Subject: [PATCH 2/2] Fix some issues related to Date which are not transformed by the SDK --- node-azure/azure.d.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/node-azure/azure.d.ts b/node-azure/azure.d.ts index 06eb80831..5328dd937 100644 --- a/node-azure/azure.d.ts +++ b/node-azure/azure.d.ts @@ -844,7 +844,7 @@ declare module "azure" { container: string; etag: string; - lastModified: Date; + lastModified: string; contentType: string; contentEncoding: string; contentLanguage: string; @@ -894,7 +894,7 @@ declare module "azure" { publicAccessLevel: string; etag: string; - lastModified: Date; + lastModified: string; leaseStatus: string; leaseDuration: string; leaseState: string; @@ -916,15 +916,15 @@ declare module "azure" { container: string; blob: string; id: string; - time: Date; + time: string; etag: string; - lastModified: Date; + lastModified: string; constructor(); constructor(container: string); constructor(container: string, blob: string); constructor(container: string, blob: string, id: string); - constructor(container: string, blob: string, id: string, time: Date); + constructor(container: string, blob: string, id: string, time: string); getPropertiesFromHeaders(header: any): void; }