@kinevolution/appwrite-functions-shared-utils 0.1.59 → 0.1.60

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.
@@ -160,3 +160,12 @@ export declare const RemoveRequestsConfig: {
160
160
  export interface RemoveRequestsDataType {
161
161
  }
162
162
  export type RemoveRequestsResponse = Response<RemoveRequestsDataType>;
163
+ export interface MatchRequestsToCandidatesInput {
164
+ }
165
+ export declare const MatchRequestsToCandidatesConfig: {
166
+ method: "POST";
167
+ fields: [];
168
+ };
169
+ export interface MatchRequestsToCandidatesDataType {
170
+ }
171
+ export type MatchRequestsToCandidatesResponse = Response<MatchRequestsToCandidatesDataType>;
@@ -32,3 +32,7 @@ export const RemoveRequestsConfig = {
32
32
  method: 'POST',
33
33
  fields: [{ key: 'requestIds', type: 'string', required: true }],
34
34
  };
35
+ export const MatchRequestsToCandidatesConfig = {
36
+ method: 'POST',
37
+ fields: [],
38
+ };
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.1.59",
6
+ "version": "0.1.60",
7
7
  "license": "ISC",
8
8
  "author": "Nicolas Forêt <nicolas4@gmail.com>",
9
9
  "description": "Shared utilities for Appwrite functions",
@@ -27,7 +27,7 @@
27
27
  "bump-version:minor": "gulp bump-version --type=minor",
28
28
  "bump-version:patch": "gulp bump-version --type=patch",
29
29
  "deploy": "npm login && npm run build && npm run bump-version && npm publish --access public",
30
- "npm-update": "npx npkill && del package-lock.json && ncu -u && npm i"
30
+ "npm-update": "npx npkill -D -y && del package-lock.json && ncu -u && npm i"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@types/node": "25.5.0",