@cellaware/utils 8.1.8 → 8.1.9

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,3 +1,5 @@
1
+ export declare const CHATWMS_DATABASE_ID = "chatwms";
2
+ export declare const CLIENT_PARTITION_KEY = "/clientId";
1
3
  export declare const PRODUCT_PARTITION_KEY = "/productId";
2
4
  /**
3
5
  * Default `partitionKey` is '/clientId'
@@ -1,6 +1,8 @@
1
1
  import { cosmosDelete, cosmosInsert, cosmosSelect, cosmosUpdate, cosmosUpsert } from "../../azure/cosmos.js";
2
2
  const DATABASE_ID = 'chatwms';
3
3
  const PARTITION_KEY = '/clientId';
4
+ export const CHATWMS_DATABASE_ID = DATABASE_ID;
5
+ export const CLIENT_PARTITION_KEY = PARTITION_KEY;
4
6
  export const PRODUCT_PARTITION_KEY = '/productId';
5
7
  /**
6
8
  * Default `partitionKey` is '/clientId'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "8.1.8",
3
+ "version": "8.1.9",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",