@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.
- package/common-with-namespaces.d.ts +10 -0
- package/common.d.ts +6 -0
- package/package.json +1 -1
|
@@ -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