@whitewall/blip-warehouse 0.0.2 → 0.0.3

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,5 +1,5 @@
1
1
  import type { CreateTokenRequest, CreateTokenResponse, GetMessagesOptions, HistoricalIngestRequest, HistoricalIngestResponse, MessagesByIdentityResult, SearchRequest, SearchResult } from './types';
2
- export declare class WarehouseClient {
2
+ export declare class BlipWarehouseClient {
3
3
  private readonly baseUrl;
4
4
  private readonly token;
5
5
  constructor(config: {
@@ -1,2 +1,2 @@
1
- export { WarehouseClient } from './client';
1
+ export { BlipWarehouseClient } from './client';
2
2
  export type { ContactsCountResponse, GetMessagesOptions, IndexedContact, IndexedMessage, MessageRow, MessagesByIdentityResult, PaginationCursor, SearchRequest, SearchResult, } from './types';
package/dist/index.cjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  //#region src/client.ts
3
- var WarehouseClient = class {
3
+ var BlipWarehouseClient = class {
4
4
  baseUrl;
5
5
  token;
6
6
  constructor(config) {
@@ -59,4 +59,4 @@ var WarehouseClient = class {
59
59
  };
60
60
 
61
61
  //#endregion
62
- exports.WarehouseClient = WarehouseClient;
62
+ exports.BlipWarehouseClient = BlipWarehouseClient;
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  //#region src/client.ts
2
- var WarehouseClient = class {
2
+ var BlipWarehouseClient = class {
3
3
  baseUrl;
4
4
  token;
5
5
  constructor(config) {
@@ -58,4 +58,4 @@ var WarehouseClient = class {
58
58
  };
59
59
 
60
60
  //#endregion
61
- export { WarehouseClient };
61
+ export { BlipWarehouseClient };
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@whitewall/blip-warehouse",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",
7
- "types": "./dist/index.d.ts",
7
+ "types": "./dist/api/src/index.d.ts",
8
8
  "exports": {
9
9
  ".": {
10
10
  "import": "./dist/index.js",
11
11
  "require": "./dist/index.cjs",
12
- "types": "./dist/index.d.ts"
12
+ "types": "./dist/api/src/index.d.ts"
13
13
  }
14
14
  },
15
15
  "files": [