@the-inkwell/shared 0.1.97 → 0.1.99

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.
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -16,6 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./campaigns"), exports);
18
18
  __exportStar(require("./candidacies"), exports);
19
+ __exportStar(require("./conversations"), exports);
19
20
  __exportStar(require("./clients"), exports);
20
21
  __exportStar(require("./persons"), exports);
21
22
  __exportStar(require("./positions"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@the-inkwell/shared",
3
- "version": "0.1.97",
3
+ "version": "0.1.99",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin & Saimon Alam)",
@@ -0,0 +1,14 @@
1
+ import Conversations from '../../../_schema/Campaigns'
2
+ import { type ListRequest, type ListResponse } from '../../../utils'
3
+
4
+ export type AdminConversation = Conversations
5
+
6
+ // detail
7
+
8
+ export type AdminConversationQueryParams = Pick<AdminConversation, 'id'>
9
+ export type AdminConversationResponse = AdminConversation
10
+
11
+ // list
12
+
13
+ export type AdminConversationListInput = ListRequest
14
+ export type AdminConversationListResponse = ListResponse<AdminConversation>
@@ -1,5 +1,6 @@
1
1
  export * from './campaigns'
2
2
  export * from './candidacies'
3
+ export * from './conversations'
3
4
  export * from './clients'
4
5
  export * from './persons'
5
6
  export * from './positions'