@nomalism-com/types 0.39.0 → 0.39.2
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
|
@@ -4375,6 +4375,7 @@ __export(route_schema_exports78, {
|
|
|
4375
4375
|
FindClientOrProviderQueryValidate: () => FindClientOrProviderQueryValidate,
|
|
4376
4376
|
createBody: () => createBody56,
|
|
4377
4377
|
deleteQueryValidate: () => deleteQueryValidate,
|
|
4378
|
+
findForGmailParamsValidate: () => findForGmailParamsValidate,
|
|
4378
4379
|
findQuery: () => findQuery31,
|
|
4379
4380
|
getBasicSearchParamsValidate: () => getBasicSearchParamsValidate,
|
|
4380
4381
|
updateBody: () => updateBody50
|
|
@@ -4443,6 +4444,11 @@ var findClientOrProviderQueryKeys = {
|
|
|
4443
4444
|
user_type: joi79.string().valid("client", "provider").optional()
|
|
4444
4445
|
};
|
|
4445
4446
|
var FindClientOrProviderQueryValidate = joi79.object().keys(findClientOrProviderQueryKeys).messages(messages);
|
|
4447
|
+
var findForGmailParamsKeys = {
|
|
4448
|
+
email: emailSchema.required(),
|
|
4449
|
+
owner_id: joi79.string().uuid().required()
|
|
4450
|
+
};
|
|
4451
|
+
var findForGmailParamsValidate = joi79.object().keys(findForGmailParamsKeys).messages(messages);
|
|
4446
4452
|
|
|
4447
4453
|
// src/modules/integration/projectInfo/interfaces.ts
|
|
4448
4454
|
var interfaces_exports39 = {};
|
package/dist/index.js
CHANGED
|
@@ -4375,6 +4375,7 @@ __export(route_schema_exports78, {
|
|
|
4375
4375
|
FindClientOrProviderQueryValidate: () => FindClientOrProviderQueryValidate,
|
|
4376
4376
|
createBody: () => createBody56,
|
|
4377
4377
|
deleteQueryValidate: () => deleteQueryValidate,
|
|
4378
|
+
findForGmailParamsValidate: () => findForGmailParamsValidate,
|
|
4378
4379
|
findQuery: () => findQuery31,
|
|
4379
4380
|
getBasicSearchParamsValidate: () => getBasicSearchParamsValidate,
|
|
4380
4381
|
updateBody: () => updateBody50
|
|
@@ -4443,6 +4444,11 @@ var findClientOrProviderQueryKeys = {
|
|
|
4443
4444
|
user_type: joi79.string().valid("client", "provider").optional()
|
|
4444
4445
|
};
|
|
4445
4446
|
var FindClientOrProviderQueryValidate = joi79.object().keys(findClientOrProviderQueryKeys).messages(messages);
|
|
4447
|
+
var findForGmailParamsKeys = {
|
|
4448
|
+
email: emailSchema.required(),
|
|
4449
|
+
owner_id: joi79.string().uuid().required()
|
|
4450
|
+
};
|
|
4451
|
+
var findForGmailParamsValidate = joi79.object().keys(findForGmailParamsKeys).messages(messages);
|
|
4446
4452
|
|
|
4447
4453
|
// src/modules/integration/projectInfo/interfaces.ts
|
|
4448
4454
|
var interfaces_exports39 = {};
|
|
@@ -6,3 +6,4 @@ export declare const getBasicSearchParamsValidate: joi.ObjectSchema<any>;
|
|
|
6
6
|
export declare const deleteQueryValidate: joi.ObjectSchema<any>;
|
|
7
7
|
export declare const FindByEmailQueryValidate: joi.ObjectSchema<any>;
|
|
8
8
|
export declare const FindClientOrProviderQueryValidate: joi.ObjectSchema<any>;
|
|
9
|
+
export declare const findForGmailParamsValidate: joi.ObjectSchema<any>;
|
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.39.
|
|
4
|
+
"version": "0.39.2",
|
|
5
5
|
"author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"type": "module",
|