@cellaware/utils 3.0.0 → 3.0.2

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,4 +1,4 @@
1
- import { ChatWMSUserData } from "./user";
1
+ import { ChatWMSUserData } from "./user.js";
2
2
  export interface ChatWMSApiInput {
3
3
  userData: ChatWMSUserData;
4
4
  data: any;
@@ -1,4 +1,4 @@
1
- import { chatwmsInitUserData } from "./user";
1
+ import { chatwmsInitUserData } from "./user.js";
2
2
  export function chatwmsInitApiInput() {
3
3
  return {
4
4
  userData: chatwmsInitUserData(),
@@ -1,4 +1,4 @@
1
- export declare function getStorageBlobId(clientId: string, blobName: string): string;
1
+ export declare function chatwmsStorageGetBlobId(clientId: string, blobName: string): string;
2
2
  export declare function chatwmsStorageContainerCreate(): Promise<void>;
3
3
  export declare function chatwmsStorageBlobUpload(blobId: string, data: any): Promise<void>;
4
4
  export declare function chatwmsStorageBlobDelete(blobId: string): Promise<void>;
@@ -1,6 +1,6 @@
1
1
  import { storageBlobDelete, storageBlobDownload, storageBlobUpload, storageContainerCreate } from "../../azure/storage.js";
2
2
  const CONTAINER_CLIENT_ID = 'chatwms';
3
- export function getStorageBlobId(clientId, blobName) {
3
+ export function chatwmsStorageGetBlobId(clientId, blobName) {
4
4
  return clientId.replace('_', '-') + '-' + blobName;
5
5
  }
6
6
  export async function chatwmsStorageContainerCreate() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "3.0.0",
3
+ "version": "3.0.2",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",