@cellaware/utils 5.4.3 → 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);
@@ -45,16 +45,6 @@ export function chatwmsGetStandardProductVariables(vendor) {
45
45
  let variables = [];
46
46
  const standard = true;
47
47
  switch (vendor) {
48
- case CHATWMS_PRODUCT_VENDOR_CELLAWARE_DEMO:
49
- {
50
- variables.push({
51
- key: '__TEST_VARIABLE__',
52
- exampleValue: `'TEST'`,
53
- disabledValue: `'----'`,
54
- standard
55
- });
56
- }
57
- break;
58
48
  case CHATWMS_PRODUCT_VENDOR_BLUEYONDER_DISCRETE:
59
49
  {
60
50
  variables.push({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "5.4.3",
3
+ "version": "5.4.5",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",