@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.
- package/dist/api/src/client.d.ts +1 -1
- package/dist/api/src/index.d.ts +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.js +2 -2
- package/package.json +3 -3
package/dist/api/src/client.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { CreateTokenRequest, CreateTokenResponse, GetMessagesOptions, HistoricalIngestRequest, HistoricalIngestResponse, MessagesByIdentityResult, SearchRequest, SearchResult } from './types';
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class BlipWarehouseClient {
|
|
3
3
|
private readonly baseUrl;
|
|
4
4
|
private readonly token;
|
|
5
5
|
constructor(config: {
|
package/dist/api/src/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export {
|
|
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
|
|
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.
|
|
62
|
+
exports.BlipWarehouseClient = BlipWarehouseClient;
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
//#region src/client.ts
|
|
2
|
-
var
|
|
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 {
|
|
61
|
+
export { BlipWarehouseClient };
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@whitewall/blip-warehouse",
|
|
3
|
-
"version": "0.0.
|
|
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": [
|