@moxi.gmbh/moxi-typescriptmodels 0.1.4383-c2de261-test-server → 0.1.4391-e0d6b36-test-server

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.
@@ -591,6 +591,15 @@ export namespace com.moxi.api.common {
591
591
 
592
592
  }
593
593
 
594
+ export namespace com.moxi.api.common {
595
+
596
+ export interface Pagination {
597
+ currentPage?: number;
598
+ pageSize?: number;
599
+ }
600
+
601
+ }
602
+
594
603
  export namespace com.moxi.api.common {
595
604
 
596
605
  export interface PhoneNumber {
@@ -3059,6 +3068,7 @@ export namespace com.moxi.api.user {
3059
3068
 
3060
3069
  export interface FindMyUsers {
3061
3070
  accountId?: string;
3071
+ pagination?: com.moxi.api.common.Pagination;
3062
3072
  teamId?: string;
3063
3073
  term?: string;
3064
3074
  }
package/common.d.ts CHANGED
@@ -583,6 +583,7 @@ export interface FindMyTokens {
583
583
 
584
584
  export interface FindMyUsers {
585
585
  accountId?: string;
586
+ pagination?: Pagination;
586
587
  teamId?: string;
587
588
  term?: string;
588
589
  }
@@ -1128,6 +1129,11 @@ export interface OperationsOverviewFilter extends WebsocketFilter {
1128
1129
  screen: "operations_overview";
1129
1130
  }
1130
1131
 
1132
+ export interface Pagination {
1133
+ currentPage?: number;
1134
+ pageSize?: number;
1135
+ }
1136
+
1131
1137
  export interface Person {
1132
1138
  address?: AddressInfo;
1133
1139
  birthDay?: string;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@moxi.gmbh/moxi-typescriptmodels",
3
- "version": "0.1.4383-c2de261-test-server",
3
+ "version": "0.1.4391-e0d6b36-test-server",
4
4
  "types": "common.d.ts"
5
5
  }