@cellaware/utils 5.4.4 → 5.4.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  import { storageBlobDelete, storageBlobDownload, storageBlobUpload, storageContainerCreate } from "../../azure/storage.js";
2
2
  const CONTAINER_CLIENT_ID = 'chatwms';
3
3
  export function chatwmsStorageGetBlobId(clientId, blobName) {
4
- return clientId.replace('_', '-') + '-' + blobName;
4
+ return clientId.replaceAll('_', '-') + '-' + blobName;
5
5
  }
6
6
  export async function chatwmsStorageContainerCreate() {
7
7
  return storageContainerCreate(CONTAINER_CLIENT_ID);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "5.4.4",
3
+ "version": "5.4.5",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",