@the-inkwell/shared 0.1.98 → 0.1.100

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.
@@ -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.98",
3
+ "version": "0.1.100",
4
4
  "description": "Shared code for Inkwell",
5
5
  "license": "ISC",
6
6
  "author": "Inkwell (Rob Yedlin & Saimon Alam)",
@@ -1,11 +1,11 @@
1
1
  import { ListRequest, ListResponse } from '../../../utils'
2
- import Client, {
2
+ import Clients, {
3
3
  ClientsInitializer,
4
4
  ClientsMutator
5
5
  } from '../../../_schema/Clients'
6
6
  import ClientStatuses from '../../../_schema/ClientStatuses'
7
7
 
8
- export type AdminClient = Client & {
8
+ export type AdminClient = Clients & {
9
9
  _openPositionsCount: number
10
10
  }
11
11
  type AdminClientInitializer = ClientsInitializer
@@ -1,4 +1,4 @@
1
- import Conversations from '../../../_schema/Campaigns'
1
+ import Conversations from '../../../_schema/Conversations'
2
2
  import { type ListRequest, type ListResponse } from '../../../utils'
3
3
 
4
4
  export type AdminConversation = Conversations
@@ -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'