@webitel/api-services 0.0.29 → 0.0.30
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/Readme.md +100 -6
- package/package.json +2 -1
- package/src/api/clients/caseSources/caseSources.ts +1 -1
- package/src/api/clients/quickReplies/quickReplies.ts +2 -0
- package/src/gen/_docs/html/assets/navigation.js +1 -1
- package/src/gen/_docs/html/assets/search.js +1 -1
- package/src/gen/_docs/html/index.html +1 -1
- package/src/gen/_docs/html/interfaces/_models_webitelCasesCaseQueryTarget.WebitelCasesCaseQueryTarget.html +10 -0
- package/src/gen/_docs/html/modules/_models.html +1 -1
- package/src/gen/_docs/html/modules/_models_webitelCasesCaseQueryTarget.html +1 -0
- package/src/gen/_docs/html/modules/index.html +1 -1
- package/src/gen/_docs/html/modules/sources_sources.zod.gen.html +6 -6
- package/src/gen/_docs/html/types/_models_listSourcesParams.ListSourcesParams.html +11 -7
- package/src/gen/_docs/html/types/_models_publishCommentParams.PublishCommentParams.html +5 -3
- package/src/gen/_docs/html/types/_models_searchCases2Params.SearchCases2Params.html +13 -3
- package/src/gen/_docs/html/types/_models_searchCasesParams.SearchCasesParams.html +13 -3
- package/src/gen/_docs/html/types/_models_updateComment2Params.UpdateComment2Params.html +4 -2
- package/src/gen/_docs/html/types/_models_updateCommentParams.UpdateCommentParams.html +4 -2
- package/src/gen/_docs/html/variables/case-comments_case-comments.zod.gen.publishCommentQueryParams.html +1 -1
- package/src/gen/_docs/html/variables/case-comments_case-comments.zod.gen.updateComment2QueryParams.html +1 -1
- package/src/gen/_docs/html/variables/case-comments_case-comments.zod.gen.updateCommentQueryParams.html +1 -1
- package/src/gen/_docs/html/variables/cases_cases.zod.gen.searchCases2QueryParams.html +1 -1
- package/src/gen/_docs/html/variables/cases_cases.zod.gen.searchCasesQueryParams.html +1 -1
- package/src/gen/_docs/html/variables/sources_sources.zod.gen.createSourceBody.html +1 -1
- package/src/gen/_docs/html/variables/sources_sources.zod.gen.listSourcesQueryPageDefault.html +1 -0
- package/src/gen/_docs/html/variables/sources_sources.zod.gen.listSourcesQueryParams.html +1 -1
- package/src/gen/_docs/html/variables/sources_sources.zod.gen.listSourcesQuerySizeDefault.html +1 -0
- package/src/gen/_docs/html/variables/sources_sources.zod.gen.listSourcesQuerySortDefault.html +1 -0
- package/src/gen/_docs/html/variables/sources_sources.zod.gen.updateSource2Body.html +1 -1
- package/src/gen/_docs/html/variables/sources_sources.zod.gen.updateSourceBody.html +1 -1
- package/src/gen/_models/index.ts +1 -0
- package/src/gen/_models/listSourcesParams.ts +15 -11
- package/src/gen/_models/publishCommentParams.ts +4 -0
- package/src/gen/_models/searchCases2Params.ts +21 -1
- package/src/gen/_models/searchCasesParams.ts +21 -1
- package/src/gen/_models/updateComment2Params.ts +4 -0
- package/src/gen/_models/updateCommentParams.ts +4 -0
- package/src/gen/_models/webitelCasesCaseQueryTarget.ts +20 -0
- package/src/gen/case-comments/case-comments.zod.gen.ts +18 -0
- package/src/gen/cases/cases.zod.gen.ts +36 -2
- package/src/gen/sources/sources.zod.gen.ts +19 -14
- package/types/gen/_models/webitelCasesCaseQueryTarget.d.ts +19 -0
- package/src/gen/_docs/html/variables/sources_sources.zod.gen.createSourceBodyDescriptionDefault.html +0 -1
- package/src/gen/_docs/html/variables/sources_sources.zod.gen.updateSource2BodyDescriptionDefault.html +0 -1
- package/src/gen/_docs/html/variables/sources_sources.zod.gen.updateSourceBodyDescriptionDefault.html +0 -1
|
@@ -15,7 +15,7 @@ export type SearchCasesParams = {
|
|
|
15
15
|
*/
|
|
16
16
|
size?: number;
|
|
17
17
|
/**
|
|
18
|
-
*
|
|
18
|
+
* General query string.
|
|
19
19
|
*/
|
|
20
20
|
q?: string;
|
|
21
21
|
/**
|
|
@@ -38,4 +38,24 @@ export type SearchCasesParams = {
|
|
|
38
38
|
* Contact ID for filtering cases.
|
|
39
39
|
*/
|
|
40
40
|
contactId?: string;
|
|
41
|
+
/**
|
|
42
|
+
* Search everywhere (no restrictions)
|
|
43
|
+
*/
|
|
44
|
+
queryTargetFull?: boolean;
|
|
45
|
+
/**
|
|
46
|
+
* Search in case subject.
|
|
47
|
+
*/
|
|
48
|
+
queryTargetSubject?: boolean;
|
|
49
|
+
/**
|
|
50
|
+
* Search in case name or number.
|
|
51
|
+
*/
|
|
52
|
+
queryTargetName?: boolean;
|
|
53
|
+
/**
|
|
54
|
+
* Search in contact's email, phone, etc.
|
|
55
|
+
*/
|
|
56
|
+
queryTargetContactInfo?: boolean;
|
|
57
|
+
/**
|
|
58
|
+
* Search in case id
|
|
59
|
+
*/
|
|
60
|
+
queryTargetId?: boolean;
|
|
41
61
|
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v7.10.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Webitel API
|
|
5
|
+
* OpenAPI spec version: 24.04.0
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Define which fields are enabled for query matching.
|
|
10
|
+
*/
|
|
11
|
+
export interface WebitelCasesCaseQueryTarget {
|
|
12
|
+
/** Search in contact's email, phone, etc. */
|
|
13
|
+
contactInfo?: boolean;
|
|
14
|
+
full?: boolean;
|
|
15
|
+
id?: boolean;
|
|
16
|
+
/** Search in case name or number. */
|
|
17
|
+
name?: boolean;
|
|
18
|
+
/** Search in case subject. */
|
|
19
|
+
subject?: boolean;
|
|
20
|
+
}
|
|
@@ -158,6 +158,12 @@ export const updateComment2QueryParams = zod.object({
|
|
|
158
158
|
.array(zod.string())
|
|
159
159
|
.optional()
|
|
160
160
|
.describe('Fields to include in the response.'),
|
|
161
|
+
updatedAt: zod
|
|
162
|
+
.string()
|
|
163
|
+
.optional()
|
|
164
|
+
.describe(
|
|
165
|
+
'Optional updating timestamp. If not set, will be set default(current) time.',
|
|
166
|
+
),
|
|
161
167
|
});
|
|
162
168
|
|
|
163
169
|
export const updateComment2Body = zod.object({
|
|
@@ -238,6 +244,12 @@ export const updateCommentQueryParams = zod.object({
|
|
|
238
244
|
.array(zod.string())
|
|
239
245
|
.optional()
|
|
240
246
|
.describe('Fields to include in the response.'),
|
|
247
|
+
updatedAt: zod
|
|
248
|
+
.string()
|
|
249
|
+
.optional()
|
|
250
|
+
.describe(
|
|
251
|
+
'Optional updating timestamp. If not set, will be set default(current) time.',
|
|
252
|
+
),
|
|
241
253
|
});
|
|
242
254
|
|
|
243
255
|
export const updateCommentBody = zod.object({
|
|
@@ -422,6 +434,12 @@ export const publishCommentQueryParams = zod.object({
|
|
|
422
434
|
.array(zod.string())
|
|
423
435
|
.optional()
|
|
424
436
|
.describe('Result fields to include in the response.'),
|
|
437
|
+
createdAt: zod
|
|
438
|
+
.string()
|
|
439
|
+
.optional()
|
|
440
|
+
.describe(
|
|
441
|
+
'Optional creation timestamp. If not set, will be set default(current) time.',
|
|
442
|
+
),
|
|
425
443
|
});
|
|
426
444
|
|
|
427
445
|
export const publishCommentBody = zod
|
|
@@ -12,7 +12,7 @@ import { z as zod } from 'zod/v4';
|
|
|
12
12
|
export const searchCasesQueryParams = zod.object({
|
|
13
13
|
page: zod.number().optional().describe('Page number for pagination.'),
|
|
14
14
|
size: zod.number().optional().describe('Number of results per page.'),
|
|
15
|
-
q: zod.string().optional().describe('
|
|
15
|
+
q: zod.string().optional().describe('General query string.'),
|
|
16
16
|
ids: zod
|
|
17
17
|
.array(zod.string())
|
|
18
18
|
.optional()
|
|
@@ -30,6 +30,23 @@ export const searchCasesQueryParams = zod.object({
|
|
|
30
30
|
.string()
|
|
31
31
|
.optional()
|
|
32
32
|
.describe('Contact ID for filtering cases.'),
|
|
33
|
+
queryTargetFull: zod
|
|
34
|
+
.boolean()
|
|
35
|
+
.optional()
|
|
36
|
+
.describe('Search everywhere (no restrictions)'),
|
|
37
|
+
queryTargetSubject: zod
|
|
38
|
+
.boolean()
|
|
39
|
+
.optional()
|
|
40
|
+
.describe('Search in case subject.'),
|
|
41
|
+
queryTargetName: zod
|
|
42
|
+
.boolean()
|
|
43
|
+
.optional()
|
|
44
|
+
.describe('Search in case name or number.'),
|
|
45
|
+
queryTargetContactInfo: zod
|
|
46
|
+
.boolean()
|
|
47
|
+
.optional()
|
|
48
|
+
.describe("Search in contact's email, phone, etc."),
|
|
49
|
+
queryTargetId: zod.boolean().optional().describe('Search in case id'),
|
|
33
50
|
});
|
|
34
51
|
|
|
35
52
|
export const searchCasesResponseItemsItemRelatedDataItemRelationTypeDefault =
|
|
@@ -3288,7 +3305,7 @@ export const searchCases2Params = zod.object({
|
|
|
3288
3305
|
export const searchCases2QueryParams = zod.object({
|
|
3289
3306
|
page: zod.number().optional().describe('Page number for pagination.'),
|
|
3290
3307
|
size: zod.number().optional().describe('Number of results per page.'),
|
|
3291
|
-
q: zod.string().optional().describe('
|
|
3308
|
+
q: zod.string().optional().describe('General query string.'),
|
|
3292
3309
|
ids: zod
|
|
3293
3310
|
.array(zod.string())
|
|
3294
3311
|
.optional()
|
|
@@ -3302,6 +3319,23 @@ export const searchCases2QueryParams = zod.object({
|
|
|
3302
3319
|
.array(zod.string())
|
|
3303
3320
|
.optional()
|
|
3304
3321
|
.describe('Key-value pairs for additional filtering.'),
|
|
3322
|
+
queryTargetFull: zod
|
|
3323
|
+
.boolean()
|
|
3324
|
+
.optional()
|
|
3325
|
+
.describe('Search everywhere (no restrictions)'),
|
|
3326
|
+
queryTargetSubject: zod
|
|
3327
|
+
.boolean()
|
|
3328
|
+
.optional()
|
|
3329
|
+
.describe('Search in case subject.'),
|
|
3330
|
+
queryTargetName: zod
|
|
3331
|
+
.boolean()
|
|
3332
|
+
.optional()
|
|
3333
|
+
.describe('Search in case name or number.'),
|
|
3334
|
+
queryTargetContactInfo: zod
|
|
3335
|
+
.boolean()
|
|
3336
|
+
.optional()
|
|
3337
|
+
.describe("Search in contact's email, phone, etc."),
|
|
3338
|
+
queryTargetId: zod.boolean().optional().describe('Search in case id'),
|
|
3305
3339
|
});
|
|
3306
3340
|
|
|
3307
3341
|
export const searchCases2ResponseItemsItemRelatedDataItemRelationTypeDefault =
|
|
@@ -9,29 +9,37 @@ import { z as zod } from 'zod/v4';
|
|
|
9
9
|
/**
|
|
10
10
|
* @summary Retrieve a list of sources or search sources
|
|
11
11
|
*/
|
|
12
|
+
export const listSourcesQueryPageDefault = '1';
|
|
13
|
+
export const listSourcesQuerySizeDefault = '20';
|
|
14
|
+
export const listSourcesQuerySortDefault = 'name:desc';
|
|
15
|
+
|
|
12
16
|
export const listSourcesQueryParams = zod.object({
|
|
13
17
|
page: zod
|
|
14
18
|
.number()
|
|
15
|
-
.
|
|
16
|
-
.describe(
|
|
19
|
+
.default(listSourcesQueryPageDefault)
|
|
20
|
+
.describe(
|
|
21
|
+
'Page number of result dataset records. offset = (page * size)\nDefault: 0',
|
|
22
|
+
),
|
|
17
23
|
size: zod
|
|
18
24
|
.number()
|
|
19
|
-
.
|
|
20
|
-
.describe(
|
|
25
|
+
.default(listSourcesQuerySizeDefault)
|
|
26
|
+
.describe(
|
|
27
|
+
'Size count of records on result page. limit = (size++)\nDefault: 25',
|
|
28
|
+
),
|
|
21
29
|
fields: zod
|
|
22
30
|
.array(zod.string())
|
|
23
31
|
.optional()
|
|
24
|
-
.describe('Fields to be retrieved as a result
|
|
32
|
+
.describe('Fields to be retrieved as a result.\nDefault: [] (all fields)'),
|
|
25
33
|
sort: zod
|
|
26
34
|
.string()
|
|
27
|
-
.
|
|
28
|
-
.describe('Sort the result according to fields
|
|
35
|
+
.default(listSourcesQuerySortDefault)
|
|
36
|
+
.describe('Sort the result according to fields.\nDefault: \"id:desc\"'),
|
|
29
37
|
id: zod.array(zod.string()).optional().describe('Filter by unique IDs.'),
|
|
30
38
|
q: zod
|
|
31
39
|
.string()
|
|
32
40
|
.optional()
|
|
33
41
|
.describe(
|
|
34
|
-
'Search query string for filtering by name. Supports:\n- Wildcards (*)
|
|
42
|
+
'Search query string for filtering by name. Supports:\n- Wildcards (*)\n- Placeholder (?)\n- Exact match',
|
|
35
43
|
),
|
|
36
44
|
type: zod
|
|
37
45
|
.array(
|
|
@@ -137,7 +145,6 @@ export const createSourceQueryParams = zod.object({
|
|
|
137
145
|
});
|
|
138
146
|
|
|
139
147
|
export const createSourceBodyDefault = { name: 'Default Source', type: 'CALL' };
|
|
140
|
-
export const createSourceBodyDescriptionDefault = 'No description provided';
|
|
141
148
|
export const createSourceBodyDescriptionMax = 500;
|
|
142
149
|
export const createSourceBodyNameDefault = 'New Source';
|
|
143
150
|
export const createSourceBodyNameMin = 2;
|
|
@@ -150,7 +157,7 @@ export const createSourceBody = zod
|
|
|
150
157
|
description: zod
|
|
151
158
|
.string()
|
|
152
159
|
.max(createSourceBodyDescriptionMax)
|
|
153
|
-
.
|
|
160
|
+
.optional()
|
|
154
161
|
.describe('A short description of the source'),
|
|
155
162
|
name: zod
|
|
156
163
|
.string()
|
|
@@ -369,7 +376,6 @@ export const updateSource2BodyDefault = {
|
|
|
369
376
|
name: 'Default Source',
|
|
370
377
|
type: 'CALL',
|
|
371
378
|
};
|
|
372
|
-
export const updateSource2BodyDescriptionDefault = 'No description provided';
|
|
373
379
|
export const updateSource2BodyDescriptionMax = 500;
|
|
374
380
|
export const updateSource2BodyNameDefault = 'New Source';
|
|
375
381
|
export const updateSource2BodyNameMin = 2;
|
|
@@ -382,7 +388,7 @@ export const updateSource2Body = zod
|
|
|
382
388
|
description: zod
|
|
383
389
|
.string()
|
|
384
390
|
.max(updateSource2BodyDescriptionMax)
|
|
385
|
-
.
|
|
391
|
+
.optional()
|
|
386
392
|
.describe('A short description of the source'),
|
|
387
393
|
name: zod
|
|
388
394
|
.string()
|
|
@@ -468,7 +474,6 @@ export const updateSourceQueryParams = zod.object({
|
|
|
468
474
|
});
|
|
469
475
|
|
|
470
476
|
export const updateSourceBodyDefault = { name: 'Default Source', type: 'CALL' };
|
|
471
|
-
export const updateSourceBodyDescriptionDefault = 'No description provided';
|
|
472
477
|
export const updateSourceBodyDescriptionMax = 500;
|
|
473
478
|
export const updateSourceBodyNameDefault = 'New Source';
|
|
474
479
|
export const updateSourceBodyNameMin = 2;
|
|
@@ -481,7 +486,7 @@ export const updateSourceBody = zod
|
|
|
481
486
|
description: zod
|
|
482
487
|
.string()
|
|
483
488
|
.max(updateSourceBodyDescriptionMax)
|
|
484
|
-
.
|
|
489
|
+
.optional()
|
|
485
490
|
.describe('A short description of the source'),
|
|
486
491
|
name: zod
|
|
487
492
|
.string()
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v7.10.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Webitel API
|
|
5
|
+
* OpenAPI spec version: 24.04.0
|
|
6
|
+
*/
|
|
7
|
+
/**
|
|
8
|
+
* Define which fields are enabled for query matching.
|
|
9
|
+
*/
|
|
10
|
+
export interface WebitelCasesCaseQueryTarget {
|
|
11
|
+
/** Search in contact's email, phone, etc. */
|
|
12
|
+
contactInfo?: boolean;
|
|
13
|
+
full?: boolean;
|
|
14
|
+
id?: boolean;
|
|
15
|
+
/** Search in case name or number. */
|
|
16
|
+
name?: boolean;
|
|
17
|
+
/** Search in case subject. */
|
|
18
|
+
subject?: boolean;
|
|
19
|
+
}
|
package/src/gen/_docs/html/variables/sources_sources.zod.gen.createSourceBodyDescriptionDefault.html
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html class="default" lang="en" data-base="../"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>createSourceBodyDescriptionDefault | Documentation</title><meta name="description" content="Documentation for Documentation"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => window.app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><a href="../index.html" class="title">Documentation</a><div id="tsd-toolbar-links"></div><button id="tsd-search-trigger" class="tsd-widget" aria-label="Search"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-search"></use></svg></button><dialog id="tsd-search" aria-label="Search"><input role="combobox" id="tsd-search-input" aria-controls="tsd-search-results" aria-autocomplete="list" aria-expanded="true" autocapitalize="off" autocomplete="off" placeholder="Search the docs" maxLength="100"/><ul role="listbox" id="tsd-search-results"></ul><div id="tsd-search-status" aria-live="polite" aria-atomic="true"><div>Preparing search index...</div></div></dialog><a href="#" class="tsd-widget menu" id="tsd-toolbar-menu-trigger" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb" aria-label="Breadcrumb"><li><a href="../modules/sources_sources.zod.gen.html">sources/sources.zod.gen</a></li><li><a href="" aria-current="page">createSourceBodyDescriptionDefault</a></li></ul><h1>Variable createSourceBodyDescriptionDefault<code class="tsd-tag">Const</code></h1></div><div class="tsd-signature"><span class="tsd-kind-variable">createSourceBodyDescriptionDefault</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"No description provided"</span><span class="tsd-signature-symbol"> = 'No description provided'</span></div></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div><div class="site-menu"><nav class="tsd-navigation"><a href="../index.html">Documentation</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html class="default" lang="en" data-base="../"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>updateSource2BodyDescriptionDefault | Documentation</title><meta name="description" content="Documentation for Documentation"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => window.app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><a href="../index.html" class="title">Documentation</a><div id="tsd-toolbar-links"></div><button id="tsd-search-trigger" class="tsd-widget" aria-label="Search"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-search"></use></svg></button><dialog id="tsd-search" aria-label="Search"><input role="combobox" id="tsd-search-input" aria-controls="tsd-search-results" aria-autocomplete="list" aria-expanded="true" autocapitalize="off" autocomplete="off" placeholder="Search the docs" maxLength="100"/><ul role="listbox" id="tsd-search-results"></ul><div id="tsd-search-status" aria-live="polite" aria-atomic="true"><div>Preparing search index...</div></div></dialog><a href="#" class="tsd-widget menu" id="tsd-toolbar-menu-trigger" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb" aria-label="Breadcrumb"><li><a href="../modules/sources_sources.zod.gen.html">sources/sources.zod.gen</a></li><li><a href="" aria-current="page">updateSource2BodyDescriptionDefault</a></li></ul><h1>Variable updateSource2BodyDescriptionDefault<code class="tsd-tag">Const</code></h1></div><div class="tsd-signature"><span class="tsd-kind-variable">updateSource2BodyDescriptionDefault</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"No description provided"</span><span class="tsd-signature-symbol"> = 'No description provided'</span></div></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div><div class="site-menu"><nav class="tsd-navigation"><a href="../index.html">Documentation</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
|
package/src/gen/_docs/html/variables/sources_sources.zod.gen.updateSourceBodyDescriptionDefault.html
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html class="default" lang="en" data-base="../"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>updateSourceBodyDescriptionDefault | Documentation</title><meta name="description" content="Documentation for Documentation"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => window.app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><a href="../index.html" class="title">Documentation</a><div id="tsd-toolbar-links"></div><button id="tsd-search-trigger" class="tsd-widget" aria-label="Search"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-search"></use></svg></button><dialog id="tsd-search" aria-label="Search"><input role="combobox" id="tsd-search-input" aria-controls="tsd-search-results" aria-autocomplete="list" aria-expanded="true" autocapitalize="off" autocomplete="off" placeholder="Search the docs" maxLength="100"/><ul role="listbox" id="tsd-search-results"></ul><div id="tsd-search-status" aria-live="polite" aria-atomic="true"><div>Preparing search index...</div></div></dialog><a href="#" class="tsd-widget menu" id="tsd-toolbar-menu-trigger" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb" aria-label="Breadcrumb"><li><a href="../modules/sources_sources.zod.gen.html">sources/sources.zod.gen</a></li><li><a href="" aria-current="page">updateSourceBodyDescriptionDefault</a></li></ul><h1>Variable updateSourceBodyDescriptionDefault<code class="tsd-tag">Const</code></h1></div><div class="tsd-signature"><span class="tsd-kind-variable">updateSourceBodyDescriptionDefault</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"No description provided"</span><span class="tsd-signature-symbol"> = 'No description provided'</span></div></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div><div class="site-menu"><nav class="tsd-navigation"><a href="../index.html">Documentation</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
|