@kinevolution/appwrite-functions-shared-utils 0.1.55 → 0.1.57
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.
|
@@ -146,3 +146,17 @@ export interface GetAllRequestsDataType {
|
|
|
146
146
|
userActivities: UserActivity[];
|
|
147
147
|
}
|
|
148
148
|
export type GetAllRequestsResponse = Response<GetAllRequestsDataType>;
|
|
149
|
+
export interface RemoveRequestsInput {
|
|
150
|
+
requestIds: string[];
|
|
151
|
+
}
|
|
152
|
+
export declare const RemoveRequestsConfig: {
|
|
153
|
+
method: "POST";
|
|
154
|
+
fields: [{
|
|
155
|
+
readonly key: "requestIds";
|
|
156
|
+
readonly type: "array";
|
|
157
|
+
readonly required: true;
|
|
158
|
+
}];
|
|
159
|
+
};
|
|
160
|
+
export interface RemoveRequestsDataType {
|
|
161
|
+
}
|
|
162
|
+
export type RemoveRequestsResponse = Response<RemoveRequestsDataType>;
|
package/dist/utils.d.ts
CHANGED
package/dist/utils.js
CHANGED