@moxi.gmbh/moxi-typescriptmodels 0.35.0 → 0.36.1
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 +21 -0
- package/common.d.ts +13 -0
- package/package.json +1 -1
|
@@ -60,6 +60,25 @@ export namespace com.moxi.api.account {
|
|
|
60
60
|
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
+
export namespace com.moxi.api.account {
|
|
64
|
+
|
|
65
|
+
export interface FindAccountsV2 {
|
|
66
|
+
filter?: com.moxi.api.account.common.AccountFilter;
|
|
67
|
+
pagination?: com.moxi.api.common.Pagination;
|
|
68
|
+
term?: string;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export namespace com.moxi.api.account.FindAccountsV2 {
|
|
74
|
+
|
|
75
|
+
export interface FindAccountsResult {
|
|
76
|
+
data?: com.moxi.api.account.common.Account[];
|
|
77
|
+
pagination?: com.moxi.api.common.PaginationResult;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
}
|
|
81
|
+
|
|
63
82
|
export namespace com.moxi.api.account {
|
|
64
83
|
|
|
65
84
|
export interface GetAccount {
|
|
@@ -2184,8 +2203,10 @@ export namespace com.moxi.api.ride.common {
|
|
|
2184
2203
|
eventValue?: any;
|
|
2185
2204
|
impersonating?: boolean;
|
|
2186
2205
|
isImpersonating?: boolean;
|
|
2206
|
+
isOperator?: boolean;
|
|
2187
2207
|
isSuperAdmin?: boolean;
|
|
2188
2208
|
isToken?: boolean;
|
|
2209
|
+
operator?: boolean;
|
|
2189
2210
|
superAdmin?: boolean;
|
|
2190
2211
|
timestamp?: string;
|
|
2191
2212
|
token?: boolean;
|
package/common.d.ts
CHANGED
|
@@ -568,6 +568,17 @@ export interface FindAccounts {
|
|
|
568
568
|
term?: string;
|
|
569
569
|
}
|
|
570
570
|
|
|
571
|
+
export interface FindAccountsResult {
|
|
572
|
+
data?: Account[];
|
|
573
|
+
pagination?: PaginationResult;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
export interface FindAccountsV2 {
|
|
577
|
+
filter?: AccountFilter;
|
|
578
|
+
pagination?: Pagination;
|
|
579
|
+
term?: string;
|
|
580
|
+
}
|
|
581
|
+
|
|
571
582
|
export interface FindDuplicateRides {
|
|
572
583
|
accountId?: string;
|
|
573
584
|
appointmentTime?: string;
|
|
@@ -1557,8 +1568,10 @@ export interface RideLog {
|
|
|
1557
1568
|
eventValue?: any;
|
|
1558
1569
|
impersonating?: boolean;
|
|
1559
1570
|
isImpersonating?: boolean;
|
|
1571
|
+
isOperator?: boolean;
|
|
1560
1572
|
isSuperAdmin?: boolean;
|
|
1561
1573
|
isToken?: boolean;
|
|
1574
|
+
operator?: boolean;
|
|
1562
1575
|
superAdmin?: boolean;
|
|
1563
1576
|
timestamp?: string;
|
|
1564
1577
|
token?: boolean;
|
package/package.json
CHANGED