[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-microsoft-azure-storage-queue-ts":3,"mdc--759h43-key":45,"related-org-microsoft-azure-storage-queue-ts":8924,"related-repo-microsoft-azure-storage-queue-ts":9113},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":28,"repoUrl":29,"updatedAt":30,"license":31,"forks":32,"topics":33,"repo":40,"sourceUrl":43,"mdContent":44},"azure-storage-queue-ts","manage message queue operations with TypeScript","Azure Queue Storage JavaScript\u002FTypeScript SDK (@azure\u002Fstorage-queue) for message queue operations. Use for sending, receiving, peeking, and deleting messages in queues. Supports visibility timeout, message encoding, and batch operations. Triggers: \"queue storage\", \"@azure\u002Fstorage-queue\", \"QueueServiceClient\", \"QueueClient\", \"send message\", \"receive message\", \"dequeue\", \"visibility timeout\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"microsoft","Microsoft","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fmicrosoft.png",[12,16,19,22,25],{"name":13,"slug":14,"type":15},"Azure","azure","tag",{"name":17,"slug":18,"type":15},"Node.js","node-js",{"name":20,"slug":21,"type":15},"TypeScript","typescript",{"name":23,"slug":24,"type":15},"Messaging","messaging",{"name":26,"slug":27,"type":15},"Storage","storage",2804,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fskills","2026-05-13T06:14:30.618528","MIT",315,[34,35,14,36,37,38,39],"agent-skills","agents","foundry","mcp","sdk","skills",{"repoUrl":29,"stars":28,"forks":32,"topics":41,"description":42},[34,35,14,36,37,38,39],"Skills, MCP servers, Custom Agents, Agents.md for SDKs to ground Coding Agents","https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fskills\u002Ftree\u002FHEAD\u002F.github\u002Fplugins\u002Fazure-sdk-typescript\u002Fskills\u002Fazure-storage-queue-ts","---\nname: azure-storage-queue-ts\ndescription: |\n  Azure Queue Storage JavaScript\u002FTypeScript SDK (@azure\u002Fstorage-queue) for message queue operations. Use for sending, receiving, peeking, and deleting messages in queues. Supports visibility timeout, message encoding, and batch operations. Triggers: \"queue storage\", \"@azure\u002Fstorage-queue\", \"QueueServiceClient\", \"QueueClient\", \"send message\", \"receive message\", \"dequeue\", \"visibility timeout\".\nlicense: MIT\nmetadata:\n  author: Microsoft\n  version: \"1.0.0\"\n  package: '@azure\u002Fstorage-queue'\n---\n\n# @azure\u002Fstorage-queue (TypeScript\u002FJavaScript)\n\nSDK for Azure Queue Storage operations — send, receive, peek, and manage messages in queues.\n\n## Installation\n\n```bash\nnpm install @azure\u002Fstorage-queue @azure\u002Fidentity\n```\n\n**Current Version**: 12.x  \n**Node.js**: >= 18.0.0\n\n## Environment Variables\n\n```bash\nAZURE_STORAGE_ACCOUNT_NAME=\u003Caccount-name>\nAZURE_STORAGE_ACCOUNT_KEY=\u003Caccount-key>\n# OR connection string\nAZURE_STORAGE_CONNECTION_STRING=DefaultEndpointsProtocol=https;AccountName=...\nAZURE_TOKEN_CREDENTIALS=prod # Required only if DefaultAzureCredential is used in production\n```\n\n## Authentication\n\n### Microsoft Entra Token Credential (Recommended)\n\n```typescript\nimport { QueueServiceClient } from \"@azure\u002Fstorage-queue\";\nimport { DefaultAzureCredential, ManagedIdentityCredential } from \"@azure\u002Fidentity\";\n\n\u002F\u002F Local dev: DefaultAzureCredential. Production: set AZURE_TOKEN_CREDENTIALS=prod or AZURE_TOKEN_CREDENTIALS=\u003Cspecific_credential>\nconst credential = new DefaultAzureCredential({requiredEnvVars: [\"AZURE_TOKEN_CREDENTIALS\"]});\n\u002F\u002F Or use a specific credential directly in production:\n\u002F\u002F See https:\u002F\u002Flearn.microsoft.com\u002Fjavascript\u002Fapi\u002Foverview\u002Fazure\u002Fidentity-readme?view=azure-node-latest#credential-classes\n\u002F\u002F const credential = new ManagedIdentityCredential();\n\nconst accountName = process.env.AZURE_STORAGE_ACCOUNT_NAME!;\nconst client = new QueueServiceClient(\n  `https:\u002F\u002F${accountName}.queue.core.windows.net`,\n  credential\n);\n```\n\n### Connection String\n\n```typescript\nimport { QueueServiceClient } from \"@azure\u002Fstorage-queue\";\n\nconst client = QueueServiceClient.fromConnectionString(\n  process.env.AZURE_STORAGE_CONNECTION_STRING!\n);\n```\n\n### StorageSharedKeyCredential (Node.js only)\n\n```typescript\nimport { QueueServiceClient, StorageSharedKeyCredential } from \"@azure\u002Fstorage-queue\";\n\nconst accountName = process.env.AZURE_STORAGE_ACCOUNT_NAME!;\nconst accountKey = process.env.AZURE_STORAGE_ACCOUNT_KEY!;\n\nconst sharedKeyCredential = new StorageSharedKeyCredential(accountName, accountKey);\nconst client = new QueueServiceClient(\n  `https:\u002F\u002F${accountName}.queue.core.windows.net`,\n  sharedKeyCredential\n);\n```\n\n### SAS Token\n\n```typescript\nimport { QueueServiceClient } from \"@azure\u002Fstorage-queue\";\n\nconst accountName = process.env.AZURE_STORAGE_ACCOUNT_NAME!;\nconst sasToken = process.env.AZURE_STORAGE_SAS_TOKEN!;\n\nconst client = new QueueServiceClient(\n  `https:\u002F\u002F${accountName}.queue.core.windows.net${sasToken}`\n);\n```\n\n## Client Hierarchy\n\n```\nQueueServiceClient (account level)\n└── QueueClient (queue level)\n    └── Messages (send, receive, peek, delete)\n```\n\n## Queue Operations\n\n### Create Queue\n\n```typescript\nconst queueClient = client.getQueueClient(\"my-queue\");\nawait queueClient.create();\n\n\u002F\u002F Or create if not exists\nawait queueClient.createIfNotExists();\n```\n\n### List Queues\n\n```typescript\nfor await (const queue of client.listQueues()) {\n  console.log(queue.name);\n}\n\n\u002F\u002F With prefix filter\nfor await (const queue of client.listQueues({ prefix: \"task-\" })) {\n  console.log(queue.name);\n}\n```\n\n### Delete Queue\n\n```typescript\nawait queueClient.delete();\n\n\u002F\u002F Or delete if exists\nawait queueClient.deleteIfExists();\n```\n\n### Get Queue Properties\n\n```typescript\nconst properties = await queueClient.getProperties();\nconsole.log(\"Approximate message count:\", properties.approximateMessagesCount);\nconsole.log(\"Metadata:\", properties.metadata);\n```\n\n### Set Queue Metadata\n\n```typescript\nawait queueClient.setMetadata({\n  department: \"engineering\",\n  priority: \"high\",\n});\n```\n\n## Message Operations\n\n### Send Message\n\n```typescript\nconst queueClient = client.getQueueClient(\"my-queue\");\n\n\u002F\u002F Simple message\nawait queueClient.sendMessage(\"Hello, World!\");\n\n\u002F\u002F With options\nawait queueClient.sendMessage(\"Delayed message\", {\n  visibilityTimeout: 60, \u002F\u002F Hidden for 60 seconds\n  messageTimeToLive: 3600, \u002F\u002F Expires in 1 hour\n});\n\n\u002F\u002F JSON message (must be string)\nconst task = { type: \"process\", data: { id: 123 } };\nawait queueClient.sendMessage(JSON.stringify(task));\n```\n\n### Receive Messages\n\n```typescript\n\u002F\u002F Receive up to 32 messages (default: 1)\nconst response = await queueClient.receiveMessages({\n  numberOfMessages: 10,\n  visibilityTimeout: 30, \u002F\u002F 30 seconds to process\n});\n\nfor (const message of response.receivedMessageItems) {\n  console.log(\"Message ID:\", message.messageId);\n  console.log(\"Content:\", message.messageText);\n  console.log(\"Dequeue Count:\", message.dequeueCount);\n  console.log(\"Pop Receipt:\", message.popReceipt);\n  \n  \u002F\u002F Process the message...\n  \n  \u002F\u002F Delete after processing\n  await queueClient.deleteMessage(message.messageId, message.popReceipt);\n}\n```\n\n### Peek Messages\n\nPeek without removing from queue (no visibility timeout).\n\n```typescript\nconst response = await queueClient.peekMessages({\n  numberOfMessages: 5,\n});\n\nfor (const message of response.peekedMessageItems) {\n  console.log(\"Message ID:\", message.messageId);\n  console.log(\"Content:\", message.messageText);\n  \u002F\u002F Note: No popReceipt - cannot delete peeked messages\n}\n```\n\n### Update Message\n\nExtend visibility timeout or update content.\n\n```typescript\n\u002F\u002F Receive a message\nconst response = await queueClient.receiveMessages();\nconst message = response.receivedMessageItems[0];\n\nif (message) {\n  \u002F\u002F Update content and extend visibility\n  const updateResponse = await queueClient.updateMessage(\n    message.messageId,\n    message.popReceipt,\n    \"Updated content\",\n    60 \u002F\u002F New visibility timeout in seconds\n  );\n  \n  \u002F\u002F Use new popReceipt for subsequent operations\n  console.log(\"New pop receipt:\", updateResponse.popReceipt);\n}\n```\n\n### Delete Message\n\n```typescript\n\u002F\u002F After receiving\nconst response = await queueClient.receiveMessages();\nconst message = response.receivedMessageItems[0];\n\nif (message) {\n  await queueClient.deleteMessage(message.messageId, message.popReceipt);\n}\n```\n\n### Clear All Messages\n\n```typescript\nawait queueClient.clearMessages();\n```\n\n## Message Processing Patterns\n\n### Basic Worker Pattern\n\n```typescript\nasync function processQueue(queueClient: QueueClient): Promise\u003Cvoid> {\n  while (true) {\n    const response = await queueClient.receiveMessages({\n      numberOfMessages: 10,\n      visibilityTimeout: 30,\n    });\n\n    if (response.receivedMessageItems.length === 0) {\n      \u002F\u002F No messages, wait before polling again\n      await sleep(5000);\n      continue;\n    }\n\n    for (const message of response.receivedMessageItems) {\n      try {\n        await processMessage(message.messageText);\n        await queueClient.deleteMessage(message.messageId, message.popReceipt);\n      } catch (error) {\n        console.error(`Failed to process message ${message.messageId}:`, error);\n        \u002F\u002F Message will become visible again after timeout\n      }\n    }\n  }\n}\n\nasync function processMessage(content: string): Promise\u003Cvoid> {\n  const task = JSON.parse(content);\n  \u002F\u002F Process task...\n}\n\nfunction sleep(ms: number): Promise\u003Cvoid> {\n  return new Promise((resolve) => setTimeout(resolve, ms));\n}\n```\n\n### Poison Message Handling\n\n```typescript\nconst MAX_DEQUEUE_COUNT = 5;\n\nasync function processWithPoisonHandling(\n  queueClient: QueueClient,\n  poisonQueueClient: QueueClient\n): Promise\u003Cvoid> {\n  const response = await queueClient.receiveMessages({\n    numberOfMessages: 10,\n    visibilityTimeout: 30,\n  });\n\n  for (const message of response.receivedMessageItems) {\n    if (message.dequeueCount > MAX_DEQUEUE_COUNT) {\n      \u002F\u002F Move to poison queue\n      await poisonQueueClient.sendMessage(message.messageText);\n      await queueClient.deleteMessage(message.messageId, message.popReceipt);\n      console.log(`Moved message ${message.messageId} to poison queue`);\n      continue;\n    }\n\n    try {\n      await processMessage(message.messageText);\n      await queueClient.deleteMessage(message.messageId, message.popReceipt);\n    } catch (error) {\n      console.error(`Processing failed (attempt ${message.dequeueCount}):`, error);\n    }\n  }\n}\n```\n\n### Batch Processing with Visibility Extension\n\n```typescript\nasync function processBatchWithExtension(queueClient: QueueClient): Promise\u003Cvoid> {\n  const response = await queueClient.receiveMessages({\n    numberOfMessages: 1,\n    visibilityTimeout: 60,\n  });\n\n  const message = response.receivedMessageItems[0];\n  if (!message) return;\n\n  let popReceipt = message.popReceipt;\n\n  \u002F\u002F Start visibility extension timer\n  const extensionInterval = setInterval(async () => {\n    try {\n      const updateResponse = await queueClient.updateMessage(\n        message.messageId,\n        popReceipt,\n        message.messageText,\n        60 \u002F\u002F Extend by another 60 seconds\n      );\n      popReceipt = updateResponse.popReceipt;\n    } catch (error) {\n      console.error(\"Failed to extend visibility:\", error);\n    }\n  }, 45000); \u002F\u002F Extend every 45 seconds\n\n  try {\n    await longRunningProcess(message.messageText);\n    await queueClient.deleteMessage(message.messageId, popReceipt);\n  } finally {\n    clearInterval(extensionInterval);\n  }\n}\n```\n\n## Message Encoding\n\nBy default, messages are Base64 encoded. You can customize this:\n\n```typescript\nimport { QueueClient } from \"@azure\u002Fstorage-queue\";\n\n\u002F\u002F Custom encoder\u002Fdecoder for plain text\nconst queueClient = new QueueClient(\n  `https:\u002F\u002F${accountName}.queue.core.windows.net\u002Fmy-queue`,\n  credential,\n  {\n    messageEncoding: \"text\", \u002F\u002F \"base64\" (default) or \"text\"\n  }\n);\n\n\u002F\u002F Or with custom encoder\nconst customQueueClient = new QueueClient(\n  `https:\u002F\u002F${accountName}.queue.core.windows.net\u002Fmy-queue`,\n  credential,\n  {\n    messageEncoding: {\n      encode: (message: string) => Buffer.from(message).toString(\"base64\"),\n      decode: (message: string) => Buffer.from(message, \"base64\").toString(),\n    },\n  }\n);\n```\n\n## SAS Token Generation (Node.js only)\n\n### Generate Queue SAS\n\n```typescript\nimport {\n  QueueSASPermissions,\n  generateQueueSASQueryParameters,\n  StorageSharedKeyCredential,\n} from \"@azure\u002Fstorage-queue\";\n\nconst sharedKeyCredential = new StorageSharedKeyCredential(accountName, accountKey);\n\nconst sasToken = generateQueueSASQueryParameters(\n  {\n    queueName: \"my-queue\",\n    permissions: QueueSASPermissions.parse(\"raup\"), \u002F\u002F read, add, update, process\n    startsOn: new Date(),\n    expiresOn: new Date(Date.now() + 3600 * 1000), \u002F\u002F 1 hour\n  },\n  sharedKeyCredential\n).toString();\n\nconst sasUrl = `https:\u002F\u002F${accountName}.queue.core.windows.net\u002Fmy-queue?${sasToken}`;\n```\n\n### Generate Account SAS\n\n```typescript\nimport {\n  AccountSASPermissions,\n  AccountSASResourceTypes,\n  AccountSASServices,\n  generateAccountSASQueryParameters,\n} from \"@azure\u002Fstorage-queue\";\n\nconst sasToken = generateAccountSASQueryParameters(\n  {\n    services: AccountSASServices.parse(\"q\").toString(), \u002F\u002F queue\n    resourceTypes: AccountSASResourceTypes.parse(\"sco\").toString(),\n    permissions: AccountSASPermissions.parse(\"rwdlacupi\"),\n    expiresOn: new Date(Date.now() + 24 * 3600 * 1000),\n  },\n  sharedKeyCredential\n).toString();\n```\n\n## Error Handling\n\n```typescript\nimport { RestError } from \"@azure\u002Fstorage-queue\";\n\ntry {\n  await queueClient.sendMessage(\"test\");\n} catch (error) {\n  if (error instanceof RestError) {\n    switch (error.statusCode) {\n      case 404:\n        console.log(\"Queue not found\");\n        break;\n      case 400:\n        console.log(\"Bad request - message too large or invalid\");\n        break;\n      case 403:\n        console.log(\"Access denied\");\n        break;\n      case 409:\n        console.log(\"Queue already exists or being deleted\");\n        break;\n      default:\n        console.error(`Storage error ${error.statusCode}: ${error.message}`);\n    }\n  }\n  throw error;\n}\n```\n\n## TypeScript Types Reference\n\n```typescript\nimport {\n  \u002F\u002F Clients\n  QueueServiceClient,\n  QueueClient,\n\n  \u002F\u002F Authentication\n  StorageSharedKeyCredential,\n  AnonymousCredential,\n\n  \u002F\u002F SAS\n  QueueSASPermissions,\n  AccountSASPermissions,\n  AccountSASServices,\n  AccountSASResourceTypes,\n  generateQueueSASQueryParameters,\n  generateAccountSASQueryParameters,\n\n  \u002F\u002F Messages\n  DequeuedMessageItem,\n  PeekedMessageItem,\n  QueueSendMessageResponse,\n  QueueReceiveMessageResponse,\n  QueueUpdateMessageResponse,\n\n  \u002F\u002F Queue\n  QueueItem,\n  QueueGetPropertiesResponse,\n\n  \u002F\u002F Errors\n  RestError,\n} from \"@azure\u002Fstorage-queue\";\n```\n\n## Message Limits\n\n| Limit | Value |\n|-------|-------|\n| Max message size | 64 KB |\n| Max visibility timeout | 7 days |\n| Max time-to-live | 7 days (or -1 for infinite) |\n| Max messages per receive | 32 |\n| Default visibility timeout | 30 seconds |\n\n## Best Practices\n\n1. **Use `DefaultAzureCredential` for local development; use `ManagedIdentityCredential` or `WorkloadIdentityCredential` for production**\n2. **Always delete after processing** — Prevent duplicate processing\n3. **Handle poison messages** — Move failed messages to a dead-letter queue\n4. **Use appropriate visibility timeout** — Set based on expected processing time\n5. **Extend visibility for long tasks** — Update message to prevent timeout\n6. **Use JSON for structured data** — Serialize objects to JSON strings\n7. **Check dequeueCount** — Detect repeatedly failing messages\n8. **Use batch receive** — Receive multiple messages for efficiency\n\n## Platform Differences\n\n| Feature | Node.js | Browser |\n|---------|---------|---------|\n| `StorageSharedKeyCredential` | ✅ | ❌ |\n| SAS generation | ✅ | ❌ |\n| DefaultAzureCredential | ✅ | ❌ |\n| Anonymous\u002FSAS access | ✅ | ✅ |\n| All message operations | ✅ | ✅ |\n",{"data":46,"body":50},{"name":4,"description":6,"license":31,"metadata":47},{"author":9,"version":48,"package":49},"1.0.0","@azure\u002Fstorage-queue",{"type":51,"children":52},"root",[53,62,68,75,115,136,142,276,282,289,672,678,803,809,1080,1086,1305,1311,1321,1327,1333,1469,1475,1731,1737,1815,1821,1977,1983,2091,2097,2103,2488,2494,2992,2998,3003,3257,3263,3268,3597,3603,3784,3790,3825,3831,3837,4731,4737,5474,5480,6239,6245,6250,6760,6766,6772,7224,7230,7644,7650,8246,8252,8589,8595,8688,8694,8801,8807,8918],{"type":54,"tag":55,"props":56,"children":58},"element","h1",{"id":57},"azurestorage-queue-typescriptjavascript",[59],{"type":60,"value":61},"text","@azure\u002Fstorage-queue (TypeScript\u002FJavaScript)",{"type":54,"tag":63,"props":64,"children":65},"p",{},[66],{"type":60,"value":67},"SDK for Azure Queue Storage operations — send, receive, peek, and manage messages in queues.",{"type":54,"tag":69,"props":70,"children":72},"h2",{"id":71},"installation",[73],{"type":60,"value":74},"Installation",{"type":54,"tag":76,"props":77,"children":82},"pre",{"className":78,"code":79,"language":80,"meta":81,"style":81},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm install @azure\u002Fstorage-queue @azure\u002Fidentity\n","bash","",[83],{"type":54,"tag":84,"props":85,"children":86},"code",{"__ignoreMap":81},[87],{"type":54,"tag":88,"props":89,"children":92},"span",{"class":90,"line":91},"line",1,[93,99,105,110],{"type":54,"tag":88,"props":94,"children":96},{"style":95},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[97],{"type":60,"value":98},"npm",{"type":54,"tag":88,"props":100,"children":102},{"style":101},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[103],{"type":60,"value":104}," install",{"type":54,"tag":88,"props":106,"children":107},{"style":101},[108],{"type":60,"value":109}," @azure\u002Fstorage-queue",{"type":54,"tag":88,"props":111,"children":112},{"style":101},[113],{"type":60,"value":114}," @azure\u002Fidentity\n",{"type":54,"tag":63,"props":116,"children":117},{},[118,124,126,130,134],{"type":54,"tag":119,"props":120,"children":121},"strong",{},[122],{"type":60,"value":123},"Current Version",{"type":60,"value":125},": 12.x",{"type":54,"tag":127,"props":128,"children":129},"br",{},[],{"type":54,"tag":119,"props":131,"children":132},{},[133],{"type":60,"value":17},{"type":60,"value":135},": >= 18.0.0",{"type":54,"tag":69,"props":137,"children":139},{"id":138},"environment-variables",[140],{"type":60,"value":141},"Environment Variables",{"type":54,"tag":76,"props":143,"children":145},{"className":78,"code":144,"language":80,"meta":81,"style":81},"AZURE_STORAGE_ACCOUNT_NAME=\u003Caccount-name>\nAZURE_STORAGE_ACCOUNT_KEY=\u003Caccount-key>\n# OR connection string\nAZURE_STORAGE_CONNECTION_STRING=DefaultEndpointsProtocol=https;AccountName=...\nAZURE_TOKEN_CREDENTIALS=prod # Required only if DefaultAzureCredential is used in production\n",[146],{"type":54,"tag":84,"props":147,"children":148},{"__ignoreMap":81},[149,174,196,206,253],{"type":54,"tag":88,"props":150,"children":151},{"class":90,"line":91},[152,158,164,169],{"type":54,"tag":88,"props":153,"children":155},{"style":154},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[156],{"type":60,"value":157},"AZURE_STORAGE_ACCOUNT_NAME",{"type":54,"tag":88,"props":159,"children":161},{"style":160},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[162],{"type":60,"value":163},"=\u003C",{"type":54,"tag":88,"props":165,"children":166},{"style":101},[167],{"type":60,"value":168},"account-name",{"type":54,"tag":88,"props":170,"children":171},{"style":160},[172],{"type":60,"value":173},">\n",{"type":54,"tag":88,"props":175,"children":177},{"class":90,"line":176},2,[178,183,187,192],{"type":54,"tag":88,"props":179,"children":180},{"style":154},[181],{"type":60,"value":182},"AZURE_STORAGE_ACCOUNT_KEY",{"type":54,"tag":88,"props":184,"children":185},{"style":160},[186],{"type":60,"value":163},{"type":54,"tag":88,"props":188,"children":189},{"style":101},[190],{"type":60,"value":191},"account-key",{"type":54,"tag":88,"props":193,"children":194},{"style":160},[195],{"type":60,"value":173},{"type":54,"tag":88,"props":197,"children":199},{"class":90,"line":198},3,[200],{"type":54,"tag":88,"props":201,"children":203},{"style":202},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[204],{"type":60,"value":205},"# OR connection string\n",{"type":54,"tag":88,"props":207,"children":209},{"class":90,"line":208},4,[210,215,220,225,229,234,239,244,248],{"type":54,"tag":88,"props":211,"children":212},{"style":154},[213],{"type":60,"value":214},"AZURE_STORAGE_CONNECTION_STRING",{"type":54,"tag":88,"props":216,"children":217},{"style":160},[218],{"type":60,"value":219},"=",{"type":54,"tag":88,"props":221,"children":222},{"style":154},[223],{"type":60,"value":224},"DefaultEndpointsProtocol",{"type":54,"tag":88,"props":226,"children":227},{"style":160},[228],{"type":60,"value":219},{"type":54,"tag":88,"props":230,"children":231},{"style":101},[232],{"type":60,"value":233},"https",{"type":54,"tag":88,"props":235,"children":236},{"style":160},[237],{"type":60,"value":238},";",{"type":54,"tag":88,"props":240,"children":241},{"style":154},[242],{"type":60,"value":243},"AccountName",{"type":54,"tag":88,"props":245,"children":246},{"style":160},[247],{"type":60,"value":219},{"type":54,"tag":88,"props":249,"children":250},{"style":101},[251],{"type":60,"value":252},"...\n",{"type":54,"tag":88,"props":254,"children":256},{"class":90,"line":255},5,[257,262,266,271],{"type":54,"tag":88,"props":258,"children":259},{"style":154},[260],{"type":60,"value":261},"AZURE_TOKEN_CREDENTIALS",{"type":54,"tag":88,"props":263,"children":264},{"style":160},[265],{"type":60,"value":219},{"type":54,"tag":88,"props":267,"children":268},{"style":101},[269],{"type":60,"value":270},"prod",{"type":54,"tag":88,"props":272,"children":273},{"style":202},[274],{"type":60,"value":275}," # Required only if DefaultAzureCredential is used in production\n",{"type":54,"tag":69,"props":277,"children":279},{"id":278},"authentication",[280],{"type":60,"value":281},"Authentication",{"type":54,"tag":283,"props":284,"children":286},"h3",{"id":285},"microsoft-entra-token-credential-recommended",[287],{"type":60,"value":288},"Microsoft Entra Token Credential (Recommended)",{"type":54,"tag":76,"props":290,"children":293},{"className":291,"code":292,"language":21,"meta":81,"style":81},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { QueueServiceClient } from \"@azure\u002Fstorage-queue\";\nimport { DefaultAzureCredential, ManagedIdentityCredential } from \"@azure\u002Fidentity\";\n\n\u002F\u002F Local dev: DefaultAzureCredential. Production: set AZURE_TOKEN_CREDENTIALS=prod or AZURE_TOKEN_CREDENTIALS=\u003Cspecific_credential>\nconst credential = new DefaultAzureCredential({requiredEnvVars: [\"AZURE_TOKEN_CREDENTIALS\"]});\n\u002F\u002F Or use a specific credential directly in production:\n\u002F\u002F See https:\u002F\u002Flearn.microsoft.com\u002Fjavascript\u002Fapi\u002Foverview\u002Fazure\u002Fidentity-readme?view=azure-node-latest#credential-classes\n\u002F\u002F const credential = new ManagedIdentityCredential();\n\nconst accountName = process.env.AZURE_STORAGE_ACCOUNT_NAME!;\nconst client = new QueueServiceClient(\n  `https:\u002F\u002F${accountName}.queue.core.windows.net`,\n  credential\n);\n",[294],{"type":54,"tag":84,"props":295,"children":296},{"__ignoreMap":81},[297,345,396,405,413,498,507,516,525,533,578,608,651,660],{"type":54,"tag":88,"props":298,"children":299},{"class":90,"line":91},[300,306,311,316,321,326,331,335,340],{"type":54,"tag":88,"props":301,"children":303},{"style":302},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[304],{"type":60,"value":305},"import",{"type":54,"tag":88,"props":307,"children":308},{"style":160},[309],{"type":60,"value":310}," {",{"type":54,"tag":88,"props":312,"children":313},{"style":154},[314],{"type":60,"value":315}," QueueServiceClient",{"type":54,"tag":88,"props":317,"children":318},{"style":160},[319],{"type":60,"value":320}," }",{"type":54,"tag":88,"props":322,"children":323},{"style":302},[324],{"type":60,"value":325}," from",{"type":54,"tag":88,"props":327,"children":328},{"style":160},[329],{"type":60,"value":330}," \"",{"type":54,"tag":88,"props":332,"children":333},{"style":101},[334],{"type":60,"value":49},{"type":54,"tag":88,"props":336,"children":337},{"style":160},[338],{"type":60,"value":339},"\"",{"type":54,"tag":88,"props":341,"children":342},{"style":160},[343],{"type":60,"value":344},";\n",{"type":54,"tag":88,"props":346,"children":347},{"class":90,"line":176},[348,352,356,361,366,371,375,379,383,388,392],{"type":54,"tag":88,"props":349,"children":350},{"style":302},[351],{"type":60,"value":305},{"type":54,"tag":88,"props":353,"children":354},{"style":160},[355],{"type":60,"value":310},{"type":54,"tag":88,"props":357,"children":358},{"style":154},[359],{"type":60,"value":360}," DefaultAzureCredential",{"type":54,"tag":88,"props":362,"children":363},{"style":160},[364],{"type":60,"value":365},",",{"type":54,"tag":88,"props":367,"children":368},{"style":154},[369],{"type":60,"value":370}," ManagedIdentityCredential",{"type":54,"tag":88,"props":372,"children":373},{"style":160},[374],{"type":60,"value":320},{"type":54,"tag":88,"props":376,"children":377},{"style":302},[378],{"type":60,"value":325},{"type":54,"tag":88,"props":380,"children":381},{"style":160},[382],{"type":60,"value":330},{"type":54,"tag":88,"props":384,"children":385},{"style":101},[386],{"type":60,"value":387},"@azure\u002Fidentity",{"type":54,"tag":88,"props":389,"children":390},{"style":160},[391],{"type":60,"value":339},{"type":54,"tag":88,"props":393,"children":394},{"style":160},[395],{"type":60,"value":344},{"type":54,"tag":88,"props":397,"children":398},{"class":90,"line":198},[399],{"type":54,"tag":88,"props":400,"children":402},{"emptyLinePlaceholder":401},true,[403],{"type":60,"value":404},"\n",{"type":54,"tag":88,"props":406,"children":407},{"class":90,"line":208},[408],{"type":54,"tag":88,"props":409,"children":410},{"style":202},[411],{"type":60,"value":412},"\u002F\u002F Local dev: DefaultAzureCredential. Production: set AZURE_TOKEN_CREDENTIALS=prod or AZURE_TOKEN_CREDENTIALS=\u003Cspecific_credential>\n",{"type":54,"tag":88,"props":414,"children":415},{"class":90,"line":255},[416,422,427,431,436,441,446,451,457,462,467,471,475,479,484,489,494],{"type":54,"tag":88,"props":417,"children":419},{"style":418},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[420],{"type":60,"value":421},"const",{"type":54,"tag":88,"props":423,"children":424},{"style":154},[425],{"type":60,"value":426}," credential ",{"type":54,"tag":88,"props":428,"children":429},{"style":160},[430],{"type":60,"value":219},{"type":54,"tag":88,"props":432,"children":433},{"style":160},[434],{"type":60,"value":435}," new",{"type":54,"tag":88,"props":437,"children":439},{"style":438},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[440],{"type":60,"value":360},{"type":54,"tag":88,"props":442,"children":443},{"style":154},[444],{"type":60,"value":445},"(",{"type":54,"tag":88,"props":447,"children":448},{"style":160},[449],{"type":60,"value":450},"{",{"type":54,"tag":88,"props":452,"children":454},{"style":453},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[455],{"type":60,"value":456},"requiredEnvVars",{"type":54,"tag":88,"props":458,"children":459},{"style":160},[460],{"type":60,"value":461},":",{"type":54,"tag":88,"props":463,"children":464},{"style":154},[465],{"type":60,"value":466}," [",{"type":54,"tag":88,"props":468,"children":469},{"style":160},[470],{"type":60,"value":339},{"type":54,"tag":88,"props":472,"children":473},{"style":101},[474],{"type":60,"value":261},{"type":54,"tag":88,"props":476,"children":477},{"style":160},[478],{"type":60,"value":339},{"type":54,"tag":88,"props":480,"children":481},{"style":154},[482],{"type":60,"value":483},"]",{"type":54,"tag":88,"props":485,"children":486},{"style":160},[487],{"type":60,"value":488},"}",{"type":54,"tag":88,"props":490,"children":491},{"style":154},[492],{"type":60,"value":493},")",{"type":54,"tag":88,"props":495,"children":496},{"style":160},[497],{"type":60,"value":344},{"type":54,"tag":88,"props":499,"children":501},{"class":90,"line":500},6,[502],{"type":54,"tag":88,"props":503,"children":504},{"style":202},[505],{"type":60,"value":506},"\u002F\u002F Or use a specific credential directly in production:\n",{"type":54,"tag":88,"props":508,"children":510},{"class":90,"line":509},7,[511],{"type":54,"tag":88,"props":512,"children":513},{"style":202},[514],{"type":60,"value":515},"\u002F\u002F See https:\u002F\u002Flearn.microsoft.com\u002Fjavascript\u002Fapi\u002Foverview\u002Fazure\u002Fidentity-readme?view=azure-node-latest#credential-classes\n",{"type":54,"tag":88,"props":517,"children":519},{"class":90,"line":518},8,[520],{"type":54,"tag":88,"props":521,"children":522},{"style":202},[523],{"type":60,"value":524},"\u002F\u002F const credential = new ManagedIdentityCredential();\n",{"type":54,"tag":88,"props":526,"children":528},{"class":90,"line":527},9,[529],{"type":54,"tag":88,"props":530,"children":531},{"emptyLinePlaceholder":401},[532],{"type":60,"value":404},{"type":54,"tag":88,"props":534,"children":536},{"class":90,"line":535},10,[537,541,546,550,555,560,565,569,573],{"type":54,"tag":88,"props":538,"children":539},{"style":418},[540],{"type":60,"value":421},{"type":54,"tag":88,"props":542,"children":543},{"style":154},[544],{"type":60,"value":545}," accountName ",{"type":54,"tag":88,"props":547,"children":548},{"style":160},[549],{"type":60,"value":219},{"type":54,"tag":88,"props":551,"children":552},{"style":154},[553],{"type":60,"value":554}," process",{"type":54,"tag":88,"props":556,"children":557},{"style":160},[558],{"type":60,"value":559},".",{"type":54,"tag":88,"props":561,"children":562},{"style":154},[563],{"type":60,"value":564},"env",{"type":54,"tag":88,"props":566,"children":567},{"style":160},[568],{"type":60,"value":559},{"type":54,"tag":88,"props":570,"children":571},{"style":154},[572],{"type":60,"value":157},{"type":54,"tag":88,"props":574,"children":575},{"style":160},[576],{"type":60,"value":577},"!;\n",{"type":54,"tag":88,"props":579,"children":581},{"class":90,"line":580},11,[582,586,591,595,599,603],{"type":54,"tag":88,"props":583,"children":584},{"style":418},[585],{"type":60,"value":421},{"type":54,"tag":88,"props":587,"children":588},{"style":154},[589],{"type":60,"value":590}," client ",{"type":54,"tag":88,"props":592,"children":593},{"style":160},[594],{"type":60,"value":219},{"type":54,"tag":88,"props":596,"children":597},{"style":160},[598],{"type":60,"value":435},{"type":54,"tag":88,"props":600,"children":601},{"style":438},[602],{"type":60,"value":315},{"type":54,"tag":88,"props":604,"children":605},{"style":154},[606],{"type":60,"value":607},"(\n",{"type":54,"tag":88,"props":609,"children":611},{"class":90,"line":610},12,[612,617,622,627,632,636,641,646],{"type":54,"tag":88,"props":613,"children":614},{"style":160},[615],{"type":60,"value":616},"  `",{"type":54,"tag":88,"props":618,"children":619},{"style":101},[620],{"type":60,"value":621},"https:\u002F\u002F",{"type":54,"tag":88,"props":623,"children":624},{"style":160},[625],{"type":60,"value":626},"${",{"type":54,"tag":88,"props":628,"children":629},{"style":154},[630],{"type":60,"value":631},"accountName",{"type":54,"tag":88,"props":633,"children":634},{"style":160},[635],{"type":60,"value":488},{"type":54,"tag":88,"props":637,"children":638},{"style":101},[639],{"type":60,"value":640},".queue.core.windows.net",{"type":54,"tag":88,"props":642,"children":643},{"style":160},[644],{"type":60,"value":645},"`",{"type":54,"tag":88,"props":647,"children":648},{"style":160},[649],{"type":60,"value":650},",\n",{"type":54,"tag":88,"props":652,"children":654},{"class":90,"line":653},13,[655],{"type":54,"tag":88,"props":656,"children":657},{"style":154},[658],{"type":60,"value":659},"  credential\n",{"type":54,"tag":88,"props":661,"children":663},{"class":90,"line":662},14,[664,668],{"type":54,"tag":88,"props":665,"children":666},{"style":154},[667],{"type":60,"value":493},{"type":54,"tag":88,"props":669,"children":670},{"style":160},[671],{"type":60,"value":344},{"type":54,"tag":283,"props":673,"children":675},{"id":674},"connection-string",[676],{"type":60,"value":677},"Connection String",{"type":54,"tag":76,"props":679,"children":681},{"className":291,"code":680,"language":21,"meta":81,"style":81},"import { QueueServiceClient } from \"@azure\u002Fstorage-queue\";\n\nconst client = QueueServiceClient.fromConnectionString(\n  process.env.AZURE_STORAGE_CONNECTION_STRING!\n);\n",[682],{"type":54,"tag":84,"props":683,"children":684},{"__ignoreMap":81},[685,724,731,763,792],{"type":54,"tag":88,"props":686,"children":687},{"class":90,"line":91},[688,692,696,700,704,708,712,716,720],{"type":54,"tag":88,"props":689,"children":690},{"style":302},[691],{"type":60,"value":305},{"type":54,"tag":88,"props":693,"children":694},{"style":160},[695],{"type":60,"value":310},{"type":54,"tag":88,"props":697,"children":698},{"style":154},[699],{"type":60,"value":315},{"type":54,"tag":88,"props":701,"children":702},{"style":160},[703],{"type":60,"value":320},{"type":54,"tag":88,"props":705,"children":706},{"style":302},[707],{"type":60,"value":325},{"type":54,"tag":88,"props":709,"children":710},{"style":160},[711],{"type":60,"value":330},{"type":54,"tag":88,"props":713,"children":714},{"style":101},[715],{"type":60,"value":49},{"type":54,"tag":88,"props":717,"children":718},{"style":160},[719],{"type":60,"value":339},{"type":54,"tag":88,"props":721,"children":722},{"style":160},[723],{"type":60,"value":344},{"type":54,"tag":88,"props":725,"children":726},{"class":90,"line":176},[727],{"type":54,"tag":88,"props":728,"children":729},{"emptyLinePlaceholder":401},[730],{"type":60,"value":404},{"type":54,"tag":88,"props":732,"children":733},{"class":90,"line":198},[734,738,742,746,750,754,759],{"type":54,"tag":88,"props":735,"children":736},{"style":418},[737],{"type":60,"value":421},{"type":54,"tag":88,"props":739,"children":740},{"style":154},[741],{"type":60,"value":590},{"type":54,"tag":88,"props":743,"children":744},{"style":160},[745],{"type":60,"value":219},{"type":54,"tag":88,"props":747,"children":748},{"style":154},[749],{"type":60,"value":315},{"type":54,"tag":88,"props":751,"children":752},{"style":160},[753],{"type":60,"value":559},{"type":54,"tag":88,"props":755,"children":756},{"style":438},[757],{"type":60,"value":758},"fromConnectionString",{"type":54,"tag":88,"props":760,"children":761},{"style":154},[762],{"type":60,"value":607},{"type":54,"tag":88,"props":764,"children":765},{"class":90,"line":208},[766,771,775,779,783,787],{"type":54,"tag":88,"props":767,"children":768},{"style":154},[769],{"type":60,"value":770},"  process",{"type":54,"tag":88,"props":772,"children":773},{"style":160},[774],{"type":60,"value":559},{"type":54,"tag":88,"props":776,"children":777},{"style":154},[778],{"type":60,"value":564},{"type":54,"tag":88,"props":780,"children":781},{"style":160},[782],{"type":60,"value":559},{"type":54,"tag":88,"props":784,"children":785},{"style":154},[786],{"type":60,"value":214},{"type":54,"tag":88,"props":788,"children":789},{"style":160},[790],{"type":60,"value":791},"!\n",{"type":54,"tag":88,"props":793,"children":794},{"class":90,"line":255},[795,799],{"type":54,"tag":88,"props":796,"children":797},{"style":154},[798],{"type":60,"value":493},{"type":54,"tag":88,"props":800,"children":801},{"style":160},[802],{"type":60,"value":344},{"type":54,"tag":283,"props":804,"children":806},{"id":805},"storagesharedkeycredential-nodejs-only",[807],{"type":60,"value":808},"StorageSharedKeyCredential (Node.js only)",{"type":54,"tag":76,"props":810,"children":812},{"className":291,"code":811,"language":21,"meta":81,"style":81},"import { QueueServiceClient, StorageSharedKeyCredential } from \"@azure\u002Fstorage-queue\";\n\nconst accountName = process.env.AZURE_STORAGE_ACCOUNT_NAME!;\nconst accountKey = process.env.AZURE_STORAGE_ACCOUNT_KEY!;\n\nconst sharedKeyCredential = new StorageSharedKeyCredential(accountName, accountKey);\nconst client = new QueueServiceClient(\n  `https:\u002F\u002F${accountName}.queue.core.windows.net`,\n  sharedKeyCredential\n);\n",[813],{"type":54,"tag":84,"props":814,"children":815},{"__ignoreMap":81},[816,864,871,910,950,957,999,1026,1061,1069],{"type":54,"tag":88,"props":817,"children":818},{"class":90,"line":91},[819,823,827,831,835,840,844,848,852,856,860],{"type":54,"tag":88,"props":820,"children":821},{"style":302},[822],{"type":60,"value":305},{"type":54,"tag":88,"props":824,"children":825},{"style":160},[826],{"type":60,"value":310},{"type":54,"tag":88,"props":828,"children":829},{"style":154},[830],{"type":60,"value":315},{"type":54,"tag":88,"props":832,"children":833},{"style":160},[834],{"type":60,"value":365},{"type":54,"tag":88,"props":836,"children":837},{"style":154},[838],{"type":60,"value":839}," StorageSharedKeyCredential",{"type":54,"tag":88,"props":841,"children":842},{"style":160},[843],{"type":60,"value":320},{"type":54,"tag":88,"props":845,"children":846},{"style":302},[847],{"type":60,"value":325},{"type":54,"tag":88,"props":849,"children":850},{"style":160},[851],{"type":60,"value":330},{"type":54,"tag":88,"props":853,"children":854},{"style":101},[855],{"type":60,"value":49},{"type":54,"tag":88,"props":857,"children":858},{"style":160},[859],{"type":60,"value":339},{"type":54,"tag":88,"props":861,"children":862},{"style":160},[863],{"type":60,"value":344},{"type":54,"tag":88,"props":865,"children":866},{"class":90,"line":176},[867],{"type":54,"tag":88,"props":868,"children":869},{"emptyLinePlaceholder":401},[870],{"type":60,"value":404},{"type":54,"tag":88,"props":872,"children":873},{"class":90,"line":198},[874,878,882,886,890,894,898,902,906],{"type":54,"tag":88,"props":875,"children":876},{"style":418},[877],{"type":60,"value":421},{"type":54,"tag":88,"props":879,"children":880},{"style":154},[881],{"type":60,"value":545},{"type":54,"tag":88,"props":883,"children":884},{"style":160},[885],{"type":60,"value":219},{"type":54,"tag":88,"props":887,"children":888},{"style":154},[889],{"type":60,"value":554},{"type":54,"tag":88,"props":891,"children":892},{"style":160},[893],{"type":60,"value":559},{"type":54,"tag":88,"props":895,"children":896},{"style":154},[897],{"type":60,"value":564},{"type":54,"tag":88,"props":899,"children":900},{"style":160},[901],{"type":60,"value":559},{"type":54,"tag":88,"props":903,"children":904},{"style":154},[905],{"type":60,"value":157},{"type":54,"tag":88,"props":907,"children":908},{"style":160},[909],{"type":60,"value":577},{"type":54,"tag":88,"props":911,"children":912},{"class":90,"line":208},[913,917,922,926,930,934,938,942,946],{"type":54,"tag":88,"props":914,"children":915},{"style":418},[916],{"type":60,"value":421},{"type":54,"tag":88,"props":918,"children":919},{"style":154},[920],{"type":60,"value":921}," accountKey ",{"type":54,"tag":88,"props":923,"children":924},{"style":160},[925],{"type":60,"value":219},{"type":54,"tag":88,"props":927,"children":928},{"style":154},[929],{"type":60,"value":554},{"type":54,"tag":88,"props":931,"children":932},{"style":160},[933],{"type":60,"value":559},{"type":54,"tag":88,"props":935,"children":936},{"style":154},[937],{"type":60,"value":564},{"type":54,"tag":88,"props":939,"children":940},{"style":160},[941],{"type":60,"value":559},{"type":54,"tag":88,"props":943,"children":944},{"style":154},[945],{"type":60,"value":182},{"type":54,"tag":88,"props":947,"children":948},{"style":160},[949],{"type":60,"value":577},{"type":54,"tag":88,"props":951,"children":952},{"class":90,"line":255},[953],{"type":54,"tag":88,"props":954,"children":955},{"emptyLinePlaceholder":401},[956],{"type":60,"value":404},{"type":54,"tag":88,"props":958,"children":959},{"class":90,"line":500},[960,964,969,973,977,981,986,990,995],{"type":54,"tag":88,"props":961,"children":962},{"style":418},[963],{"type":60,"value":421},{"type":54,"tag":88,"props":965,"children":966},{"style":154},[967],{"type":60,"value":968}," sharedKeyCredential ",{"type":54,"tag":88,"props":970,"children":971},{"style":160},[972],{"type":60,"value":219},{"type":54,"tag":88,"props":974,"children":975},{"style":160},[976],{"type":60,"value":435},{"type":54,"tag":88,"props":978,"children":979},{"style":438},[980],{"type":60,"value":839},{"type":54,"tag":88,"props":982,"children":983},{"style":154},[984],{"type":60,"value":985},"(accountName",{"type":54,"tag":88,"props":987,"children":988},{"style":160},[989],{"type":60,"value":365},{"type":54,"tag":88,"props":991,"children":992},{"style":154},[993],{"type":60,"value":994}," accountKey)",{"type":54,"tag":88,"props":996,"children":997},{"style":160},[998],{"type":60,"value":344},{"type":54,"tag":88,"props":1000,"children":1001},{"class":90,"line":509},[1002,1006,1010,1014,1018,1022],{"type":54,"tag":88,"props":1003,"children":1004},{"style":418},[1005],{"type":60,"value":421},{"type":54,"tag":88,"props":1007,"children":1008},{"style":154},[1009],{"type":60,"value":590},{"type":54,"tag":88,"props":1011,"children":1012},{"style":160},[1013],{"type":60,"value":219},{"type":54,"tag":88,"props":1015,"children":1016},{"style":160},[1017],{"type":60,"value":435},{"type":54,"tag":88,"props":1019,"children":1020},{"style":438},[1021],{"type":60,"value":315},{"type":54,"tag":88,"props":1023,"children":1024},{"style":154},[1025],{"type":60,"value":607},{"type":54,"tag":88,"props":1027,"children":1028},{"class":90,"line":518},[1029,1033,1037,1041,1045,1049,1053,1057],{"type":54,"tag":88,"props":1030,"children":1031},{"style":160},[1032],{"type":60,"value":616},{"type":54,"tag":88,"props":1034,"children":1035},{"style":101},[1036],{"type":60,"value":621},{"type":54,"tag":88,"props":1038,"children":1039},{"style":160},[1040],{"type":60,"value":626},{"type":54,"tag":88,"props":1042,"children":1043},{"style":154},[1044],{"type":60,"value":631},{"type":54,"tag":88,"props":1046,"children":1047},{"style":160},[1048],{"type":60,"value":488},{"type":54,"tag":88,"props":1050,"children":1051},{"style":101},[1052],{"type":60,"value":640},{"type":54,"tag":88,"props":1054,"children":1055},{"style":160},[1056],{"type":60,"value":645},{"type":54,"tag":88,"props":1058,"children":1059},{"style":160},[1060],{"type":60,"value":650},{"type":54,"tag":88,"props":1062,"children":1063},{"class":90,"line":527},[1064],{"type":54,"tag":88,"props":1065,"children":1066},{"style":154},[1067],{"type":60,"value":1068},"  sharedKeyCredential\n",{"type":54,"tag":88,"props":1070,"children":1071},{"class":90,"line":535},[1072,1076],{"type":54,"tag":88,"props":1073,"children":1074},{"style":154},[1075],{"type":60,"value":493},{"type":54,"tag":88,"props":1077,"children":1078},{"style":160},[1079],{"type":60,"value":344},{"type":54,"tag":283,"props":1081,"children":1083},{"id":1082},"sas-token",[1084],{"type":60,"value":1085},"SAS Token",{"type":54,"tag":76,"props":1087,"children":1089},{"className":291,"code":1088,"language":21,"meta":81,"style":81},"import { QueueServiceClient } from \"@azure\u002Fstorage-queue\";\n\nconst accountName = process.env.AZURE_STORAGE_ACCOUNT_NAME!;\nconst sasToken = process.env.AZURE_STORAGE_SAS_TOKEN!;\n\nconst client = new QueueServiceClient(\n  `https:\u002F\u002F${accountName}.queue.core.windows.net${sasToken}`\n);\n",[1090],{"type":54,"tag":84,"props":1091,"children":1092},{"__ignoreMap":81},[1093,1132,1139,1178,1219,1226,1253,1294],{"type":54,"tag":88,"props":1094,"children":1095},{"class":90,"line":91},[1096,1100,1104,1108,1112,1116,1120,1124,1128],{"type":54,"tag":88,"props":1097,"children":1098},{"style":302},[1099],{"type":60,"value":305},{"type":54,"tag":88,"props":1101,"children":1102},{"style":160},[1103],{"type":60,"value":310},{"type":54,"tag":88,"props":1105,"children":1106},{"style":154},[1107],{"type":60,"value":315},{"type":54,"tag":88,"props":1109,"children":1110},{"style":160},[1111],{"type":60,"value":320},{"type":54,"tag":88,"props":1113,"children":1114},{"style":302},[1115],{"type":60,"value":325},{"type":54,"tag":88,"props":1117,"children":1118},{"style":160},[1119],{"type":60,"value":330},{"type":54,"tag":88,"props":1121,"children":1122},{"style":101},[1123],{"type":60,"value":49},{"type":54,"tag":88,"props":1125,"children":1126},{"style":160},[1127],{"type":60,"value":339},{"type":54,"tag":88,"props":1129,"children":1130},{"style":160},[1131],{"type":60,"value":344},{"type":54,"tag":88,"props":1133,"children":1134},{"class":90,"line":176},[1135],{"type":54,"tag":88,"props":1136,"children":1137},{"emptyLinePlaceholder":401},[1138],{"type":60,"value":404},{"type":54,"tag":88,"props":1140,"children":1141},{"class":90,"line":198},[1142,1146,1150,1154,1158,1162,1166,1170,1174],{"type":54,"tag":88,"props":1143,"children":1144},{"style":418},[1145],{"type":60,"value":421},{"type":54,"tag":88,"props":1147,"children":1148},{"style":154},[1149],{"type":60,"value":545},{"type":54,"tag":88,"props":1151,"children":1152},{"style":160},[1153],{"type":60,"value":219},{"type":54,"tag":88,"props":1155,"children":1156},{"style":154},[1157],{"type":60,"value":554},{"type":54,"tag":88,"props":1159,"children":1160},{"style":160},[1161],{"type":60,"value":559},{"type":54,"tag":88,"props":1163,"children":1164},{"style":154},[1165],{"type":60,"value":564},{"type":54,"tag":88,"props":1167,"children":1168},{"style":160},[1169],{"type":60,"value":559},{"type":54,"tag":88,"props":1171,"children":1172},{"style":154},[1173],{"type":60,"value":157},{"type":54,"tag":88,"props":1175,"children":1176},{"style":160},[1177],{"type":60,"value":577},{"type":54,"tag":88,"props":1179,"children":1180},{"class":90,"line":208},[1181,1185,1190,1194,1198,1202,1206,1210,1215],{"type":54,"tag":88,"props":1182,"children":1183},{"style":418},[1184],{"type":60,"value":421},{"type":54,"tag":88,"props":1186,"children":1187},{"style":154},[1188],{"type":60,"value":1189}," sasToken ",{"type":54,"tag":88,"props":1191,"children":1192},{"style":160},[1193],{"type":60,"value":219},{"type":54,"tag":88,"props":1195,"children":1196},{"style":154},[1197],{"type":60,"value":554},{"type":54,"tag":88,"props":1199,"children":1200},{"style":160},[1201],{"type":60,"value":559},{"type":54,"tag":88,"props":1203,"children":1204},{"style":154},[1205],{"type":60,"value":564},{"type":54,"tag":88,"props":1207,"children":1208},{"style":160},[1209],{"type":60,"value":559},{"type":54,"tag":88,"props":1211,"children":1212},{"style":154},[1213],{"type":60,"value":1214},"AZURE_STORAGE_SAS_TOKEN",{"type":54,"tag":88,"props":1216,"children":1217},{"style":160},[1218],{"type":60,"value":577},{"type":54,"tag":88,"props":1220,"children":1221},{"class":90,"line":255},[1222],{"type":54,"tag":88,"props":1223,"children":1224},{"emptyLinePlaceholder":401},[1225],{"type":60,"value":404},{"type":54,"tag":88,"props":1227,"children":1228},{"class":90,"line":500},[1229,1233,1237,1241,1245,1249],{"type":54,"tag":88,"props":1230,"children":1231},{"style":418},[1232],{"type":60,"value":421},{"type":54,"tag":88,"props":1234,"children":1235},{"style":154},[1236],{"type":60,"value":590},{"type":54,"tag":88,"props":1238,"children":1239},{"style":160},[1240],{"type":60,"value":219},{"type":54,"tag":88,"props":1242,"children":1243},{"style":160},[1244],{"type":60,"value":435},{"type":54,"tag":88,"props":1246,"children":1247},{"style":438},[1248],{"type":60,"value":315},{"type":54,"tag":88,"props":1250,"children":1251},{"style":154},[1252],{"type":60,"value":607},{"type":54,"tag":88,"props":1254,"children":1255},{"class":90,"line":509},[1256,1260,1264,1268,1272,1276,1280,1284,1289],{"type":54,"tag":88,"props":1257,"children":1258},{"style":160},[1259],{"type":60,"value":616},{"type":54,"tag":88,"props":1261,"children":1262},{"style":101},[1263],{"type":60,"value":621},{"type":54,"tag":88,"props":1265,"children":1266},{"style":160},[1267],{"type":60,"value":626},{"type":54,"tag":88,"props":1269,"children":1270},{"style":154},[1271],{"type":60,"value":631},{"type":54,"tag":88,"props":1273,"children":1274},{"style":160},[1275],{"type":60,"value":488},{"type":54,"tag":88,"props":1277,"children":1278},{"style":101},[1279],{"type":60,"value":640},{"type":54,"tag":88,"props":1281,"children":1282},{"style":160},[1283],{"type":60,"value":626},{"type":54,"tag":88,"props":1285,"children":1286},{"style":154},[1287],{"type":60,"value":1288},"sasToken",{"type":54,"tag":88,"props":1290,"children":1291},{"style":160},[1292],{"type":60,"value":1293},"}`\n",{"type":54,"tag":88,"props":1295,"children":1296},{"class":90,"line":518},[1297,1301],{"type":54,"tag":88,"props":1298,"children":1299},{"style":154},[1300],{"type":60,"value":493},{"type":54,"tag":88,"props":1302,"children":1303},{"style":160},[1304],{"type":60,"value":344},{"type":54,"tag":69,"props":1306,"children":1308},{"id":1307},"client-hierarchy",[1309],{"type":60,"value":1310},"Client Hierarchy",{"type":54,"tag":76,"props":1312,"children":1316},{"className":1313,"code":1315,"language":60},[1314],"language-text","QueueServiceClient (account level)\n└── QueueClient (queue level)\n    └── Messages (send, receive, peek, delete)\n",[1317],{"type":54,"tag":84,"props":1318,"children":1319},{"__ignoreMap":81},[1320],{"type":60,"value":1315},{"type":54,"tag":69,"props":1322,"children":1324},{"id":1323},"queue-operations",[1325],{"type":60,"value":1326},"Queue Operations",{"type":54,"tag":283,"props":1328,"children":1330},{"id":1329},"create-queue",[1331],{"type":60,"value":1332},"Create Queue",{"type":54,"tag":76,"props":1334,"children":1336},{"className":291,"code":1335,"language":21,"meta":81,"style":81},"const queueClient = client.getQueueClient(\"my-queue\");\nawait queueClient.create();\n\n\u002F\u002F Or create if not exists\nawait queueClient.createIfNotExists();\n",[1337],{"type":54,"tag":84,"props":1338,"children":1339},{"__ignoreMap":81},[1340,1395,1426,1433,1441],{"type":54,"tag":88,"props":1341,"children":1342},{"class":90,"line":91},[1343,1347,1352,1356,1361,1365,1370,1374,1378,1383,1387,1391],{"type":54,"tag":88,"props":1344,"children":1345},{"style":418},[1346],{"type":60,"value":421},{"type":54,"tag":88,"props":1348,"children":1349},{"style":154},[1350],{"type":60,"value":1351}," queueClient ",{"type":54,"tag":88,"props":1353,"children":1354},{"style":160},[1355],{"type":60,"value":219},{"type":54,"tag":88,"props":1357,"children":1358},{"style":154},[1359],{"type":60,"value":1360}," client",{"type":54,"tag":88,"props":1362,"children":1363},{"style":160},[1364],{"type":60,"value":559},{"type":54,"tag":88,"props":1366,"children":1367},{"style":438},[1368],{"type":60,"value":1369},"getQueueClient",{"type":54,"tag":88,"props":1371,"children":1372},{"style":154},[1373],{"type":60,"value":445},{"type":54,"tag":88,"props":1375,"children":1376},{"style":160},[1377],{"type":60,"value":339},{"type":54,"tag":88,"props":1379,"children":1380},{"style":101},[1381],{"type":60,"value":1382},"my-queue",{"type":54,"tag":88,"props":1384,"children":1385},{"style":160},[1386],{"type":60,"value":339},{"type":54,"tag":88,"props":1388,"children":1389},{"style":154},[1390],{"type":60,"value":493},{"type":54,"tag":88,"props":1392,"children":1393},{"style":160},[1394],{"type":60,"value":344},{"type":54,"tag":88,"props":1396,"children":1397},{"class":90,"line":176},[1398,1403,1408,1412,1417,1422],{"type":54,"tag":88,"props":1399,"children":1400},{"style":302},[1401],{"type":60,"value":1402},"await",{"type":54,"tag":88,"props":1404,"children":1405},{"style":154},[1406],{"type":60,"value":1407}," queueClient",{"type":54,"tag":88,"props":1409,"children":1410},{"style":160},[1411],{"type":60,"value":559},{"type":54,"tag":88,"props":1413,"children":1414},{"style":438},[1415],{"type":60,"value":1416},"create",{"type":54,"tag":88,"props":1418,"children":1419},{"style":154},[1420],{"type":60,"value":1421},"()",{"type":54,"tag":88,"props":1423,"children":1424},{"style":160},[1425],{"type":60,"value":344},{"type":54,"tag":88,"props":1427,"children":1428},{"class":90,"line":198},[1429],{"type":54,"tag":88,"props":1430,"children":1431},{"emptyLinePlaceholder":401},[1432],{"type":60,"value":404},{"type":54,"tag":88,"props":1434,"children":1435},{"class":90,"line":208},[1436],{"type":54,"tag":88,"props":1437,"children":1438},{"style":202},[1439],{"type":60,"value":1440},"\u002F\u002F Or create if not exists\n",{"type":54,"tag":88,"props":1442,"children":1443},{"class":90,"line":255},[1444,1448,1452,1456,1461,1465],{"type":54,"tag":88,"props":1445,"children":1446},{"style":302},[1447],{"type":60,"value":1402},{"type":54,"tag":88,"props":1449,"children":1450},{"style":154},[1451],{"type":60,"value":1407},{"type":54,"tag":88,"props":1453,"children":1454},{"style":160},[1455],{"type":60,"value":559},{"type":54,"tag":88,"props":1457,"children":1458},{"style":438},[1459],{"type":60,"value":1460},"createIfNotExists",{"type":54,"tag":88,"props":1462,"children":1463},{"style":154},[1464],{"type":60,"value":1421},{"type":54,"tag":88,"props":1466,"children":1467},{"style":160},[1468],{"type":60,"value":344},{"type":54,"tag":283,"props":1470,"children":1472},{"id":1471},"list-queues",[1473],{"type":60,"value":1474},"List Queues",{"type":54,"tag":76,"props":1476,"children":1478},{"className":291,"code":1477,"language":21,"meta":81,"style":81},"for await (const queue of client.listQueues()) {\n  console.log(queue.name);\n}\n\n\u002F\u002F With prefix filter\nfor await (const queue of client.listQueues({ prefix: \"task-\" })) {\n  console.log(queue.name);\n}\n",[1479],{"type":54,"tag":84,"props":1480,"children":1481},{"__ignoreMap":81},[1482,1537,1580,1588,1595,1603,1685,1724],{"type":54,"tag":88,"props":1483,"children":1484},{"class":90,"line":91},[1485,1490,1495,1500,1504,1509,1514,1518,1522,1527,1532],{"type":54,"tag":88,"props":1486,"children":1487},{"style":302},[1488],{"type":60,"value":1489},"for",{"type":54,"tag":88,"props":1491,"children":1492},{"style":302},[1493],{"type":60,"value":1494}," await",{"type":54,"tag":88,"props":1496,"children":1497},{"style":154},[1498],{"type":60,"value":1499}," (",{"type":54,"tag":88,"props":1501,"children":1502},{"style":418},[1503],{"type":60,"value":421},{"type":54,"tag":88,"props":1505,"children":1506},{"style":154},[1507],{"type":60,"value":1508}," queue ",{"type":54,"tag":88,"props":1510,"children":1511},{"style":160},[1512],{"type":60,"value":1513},"of",{"type":54,"tag":88,"props":1515,"children":1516},{"style":154},[1517],{"type":60,"value":1360},{"type":54,"tag":88,"props":1519,"children":1520},{"style":160},[1521],{"type":60,"value":559},{"type":54,"tag":88,"props":1523,"children":1524},{"style":438},[1525],{"type":60,"value":1526},"listQueues",{"type":54,"tag":88,"props":1528,"children":1529},{"style":154},[1530],{"type":60,"value":1531},"()) ",{"type":54,"tag":88,"props":1533,"children":1534},{"style":160},[1535],{"type":60,"value":1536},"{\n",{"type":54,"tag":88,"props":1538,"children":1539},{"class":90,"line":176},[1540,1545,1549,1554,1558,1563,1567,1572,1576],{"type":54,"tag":88,"props":1541,"children":1542},{"style":154},[1543],{"type":60,"value":1544},"  console",{"type":54,"tag":88,"props":1546,"children":1547},{"style":160},[1548],{"type":60,"value":559},{"type":54,"tag":88,"props":1550,"children":1551},{"style":438},[1552],{"type":60,"value":1553},"log",{"type":54,"tag":88,"props":1555,"children":1556},{"style":453},[1557],{"type":60,"value":445},{"type":54,"tag":88,"props":1559,"children":1560},{"style":154},[1561],{"type":60,"value":1562},"queue",{"type":54,"tag":88,"props":1564,"children":1565},{"style":160},[1566],{"type":60,"value":559},{"type":54,"tag":88,"props":1568,"children":1569},{"style":154},[1570],{"type":60,"value":1571},"name",{"type":54,"tag":88,"props":1573,"children":1574},{"style":453},[1575],{"type":60,"value":493},{"type":54,"tag":88,"props":1577,"children":1578},{"style":160},[1579],{"type":60,"value":344},{"type":54,"tag":88,"props":1581,"children":1582},{"class":90,"line":198},[1583],{"type":54,"tag":88,"props":1584,"children":1585},{"style":160},[1586],{"type":60,"value":1587},"}\n",{"type":54,"tag":88,"props":1589,"children":1590},{"class":90,"line":208},[1591],{"type":54,"tag":88,"props":1592,"children":1593},{"emptyLinePlaceholder":401},[1594],{"type":60,"value":404},{"type":54,"tag":88,"props":1596,"children":1597},{"class":90,"line":255},[1598],{"type":54,"tag":88,"props":1599,"children":1600},{"style":202},[1601],{"type":60,"value":1602},"\u002F\u002F With prefix filter\n",{"type":54,"tag":88,"props":1604,"children":1605},{"class":90,"line":500},[1606,1610,1614,1618,1622,1626,1630,1634,1638,1642,1646,1650,1655,1659,1663,1668,1672,1676,1681],{"type":54,"tag":88,"props":1607,"children":1608},{"style":302},[1609],{"type":60,"value":1489},{"type":54,"tag":88,"props":1611,"children":1612},{"style":302},[1613],{"type":60,"value":1494},{"type":54,"tag":88,"props":1615,"children":1616},{"style":154},[1617],{"type":60,"value":1499},{"type":54,"tag":88,"props":1619,"children":1620},{"style":418},[1621],{"type":60,"value":421},{"type":54,"tag":88,"props":1623,"children":1624},{"style":154},[1625],{"type":60,"value":1508},{"type":54,"tag":88,"props":1627,"children":1628},{"style":160},[1629],{"type":60,"value":1513},{"type":54,"tag":88,"props":1631,"children":1632},{"style":154},[1633],{"type":60,"value":1360},{"type":54,"tag":88,"props":1635,"children":1636},{"style":160},[1637],{"type":60,"value":559},{"type":54,"tag":88,"props":1639,"children":1640},{"style":438},[1641],{"type":60,"value":1526},{"type":54,"tag":88,"props":1643,"children":1644},{"style":154},[1645],{"type":60,"value":445},{"type":54,"tag":88,"props":1647,"children":1648},{"style":160},[1649],{"type":60,"value":450},{"type":54,"tag":88,"props":1651,"children":1652},{"style":453},[1653],{"type":60,"value":1654}," prefix",{"type":54,"tag":88,"props":1656,"children":1657},{"style":160},[1658],{"type":60,"value":461},{"type":54,"tag":88,"props":1660,"children":1661},{"style":160},[1662],{"type":60,"value":330},{"type":54,"tag":88,"props":1664,"children":1665},{"style":101},[1666],{"type":60,"value":1667},"task-",{"type":54,"tag":88,"props":1669,"children":1670},{"style":160},[1671],{"type":60,"value":339},{"type":54,"tag":88,"props":1673,"children":1674},{"style":160},[1675],{"type":60,"value":320},{"type":54,"tag":88,"props":1677,"children":1678},{"style":154},[1679],{"type":60,"value":1680},")) ",{"type":54,"tag":88,"props":1682,"children":1683},{"style":160},[1684],{"type":60,"value":1536},{"type":54,"tag":88,"props":1686,"children":1687},{"class":90,"line":509},[1688,1692,1696,1700,1704,1708,1712,1716,1720],{"type":54,"tag":88,"props":1689,"children":1690},{"style":154},[1691],{"type":60,"value":1544},{"type":54,"tag":88,"props":1693,"children":1694},{"style":160},[1695],{"type":60,"value":559},{"type":54,"tag":88,"props":1697,"children":1698},{"style":438},[1699],{"type":60,"value":1553},{"type":54,"tag":88,"props":1701,"children":1702},{"style":453},[1703],{"type":60,"value":445},{"type":54,"tag":88,"props":1705,"children":1706},{"style":154},[1707],{"type":60,"value":1562},{"type":54,"tag":88,"props":1709,"children":1710},{"style":160},[1711],{"type":60,"value":559},{"type":54,"tag":88,"props":1713,"children":1714},{"style":154},[1715],{"type":60,"value":1571},{"type":54,"tag":88,"props":1717,"children":1718},{"style":453},[1719],{"type":60,"value":493},{"type":54,"tag":88,"props":1721,"children":1722},{"style":160},[1723],{"type":60,"value":344},{"type":54,"tag":88,"props":1725,"children":1726},{"class":90,"line":518},[1727],{"type":54,"tag":88,"props":1728,"children":1729},{"style":160},[1730],{"type":60,"value":1587},{"type":54,"tag":283,"props":1732,"children":1734},{"id":1733},"delete-queue",[1735],{"type":60,"value":1736},"Delete Queue",{"type":54,"tag":76,"props":1738,"children":1740},{"className":291,"code":1739,"language":21,"meta":81,"style":81},"await queueClient.delete();\n\n\u002F\u002F Or delete if exists\nawait queueClient.deleteIfExists();\n",[1741],{"type":54,"tag":84,"props":1742,"children":1743},{"__ignoreMap":81},[1744,1772,1779,1787],{"type":54,"tag":88,"props":1745,"children":1746},{"class":90,"line":91},[1747,1751,1755,1759,1764,1768],{"type":54,"tag":88,"props":1748,"children":1749},{"style":302},[1750],{"type":60,"value":1402},{"type":54,"tag":88,"props":1752,"children":1753},{"style":154},[1754],{"type":60,"value":1407},{"type":54,"tag":88,"props":1756,"children":1757},{"style":160},[1758],{"type":60,"value":559},{"type":54,"tag":88,"props":1760,"children":1761},{"style":438},[1762],{"type":60,"value":1763},"delete",{"type":54,"tag":88,"props":1765,"children":1766},{"style":154},[1767],{"type":60,"value":1421},{"type":54,"tag":88,"props":1769,"children":1770},{"style":160},[1771],{"type":60,"value":344},{"type":54,"tag":88,"props":1773,"children":1774},{"class":90,"line":176},[1775],{"type":54,"tag":88,"props":1776,"children":1777},{"emptyLinePlaceholder":401},[1778],{"type":60,"value":404},{"type":54,"tag":88,"props":1780,"children":1781},{"class":90,"line":198},[1782],{"type":54,"tag":88,"props":1783,"children":1784},{"style":202},[1785],{"type":60,"value":1786},"\u002F\u002F Or delete if exists\n",{"type":54,"tag":88,"props":1788,"children":1789},{"class":90,"line":208},[1790,1794,1798,1802,1807,1811],{"type":54,"tag":88,"props":1791,"children":1792},{"style":302},[1793],{"type":60,"value":1402},{"type":54,"tag":88,"props":1795,"children":1796},{"style":154},[1797],{"type":60,"value":1407},{"type":54,"tag":88,"props":1799,"children":1800},{"style":160},[1801],{"type":60,"value":559},{"type":54,"tag":88,"props":1803,"children":1804},{"style":438},[1805],{"type":60,"value":1806},"deleteIfExists",{"type":54,"tag":88,"props":1808,"children":1809},{"style":154},[1810],{"type":60,"value":1421},{"type":54,"tag":88,"props":1812,"children":1813},{"style":160},[1814],{"type":60,"value":344},{"type":54,"tag":283,"props":1816,"children":1818},{"id":1817},"get-queue-properties",[1819],{"type":60,"value":1820},"Get Queue Properties",{"type":54,"tag":76,"props":1822,"children":1824},{"className":291,"code":1823,"language":21,"meta":81,"style":81},"const properties = await queueClient.getProperties();\nconsole.log(\"Approximate message count:\", properties.approximateMessagesCount);\nconsole.log(\"Metadata:\", properties.metadata);\n",[1825],{"type":54,"tag":84,"props":1826,"children":1827},{"__ignoreMap":81},[1828,1869,1924],{"type":54,"tag":88,"props":1829,"children":1830},{"class":90,"line":91},[1831,1835,1840,1844,1848,1852,1856,1861,1865],{"type":54,"tag":88,"props":1832,"children":1833},{"style":418},[1834],{"type":60,"value":421},{"type":54,"tag":88,"props":1836,"children":1837},{"style":154},[1838],{"type":60,"value":1839}," properties ",{"type":54,"tag":88,"props":1841,"children":1842},{"style":160},[1843],{"type":60,"value":219},{"type":54,"tag":88,"props":1845,"children":1846},{"style":302},[1847],{"type":60,"value":1494},{"type":54,"tag":88,"props":1849,"children":1850},{"style":154},[1851],{"type":60,"value":1407},{"type":54,"tag":88,"props":1853,"children":1854},{"style":160},[1855],{"type":60,"value":559},{"type":54,"tag":88,"props":1857,"children":1858},{"style":438},[1859],{"type":60,"value":1860},"getProperties",{"type":54,"tag":88,"props":1862,"children":1863},{"style":154},[1864],{"type":60,"value":1421},{"type":54,"tag":88,"props":1866,"children":1867},{"style":160},[1868],{"type":60,"value":344},{"type":54,"tag":88,"props":1870,"children":1871},{"class":90,"line":176},[1872,1877,1881,1885,1889,1893,1898,1902,1906,1911,1915,1920],{"type":54,"tag":88,"props":1873,"children":1874},{"style":154},[1875],{"type":60,"value":1876},"console",{"type":54,"tag":88,"props":1878,"children":1879},{"style":160},[1880],{"type":60,"value":559},{"type":54,"tag":88,"props":1882,"children":1883},{"style":438},[1884],{"type":60,"value":1553},{"type":54,"tag":88,"props":1886,"children":1887},{"style":154},[1888],{"type":60,"value":445},{"type":54,"tag":88,"props":1890,"children":1891},{"style":160},[1892],{"type":60,"value":339},{"type":54,"tag":88,"props":1894,"children":1895},{"style":101},[1896],{"type":60,"value":1897},"Approximate message count:",{"type":54,"tag":88,"props":1899,"children":1900},{"style":160},[1901],{"type":60,"value":339},{"type":54,"tag":88,"props":1903,"children":1904},{"style":160},[1905],{"type":60,"value":365},{"type":54,"tag":88,"props":1907,"children":1908},{"style":154},[1909],{"type":60,"value":1910}," properties",{"type":54,"tag":88,"props":1912,"children":1913},{"style":160},[1914],{"type":60,"value":559},{"type":54,"tag":88,"props":1916,"children":1917},{"style":154},[1918],{"type":60,"value":1919},"approximateMessagesCount)",{"type":54,"tag":88,"props":1921,"children":1922},{"style":160},[1923],{"type":60,"value":344},{"type":54,"tag":88,"props":1925,"children":1926},{"class":90,"line":198},[1927,1931,1935,1939,1943,1947,1952,1956,1960,1964,1968,1973],{"type":54,"tag":88,"props":1928,"children":1929},{"style":154},[1930],{"type":60,"value":1876},{"type":54,"tag":88,"props":1932,"children":1933},{"style":160},[1934],{"type":60,"value":559},{"type":54,"tag":88,"props":1936,"children":1937},{"style":438},[1938],{"type":60,"value":1553},{"type":54,"tag":88,"props":1940,"children":1941},{"style":154},[1942],{"type":60,"value":445},{"type":54,"tag":88,"props":1944,"children":1945},{"style":160},[1946],{"type":60,"value":339},{"type":54,"tag":88,"props":1948,"children":1949},{"style":101},[1950],{"type":60,"value":1951},"Metadata:",{"type":54,"tag":88,"props":1953,"children":1954},{"style":160},[1955],{"type":60,"value":339},{"type":54,"tag":88,"props":1957,"children":1958},{"style":160},[1959],{"type":60,"value":365},{"type":54,"tag":88,"props":1961,"children":1962},{"style":154},[1963],{"type":60,"value":1910},{"type":54,"tag":88,"props":1965,"children":1966},{"style":160},[1967],{"type":60,"value":559},{"type":54,"tag":88,"props":1969,"children":1970},{"style":154},[1971],{"type":60,"value":1972},"metadata)",{"type":54,"tag":88,"props":1974,"children":1975},{"style":160},[1976],{"type":60,"value":344},{"type":54,"tag":283,"props":1978,"children":1980},{"id":1979},"set-queue-metadata",[1981],{"type":60,"value":1982},"Set Queue Metadata",{"type":54,"tag":76,"props":1984,"children":1986},{"className":291,"code":1985,"language":21,"meta":81,"style":81},"await queueClient.setMetadata({\n  department: \"engineering\",\n  priority: \"high\",\n});\n",[1987],{"type":54,"tag":84,"props":1988,"children":1989},{"__ignoreMap":81},[1990,2018,2047,2076],{"type":54,"tag":88,"props":1991,"children":1992},{"class":90,"line":91},[1993,1997,2001,2005,2010,2014],{"type":54,"tag":88,"props":1994,"children":1995},{"style":302},[1996],{"type":60,"value":1402},{"type":54,"tag":88,"props":1998,"children":1999},{"style":154},[2000],{"type":60,"value":1407},{"type":54,"tag":88,"props":2002,"children":2003},{"style":160},[2004],{"type":60,"value":559},{"type":54,"tag":88,"props":2006,"children":2007},{"style":438},[2008],{"type":60,"value":2009},"setMetadata",{"type":54,"tag":88,"props":2011,"children":2012},{"style":154},[2013],{"type":60,"value":445},{"type":54,"tag":88,"props":2015,"children":2016},{"style":160},[2017],{"type":60,"value":1536},{"type":54,"tag":88,"props":2019,"children":2020},{"class":90,"line":176},[2021,2026,2030,2034,2039,2043],{"type":54,"tag":88,"props":2022,"children":2023},{"style":453},[2024],{"type":60,"value":2025},"  department",{"type":54,"tag":88,"props":2027,"children":2028},{"style":160},[2029],{"type":60,"value":461},{"type":54,"tag":88,"props":2031,"children":2032},{"style":160},[2033],{"type":60,"value":330},{"type":54,"tag":88,"props":2035,"children":2036},{"style":101},[2037],{"type":60,"value":2038},"engineering",{"type":54,"tag":88,"props":2040,"children":2041},{"style":160},[2042],{"type":60,"value":339},{"type":54,"tag":88,"props":2044,"children":2045},{"style":160},[2046],{"type":60,"value":650},{"type":54,"tag":88,"props":2048,"children":2049},{"class":90,"line":198},[2050,2055,2059,2063,2068,2072],{"type":54,"tag":88,"props":2051,"children":2052},{"style":453},[2053],{"type":60,"value":2054},"  priority",{"type":54,"tag":88,"props":2056,"children":2057},{"style":160},[2058],{"type":60,"value":461},{"type":54,"tag":88,"props":2060,"children":2061},{"style":160},[2062],{"type":60,"value":330},{"type":54,"tag":88,"props":2064,"children":2065},{"style":101},[2066],{"type":60,"value":2067},"high",{"type":54,"tag":88,"props":2069,"children":2070},{"style":160},[2071],{"type":60,"value":339},{"type":54,"tag":88,"props":2073,"children":2074},{"style":160},[2075],{"type":60,"value":650},{"type":54,"tag":88,"props":2077,"children":2078},{"class":90,"line":208},[2079,2083,2087],{"type":54,"tag":88,"props":2080,"children":2081},{"style":160},[2082],{"type":60,"value":488},{"type":54,"tag":88,"props":2084,"children":2085},{"style":154},[2086],{"type":60,"value":493},{"type":54,"tag":88,"props":2088,"children":2089},{"style":160},[2090],{"type":60,"value":344},{"type":54,"tag":69,"props":2092,"children":2094},{"id":2093},"message-operations",[2095],{"type":60,"value":2096},"Message Operations",{"type":54,"tag":283,"props":2098,"children":2100},{"id":2099},"send-message",[2101],{"type":60,"value":2102},"Send Message",{"type":54,"tag":76,"props":2104,"children":2106},{"className":291,"code":2105,"language":21,"meta":81,"style":81},"const queueClient = client.getQueueClient(\"my-queue\");\n\n\u002F\u002F Simple message\nawait queueClient.sendMessage(\"Hello, World!\");\n\n\u002F\u002F With options\nawait queueClient.sendMessage(\"Delayed message\", {\n  visibilityTimeout: 60, \u002F\u002F Hidden for 60 seconds\n  messageTimeToLive: 3600, \u002F\u002F Expires in 1 hour\n});\n\n\u002F\u002F JSON message (must be string)\nconst task = { type: \"process\", data: { id: 123 } };\nawait queueClient.sendMessage(JSON.stringify(task));\n",[2107],{"type":54,"tag":84,"props":2108,"children":2109},{"__ignoreMap":81},[2110,2161,2168,2176,2221,2228,2236,2281,2308,2334,2349,2356,2364,2446],{"type":54,"tag":88,"props":2111,"children":2112},{"class":90,"line":91},[2113,2117,2121,2125,2129,2133,2137,2141,2145,2149,2153,2157],{"type":54,"tag":88,"props":2114,"children":2115},{"style":418},[2116],{"type":60,"value":421},{"type":54,"tag":88,"props":2118,"children":2119},{"style":154},[2120],{"type":60,"value":1351},{"type":54,"tag":88,"props":2122,"children":2123},{"style":160},[2124],{"type":60,"value":219},{"type":54,"tag":88,"props":2126,"children":2127},{"style":154},[2128],{"type":60,"value":1360},{"type":54,"tag":88,"props":2130,"children":2131},{"style":160},[2132],{"type":60,"value":559},{"type":54,"tag":88,"props":2134,"children":2135},{"style":438},[2136],{"type":60,"value":1369},{"type":54,"tag":88,"props":2138,"children":2139},{"style":154},[2140],{"type":60,"value":445},{"type":54,"tag":88,"props":2142,"children":2143},{"style":160},[2144],{"type":60,"value":339},{"type":54,"tag":88,"props":2146,"children":2147},{"style":101},[2148],{"type":60,"value":1382},{"type":54,"tag":88,"props":2150,"children":2151},{"style":160},[2152],{"type":60,"value":339},{"type":54,"tag":88,"props":2154,"children":2155},{"style":154},[2156],{"type":60,"value":493},{"type":54,"tag":88,"props":2158,"children":2159},{"style":160},[2160],{"type":60,"value":344},{"type":54,"tag":88,"props":2162,"children":2163},{"class":90,"line":176},[2164],{"type":54,"tag":88,"props":2165,"children":2166},{"emptyLinePlaceholder":401},[2167],{"type":60,"value":404},{"type":54,"tag":88,"props":2169,"children":2170},{"class":90,"line":198},[2171],{"type":54,"tag":88,"props":2172,"children":2173},{"style":202},[2174],{"type":60,"value":2175},"\u002F\u002F Simple message\n",{"type":54,"tag":88,"props":2177,"children":2178},{"class":90,"line":208},[2179,2183,2187,2191,2196,2200,2204,2209,2213,2217],{"type":54,"tag":88,"props":2180,"children":2181},{"style":302},[2182],{"type":60,"value":1402},{"type":54,"tag":88,"props":2184,"children":2185},{"style":154},[2186],{"type":60,"value":1407},{"type":54,"tag":88,"props":2188,"children":2189},{"style":160},[2190],{"type":60,"value":559},{"type":54,"tag":88,"props":2192,"children":2193},{"style":438},[2194],{"type":60,"value":2195},"sendMessage",{"type":54,"tag":88,"props":2197,"children":2198},{"style":154},[2199],{"type":60,"value":445},{"type":54,"tag":88,"props":2201,"children":2202},{"style":160},[2203],{"type":60,"value":339},{"type":54,"tag":88,"props":2205,"children":2206},{"style":101},[2207],{"type":60,"value":2208},"Hello, World!",{"type":54,"tag":88,"props":2210,"children":2211},{"style":160},[2212],{"type":60,"value":339},{"type":54,"tag":88,"props":2214,"children":2215},{"style":154},[2216],{"type":60,"value":493},{"type":54,"tag":88,"props":2218,"children":2219},{"style":160},[2220],{"type":60,"value":344},{"type":54,"tag":88,"props":2222,"children":2223},{"class":90,"line":255},[2224],{"type":54,"tag":88,"props":2225,"children":2226},{"emptyLinePlaceholder":401},[2227],{"type":60,"value":404},{"type":54,"tag":88,"props":2229,"children":2230},{"class":90,"line":500},[2231],{"type":54,"tag":88,"props":2232,"children":2233},{"style":202},[2234],{"type":60,"value":2235},"\u002F\u002F With options\n",{"type":54,"tag":88,"props":2237,"children":2238},{"class":90,"line":509},[2239,2243,2247,2251,2255,2259,2263,2268,2272,2276],{"type":54,"tag":88,"props":2240,"children":2241},{"style":302},[2242],{"type":60,"value":1402},{"type":54,"tag":88,"props":2244,"children":2245},{"style":154},[2246],{"type":60,"value":1407},{"type":54,"tag":88,"props":2248,"children":2249},{"style":160},[2250],{"type":60,"value":559},{"type":54,"tag":88,"props":2252,"children":2253},{"style":438},[2254],{"type":60,"value":2195},{"type":54,"tag":88,"props":2256,"children":2257},{"style":154},[2258],{"type":60,"value":445},{"type":54,"tag":88,"props":2260,"children":2261},{"style":160},[2262],{"type":60,"value":339},{"type":54,"tag":88,"props":2264,"children":2265},{"style":101},[2266],{"type":60,"value":2267},"Delayed message",{"type":54,"tag":88,"props":2269,"children":2270},{"style":160},[2271],{"type":60,"value":339},{"type":54,"tag":88,"props":2273,"children":2274},{"style":160},[2275],{"type":60,"value":365},{"type":54,"tag":88,"props":2277,"children":2278},{"style":160},[2279],{"type":60,"value":2280}," {\n",{"type":54,"tag":88,"props":2282,"children":2283},{"class":90,"line":518},[2284,2289,2293,2299,2303],{"type":54,"tag":88,"props":2285,"children":2286},{"style":453},[2287],{"type":60,"value":2288},"  visibilityTimeout",{"type":54,"tag":88,"props":2290,"children":2291},{"style":160},[2292],{"type":60,"value":461},{"type":54,"tag":88,"props":2294,"children":2296},{"style":2295},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[2297],{"type":60,"value":2298}," 60",{"type":54,"tag":88,"props":2300,"children":2301},{"style":160},[2302],{"type":60,"value":365},{"type":54,"tag":88,"props":2304,"children":2305},{"style":202},[2306],{"type":60,"value":2307}," \u002F\u002F Hidden for 60 seconds\n",{"type":54,"tag":88,"props":2309,"children":2310},{"class":90,"line":527},[2311,2316,2320,2325,2329],{"type":54,"tag":88,"props":2312,"children":2313},{"style":453},[2314],{"type":60,"value":2315},"  messageTimeToLive",{"type":54,"tag":88,"props":2317,"children":2318},{"style":160},[2319],{"type":60,"value":461},{"type":54,"tag":88,"props":2321,"children":2322},{"style":2295},[2323],{"type":60,"value":2324}," 3600",{"type":54,"tag":88,"props":2326,"children":2327},{"style":160},[2328],{"type":60,"value":365},{"type":54,"tag":88,"props":2330,"children":2331},{"style":202},[2332],{"type":60,"value":2333}," \u002F\u002F Expires in 1 hour\n",{"type":54,"tag":88,"props":2335,"children":2336},{"class":90,"line":535},[2337,2341,2345],{"type":54,"tag":88,"props":2338,"children":2339},{"style":160},[2340],{"type":60,"value":488},{"type":54,"tag":88,"props":2342,"children":2343},{"style":154},[2344],{"type":60,"value":493},{"type":54,"tag":88,"props":2346,"children":2347},{"style":160},[2348],{"type":60,"value":344},{"type":54,"tag":88,"props":2350,"children":2351},{"class":90,"line":580},[2352],{"type":54,"tag":88,"props":2353,"children":2354},{"emptyLinePlaceholder":401},[2355],{"type":60,"value":404},{"type":54,"tag":88,"props":2357,"children":2358},{"class":90,"line":610},[2359],{"type":54,"tag":88,"props":2360,"children":2361},{"style":202},[2362],{"type":60,"value":2363},"\u002F\u002F JSON message (must be string)\n",{"type":54,"tag":88,"props":2365,"children":2366},{"class":90,"line":653},[2367,2371,2376,2380,2384,2389,2393,2397,2402,2406,2410,2415,2419,2423,2428,2432,2437,2441],{"type":54,"tag":88,"props":2368,"children":2369},{"style":418},[2370],{"type":60,"value":421},{"type":54,"tag":88,"props":2372,"children":2373},{"style":154},[2374],{"type":60,"value":2375}," task ",{"type":54,"tag":88,"props":2377,"children":2378},{"style":160},[2379],{"type":60,"value":219},{"type":54,"tag":88,"props":2381,"children":2382},{"style":160},[2383],{"type":60,"value":310},{"type":54,"tag":88,"props":2385,"children":2386},{"style":453},[2387],{"type":60,"value":2388}," type",{"type":54,"tag":88,"props":2390,"children":2391},{"style":160},[2392],{"type":60,"value":461},{"type":54,"tag":88,"props":2394,"children":2395},{"style":160},[2396],{"type":60,"value":330},{"type":54,"tag":88,"props":2398,"children":2399},{"style":101},[2400],{"type":60,"value":2401},"process",{"type":54,"tag":88,"props":2403,"children":2404},{"style":160},[2405],{"type":60,"value":339},{"type":54,"tag":88,"props":2407,"children":2408},{"style":160},[2409],{"type":60,"value":365},{"type":54,"tag":88,"props":2411,"children":2412},{"style":453},[2413],{"type":60,"value":2414}," data",{"type":54,"tag":88,"props":2416,"children":2417},{"style":160},[2418],{"type":60,"value":461},{"type":54,"tag":88,"props":2420,"children":2421},{"style":160},[2422],{"type":60,"value":310},{"type":54,"tag":88,"props":2424,"children":2425},{"style":453},[2426],{"type":60,"value":2427}," id",{"type":54,"tag":88,"props":2429,"children":2430},{"style":160},[2431],{"type":60,"value":461},{"type":54,"tag":88,"props":2433,"children":2434},{"style":2295},[2435],{"type":60,"value":2436}," 123",{"type":54,"tag":88,"props":2438,"children":2439},{"style":160},[2440],{"type":60,"value":320},{"type":54,"tag":88,"props":2442,"children":2443},{"style":160},[2444],{"type":60,"value":2445}," };\n",{"type":54,"tag":88,"props":2447,"children":2448},{"class":90,"line":662},[2449,2453,2457,2461,2465,2470,2474,2479,2484],{"type":54,"tag":88,"props":2450,"children":2451},{"style":302},[2452],{"type":60,"value":1402},{"type":54,"tag":88,"props":2454,"children":2455},{"style":154},[2456],{"type":60,"value":1407},{"type":54,"tag":88,"props":2458,"children":2459},{"style":160},[2460],{"type":60,"value":559},{"type":54,"tag":88,"props":2462,"children":2463},{"style":438},[2464],{"type":60,"value":2195},{"type":54,"tag":88,"props":2466,"children":2467},{"style":154},[2468],{"type":60,"value":2469},"(JSON",{"type":54,"tag":88,"props":2471,"children":2472},{"style":160},[2473],{"type":60,"value":559},{"type":54,"tag":88,"props":2475,"children":2476},{"style":438},[2477],{"type":60,"value":2478},"stringify",{"type":54,"tag":88,"props":2480,"children":2481},{"style":154},[2482],{"type":60,"value":2483},"(task))",{"type":54,"tag":88,"props":2485,"children":2486},{"style":160},[2487],{"type":60,"value":344},{"type":54,"tag":283,"props":2489,"children":2491},{"id":2490},"receive-messages",[2492],{"type":60,"value":2493},"Receive Messages",{"type":54,"tag":76,"props":2495,"children":2497},{"className":291,"code":2496,"language":21,"meta":81,"style":81},"\u002F\u002F Receive up to 32 messages (default: 1)\nconst response = await queueClient.receiveMessages({\n  numberOfMessages: 10,\n  visibilityTimeout: 30, \u002F\u002F 30 seconds to process\n});\n\nfor (const message of response.receivedMessageItems) {\n  console.log(\"Message ID:\", message.messageId);\n  console.log(\"Content:\", message.messageText);\n  console.log(\"Dequeue Count:\", message.dequeueCount);\n  console.log(\"Pop Receipt:\", message.popReceipt);\n  \n  \u002F\u002F Process the message...\n  \n  \u002F\u002F Delete after processing\n  await queueClient.deleteMessage(message.messageId, message.popReceipt);\n}\n",[2498],{"type":54,"tag":84,"props":2499,"children":2500},{"__ignoreMap":81},[2501,2509,2550,2571,2596,2611,2618,2660,2718,2775,2832,2889,2897,2905,2912,2921,2984],{"type":54,"tag":88,"props":2502,"children":2503},{"class":90,"line":91},[2504],{"type":54,"tag":88,"props":2505,"children":2506},{"style":202},[2507],{"type":60,"value":2508},"\u002F\u002F Receive up to 32 messages (default: 1)\n",{"type":54,"tag":88,"props":2510,"children":2511},{"class":90,"line":176},[2512,2516,2521,2525,2529,2533,2537,2542,2546],{"type":54,"tag":88,"props":2513,"children":2514},{"style":418},[2515],{"type":60,"value":421},{"type":54,"tag":88,"props":2517,"children":2518},{"style":154},[2519],{"type":60,"value":2520}," response ",{"type":54,"tag":88,"props":2522,"children":2523},{"style":160},[2524],{"type":60,"value":219},{"type":54,"tag":88,"props":2526,"children":2527},{"style":302},[2528],{"type":60,"value":1494},{"type":54,"tag":88,"props":2530,"children":2531},{"style":154},[2532],{"type":60,"value":1407},{"type":54,"tag":88,"props":2534,"children":2535},{"style":160},[2536],{"type":60,"value":559},{"type":54,"tag":88,"props":2538,"children":2539},{"style":438},[2540],{"type":60,"value":2541},"receiveMessages",{"type":54,"tag":88,"props":2543,"children":2544},{"style":154},[2545],{"type":60,"value":445},{"type":54,"tag":88,"props":2547,"children":2548},{"style":160},[2549],{"type":60,"value":1536},{"type":54,"tag":88,"props":2551,"children":2552},{"class":90,"line":198},[2553,2558,2562,2567],{"type":54,"tag":88,"props":2554,"children":2555},{"style":453},[2556],{"type":60,"value":2557},"  numberOfMessages",{"type":54,"tag":88,"props":2559,"children":2560},{"style":160},[2561],{"type":60,"value":461},{"type":54,"tag":88,"props":2563,"children":2564},{"style":2295},[2565],{"type":60,"value":2566}," 10",{"type":54,"tag":88,"props":2568,"children":2569},{"style":160},[2570],{"type":60,"value":650},{"type":54,"tag":88,"props":2572,"children":2573},{"class":90,"line":208},[2574,2578,2582,2587,2591],{"type":54,"tag":88,"props":2575,"children":2576},{"style":453},[2577],{"type":60,"value":2288},{"type":54,"tag":88,"props":2579,"children":2580},{"style":160},[2581],{"type":60,"value":461},{"type":54,"tag":88,"props":2583,"children":2584},{"style":2295},[2585],{"type":60,"value":2586}," 30",{"type":54,"tag":88,"props":2588,"children":2589},{"style":160},[2590],{"type":60,"value":365},{"type":54,"tag":88,"props":2592,"children":2593},{"style":202},[2594],{"type":60,"value":2595}," \u002F\u002F 30 seconds to process\n",{"type":54,"tag":88,"props":2597,"children":2598},{"class":90,"line":255},[2599,2603,2607],{"type":54,"tag":88,"props":2600,"children":2601},{"style":160},[2602],{"type":60,"value":488},{"type":54,"tag":88,"props":2604,"children":2605},{"style":154},[2606],{"type":60,"value":493},{"type":54,"tag":88,"props":2608,"children":2609},{"style":160},[2610],{"type":60,"value":344},{"type":54,"tag":88,"props":2612,"children":2613},{"class":90,"line":500},[2614],{"type":54,"tag":88,"props":2615,"children":2616},{"emptyLinePlaceholder":401},[2617],{"type":60,"value":404},{"type":54,"tag":88,"props":2619,"children":2620},{"class":90,"line":509},[2621,2625,2629,2633,2638,2642,2647,2651,2656],{"type":54,"tag":88,"props":2622,"children":2623},{"style":302},[2624],{"type":60,"value":1489},{"type":54,"tag":88,"props":2626,"children":2627},{"style":154},[2628],{"type":60,"value":1499},{"type":54,"tag":88,"props":2630,"children":2631},{"style":418},[2632],{"type":60,"value":421},{"type":54,"tag":88,"props":2634,"children":2635},{"style":154},[2636],{"type":60,"value":2637}," message ",{"type":54,"tag":88,"props":2639,"children":2640},{"style":160},[2641],{"type":60,"value":1513},{"type":54,"tag":88,"props":2643,"children":2644},{"style":154},[2645],{"type":60,"value":2646}," response",{"type":54,"tag":88,"props":2648,"children":2649},{"style":160},[2650],{"type":60,"value":559},{"type":54,"tag":88,"props":2652,"children":2653},{"style":154},[2654],{"type":60,"value":2655},"receivedMessageItems) ",{"type":54,"tag":88,"props":2657,"children":2658},{"style":160},[2659],{"type":60,"value":1536},{"type":54,"tag":88,"props":2661,"children":2662},{"class":90,"line":518},[2663,2667,2671,2675,2679,2683,2688,2692,2696,2701,2705,2710,2714],{"type":54,"tag":88,"props":2664,"children":2665},{"style":154},[2666],{"type":60,"value":1544},{"type":54,"tag":88,"props":2668,"children":2669},{"style":160},[2670],{"type":60,"value":559},{"type":54,"tag":88,"props":2672,"children":2673},{"style":438},[2674],{"type":60,"value":1553},{"type":54,"tag":88,"props":2676,"children":2677},{"style":453},[2678],{"type":60,"value":445},{"type":54,"tag":88,"props":2680,"children":2681},{"style":160},[2682],{"type":60,"value":339},{"type":54,"tag":88,"props":2684,"children":2685},{"style":101},[2686],{"type":60,"value":2687},"Message ID:",{"type":54,"tag":88,"props":2689,"children":2690},{"style":160},[2691],{"type":60,"value":339},{"type":54,"tag":88,"props":2693,"children":2694},{"style":160},[2695],{"type":60,"value":365},{"type":54,"tag":88,"props":2697,"children":2698},{"style":154},[2699],{"type":60,"value":2700}," message",{"type":54,"tag":88,"props":2702,"children":2703},{"style":160},[2704],{"type":60,"value":559},{"type":54,"tag":88,"props":2706,"children":2707},{"style":154},[2708],{"type":60,"value":2709},"messageId",{"type":54,"tag":88,"props":2711,"children":2712},{"style":453},[2713],{"type":60,"value":493},{"type":54,"tag":88,"props":2715,"children":2716},{"style":160},[2717],{"type":60,"value":344},{"type":54,"tag":88,"props":2719,"children":2720},{"class":90,"line":527},[2721,2725,2729,2733,2737,2741,2746,2750,2754,2758,2762,2767,2771],{"type":54,"tag":88,"props":2722,"children":2723},{"style":154},[2724],{"type":60,"value":1544},{"type":54,"tag":88,"props":2726,"children":2727},{"style":160},[2728],{"type":60,"value":559},{"type":54,"tag":88,"props":2730,"children":2731},{"style":438},[2732],{"type":60,"value":1553},{"type":54,"tag":88,"props":2734,"children":2735},{"style":453},[2736],{"type":60,"value":445},{"type":54,"tag":88,"props":2738,"children":2739},{"style":160},[2740],{"type":60,"value":339},{"type":54,"tag":88,"props":2742,"children":2743},{"style":101},[2744],{"type":60,"value":2745},"Content:",{"type":54,"tag":88,"props":2747,"children":2748},{"style":160},[2749],{"type":60,"value":339},{"type":54,"tag":88,"props":2751,"children":2752},{"style":160},[2753],{"type":60,"value":365},{"type":54,"tag":88,"props":2755,"children":2756},{"style":154},[2757],{"type":60,"value":2700},{"type":54,"tag":88,"props":2759,"children":2760},{"style":160},[2761],{"type":60,"value":559},{"type":54,"tag":88,"props":2763,"children":2764},{"style":154},[2765],{"type":60,"value":2766},"messageText",{"type":54,"tag":88,"props":2768,"children":2769},{"style":453},[2770],{"type":60,"value":493},{"type":54,"tag":88,"props":2772,"children":2773},{"style":160},[2774],{"type":60,"value":344},{"type":54,"tag":88,"props":2776,"children":2777},{"class":90,"line":535},[2778,2782,2786,2790,2794,2798,2803,2807,2811,2815,2819,2824,2828],{"type":54,"tag":88,"props":2779,"children":2780},{"style":154},[2781],{"type":60,"value":1544},{"type":54,"tag":88,"props":2783,"children":2784},{"style":160},[2785],{"type":60,"value":559},{"type":54,"tag":88,"props":2787,"children":2788},{"style":438},[2789],{"type":60,"value":1553},{"type":54,"tag":88,"props":2791,"children":2792},{"style":453},[2793],{"type":60,"value":445},{"type":54,"tag":88,"props":2795,"children":2796},{"style":160},[2797],{"type":60,"value":339},{"type":54,"tag":88,"props":2799,"children":2800},{"style":101},[2801],{"type":60,"value":2802},"Dequeue Count:",{"type":54,"tag":88,"props":2804,"children":2805},{"style":160},[2806],{"type":60,"value":339},{"type":54,"tag":88,"props":2808,"children":2809},{"style":160},[2810],{"type":60,"value":365},{"type":54,"tag":88,"props":2812,"children":2813},{"style":154},[2814],{"type":60,"value":2700},{"type":54,"tag":88,"props":2816,"children":2817},{"style":160},[2818],{"type":60,"value":559},{"type":54,"tag":88,"props":2820,"children":2821},{"style":154},[2822],{"type":60,"value":2823},"dequeueCount",{"type":54,"tag":88,"props":2825,"children":2826},{"style":453},[2827],{"type":60,"value":493},{"type":54,"tag":88,"props":2829,"children":2830},{"style":160},[2831],{"type":60,"value":344},{"type":54,"tag":88,"props":2833,"children":2834},{"class":90,"line":580},[2835,2839,2843,2847,2851,2855,2860,2864,2868,2872,2876,2881,2885],{"type":54,"tag":88,"props":2836,"children":2837},{"style":154},[2838],{"type":60,"value":1544},{"type":54,"tag":88,"props":2840,"children":2841},{"style":160},[2842],{"type":60,"value":559},{"type":54,"tag":88,"props":2844,"children":2845},{"style":438},[2846],{"type":60,"value":1553},{"type":54,"tag":88,"props":2848,"children":2849},{"style":453},[2850],{"type":60,"value":445},{"type":54,"tag":88,"props":2852,"children":2853},{"style":160},[2854],{"type":60,"value":339},{"type":54,"tag":88,"props":2856,"children":2857},{"style":101},[2858],{"type":60,"value":2859},"Pop Receipt:",{"type":54,"tag":88,"props":2861,"children":2862},{"style":160},[2863],{"type":60,"value":339},{"type":54,"tag":88,"props":2865,"children":2866},{"style":160},[2867],{"type":60,"value":365},{"type":54,"tag":88,"props":2869,"children":2870},{"style":154},[2871],{"type":60,"value":2700},{"type":54,"tag":88,"props":2873,"children":2874},{"style":160},[2875],{"type":60,"value":559},{"type":54,"tag":88,"props":2877,"children":2878},{"style":154},[2879],{"type":60,"value":2880},"popReceipt",{"type":54,"tag":88,"props":2882,"children":2883},{"style":453},[2884],{"type":60,"value":493},{"type":54,"tag":88,"props":2886,"children":2887},{"style":160},[2888],{"type":60,"value":344},{"type":54,"tag":88,"props":2890,"children":2891},{"class":90,"line":610},[2892],{"type":54,"tag":88,"props":2893,"children":2894},{"style":453},[2895],{"type":60,"value":2896},"  \n",{"type":54,"tag":88,"props":2898,"children":2899},{"class":90,"line":653},[2900],{"type":54,"tag":88,"props":2901,"children":2902},{"style":202},[2903],{"type":60,"value":2904},"  \u002F\u002F Process the message...\n",{"type":54,"tag":88,"props":2906,"children":2907},{"class":90,"line":662},[2908],{"type":54,"tag":88,"props":2909,"children":2910},{"style":453},[2911],{"type":60,"value":2896},{"type":54,"tag":88,"props":2913,"children":2915},{"class":90,"line":2914},15,[2916],{"type":54,"tag":88,"props":2917,"children":2918},{"style":202},[2919],{"type":60,"value":2920},"  \u002F\u002F Delete after processing\n",{"type":54,"tag":88,"props":2922,"children":2924},{"class":90,"line":2923},16,[2925,2930,2934,2938,2943,2947,2952,2956,2960,2964,2968,2972,2976,2980],{"type":54,"tag":88,"props":2926,"children":2927},{"style":302},[2928],{"type":60,"value":2929},"  await",{"type":54,"tag":88,"props":2931,"children":2932},{"style":154},[2933],{"type":60,"value":1407},{"type":54,"tag":88,"props":2935,"children":2936},{"style":160},[2937],{"type":60,"value":559},{"type":54,"tag":88,"props":2939,"children":2940},{"style":438},[2941],{"type":60,"value":2942},"deleteMessage",{"type":54,"tag":88,"props":2944,"children":2945},{"style":453},[2946],{"type":60,"value":445},{"type":54,"tag":88,"props":2948,"children":2949},{"style":154},[2950],{"type":60,"value":2951},"message",{"type":54,"tag":88,"props":2953,"children":2954},{"style":160},[2955],{"type":60,"value":559},{"type":54,"tag":88,"props":2957,"children":2958},{"style":154},[2959],{"type":60,"value":2709},{"type":54,"tag":88,"props":2961,"children":2962},{"style":160},[2963],{"type":60,"value":365},{"type":54,"tag":88,"props":2965,"children":2966},{"style":154},[2967],{"type":60,"value":2700},{"type":54,"tag":88,"props":2969,"children":2970},{"style":160},[2971],{"type":60,"value":559},{"type":54,"tag":88,"props":2973,"children":2974},{"style":154},[2975],{"type":60,"value":2880},{"type":54,"tag":88,"props":2977,"children":2978},{"style":453},[2979],{"type":60,"value":493},{"type":54,"tag":88,"props":2981,"children":2982},{"style":160},[2983],{"type":60,"value":344},{"type":54,"tag":88,"props":2985,"children":2987},{"class":90,"line":2986},17,[2988],{"type":54,"tag":88,"props":2989,"children":2990},{"style":160},[2991],{"type":60,"value":1587},{"type":54,"tag":283,"props":2993,"children":2995},{"id":2994},"peek-messages",[2996],{"type":60,"value":2997},"Peek Messages",{"type":54,"tag":63,"props":2999,"children":3000},{},[3001],{"type":60,"value":3002},"Peek without removing from queue (no visibility timeout).",{"type":54,"tag":76,"props":3004,"children":3006},{"className":291,"code":3005,"language":21,"meta":81,"style":81},"const response = await queueClient.peekMessages({\n  numberOfMessages: 5,\n});\n\nfor (const message of response.peekedMessageItems) {\n  console.log(\"Message ID:\", message.messageId);\n  console.log(\"Content:\", message.messageText);\n  \u002F\u002F Note: No popReceipt - cannot delete peeked messages\n}\n",[3007],{"type":54,"tag":84,"props":3008,"children":3009},{"__ignoreMap":81},[3010,3050,3070,3085,3092,3132,3187,3242,3250],{"type":54,"tag":88,"props":3011,"children":3012},{"class":90,"line":91},[3013,3017,3021,3025,3029,3033,3037,3042,3046],{"type":54,"tag":88,"props":3014,"children":3015},{"style":418},[3016],{"type":60,"value":421},{"type":54,"tag":88,"props":3018,"children":3019},{"style":154},[3020],{"type":60,"value":2520},{"type":54,"tag":88,"props":3022,"children":3023},{"style":160},[3024],{"type":60,"value":219},{"type":54,"tag":88,"props":3026,"children":3027},{"style":302},[3028],{"type":60,"value":1494},{"type":54,"tag":88,"props":3030,"children":3031},{"style":154},[3032],{"type":60,"value":1407},{"type":54,"tag":88,"props":3034,"children":3035},{"style":160},[3036],{"type":60,"value":559},{"type":54,"tag":88,"props":3038,"children":3039},{"style":438},[3040],{"type":60,"value":3041},"peekMessages",{"type":54,"tag":88,"props":3043,"children":3044},{"style":154},[3045],{"type":60,"value":445},{"type":54,"tag":88,"props":3047,"children":3048},{"style":160},[3049],{"type":60,"value":1536},{"type":54,"tag":88,"props":3051,"children":3052},{"class":90,"line":176},[3053,3057,3061,3066],{"type":54,"tag":88,"props":3054,"children":3055},{"style":453},[3056],{"type":60,"value":2557},{"type":54,"tag":88,"props":3058,"children":3059},{"style":160},[3060],{"type":60,"value":461},{"type":54,"tag":88,"props":3062,"children":3063},{"style":2295},[3064],{"type":60,"value":3065}," 5",{"type":54,"tag":88,"props":3067,"children":3068},{"style":160},[3069],{"type":60,"value":650},{"type":54,"tag":88,"props":3071,"children":3072},{"class":90,"line":198},[3073,3077,3081],{"type":54,"tag":88,"props":3074,"children":3075},{"style":160},[3076],{"type":60,"value":488},{"type":54,"tag":88,"props":3078,"children":3079},{"style":154},[3080],{"type":60,"value":493},{"type":54,"tag":88,"props":3082,"children":3083},{"style":160},[3084],{"type":60,"value":344},{"type":54,"tag":88,"props":3086,"children":3087},{"class":90,"line":208},[3088],{"type":54,"tag":88,"props":3089,"children":3090},{"emptyLinePlaceholder":401},[3091],{"type":60,"value":404},{"type":54,"tag":88,"props":3093,"children":3094},{"class":90,"line":255},[3095,3099,3103,3107,3111,3115,3119,3123,3128],{"type":54,"tag":88,"props":3096,"children":3097},{"style":302},[3098],{"type":60,"value":1489},{"type":54,"tag":88,"props":3100,"children":3101},{"style":154},[3102],{"type":60,"value":1499},{"type":54,"tag":88,"props":3104,"children":3105},{"style":418},[3106],{"type":60,"value":421},{"type":54,"tag":88,"props":3108,"children":3109},{"style":154},[3110],{"type":60,"value":2637},{"type":54,"tag":88,"props":3112,"children":3113},{"style":160},[3114],{"type":60,"value":1513},{"type":54,"tag":88,"props":3116,"children":3117},{"style":154},[3118],{"type":60,"value":2646},{"type":54,"tag":88,"props":3120,"children":3121},{"style":160},[3122],{"type":60,"value":559},{"type":54,"tag":88,"props":3124,"children":3125},{"style":154},[3126],{"type":60,"value":3127},"peekedMessageItems) ",{"type":54,"tag":88,"props":3129,"children":3130},{"style":160},[3131],{"type":60,"value":1536},{"type":54,"tag":88,"props":3133,"children":3134},{"class":90,"line":500},[3135,3139,3143,3147,3151,3155,3159,3163,3167,3171,3175,3179,3183],{"type":54,"tag":88,"props":3136,"children":3137},{"style":154},[3138],{"type":60,"value":1544},{"type":54,"tag":88,"props":3140,"children":3141},{"style":160},[3142],{"type":60,"value":559},{"type":54,"tag":88,"props":3144,"children":3145},{"style":438},[3146],{"type":60,"value":1553},{"type":54,"tag":88,"props":3148,"children":3149},{"style":453},[3150],{"type":60,"value":445},{"type":54,"tag":88,"props":3152,"children":3153},{"style":160},[3154],{"type":60,"value":339},{"type":54,"tag":88,"props":3156,"children":3157},{"style":101},[3158],{"type":60,"value":2687},{"type":54,"tag":88,"props":3160,"children":3161},{"style":160},[3162],{"type":60,"value":339},{"type":54,"tag":88,"props":3164,"children":3165},{"style":160},[3166],{"type":60,"value":365},{"type":54,"tag":88,"props":3168,"children":3169},{"style":154},[3170],{"type":60,"value":2700},{"type":54,"tag":88,"props":3172,"children":3173},{"style":160},[3174],{"type":60,"value":559},{"type":54,"tag":88,"props":3176,"children":3177},{"style":154},[3178],{"type":60,"value":2709},{"type":54,"tag":88,"props":3180,"children":3181},{"style":453},[3182],{"type":60,"value":493},{"type":54,"tag":88,"props":3184,"children":3185},{"style":160},[3186],{"type":60,"value":344},{"type":54,"tag":88,"props":3188,"children":3189},{"class":90,"line":509},[3190,3194,3198,3202,3206,3210,3214,3218,3222,3226,3230,3234,3238],{"type":54,"tag":88,"props":3191,"children":3192},{"style":154},[3193],{"type":60,"value":1544},{"type":54,"tag":88,"props":3195,"children":3196},{"style":160},[3197],{"type":60,"value":559},{"type":54,"tag":88,"props":3199,"children":3200},{"style":438},[3201],{"type":60,"value":1553},{"type":54,"tag":88,"props":3203,"children":3204},{"style":453},[3205],{"type":60,"value":445},{"type":54,"tag":88,"props":3207,"children":3208},{"style":160},[3209],{"type":60,"value":339},{"type":54,"tag":88,"props":3211,"children":3212},{"style":101},[3213],{"type":60,"value":2745},{"type":54,"tag":88,"props":3215,"children":3216},{"style":160},[3217],{"type":60,"value":339},{"type":54,"tag":88,"props":3219,"children":3220},{"style":160},[3221],{"type":60,"value":365},{"type":54,"tag":88,"props":3223,"children":3224},{"style":154},[3225],{"type":60,"value":2700},{"type":54,"tag":88,"props":3227,"children":3228},{"style":160},[3229],{"type":60,"value":559},{"type":54,"tag":88,"props":3231,"children":3232},{"style":154},[3233],{"type":60,"value":2766},{"type":54,"tag":88,"props":3235,"children":3236},{"style":453},[3237],{"type":60,"value":493},{"type":54,"tag":88,"props":3239,"children":3240},{"style":160},[3241],{"type":60,"value":344},{"type":54,"tag":88,"props":3243,"children":3244},{"class":90,"line":518},[3245],{"type":54,"tag":88,"props":3246,"children":3247},{"style":202},[3248],{"type":60,"value":3249},"  \u002F\u002F Note: No popReceipt - cannot delete peeked messages\n",{"type":54,"tag":88,"props":3251,"children":3252},{"class":90,"line":527},[3253],{"type":54,"tag":88,"props":3254,"children":3255},{"style":160},[3256],{"type":60,"value":1587},{"type":54,"tag":283,"props":3258,"children":3260},{"id":3259},"update-message",[3261],{"type":60,"value":3262},"Update Message",{"type":54,"tag":63,"props":3264,"children":3265},{},[3266],{"type":60,"value":3267},"Extend visibility timeout or update content.",{"type":54,"tag":76,"props":3269,"children":3271},{"className":291,"code":3270,"language":21,"meta":81,"style":81},"\u002F\u002F Receive a message\nconst response = await queueClient.receiveMessages();\nconst message = response.receivedMessageItems[0];\n\nif (message) {\n  \u002F\u002F Update content and extend visibility\n  const updateResponse = await queueClient.updateMessage(\n    message.messageId,\n    message.popReceipt,\n    \"Updated content\",\n    60 \u002F\u002F New visibility timeout in seconds\n  );\n  \n  \u002F\u002F Use new popReceipt for subsequent operations\n  console.log(\"New pop receipt:\", updateResponse.popReceipt);\n}\n",[3272],{"type":54,"tag":84,"props":3273,"children":3274},{"__ignoreMap":81},[3275,3283,3322,3363,3370,3387,3395,3434,3454,3473,3494,3507,3519,3526,3534,3590],{"type":54,"tag":88,"props":3276,"children":3277},{"class":90,"line":91},[3278],{"type":54,"tag":88,"props":3279,"children":3280},{"style":202},[3281],{"type":60,"value":3282},"\u002F\u002F Receive a message\n",{"type":54,"tag":88,"props":3284,"children":3285},{"class":90,"line":176},[3286,3290,3294,3298,3302,3306,3310,3314,3318],{"type":54,"tag":88,"props":3287,"children":3288},{"style":418},[3289],{"type":60,"value":421},{"type":54,"tag":88,"props":3291,"children":3292},{"style":154},[3293],{"type":60,"value":2520},{"type":54,"tag":88,"props":3295,"children":3296},{"style":160},[3297],{"type":60,"value":219},{"type":54,"tag":88,"props":3299,"children":3300},{"style":302},[3301],{"type":60,"value":1494},{"type":54,"tag":88,"props":3303,"children":3304},{"style":154},[3305],{"type":60,"value":1407},{"type":54,"tag":88,"props":3307,"children":3308},{"style":160},[3309],{"type":60,"value":559},{"type":54,"tag":88,"props":3311,"children":3312},{"style":438},[3313],{"type":60,"value":2541},{"type":54,"tag":88,"props":3315,"children":3316},{"style":154},[3317],{"type":60,"value":1421},{"type":54,"tag":88,"props":3319,"children":3320},{"style":160},[3321],{"type":60,"value":344},{"type":54,"tag":88,"props":3323,"children":3324},{"class":90,"line":198},[3325,3329,3333,3337,3341,3345,3350,3355,3359],{"type":54,"tag":88,"props":3326,"children":3327},{"style":418},[3328],{"type":60,"value":421},{"type":54,"tag":88,"props":3330,"children":3331},{"style":154},[3332],{"type":60,"value":2637},{"type":54,"tag":88,"props":3334,"children":3335},{"style":160},[3336],{"type":60,"value":219},{"type":54,"tag":88,"props":3338,"children":3339},{"style":154},[3340],{"type":60,"value":2646},{"type":54,"tag":88,"props":3342,"children":3343},{"style":160},[3344],{"type":60,"value":559},{"type":54,"tag":88,"props":3346,"children":3347},{"style":154},[3348],{"type":60,"value":3349},"receivedMessageItems[",{"type":54,"tag":88,"props":3351,"children":3352},{"style":2295},[3353],{"type":60,"value":3354},"0",{"type":54,"tag":88,"props":3356,"children":3357},{"style":154},[3358],{"type":60,"value":483},{"type":54,"tag":88,"props":3360,"children":3361},{"style":160},[3362],{"type":60,"value":344},{"type":54,"tag":88,"props":3364,"children":3365},{"class":90,"line":208},[3366],{"type":54,"tag":88,"props":3367,"children":3368},{"emptyLinePlaceholder":401},[3369],{"type":60,"value":404},{"type":54,"tag":88,"props":3371,"children":3372},{"class":90,"line":255},[3373,3378,3383],{"type":54,"tag":88,"props":3374,"children":3375},{"style":302},[3376],{"type":60,"value":3377},"if",{"type":54,"tag":88,"props":3379,"children":3380},{"style":154},[3381],{"type":60,"value":3382}," (message) ",{"type":54,"tag":88,"props":3384,"children":3385},{"style":160},[3386],{"type":60,"value":1536},{"type":54,"tag":88,"props":3388,"children":3389},{"class":90,"line":500},[3390],{"type":54,"tag":88,"props":3391,"children":3392},{"style":202},[3393],{"type":60,"value":3394},"  \u002F\u002F Update content and extend visibility\n",{"type":54,"tag":88,"props":3396,"children":3397},{"class":90,"line":509},[3398,3403,3408,3413,3417,3421,3425,3430],{"type":54,"tag":88,"props":3399,"children":3400},{"style":418},[3401],{"type":60,"value":3402},"  const",{"type":54,"tag":88,"props":3404,"children":3405},{"style":154},[3406],{"type":60,"value":3407}," updateResponse",{"type":54,"tag":88,"props":3409,"children":3410},{"style":160},[3411],{"type":60,"value":3412}," =",{"type":54,"tag":88,"props":3414,"children":3415},{"style":302},[3416],{"type":60,"value":1494},{"type":54,"tag":88,"props":3418,"children":3419},{"style":154},[3420],{"type":60,"value":1407},{"type":54,"tag":88,"props":3422,"children":3423},{"style":160},[3424],{"type":60,"value":559},{"type":54,"tag":88,"props":3426,"children":3427},{"style":438},[3428],{"type":60,"value":3429},"updateMessage",{"type":54,"tag":88,"props":3431,"children":3432},{"style":453},[3433],{"type":60,"value":607},{"type":54,"tag":88,"props":3435,"children":3436},{"class":90,"line":518},[3437,3442,3446,3450],{"type":54,"tag":88,"props":3438,"children":3439},{"style":154},[3440],{"type":60,"value":3441},"    message",{"type":54,"tag":88,"props":3443,"children":3444},{"style":160},[3445],{"type":60,"value":559},{"type":54,"tag":88,"props":3447,"children":3448},{"style":154},[3449],{"type":60,"value":2709},{"type":54,"tag":88,"props":3451,"children":3452},{"style":160},[3453],{"type":60,"value":650},{"type":54,"tag":88,"props":3455,"children":3456},{"class":90,"line":527},[3457,3461,3465,3469],{"type":54,"tag":88,"props":3458,"children":3459},{"style":154},[3460],{"type":60,"value":3441},{"type":54,"tag":88,"props":3462,"children":3463},{"style":160},[3464],{"type":60,"value":559},{"type":54,"tag":88,"props":3466,"children":3467},{"style":154},[3468],{"type":60,"value":2880},{"type":54,"tag":88,"props":3470,"children":3471},{"style":160},[3472],{"type":60,"value":650},{"type":54,"tag":88,"props":3474,"children":3475},{"class":90,"line":535},[3476,3481,3486,3490],{"type":54,"tag":88,"props":3477,"children":3478},{"style":160},[3479],{"type":60,"value":3480},"    \"",{"type":54,"tag":88,"props":3482,"children":3483},{"style":101},[3484],{"type":60,"value":3485},"Updated content",{"type":54,"tag":88,"props":3487,"children":3488},{"style":160},[3489],{"type":60,"value":339},{"type":54,"tag":88,"props":3491,"children":3492},{"style":160},[3493],{"type":60,"value":650},{"type":54,"tag":88,"props":3495,"children":3496},{"class":90,"line":580},[3497,3502],{"type":54,"tag":88,"props":3498,"children":3499},{"style":2295},[3500],{"type":60,"value":3501},"    60",{"type":54,"tag":88,"props":3503,"children":3504},{"style":202},[3505],{"type":60,"value":3506}," \u002F\u002F New visibility timeout in seconds\n",{"type":54,"tag":88,"props":3508,"children":3509},{"class":90,"line":610},[3510,3515],{"type":54,"tag":88,"props":3511,"children":3512},{"style":453},[3513],{"type":60,"value":3514},"  )",{"type":54,"tag":88,"props":3516,"children":3517},{"style":160},[3518],{"type":60,"value":344},{"type":54,"tag":88,"props":3520,"children":3521},{"class":90,"line":653},[3522],{"type":54,"tag":88,"props":3523,"children":3524},{"style":453},[3525],{"type":60,"value":2896},{"type":54,"tag":88,"props":3527,"children":3528},{"class":90,"line":662},[3529],{"type":54,"tag":88,"props":3530,"children":3531},{"style":202},[3532],{"type":60,"value":3533},"  \u002F\u002F Use new popReceipt for subsequent operations\n",{"type":54,"tag":88,"props":3535,"children":3536},{"class":90,"line":2914},[3537,3541,3545,3549,3553,3557,3562,3566,3570,3574,3578,3582,3586],{"type":54,"tag":88,"props":3538,"children":3539},{"style":154},[3540],{"type":60,"value":1544},{"type":54,"tag":88,"props":3542,"children":3543},{"style":160},[3544],{"type":60,"value":559},{"type":54,"tag":88,"props":3546,"children":3547},{"style":438},[3548],{"type":60,"value":1553},{"type":54,"tag":88,"props":3550,"children":3551},{"style":453},[3552],{"type":60,"value":445},{"type":54,"tag":88,"props":3554,"children":3555},{"style":160},[3556],{"type":60,"value":339},{"type":54,"tag":88,"props":3558,"children":3559},{"style":101},[3560],{"type":60,"value":3561},"New pop receipt:",{"type":54,"tag":88,"props":3563,"children":3564},{"style":160},[3565],{"type":60,"value":339},{"type":54,"tag":88,"props":3567,"children":3568},{"style":160},[3569],{"type":60,"value":365},{"type":54,"tag":88,"props":3571,"children":3572},{"style":154},[3573],{"type":60,"value":3407},{"type":54,"tag":88,"props":3575,"children":3576},{"style":160},[3577],{"type":60,"value":559},{"type":54,"tag":88,"props":3579,"children":3580},{"style":154},[3581],{"type":60,"value":2880},{"type":54,"tag":88,"props":3583,"children":3584},{"style":453},[3585],{"type":60,"value":493},{"type":54,"tag":88,"props":3587,"children":3588},{"style":160},[3589],{"type":60,"value":344},{"type":54,"tag":88,"props":3591,"children":3592},{"class":90,"line":2923},[3593],{"type":54,"tag":88,"props":3594,"children":3595},{"style":160},[3596],{"type":60,"value":1587},{"type":54,"tag":283,"props":3598,"children":3600},{"id":3599},"delete-message",[3601],{"type":60,"value":3602},"Delete Message",{"type":54,"tag":76,"props":3604,"children":3606},{"className":291,"code":3605,"language":21,"meta":81,"style":81},"\u002F\u002F After receiving\nconst response = await queueClient.receiveMessages();\nconst message = response.receivedMessageItems[0];\n\nif (message) {\n  await queueClient.deleteMessage(message.messageId, message.popReceipt);\n}\n",[3607],{"type":54,"tag":84,"props":3608,"children":3609},{"__ignoreMap":81},[3610,3618,3657,3696,3703,3718,3777],{"type":54,"tag":88,"props":3611,"children":3612},{"class":90,"line":91},[3613],{"type":54,"tag":88,"props":3614,"children":3615},{"style":202},[3616],{"type":60,"value":3617},"\u002F\u002F After receiving\n",{"type":54,"tag":88,"props":3619,"children":3620},{"class":90,"line":176},[3621,3625,3629,3633,3637,3641,3645,3649,3653],{"type":54,"tag":88,"props":3622,"children":3623},{"style":418},[3624],{"type":60,"value":421},{"type":54,"tag":88,"props":3626,"children":3627},{"style":154},[3628],{"type":60,"value":2520},{"type":54,"tag":88,"props":3630,"children":3631},{"style":160},[3632],{"type":60,"value":219},{"type":54,"tag":88,"props":3634,"children":3635},{"style":302},[3636],{"type":60,"value":1494},{"type":54,"tag":88,"props":3638,"children":3639},{"style":154},[3640],{"type":60,"value":1407},{"type":54,"tag":88,"props":3642,"children":3643},{"style":160},[3644],{"type":60,"value":559},{"type":54,"tag":88,"props":3646,"children":3647},{"style":438},[3648],{"type":60,"value":2541},{"type":54,"tag":88,"props":3650,"children":3651},{"style":154},[3652],{"type":60,"value":1421},{"type":54,"tag":88,"props":3654,"children":3655},{"style":160},[3656],{"type":60,"value":344},{"type":54,"tag":88,"props":3658,"children":3659},{"class":90,"line":198},[3660,3664,3668,3672,3676,3680,3684,3688,3692],{"type":54,"tag":88,"props":3661,"children":3662},{"style":418},[3663],{"type":60,"value":421},{"type":54,"tag":88,"props":3665,"children":3666},{"style":154},[3667],{"type":60,"value":2637},{"type":54,"tag":88,"props":3669,"children":3670},{"style":160},[3671],{"type":60,"value":219},{"type":54,"tag":88,"props":3673,"children":3674},{"style":154},[3675],{"type":60,"value":2646},{"type":54,"tag":88,"props":3677,"children":3678},{"style":160},[3679],{"type":60,"value":559},{"type":54,"tag":88,"props":3681,"children":3682},{"style":154},[3683],{"type":60,"value":3349},{"type":54,"tag":88,"props":3685,"children":3686},{"style":2295},[3687],{"type":60,"value":3354},{"type":54,"tag":88,"props":3689,"children":3690},{"style":154},[3691],{"type":60,"value":483},{"type":54,"tag":88,"props":3693,"children":3694},{"style":160},[3695],{"type":60,"value":344},{"type":54,"tag":88,"props":3697,"children":3698},{"class":90,"line":208},[3699],{"type":54,"tag":88,"props":3700,"children":3701},{"emptyLinePlaceholder":401},[3702],{"type":60,"value":404},{"type":54,"tag":88,"props":3704,"children":3705},{"class":90,"line":255},[3706,3710,3714],{"type":54,"tag":88,"props":3707,"children":3708},{"style":302},[3709],{"type":60,"value":3377},{"type":54,"tag":88,"props":3711,"children":3712},{"style":154},[3713],{"type":60,"value":3382},{"type":54,"tag":88,"props":3715,"children":3716},{"style":160},[3717],{"type":60,"value":1536},{"type":54,"tag":88,"props":3719,"children":3720},{"class":90,"line":500},[3721,3725,3729,3733,3737,3741,3745,3749,3753,3757,3761,3765,3769,3773],{"type":54,"tag":88,"props":3722,"children":3723},{"style":302},[3724],{"type":60,"value":2929},{"type":54,"tag":88,"props":3726,"children":3727},{"style":154},[3728],{"type":60,"value":1407},{"type":54,"tag":88,"props":3730,"children":3731},{"style":160},[3732],{"type":60,"value":559},{"type":54,"tag":88,"props":3734,"children":3735},{"style":438},[3736],{"type":60,"value":2942},{"type":54,"tag":88,"props":3738,"children":3739},{"style":453},[3740],{"type":60,"value":445},{"type":54,"tag":88,"props":3742,"children":3743},{"style":154},[3744],{"type":60,"value":2951},{"type":54,"tag":88,"props":3746,"children":3747},{"style":160},[3748],{"type":60,"value":559},{"type":54,"tag":88,"props":3750,"children":3751},{"style":154},[3752],{"type":60,"value":2709},{"type":54,"tag":88,"props":3754,"children":3755},{"style":160},[3756],{"type":60,"value":365},{"type":54,"tag":88,"props":3758,"children":3759},{"style":154},[3760],{"type":60,"value":2700},{"type":54,"tag":88,"props":3762,"children":3763},{"style":160},[3764],{"type":60,"value":559},{"type":54,"tag":88,"props":3766,"children":3767},{"style":154},[3768],{"type":60,"value":2880},{"type":54,"tag":88,"props":3770,"children":3771},{"style":453},[3772],{"type":60,"value":493},{"type":54,"tag":88,"props":3774,"children":3775},{"style":160},[3776],{"type":60,"value":344},{"type":54,"tag":88,"props":3778,"children":3779},{"class":90,"line":509},[3780],{"type":54,"tag":88,"props":3781,"children":3782},{"style":160},[3783],{"type":60,"value":1587},{"type":54,"tag":283,"props":3785,"children":3787},{"id":3786},"clear-all-messages",[3788],{"type":60,"value":3789},"Clear All Messages",{"type":54,"tag":76,"props":3791,"children":3793},{"className":291,"code":3792,"language":21,"meta":81,"style":81},"await queueClient.clearMessages();\n",[3794],{"type":54,"tag":84,"props":3795,"children":3796},{"__ignoreMap":81},[3797],{"type":54,"tag":88,"props":3798,"children":3799},{"class":90,"line":91},[3800,3804,3808,3812,3817,3821],{"type":54,"tag":88,"props":3801,"children":3802},{"style":302},[3803],{"type":60,"value":1402},{"type":54,"tag":88,"props":3805,"children":3806},{"style":154},[3807],{"type":60,"value":1407},{"type":54,"tag":88,"props":3809,"children":3810},{"style":160},[3811],{"type":60,"value":559},{"type":54,"tag":88,"props":3813,"children":3814},{"style":438},[3815],{"type":60,"value":3816},"clearMessages",{"type":54,"tag":88,"props":3818,"children":3819},{"style":154},[3820],{"type":60,"value":1421},{"type":54,"tag":88,"props":3822,"children":3823},{"style":160},[3824],{"type":60,"value":344},{"type":54,"tag":69,"props":3826,"children":3828},{"id":3827},"message-processing-patterns",[3829],{"type":60,"value":3830},"Message Processing Patterns",{"type":54,"tag":283,"props":3832,"children":3834},{"id":3833},"basic-worker-pattern",[3835],{"type":60,"value":3836},"Basic Worker Pattern",{"type":54,"tag":76,"props":3838,"children":3840},{"className":291,"code":3839,"language":21,"meta":81,"style":81},"async function processQueue(queueClient: QueueClient): Promise\u003Cvoid> {\n  while (true) {\n    const response = await queueClient.receiveMessages({\n      numberOfMessages: 10,\n      visibilityTimeout: 30,\n    });\n\n    if (response.receivedMessageItems.length === 0) {\n      \u002F\u002F No messages, wait before polling again\n      await sleep(5000);\n      continue;\n    }\n\n    for (const message of response.receivedMessageItems) {\n      try {\n        await processMessage(message.messageText);\n        await queueClient.deleteMessage(message.messageId, message.popReceipt);\n      } catch (error) {\n        console.error(`Failed to process message ${message.messageId}:`, error);\n        \u002F\u002F Message will become visible again after timeout\n      }\n    }\n  }\n}\n\nasync function processMessage(content: string): Promise\u003Cvoid> {\n  const task = JSON.parse(content);\n  \u002F\u002F Process task...\n}\n\nfunction sleep(ms: number): Promise\u003Cvoid> {\n  return new Promise((resolve) => setTimeout(resolve, ms));\n}\n",[3841],{"type":54,"tag":84,"props":3842,"children":3843},{"__ignoreMap":81},[3844,3910,3937,3977,3997,4017,4033,4040,4093,4101,4131,4143,4151,4158,4203,4215,4252,4311,4342,4417,4426,4435,4443,4452,4460,4468,4526,4573,4582,4590,4598,4653,4723],{"type":54,"tag":88,"props":3845,"children":3846},{"class":90,"line":91},[3847,3852,3857,3862,3866,3872,3876,3881,3886,3891,3896,3901,3906],{"type":54,"tag":88,"props":3848,"children":3849},{"style":418},[3850],{"type":60,"value":3851},"async",{"type":54,"tag":88,"props":3853,"children":3854},{"style":418},[3855],{"type":60,"value":3856}," function",{"type":54,"tag":88,"props":3858,"children":3859},{"style":438},[3860],{"type":60,"value":3861}," processQueue",{"type":54,"tag":88,"props":3863,"children":3864},{"style":160},[3865],{"type":60,"value":445},{"type":54,"tag":88,"props":3867,"children":3869},{"style":3868},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[3870],{"type":60,"value":3871},"queueClient",{"type":54,"tag":88,"props":3873,"children":3874},{"style":160},[3875],{"type":60,"value":461},{"type":54,"tag":88,"props":3877,"children":3878},{"style":95},[3879],{"type":60,"value":3880}," QueueClient",{"type":54,"tag":88,"props":3882,"children":3883},{"style":160},[3884],{"type":60,"value":3885},"):",{"type":54,"tag":88,"props":3887,"children":3888},{"style":95},[3889],{"type":60,"value":3890}," Promise",{"type":54,"tag":88,"props":3892,"children":3893},{"style":160},[3894],{"type":60,"value":3895},"\u003C",{"type":54,"tag":88,"props":3897,"children":3898},{"style":95},[3899],{"type":60,"value":3900},"void",{"type":54,"tag":88,"props":3902,"children":3903},{"style":160},[3904],{"type":60,"value":3905},">",{"type":54,"tag":88,"props":3907,"children":3908},{"style":160},[3909],{"type":60,"value":2280},{"type":54,"tag":88,"props":3911,"children":3912},{"class":90,"line":176},[3913,3918,3922,3928,3933],{"type":54,"tag":88,"props":3914,"children":3915},{"style":302},[3916],{"type":60,"value":3917},"  while",{"type":54,"tag":88,"props":3919,"children":3920},{"style":453},[3921],{"type":60,"value":1499},{"type":54,"tag":88,"props":3923,"children":3925},{"style":3924},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[3926],{"type":60,"value":3927},"true",{"type":54,"tag":88,"props":3929,"children":3930},{"style":453},[3931],{"type":60,"value":3932},") ",{"type":54,"tag":88,"props":3934,"children":3935},{"style":160},[3936],{"type":60,"value":1536},{"type":54,"tag":88,"props":3938,"children":3939},{"class":90,"line":198},[3940,3945,3949,3953,3957,3961,3965,3969,3973],{"type":54,"tag":88,"props":3941,"children":3942},{"style":418},[3943],{"type":60,"value":3944},"    const",{"type":54,"tag":88,"props":3946,"children":3947},{"style":154},[3948],{"type":60,"value":2646},{"type":54,"tag":88,"props":3950,"children":3951},{"style":160},[3952],{"type":60,"value":3412},{"type":54,"tag":88,"props":3954,"children":3955},{"style":302},[3956],{"type":60,"value":1494},{"type":54,"tag":88,"props":3958,"children":3959},{"style":154},[3960],{"type":60,"value":1407},{"type":54,"tag":88,"props":3962,"children":3963},{"style":160},[3964],{"type":60,"value":559},{"type":54,"tag":88,"props":3966,"children":3967},{"style":438},[3968],{"type":60,"value":2541},{"type":54,"tag":88,"props":3970,"children":3971},{"style":453},[3972],{"type":60,"value":445},{"type":54,"tag":88,"props":3974,"children":3975},{"style":160},[3976],{"type":60,"value":1536},{"type":54,"tag":88,"props":3978,"children":3979},{"class":90,"line":208},[3980,3985,3989,3993],{"type":54,"tag":88,"props":3981,"children":3982},{"style":453},[3983],{"type":60,"value":3984},"      numberOfMessages",{"type":54,"tag":88,"props":3986,"children":3987},{"style":160},[3988],{"type":60,"value":461},{"type":54,"tag":88,"props":3990,"children":3991},{"style":2295},[3992],{"type":60,"value":2566},{"type":54,"tag":88,"props":3994,"children":3995},{"style":160},[3996],{"type":60,"value":650},{"type":54,"tag":88,"props":3998,"children":3999},{"class":90,"line":255},[4000,4005,4009,4013],{"type":54,"tag":88,"props":4001,"children":4002},{"style":453},[4003],{"type":60,"value":4004},"      visibilityTimeout",{"type":54,"tag":88,"props":4006,"children":4007},{"style":160},[4008],{"type":60,"value":461},{"type":54,"tag":88,"props":4010,"children":4011},{"style":2295},[4012],{"type":60,"value":2586},{"type":54,"tag":88,"props":4014,"children":4015},{"style":160},[4016],{"type":60,"value":650},{"type":54,"tag":88,"props":4018,"children":4019},{"class":90,"line":500},[4020,4025,4029],{"type":54,"tag":88,"props":4021,"children":4022},{"style":160},[4023],{"type":60,"value":4024},"    }",{"type":54,"tag":88,"props":4026,"children":4027},{"style":453},[4028],{"type":60,"value":493},{"type":54,"tag":88,"props":4030,"children":4031},{"style":160},[4032],{"type":60,"value":344},{"type":54,"tag":88,"props":4034,"children":4035},{"class":90,"line":509},[4036],{"type":54,"tag":88,"props":4037,"children":4038},{"emptyLinePlaceholder":401},[4039],{"type":60,"value":404},{"type":54,"tag":88,"props":4041,"children":4042},{"class":90,"line":518},[4043,4048,4052,4057,4061,4066,4070,4075,4080,4085,4089],{"type":54,"tag":88,"props":4044,"children":4045},{"style":302},[4046],{"type":60,"value":4047},"    if",{"type":54,"tag":88,"props":4049,"children":4050},{"style":453},[4051],{"type":60,"value":1499},{"type":54,"tag":88,"props":4053,"children":4054},{"style":154},[4055],{"type":60,"value":4056},"response",{"type":54,"tag":88,"props":4058,"children":4059},{"style":160},[4060],{"type":60,"value":559},{"type":54,"tag":88,"props":4062,"children":4063},{"style":154},[4064],{"type":60,"value":4065},"receivedMessageItems",{"type":54,"tag":88,"props":4067,"children":4068},{"style":160},[4069],{"type":60,"value":559},{"type":54,"tag":88,"props":4071,"children":4072},{"style":154},[4073],{"type":60,"value":4074},"length",{"type":54,"tag":88,"props":4076,"children":4077},{"style":160},[4078],{"type":60,"value":4079}," ===",{"type":54,"tag":88,"props":4081,"children":4082},{"style":2295},[4083],{"type":60,"value":4084}," 0",{"type":54,"tag":88,"props":4086,"children":4087},{"style":453},[4088],{"type":60,"value":3932},{"type":54,"tag":88,"props":4090,"children":4091},{"style":160},[4092],{"type":60,"value":1536},{"type":54,"tag":88,"props":4094,"children":4095},{"class":90,"line":527},[4096],{"type":54,"tag":88,"props":4097,"children":4098},{"style":202},[4099],{"type":60,"value":4100},"      \u002F\u002F No messages, wait before polling again\n",{"type":54,"tag":88,"props":4102,"children":4103},{"class":90,"line":535},[4104,4109,4114,4118,4123,4127],{"type":54,"tag":88,"props":4105,"children":4106},{"style":302},[4107],{"type":60,"value":4108},"      await",{"type":54,"tag":88,"props":4110,"children":4111},{"style":438},[4112],{"type":60,"value":4113}," sleep",{"type":54,"tag":88,"props":4115,"children":4116},{"style":453},[4117],{"type":60,"value":445},{"type":54,"tag":88,"props":4119,"children":4120},{"style":2295},[4121],{"type":60,"value":4122},"5000",{"type":54,"tag":88,"props":4124,"children":4125},{"style":453},[4126],{"type":60,"value":493},{"type":54,"tag":88,"props":4128,"children":4129},{"style":160},[4130],{"type":60,"value":344},{"type":54,"tag":88,"props":4132,"children":4133},{"class":90,"line":580},[4134,4139],{"type":54,"tag":88,"props":4135,"children":4136},{"style":302},[4137],{"type":60,"value":4138},"      continue",{"type":54,"tag":88,"props":4140,"children":4141},{"style":160},[4142],{"type":60,"value":344},{"type":54,"tag":88,"props":4144,"children":4145},{"class":90,"line":610},[4146],{"type":54,"tag":88,"props":4147,"children":4148},{"style":160},[4149],{"type":60,"value":4150},"    }\n",{"type":54,"tag":88,"props":4152,"children":4153},{"class":90,"line":653},[4154],{"type":54,"tag":88,"props":4155,"children":4156},{"emptyLinePlaceholder":401},[4157],{"type":60,"value":404},{"type":54,"tag":88,"props":4159,"children":4160},{"class":90,"line":662},[4161,4166,4170,4174,4178,4183,4187,4191,4195,4199],{"type":54,"tag":88,"props":4162,"children":4163},{"style":302},[4164],{"type":60,"value":4165},"    for",{"type":54,"tag":88,"props":4167,"children":4168},{"style":453},[4169],{"type":60,"value":1499},{"type":54,"tag":88,"props":4171,"children":4172},{"style":418},[4173],{"type":60,"value":421},{"type":54,"tag":88,"props":4175,"children":4176},{"style":154},[4177],{"type":60,"value":2700},{"type":54,"tag":88,"props":4179,"children":4180},{"style":160},[4181],{"type":60,"value":4182}," of",{"type":54,"tag":88,"props":4184,"children":4185},{"style":154},[4186],{"type":60,"value":2646},{"type":54,"tag":88,"props":4188,"children":4189},{"style":160},[4190],{"type":60,"value":559},{"type":54,"tag":88,"props":4192,"children":4193},{"style":154},[4194],{"type":60,"value":4065},{"type":54,"tag":88,"props":4196,"children":4197},{"style":453},[4198],{"type":60,"value":3932},{"type":54,"tag":88,"props":4200,"children":4201},{"style":160},[4202],{"type":60,"value":1536},{"type":54,"tag":88,"props":4204,"children":4205},{"class":90,"line":2914},[4206,4211],{"type":54,"tag":88,"props":4207,"children":4208},{"style":302},[4209],{"type":60,"value":4210},"      try",{"type":54,"tag":88,"props":4212,"children":4213},{"style":160},[4214],{"type":60,"value":2280},{"type":54,"tag":88,"props":4216,"children":4217},{"class":90,"line":2923},[4218,4223,4228,4232,4236,4240,4244,4248],{"type":54,"tag":88,"props":4219,"children":4220},{"style":302},[4221],{"type":60,"value":4222},"        await",{"type":54,"tag":88,"props":4224,"children":4225},{"style":438},[4226],{"type":60,"value":4227}," processMessage",{"type":54,"tag":88,"props":4229,"children":4230},{"style":453},[4231],{"type":60,"value":445},{"type":54,"tag":88,"props":4233,"children":4234},{"style":154},[4235],{"type":60,"value":2951},{"type":54,"tag":88,"props":4237,"children":4238},{"style":160},[4239],{"type":60,"value":559},{"type":54,"tag":88,"props":4241,"children":4242},{"style":154},[4243],{"type":60,"value":2766},{"type":54,"tag":88,"props":4245,"children":4246},{"style":453},[4247],{"type":60,"value":493},{"type":54,"tag":88,"props":4249,"children":4250},{"style":160},[4251],{"type":60,"value":344},{"type":54,"tag":88,"props":4253,"children":4254},{"class":90,"line":2986},[4255,4259,4263,4267,4271,4275,4279,4283,4287,4291,4295,4299,4303,4307],{"type":54,"tag":88,"props":4256,"children":4257},{"style":302},[4258],{"type":60,"value":4222},{"type":54,"tag":88,"props":4260,"children":4261},{"style":154},[4262],{"type":60,"value":1407},{"type":54,"tag":88,"props":4264,"children":4265},{"style":160},[4266],{"type":60,"value":559},{"type":54,"tag":88,"props":4268,"children":4269},{"style":438},[4270],{"type":60,"value":2942},{"type":54,"tag":88,"props":4272,"children":4273},{"style":453},[4274],{"type":60,"value":445},{"type":54,"tag":88,"props":4276,"children":4277},{"style":154},[4278],{"type":60,"value":2951},{"type":54,"tag":88,"props":4280,"children":4281},{"style":160},[4282],{"type":60,"value":559},{"type":54,"tag":88,"props":4284,"children":4285},{"style":154},[4286],{"type":60,"value":2709},{"type":54,"tag":88,"props":4288,"children":4289},{"style":160},[4290],{"type":60,"value":365},{"type":54,"tag":88,"props":4292,"children":4293},{"style":154},[4294],{"type":60,"value":2700},{"type":54,"tag":88,"props":4296,"children":4297},{"style":160},[4298],{"type":60,"value":559},{"type":54,"tag":88,"props":4300,"children":4301},{"style":154},[4302],{"type":60,"value":2880},{"type":54,"tag":88,"props":4304,"children":4305},{"style":453},[4306],{"type":60,"value":493},{"type":54,"tag":88,"props":4308,"children":4309},{"style":160},[4310],{"type":60,"value":344},{"type":54,"tag":88,"props":4312,"children":4314},{"class":90,"line":4313},18,[4315,4320,4325,4329,4334,4338],{"type":54,"tag":88,"props":4316,"children":4317},{"style":160},[4318],{"type":60,"value":4319},"      }",{"type":54,"tag":88,"props":4321,"children":4322},{"style":302},[4323],{"type":60,"value":4324}," catch",{"type":54,"tag":88,"props":4326,"children":4327},{"style":453},[4328],{"type":60,"value":1499},{"type":54,"tag":88,"props":4330,"children":4331},{"style":154},[4332],{"type":60,"value":4333},"error",{"type":54,"tag":88,"props":4335,"children":4336},{"style":453},[4337],{"type":60,"value":3932},{"type":54,"tag":88,"props":4339,"children":4340},{"style":160},[4341],{"type":60,"value":1536},{"type":54,"tag":88,"props":4343,"children":4345},{"class":90,"line":4344},19,[4346,4351,4355,4359,4363,4367,4372,4376,4380,4384,4388,4392,4396,4400,4404,4409,4413],{"type":54,"tag":88,"props":4347,"children":4348},{"style":154},[4349],{"type":60,"value":4350},"        console",{"type":54,"tag":88,"props":4352,"children":4353},{"style":160},[4354],{"type":60,"value":559},{"type":54,"tag":88,"props":4356,"children":4357},{"style":438},[4358],{"type":60,"value":4333},{"type":54,"tag":88,"props":4360,"children":4361},{"style":453},[4362],{"type":60,"value":445},{"type":54,"tag":88,"props":4364,"children":4365},{"style":160},[4366],{"type":60,"value":645},{"type":54,"tag":88,"props":4368,"children":4369},{"style":101},[4370],{"type":60,"value":4371},"Failed to process message ",{"type":54,"tag":88,"props":4373,"children":4374},{"style":160},[4375],{"type":60,"value":626},{"type":54,"tag":88,"props":4377,"children":4378},{"style":154},[4379],{"type":60,"value":2951},{"type":54,"tag":88,"props":4381,"children":4382},{"style":160},[4383],{"type":60,"value":559},{"type":54,"tag":88,"props":4385,"children":4386},{"style":154},[4387],{"type":60,"value":2709},{"type":54,"tag":88,"props":4389,"children":4390},{"style":160},[4391],{"type":60,"value":488},{"type":54,"tag":88,"props":4393,"children":4394},{"style":101},[4395],{"type":60,"value":461},{"type":54,"tag":88,"props":4397,"children":4398},{"style":160},[4399],{"type":60,"value":645},{"type":54,"tag":88,"props":4401,"children":4402},{"style":160},[4403],{"type":60,"value":365},{"type":54,"tag":88,"props":4405,"children":4406},{"style":154},[4407],{"type":60,"value":4408}," error",{"type":54,"tag":88,"props":4410,"children":4411},{"style":453},[4412],{"type":60,"value":493},{"type":54,"tag":88,"props":4414,"children":4415},{"style":160},[4416],{"type":60,"value":344},{"type":54,"tag":88,"props":4418,"children":4420},{"class":90,"line":4419},20,[4421],{"type":54,"tag":88,"props":4422,"children":4423},{"style":202},[4424],{"type":60,"value":4425},"        \u002F\u002F Message will become visible again after timeout\n",{"type":54,"tag":88,"props":4427,"children":4429},{"class":90,"line":4428},21,[4430],{"type":54,"tag":88,"props":4431,"children":4432},{"style":160},[4433],{"type":60,"value":4434},"      }\n",{"type":54,"tag":88,"props":4436,"children":4438},{"class":90,"line":4437},22,[4439],{"type":54,"tag":88,"props":4440,"children":4441},{"style":160},[4442],{"type":60,"value":4150},{"type":54,"tag":88,"props":4444,"children":4446},{"class":90,"line":4445},23,[4447],{"type":54,"tag":88,"props":4448,"children":4449},{"style":160},[4450],{"type":60,"value":4451},"  }\n",{"type":54,"tag":88,"props":4453,"children":4455},{"class":90,"line":4454},24,[4456],{"type":54,"tag":88,"props":4457,"children":4458},{"style":160},[4459],{"type":60,"value":1587},{"type":54,"tag":88,"props":4461,"children":4463},{"class":90,"line":4462},25,[4464],{"type":54,"tag":88,"props":4465,"children":4466},{"emptyLinePlaceholder":401},[4467],{"type":60,"value":404},{"type":54,"tag":88,"props":4469,"children":4471},{"class":90,"line":4470},26,[4472,4476,4480,4484,4488,4493,4497,4502,4506,4510,4514,4518,4522],{"type":54,"tag":88,"props":4473,"children":4474},{"style":418},[4475],{"type":60,"value":3851},{"type":54,"tag":88,"props":4477,"children":4478},{"style":418},[4479],{"type":60,"value":3856},{"type":54,"tag":88,"props":4481,"children":4482},{"style":438},[4483],{"type":60,"value":4227},{"type":54,"tag":88,"props":4485,"children":4486},{"style":160},[4487],{"type":60,"value":445},{"type":54,"tag":88,"props":4489,"children":4490},{"style":3868},[4491],{"type":60,"value":4492},"content",{"type":54,"tag":88,"props":4494,"children":4495},{"style":160},[4496],{"type":60,"value":461},{"type":54,"tag":88,"props":4498,"children":4499},{"style":95},[4500],{"type":60,"value":4501}," string",{"type":54,"tag":88,"props":4503,"children":4504},{"style":160},[4505],{"type":60,"value":3885},{"type":54,"tag":88,"props":4507,"children":4508},{"style":95},[4509],{"type":60,"value":3890},{"type":54,"tag":88,"props":4511,"children":4512},{"style":160},[4513],{"type":60,"value":3895},{"type":54,"tag":88,"props":4515,"children":4516},{"style":95},[4517],{"type":60,"value":3900},{"type":54,"tag":88,"props":4519,"children":4520},{"style":160},[4521],{"type":60,"value":3905},{"type":54,"tag":88,"props":4523,"children":4524},{"style":160},[4525],{"type":60,"value":2280},{"type":54,"tag":88,"props":4527,"children":4529},{"class":90,"line":4528},27,[4530,4534,4539,4543,4548,4552,4557,4561,4565,4569],{"type":54,"tag":88,"props":4531,"children":4532},{"style":418},[4533],{"type":60,"value":3402},{"type":54,"tag":88,"props":4535,"children":4536},{"style":154},[4537],{"type":60,"value":4538}," task",{"type":54,"tag":88,"props":4540,"children":4541},{"style":160},[4542],{"type":60,"value":3412},{"type":54,"tag":88,"props":4544,"children":4545},{"style":154},[4546],{"type":60,"value":4547}," JSON",{"type":54,"tag":88,"props":4549,"children":4550},{"style":160},[4551],{"type":60,"value":559},{"type":54,"tag":88,"props":4553,"children":4554},{"style":438},[4555],{"type":60,"value":4556},"parse",{"type":54,"tag":88,"props":4558,"children":4559},{"style":453},[4560],{"type":60,"value":445},{"type":54,"tag":88,"props":4562,"children":4563},{"style":154},[4564],{"type":60,"value":4492},{"type":54,"tag":88,"props":4566,"children":4567},{"style":453},[4568],{"type":60,"value":493},{"type":54,"tag":88,"props":4570,"children":4571},{"style":160},[4572],{"type":60,"value":344},{"type":54,"tag":88,"props":4574,"children":4576},{"class":90,"line":4575},28,[4577],{"type":54,"tag":88,"props":4578,"children":4579},{"style":202},[4580],{"type":60,"value":4581},"  \u002F\u002F Process task...\n",{"type":54,"tag":88,"props":4583,"children":4585},{"class":90,"line":4584},29,[4586],{"type":54,"tag":88,"props":4587,"children":4588},{"style":160},[4589],{"type":60,"value":1587},{"type":54,"tag":88,"props":4591,"children":4593},{"class":90,"line":4592},30,[4594],{"type":54,"tag":88,"props":4595,"children":4596},{"emptyLinePlaceholder":401},[4597],{"type":60,"value":404},{"type":54,"tag":88,"props":4599,"children":4601},{"class":90,"line":4600},31,[4602,4607,4611,4615,4620,4624,4629,4633,4637,4641,4645,4649],{"type":54,"tag":88,"props":4603,"children":4604},{"style":418},[4605],{"type":60,"value":4606},"function",{"type":54,"tag":88,"props":4608,"children":4609},{"style":438},[4610],{"type":60,"value":4113},{"type":54,"tag":88,"props":4612,"children":4613},{"style":160},[4614],{"type":60,"value":445},{"type":54,"tag":88,"props":4616,"children":4617},{"style":3868},[4618],{"type":60,"value":4619},"ms",{"type":54,"tag":88,"props":4621,"children":4622},{"style":160},[4623],{"type":60,"value":461},{"type":54,"tag":88,"props":4625,"children":4626},{"style":95},[4627],{"type":60,"value":4628}," number",{"type":54,"tag":88,"props":4630,"children":4631},{"style":160},[4632],{"type":60,"value":3885},{"type":54,"tag":88,"props":4634,"children":4635},{"style":95},[4636],{"type":60,"value":3890},{"type":54,"tag":88,"props":4638,"children":4639},{"style":160},[4640],{"type":60,"value":3895},{"type":54,"tag":88,"props":4642,"children":4643},{"style":95},[4644],{"type":60,"value":3900},{"type":54,"tag":88,"props":4646,"children":4647},{"style":160},[4648],{"type":60,"value":3905},{"type":54,"tag":88,"props":4650,"children":4651},{"style":160},[4652],{"type":60,"value":2280},{"type":54,"tag":88,"props":4654,"children":4656},{"class":90,"line":4655},32,[4657,4662,4666,4670,4674,4678,4683,4687,4692,4697,4701,4705,4709,4714,4719],{"type":54,"tag":88,"props":4658,"children":4659},{"style":302},[4660],{"type":60,"value":4661},"  return",{"type":54,"tag":88,"props":4663,"children":4664},{"style":160},[4665],{"type":60,"value":435},{"type":54,"tag":88,"props":4667,"children":4668},{"style":95},[4669],{"type":60,"value":3890},{"type":54,"tag":88,"props":4671,"children":4672},{"style":453},[4673],{"type":60,"value":445},{"type":54,"tag":88,"props":4675,"children":4676},{"style":160},[4677],{"type":60,"value":445},{"type":54,"tag":88,"props":4679,"children":4680},{"style":3868},[4681],{"type":60,"value":4682},"resolve",{"type":54,"tag":88,"props":4684,"children":4685},{"style":160},[4686],{"type":60,"value":493},{"type":54,"tag":88,"props":4688,"children":4689},{"style":418},[4690],{"type":60,"value":4691}," =>",{"type":54,"tag":88,"props":4693,"children":4694},{"style":438},[4695],{"type":60,"value":4696}," setTimeout",{"type":54,"tag":88,"props":4698,"children":4699},{"style":453},[4700],{"type":60,"value":445},{"type":54,"tag":88,"props":4702,"children":4703},{"style":154},[4704],{"type":60,"value":4682},{"type":54,"tag":88,"props":4706,"children":4707},{"style":160},[4708],{"type":60,"value":365},{"type":54,"tag":88,"props":4710,"children":4711},{"style":154},[4712],{"type":60,"value":4713}," ms",{"type":54,"tag":88,"props":4715,"children":4716},{"style":453},[4717],{"type":60,"value":4718},"))",{"type":54,"tag":88,"props":4720,"children":4721},{"style":160},[4722],{"type":60,"value":344},{"type":54,"tag":88,"props":4724,"children":4726},{"class":90,"line":4725},33,[4727],{"type":54,"tag":88,"props":4728,"children":4729},{"style":160},[4730],{"type":60,"value":1587},{"type":54,"tag":283,"props":4732,"children":4734},{"id":4733},"poison-message-handling",[4735],{"type":60,"value":4736},"Poison Message Handling",{"type":54,"tag":76,"props":4738,"children":4740},{"className":291,"code":4739,"language":21,"meta":81,"style":81},"const MAX_DEQUEUE_COUNT = 5;\n\nasync function processWithPoisonHandling(\n  queueClient: QueueClient,\n  poisonQueueClient: QueueClient\n): Promise\u003Cvoid> {\n  const response = await queueClient.receiveMessages({\n    numberOfMessages: 10,\n    visibilityTimeout: 30,\n  });\n\n  for (const message of response.receivedMessageItems) {\n    if (message.dequeueCount > MAX_DEQUEUE_COUNT) {\n      \u002F\u002F Move to poison queue\n      await poisonQueueClient.sendMessage(message.messageText);\n      await queueClient.deleteMessage(message.messageId, message.popReceipt);\n      console.log(`Moved message ${message.messageId} to poison queue`);\n      continue;\n    }\n\n    try {\n      await processMessage(message.messageText);\n      await queueClient.deleteMessage(message.messageId, message.popReceipt);\n    } catch (error) {\n      console.error(`Processing failed (attempt ${message.dequeueCount}):`, error);\n    }\n  }\n}\n",[4741],{"type":54,"tag":84,"props":4742,"children":4743},{"__ignoreMap":81},[4744,4768,4775,4795,4815,4832,4859,4898,4918,4938,4954,4961,5005,5046,5054,5098,5157,5223,5234,5241,5248,5260,5295,5354,5381,5453,5460,5467],{"type":54,"tag":88,"props":4745,"children":4746},{"class":90,"line":91},[4747,4751,4756,4760,4764],{"type":54,"tag":88,"props":4748,"children":4749},{"style":418},[4750],{"type":60,"value":421},{"type":54,"tag":88,"props":4752,"children":4753},{"style":154},[4754],{"type":60,"value":4755}," MAX_DEQUEUE_COUNT ",{"type":54,"tag":88,"props":4757,"children":4758},{"style":160},[4759],{"type":60,"value":219},{"type":54,"tag":88,"props":4761,"children":4762},{"style":2295},[4763],{"type":60,"value":3065},{"type":54,"tag":88,"props":4765,"children":4766},{"style":160},[4767],{"type":60,"value":344},{"type":54,"tag":88,"props":4769,"children":4770},{"class":90,"line":176},[4771],{"type":54,"tag":88,"props":4772,"children":4773},{"emptyLinePlaceholder":401},[4774],{"type":60,"value":404},{"type":54,"tag":88,"props":4776,"children":4777},{"class":90,"line":198},[4778,4782,4786,4791],{"type":54,"tag":88,"props":4779,"children":4780},{"style":418},[4781],{"type":60,"value":3851},{"type":54,"tag":88,"props":4783,"children":4784},{"style":418},[4785],{"type":60,"value":3856},{"type":54,"tag":88,"props":4787,"children":4788},{"style":438},[4789],{"type":60,"value":4790}," processWithPoisonHandling",{"type":54,"tag":88,"props":4792,"children":4793},{"style":160},[4794],{"type":60,"value":607},{"type":54,"tag":88,"props":4796,"children":4797},{"class":90,"line":208},[4798,4803,4807,4811],{"type":54,"tag":88,"props":4799,"children":4800},{"style":3868},[4801],{"type":60,"value":4802},"  queueClient",{"type":54,"tag":88,"props":4804,"children":4805},{"style":160},[4806],{"type":60,"value":461},{"type":54,"tag":88,"props":4808,"children":4809},{"style":95},[4810],{"type":60,"value":3880},{"type":54,"tag":88,"props":4812,"children":4813},{"style":160},[4814],{"type":60,"value":650},{"type":54,"tag":88,"props":4816,"children":4817},{"class":90,"line":255},[4818,4823,4827],{"type":54,"tag":88,"props":4819,"children":4820},{"style":3868},[4821],{"type":60,"value":4822},"  poisonQueueClient",{"type":54,"tag":88,"props":4824,"children":4825},{"style":160},[4826],{"type":60,"value":461},{"type":54,"tag":88,"props":4828,"children":4829},{"style":95},[4830],{"type":60,"value":4831}," QueueClient\n",{"type":54,"tag":88,"props":4833,"children":4834},{"class":90,"line":500},[4835,4839,4843,4847,4851,4855],{"type":54,"tag":88,"props":4836,"children":4837},{"style":160},[4838],{"type":60,"value":3885},{"type":54,"tag":88,"props":4840,"children":4841},{"style":95},[4842],{"type":60,"value":3890},{"type":54,"tag":88,"props":4844,"children":4845},{"style":160},[4846],{"type":60,"value":3895},{"type":54,"tag":88,"props":4848,"children":4849},{"style":95},[4850],{"type":60,"value":3900},{"type":54,"tag":88,"props":4852,"children":4853},{"style":160},[4854],{"type":60,"value":3905},{"type":54,"tag":88,"props":4856,"children":4857},{"style":160},[4858],{"type":60,"value":2280},{"type":54,"tag":88,"props":4860,"children":4861},{"class":90,"line":509},[4862,4866,4870,4874,4878,4882,4886,4890,4894],{"type":54,"tag":88,"props":4863,"children":4864},{"style":418},[4865],{"type":60,"value":3402},{"type":54,"tag":88,"props":4867,"children":4868},{"style":154},[4869],{"type":60,"value":2646},{"type":54,"tag":88,"props":4871,"children":4872},{"style":160},[4873],{"type":60,"value":3412},{"type":54,"tag":88,"props":4875,"children":4876},{"style":302},[4877],{"type":60,"value":1494},{"type":54,"tag":88,"props":4879,"children":4880},{"style":154},[4881],{"type":60,"value":1407},{"type":54,"tag":88,"props":4883,"children":4884},{"style":160},[4885],{"type":60,"value":559},{"type":54,"tag":88,"props":4887,"children":4888},{"style":438},[4889],{"type":60,"value":2541},{"type":54,"tag":88,"props":4891,"children":4892},{"style":453},[4893],{"type":60,"value":445},{"type":54,"tag":88,"props":4895,"children":4896},{"style":160},[4897],{"type":60,"value":1536},{"type":54,"tag":88,"props":4899,"children":4900},{"class":90,"line":518},[4901,4906,4910,4914],{"type":54,"tag":88,"props":4902,"children":4903},{"style":453},[4904],{"type":60,"value":4905},"    numberOfMessages",{"type":54,"tag":88,"props":4907,"children":4908},{"style":160},[4909],{"type":60,"value":461},{"type":54,"tag":88,"props":4911,"children":4912},{"style":2295},[4913],{"type":60,"value":2566},{"type":54,"tag":88,"props":4915,"children":4916},{"style":160},[4917],{"type":60,"value":650},{"type":54,"tag":88,"props":4919,"children":4920},{"class":90,"line":527},[4921,4926,4930,4934],{"type":54,"tag":88,"props":4922,"children":4923},{"style":453},[4924],{"type":60,"value":4925},"    visibilityTimeout",{"type":54,"tag":88,"props":4927,"children":4928},{"style":160},[4929],{"type":60,"value":461},{"type":54,"tag":88,"props":4931,"children":4932},{"style":2295},[4933],{"type":60,"value":2586},{"type":54,"tag":88,"props":4935,"children":4936},{"style":160},[4937],{"type":60,"value":650},{"type":54,"tag":88,"props":4939,"children":4940},{"class":90,"line":535},[4941,4946,4950],{"type":54,"tag":88,"props":4942,"children":4943},{"style":160},[4944],{"type":60,"value":4945},"  }",{"type":54,"tag":88,"props":4947,"children":4948},{"style":453},[4949],{"type":60,"value":493},{"type":54,"tag":88,"props":4951,"children":4952},{"style":160},[4953],{"type":60,"value":344},{"type":54,"tag":88,"props":4955,"children":4956},{"class":90,"line":580},[4957],{"type":54,"tag":88,"props":4958,"children":4959},{"emptyLinePlaceholder":401},[4960],{"type":60,"value":404},{"type":54,"tag":88,"props":4962,"children":4963},{"class":90,"line":610},[4964,4969,4973,4977,4981,4985,4989,4993,4997,5001],{"type":54,"tag":88,"props":4965,"children":4966},{"style":302},[4967],{"type":60,"value":4968},"  for",{"type":54,"tag":88,"props":4970,"children":4971},{"style":453},[4972],{"type":60,"value":1499},{"type":54,"tag":88,"props":4974,"children":4975},{"style":418},[4976],{"type":60,"value":421},{"type":54,"tag":88,"props":4978,"children":4979},{"style":154},[4980],{"type":60,"value":2700},{"type":54,"tag":88,"props":4982,"children":4983},{"style":160},[4984],{"type":60,"value":4182},{"type":54,"tag":88,"props":4986,"children":4987},{"style":154},[4988],{"type":60,"value":2646},{"type":54,"tag":88,"props":4990,"children":4991},{"style":160},[4992],{"type":60,"value":559},{"type":54,"tag":88,"props":4994,"children":4995},{"style":154},[4996],{"type":60,"value":4065},{"type":54,"tag":88,"props":4998,"children":4999},{"style":453},[5000],{"type":60,"value":3932},{"type":54,"tag":88,"props":5002,"children":5003},{"style":160},[5004],{"type":60,"value":1536},{"type":54,"tag":88,"props":5006,"children":5007},{"class":90,"line":653},[5008,5012,5016,5020,5024,5028,5033,5038,5042],{"type":54,"tag":88,"props":5009,"children":5010},{"style":302},[5011],{"type":60,"value":4047},{"type":54,"tag":88,"props":5013,"children":5014},{"style":453},[5015],{"type":60,"value":1499},{"type":54,"tag":88,"props":5017,"children":5018},{"style":154},[5019],{"type":60,"value":2951},{"type":54,"tag":88,"props":5021,"children":5022},{"style":160},[5023],{"type":60,"value":559},{"type":54,"tag":88,"props":5025,"children":5026},{"style":154},[5027],{"type":60,"value":2823},{"type":54,"tag":88,"props":5029,"children":5030},{"style":160},[5031],{"type":60,"value":5032}," >",{"type":54,"tag":88,"props":5034,"children":5035},{"style":154},[5036],{"type":60,"value":5037}," MAX_DEQUEUE_COUNT",{"type":54,"tag":88,"props":5039,"children":5040},{"style":453},[5041],{"type":60,"value":3932},{"type":54,"tag":88,"props":5043,"children":5044},{"style":160},[5045],{"type":60,"value":1536},{"type":54,"tag":88,"props":5047,"children":5048},{"class":90,"line":662},[5049],{"type":54,"tag":88,"props":5050,"children":5051},{"style":202},[5052],{"type":60,"value":5053},"      \u002F\u002F Move to poison queue\n",{"type":54,"tag":88,"props":5055,"children":5056},{"class":90,"line":2914},[5057,5061,5066,5070,5074,5078,5082,5086,5090,5094],{"type":54,"tag":88,"props":5058,"children":5059},{"style":302},[5060],{"type":60,"value":4108},{"type":54,"tag":88,"props":5062,"children":5063},{"style":154},[5064],{"type":60,"value":5065}," poisonQueueClient",{"type":54,"tag":88,"props":5067,"children":5068},{"style":160},[5069],{"type":60,"value":559},{"type":54,"tag":88,"props":5071,"children":5072},{"style":438},[5073],{"type":60,"value":2195},{"type":54,"tag":88,"props":5075,"children":5076},{"style":453},[5077],{"type":60,"value":445},{"type":54,"tag":88,"props":5079,"children":5080},{"style":154},[5081],{"type":60,"value":2951},{"type":54,"tag":88,"props":5083,"children":5084},{"style":160},[5085],{"type":60,"value":559},{"type":54,"tag":88,"props":5087,"children":5088},{"style":154},[5089],{"type":60,"value":2766},{"type":54,"tag":88,"props":5091,"children":5092},{"style":453},[5093],{"type":60,"value":493},{"type":54,"tag":88,"props":5095,"children":5096},{"style":160},[5097],{"type":60,"value":344},{"type":54,"tag":88,"props":5099,"children":5100},{"class":90,"line":2923},[5101,5105,5109,5113,5117,5121,5125,5129,5133,5137,5141,5145,5149,5153],{"type":54,"tag":88,"props":5102,"children":5103},{"style":302},[5104],{"type":60,"value":4108},{"type":54,"tag":88,"props":5106,"children":5107},{"style":154},[5108],{"type":60,"value":1407},{"type":54,"tag":88,"props":5110,"children":5111},{"style":160},[5112],{"type":60,"value":559},{"type":54,"tag":88,"props":5114,"children":5115},{"style":438},[5116],{"type":60,"value":2942},{"type":54,"tag":88,"props":5118,"children":5119},{"style":453},[5120],{"type":60,"value":445},{"type":54,"tag":88,"props":5122,"children":5123},{"style":154},[5124],{"type":60,"value":2951},{"type":54,"tag":88,"props":5126,"children":5127},{"style":160},[5128],{"type":60,"value":559},{"type":54,"tag":88,"props":5130,"children":5131},{"style":154},[5132],{"type":60,"value":2709},{"type":54,"tag":88,"props":5134,"children":5135},{"style":160},[5136],{"type":60,"value":365},{"type":54,"tag":88,"props":5138,"children":5139},{"style":154},[5140],{"type":60,"value":2700},{"type":54,"tag":88,"props":5142,"children":5143},{"style":160},[5144],{"type":60,"value":559},{"type":54,"tag":88,"props":5146,"children":5147},{"style":154},[5148],{"type":60,"value":2880},{"type":54,"tag":88,"props":5150,"children":5151},{"style":453},[5152],{"type":60,"value":493},{"type":54,"tag":88,"props":5154,"children":5155},{"style":160},[5156],{"type":60,"value":344},{"type":54,"tag":88,"props":5158,"children":5159},{"class":90,"line":2986},[5160,5165,5169,5173,5177,5181,5186,5190,5194,5198,5202,5206,5211,5215,5219],{"type":54,"tag":88,"props":5161,"children":5162},{"style":154},[5163],{"type":60,"value":5164},"      console",{"type":54,"tag":88,"props":5166,"children":5167},{"style":160},[5168],{"type":60,"value":559},{"type":54,"tag":88,"props":5170,"children":5171},{"style":438},[5172],{"type":60,"value":1553},{"type":54,"tag":88,"props":5174,"children":5175},{"style":453},[5176],{"type":60,"value":445},{"type":54,"tag":88,"props":5178,"children":5179},{"style":160},[5180],{"type":60,"value":645},{"type":54,"tag":88,"props":5182,"children":5183},{"style":101},[5184],{"type":60,"value":5185},"Moved message ",{"type":54,"tag":88,"props":5187,"children":5188},{"style":160},[5189],{"type":60,"value":626},{"type":54,"tag":88,"props":5191,"children":5192},{"style":154},[5193],{"type":60,"value":2951},{"type":54,"tag":88,"props":5195,"children":5196},{"style":160},[5197],{"type":60,"value":559},{"type":54,"tag":88,"props":5199,"children":5200},{"style":154},[5201],{"type":60,"value":2709},{"type":54,"tag":88,"props":5203,"children":5204},{"style":160},[5205],{"type":60,"value":488},{"type":54,"tag":88,"props":5207,"children":5208},{"style":101},[5209],{"type":60,"value":5210}," to poison queue",{"type":54,"tag":88,"props":5212,"children":5213},{"style":160},[5214],{"type":60,"value":645},{"type":54,"tag":88,"props":5216,"children":5217},{"style":453},[5218],{"type":60,"value":493},{"type":54,"tag":88,"props":5220,"children":5221},{"style":160},[5222],{"type":60,"value":344},{"type":54,"tag":88,"props":5224,"children":5225},{"class":90,"line":4313},[5226,5230],{"type":54,"tag":88,"props":5227,"children":5228},{"style":302},[5229],{"type":60,"value":4138},{"type":54,"tag":88,"props":5231,"children":5232},{"style":160},[5233],{"type":60,"value":344},{"type":54,"tag":88,"props":5235,"children":5236},{"class":90,"line":4344},[5237],{"type":54,"tag":88,"props":5238,"children":5239},{"style":160},[5240],{"type":60,"value":4150},{"type":54,"tag":88,"props":5242,"children":5243},{"class":90,"line":4419},[5244],{"type":54,"tag":88,"props":5245,"children":5246},{"emptyLinePlaceholder":401},[5247],{"type":60,"value":404},{"type":54,"tag":88,"props":5249,"children":5250},{"class":90,"line":4428},[5251,5256],{"type":54,"tag":88,"props":5252,"children":5253},{"style":302},[5254],{"type":60,"value":5255},"    try",{"type":54,"tag":88,"props":5257,"children":5258},{"style":160},[5259],{"type":60,"value":2280},{"type":54,"tag":88,"props":5261,"children":5262},{"class":90,"line":4437},[5263,5267,5271,5275,5279,5283,5287,5291],{"type":54,"tag":88,"props":5264,"children":5265},{"style":302},[5266],{"type":60,"value":4108},{"type":54,"tag":88,"props":5268,"children":5269},{"style":438},[5270],{"type":60,"value":4227},{"type":54,"tag":88,"props":5272,"children":5273},{"style":453},[5274],{"type":60,"value":445},{"type":54,"tag":88,"props":5276,"children":5277},{"style":154},[5278],{"type":60,"value":2951},{"type":54,"tag":88,"props":5280,"children":5281},{"style":160},[5282],{"type":60,"value":559},{"type":54,"tag":88,"props":5284,"children":5285},{"style":154},[5286],{"type":60,"value":2766},{"type":54,"tag":88,"props":5288,"children":5289},{"style":453},[5290],{"type":60,"value":493},{"type":54,"tag":88,"props":5292,"children":5293},{"style":160},[5294],{"type":60,"value":344},{"type":54,"tag":88,"props":5296,"children":5297},{"class":90,"line":4445},[5298,5302,5306,5310,5314,5318,5322,5326,5330,5334,5338,5342,5346,5350],{"type":54,"tag":88,"props":5299,"children":5300},{"style":302},[5301],{"type":60,"value":4108},{"type":54,"tag":88,"props":5303,"children":5304},{"style":154},[5305],{"type":60,"value":1407},{"type":54,"tag":88,"props":5307,"children":5308},{"style":160},[5309],{"type":60,"value":559},{"type":54,"tag":88,"props":5311,"children":5312},{"style":438},[5313],{"type":60,"value":2942},{"type":54,"tag":88,"props":5315,"children":5316},{"style":453},[5317],{"type":60,"value":445},{"type":54,"tag":88,"props":5319,"children":5320},{"style":154},[5321],{"type":60,"value":2951},{"type":54,"tag":88,"props":5323,"children":5324},{"style":160},[5325],{"type":60,"value":559},{"type":54,"tag":88,"props":5327,"children":5328},{"style":154},[5329],{"type":60,"value":2709},{"type":54,"tag":88,"props":5331,"children":5332},{"style":160},[5333],{"type":60,"value":365},{"type":54,"tag":88,"props":5335,"children":5336},{"style":154},[5337],{"type":60,"value":2700},{"type":54,"tag":88,"props":5339,"children":5340},{"style":160},[5341],{"type":60,"value":559},{"type":54,"tag":88,"props":5343,"children":5344},{"style":154},[5345],{"type":60,"value":2880},{"type":54,"tag":88,"props":5347,"children":5348},{"style":453},[5349],{"type":60,"value":493},{"type":54,"tag":88,"props":5351,"children":5352},{"style":160},[5353],{"type":60,"value":344},{"type":54,"tag":88,"props":5355,"children":5356},{"class":90,"line":4454},[5357,5361,5365,5369,5373,5377],{"type":54,"tag":88,"props":5358,"children":5359},{"style":160},[5360],{"type":60,"value":4024},{"type":54,"tag":88,"props":5362,"children":5363},{"style":302},[5364],{"type":60,"value":4324},{"type":54,"tag":88,"props":5366,"children":5367},{"style":453},[5368],{"type":60,"value":1499},{"type":54,"tag":88,"props":5370,"children":5371},{"style":154},[5372],{"type":60,"value":4333},{"type":54,"tag":88,"props":5374,"children":5375},{"style":453},[5376],{"type":60,"value":3932},{"type":54,"tag":88,"props":5378,"children":5379},{"style":160},[5380],{"type":60,"value":1536},{"type":54,"tag":88,"props":5382,"children":5383},{"class":90,"line":4462},[5384,5388,5392,5396,5400,5404,5409,5413,5417,5421,5425,5429,5433,5437,5441,5445,5449],{"type":54,"tag":88,"props":5385,"children":5386},{"style":154},[5387],{"type":60,"value":5164},{"type":54,"tag":88,"props":5389,"children":5390},{"style":160},[5391],{"type":60,"value":559},{"type":54,"tag":88,"props":5393,"children":5394},{"style":438},[5395],{"type":60,"value":4333},{"type":54,"tag":88,"props":5397,"children":5398},{"style":453},[5399],{"type":60,"value":445},{"type":54,"tag":88,"props":5401,"children":5402},{"style":160},[5403],{"type":60,"value":645},{"type":54,"tag":88,"props":5405,"children":5406},{"style":101},[5407],{"type":60,"value":5408},"Processing failed (attempt ",{"type":54,"tag":88,"props":5410,"children":5411},{"style":160},[5412],{"type":60,"value":626},{"type":54,"tag":88,"props":5414,"children":5415},{"style":154},[5416],{"type":60,"value":2951},{"type":54,"tag":88,"props":5418,"children":5419},{"style":160},[5420],{"type":60,"value":559},{"type":54,"tag":88,"props":5422,"children":5423},{"style":154},[5424],{"type":60,"value":2823},{"type":54,"tag":88,"props":5426,"children":5427},{"style":160},[5428],{"type":60,"value":488},{"type":54,"tag":88,"props":5430,"children":5431},{"style":101},[5432],{"type":60,"value":3885},{"type":54,"tag":88,"props":5434,"children":5435},{"style":160},[5436],{"type":60,"value":645},{"type":54,"tag":88,"props":5438,"children":5439},{"style":160},[5440],{"type":60,"value":365},{"type":54,"tag":88,"props":5442,"children":5443},{"style":154},[5444],{"type":60,"value":4408},{"type":54,"tag":88,"props":5446,"children":5447},{"style":453},[5448],{"type":60,"value":493},{"type":54,"tag":88,"props":5450,"children":5451},{"style":160},[5452],{"type":60,"value":344},{"type":54,"tag":88,"props":5454,"children":5455},{"class":90,"line":4470},[5456],{"type":54,"tag":88,"props":5457,"children":5458},{"style":160},[5459],{"type":60,"value":4150},{"type":54,"tag":88,"props":5461,"children":5462},{"class":90,"line":4528},[5463],{"type":54,"tag":88,"props":5464,"children":5465},{"style":160},[5466],{"type":60,"value":4451},{"type":54,"tag":88,"props":5468,"children":5469},{"class":90,"line":4575},[5470],{"type":54,"tag":88,"props":5471,"children":5472},{"style":160},[5473],{"type":60,"value":1587},{"type":54,"tag":283,"props":5475,"children":5477},{"id":5476},"batch-processing-with-visibility-extension",[5478],{"type":60,"value":5479},"Batch Processing with Visibility Extension",{"type":54,"tag":76,"props":5481,"children":5483},{"className":291,"code":5482,"language":21,"meta":81,"style":81},"async function processBatchWithExtension(queueClient: QueueClient): Promise\u003Cvoid> {\n  const response = await queueClient.receiveMessages({\n    numberOfMessages: 1,\n    visibilityTimeout: 60,\n  });\n\n  const message = response.receivedMessageItems[0];\n  if (!message) return;\n\n  let popReceipt = message.popReceipt;\n\n  \u002F\u002F Start visibility extension timer\n  const extensionInterval = setInterval(async () => {\n    try {\n      const updateResponse = await queueClient.updateMessage(\n        message.messageId,\n        popReceipt,\n        message.messageText,\n        60 \u002F\u002F Extend by another 60 seconds\n      );\n      popReceipt = updateResponse.popReceipt;\n    } catch (error) {\n      console.error(\"Failed to extend visibility:\", error);\n    }\n  }, 45000); \u002F\u002F Extend every 45 seconds\n\n  try {\n    await longRunningProcess(message.messageText);\n    await queueClient.deleteMessage(message.messageId, popReceipt);\n  } finally {\n    clearInterval(extensionInterval);\n  }\n}\n",[5484],{"type":54,"tag":84,"props":5485,"children":5486},{"__ignoreMap":81},[5487,5543,5582,5602,5621,5636,5643,5687,5721,5728,5761,5768,5776,5818,5829,5865,5885,5897,5916,5929,5941,5969,5996,6044,6051,6077,6084,6096,6133,6184,6200,6225,6232],{"type":54,"tag":88,"props":5488,"children":5489},{"class":90,"line":91},[5490,5494,5498,5503,5507,5511,5515,5519,5523,5527,5531,5535,5539],{"type":54,"tag":88,"props":5491,"children":5492},{"style":418},[5493],{"type":60,"value":3851},{"type":54,"tag":88,"props":5495,"children":5496},{"style":418},[5497],{"type":60,"value":3856},{"type":54,"tag":88,"props":5499,"children":5500},{"style":438},[5501],{"type":60,"value":5502}," processBatchWithExtension",{"type":54,"tag":88,"props":5504,"children":5505},{"style":160},[5506],{"type":60,"value":445},{"type":54,"tag":88,"props":5508,"children":5509},{"style":3868},[5510],{"type":60,"value":3871},{"type":54,"tag":88,"props":5512,"children":5513},{"style":160},[5514],{"type":60,"value":461},{"type":54,"tag":88,"props":5516,"children":5517},{"style":95},[5518],{"type":60,"value":3880},{"type":54,"tag":88,"props":5520,"children":5521},{"style":160},[5522],{"type":60,"value":3885},{"type":54,"tag":88,"props":5524,"children":5525},{"style":95},[5526],{"type":60,"value":3890},{"type":54,"tag":88,"props":5528,"children":5529},{"style":160},[5530],{"type":60,"value":3895},{"type":54,"tag":88,"props":5532,"children":5533},{"style":95},[5534],{"type":60,"value":3900},{"type":54,"tag":88,"props":5536,"children":5537},{"style":160},[5538],{"type":60,"value":3905},{"type":54,"tag":88,"props":5540,"children":5541},{"style":160},[5542],{"type":60,"value":2280},{"type":54,"tag":88,"props":5544,"children":5545},{"class":90,"line":176},[5546,5550,5554,5558,5562,5566,5570,5574,5578],{"type":54,"tag":88,"props":5547,"children":5548},{"style":418},[5549],{"type":60,"value":3402},{"type":54,"tag":88,"props":5551,"children":5552},{"style":154},[5553],{"type":60,"value":2646},{"type":54,"tag":88,"props":5555,"children":5556},{"style":160},[5557],{"type":60,"value":3412},{"type":54,"tag":88,"props":5559,"children":5560},{"style":302},[5561],{"type":60,"value":1494},{"type":54,"tag":88,"props":5563,"children":5564},{"style":154},[5565],{"type":60,"value":1407},{"type":54,"tag":88,"props":5567,"children":5568},{"style":160},[5569],{"type":60,"value":559},{"type":54,"tag":88,"props":5571,"children":5572},{"style":438},[5573],{"type":60,"value":2541},{"type":54,"tag":88,"props":5575,"children":5576},{"style":453},[5577],{"type":60,"value":445},{"type":54,"tag":88,"props":5579,"children":5580},{"style":160},[5581],{"type":60,"value":1536},{"type":54,"tag":88,"props":5583,"children":5584},{"class":90,"line":198},[5585,5589,5593,5598],{"type":54,"tag":88,"props":5586,"children":5587},{"style":453},[5588],{"type":60,"value":4905},{"type":54,"tag":88,"props":5590,"children":5591},{"style":160},[5592],{"type":60,"value":461},{"type":54,"tag":88,"props":5594,"children":5595},{"style":2295},[5596],{"type":60,"value":5597}," 1",{"type":54,"tag":88,"props":5599,"children":5600},{"style":160},[5601],{"type":60,"value":650},{"type":54,"tag":88,"props":5603,"children":5604},{"class":90,"line":208},[5605,5609,5613,5617],{"type":54,"tag":88,"props":5606,"children":5607},{"style":453},[5608],{"type":60,"value":4925},{"type":54,"tag":88,"props":5610,"children":5611},{"style":160},[5612],{"type":60,"value":461},{"type":54,"tag":88,"props":5614,"children":5615},{"style":2295},[5616],{"type":60,"value":2298},{"type":54,"tag":88,"props":5618,"children":5619},{"style":160},[5620],{"type":60,"value":650},{"type":54,"tag":88,"props":5622,"children":5623},{"class":90,"line":255},[5624,5628,5632],{"type":54,"tag":88,"props":5625,"children":5626},{"style":160},[5627],{"type":60,"value":4945},{"type":54,"tag":88,"props":5629,"children":5630},{"style":453},[5631],{"type":60,"value":493},{"type":54,"tag":88,"props":5633,"children":5634},{"style":160},[5635],{"type":60,"value":344},{"type":54,"tag":88,"props":5637,"children":5638},{"class":90,"line":500},[5639],{"type":54,"tag":88,"props":5640,"children":5641},{"emptyLinePlaceholder":401},[5642],{"type":60,"value":404},{"type":54,"tag":88,"props":5644,"children":5645},{"class":90,"line":509},[5646,5650,5654,5658,5662,5666,5670,5675,5679,5683],{"type":54,"tag":88,"props":5647,"children":5648},{"style":418},[5649],{"type":60,"value":3402},{"type":54,"tag":88,"props":5651,"children":5652},{"style":154},[5653],{"type":60,"value":2700},{"type":54,"tag":88,"props":5655,"children":5656},{"style":160},[5657],{"type":60,"value":3412},{"type":54,"tag":88,"props":5659,"children":5660},{"style":154},[5661],{"type":60,"value":2646},{"type":54,"tag":88,"props":5663,"children":5664},{"style":160},[5665],{"type":60,"value":559},{"type":54,"tag":88,"props":5667,"children":5668},{"style":154},[5669],{"type":60,"value":4065},{"type":54,"tag":88,"props":5671,"children":5672},{"style":453},[5673],{"type":60,"value":5674},"[",{"type":54,"tag":88,"props":5676,"children":5677},{"style":2295},[5678],{"type":60,"value":3354},{"type":54,"tag":88,"props":5680,"children":5681},{"style":453},[5682],{"type":60,"value":483},{"type":54,"tag":88,"props":5684,"children":5685},{"style":160},[5686],{"type":60,"value":344},{"type":54,"tag":88,"props":5688,"children":5689},{"class":90,"line":518},[5690,5695,5699,5704,5708,5712,5717],{"type":54,"tag":88,"props":5691,"children":5692},{"style":302},[5693],{"type":60,"value":5694},"  if",{"type":54,"tag":88,"props":5696,"children":5697},{"style":453},[5698],{"type":60,"value":1499},{"type":54,"tag":88,"props":5700,"children":5701},{"style":160},[5702],{"type":60,"value":5703},"!",{"type":54,"tag":88,"props":5705,"children":5706},{"style":154},[5707],{"type":60,"value":2951},{"type":54,"tag":88,"props":5709,"children":5710},{"style":453},[5711],{"type":60,"value":3932},{"type":54,"tag":88,"props":5713,"children":5714},{"style":302},[5715],{"type":60,"value":5716},"return",{"type":54,"tag":88,"props":5718,"children":5719},{"style":160},[5720],{"type":60,"value":344},{"type":54,"tag":88,"props":5722,"children":5723},{"class":90,"line":527},[5724],{"type":54,"tag":88,"props":5725,"children":5726},{"emptyLinePlaceholder":401},[5727],{"type":60,"value":404},{"type":54,"tag":88,"props":5729,"children":5730},{"class":90,"line":535},[5731,5736,5741,5745,5749,5753,5757],{"type":54,"tag":88,"props":5732,"children":5733},{"style":418},[5734],{"type":60,"value":5735},"  let",{"type":54,"tag":88,"props":5737,"children":5738},{"style":154},[5739],{"type":60,"value":5740}," popReceipt",{"type":54,"tag":88,"props":5742,"children":5743},{"style":160},[5744],{"type":60,"value":3412},{"type":54,"tag":88,"props":5746,"children":5747},{"style":154},[5748],{"type":60,"value":2700},{"type":54,"tag":88,"props":5750,"children":5751},{"style":160},[5752],{"type":60,"value":559},{"type":54,"tag":88,"props":5754,"children":5755},{"style":154},[5756],{"type":60,"value":2880},{"type":54,"tag":88,"props":5758,"children":5759},{"style":160},[5760],{"type":60,"value":344},{"type":54,"tag":88,"props":5762,"children":5763},{"class":90,"line":580},[5764],{"type":54,"tag":88,"props":5765,"children":5766},{"emptyLinePlaceholder":401},[5767],{"type":60,"value":404},{"type":54,"tag":88,"props":5769,"children":5770},{"class":90,"line":610},[5771],{"type":54,"tag":88,"props":5772,"children":5773},{"style":202},[5774],{"type":60,"value":5775},"  \u002F\u002F Start visibility extension timer\n",{"type":54,"tag":88,"props":5777,"children":5778},{"class":90,"line":653},[5779,5783,5788,5792,5797,5801,5805,5810,5814],{"type":54,"tag":88,"props":5780,"children":5781},{"style":418},[5782],{"type":60,"value":3402},{"type":54,"tag":88,"props":5784,"children":5785},{"style":154},[5786],{"type":60,"value":5787}," extensionInterval",{"type":54,"tag":88,"props":5789,"children":5790},{"style":160},[5791],{"type":60,"value":3412},{"type":54,"tag":88,"props":5793,"children":5794},{"style":438},[5795],{"type":60,"value":5796}," setInterval",{"type":54,"tag":88,"props":5798,"children":5799},{"style":453},[5800],{"type":60,"value":445},{"type":54,"tag":88,"props":5802,"children":5803},{"style":418},[5804],{"type":60,"value":3851},{"type":54,"tag":88,"props":5806,"children":5807},{"style":160},[5808],{"type":60,"value":5809}," ()",{"type":54,"tag":88,"props":5811,"children":5812},{"style":418},[5813],{"type":60,"value":4691},{"type":54,"tag":88,"props":5815,"children":5816},{"style":160},[5817],{"type":60,"value":2280},{"type":54,"tag":88,"props":5819,"children":5820},{"class":90,"line":662},[5821,5825],{"type":54,"tag":88,"props":5822,"children":5823},{"style":302},[5824],{"type":60,"value":5255},{"type":54,"tag":88,"props":5826,"children":5827},{"style":160},[5828],{"type":60,"value":2280},{"type":54,"tag":88,"props":5830,"children":5831},{"class":90,"line":2914},[5832,5837,5841,5845,5849,5853,5857,5861],{"type":54,"tag":88,"props":5833,"children":5834},{"style":418},[5835],{"type":60,"value":5836},"      const",{"type":54,"tag":88,"props":5838,"children":5839},{"style":154},[5840],{"type":60,"value":3407},{"type":54,"tag":88,"props":5842,"children":5843},{"style":160},[5844],{"type":60,"value":3412},{"type":54,"tag":88,"props":5846,"children":5847},{"style":302},[5848],{"type":60,"value":1494},{"type":54,"tag":88,"props":5850,"children":5851},{"style":154},[5852],{"type":60,"value":1407},{"type":54,"tag":88,"props":5854,"children":5855},{"style":160},[5856],{"type":60,"value":559},{"type":54,"tag":88,"props":5858,"children":5859},{"style":438},[5860],{"type":60,"value":3429},{"type":54,"tag":88,"props":5862,"children":5863},{"style":453},[5864],{"type":60,"value":607},{"type":54,"tag":88,"props":5866,"children":5867},{"class":90,"line":2923},[5868,5873,5877,5881],{"type":54,"tag":88,"props":5869,"children":5870},{"style":154},[5871],{"type":60,"value":5872},"        message",{"type":54,"tag":88,"props":5874,"children":5875},{"style":160},[5876],{"type":60,"value":559},{"type":54,"tag":88,"props":5878,"children":5879},{"style":154},[5880],{"type":60,"value":2709},{"type":54,"tag":88,"props":5882,"children":5883},{"style":160},[5884],{"type":60,"value":650},{"type":54,"tag":88,"props":5886,"children":5887},{"class":90,"line":2986},[5888,5893],{"type":54,"tag":88,"props":5889,"children":5890},{"style":154},[5891],{"type":60,"value":5892},"        popReceipt",{"type":54,"tag":88,"props":5894,"children":5895},{"style":160},[5896],{"type":60,"value":650},{"type":54,"tag":88,"props":5898,"children":5899},{"class":90,"line":4313},[5900,5904,5908,5912],{"type":54,"tag":88,"props":5901,"children":5902},{"style":154},[5903],{"type":60,"value":5872},{"type":54,"tag":88,"props":5905,"children":5906},{"style":160},[5907],{"type":60,"value":559},{"type":54,"tag":88,"props":5909,"children":5910},{"style":154},[5911],{"type":60,"value":2766},{"type":54,"tag":88,"props":5913,"children":5914},{"style":160},[5915],{"type":60,"value":650},{"type":54,"tag":88,"props":5917,"children":5918},{"class":90,"line":4344},[5919,5924],{"type":54,"tag":88,"props":5920,"children":5921},{"style":2295},[5922],{"type":60,"value":5923},"        60",{"type":54,"tag":88,"props":5925,"children":5926},{"style":202},[5927],{"type":60,"value":5928}," \u002F\u002F Extend by another 60 seconds\n",{"type":54,"tag":88,"props":5930,"children":5931},{"class":90,"line":4419},[5932,5937],{"type":54,"tag":88,"props":5933,"children":5934},{"style":453},[5935],{"type":60,"value":5936},"      )",{"type":54,"tag":88,"props":5938,"children":5939},{"style":160},[5940],{"type":60,"value":344},{"type":54,"tag":88,"props":5942,"children":5943},{"class":90,"line":4428},[5944,5949,5953,5957,5961,5965],{"type":54,"tag":88,"props":5945,"children":5946},{"style":154},[5947],{"type":60,"value":5948},"      popReceipt",{"type":54,"tag":88,"props":5950,"children":5951},{"style":160},[5952],{"type":60,"value":3412},{"type":54,"tag":88,"props":5954,"children":5955},{"style":154},[5956],{"type":60,"value":3407},{"type":54,"tag":88,"props":5958,"children":5959},{"style":160},[5960],{"type":60,"value":559},{"type":54,"tag":88,"props":5962,"children":5963},{"style":154},[5964],{"type":60,"value":2880},{"type":54,"tag":88,"props":5966,"children":5967},{"style":160},[5968],{"type":60,"value":344},{"type":54,"tag":88,"props":5970,"children":5971},{"class":90,"line":4437},[5972,5976,5980,5984,5988,5992],{"type":54,"tag":88,"props":5973,"children":5974},{"style":160},[5975],{"type":60,"value":4024},{"type":54,"tag":88,"props":5977,"children":5978},{"style":302},[5979],{"type":60,"value":4324},{"type":54,"tag":88,"props":5981,"children":5982},{"style":453},[5983],{"type":60,"value":1499},{"type":54,"tag":88,"props":5985,"children":5986},{"style":154},[5987],{"type":60,"value":4333},{"type":54,"tag":88,"props":5989,"children":5990},{"style":453},[5991],{"type":60,"value":3932},{"type":54,"tag":88,"props":5993,"children":5994},{"style":160},[5995],{"type":60,"value":1536},{"type":54,"tag":88,"props":5997,"children":5998},{"class":90,"line":4445},[5999,6003,6007,6011,6015,6019,6024,6028,6032,6036,6040],{"type":54,"tag":88,"props":6000,"children":6001},{"style":154},[6002],{"type":60,"value":5164},{"type":54,"tag":88,"props":6004,"children":6005},{"style":160},[6006],{"type":60,"value":559},{"type":54,"tag":88,"props":6008,"children":6009},{"style":438},[6010],{"type":60,"value":4333},{"type":54,"tag":88,"props":6012,"children":6013},{"style":453},[6014],{"type":60,"value":445},{"type":54,"tag":88,"props":6016,"children":6017},{"style":160},[6018],{"type":60,"value":339},{"type":54,"tag":88,"props":6020,"children":6021},{"style":101},[6022],{"type":60,"value":6023},"Failed to extend visibility:",{"type":54,"tag":88,"props":6025,"children":6026},{"style":160},[6027],{"type":60,"value":339},{"type":54,"tag":88,"props":6029,"children":6030},{"style":160},[6031],{"type":60,"value":365},{"type":54,"tag":88,"props":6033,"children":6034},{"style":154},[6035],{"type":60,"value":4408},{"type":54,"tag":88,"props":6037,"children":6038},{"style":453},[6039],{"type":60,"value":493},{"type":54,"tag":88,"props":6041,"children":6042},{"style":160},[6043],{"type":60,"value":344},{"type":54,"tag":88,"props":6045,"children":6046},{"class":90,"line":4454},[6047],{"type":54,"tag":88,"props":6048,"children":6049},{"style":160},[6050],{"type":60,"value":4150},{"type":54,"tag":88,"props":6052,"children":6053},{"class":90,"line":4462},[6054,6059,6064,6068,6072],{"type":54,"tag":88,"props":6055,"children":6056},{"style":160},[6057],{"type":60,"value":6058},"  },",{"type":54,"tag":88,"props":6060,"children":6061},{"style":2295},[6062],{"type":60,"value":6063}," 45000",{"type":54,"tag":88,"props":6065,"children":6066},{"style":453},[6067],{"type":60,"value":493},{"type":54,"tag":88,"props":6069,"children":6070},{"style":160},[6071],{"type":60,"value":238},{"type":54,"tag":88,"props":6073,"children":6074},{"style":202},[6075],{"type":60,"value":6076}," \u002F\u002F Extend every 45 seconds\n",{"type":54,"tag":88,"props":6078,"children":6079},{"class":90,"line":4470},[6080],{"type":54,"tag":88,"props":6081,"children":6082},{"emptyLinePlaceholder":401},[6083],{"type":60,"value":404},{"type":54,"tag":88,"props":6085,"children":6086},{"class":90,"line":4528},[6087,6092],{"type":54,"tag":88,"props":6088,"children":6089},{"style":302},[6090],{"type":60,"value":6091},"  try",{"type":54,"tag":88,"props":6093,"children":6094},{"style":160},[6095],{"type":60,"value":2280},{"type":54,"tag":88,"props":6097,"children":6098},{"class":90,"line":4575},[6099,6104,6109,6113,6117,6121,6125,6129],{"type":54,"tag":88,"props":6100,"children":6101},{"style":302},[6102],{"type":60,"value":6103},"    await",{"type":54,"tag":88,"props":6105,"children":6106},{"style":438},[6107],{"type":60,"value":6108}," longRunningProcess",{"type":54,"tag":88,"props":6110,"children":6111},{"style":453},[6112],{"type":60,"value":445},{"type":54,"tag":88,"props":6114,"children":6115},{"style":154},[6116],{"type":60,"value":2951},{"type":54,"tag":88,"props":6118,"children":6119},{"style":160},[6120],{"type":60,"value":559},{"type":54,"tag":88,"props":6122,"children":6123},{"style":154},[6124],{"type":60,"value":2766},{"type":54,"tag":88,"props":6126,"children":6127},{"style":453},[6128],{"type":60,"value":493},{"type":54,"tag":88,"props":6130,"children":6131},{"style":160},[6132],{"type":60,"value":344},{"type":54,"tag":88,"props":6134,"children":6135},{"class":90,"line":4584},[6136,6140,6144,6148,6152,6156,6160,6164,6168,6172,6176,6180],{"type":54,"tag":88,"props":6137,"children":6138},{"style":302},[6139],{"type":60,"value":6103},{"type":54,"tag":88,"props":6141,"children":6142},{"style":154},[6143],{"type":60,"value":1407},{"type":54,"tag":88,"props":6145,"children":6146},{"style":160},[6147],{"type":60,"value":559},{"type":54,"tag":88,"props":6149,"children":6150},{"style":438},[6151],{"type":60,"value":2942},{"type":54,"tag":88,"props":6153,"children":6154},{"style":453},[6155],{"type":60,"value":445},{"type":54,"tag":88,"props":6157,"children":6158},{"style":154},[6159],{"type":60,"value":2951},{"type":54,"tag":88,"props":6161,"children":6162},{"style":160},[6163],{"type":60,"value":559},{"type":54,"tag":88,"props":6165,"children":6166},{"style":154},[6167],{"type":60,"value":2709},{"type":54,"tag":88,"props":6169,"children":6170},{"style":160},[6171],{"type":60,"value":365},{"type":54,"tag":88,"props":6173,"children":6174},{"style":154},[6175],{"type":60,"value":5740},{"type":54,"tag":88,"props":6177,"children":6178},{"style":453},[6179],{"type":60,"value":493},{"type":54,"tag":88,"props":6181,"children":6182},{"style":160},[6183],{"type":60,"value":344},{"type":54,"tag":88,"props":6185,"children":6186},{"class":90,"line":4592},[6187,6191,6196],{"type":54,"tag":88,"props":6188,"children":6189},{"style":160},[6190],{"type":60,"value":4945},{"type":54,"tag":88,"props":6192,"children":6193},{"style":302},[6194],{"type":60,"value":6195}," finally",{"type":54,"tag":88,"props":6197,"children":6198},{"style":160},[6199],{"type":60,"value":2280},{"type":54,"tag":88,"props":6201,"children":6202},{"class":90,"line":4600},[6203,6208,6212,6217,6221],{"type":54,"tag":88,"props":6204,"children":6205},{"style":438},[6206],{"type":60,"value":6207},"    clearInterval",{"type":54,"tag":88,"props":6209,"children":6210},{"style":453},[6211],{"type":60,"value":445},{"type":54,"tag":88,"props":6213,"children":6214},{"style":154},[6215],{"type":60,"value":6216},"extensionInterval",{"type":54,"tag":88,"props":6218,"children":6219},{"style":453},[6220],{"type":60,"value":493},{"type":54,"tag":88,"props":6222,"children":6223},{"style":160},[6224],{"type":60,"value":344},{"type":54,"tag":88,"props":6226,"children":6227},{"class":90,"line":4655},[6228],{"type":54,"tag":88,"props":6229,"children":6230},{"style":160},[6231],{"type":60,"value":4451},{"type":54,"tag":88,"props":6233,"children":6234},{"class":90,"line":4725},[6235],{"type":54,"tag":88,"props":6236,"children":6237},{"style":160},[6238],{"type":60,"value":1587},{"type":54,"tag":69,"props":6240,"children":6242},{"id":6241},"message-encoding",[6243],{"type":60,"value":6244},"Message Encoding",{"type":54,"tag":63,"props":6246,"children":6247},{},[6248],{"type":60,"value":6249},"By default, messages are Base64 encoded. You can customize this:",{"type":54,"tag":76,"props":6251,"children":6253},{"className":291,"code":6252,"language":21,"meta":81,"style":81},"import { QueueClient } from \"@azure\u002Fstorage-queue\";\n\n\u002F\u002F Custom encoder\u002Fdecoder for plain text\nconst queueClient = new QueueClient(\n  `https:\u002F\u002F${accountName}.queue.core.windows.net\u002Fmy-queue`,\n  credential,\n  {\n    messageEncoding: \"text\", \u002F\u002F \"base64\" (default) or \"text\"\n  }\n);\n\n\u002F\u002F Or with custom encoder\nconst customQueueClient = new QueueClient(\n  `https:\u002F\u002F${accountName}.queue.core.windows.net\u002Fmy-queue`,\n  credential,\n  {\n    messageEncoding: {\n      encode: (message: string) => Buffer.from(message).toString(\"base64\"),\n      decode: (message: string) => Buffer.from(message, \"base64\").toString(),\n    },\n  }\n);\n",[6254],{"type":54,"tag":84,"props":6255,"children":6256},{"__ignoreMap":81},[6257,6296,6303,6311,6338,6374,6386,6394,6427,6434,6445,6452,6460,6488,6523,6534,6541,6556,6645,6734,6742,6749],{"type":54,"tag":88,"props":6258,"children":6259},{"class":90,"line":91},[6260,6264,6268,6272,6276,6280,6284,6288,6292],{"type":54,"tag":88,"props":6261,"children":6262},{"style":302},[6263],{"type":60,"value":305},{"type":54,"tag":88,"props":6265,"children":6266},{"style":160},[6267],{"type":60,"value":310},{"type":54,"tag":88,"props":6269,"children":6270},{"style":154},[6271],{"type":60,"value":3880},{"type":54,"tag":88,"props":6273,"children":6274},{"style":160},[6275],{"type":60,"value":320},{"type":54,"tag":88,"props":6277,"children":6278},{"style":302},[6279],{"type":60,"value":325},{"type":54,"tag":88,"props":6281,"children":6282},{"style":160},[6283],{"type":60,"value":330},{"type":54,"tag":88,"props":6285,"children":6286},{"style":101},[6287],{"type":60,"value":49},{"type":54,"tag":88,"props":6289,"children":6290},{"style":160},[6291],{"type":60,"value":339},{"type":54,"tag":88,"props":6293,"children":6294},{"style":160},[6295],{"type":60,"value":344},{"type":54,"tag":88,"props":6297,"children":6298},{"class":90,"line":176},[6299],{"type":54,"tag":88,"props":6300,"children":6301},{"emptyLinePlaceholder":401},[6302],{"type":60,"value":404},{"type":54,"tag":88,"props":6304,"children":6305},{"class":90,"line":198},[6306],{"type":54,"tag":88,"props":6307,"children":6308},{"style":202},[6309],{"type":60,"value":6310},"\u002F\u002F Custom encoder\u002Fdecoder for plain text\n",{"type":54,"tag":88,"props":6312,"children":6313},{"class":90,"line":208},[6314,6318,6322,6326,6330,6334],{"type":54,"tag":88,"props":6315,"children":6316},{"style":418},[6317],{"type":60,"value":421},{"type":54,"tag":88,"props":6319,"children":6320},{"style":154},[6321],{"type":60,"value":1351},{"type":54,"tag":88,"props":6323,"children":6324},{"style":160},[6325],{"type":60,"value":219},{"type":54,"tag":88,"props":6327,"children":6328},{"style":160},[6329],{"type":60,"value":435},{"type":54,"tag":88,"props":6331,"children":6332},{"style":438},[6333],{"type":60,"value":3880},{"type":54,"tag":88,"props":6335,"children":6336},{"style":154},[6337],{"type":60,"value":607},{"type":54,"tag":88,"props":6339,"children":6340},{"class":90,"line":255},[6341,6345,6349,6353,6357,6361,6366,6370],{"type":54,"tag":88,"props":6342,"children":6343},{"style":160},[6344],{"type":60,"value":616},{"type":54,"tag":88,"props":6346,"children":6347},{"style":101},[6348],{"type":60,"value":621},{"type":54,"tag":88,"props":6350,"children":6351},{"style":160},[6352],{"type":60,"value":626},{"type":54,"tag":88,"props":6354,"children":6355},{"style":154},[6356],{"type":60,"value":631},{"type":54,"tag":88,"props":6358,"children":6359},{"style":160},[6360],{"type":60,"value":488},{"type":54,"tag":88,"props":6362,"children":6363},{"style":101},[6364],{"type":60,"value":6365},".queue.core.windows.net\u002Fmy-queue",{"type":54,"tag":88,"props":6367,"children":6368},{"style":160},[6369],{"type":60,"value":645},{"type":54,"tag":88,"props":6371,"children":6372},{"style":160},[6373],{"type":60,"value":650},{"type":54,"tag":88,"props":6375,"children":6376},{"class":90,"line":500},[6377,6382],{"type":54,"tag":88,"props":6378,"children":6379},{"style":154},[6380],{"type":60,"value":6381},"  credential",{"type":54,"tag":88,"props":6383,"children":6384},{"style":160},[6385],{"type":60,"value":650},{"type":54,"tag":88,"props":6387,"children":6388},{"class":90,"line":509},[6389],{"type":54,"tag":88,"props":6390,"children":6391},{"style":160},[6392],{"type":60,"value":6393},"  {\n",{"type":54,"tag":88,"props":6395,"children":6396},{"class":90,"line":518},[6397,6402,6406,6410,6414,6418,6422],{"type":54,"tag":88,"props":6398,"children":6399},{"style":453},[6400],{"type":60,"value":6401},"    messageEncoding",{"type":54,"tag":88,"props":6403,"children":6404},{"style":160},[6405],{"type":60,"value":461},{"type":54,"tag":88,"props":6407,"children":6408},{"style":160},[6409],{"type":60,"value":330},{"type":54,"tag":88,"props":6411,"children":6412},{"style":101},[6413],{"type":60,"value":60},{"type":54,"tag":88,"props":6415,"children":6416},{"style":160},[6417],{"type":60,"value":339},{"type":54,"tag":88,"props":6419,"children":6420},{"style":160},[6421],{"type":60,"value":365},{"type":54,"tag":88,"props":6423,"children":6424},{"style":202},[6425],{"type":60,"value":6426}," \u002F\u002F \"base64\" (default) or \"text\"\n",{"type":54,"tag":88,"props":6428,"children":6429},{"class":90,"line":527},[6430],{"type":54,"tag":88,"props":6431,"children":6432},{"style":160},[6433],{"type":60,"value":4451},{"type":54,"tag":88,"props":6435,"children":6436},{"class":90,"line":535},[6437,6441],{"type":54,"tag":88,"props":6438,"children":6439},{"style":154},[6440],{"type":60,"value":493},{"type":54,"tag":88,"props":6442,"children":6443},{"style":160},[6444],{"type":60,"value":344},{"type":54,"tag":88,"props":6446,"children":6447},{"class":90,"line":580},[6448],{"type":54,"tag":88,"props":6449,"children":6450},{"emptyLinePlaceholder":401},[6451],{"type":60,"value":404},{"type":54,"tag":88,"props":6453,"children":6454},{"class":90,"line":610},[6455],{"type":54,"tag":88,"props":6456,"children":6457},{"style":202},[6458],{"type":60,"value":6459},"\u002F\u002F Or with custom encoder\n",{"type":54,"tag":88,"props":6461,"children":6462},{"class":90,"line":653},[6463,6467,6472,6476,6480,6484],{"type":54,"tag":88,"props":6464,"children":6465},{"style":418},[6466],{"type":60,"value":421},{"type":54,"tag":88,"props":6468,"children":6469},{"style":154},[6470],{"type":60,"value":6471}," customQueueClient ",{"type":54,"tag":88,"props":6473,"children":6474},{"style":160},[6475],{"type":60,"value":219},{"type":54,"tag":88,"props":6477,"children":6478},{"style":160},[6479],{"type":60,"value":435},{"type":54,"tag":88,"props":6481,"children":6482},{"style":438},[6483],{"type":60,"value":3880},{"type":54,"tag":88,"props":6485,"children":6486},{"style":154},[6487],{"type":60,"value":607},{"type":54,"tag":88,"props":6489,"children":6490},{"class":90,"line":662},[6491,6495,6499,6503,6507,6511,6515,6519],{"type":54,"tag":88,"props":6492,"children":6493},{"style":160},[6494],{"type":60,"value":616},{"type":54,"tag":88,"props":6496,"children":6497},{"style":101},[6498],{"type":60,"value":621},{"type":54,"tag":88,"props":6500,"children":6501},{"style":160},[6502],{"type":60,"value":626},{"type":54,"tag":88,"props":6504,"children":6505},{"style":154},[6506],{"type":60,"value":631},{"type":54,"tag":88,"props":6508,"children":6509},{"style":160},[6510],{"type":60,"value":488},{"type":54,"tag":88,"props":6512,"children":6513},{"style":101},[6514],{"type":60,"value":6365},{"type":54,"tag":88,"props":6516,"children":6517},{"style":160},[6518],{"type":60,"value":645},{"type":54,"tag":88,"props":6520,"children":6521},{"style":160},[6522],{"type":60,"value":650},{"type":54,"tag":88,"props":6524,"children":6525},{"class":90,"line":2914},[6526,6530],{"type":54,"tag":88,"props":6527,"children":6528},{"style":154},[6529],{"type":60,"value":6381},{"type":54,"tag":88,"props":6531,"children":6532},{"style":160},[6533],{"type":60,"value":650},{"type":54,"tag":88,"props":6535,"children":6536},{"class":90,"line":2923},[6537],{"type":54,"tag":88,"props":6538,"children":6539},{"style":160},[6540],{"type":60,"value":6393},{"type":54,"tag":88,"props":6542,"children":6543},{"class":90,"line":2986},[6544,6548,6552],{"type":54,"tag":88,"props":6545,"children":6546},{"style":453},[6547],{"type":60,"value":6401},{"type":54,"tag":88,"props":6549,"children":6550},{"style":160},[6551],{"type":60,"value":461},{"type":54,"tag":88,"props":6553,"children":6554},{"style":160},[6555],{"type":60,"value":2280},{"type":54,"tag":88,"props":6557,"children":6558},{"class":90,"line":4313},[6559,6564,6568,6572,6576,6580,6584,6588,6592,6597,6601,6606,6611,6615,6620,6624,6628,6633,6637,6641],{"type":54,"tag":88,"props":6560,"children":6561},{"style":438},[6562],{"type":60,"value":6563},"      encode",{"type":54,"tag":88,"props":6565,"children":6566},{"style":160},[6567],{"type":60,"value":461},{"type":54,"tag":88,"props":6569,"children":6570},{"style":160},[6571],{"type":60,"value":1499},{"type":54,"tag":88,"props":6573,"children":6574},{"style":3868},[6575],{"type":60,"value":2951},{"type":54,"tag":88,"props":6577,"children":6578},{"style":160},[6579],{"type":60,"value":461},{"type":54,"tag":88,"props":6581,"children":6582},{"style":95},[6583],{"type":60,"value":4501},{"type":54,"tag":88,"props":6585,"children":6586},{"style":160},[6587],{"type":60,"value":493},{"type":54,"tag":88,"props":6589,"children":6590},{"style":418},[6591],{"type":60,"value":4691},{"type":54,"tag":88,"props":6593,"children":6594},{"style":154},[6595],{"type":60,"value":6596}," Buffer",{"type":54,"tag":88,"props":6598,"children":6599},{"style":160},[6600],{"type":60,"value":559},{"type":54,"tag":88,"props":6602,"children":6603},{"style":438},[6604],{"type":60,"value":6605},"from",{"type":54,"tag":88,"props":6607,"children":6608},{"style":154},[6609],{"type":60,"value":6610},"(message)",{"type":54,"tag":88,"props":6612,"children":6613},{"style":160},[6614],{"type":60,"value":559},{"type":54,"tag":88,"props":6616,"children":6617},{"style":438},[6618],{"type":60,"value":6619},"toString",{"type":54,"tag":88,"props":6621,"children":6622},{"style":154},[6623],{"type":60,"value":445},{"type":54,"tag":88,"props":6625,"children":6626},{"style":160},[6627],{"type":60,"value":339},{"type":54,"tag":88,"props":6629,"children":6630},{"style":101},[6631],{"type":60,"value":6632},"base64",{"type":54,"tag":88,"props":6634,"children":6635},{"style":160},[6636],{"type":60,"value":339},{"type":54,"tag":88,"props":6638,"children":6639},{"style":154},[6640],{"type":60,"value":493},{"type":54,"tag":88,"props":6642,"children":6643},{"style":160},[6644],{"type":60,"value":650},{"type":54,"tag":88,"props":6646,"children":6647},{"class":90,"line":4344},[6648,6653,6657,6661,6665,6669,6673,6677,6681,6685,6689,6693,6698,6702,6706,6710,6714,6718,6722,6726,6730],{"type":54,"tag":88,"props":6649,"children":6650},{"style":438},[6651],{"type":60,"value":6652},"      decode",{"type":54,"tag":88,"props":6654,"children":6655},{"style":160},[6656],{"type":60,"value":461},{"type":54,"tag":88,"props":6658,"children":6659},{"style":160},[6660],{"type":60,"value":1499},{"type":54,"tag":88,"props":6662,"children":6663},{"style":3868},[6664],{"type":60,"value":2951},{"type":54,"tag":88,"props":6666,"children":6667},{"style":160},[6668],{"type":60,"value":461},{"type":54,"tag":88,"props":6670,"children":6671},{"style":95},[6672],{"type":60,"value":4501},{"type":54,"tag":88,"props":6674,"children":6675},{"style":160},[6676],{"type":60,"value":493},{"type":54,"tag":88,"props":6678,"children":6679},{"style":418},[6680],{"type":60,"value":4691},{"type":54,"tag":88,"props":6682,"children":6683},{"style":154},[6684],{"type":60,"value":6596},{"type":54,"tag":88,"props":6686,"children":6687},{"style":160},[6688],{"type":60,"value":559},{"type":54,"tag":88,"props":6690,"children":6691},{"style":438},[6692],{"type":60,"value":6605},{"type":54,"tag":88,"props":6694,"children":6695},{"style":154},[6696],{"type":60,"value":6697},"(message",{"type":54,"tag":88,"props":6699,"children":6700},{"style":160},[6701],{"type":60,"value":365},{"type":54,"tag":88,"props":6703,"children":6704},{"style":160},[6705],{"type":60,"value":330},{"type":54,"tag":88,"props":6707,"children":6708},{"style":101},[6709],{"type":60,"value":6632},{"type":54,"tag":88,"props":6711,"children":6712},{"style":160},[6713],{"type":60,"value":339},{"type":54,"tag":88,"props":6715,"children":6716},{"style":154},[6717],{"type":60,"value":493},{"type":54,"tag":88,"props":6719,"children":6720},{"style":160},[6721],{"type":60,"value":559},{"type":54,"tag":88,"props":6723,"children":6724},{"style":438},[6725],{"type":60,"value":6619},{"type":54,"tag":88,"props":6727,"children":6728},{"style":154},[6729],{"type":60,"value":1421},{"type":54,"tag":88,"props":6731,"children":6732},{"style":160},[6733],{"type":60,"value":650},{"type":54,"tag":88,"props":6735,"children":6736},{"class":90,"line":4419},[6737],{"type":54,"tag":88,"props":6738,"children":6739},{"style":160},[6740],{"type":60,"value":6741},"    },\n",{"type":54,"tag":88,"props":6743,"children":6744},{"class":90,"line":4428},[6745],{"type":54,"tag":88,"props":6746,"children":6747},{"style":160},[6748],{"type":60,"value":4451},{"type":54,"tag":88,"props":6750,"children":6751},{"class":90,"line":4437},[6752,6756],{"type":54,"tag":88,"props":6753,"children":6754},{"style":154},[6755],{"type":60,"value":493},{"type":54,"tag":88,"props":6757,"children":6758},{"style":160},[6759],{"type":60,"value":344},{"type":54,"tag":69,"props":6761,"children":6763},{"id":6762},"sas-token-generation-nodejs-only",[6764],{"type":60,"value":6765},"SAS Token Generation (Node.js only)",{"type":54,"tag":283,"props":6767,"children":6769},{"id":6768},"generate-queue-sas",[6770],{"type":60,"value":6771},"Generate Queue SAS",{"type":54,"tag":76,"props":6773,"children":6775},{"className":291,"code":6774,"language":21,"meta":81,"style":81},"import {\n  QueueSASPermissions,\n  generateQueueSASQueryParameters,\n  StorageSharedKeyCredential,\n} from \"@azure\u002Fstorage-queue\";\n\nconst sharedKeyCredential = new StorageSharedKeyCredential(accountName, accountKey);\n\nconst sasToken = generateQueueSASQueryParameters(\n  {\n    queueName: \"my-queue\",\n    permissions: QueueSASPermissions.parse(\"raup\"), \u002F\u002F read, add, update, process\n    startsOn: new Date(),\n    expiresOn: new Date(Date.now() + 3600 * 1000), \u002F\u002F 1 hour\n  },\n  sharedKeyCredential\n).toString();\n\nconst sasUrl = `https:\u002F\u002F${accountName}.queue.core.windows.net\u002Fmy-queue?${sasToken}`;\n",[6776],{"type":54,"tag":84,"props":6777,"children":6778},{"__ignoreMap":81},[6779,6790,6802,6814,6826,6853,6860,6899,6906,6930,6937,6965,7020,7049,7120,7128,7135,7158,7165],{"type":54,"tag":88,"props":6780,"children":6781},{"class":90,"line":91},[6782,6786],{"type":54,"tag":88,"props":6783,"children":6784},{"style":302},[6785],{"type":60,"value":305},{"type":54,"tag":88,"props":6787,"children":6788},{"style":160},[6789],{"type":60,"value":2280},{"type":54,"tag":88,"props":6791,"children":6792},{"class":90,"line":176},[6793,6798],{"type":54,"tag":88,"props":6794,"children":6795},{"style":154},[6796],{"type":60,"value":6797},"  QueueSASPermissions",{"type":54,"tag":88,"props":6799,"children":6800},{"style":160},[6801],{"type":60,"value":650},{"type":54,"tag":88,"props":6803,"children":6804},{"class":90,"line":198},[6805,6810],{"type":54,"tag":88,"props":6806,"children":6807},{"style":154},[6808],{"type":60,"value":6809},"  generateQueueSASQueryParameters",{"type":54,"tag":88,"props":6811,"children":6812},{"style":160},[6813],{"type":60,"value":650},{"type":54,"tag":88,"props":6815,"children":6816},{"class":90,"line":208},[6817,6822],{"type":54,"tag":88,"props":6818,"children":6819},{"style":154},[6820],{"type":60,"value":6821},"  StorageSharedKeyCredential",{"type":54,"tag":88,"props":6823,"children":6824},{"style":160},[6825],{"type":60,"value":650},{"type":54,"tag":88,"props":6827,"children":6828},{"class":90,"line":255},[6829,6833,6837,6841,6845,6849],{"type":54,"tag":88,"props":6830,"children":6831},{"style":160},[6832],{"type":60,"value":488},{"type":54,"tag":88,"props":6834,"children":6835},{"style":302},[6836],{"type":60,"value":325},{"type":54,"tag":88,"props":6838,"children":6839},{"style":160},[6840],{"type":60,"value":330},{"type":54,"tag":88,"props":6842,"children":6843},{"style":101},[6844],{"type":60,"value":49},{"type":54,"tag":88,"props":6846,"children":6847},{"style":160},[6848],{"type":60,"value":339},{"type":54,"tag":88,"props":6850,"children":6851},{"style":160},[6852],{"type":60,"value":344},{"type":54,"tag":88,"props":6854,"children":6855},{"class":90,"line":500},[6856],{"type":54,"tag":88,"props":6857,"children":6858},{"emptyLinePlaceholder":401},[6859],{"type":60,"value":404},{"type":54,"tag":88,"props":6861,"children":6862},{"class":90,"line":509},[6863,6867,6871,6875,6879,6883,6887,6891,6895],{"type":54,"tag":88,"props":6864,"children":6865},{"style":418},[6866],{"type":60,"value":421},{"type":54,"tag":88,"props":6868,"children":6869},{"style":154},[6870],{"type":60,"value":968},{"type":54,"tag":88,"props":6872,"children":6873},{"style":160},[6874],{"type":60,"value":219},{"type":54,"tag":88,"props":6876,"children":6877},{"style":160},[6878],{"type":60,"value":435},{"type":54,"tag":88,"props":6880,"children":6881},{"style":438},[6882],{"type":60,"value":839},{"type":54,"tag":88,"props":6884,"children":6885},{"style":154},[6886],{"type":60,"value":985},{"type":54,"tag":88,"props":6888,"children":6889},{"style":160},[6890],{"type":60,"value":365},{"type":54,"tag":88,"props":6892,"children":6893},{"style":154},[6894],{"type":60,"value":994},{"type":54,"tag":88,"props":6896,"children":6897},{"style":160},[6898],{"type":60,"value":344},{"type":54,"tag":88,"props":6900,"children":6901},{"class":90,"line":518},[6902],{"type":54,"tag":88,"props":6903,"children":6904},{"emptyLinePlaceholder":401},[6905],{"type":60,"value":404},{"type":54,"tag":88,"props":6907,"children":6908},{"class":90,"line":527},[6909,6913,6917,6921,6926],{"type":54,"tag":88,"props":6910,"children":6911},{"style":418},[6912],{"type":60,"value":421},{"type":54,"tag":88,"props":6914,"children":6915},{"style":154},[6916],{"type":60,"value":1189},{"type":54,"tag":88,"props":6918,"children":6919},{"style":160},[6920],{"type":60,"value":219},{"type":54,"tag":88,"props":6922,"children":6923},{"style":438},[6924],{"type":60,"value":6925}," generateQueueSASQueryParameters",{"type":54,"tag":88,"props":6927,"children":6928},{"style":154},[6929],{"type":60,"value":607},{"type":54,"tag":88,"props":6931,"children":6932},{"class":90,"line":535},[6933],{"type":54,"tag":88,"props":6934,"children":6935},{"style":160},[6936],{"type":60,"value":6393},{"type":54,"tag":88,"props":6938,"children":6939},{"class":90,"line":580},[6940,6945,6949,6953,6957,6961],{"type":54,"tag":88,"props":6941,"children":6942},{"style":453},[6943],{"type":60,"value":6944},"    queueName",{"type":54,"tag":88,"props":6946,"children":6947},{"style":160},[6948],{"type":60,"value":461},{"type":54,"tag":88,"props":6950,"children":6951},{"style":160},[6952],{"type":60,"value":330},{"type":54,"tag":88,"props":6954,"children":6955},{"style":101},[6956],{"type":60,"value":1382},{"type":54,"tag":88,"props":6958,"children":6959},{"style":160},[6960],{"type":60,"value":339},{"type":54,"tag":88,"props":6962,"children":6963},{"style":160},[6964],{"type":60,"value":650},{"type":54,"tag":88,"props":6966,"children":6967},{"class":90,"line":610},[6968,6973,6977,6982,6986,6990,6994,6998,7003,7007,7011,7015],{"type":54,"tag":88,"props":6969,"children":6970},{"style":453},[6971],{"type":60,"value":6972},"    permissions",{"type":54,"tag":88,"props":6974,"children":6975},{"style":160},[6976],{"type":60,"value":461},{"type":54,"tag":88,"props":6978,"children":6979},{"style":154},[6980],{"type":60,"value":6981}," QueueSASPermissions",{"type":54,"tag":88,"props":6983,"children":6984},{"style":160},[6985],{"type":60,"value":559},{"type":54,"tag":88,"props":6987,"children":6988},{"style":438},[6989],{"type":60,"value":4556},{"type":54,"tag":88,"props":6991,"children":6992},{"style":154},[6993],{"type":60,"value":445},{"type":54,"tag":88,"props":6995,"children":6996},{"style":160},[6997],{"type":60,"value":339},{"type":54,"tag":88,"props":6999,"children":7000},{"style":101},[7001],{"type":60,"value":7002},"raup",{"type":54,"tag":88,"props":7004,"children":7005},{"style":160},[7006],{"type":60,"value":339},{"type":54,"tag":88,"props":7008,"children":7009},{"style":154},[7010],{"type":60,"value":493},{"type":54,"tag":88,"props":7012,"children":7013},{"style":160},[7014],{"type":60,"value":365},{"type":54,"tag":88,"props":7016,"children":7017},{"style":202},[7018],{"type":60,"value":7019}," \u002F\u002F read, add, update, process\n",{"type":54,"tag":88,"props":7021,"children":7022},{"class":90,"line":653},[7023,7028,7032,7036,7041,7045],{"type":54,"tag":88,"props":7024,"children":7025},{"style":453},[7026],{"type":60,"value":7027},"    startsOn",{"type":54,"tag":88,"props":7029,"children":7030},{"style":160},[7031],{"type":60,"value":461},{"type":54,"tag":88,"props":7033,"children":7034},{"style":160},[7035],{"type":60,"value":435},{"type":54,"tag":88,"props":7037,"children":7038},{"style":438},[7039],{"type":60,"value":7040}," Date",{"type":54,"tag":88,"props":7042,"children":7043},{"style":154},[7044],{"type":60,"value":1421},{"type":54,"tag":88,"props":7046,"children":7047},{"style":160},[7048],{"type":60,"value":650},{"type":54,"tag":88,"props":7050,"children":7051},{"class":90,"line":662},[7052,7057,7061,7065,7069,7074,7078,7083,7088,7093,7097,7102,7107,7111,7115],{"type":54,"tag":88,"props":7053,"children":7054},{"style":453},[7055],{"type":60,"value":7056},"    expiresOn",{"type":54,"tag":88,"props":7058,"children":7059},{"style":160},[7060],{"type":60,"value":461},{"type":54,"tag":88,"props":7062,"children":7063},{"style":160},[7064],{"type":60,"value":435},{"type":54,"tag":88,"props":7066,"children":7067},{"style":438},[7068],{"type":60,"value":7040},{"type":54,"tag":88,"props":7070,"children":7071},{"style":154},[7072],{"type":60,"value":7073},"(Date",{"type":54,"tag":88,"props":7075,"children":7076},{"style":160},[7077],{"type":60,"value":559},{"type":54,"tag":88,"props":7079,"children":7080},{"style":438},[7081],{"type":60,"value":7082},"now",{"type":54,"tag":88,"props":7084,"children":7085},{"style":154},[7086],{"type":60,"value":7087},"() ",{"type":54,"tag":88,"props":7089,"children":7090},{"style":160},[7091],{"type":60,"value":7092},"+",{"type":54,"tag":88,"props":7094,"children":7095},{"style":2295},[7096],{"type":60,"value":2324},{"type":54,"tag":88,"props":7098,"children":7099},{"style":160},[7100],{"type":60,"value":7101}," *",{"type":54,"tag":88,"props":7103,"children":7104},{"style":2295},[7105],{"type":60,"value":7106}," 1000",{"type":54,"tag":88,"props":7108,"children":7109},{"style":154},[7110],{"type":60,"value":493},{"type":54,"tag":88,"props":7112,"children":7113},{"style":160},[7114],{"type":60,"value":365},{"type":54,"tag":88,"props":7116,"children":7117},{"style":202},[7118],{"type":60,"value":7119}," \u002F\u002F 1 hour\n",{"type":54,"tag":88,"props":7121,"children":7122},{"class":90,"line":2914},[7123],{"type":54,"tag":88,"props":7124,"children":7125},{"style":160},[7126],{"type":60,"value":7127},"  },\n",{"type":54,"tag":88,"props":7129,"children":7130},{"class":90,"line":2923},[7131],{"type":54,"tag":88,"props":7132,"children":7133},{"style":154},[7134],{"type":60,"value":1068},{"type":54,"tag":88,"props":7136,"children":7137},{"class":90,"line":2986},[7138,7142,7146,7150,7154],{"type":54,"tag":88,"props":7139,"children":7140},{"style":154},[7141],{"type":60,"value":493},{"type":54,"tag":88,"props":7143,"children":7144},{"style":160},[7145],{"type":60,"value":559},{"type":54,"tag":88,"props":7147,"children":7148},{"style":438},[7149],{"type":60,"value":6619},{"type":54,"tag":88,"props":7151,"children":7152},{"style":154},[7153],{"type":60,"value":1421},{"type":54,"tag":88,"props":7155,"children":7156},{"style":160},[7157],{"type":60,"value":344},{"type":54,"tag":88,"props":7159,"children":7160},{"class":90,"line":4313},[7161],{"type":54,"tag":88,"props":7162,"children":7163},{"emptyLinePlaceholder":401},[7164],{"type":60,"value":404},{"type":54,"tag":88,"props":7166,"children":7167},{"class":90,"line":4344},[7168,7172,7177,7181,7186,7190,7194,7198,7202,7207,7211,7215,7220],{"type":54,"tag":88,"props":7169,"children":7170},{"style":418},[7171],{"type":60,"value":421},{"type":54,"tag":88,"props":7173,"children":7174},{"style":154},[7175],{"type":60,"value":7176}," sasUrl ",{"type":54,"tag":88,"props":7178,"children":7179},{"style":160},[7180],{"type":60,"value":219},{"type":54,"tag":88,"props":7182,"children":7183},{"style":160},[7184],{"type":60,"value":7185}," `",{"type":54,"tag":88,"props":7187,"children":7188},{"style":101},[7189],{"type":60,"value":621},{"type":54,"tag":88,"props":7191,"children":7192},{"style":160},[7193],{"type":60,"value":626},{"type":54,"tag":88,"props":7195,"children":7196},{"style":154},[7197],{"type":60,"value":631},{"type":54,"tag":88,"props":7199,"children":7200},{"style":160},[7201],{"type":60,"value":488},{"type":54,"tag":88,"props":7203,"children":7204},{"style":101},[7205],{"type":60,"value":7206},".queue.core.windows.net\u002Fmy-queue?",{"type":54,"tag":88,"props":7208,"children":7209},{"style":160},[7210],{"type":60,"value":626},{"type":54,"tag":88,"props":7212,"children":7213},{"style":154},[7214],{"type":60,"value":1288},{"type":54,"tag":88,"props":7216,"children":7217},{"style":160},[7218],{"type":60,"value":7219},"}`",{"type":54,"tag":88,"props":7221,"children":7222},{"style":160},[7223],{"type":60,"value":344},{"type":54,"tag":283,"props":7225,"children":7227},{"id":7226},"generate-account-sas",[7228],{"type":60,"value":7229},"Generate Account SAS",{"type":54,"tag":76,"props":7231,"children":7233},{"className":291,"code":7232,"language":21,"meta":81,"style":81},"import {\n  AccountSASPermissions,\n  AccountSASResourceTypes,\n  AccountSASServices,\n  generateAccountSASQueryParameters,\n} from \"@azure\u002Fstorage-queue\";\n\nconst sasToken = generateAccountSASQueryParameters(\n  {\n    services: AccountSASServices.parse(\"q\").toString(), \u002F\u002F queue\n    resourceTypes: AccountSASResourceTypes.parse(\"sco\").toString(),\n    permissions: AccountSASPermissions.parse(\"rwdlacupi\"),\n    expiresOn: new Date(Date.now() + 24 * 3600 * 1000),\n  },\n  sharedKeyCredential\n).toString();\n",[7234],{"type":54,"tag":84,"props":7235,"children":7236},{"__ignoreMap":81},[7237,7248,7260,7272,7284,7296,7323,7330,7354,7361,7428,7490,7539,7607,7614,7621],{"type":54,"tag":88,"props":7238,"children":7239},{"class":90,"line":91},[7240,7244],{"type":54,"tag":88,"props":7241,"children":7242},{"style":302},[7243],{"type":60,"value":305},{"type":54,"tag":88,"props":7245,"children":7246},{"style":160},[7247],{"type":60,"value":2280},{"type":54,"tag":88,"props":7249,"children":7250},{"class":90,"line":176},[7251,7256],{"type":54,"tag":88,"props":7252,"children":7253},{"style":154},[7254],{"type":60,"value":7255},"  AccountSASPermissions",{"type":54,"tag":88,"props":7257,"children":7258},{"style":160},[7259],{"type":60,"value":650},{"type":54,"tag":88,"props":7261,"children":7262},{"class":90,"line":198},[7263,7268],{"type":54,"tag":88,"props":7264,"children":7265},{"style":154},[7266],{"type":60,"value":7267},"  AccountSASResourceTypes",{"type":54,"tag":88,"props":7269,"children":7270},{"style":160},[7271],{"type":60,"value":650},{"type":54,"tag":88,"props":7273,"children":7274},{"class":90,"line":208},[7275,7280],{"type":54,"tag":88,"props":7276,"children":7277},{"style":154},[7278],{"type":60,"value":7279},"  AccountSASServices",{"type":54,"tag":88,"props":7281,"children":7282},{"style":160},[7283],{"type":60,"value":650},{"type":54,"tag":88,"props":7285,"children":7286},{"class":90,"line":255},[7287,7292],{"type":54,"tag":88,"props":7288,"children":7289},{"style":154},[7290],{"type":60,"value":7291},"  generateAccountSASQueryParameters",{"type":54,"tag":88,"props":7293,"children":7294},{"style":160},[7295],{"type":60,"value":650},{"type":54,"tag":88,"props":7297,"children":7298},{"class":90,"line":500},[7299,7303,7307,7311,7315,7319],{"type":54,"tag":88,"props":7300,"children":7301},{"style":160},[7302],{"type":60,"value":488},{"type":54,"tag":88,"props":7304,"children":7305},{"style":302},[7306],{"type":60,"value":325},{"type":54,"tag":88,"props":7308,"children":7309},{"style":160},[7310],{"type":60,"value":330},{"type":54,"tag":88,"props":7312,"children":7313},{"style":101},[7314],{"type":60,"value":49},{"type":54,"tag":88,"props":7316,"children":7317},{"style":160},[7318],{"type":60,"value":339},{"type":54,"tag":88,"props":7320,"children":7321},{"style":160},[7322],{"type":60,"value":344},{"type":54,"tag":88,"props":7324,"children":7325},{"class":90,"line":509},[7326],{"type":54,"tag":88,"props":7327,"children":7328},{"emptyLinePlaceholder":401},[7329],{"type":60,"value":404},{"type":54,"tag":88,"props":7331,"children":7332},{"class":90,"line":518},[7333,7337,7341,7345,7350],{"type":54,"tag":88,"props":7334,"children":7335},{"style":418},[7336],{"type":60,"value":421},{"type":54,"tag":88,"props":7338,"children":7339},{"style":154},[7340],{"type":60,"value":1189},{"type":54,"tag":88,"props":7342,"children":7343},{"style":160},[7344],{"type":60,"value":219},{"type":54,"tag":88,"props":7346,"children":7347},{"style":438},[7348],{"type":60,"value":7349}," generateAccountSASQueryParameters",{"type":54,"tag":88,"props":7351,"children":7352},{"style":154},[7353],{"type":60,"value":607},{"type":54,"tag":88,"props":7355,"children":7356},{"class":90,"line":527},[7357],{"type":54,"tag":88,"props":7358,"children":7359},{"style":160},[7360],{"type":60,"value":6393},{"type":54,"tag":88,"props":7362,"children":7363},{"class":90,"line":535},[7364,7369,7373,7378,7382,7386,7390,7394,7399,7403,7407,7411,7415,7419,7423],{"type":54,"tag":88,"props":7365,"children":7366},{"style":453},[7367],{"type":60,"value":7368},"    services",{"type":54,"tag":88,"props":7370,"children":7371},{"style":160},[7372],{"type":60,"value":461},{"type":54,"tag":88,"props":7374,"children":7375},{"style":154},[7376],{"type":60,"value":7377}," AccountSASServices",{"type":54,"tag":88,"props":7379,"children":7380},{"style":160},[7381],{"type":60,"value":559},{"type":54,"tag":88,"props":7383,"children":7384},{"style":438},[7385],{"type":60,"value":4556},{"type":54,"tag":88,"props":7387,"children":7388},{"style":154},[7389],{"type":60,"value":445},{"type":54,"tag":88,"props":7391,"children":7392},{"style":160},[7393],{"type":60,"value":339},{"type":54,"tag":88,"props":7395,"children":7396},{"style":101},[7397],{"type":60,"value":7398},"q",{"type":54,"tag":88,"props":7400,"children":7401},{"style":160},[7402],{"type":60,"value":339},{"type":54,"tag":88,"props":7404,"children":7405},{"style":154},[7406],{"type":60,"value":493},{"type":54,"tag":88,"props":7408,"children":7409},{"style":160},[7410],{"type":60,"value":559},{"type":54,"tag":88,"props":7412,"children":7413},{"style":438},[7414],{"type":60,"value":6619},{"type":54,"tag":88,"props":7416,"children":7417},{"style":154},[7418],{"type":60,"value":1421},{"type":54,"tag":88,"props":7420,"children":7421},{"style":160},[7422],{"type":60,"value":365},{"type":54,"tag":88,"props":7424,"children":7425},{"style":202},[7426],{"type":60,"value":7427}," \u002F\u002F queue\n",{"type":54,"tag":88,"props":7429,"children":7430},{"class":90,"line":580},[7431,7436,7440,7445,7449,7453,7457,7461,7466,7470,7474,7478,7482,7486],{"type":54,"tag":88,"props":7432,"children":7433},{"style":453},[7434],{"type":60,"value":7435},"    resourceTypes",{"type":54,"tag":88,"props":7437,"children":7438},{"style":160},[7439],{"type":60,"value":461},{"type":54,"tag":88,"props":7441,"children":7442},{"style":154},[7443],{"type":60,"value":7444}," AccountSASResourceTypes",{"type":54,"tag":88,"props":7446,"children":7447},{"style":160},[7448],{"type":60,"value":559},{"type":54,"tag":88,"props":7450,"children":7451},{"style":438},[7452],{"type":60,"value":4556},{"type":54,"tag":88,"props":7454,"children":7455},{"style":154},[7456],{"type":60,"value":445},{"type":54,"tag":88,"props":7458,"children":7459},{"style":160},[7460],{"type":60,"value":339},{"type":54,"tag":88,"props":7462,"children":7463},{"style":101},[7464],{"type":60,"value":7465},"sco",{"type":54,"tag":88,"props":7467,"children":7468},{"style":160},[7469],{"type":60,"value":339},{"type":54,"tag":88,"props":7471,"children":7472},{"style":154},[7473],{"type":60,"value":493},{"type":54,"tag":88,"props":7475,"children":7476},{"style":160},[7477],{"type":60,"value":559},{"type":54,"tag":88,"props":7479,"children":7480},{"style":438},[7481],{"type":60,"value":6619},{"type":54,"tag":88,"props":7483,"children":7484},{"style":154},[7485],{"type":60,"value":1421},{"type":54,"tag":88,"props":7487,"children":7488},{"style":160},[7489],{"type":60,"value":650},{"type":54,"tag":88,"props":7491,"children":7492},{"class":90,"line":610},[7493,7497,7501,7506,7510,7514,7518,7522,7527,7531,7535],{"type":54,"tag":88,"props":7494,"children":7495},{"style":453},[7496],{"type":60,"value":6972},{"type":54,"tag":88,"props":7498,"children":7499},{"style":160},[7500],{"type":60,"value":461},{"type":54,"tag":88,"props":7502,"children":7503},{"style":154},[7504],{"type":60,"value":7505}," AccountSASPermissions",{"type":54,"tag":88,"props":7507,"children":7508},{"style":160},[7509],{"type":60,"value":559},{"type":54,"tag":88,"props":7511,"children":7512},{"style":438},[7513],{"type":60,"value":4556},{"type":54,"tag":88,"props":7515,"children":7516},{"style":154},[7517],{"type":60,"value":445},{"type":54,"tag":88,"props":7519,"children":7520},{"style":160},[7521],{"type":60,"value":339},{"type":54,"tag":88,"props":7523,"children":7524},{"style":101},[7525],{"type":60,"value":7526},"rwdlacupi",{"type":54,"tag":88,"props":7528,"children":7529},{"style":160},[7530],{"type":60,"value":339},{"type":54,"tag":88,"props":7532,"children":7533},{"style":154},[7534],{"type":60,"value":493},{"type":54,"tag":88,"props":7536,"children":7537},{"style":160},[7538],{"type":60,"value":650},{"type":54,"tag":88,"props":7540,"children":7541},{"class":90,"line":653},[7542,7546,7550,7554,7558,7562,7566,7570,7574,7578,7583,7587,7591,7595,7599,7603],{"type":54,"tag":88,"props":7543,"children":7544},{"style":453},[7545],{"type":60,"value":7056},{"type":54,"tag":88,"props":7547,"children":7548},{"style":160},[7549],{"type":60,"value":461},{"type":54,"tag":88,"props":7551,"children":7552},{"style":160},[7553],{"type":60,"value":435},{"type":54,"tag":88,"props":7555,"children":7556},{"style":438},[7557],{"type":60,"value":7040},{"type":54,"tag":88,"props":7559,"children":7560},{"style":154},[7561],{"type":60,"value":7073},{"type":54,"tag":88,"props":7563,"children":7564},{"style":160},[7565],{"type":60,"value":559},{"type":54,"tag":88,"props":7567,"children":7568},{"style":438},[7569],{"type":60,"value":7082},{"type":54,"tag":88,"props":7571,"children":7572},{"style":154},[7573],{"type":60,"value":7087},{"type":54,"tag":88,"props":7575,"children":7576},{"style":160},[7577],{"type":60,"value":7092},{"type":54,"tag":88,"props":7579,"children":7580},{"style":2295},[7581],{"type":60,"value":7582}," 24",{"type":54,"tag":88,"props":7584,"children":7585},{"style":160},[7586],{"type":60,"value":7101},{"type":54,"tag":88,"props":7588,"children":7589},{"style":2295},[7590],{"type":60,"value":2324},{"type":54,"tag":88,"props":7592,"children":7593},{"style":160},[7594],{"type":60,"value":7101},{"type":54,"tag":88,"props":7596,"children":7597},{"style":2295},[7598],{"type":60,"value":7106},{"type":54,"tag":88,"props":7600,"children":7601},{"style":154},[7602],{"type":60,"value":493},{"type":54,"tag":88,"props":7604,"children":7605},{"style":160},[7606],{"type":60,"value":650},{"type":54,"tag":88,"props":7608,"children":7609},{"class":90,"line":662},[7610],{"type":54,"tag":88,"props":7611,"children":7612},{"style":160},[7613],{"type":60,"value":7127},{"type":54,"tag":88,"props":7615,"children":7616},{"class":90,"line":2914},[7617],{"type":54,"tag":88,"props":7618,"children":7619},{"style":154},[7620],{"type":60,"value":1068},{"type":54,"tag":88,"props":7622,"children":7623},{"class":90,"line":2923},[7624,7628,7632,7636,7640],{"type":54,"tag":88,"props":7625,"children":7626},{"style":154},[7627],{"type":60,"value":493},{"type":54,"tag":88,"props":7629,"children":7630},{"style":160},[7631],{"type":60,"value":559},{"type":54,"tag":88,"props":7633,"children":7634},{"style":438},[7635],{"type":60,"value":6619},{"type":54,"tag":88,"props":7637,"children":7638},{"style":154},[7639],{"type":60,"value":1421},{"type":54,"tag":88,"props":7641,"children":7642},{"style":160},[7643],{"type":60,"value":344},{"type":54,"tag":69,"props":7645,"children":7647},{"id":7646},"error-handling",[7648],{"type":60,"value":7649},"Error Handling",{"type":54,"tag":76,"props":7651,"children":7653},{"className":291,"code":7652,"language":21,"meta":81,"style":81},"import { RestError } from \"@azure\u002Fstorage-queue\";\n\ntry {\n  await queueClient.sendMessage(\"test\");\n} catch (error) {\n  if (error instanceof RestError) {\n    switch (error.statusCode) {\n      case 404:\n        console.log(\"Queue not found\");\n        break;\n      case 400:\n        console.log(\"Bad request - message too large or invalid\");\n        break;\n      case 403:\n        console.log(\"Access denied\");\n        break;\n      case 409:\n        console.log(\"Queue already exists or being deleted\");\n        break;\n      default:\n        console.error(`Storage error ${error.statusCode}: ${error.message}`);\n    }\n  }\n  throw error;\n}\n",[7654],{"type":54,"tag":84,"props":7655,"children":7656},{"__ignoreMap":81},[7657,7697,7704,7716,7760,7780,7812,7845,7863,7903,7915,7931,7971,7982,7998,8038,8049,8065,8105,8116,8128,8209,8216,8223,8239],{"type":54,"tag":88,"props":7658,"children":7659},{"class":90,"line":91},[7660,7664,7668,7673,7677,7681,7685,7689,7693],{"type":54,"tag":88,"props":7661,"children":7662},{"style":302},[7663],{"type":60,"value":305},{"type":54,"tag":88,"props":7665,"children":7666},{"style":160},[7667],{"type":60,"value":310},{"type":54,"tag":88,"props":7669,"children":7670},{"style":154},[7671],{"type":60,"value":7672}," RestError",{"type":54,"tag":88,"props":7674,"children":7675},{"style":160},[7676],{"type":60,"value":320},{"type":54,"tag":88,"props":7678,"children":7679},{"style":302},[7680],{"type":60,"value":325},{"type":54,"tag":88,"props":7682,"children":7683},{"style":160},[7684],{"type":60,"value":330},{"type":54,"tag":88,"props":7686,"children":7687},{"style":101},[7688],{"type":60,"value":49},{"type":54,"tag":88,"props":7690,"children":7691},{"style":160},[7692],{"type":60,"value":339},{"type":54,"tag":88,"props":7694,"children":7695},{"style":160},[7696],{"type":60,"value":344},{"type":54,"tag":88,"props":7698,"children":7699},{"class":90,"line":176},[7700],{"type":54,"tag":88,"props":7701,"children":7702},{"emptyLinePlaceholder":401},[7703],{"type":60,"value":404},{"type":54,"tag":88,"props":7705,"children":7706},{"class":90,"line":198},[7707,7712],{"type":54,"tag":88,"props":7708,"children":7709},{"style":302},[7710],{"type":60,"value":7711},"try",{"type":54,"tag":88,"props":7713,"children":7714},{"style":160},[7715],{"type":60,"value":2280},{"type":54,"tag":88,"props":7717,"children":7718},{"class":90,"line":208},[7719,7723,7727,7731,7735,7739,7743,7748,7752,7756],{"type":54,"tag":88,"props":7720,"children":7721},{"style":302},[7722],{"type":60,"value":2929},{"type":54,"tag":88,"props":7724,"children":7725},{"style":154},[7726],{"type":60,"value":1407},{"type":54,"tag":88,"props":7728,"children":7729},{"style":160},[7730],{"type":60,"value":559},{"type":54,"tag":88,"props":7732,"children":7733},{"style":438},[7734],{"type":60,"value":2195},{"type":54,"tag":88,"props":7736,"children":7737},{"style":453},[7738],{"type":60,"value":445},{"type":54,"tag":88,"props":7740,"children":7741},{"style":160},[7742],{"type":60,"value":339},{"type":54,"tag":88,"props":7744,"children":7745},{"style":101},[7746],{"type":60,"value":7747},"test",{"type":54,"tag":88,"props":7749,"children":7750},{"style":160},[7751],{"type":60,"value":339},{"type":54,"tag":88,"props":7753,"children":7754},{"style":453},[7755],{"type":60,"value":493},{"type":54,"tag":88,"props":7757,"children":7758},{"style":160},[7759],{"type":60,"value":344},{"type":54,"tag":88,"props":7761,"children":7762},{"class":90,"line":255},[7763,7767,7771,7776],{"type":54,"tag":88,"props":7764,"children":7765},{"style":160},[7766],{"type":60,"value":488},{"type":54,"tag":88,"props":7768,"children":7769},{"style":302},[7770],{"type":60,"value":4324},{"type":54,"tag":88,"props":7772,"children":7773},{"style":154},[7774],{"type":60,"value":7775}," (error) ",{"type":54,"tag":88,"props":7777,"children":7778},{"style":160},[7779],{"type":60,"value":1536},{"type":54,"tag":88,"props":7781,"children":7782},{"class":90,"line":500},[7783,7787,7791,7795,7800,7804,7808],{"type":54,"tag":88,"props":7784,"children":7785},{"style":302},[7786],{"type":60,"value":5694},{"type":54,"tag":88,"props":7788,"children":7789},{"style":453},[7790],{"type":60,"value":1499},{"type":54,"tag":88,"props":7792,"children":7793},{"style":154},[7794],{"type":60,"value":4333},{"type":54,"tag":88,"props":7796,"children":7797},{"style":160},[7798],{"type":60,"value":7799}," instanceof",{"type":54,"tag":88,"props":7801,"children":7802},{"style":95},[7803],{"type":60,"value":7672},{"type":54,"tag":88,"props":7805,"children":7806},{"style":453},[7807],{"type":60,"value":3932},{"type":54,"tag":88,"props":7809,"children":7810},{"style":160},[7811],{"type":60,"value":1536},{"type":54,"tag":88,"props":7813,"children":7814},{"class":90,"line":509},[7815,7820,7824,7828,7832,7837,7841],{"type":54,"tag":88,"props":7816,"children":7817},{"style":302},[7818],{"type":60,"value":7819},"    switch",{"type":54,"tag":88,"props":7821,"children":7822},{"style":453},[7823],{"type":60,"value":1499},{"type":54,"tag":88,"props":7825,"children":7826},{"style":154},[7827],{"type":60,"value":4333},{"type":54,"tag":88,"props":7829,"children":7830},{"style":160},[7831],{"type":60,"value":559},{"type":54,"tag":88,"props":7833,"children":7834},{"style":154},[7835],{"type":60,"value":7836},"statusCode",{"type":54,"tag":88,"props":7838,"children":7839},{"style":453},[7840],{"type":60,"value":3932},{"type":54,"tag":88,"props":7842,"children":7843},{"style":160},[7844],{"type":60,"value":1536},{"type":54,"tag":88,"props":7846,"children":7847},{"class":90,"line":518},[7848,7853,7858],{"type":54,"tag":88,"props":7849,"children":7850},{"style":302},[7851],{"type":60,"value":7852},"      case",{"type":54,"tag":88,"props":7854,"children":7855},{"style":2295},[7856],{"type":60,"value":7857}," 404",{"type":54,"tag":88,"props":7859,"children":7860},{"style":160},[7861],{"type":60,"value":7862},":\n",{"type":54,"tag":88,"props":7864,"children":7865},{"class":90,"line":527},[7866,7870,7874,7878,7882,7886,7891,7895,7899],{"type":54,"tag":88,"props":7867,"children":7868},{"style":154},[7869],{"type":60,"value":4350},{"type":54,"tag":88,"props":7871,"children":7872},{"style":160},[7873],{"type":60,"value":559},{"type":54,"tag":88,"props":7875,"children":7876},{"style":438},[7877],{"type":60,"value":1553},{"type":54,"tag":88,"props":7879,"children":7880},{"style":453},[7881],{"type":60,"value":445},{"type":54,"tag":88,"props":7883,"children":7884},{"style":160},[7885],{"type":60,"value":339},{"type":54,"tag":88,"props":7887,"children":7888},{"style":101},[7889],{"type":60,"value":7890},"Queue not found",{"type":54,"tag":88,"props":7892,"children":7893},{"style":160},[7894],{"type":60,"value":339},{"type":54,"tag":88,"props":7896,"children":7897},{"style":453},[7898],{"type":60,"value":493},{"type":54,"tag":88,"props":7900,"children":7901},{"style":160},[7902],{"type":60,"value":344},{"type":54,"tag":88,"props":7904,"children":7905},{"class":90,"line":535},[7906,7911],{"type":54,"tag":88,"props":7907,"children":7908},{"style":302},[7909],{"type":60,"value":7910},"        break",{"type":54,"tag":88,"props":7912,"children":7913},{"style":160},[7914],{"type":60,"value":344},{"type":54,"tag":88,"props":7916,"children":7917},{"class":90,"line":580},[7918,7922,7927],{"type":54,"tag":88,"props":7919,"children":7920},{"style":302},[7921],{"type":60,"value":7852},{"type":54,"tag":88,"props":7923,"children":7924},{"style":2295},[7925],{"type":60,"value":7926}," 400",{"type":54,"tag":88,"props":7928,"children":7929},{"style":160},[7930],{"type":60,"value":7862},{"type":54,"tag":88,"props":7932,"children":7933},{"class":90,"line":610},[7934,7938,7942,7946,7950,7954,7959,7963,7967],{"type":54,"tag":88,"props":7935,"children":7936},{"style":154},[7937],{"type":60,"value":4350},{"type":54,"tag":88,"props":7939,"children":7940},{"style":160},[7941],{"type":60,"value":559},{"type":54,"tag":88,"props":7943,"children":7944},{"style":438},[7945],{"type":60,"value":1553},{"type":54,"tag":88,"props":7947,"children":7948},{"style":453},[7949],{"type":60,"value":445},{"type":54,"tag":88,"props":7951,"children":7952},{"style":160},[7953],{"type":60,"value":339},{"type":54,"tag":88,"props":7955,"children":7956},{"style":101},[7957],{"type":60,"value":7958},"Bad request - message too large or invalid",{"type":54,"tag":88,"props":7960,"children":7961},{"style":160},[7962],{"type":60,"value":339},{"type":54,"tag":88,"props":7964,"children":7965},{"style":453},[7966],{"type":60,"value":493},{"type":54,"tag":88,"props":7968,"children":7969},{"style":160},[7970],{"type":60,"value":344},{"type":54,"tag":88,"props":7972,"children":7973},{"class":90,"line":653},[7974,7978],{"type":54,"tag":88,"props":7975,"children":7976},{"style":302},[7977],{"type":60,"value":7910},{"type":54,"tag":88,"props":7979,"children":7980},{"style":160},[7981],{"type":60,"value":344},{"type":54,"tag":88,"props":7983,"children":7984},{"class":90,"line":662},[7985,7989,7994],{"type":54,"tag":88,"props":7986,"children":7987},{"style":302},[7988],{"type":60,"value":7852},{"type":54,"tag":88,"props":7990,"children":7991},{"style":2295},[7992],{"type":60,"value":7993}," 403",{"type":54,"tag":88,"props":7995,"children":7996},{"style":160},[7997],{"type":60,"value":7862},{"type":54,"tag":88,"props":7999,"children":8000},{"class":90,"line":2914},[8001,8005,8009,8013,8017,8021,8026,8030,8034],{"type":54,"tag":88,"props":8002,"children":8003},{"style":154},[8004],{"type":60,"value":4350},{"type":54,"tag":88,"props":8006,"children":8007},{"style":160},[8008],{"type":60,"value":559},{"type":54,"tag":88,"props":8010,"children":8011},{"style":438},[8012],{"type":60,"value":1553},{"type":54,"tag":88,"props":8014,"children":8015},{"style":453},[8016],{"type":60,"value":445},{"type":54,"tag":88,"props":8018,"children":8019},{"style":160},[8020],{"type":60,"value":339},{"type":54,"tag":88,"props":8022,"children":8023},{"style":101},[8024],{"type":60,"value":8025},"Access denied",{"type":54,"tag":88,"props":8027,"children":8028},{"style":160},[8029],{"type":60,"value":339},{"type":54,"tag":88,"props":8031,"children":8032},{"style":453},[8033],{"type":60,"value":493},{"type":54,"tag":88,"props":8035,"children":8036},{"style":160},[8037],{"type":60,"value":344},{"type":54,"tag":88,"props":8039,"children":8040},{"class":90,"line":2923},[8041,8045],{"type":54,"tag":88,"props":8042,"children":8043},{"style":302},[8044],{"type":60,"value":7910},{"type":54,"tag":88,"props":8046,"children":8047},{"style":160},[8048],{"type":60,"value":344},{"type":54,"tag":88,"props":8050,"children":8051},{"class":90,"line":2986},[8052,8056,8061],{"type":54,"tag":88,"props":8053,"children":8054},{"style":302},[8055],{"type":60,"value":7852},{"type":54,"tag":88,"props":8057,"children":8058},{"style":2295},[8059],{"type":60,"value":8060}," 409",{"type":54,"tag":88,"props":8062,"children":8063},{"style":160},[8064],{"type":60,"value":7862},{"type":54,"tag":88,"props":8066,"children":8067},{"class":90,"line":4313},[8068,8072,8076,8080,8084,8088,8093,8097,8101],{"type":54,"tag":88,"props":8069,"children":8070},{"style":154},[8071],{"type":60,"value":4350},{"type":54,"tag":88,"props":8073,"children":8074},{"style":160},[8075],{"type":60,"value":559},{"type":54,"tag":88,"props":8077,"children":8078},{"style":438},[8079],{"type":60,"value":1553},{"type":54,"tag":88,"props":8081,"children":8082},{"style":453},[8083],{"type":60,"value":445},{"type":54,"tag":88,"props":8085,"children":8086},{"style":160},[8087],{"type":60,"value":339},{"type":54,"tag":88,"props":8089,"children":8090},{"style":101},[8091],{"type":60,"value":8092},"Queue already exists or being deleted",{"type":54,"tag":88,"props":8094,"children":8095},{"style":160},[8096],{"type":60,"value":339},{"type":54,"tag":88,"props":8098,"children":8099},{"style":453},[8100],{"type":60,"value":493},{"type":54,"tag":88,"props":8102,"children":8103},{"style":160},[8104],{"type":60,"value":344},{"type":54,"tag":88,"props":8106,"children":8107},{"class":90,"line":4344},[8108,8112],{"type":54,"tag":88,"props":8109,"children":8110},{"style":302},[8111],{"type":60,"value":7910},{"type":54,"tag":88,"props":8113,"children":8114},{"style":160},[8115],{"type":60,"value":344},{"type":54,"tag":88,"props":8117,"children":8118},{"class":90,"line":4419},[8119,8124],{"type":54,"tag":88,"props":8120,"children":8121},{"style":302},[8122],{"type":60,"value":8123},"      default",{"type":54,"tag":88,"props":8125,"children":8126},{"style":160},[8127],{"type":60,"value":7862},{"type":54,"tag":88,"props":8129,"children":8130},{"class":90,"line":4428},[8131,8135,8139,8143,8147,8151,8156,8160,8164,8168,8172,8176,8181,8185,8189,8193,8197,8201,8205],{"type":54,"tag":88,"props":8132,"children":8133},{"style":154},[8134],{"type":60,"value":4350},{"type":54,"tag":88,"props":8136,"children":8137},{"style":160},[8138],{"type":60,"value":559},{"type":54,"tag":88,"props":8140,"children":8141},{"style":438},[8142],{"type":60,"value":4333},{"type":54,"tag":88,"props":8144,"children":8145},{"style":453},[8146],{"type":60,"value":445},{"type":54,"tag":88,"props":8148,"children":8149},{"style":160},[8150],{"type":60,"value":645},{"type":54,"tag":88,"props":8152,"children":8153},{"style":101},[8154],{"type":60,"value":8155},"Storage error ",{"type":54,"tag":88,"props":8157,"children":8158},{"style":160},[8159],{"type":60,"value":626},{"type":54,"tag":88,"props":8161,"children":8162},{"style":154},[8163],{"type":60,"value":4333},{"type":54,"tag":88,"props":8165,"children":8166},{"style":160},[8167],{"type":60,"value":559},{"type":54,"tag":88,"props":8169,"children":8170},{"style":154},[8171],{"type":60,"value":7836},{"type":54,"tag":88,"props":8173,"children":8174},{"style":160},[8175],{"type":60,"value":488},{"type":54,"tag":88,"props":8177,"children":8178},{"style":101},[8179],{"type":60,"value":8180},": ",{"type":54,"tag":88,"props":8182,"children":8183},{"style":160},[8184],{"type":60,"value":626},{"type":54,"tag":88,"props":8186,"children":8187},{"style":154},[8188],{"type":60,"value":4333},{"type":54,"tag":88,"props":8190,"children":8191},{"style":160},[8192],{"type":60,"value":559},{"type":54,"tag":88,"props":8194,"children":8195},{"style":154},[8196],{"type":60,"value":2951},{"type":54,"tag":88,"props":8198,"children":8199},{"style":160},[8200],{"type":60,"value":7219},{"type":54,"tag":88,"props":8202,"children":8203},{"style":453},[8204],{"type":60,"value":493},{"type":54,"tag":88,"props":8206,"children":8207},{"style":160},[8208],{"type":60,"value":344},{"type":54,"tag":88,"props":8210,"children":8211},{"class":90,"line":4437},[8212],{"type":54,"tag":88,"props":8213,"children":8214},{"style":160},[8215],{"type":60,"value":4150},{"type":54,"tag":88,"props":8217,"children":8218},{"class":90,"line":4445},[8219],{"type":54,"tag":88,"props":8220,"children":8221},{"style":160},[8222],{"type":60,"value":4451},{"type":54,"tag":88,"props":8224,"children":8225},{"class":90,"line":4454},[8226,8231,8235],{"type":54,"tag":88,"props":8227,"children":8228},{"style":302},[8229],{"type":60,"value":8230},"  throw",{"type":54,"tag":88,"props":8232,"children":8233},{"style":154},[8234],{"type":60,"value":4408},{"type":54,"tag":88,"props":8236,"children":8237},{"style":160},[8238],{"type":60,"value":344},{"type":54,"tag":88,"props":8240,"children":8241},{"class":90,"line":4462},[8242],{"type":54,"tag":88,"props":8243,"children":8244},{"style":160},[8245],{"type":60,"value":1587},{"type":54,"tag":69,"props":8247,"children":8249},{"id":8248},"typescript-types-reference",[8250],{"type":60,"value":8251},"TypeScript Types Reference",{"type":54,"tag":76,"props":8253,"children":8255},{"className":291,"code":8254,"language":21,"meta":81,"style":81},"import {\n  \u002F\u002F Clients\n  QueueServiceClient,\n  QueueClient,\n\n  \u002F\u002F Authentication\n  StorageSharedKeyCredential,\n  AnonymousCredential,\n\n  \u002F\u002F SAS\n  QueueSASPermissions,\n  AccountSASPermissions,\n  AccountSASServices,\n  AccountSASResourceTypes,\n  generateQueueSASQueryParameters,\n  generateAccountSASQueryParameters,\n\n  \u002F\u002F Messages\n  DequeuedMessageItem,\n  PeekedMessageItem,\n  QueueSendMessageResponse,\n  QueueReceiveMessageResponse,\n  QueueUpdateMessageResponse,\n\n  \u002F\u002F Queue\n  QueueItem,\n  QueueGetPropertiesResponse,\n\n  \u002F\u002F Errors\n  RestError,\n} from \"@azure\u002Fstorage-queue\";\n",[8256],{"type":54,"tag":84,"props":8257,"children":8258},{"__ignoreMap":81},[8259,8270,8278,8290,8302,8309,8317,8328,8340,8347,8355,8366,8377,8388,8399,8410,8421,8428,8436,8448,8460,8472,8484,8496,8503,8511,8523,8535,8542,8550,8562],{"type":54,"tag":88,"props":8260,"children":8261},{"class":90,"line":91},[8262,8266],{"type":54,"tag":88,"props":8263,"children":8264},{"style":302},[8265],{"type":60,"value":305},{"type":54,"tag":88,"props":8267,"children":8268},{"style":160},[8269],{"type":60,"value":2280},{"type":54,"tag":88,"props":8271,"children":8272},{"class":90,"line":176},[8273],{"type":54,"tag":88,"props":8274,"children":8275},{"style":202},[8276],{"type":60,"value":8277},"  \u002F\u002F Clients\n",{"type":54,"tag":88,"props":8279,"children":8280},{"class":90,"line":198},[8281,8286],{"type":54,"tag":88,"props":8282,"children":8283},{"style":154},[8284],{"type":60,"value":8285},"  QueueServiceClient",{"type":54,"tag":88,"props":8287,"children":8288},{"style":160},[8289],{"type":60,"value":650},{"type":54,"tag":88,"props":8291,"children":8292},{"class":90,"line":208},[8293,8298],{"type":54,"tag":88,"props":8294,"children":8295},{"style":154},[8296],{"type":60,"value":8297},"  QueueClient",{"type":54,"tag":88,"props":8299,"children":8300},{"style":160},[8301],{"type":60,"value":650},{"type":54,"tag":88,"props":8303,"children":8304},{"class":90,"line":255},[8305],{"type":54,"tag":88,"props":8306,"children":8307},{"emptyLinePlaceholder":401},[8308],{"type":60,"value":404},{"type":54,"tag":88,"props":8310,"children":8311},{"class":90,"line":500},[8312],{"type":54,"tag":88,"props":8313,"children":8314},{"style":202},[8315],{"type":60,"value":8316},"  \u002F\u002F Authentication\n",{"type":54,"tag":88,"props":8318,"children":8319},{"class":90,"line":509},[8320,8324],{"type":54,"tag":88,"props":8321,"children":8322},{"style":154},[8323],{"type":60,"value":6821},{"type":54,"tag":88,"props":8325,"children":8326},{"style":160},[8327],{"type":60,"value":650},{"type":54,"tag":88,"props":8329,"children":8330},{"class":90,"line":518},[8331,8336],{"type":54,"tag":88,"props":8332,"children":8333},{"style":154},[8334],{"type":60,"value":8335},"  AnonymousCredential",{"type":54,"tag":88,"props":8337,"children":8338},{"style":160},[8339],{"type":60,"value":650},{"type":54,"tag":88,"props":8341,"children":8342},{"class":90,"line":527},[8343],{"type":54,"tag":88,"props":8344,"children":8345},{"emptyLinePlaceholder":401},[8346],{"type":60,"value":404},{"type":54,"tag":88,"props":8348,"children":8349},{"class":90,"line":535},[8350],{"type":54,"tag":88,"props":8351,"children":8352},{"style":202},[8353],{"type":60,"value":8354},"  \u002F\u002F SAS\n",{"type":54,"tag":88,"props":8356,"children":8357},{"class":90,"line":580},[8358,8362],{"type":54,"tag":88,"props":8359,"children":8360},{"style":154},[8361],{"type":60,"value":6797},{"type":54,"tag":88,"props":8363,"children":8364},{"style":160},[8365],{"type":60,"value":650},{"type":54,"tag":88,"props":8367,"children":8368},{"class":90,"line":610},[8369,8373],{"type":54,"tag":88,"props":8370,"children":8371},{"style":154},[8372],{"type":60,"value":7255},{"type":54,"tag":88,"props":8374,"children":8375},{"style":160},[8376],{"type":60,"value":650},{"type":54,"tag":88,"props":8378,"children":8379},{"class":90,"line":653},[8380,8384],{"type":54,"tag":88,"props":8381,"children":8382},{"style":154},[8383],{"type":60,"value":7279},{"type":54,"tag":88,"props":8385,"children":8386},{"style":160},[8387],{"type":60,"value":650},{"type":54,"tag":88,"props":8389,"children":8390},{"class":90,"line":662},[8391,8395],{"type":54,"tag":88,"props":8392,"children":8393},{"style":154},[8394],{"type":60,"value":7267},{"type":54,"tag":88,"props":8396,"children":8397},{"style":160},[8398],{"type":60,"value":650},{"type":54,"tag":88,"props":8400,"children":8401},{"class":90,"line":2914},[8402,8406],{"type":54,"tag":88,"props":8403,"children":8404},{"style":154},[8405],{"type":60,"value":6809},{"type":54,"tag":88,"props":8407,"children":8408},{"style":160},[8409],{"type":60,"value":650},{"type":54,"tag":88,"props":8411,"children":8412},{"class":90,"line":2923},[8413,8417],{"type":54,"tag":88,"props":8414,"children":8415},{"style":154},[8416],{"type":60,"value":7291},{"type":54,"tag":88,"props":8418,"children":8419},{"style":160},[8420],{"type":60,"value":650},{"type":54,"tag":88,"props":8422,"children":8423},{"class":90,"line":2986},[8424],{"type":54,"tag":88,"props":8425,"children":8426},{"emptyLinePlaceholder":401},[8427],{"type":60,"value":404},{"type":54,"tag":88,"props":8429,"children":8430},{"class":90,"line":4313},[8431],{"type":54,"tag":88,"props":8432,"children":8433},{"style":202},[8434],{"type":60,"value":8435},"  \u002F\u002F Messages\n",{"type":54,"tag":88,"props":8437,"children":8438},{"class":90,"line":4344},[8439,8444],{"type":54,"tag":88,"props":8440,"children":8441},{"style":154},[8442],{"type":60,"value":8443},"  DequeuedMessageItem",{"type":54,"tag":88,"props":8445,"children":8446},{"style":160},[8447],{"type":60,"value":650},{"type":54,"tag":88,"props":8449,"children":8450},{"class":90,"line":4419},[8451,8456],{"type":54,"tag":88,"props":8452,"children":8453},{"style":154},[8454],{"type":60,"value":8455},"  PeekedMessageItem",{"type":54,"tag":88,"props":8457,"children":8458},{"style":160},[8459],{"type":60,"value":650},{"type":54,"tag":88,"props":8461,"children":8462},{"class":90,"line":4428},[8463,8468],{"type":54,"tag":88,"props":8464,"children":8465},{"style":154},[8466],{"type":60,"value":8467},"  QueueSendMessageResponse",{"type":54,"tag":88,"props":8469,"children":8470},{"style":160},[8471],{"type":60,"value":650},{"type":54,"tag":88,"props":8473,"children":8474},{"class":90,"line":4437},[8475,8480],{"type":54,"tag":88,"props":8476,"children":8477},{"style":154},[8478],{"type":60,"value":8479},"  QueueReceiveMessageResponse",{"type":54,"tag":88,"props":8481,"children":8482},{"style":160},[8483],{"type":60,"value":650},{"type":54,"tag":88,"props":8485,"children":8486},{"class":90,"line":4445},[8487,8492],{"type":54,"tag":88,"props":8488,"children":8489},{"style":154},[8490],{"type":60,"value":8491},"  QueueUpdateMessageResponse",{"type":54,"tag":88,"props":8493,"children":8494},{"style":160},[8495],{"type":60,"value":650},{"type":54,"tag":88,"props":8497,"children":8498},{"class":90,"line":4454},[8499],{"type":54,"tag":88,"props":8500,"children":8501},{"emptyLinePlaceholder":401},[8502],{"type":60,"value":404},{"type":54,"tag":88,"props":8504,"children":8505},{"class":90,"line":4462},[8506],{"type":54,"tag":88,"props":8507,"children":8508},{"style":202},[8509],{"type":60,"value":8510},"  \u002F\u002F Queue\n",{"type":54,"tag":88,"props":8512,"children":8513},{"class":90,"line":4470},[8514,8519],{"type":54,"tag":88,"props":8515,"children":8516},{"style":154},[8517],{"type":60,"value":8518},"  QueueItem",{"type":54,"tag":88,"props":8520,"children":8521},{"style":160},[8522],{"type":60,"value":650},{"type":54,"tag":88,"props":8524,"children":8525},{"class":90,"line":4528},[8526,8531],{"type":54,"tag":88,"props":8527,"children":8528},{"style":154},[8529],{"type":60,"value":8530},"  QueueGetPropertiesResponse",{"type":54,"tag":88,"props":8532,"children":8533},{"style":160},[8534],{"type":60,"value":650},{"type":54,"tag":88,"props":8536,"children":8537},{"class":90,"line":4575},[8538],{"type":54,"tag":88,"props":8539,"children":8540},{"emptyLinePlaceholder":401},[8541],{"type":60,"value":404},{"type":54,"tag":88,"props":8543,"children":8544},{"class":90,"line":4584},[8545],{"type":54,"tag":88,"props":8546,"children":8547},{"style":202},[8548],{"type":60,"value":8549},"  \u002F\u002F Errors\n",{"type":54,"tag":88,"props":8551,"children":8552},{"class":90,"line":4592},[8553,8558],{"type":54,"tag":88,"props":8554,"children":8555},{"style":154},[8556],{"type":60,"value":8557},"  RestError",{"type":54,"tag":88,"props":8559,"children":8560},{"style":160},[8561],{"type":60,"value":650},{"type":54,"tag":88,"props":8563,"children":8564},{"class":90,"line":4600},[8565,8569,8573,8577,8581,8585],{"type":54,"tag":88,"props":8566,"children":8567},{"style":160},[8568],{"type":60,"value":488},{"type":54,"tag":88,"props":8570,"children":8571},{"style":302},[8572],{"type":60,"value":325},{"type":54,"tag":88,"props":8574,"children":8575},{"style":160},[8576],{"type":60,"value":330},{"type":54,"tag":88,"props":8578,"children":8579},{"style":101},[8580],{"type":60,"value":49},{"type":54,"tag":88,"props":8582,"children":8583},{"style":160},[8584],{"type":60,"value":339},{"type":54,"tag":88,"props":8586,"children":8587},{"style":160},[8588],{"type":60,"value":344},{"type":54,"tag":69,"props":8590,"children":8592},{"id":8591},"message-limits",[8593],{"type":60,"value":8594},"Message Limits",{"type":54,"tag":8596,"props":8597,"children":8598},"table",{},[8599,8618],{"type":54,"tag":8600,"props":8601,"children":8602},"thead",{},[8603],{"type":54,"tag":8604,"props":8605,"children":8606},"tr",{},[8607,8613],{"type":54,"tag":8608,"props":8609,"children":8610},"th",{},[8611],{"type":60,"value":8612},"Limit",{"type":54,"tag":8608,"props":8614,"children":8615},{},[8616],{"type":60,"value":8617},"Value",{"type":54,"tag":8619,"props":8620,"children":8621},"tbody",{},[8622,8636,8649,8662,8675],{"type":54,"tag":8604,"props":8623,"children":8624},{},[8625,8631],{"type":54,"tag":8626,"props":8627,"children":8628},"td",{},[8629],{"type":60,"value":8630},"Max message size",{"type":54,"tag":8626,"props":8632,"children":8633},{},[8634],{"type":60,"value":8635},"64 KB",{"type":54,"tag":8604,"props":8637,"children":8638},{},[8639,8644],{"type":54,"tag":8626,"props":8640,"children":8641},{},[8642],{"type":60,"value":8643},"Max visibility timeout",{"type":54,"tag":8626,"props":8645,"children":8646},{},[8647],{"type":60,"value":8648},"7 days",{"type":54,"tag":8604,"props":8650,"children":8651},{},[8652,8657],{"type":54,"tag":8626,"props":8653,"children":8654},{},[8655],{"type":60,"value":8656},"Max time-to-live",{"type":54,"tag":8626,"props":8658,"children":8659},{},[8660],{"type":60,"value":8661},"7 days (or -1 for infinite)",{"type":54,"tag":8604,"props":8663,"children":8664},{},[8665,8670],{"type":54,"tag":8626,"props":8666,"children":8667},{},[8668],{"type":60,"value":8669},"Max messages per receive",{"type":54,"tag":8626,"props":8671,"children":8672},{},[8673],{"type":60,"value":8674},"32",{"type":54,"tag":8604,"props":8676,"children":8677},{},[8678,8683],{"type":54,"tag":8626,"props":8679,"children":8680},{},[8681],{"type":60,"value":8682},"Default visibility timeout",{"type":54,"tag":8626,"props":8684,"children":8685},{},[8686],{"type":60,"value":8687},"30 seconds",{"type":54,"tag":69,"props":8689,"children":8691},{"id":8690},"best-practices",[8692],{"type":60,"value":8693},"Best Practices",{"type":54,"tag":8695,"props":8696,"children":8697},"ol",{},[8698,8731,8741,8751,8761,8771,8781,8791],{"type":54,"tag":8699,"props":8700,"children":8701},"li",{},[8702],{"type":54,"tag":119,"props":8703,"children":8704},{},[8705,8707,8713,8715,8721,8723,8729],{"type":60,"value":8706},"Use ",{"type":54,"tag":84,"props":8708,"children":8710},{"className":8709},[],[8711],{"type":60,"value":8712},"DefaultAzureCredential",{"type":60,"value":8714}," for local development; use ",{"type":54,"tag":84,"props":8716,"children":8718},{"className":8717},[],[8719],{"type":60,"value":8720},"ManagedIdentityCredential",{"type":60,"value":8722}," or ",{"type":54,"tag":84,"props":8724,"children":8726},{"className":8725},[],[8727],{"type":60,"value":8728},"WorkloadIdentityCredential",{"type":60,"value":8730}," for production",{"type":54,"tag":8699,"props":8732,"children":8733},{},[8734,8739],{"type":54,"tag":119,"props":8735,"children":8736},{},[8737],{"type":60,"value":8738},"Always delete after processing",{"type":60,"value":8740}," — Prevent duplicate processing",{"type":54,"tag":8699,"props":8742,"children":8743},{},[8744,8749],{"type":54,"tag":119,"props":8745,"children":8746},{},[8747],{"type":60,"value":8748},"Handle poison messages",{"type":60,"value":8750}," — Move failed messages to a dead-letter queue",{"type":54,"tag":8699,"props":8752,"children":8753},{},[8754,8759],{"type":54,"tag":119,"props":8755,"children":8756},{},[8757],{"type":60,"value":8758},"Use appropriate visibility timeout",{"type":60,"value":8760}," — Set based on expected processing time",{"type":54,"tag":8699,"props":8762,"children":8763},{},[8764,8769],{"type":54,"tag":119,"props":8765,"children":8766},{},[8767],{"type":60,"value":8768},"Extend visibility for long tasks",{"type":60,"value":8770}," — Update message to prevent timeout",{"type":54,"tag":8699,"props":8772,"children":8773},{},[8774,8779],{"type":54,"tag":119,"props":8775,"children":8776},{},[8777],{"type":60,"value":8778},"Use JSON for structured data",{"type":60,"value":8780}," — Serialize objects to JSON strings",{"type":54,"tag":8699,"props":8782,"children":8783},{},[8784,8789],{"type":54,"tag":119,"props":8785,"children":8786},{},[8787],{"type":60,"value":8788},"Check dequeueCount",{"type":60,"value":8790}," — Detect repeatedly failing messages",{"type":54,"tag":8699,"props":8792,"children":8793},{},[8794,8799],{"type":54,"tag":119,"props":8795,"children":8796},{},[8797],{"type":60,"value":8798},"Use batch receive",{"type":60,"value":8800}," — Receive multiple messages for efficiency",{"type":54,"tag":69,"props":8802,"children":8804},{"id":8803},"platform-differences",[8805],{"type":60,"value":8806},"Platform Differences",{"type":54,"tag":8596,"props":8808,"children":8809},{},[8810,8830],{"type":54,"tag":8600,"props":8811,"children":8812},{},[8813],{"type":54,"tag":8604,"props":8814,"children":8815},{},[8816,8821,8825],{"type":54,"tag":8608,"props":8817,"children":8818},{},[8819],{"type":60,"value":8820},"Feature",{"type":54,"tag":8608,"props":8822,"children":8823},{},[8824],{"type":60,"value":17},{"type":54,"tag":8608,"props":8826,"children":8827},{},[8828],{"type":60,"value":8829},"Browser",{"type":54,"tag":8619,"props":8831,"children":8832},{},[8833,8855,8871,8886,8902],{"type":54,"tag":8604,"props":8834,"children":8835},{},[8836,8845,8850],{"type":54,"tag":8626,"props":8837,"children":8838},{},[8839],{"type":54,"tag":84,"props":8840,"children":8842},{"className":8841},[],[8843],{"type":60,"value":8844},"StorageSharedKeyCredential",{"type":54,"tag":8626,"props":8846,"children":8847},{},[8848],{"type":60,"value":8849},"✅",{"type":54,"tag":8626,"props":8851,"children":8852},{},[8853],{"type":60,"value":8854},"❌",{"type":54,"tag":8604,"props":8856,"children":8857},{},[8858,8863,8867],{"type":54,"tag":8626,"props":8859,"children":8860},{},[8861],{"type":60,"value":8862},"SAS generation",{"type":54,"tag":8626,"props":8864,"children":8865},{},[8866],{"type":60,"value":8849},{"type":54,"tag":8626,"props":8868,"children":8869},{},[8870],{"type":60,"value":8854},{"type":54,"tag":8604,"props":8872,"children":8873},{},[8874,8878,8882],{"type":54,"tag":8626,"props":8875,"children":8876},{},[8877],{"type":60,"value":8712},{"type":54,"tag":8626,"props":8879,"children":8880},{},[8881],{"type":60,"value":8849},{"type":54,"tag":8626,"props":8883,"children":8884},{},[8885],{"type":60,"value":8854},{"type":54,"tag":8604,"props":8887,"children":8888},{},[8889,8894,8898],{"type":54,"tag":8626,"props":8890,"children":8891},{},[8892],{"type":60,"value":8893},"Anonymous\u002FSAS access",{"type":54,"tag":8626,"props":8895,"children":8896},{},[8897],{"type":60,"value":8849},{"type":54,"tag":8626,"props":8899,"children":8900},{},[8901],{"type":60,"value":8849},{"type":54,"tag":8604,"props":8903,"children":8904},{},[8905,8910,8914],{"type":54,"tag":8626,"props":8906,"children":8907},{},[8908],{"type":60,"value":8909},"All message operations",{"type":54,"tag":8626,"props":8911,"children":8912},{},[8913],{"type":60,"value":8849},{"type":54,"tag":8626,"props":8915,"children":8916},{},[8917],{"type":60,"value":8849},{"type":54,"tag":8919,"props":8920,"children":8921},"style",{},[8922],{"type":60,"value":8923},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":8925,"total":9112},[8926,8947,8963,8984,8999,9016,9027,9040,9055,9070,9089,9100],{"slug":8927,"name":8927,"fn":8928,"description":8929,"org":8930,"tags":8931,"stars":8944,"repoUrl":8945,"updatedAt":8946},"rushstack-best-practices","manage Rush monorepos with best practices","Provides best practices and guidance for working with Rush monorepos. Use when the user is working in a Rush-based repository, asks about Rush commands (install, update, build, rebuild), needs help with project selection, dependency management, build caching, subspace configuration, or troubleshooting Rush-specific issues.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8932,8934,8937,8938,8941],{"name":8933,"slug":2038,"type":15},"Engineering",{"name":8935,"slug":8936,"type":15},"Local Development","local-development",{"name":9,"slug":8,"type":15},{"name":8939,"slug":8940,"type":15},"Project Management","project-management",{"name":8942,"slug":8943,"type":15},"Rush","rush",6484,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Frushstack","2026-04-06T18:34:44.965032",{"slug":8948,"name":8948,"fn":8949,"description":8950,"org":8951,"tags":8952,"stars":28,"repoUrl":29,"updatedAt":8962},"azure-ai-agents-persistent-dotnet","build AI agents with Azure .NET SDK","Azure AI Agents Persistent SDK for .NET. Low-level SDK for creating and managing AI agents with threads, messages, runs, and tools. Use for agent CRUD, conversation threads, streaming responses, function calling, file search, and code interpreter. Triggers: \"PersistentAgentsClient\", \"persistent agents\", \"agent threads\", \"agent runs\", \"streaming agents\", \"function calling agents .NET\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8953,8956,8958,8959],{"name":8954,"slug":8955,"type":15},".NET","net",{"name":8957,"slug":35,"type":15},"Agents",{"name":13,"slug":14,"type":15},{"name":8960,"slug":8961,"type":15},"LLM","llm","2026-07-03T16:32:10.297433",{"slug":8964,"name":8964,"fn":8965,"description":8966,"org":8967,"tags":8968,"stars":28,"repoUrl":29,"updatedAt":8983},"azure-ai-anomalydetector-java","build anomaly detection applications with Java","Build anomaly detection applications with Azure AI Anomaly Detector SDK for Java. Use when implementing univariate\u002Fmultivariate anomaly detection, time-series analysis, or AI-powered monitoring.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8969,8972,8973,8976,8979,8980],{"name":8970,"slug":8971,"type":15},"Analytics","analytics",{"name":13,"slug":14,"type":15},{"name":8974,"slug":8975,"type":15},"Data Analysis","data-analysis",{"name":8977,"slug":8978,"type":15},"Java","java",{"name":9,"slug":8,"type":15},{"name":8981,"slug":8982,"type":15},"Monitoring","monitoring","2026-05-13T06:14:16.261754",{"slug":8985,"name":8985,"fn":8986,"description":8987,"org":8988,"tags":8989,"stars":28,"repoUrl":29,"updatedAt":8998},"azure-ai-contentsafety-java","build content moderation applications with Azure AI","Build content moderation applications with Azure AI Content Safety SDK for Java. Use when implementing text\u002Fimage analysis, blocklist management, or harm detection for hate, violence, sexual content, and self-harm.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[8990,8993,8994,8995],{"name":8991,"slug":8992,"type":15},"AI Infrastructure","ai-infrastructure",{"name":13,"slug":14,"type":15},{"name":8977,"slug":8978,"type":15},{"name":8996,"slug":8997,"type":15},"Security","security","2026-07-07T06:53:31.293235",{"slug":9000,"name":9000,"fn":9001,"description":9002,"org":9003,"tags":9004,"stars":28,"repoUrl":29,"updatedAt":9015},"azure-ai-contentsafety-py","detect harmful content with Azure AI Content Safety","Azure AI Content Safety SDK for Python. Use for detecting harmful content in text and images with multi-severity classification.\nTriggers: \"azure-ai-contentsafety\", \"ContentSafetyClient\", \"content moderation\", \"harmful content\", \"text analysis\", \"image analysis\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9005,9006,9009,9010,9011,9014],{"name":13,"slug":14,"type":15},{"name":9007,"slug":9008,"type":15},"Compliance","compliance",{"name":8960,"slug":8961,"type":15},{"name":9,"slug":8,"type":15},{"name":9012,"slug":9013,"type":15},"Python","python",{"name":8996,"slug":8997,"type":15},"2026-07-18T05:14:23.017504",{"slug":9017,"name":9017,"fn":9018,"description":9019,"org":9020,"tags":9021,"stars":28,"repoUrl":29,"updatedAt":9026},"azure-ai-language-conversations-py","implement conversational language understanding with Python","Implement Conversational Language Understanding (CLU) using the azure-ai-language-conversations Python SDK. Use when working with ConversationAnalysisClient to analyze conversation intent and entities, building NLP features, or integrating language understanding into applications.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9022,9023,9024,9025],{"name":8970,"slug":8971,"type":15},{"name":13,"slug":14,"type":15},{"name":8960,"slug":8961,"type":15},{"name":9012,"slug":9013,"type":15},"2026-07-31T05:54:29.068751",{"slug":9028,"name":9028,"fn":9029,"description":9030,"org":9031,"tags":9032,"stars":28,"repoUrl":29,"updatedAt":9039},"azure-ai-translation-text-py","translate text using Azure AI services","Azure AI Text Translation SDK for real-time text translation, transliteration, language detection, and dictionary lookup. Use for translating text content in applications.\nTriggers: \"text translation\", \"translator\", \"translate text\", \"transliterate\", \"TextTranslationClient\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9033,9036,9037,9038],{"name":9034,"slug":9035,"type":15},"API Development","api-development",{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":9012,"slug":9013,"type":15},"2026-07-18T05:14:16.988376",{"slug":9041,"name":9041,"fn":9042,"description":9043,"org":9044,"tags":9045,"stars":28,"repoUrl":29,"updatedAt":9054},"azure-ai-vision-imageanalysis-py","analyze images with Azure AI Vision","Azure AI Vision Image Analysis SDK for captions, tags, objects, OCR, people detection, and smart cropping. Use for computer vision and image understanding tasks.\nTriggers: \"image analysis\", \"computer vision\", \"OCR\", \"object detection\", \"ImageAnalysisClient\", \"image caption\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9046,9047,9050,9053],{"name":13,"slug":14,"type":15},{"name":9048,"slug":9049,"type":15},"Computer Vision","computer-vision",{"name":9051,"slug":9052,"type":15},"Images","images",{"name":9012,"slug":9013,"type":15},"2026-07-18T05:14:18.007737",{"slug":9056,"name":9056,"fn":9057,"description":9058,"org":9059,"tags":9060,"stars":28,"repoUrl":29,"updatedAt":9069},"azure-appconfiguration-java","manage configuration with Azure App Configuration","Azure App Configuration SDK for Java. Centralized application configuration management with key-value settings, feature flags, and snapshots.\nTriggers: \"ConfigurationClient java\", \"app configuration java\", \"feature flag java\", \"configuration setting java\", \"azure config java\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9061,9062,9065,9068],{"name":13,"slug":14,"type":15},{"name":9063,"slug":9064,"type":15},"Configuration","configuration",{"name":9066,"slug":9067,"type":15},"Feature Flags","feature-flags",{"name":8977,"slug":8978,"type":15},"2026-07-03T16:32:01.278468",{"slug":9071,"name":9071,"fn":9072,"description":9073,"org":9074,"tags":9075,"stars":28,"repoUrl":29,"updatedAt":9088},"azure-cosmos-rust","build applications with Azure Cosmos DB","Azure Cosmos DB library for Rust (NoSQL API). Document CRUD, containers, and globally distributed data.\nTriggers: \"cosmos db rust\", \"CosmosClient rust\", \"document crud rust\", \"NoSQL rust\", \"partition key rust\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9076,9079,9082,9085],{"name":9077,"slug":9078,"type":15},"Cosmos DB","cosmos-db",{"name":9080,"slug":9081,"type":15},"Database","database",{"name":9083,"slug":9084,"type":15},"NoSQL","nosql",{"name":9086,"slug":9087,"type":15},"Rust","rust","2026-07-31T05:54:27.021432",{"slug":9090,"name":9090,"fn":9072,"description":9091,"org":9092,"tags":9093,"stars":28,"repoUrl":29,"updatedAt":9099},"azure-cosmos-ts","Azure Cosmos DB JavaScript\u002FTypeScript SDK (@azure\u002Fcosmos) for data plane operations. Use for CRUD operations on documents, queries, bulk operations, and container management. Triggers: \"Cosmos DB\", \"@azure\u002Fcosmos\", \"CosmosClient\", \"document CRUD\", \"NoSQL queries\", \"bulk operations\", \"partition key\", \"container.items\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9094,9095,9096,9097,9098],{"name":9077,"slug":9078,"type":15},{"name":9080,"slug":9081,"type":15},{"name":9,"slug":8,"type":15},{"name":9083,"slug":9084,"type":15},{"name":20,"slug":21,"type":15},"2026-07-03T16:31:19.368382",{"slug":9101,"name":9101,"fn":9102,"description":9103,"org":9104,"tags":9105,"stars":28,"repoUrl":29,"updatedAt":9111},"azure-data-tables-java","build table storage applications with Java","Build table storage applications with Azure Tables SDK for Java. Use when working with Azure Table Storage or Cosmos DB Table API for NoSQL key-value data, schemaless storage, or structured data at scale.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9106,9107,9108,9109,9110],{"name":13,"slug":14,"type":15},{"name":9077,"slug":9078,"type":15},{"name":9080,"slug":9081,"type":15},{"name":8977,"slug":8978,"type":15},{"name":9083,"slug":9084,"type":15},"2026-05-13T06:14:17.582229",267,{"items":9114,"total":9168},[9115,9122,9131,9138,9147,9154,9161],{"slug":8948,"name":8948,"fn":8949,"description":8950,"org":9116,"tags":9117,"stars":28,"repoUrl":29,"updatedAt":8962},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9118,9119,9120,9121],{"name":8954,"slug":8955,"type":15},{"name":8957,"slug":35,"type":15},{"name":13,"slug":14,"type":15},{"name":8960,"slug":8961,"type":15},{"slug":8964,"name":8964,"fn":8965,"description":8966,"org":9123,"tags":9124,"stars":28,"repoUrl":29,"updatedAt":8983},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9125,9126,9127,9128,9129,9130],{"name":8970,"slug":8971,"type":15},{"name":13,"slug":14,"type":15},{"name":8974,"slug":8975,"type":15},{"name":8977,"slug":8978,"type":15},{"name":9,"slug":8,"type":15},{"name":8981,"slug":8982,"type":15},{"slug":8985,"name":8985,"fn":8986,"description":8987,"org":9132,"tags":9133,"stars":28,"repoUrl":29,"updatedAt":8998},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9134,9135,9136,9137],{"name":8991,"slug":8992,"type":15},{"name":13,"slug":14,"type":15},{"name":8977,"slug":8978,"type":15},{"name":8996,"slug":8997,"type":15},{"slug":9000,"name":9000,"fn":9001,"description":9002,"org":9139,"tags":9140,"stars":28,"repoUrl":29,"updatedAt":9015},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9141,9142,9143,9144,9145,9146],{"name":13,"slug":14,"type":15},{"name":9007,"slug":9008,"type":15},{"name":8960,"slug":8961,"type":15},{"name":9,"slug":8,"type":15},{"name":9012,"slug":9013,"type":15},{"name":8996,"slug":8997,"type":15},{"slug":9017,"name":9017,"fn":9018,"description":9019,"org":9148,"tags":9149,"stars":28,"repoUrl":29,"updatedAt":9026},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9150,9151,9152,9153],{"name":8970,"slug":8971,"type":15},{"name":13,"slug":14,"type":15},{"name":8960,"slug":8961,"type":15},{"name":9012,"slug":9013,"type":15},{"slug":9028,"name":9028,"fn":9029,"description":9030,"org":9155,"tags":9156,"stars":28,"repoUrl":29,"updatedAt":9039},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9157,9158,9159,9160],{"name":9034,"slug":9035,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":9012,"slug":9013,"type":15},{"slug":9041,"name":9041,"fn":9042,"description":9043,"org":9162,"tags":9163,"stars":28,"repoUrl":29,"updatedAt":9054},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9164,9165,9166,9167],{"name":13,"slug":14,"type":15},{"name":9048,"slug":9049,"type":15},{"name":9051,"slug":9052,"type":15},{"name":9012,"slug":9013,"type":15},38]