@verdocs/js-sdk 4.2.133 → 4.2.135
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.d.mts +2 -7
- package/dist/index.d.ts +2 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2462,13 +2462,8 @@ interface IGetTemplatesParams {
|
|
|
2462
2462
|
is_starred?: boolean;
|
|
2463
2463
|
/** List only those templates created by the caller. */
|
|
2464
2464
|
is_creator?: boolean;
|
|
2465
|
-
/**
|
|
2466
|
-
|
|
2467
|
-
* To list all templates, omit this field.
|
|
2468
|
-
*/
|
|
2469
|
-
is_personal?: boolean;
|
|
2470
|
-
/** List only public templates */
|
|
2471
|
-
is_public?: boolean;
|
|
2465
|
+
/** Visibility status of templates to include. private_shared is the default (private + shared) */
|
|
2466
|
+
visibility: "private_shared" | "private" | "shared" | "public";
|
|
2472
2467
|
/** Sort order */
|
|
2473
2468
|
sort_by?: TSortTemplateBy;
|
|
2474
2469
|
/** Set to true or false to control the sort order. Omit this field to sort dates descending, names ascending. */
|
package/dist/index.d.ts
CHANGED
|
@@ -2462,13 +2462,8 @@ interface IGetTemplatesParams {
|
|
|
2462
2462
|
is_starred?: boolean;
|
|
2463
2463
|
/** List only those templates created by the caller. */
|
|
2464
2464
|
is_creator?: boolean;
|
|
2465
|
-
/**
|
|
2466
|
-
|
|
2467
|
-
* To list all templates, omit this field.
|
|
2468
|
-
*/
|
|
2469
|
-
is_personal?: boolean;
|
|
2470
|
-
/** List only public templates */
|
|
2471
|
-
is_public?: boolean;
|
|
2465
|
+
/** Visibility status of templates to include. private_shared is the default (private + shared) */
|
|
2466
|
+
visibility: "private_shared" | "private" | "shared" | "public";
|
|
2472
2467
|
/** Sort order */
|
|
2473
2468
|
sort_by?: TSortTemplateBy;
|
|
2474
2469
|
/** Set to true or false to control the sort order. Omit this field to sort dates descending, names ascending. */
|