@dereekb/zoho 13.43.0 → 14.0.1
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/cli/index.js +7 -7
- package/cli/package.json +7 -7
- package/index.esm.js +245 -559
- package/nestjs/index.esm.js +102 -185
- package/nestjs/package.json +8 -8
- package/nestjs/src/lib/zoho.config.d.ts +0 -9
- package/package.json +11 -11
- package/src/lib/accounts/accounts.config.d.ts +0 -4
- package/src/lib/crm/crm.api.d.ts +1 -13
- package/src/lib/crm/crm.config.d.ts +0 -4
- package/src/lib/crm/crm.d.ts +0 -6
- package/src/lib/crm/crm.notes.d.ts +0 -4
- package/src/lib/recruit/recruit.api.d.ts +1 -93
- package/src/lib/recruit/recruit.api.notes.d.ts +0 -24
- package/src/lib/recruit/recruit.api.tags.d.ts +0 -24
- package/src/lib/recruit/recruit.config.d.ts +0 -4
- package/src/lib/recruit/recruit.d.ts +0 -10
- package/src/lib/recruit/recruit.error.api.d.ts +0 -4
- package/src/lib/recruit/recruit.notes.d.ts +0 -4
- package/src/lib/sign/sign.config.d.ts +0 -4
- package/src/lib/zoho.limit.d.ts +0 -4
package/nestjs/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/zoho/nestjs",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "14.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"peerDependencies": {
|
|
6
|
-
"@dereekb/nestjs": "
|
|
7
|
-
"@dereekb/rxjs": "
|
|
8
|
-
"@dereekb/util": "
|
|
9
|
-
"@dereekb/zoho": "
|
|
10
|
-
"@nestjs/common": "^
|
|
11
|
-
"@nestjs/config": "^
|
|
6
|
+
"@dereekb/nestjs": "14.0.1",
|
|
7
|
+
"@dereekb/rxjs": "14.0.1",
|
|
8
|
+
"@dereekb/util": "14.0.1",
|
|
9
|
+
"@dereekb/zoho": "14.0.1",
|
|
10
|
+
"@nestjs/common": "^12.0.1",
|
|
11
|
+
"@nestjs/config": "^12.0.0",
|
|
12
12
|
"express": "^5.2.1"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@nestjs/testing": "^
|
|
15
|
+
"@nestjs/testing": "^12.0.1",
|
|
16
16
|
"date-fns": "^4.1.0"
|
|
17
17
|
},
|
|
18
18
|
"exports": {
|
|
@@ -34,15 +34,6 @@ export interface ReadZohoConfigFromConfigServiceConfig {
|
|
|
34
34
|
* @returns ZohoConfig read from environment variables
|
|
35
35
|
*/
|
|
36
36
|
export declare function readZohoConfigFromConfigService(config: ReadZohoConfigFromConfigServiceConfig): ZohoConfig;
|
|
37
|
-
/**
|
|
38
|
-
* @deprecated Use the config object overload instead.
|
|
39
|
-
*
|
|
40
|
-
* @param configService - NestJS ConfigService to read environment variables from
|
|
41
|
-
* @param servicePrefix - optional prefix to scope config keys per service
|
|
42
|
-
* @param assertValid - whether to throw if required config values are missing
|
|
43
|
-
* @returns ZohoConfig read from environment variables
|
|
44
|
-
*/
|
|
45
|
-
export declare function readZohoConfigFromConfigService(configService: ConfigService, servicePrefix?: string, assertValid?: boolean): ZohoConfig;
|
|
46
37
|
/**
|
|
47
38
|
* Asserts that the provided ZohoConfig has a valid API URL configured.
|
|
48
39
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/zoho",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "14.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"zoho-cli": "cli/index.js"
|
|
@@ -22,21 +22,21 @@
|
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@dereekb/date": "
|
|
26
|
-
"@dereekb/dbx-cli": "
|
|
27
|
-
"@dereekb/firebase": "
|
|
28
|
-
"@dereekb/model": "
|
|
29
|
-
"@dereekb/nestjs": "
|
|
30
|
-
"@dereekb/rxjs": "
|
|
31
|
-
"@dereekb/util": "
|
|
32
|
-
"@nestjs/common": "^
|
|
33
|
-
"@nestjs/config": "^
|
|
25
|
+
"@dereekb/date": "14.0.1",
|
|
26
|
+
"@dereekb/dbx-cli": "14.0.1",
|
|
27
|
+
"@dereekb/firebase": "14.0.1",
|
|
28
|
+
"@dereekb/model": "14.0.1",
|
|
29
|
+
"@dereekb/nestjs": "14.0.1",
|
|
30
|
+
"@dereekb/rxjs": "14.0.1",
|
|
31
|
+
"@dereekb/util": "14.0.1",
|
|
32
|
+
"@nestjs/common": "^12.0.1",
|
|
33
|
+
"@nestjs/config": "^12.0.0",
|
|
34
34
|
"express": "^5.2.1",
|
|
35
35
|
"make-error": "^1.3.6",
|
|
36
36
|
"yargs": "^18.0.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@nestjs/testing": "^
|
|
39
|
+
"@nestjs/testing": "^12.0.1",
|
|
40
40
|
"date-fns": "^4.1.0"
|
|
41
41
|
},
|
|
42
42
|
"module": "./index.esm.js",
|
|
@@ -112,7 +112,3 @@ export interface ZohoAccountsContext {
|
|
|
112
112
|
export interface ZohoAccountsContextRef {
|
|
113
113
|
readonly accountsContext: ZohoAccountsContext;
|
|
114
114
|
}
|
|
115
|
-
/**
|
|
116
|
-
* @deprecated use ZohoAccountsFetchFactoryParams instead.
|
|
117
|
-
*/
|
|
118
|
-
export type ZohoAccountsFetchFactoryInput = ZohoAccountsFetchFactoryParams;
|
package/src/lib/crm/crm.api.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type ZohoDataArrayResultRef, type ZohoPageFilter, type ZohoPageResult } from './../zoho.api.page';
|
|
2
|
-
import { type FetchFileResponse, type FetchJsonBody, type FetchJsonInput, type FetchPage, type FetchPageFactory, type FetchPageFactoryOptions
|
|
2
|
+
import { type FetchFileResponse, type FetchJsonBody, type FetchJsonInput, type FetchPage, type FetchPageFactory, type FetchPageFactoryOptions } from '@dereekb/util/fetch';
|
|
3
3
|
import { type ZohoCrmConfigApiUrlInput, type ZohoCrmContext } from './crm.config';
|
|
4
4
|
import { type ZohoCrmCommaSeparateFieldNames, type ZohoCrmCustomViewId, type ZohoCrmDraftOrSaveState, type ZohoCrmFieldName, type ZohoCrmModuleNameRef, type ZohoCrmChangeObjectDetails, type ZohoCrmRecord, type ZohoCrmRecordId, type ZohoCrmTerritoryId, type ZohoCrmTrueFalseBoth, type ZohoCrmRestFunctionApiName, type ZohoCrmUserId, type ZohoCrmModuleName, type ZohoCrmRecordEmailMetadata, type ZohoCrmRecordAttachmentMetadata, type ZohoCrmAttachmentRecordId, type ZohoCrmAttachmentCategoryId, type KnownZohoCrmAttachmentCategoryName } from './crm';
|
|
5
5
|
import { type ZohoCrmSearchRecordsCriteriaTreeElement } from './crm.criteria';
|
|
@@ -467,10 +467,6 @@ export interface ZohoCrmGetRelatedRecordsRequest extends ZohoCrmGetRecordByIdInp
|
|
|
467
467
|
* For example, providing this value will return the Notes with these ids when searching on related Notes for the primary/target record.
|
|
468
468
|
*/
|
|
469
469
|
readonly ids?: Maybe<ArrayOrValue<ZohoCrmRecordId>>;
|
|
470
|
-
/**
|
|
471
|
-
* @deprecated set variables on request object directly instead of using this filter.
|
|
472
|
-
*/
|
|
473
|
-
readonly filter?: Maybe<ZohoCrmGetRelatedRecordsPageFilter>;
|
|
474
470
|
}
|
|
475
471
|
/**
|
|
476
472
|
* A variant of ZohoCrmGetRelatedRecordsRequest that includes a required fields property.
|
|
@@ -981,11 +977,3 @@ export interface ZohoCrmMultiRecordResultEntry<I, O> {
|
|
|
981
977
|
*/
|
|
982
978
|
readonly result: O;
|
|
983
979
|
}
|
|
984
|
-
/**
|
|
985
|
-
* @deprecated use makeUrlSearchParams instead.
|
|
986
|
-
*/
|
|
987
|
-
export declare const zohoCrmUrlSearchParams: typeof makeUrlSearchParams;
|
|
988
|
-
/**
|
|
989
|
-
* @deprecated use ZohoCrmGetRelatedRecordsPageFilter instead.
|
|
990
|
-
*/
|
|
991
|
-
export type ZohoCrmGetNotesPageFilter = ZohoCrmGetRelatedRecordsPageFilter;
|
|
@@ -55,7 +55,3 @@ export interface ZohoCrmContext extends ZohoRateLimiterRef {
|
|
|
55
55
|
export interface ZohoCrmContextRef {
|
|
56
56
|
readonly crmContext: ZohoCrmContext;
|
|
57
57
|
}
|
|
58
|
-
/**
|
|
59
|
-
* @deprecated use ZohoCrmFetchFactoryParams instead.
|
|
60
|
-
*/
|
|
61
|
-
export type ZohoCrmFetchFactoryInput = ZohoCrmFetchFactoryParams;
|
package/src/lib/crm/crm.d.ts
CHANGED
|
@@ -317,9 +317,3 @@ export interface ZohoCrmRecordAttachmentMetadata {
|
|
|
317
317
|
*/
|
|
318
318
|
$link_docs: number;
|
|
319
319
|
}
|
|
320
|
-
/**
|
|
321
|
-
* Update details returned by the server for an updated record.
|
|
322
|
-
*
|
|
323
|
-
* @deprecated use ZohoCrmChangeObjectDetails instead.
|
|
324
|
-
*/
|
|
325
|
-
export type ZohoCrmRecordUpdateDetails = ZohoCrmChangeObjectDetails;
|
|
@@ -78,7 +78,3 @@ export interface ZohoCrmNote extends ZohoCrmNoteData, UniqueModelWithId {
|
|
|
78
78
|
* A note associated with a specific CRM record. Currently identical to {@link ZohoCrmNote}.
|
|
79
79
|
*/
|
|
80
80
|
export type ZohoCrmRecordNote = ZohoCrmNote;
|
|
81
|
-
/**
|
|
82
|
-
* @deprecated use NewZohoCrmNewNoteData instead.
|
|
83
|
-
*/
|
|
84
|
-
export type NewZohoCrmNewNoteData = NewZohoCrmNoteData;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type ZohoDataArrayResultRef, type ZohoPageFilter, type ZohoPageResult } from './../zoho.api.page';
|
|
2
|
-
import { type FetchFileResponse, type FetchJsonBody, type FetchJsonInput, type FetchPage, type FetchPageFactory, type FetchPageFactoryOptions
|
|
2
|
+
import { type FetchFileResponse, type FetchJsonBody, type FetchJsonInput, type FetchPage, type FetchPageFactory, type FetchPageFactoryOptions } from '@dereekb/util/fetch';
|
|
3
3
|
import { type ZohoRecruitConfigApiUrlInput, type ZohoRecruitContext } from './recruit.config';
|
|
4
4
|
import { type ZohoRecruitCommaSeparateFieldNames, type ZohoRecruitCustomViewId, type ZohoRecruitDraftOrSaveState, type ZohoRecruitFieldName, type ZohoRecruitModuleNameRef, type ZohoRecruitChangeObjectDetails, type ZohoRecruitRecord, type ZohoRecruitRecordId, type ZohoRecruitTerritoryId, type ZohoRecruitTrueFalseBoth, type ZohoRecruitRestFunctionApiName, type ZohoRecruitUserId, type ZohoRecruitModuleName, type ZohoRecruitRecordEmailMetadata, type ZohoRecruitRecordAttachmentMetadata, type ZohoRecruitAttachmentRecordId, type ZohoRecruitAttachmentCategoryId, type KnownZohoRecruitAttachmentCategoryName } from './recruit';
|
|
5
5
|
import { type ZohoRecruitSearchRecordsCriteriaTreeElement } from './recruit.criteria';
|
|
@@ -474,10 +474,6 @@ export interface ZohoRecruitGetRelatedRecordsRequest extends ZohoRecruitGetRecor
|
|
|
474
474
|
* For example, providing this value will return the Notes with these ids when searching on related Notes for the primary/target record.
|
|
475
475
|
*/
|
|
476
476
|
readonly ids?: Maybe<ArrayOrValue<ZohoRecruitRecordId>>;
|
|
477
|
-
/**
|
|
478
|
-
* @deprecated set variables on request object directly instead of using this filter.
|
|
479
|
-
*/
|
|
480
|
-
readonly filter?: Maybe<ZohoRecruitGetRelatedRecordsPageFilter>;
|
|
481
477
|
}
|
|
482
478
|
/**
|
|
483
479
|
* Paginated response containing related records and page metadata.
|
|
@@ -1071,91 +1067,3 @@ export interface ZohoRecruitMultiRecordResultEntry<I, O> {
|
|
|
1071
1067
|
*/
|
|
1072
1068
|
readonly result: O;
|
|
1073
1069
|
}
|
|
1074
|
-
/**
|
|
1075
|
-
* @deprecated use makeUrlSearchParams instead.
|
|
1076
|
-
*/
|
|
1077
|
-
export declare const zohoRecruitUrlSearchParams: typeof makeUrlSearchParams;
|
|
1078
|
-
/**
|
|
1079
|
-
* @deprecated use ZohoRecruitGetRelatedRecordsPageFilter instead.
|
|
1080
|
-
*/
|
|
1081
|
-
export type ZohoRecruitGetNotesPageFilter = ZohoRecruitGetRelatedRecordsPageFilter;
|
|
1082
|
-
/**
|
|
1083
|
-
* @deprecated Use zohoRecruitInsertRecord instead.
|
|
1084
|
-
*/
|
|
1085
|
-
export declare const insertRecord: typeof zohoRecruitInsertRecord;
|
|
1086
|
-
/**
|
|
1087
|
-
* @deprecated Use zohoRecruitUpdateRecord instead.
|
|
1088
|
-
*/
|
|
1089
|
-
export declare const updateRecord: typeof zohoRecruitUpdateRecord;
|
|
1090
|
-
/**
|
|
1091
|
-
* @deprecated Use zohoRecruitUpsertRecord instead.
|
|
1092
|
-
*/
|
|
1093
|
-
export declare const upsertRecord: typeof zohoRecruitUpsertRecord;
|
|
1094
|
-
/**
|
|
1095
|
-
* @deprecated Use zohoRecruitDeleteRecord instead.
|
|
1096
|
-
*/
|
|
1097
|
-
export declare const deleteRecord: typeof zohoRecruitDeleteRecord;
|
|
1098
|
-
/**
|
|
1099
|
-
* @deprecated Use zohoRecruitGetRecordById instead.
|
|
1100
|
-
*/
|
|
1101
|
-
export declare const getRecordById: typeof zohoRecruitGetRecordById;
|
|
1102
|
-
/**
|
|
1103
|
-
* @deprecated Use zohoRecruitGetRecords instead.
|
|
1104
|
-
*/
|
|
1105
|
-
export declare const getRecords: typeof zohoRecruitGetRecords;
|
|
1106
|
-
/**
|
|
1107
|
-
* @deprecated Use zohoRecruitSearchRecords instead.
|
|
1108
|
-
*/
|
|
1109
|
-
export declare const searchRecords: typeof zohoRecruitSearchRecords;
|
|
1110
|
-
/**
|
|
1111
|
-
* @deprecated Use zohoRecruitSearchRecordsPageFactory instead.
|
|
1112
|
-
*/
|
|
1113
|
-
export declare const searchRecordsPageFactory: typeof zohoRecruitSearchRecordsPageFactory;
|
|
1114
|
-
/**
|
|
1115
|
-
* @deprecated Use zohoRecruitGetRelatedRecordsFunctionFactory instead.
|
|
1116
|
-
*/
|
|
1117
|
-
export declare const getRelatedRecordsFunctionFactory: typeof zohoRecruitGetRelatedRecordsFunctionFactory;
|
|
1118
|
-
/**
|
|
1119
|
-
* @deprecated Use zohoRecruitGetEmailsForRecord instead.
|
|
1120
|
-
*/
|
|
1121
|
-
export declare const getEmailsForRecord: typeof zohoRecruitGetEmailsForRecord;
|
|
1122
|
-
/**
|
|
1123
|
-
* @deprecated Use zohoRecruitGetEmailsForRecordPageFactory instead.
|
|
1124
|
-
*/
|
|
1125
|
-
export declare const getEmailsForRecordPageFactory: typeof zohoRecruitGetEmailsForRecordPageFactory;
|
|
1126
|
-
/**
|
|
1127
|
-
* @deprecated Use zohoRecruitGetAttachmentsForRecord instead.
|
|
1128
|
-
*/
|
|
1129
|
-
export declare const getAttachmentsForRecord: typeof zohoRecruitGetAttachmentsForRecord;
|
|
1130
|
-
/**
|
|
1131
|
-
* @deprecated Use zohoRecruitGetAttachmentsForRecordPageFactory instead.
|
|
1132
|
-
*/
|
|
1133
|
-
export declare const getAttachmentsForRecordPageFactory: typeof zohoRecruitGetAttachmentsForRecordPageFactory;
|
|
1134
|
-
/**
|
|
1135
|
-
* @deprecated Use zohoRecruitUploadAttachmentForRecord instead.
|
|
1136
|
-
*/
|
|
1137
|
-
export declare const uploadAttachmentForRecord: typeof zohoRecruitUploadAttachmentForRecord;
|
|
1138
|
-
/**
|
|
1139
|
-
* @deprecated Use zohoRecruitDownloadAttachmentForRecord instead.
|
|
1140
|
-
*/
|
|
1141
|
-
export declare const downloadAttachmentForRecord: typeof zohoRecruitDownloadAttachmentForRecord;
|
|
1142
|
-
/**
|
|
1143
|
-
* @deprecated Use zohoRecruitDeleteAttachmentFromRecord instead.
|
|
1144
|
-
*/
|
|
1145
|
-
export declare const deleteAttachmentFromRecord: typeof zohoRecruitDeleteAttachmentFromRecord;
|
|
1146
|
-
/**
|
|
1147
|
-
* @deprecated Use zohoRecruitExecuteRestApiFunction instead.
|
|
1148
|
-
*/
|
|
1149
|
-
export declare const executeRestApiFunction: typeof zohoRecruitExecuteRestApiFunction;
|
|
1150
|
-
/**
|
|
1151
|
-
* @deprecated Use ZohoRecruitSearchRecordsPageFactory instead.
|
|
1152
|
-
*/
|
|
1153
|
-
export type SearchRecordsPageFactory = ZohoRecruitSearchRecordsPageFactory;
|
|
1154
|
-
/**
|
|
1155
|
-
* @deprecated Use ZohoRecruitGetEmailsForRecordPageFactory instead.
|
|
1156
|
-
*/
|
|
1157
|
-
export type GetEmailsForRecordPageFactory = ZohoRecruitGetEmailsForRecordPageFactory;
|
|
1158
|
-
/**
|
|
1159
|
-
* @deprecated Use ZohoRecruitGetAttachmentsForRecordPageFactory instead.
|
|
1160
|
-
*/
|
|
1161
|
-
export type GetAttachmentsForRecordPageFactory = ZohoRecruitGetAttachmentsForRecordPageFactory;
|
|
@@ -174,27 +174,3 @@ export type ZohoRecruitCreateNotesForRecordFunction = (input: ZohoRecruitCreateN
|
|
|
174
174
|
* ```
|
|
175
175
|
*/
|
|
176
176
|
export declare function zohoRecruitCreateNotesForRecord(context: ZohoRecruitContext): ZohoRecruitCreateNotesForRecordFunction;
|
|
177
|
-
/**
|
|
178
|
-
* @deprecated Use zohoRecruitCreateNotes instead.
|
|
179
|
-
*/
|
|
180
|
-
export declare const createNotes: typeof zohoRecruitCreateNotes;
|
|
181
|
-
/**
|
|
182
|
-
* @deprecated Use zohoRecruitDeleteNotes instead.
|
|
183
|
-
*/
|
|
184
|
-
export declare const deleteNotes: typeof zohoRecruitDeleteNotes;
|
|
185
|
-
/**
|
|
186
|
-
* @deprecated Use zohoRecruitGetNotesForRecord instead.
|
|
187
|
-
*/
|
|
188
|
-
export declare const getNotesForRecord: typeof zohoRecruitGetNotesForRecord;
|
|
189
|
-
/**
|
|
190
|
-
* @deprecated Use zohoRecruitGetNotesForRecordPageFactory instead.
|
|
191
|
-
*/
|
|
192
|
-
export declare const getNotesForRecordPageFactory: typeof zohoRecruitGetNotesForRecordPageFactory;
|
|
193
|
-
/**
|
|
194
|
-
* @deprecated Use zohoRecruitCreateNotesForRecord instead.
|
|
195
|
-
*/
|
|
196
|
-
export declare const createNotesForRecord: typeof zohoRecruitCreateNotesForRecord;
|
|
197
|
-
/**
|
|
198
|
-
* @deprecated Use ZohoRecruitGetNotesForRecordPageFactory instead.
|
|
199
|
-
*/
|
|
200
|
-
export type GetNotesForRecordPageFactory = ZohoRecruitGetNotesForRecordPageFactory;
|
|
@@ -228,27 +228,3 @@ export type ZohoRecruitRemoveTagsFromRecordsFunction = (input: ZohoRecruitRemove
|
|
|
228
228
|
* ```
|
|
229
229
|
*/
|
|
230
230
|
export declare function zohoRecruitRemoveTagsFromRecords(context: ZohoRecruitContext): ZohoRecruitRemoveTagsFromRecordsFunction;
|
|
231
|
-
/**
|
|
232
|
-
* @deprecated Use zohoRecruitCreateTagsForModule instead.
|
|
233
|
-
*/
|
|
234
|
-
export declare const createTagsForModule: typeof zohoRecruitCreateTagsForModule;
|
|
235
|
-
/**
|
|
236
|
-
* @deprecated Use zohoRecruitGetTagsForModule instead.
|
|
237
|
-
*/
|
|
238
|
-
export declare const getTagsForModule: typeof zohoRecruitGetTagsForModule;
|
|
239
|
-
/**
|
|
240
|
-
* @deprecated Use zohoRecruitGetTagsForModulePageFactory instead.
|
|
241
|
-
*/
|
|
242
|
-
export declare const getTagsForModulePageFactory: typeof zohoRecruitGetTagsForModulePageFactory;
|
|
243
|
-
/**
|
|
244
|
-
* @deprecated Use zohoRecruitAddTagsToRecords instead.
|
|
245
|
-
*/
|
|
246
|
-
export declare const addTagsToRecords: typeof zohoRecruitAddTagsToRecords;
|
|
247
|
-
/**
|
|
248
|
-
* @deprecated Use zohoRecruitRemoveTagsFromRecords instead.
|
|
249
|
-
*/
|
|
250
|
-
export declare const removeTagsFromRecords: typeof zohoRecruitRemoveTagsFromRecords;
|
|
251
|
-
/**
|
|
252
|
-
* @deprecated Use ZohoRecruitGetTagsForModulePageFactory instead.
|
|
253
|
-
*/
|
|
254
|
-
export type GetTagsForModulePageFactory = ZohoRecruitGetTagsForModulePageFactory;
|
|
@@ -55,7 +55,3 @@ export interface ZohoRecruitContext extends ZohoRateLimiterRef {
|
|
|
55
55
|
export interface ZohoRecruitContextRef {
|
|
56
56
|
readonly recruitContext: ZohoRecruitContext;
|
|
57
57
|
}
|
|
58
|
-
/**
|
|
59
|
-
* @deprecated use ZohoRecruitFetchFactoryParams instead.
|
|
60
|
-
*/
|
|
61
|
-
export type ZohoRecruitFetchFactoryInput = ZohoRecruitFetchFactoryParams;
|
|
@@ -297,13 +297,3 @@ export interface ZohoRecruitRecordAttachmentMetadata {
|
|
|
297
297
|
*/
|
|
298
298
|
$link_docs: number;
|
|
299
299
|
}
|
|
300
|
-
/**
|
|
301
|
-
* Update details returned by the server for an updated record.
|
|
302
|
-
*
|
|
303
|
-
* @deprecated use ZohoRecruitChangeObjectDetails instead.
|
|
304
|
-
*/
|
|
305
|
-
export type ZohoRecruitRecordUpdateDetails = ZohoRecruitChangeObjectDetails;
|
|
306
|
-
/**
|
|
307
|
-
* @deprecated Use ZohoRecruitRecordDraftStateData instead.
|
|
308
|
-
*/
|
|
309
|
-
export type ZohoRecordDraftStateData = ZohoRecruitRecordDraftStateData;
|
|
@@ -89,7 +89,3 @@ export declare const interceptZohoRecruit200StatusWithErrorResponse: import("@de
|
|
|
89
89
|
* Wraps a fetch client to automatically parse Zoho Recruit error responses, log them, and invoke a custom handler (e.g., for token refresh on authentication failures).
|
|
90
90
|
*/
|
|
91
91
|
export declare const handleZohoRecruitErrorFetch: import("..").HandleZohoErrorFetchFactory;
|
|
92
|
-
/**
|
|
93
|
-
* @deprecated Use assertZohoRecruitRecordDataArrayResultHasContent instead.
|
|
94
|
-
*/
|
|
95
|
-
export declare const assertRecordDataArrayResultHasContent: typeof assertZohoRecruitRecordDataArrayResultHasContent;
|
|
@@ -63,7 +63,3 @@ export interface ZohoRecruitNote extends ZohoRecruitNoteData, UniqueModelWithId
|
|
|
63
63
|
* Alias for a note attached to a specific Zoho Recruit record.
|
|
64
64
|
*/
|
|
65
65
|
export type ZohoRecruitRecordNote = ZohoRecruitNote;
|
|
66
|
-
/**
|
|
67
|
-
* @deprecated use NewZohoRecruitNewNoteData instead.
|
|
68
|
-
*/
|
|
69
|
-
export type NewZohoRecruitNewNoteData = NewZohoRecruitNoteData;
|
|
@@ -48,7 +48,3 @@ export interface ZohoSignContext extends ZohoRateLimiterRef {
|
|
|
48
48
|
export interface ZohoSignContextRef {
|
|
49
49
|
readonly signContext: ZohoSignContext;
|
|
50
50
|
}
|
|
51
|
-
/**
|
|
52
|
-
* @deprecated use ZohoSignFetchFactoryParams instead.
|
|
53
|
-
*/
|
|
54
|
-
export type ZohoSignFetchFactoryInput = ZohoSignFetchFactoryParams;
|
package/src/lib/zoho.limit.d.ts
CHANGED
|
@@ -148,7 +148,3 @@ export declare function zohoRateLimitedFetchHandler(config?: Maybe<ZohoRateLimit
|
|
|
148
148
|
* @returns Parsed rate limit details, or null if headers are absent.
|
|
149
149
|
*/
|
|
150
150
|
export declare function zohoStandardRateLimitDetailsReader(headers: Headers): Maybe<ZohoRateLimitResponseDetails>;
|
|
151
|
-
/**
|
|
152
|
-
* @deprecated use DEFAULT_ZOHO_RATE_LIMITED_TOO_MANY_REQUESTS_LOG_FUNCTION instead.
|
|
153
|
-
*/
|
|
154
|
-
export declare const DEFAULT_ZOHO_RATE_LIMITED_TOO_MANY_REQUETS_LOG_FUNCTION: (details: ZohoRateLimitHeaderDetails | ZohoRateLimitResponseDetails) => void;
|