@verdocs/js-sdk 4.2.30 → 4.2.31

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
@@ -2343,7 +2343,12 @@ interface IGetTemplatesParams {
2343
2343
  * await getTemplates((VerdocsEndpoint.getDefault(), { is_organization: true });
2344
2344
  * ```
2345
2345
  */
2346
- declare const getTemplates: (endpoint: VerdocsEndpoint, params?: IGetTemplatesParams) => Promise<ITemplate[]>;
2346
+ declare const getTemplates: (endpoint: VerdocsEndpoint, params?: IGetTemplatesParams) => Promise<{
2347
+ count: number;
2348
+ rows: number;
2349
+ page: number;
2350
+ templates: ITemplate[];
2351
+ }>;
2347
2352
  /**
2348
2353
  * Get one template by its ID.
2349
2354
  *
package/dist/index.d.ts CHANGED
@@ -2343,7 +2343,12 @@ interface IGetTemplatesParams {
2343
2343
  * await getTemplates((VerdocsEndpoint.getDefault(), { is_organization: true });
2344
2344
  * ```
2345
2345
  */
2346
- declare const getTemplates: (endpoint: VerdocsEndpoint, params?: IGetTemplatesParams) => Promise<ITemplate[]>;
2346
+ declare const getTemplates: (endpoint: VerdocsEndpoint, params?: IGetTemplatesParams) => Promise<{
2347
+ count: number;
2348
+ rows: number;
2349
+ page: number;
2350
+ templates: ITemplate[];
2351
+ }>;
2347
2352
  /**
2348
2353
  * Get one template by its ID.
2349
2354
  *