@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 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
- * List only personal templates. To list shared templates, set this to false and is_public to false.
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
- * List only personal templates. To list shared templates, set this to false and is_public to false.
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. */