@dereekb/zoho 13.6.10 → 13.6.11
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/nestjs/package.json +5 -5
- package/package.json +4 -4
- package/src/lib/sign/sign.d.ts +10 -0
package/nestjs/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/zoho/nestjs",
|
|
3
|
-
"version": "13.6.
|
|
3
|
+
"version": "13.6.11",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@dereekb/nestjs": "13.6.
|
|
6
|
-
"@dereekb/rxjs": "13.6.
|
|
7
|
-
"@dereekb/util": "13.6.
|
|
8
|
-
"@dereekb/zoho": "13.6.
|
|
5
|
+
"@dereekb/nestjs": "13.6.11",
|
|
6
|
+
"@dereekb/rxjs": "13.6.11",
|
|
7
|
+
"@dereekb/util": "13.6.11",
|
|
8
|
+
"@dereekb/zoho": "13.6.11",
|
|
9
9
|
"@nestjs/common": "^11.1.17",
|
|
10
10
|
"@nestjs/config": "^4.0.3",
|
|
11
11
|
"express": "^5.0.0"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/zoho",
|
|
3
|
-
"version": "13.6.
|
|
3
|
+
"version": "13.6.11",
|
|
4
4
|
"exports": {
|
|
5
5
|
"./nestjs": {
|
|
6
6
|
"module": "./nestjs/index.esm.js",
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
}
|
|
18
18
|
},
|
|
19
19
|
"peerDependencies": {
|
|
20
|
-
"@dereekb/nestjs": "13.6.
|
|
21
|
-
"@dereekb/rxjs": "13.6.
|
|
22
|
-
"@dereekb/util": "13.6.
|
|
20
|
+
"@dereekb/nestjs": "13.6.11",
|
|
21
|
+
"@dereekb/rxjs": "13.6.11",
|
|
22
|
+
"@dereekb/util": "13.6.11",
|
|
23
23
|
"@nestjs/common": "^11.1.17",
|
|
24
24
|
"@nestjs/config": "^4.0.3",
|
|
25
25
|
"express": "^5.0.0",
|
package/src/lib/sign/sign.d.ts
CHANGED
|
@@ -21,8 +21,18 @@ export type ZohoSignActionId = string;
|
|
|
21
21
|
export type ZohoSignFolderId = string;
|
|
22
22
|
/**
|
|
23
23
|
* Identifier of a request type (document category) in Zoho Sign.
|
|
24
|
+
*
|
|
25
|
+
* Also equivalent to ZohoSignTemplateId.
|
|
26
|
+
*
|
|
27
|
+
* @example '286906000001616000'
|
|
24
28
|
*/
|
|
25
29
|
export type ZohoSignRequestTypeId = string;
|
|
30
|
+
/**
|
|
31
|
+
* Identifier of a template in Zoho Sign. Also equivalent to ZohoSignRequestTypeId.
|
|
32
|
+
*
|
|
33
|
+
* @example '286906000001616000'
|
|
34
|
+
*/
|
|
35
|
+
export type ZohoSignTemplateId = ZohoSignRequestTypeId;
|
|
26
36
|
/**
|
|
27
37
|
* Identifier of a field type in Zoho Sign.
|
|
28
38
|
*/
|