@nomalism-com/types 0.46.18 → 0.46.20
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
|
@@ -5303,7 +5303,8 @@ __export(route_schema_exports100, {
|
|
|
5303
5303
|
import joi101 from "joi";
|
|
5304
5304
|
var findByDocumentLineStateQueryKeys = {
|
|
5305
5305
|
user_type: joi101.string().valid(...documentTypeUserTypes).required(),
|
|
5306
|
-
document_line_state: joi101.string().required()
|
|
5306
|
+
document_line_state: joi101.string().required(),
|
|
5307
|
+
search_value: joi101.string().allow(null).empty("").optional()
|
|
5307
5308
|
};
|
|
5308
5309
|
var findByDocumentLineStateQuery = joi101.object().keys(findByDocumentLineStateQueryKeys).messages(messages);
|
|
5309
5310
|
var findByStateQueryKeys = {
|
package/dist/index.js
CHANGED
|
@@ -5303,7 +5303,8 @@ __export(route_schema_exports100, {
|
|
|
5303
5303
|
import joi101 from "joi";
|
|
5304
5304
|
var findByDocumentLineStateQueryKeys = {
|
|
5305
5305
|
user_type: joi101.string().valid(...documentTypeUserTypes).required(),
|
|
5306
|
-
document_line_state: joi101.string().required()
|
|
5306
|
+
document_line_state: joi101.string().required(),
|
|
5307
|
+
search_value: joi101.string().allow(null).empty("").optional()
|
|
5307
5308
|
};
|
|
5308
5309
|
var findByDocumentLineStateQuery = joi101.object().keys(findByDocumentLineStateQueryKeys).messages(messages);
|
|
5309
5310
|
var findByStateQueryKeys = {
|
|
@@ -10,13 +10,13 @@ export declare const ISmsSenderStatsEnum: {
|
|
|
10
10
|
export type ISmsSenderStats = (typeof ISmsSenderStatsEnum)[keyof typeof ISmsSenderStatsEnum];
|
|
11
11
|
export declare const timeSheetRecordTypes: ("PENDING" | "PROCESSING" | "SENT" | "FAILED")[];
|
|
12
12
|
export interface ICreateRequest {
|
|
13
|
-
|
|
13
|
+
telephone: string;
|
|
14
14
|
message: string;
|
|
15
15
|
google_calendar_id: string;
|
|
16
16
|
}
|
|
17
17
|
export interface IClaimResponse {
|
|
18
18
|
id: string;
|
|
19
|
-
|
|
19
|
+
telephone: string;
|
|
20
20
|
message: string;
|
|
21
21
|
status: string;
|
|
22
22
|
}
|
|
@@ -26,7 +26,7 @@ export interface IResultRequest {
|
|
|
26
26
|
}
|
|
27
27
|
export interface IFindResponse {
|
|
28
28
|
id: string;
|
|
29
|
-
|
|
29
|
+
telephone: string;
|
|
30
30
|
message: string;
|
|
31
31
|
status: string;
|
|
32
32
|
error?: string;
|
|
@@ -17,6 +17,7 @@ export interface IFindByStateResponse {
|
|
|
17
17
|
export interface IFindByDocumentLineStateRequest {
|
|
18
18
|
user_type: IDocumentTypeUserType;
|
|
19
19
|
document_line_state: string;
|
|
20
|
+
search_value?: string | null;
|
|
20
21
|
}
|
|
21
22
|
export interface IFindByDocumentLineStateResponse {
|
|
22
23
|
document_header_id: string;
|
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.46.
|
|
4
|
+
"version": "0.46.20",
|
|
5
5
|
"author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"type": "module",
|