@nomalism-com/types 0.40.112 → 0.40.114
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/index.cjs
CHANGED
|
@@ -3775,7 +3775,7 @@ var getOrSetPrintersBodyKeys = {
|
|
|
3775
3775
|
printers_a4: joi63.array().items(
|
|
3776
3776
|
joi63.object({
|
|
3777
3777
|
device_os_name: joi63.string().required(),
|
|
3778
|
-
name: joi63.string().required()
|
|
3778
|
+
name: joi63.string().allow("", null).empty("").required()
|
|
3779
3779
|
})
|
|
3780
3780
|
),
|
|
3781
3781
|
printers_pos: joi63.array().items(
|
package/dist/index.js
CHANGED
|
@@ -3775,7 +3775,7 @@ var getOrSetPrintersBodyKeys = {
|
|
|
3775
3775
|
printers_a4: joi63.array().items(
|
|
3776
3776
|
joi63.object({
|
|
3777
3777
|
device_os_name: joi63.string().required(),
|
|
3778
|
-
name: joi63.string().required()
|
|
3778
|
+
name: joi63.string().allow("", null).empty("").required()
|
|
3779
3779
|
})
|
|
3780
3780
|
),
|
|
3781
3781
|
printers_pos: joi63.array().items(
|
|
@@ -26,7 +26,7 @@ export interface ICreateRequest extends Omit<Entity, 'created_at' | 'updated_at'
|
|
|
26
26
|
}
|
|
27
27
|
export interface ICreateResponse {
|
|
28
28
|
document_header_id: string;
|
|
29
|
-
chat_subscriber_id
|
|
29
|
+
chat_subscriber_id?: string;
|
|
30
30
|
}
|
|
31
31
|
export declare const IProjectInfoOriginTypeEnum: {
|
|
32
32
|
website: 'website';
|
|
@@ -21,7 +21,7 @@ export interface IFindByIdResponse extends IFindByOwnerResponse {
|
|
|
21
21
|
document_header_id: string;
|
|
22
22
|
}[];
|
|
23
23
|
}
|
|
24
|
-
export interface IFindChatSubscriberPersona extends Pick<Persona, 'external' | 'name' | 'email' | 'telephone'> {
|
|
24
|
+
export interface IFindChatSubscriberPersona extends Pick<Persona, 'id' | 'external' | 'name' | 'email' | 'telephone'> {
|
|
25
25
|
contact: boolean;
|
|
26
26
|
}
|
|
27
27
|
export interface IFindChatSubscriberResponse {
|
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.40.
|
|
4
|
+
"version": "0.40.114",
|
|
5
5
|
"author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"type": "module",
|