@kinevolution/appwrite-functions-shared-utils 0.1.19 → 0.1.21
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.
|
@@ -37,7 +37,7 @@ export declare const GetAllUsersConfig: {
|
|
|
37
37
|
readonly default: "email";
|
|
38
38
|
}];
|
|
39
39
|
};
|
|
40
|
-
export
|
|
40
|
+
export interface GetAllUsersDataType {
|
|
41
41
|
users: Models.User<Users>[];
|
|
42
42
|
profileRoles: Roles[];
|
|
43
43
|
profileCores: ProfilesCore[];
|
|
@@ -45,9 +45,10 @@ export type GetAllUsersResponse = Response<{
|
|
|
45
45
|
profileRequesters: ProfilesRequester[];
|
|
46
46
|
profileCompanions: ProfilesCompanion[];
|
|
47
47
|
companionZones: CompanionZones[];
|
|
48
|
-
}
|
|
48
|
+
}
|
|
49
|
+
export type GetAllUsersResponse = Response<GetAllUsersDataType>;
|
|
49
50
|
export interface RemoveUserInput {
|
|
50
|
-
userId:
|
|
51
|
+
userId: string;
|
|
51
52
|
keepAuth?: boolean;
|
|
52
53
|
}
|
|
53
54
|
export declare const RemoveUserConfig: {
|
|
@@ -63,4 +64,6 @@ export declare const RemoveUserConfig: {
|
|
|
63
64
|
readonly default: false;
|
|
64
65
|
}];
|
|
65
66
|
};
|
|
66
|
-
export
|
|
67
|
+
export interface RemoveUserDataType {
|
|
68
|
+
}
|
|
69
|
+
export type RemoveUserResponse = Response<RemoveUserDataType>;
|