@nomalism-com/types 0.43.59 → 0.43.61
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.
|
@@ -6,7 +6,7 @@ export interface IPcTags {
|
|
|
6
6
|
id: string;
|
|
7
7
|
text: string;
|
|
8
8
|
}
|
|
9
|
-
interface IPublicOtherDocument {
|
|
9
|
+
export interface IPublicOtherDocument {
|
|
10
10
|
chat_subscriber_id: string;
|
|
11
11
|
chat_document_header_id: string;
|
|
12
12
|
label: string;
|
|
@@ -17,7 +17,7 @@ interface IPublicOtherDocument {
|
|
|
17
17
|
pc_created_by: string;
|
|
18
18
|
closed: boolean;
|
|
19
19
|
}
|
|
20
|
-
interface IPublicDocument {
|
|
20
|
+
export interface IPublicDocument {
|
|
21
21
|
chat_document_header_id: string;
|
|
22
22
|
document_name: string;
|
|
23
23
|
store_operator_name: string;
|
|
@@ -59,4 +59,3 @@ export interface IRepository {
|
|
|
59
59
|
publicUpdateDocumentHeaderNote: (selector: IShared.IFindByIdRequest, data: PublicDocumentHeaderNoteUpdateRequest[]) => Promise<PublicDocumentHeaderNote[]>;
|
|
60
60
|
}
|
|
61
61
|
export type IController = IShared.IEntityWithUserToken<IRepository>;
|
|
62
|
-
export {};
|
|
@@ -17,7 +17,7 @@ export interface IFindSubscribedDocumentHeadersRequest {
|
|
|
17
17
|
}
|
|
18
18
|
export type IPersona = Pick<Persona, 'external' | 'name' | 'email' | 'telephone'>;
|
|
19
19
|
export type IEntityWithPersona = Pick<ChatSubscriber, 'id' | 'persona_id' | 'chat_document_header_id'> & IPersona;
|
|
20
|
-
export interface IEntityWithPersonaAndSubscriptions extends
|
|
20
|
+
export interface IEntityWithPersonaAndSubscriptions extends IPersona {
|
|
21
21
|
subscriptions: Pick<Entity, 'id' | 'chat_document_header_id'>[];
|
|
22
22
|
}
|
|
23
23
|
export interface IRepository {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nomalism-com/types",
|
|
3
3
|
"description": "A nomalism package with all necessary types and validations for developing APIs",
|
|
4
|
-
"version": "0.43.
|
|
4
|
+
"version": "0.43.61",
|
|
5
5
|
"author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"type": "module",
|