@icure/api 5.3.14 → 5.3.16

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.
@@ -1,3 +1,3 @@
1
1
  export declare function packOther(...args: string[]): string;
2
- export declare type Asn1Item = number | string | Asn1Item[];
2
+ export type Asn1Item = number | string | Asn1Item[];
3
3
  export declare function pack(arr: Asn1Item[]): string;
@@ -1,4 +1,4 @@
1
- export declare type Asn1 = {
1
+ export type Asn1 = {
2
2
  type: number;
3
3
  lengthSize: number;
4
4
  length: number;
@@ -1,5 +1,5 @@
1
- export declare type PaginatorFunction<X> = (key: any, docId: string | null, limit: number | undefined) => Promise<PaginatorResponse<X>>;
2
- export declare type PaginatorExecutor<X> = (latestPaginatorFunctionResult: PaginatorResponse<X>, acc: any[], limit: number | undefined) => Promise<PaginatorResponse<X>>;
1
+ export type PaginatorFunction<X> = (key: any, docId: string | null, limit: number | undefined) => Promise<PaginatorResponse<X>>;
2
+ export type PaginatorExecutor<X> = (latestPaginatorFunctionResult: PaginatorResponse<X>, acc: any[], limit: number | undefined) => Promise<PaginatorResponse<X>>;
3
3
  export interface PaginatorResponse<X> {
4
4
  rows: Array<X>;
5
5
  nextKey: any | null | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icure/api",
3
- "version": "5.3.14",
3
+ "version": "5.3.16",
4
4
  "description": "Typescript version of iCure standalone API client",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",