@moxi.gmbh/moxi-typescriptmodels 0.1.4331-25b0879-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 +31 -0
- package/common.d.ts +19 -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 {
|
|
@@ -2796,6 +2805,27 @@ export namespace com.moxi.api.statistics {
|
|
|
2796
2805
|
|
|
2797
2806
|
}
|
|
2798
2807
|
|
|
2808
|
+
export namespace com.moxi.api.team {
|
|
2809
|
+
|
|
2810
|
+
export interface BulkUploadUsers {
|
|
2811
|
+
accountId?: string;
|
|
2812
|
+
users?: com.moxi.api.team.BulkUploadUsers.BulkUser[];
|
|
2813
|
+
}
|
|
2814
|
+
|
|
2815
|
+
}
|
|
2816
|
+
|
|
2817
|
+
export namespace com.moxi.api.team.BulkUploadUsers {
|
|
2818
|
+
|
|
2819
|
+
export interface BulkUser {
|
|
2820
|
+
accountRole?: string;
|
|
2821
|
+
email?: string;
|
|
2822
|
+
team1?: string;
|
|
2823
|
+
team2?: string;
|
|
2824
|
+
team3?: string;
|
|
2825
|
+
}
|
|
2826
|
+
|
|
2827
|
+
}
|
|
2828
|
+
|
|
2799
2829
|
export namespace com.moxi.api.team {
|
|
2800
2830
|
|
|
2801
2831
|
export interface CreateTeam extends com.moxi.api.account.AccountCommand {
|
|
@@ -3038,6 +3068,7 @@ export namespace com.moxi.api.user {
|
|
|
3038
3068
|
|
|
3039
3069
|
export interface FindMyUsers {
|
|
3040
3070
|
accountId?: string;
|
|
3071
|
+
pagination?: com.moxi.api.common.Pagination;
|
|
3041
3072
|
teamId?: string;
|
|
3042
3073
|
term?: string;
|
|
3043
3074
|
}
|
package/common.d.ts
CHANGED
|
@@ -246,6 +246,19 @@ export interface BreathingDelivery {
|
|
|
246
246
|
type: "intubated" | "mask" | "tracheotomized";
|
|
247
247
|
}
|
|
248
248
|
|
|
249
|
+
export interface BulkUploadUsers {
|
|
250
|
+
accountId?: string;
|
|
251
|
+
users?: BulkUser[];
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
export interface BulkUser {
|
|
255
|
+
accountRole?: string;
|
|
256
|
+
email?: string;
|
|
257
|
+
team1?: string;
|
|
258
|
+
team2?: string;
|
|
259
|
+
team3?: string;
|
|
260
|
+
}
|
|
261
|
+
|
|
249
262
|
export interface CancelOptimization {
|
|
250
263
|
problemId?: string;
|
|
251
264
|
}
|
|
@@ -570,6 +583,7 @@ export interface FindMyTokens {
|
|
|
570
583
|
|
|
571
584
|
export interface FindMyUsers {
|
|
572
585
|
accountId?: string;
|
|
586
|
+
pagination?: Pagination;
|
|
573
587
|
teamId?: string;
|
|
574
588
|
term?: string;
|
|
575
589
|
}
|
|
@@ -1115,6 +1129,11 @@ export interface OperationsOverviewFilter extends WebsocketFilter {
|
|
|
1115
1129
|
screen: "operations_overview";
|
|
1116
1130
|
}
|
|
1117
1131
|
|
|
1132
|
+
export interface Pagination {
|
|
1133
|
+
currentPage?: number;
|
|
1134
|
+
pageSize?: number;
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1118
1137
|
export interface Person {
|
|
1119
1138
|
address?: AddressInfo;
|
|
1120
1139
|
birthDay?: string;
|
package/package.json
CHANGED