@workbuddy/sdk-js-vnext 1.0.62 → 1.0.64

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.
Files changed (3) hide show
  1. package/index.d.ts +5 -0
  2. package/index.js +1 -1
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -3389,6 +3389,11 @@ export interface WorkBuddyCrmContactsStatusUpdateStatusParams extends WorkBuddyR
3389
3389
  }
3390
3390
 
3391
3391
  export interface WorkBuddyCrmInvitesListParams extends WorkBuddyRequestParams {
3392
+ /**
3393
+ * Search by name, phone, email (token prefix match)
3394
+ */
3395
+ search?: string;
3396
+
3392
3397
  cursor?: string;
3393
3398
 
3394
3399
  limit?: number;
package/index.js CHANGED
@@ -3055,7 +3055,7 @@ export const operations = [
3055
3055
  method: 'GET',
3056
3056
  path: '/invites',
3057
3057
  pathParams: [],
3058
- queryParams: ['cursor', 'limit'],
3058
+ queryParams: ['search', 'cursor', 'limit'],
3059
3059
  hasRequestBody: false,
3060
3060
  },
3061
3061
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@workbuddy/sdk-js-vnext",
3
- "version": "1.0.62",
3
+ "version": "1.0.64",
4
4
  "description": "WorkBuddy Public API JavaScript client",
5
5
  "license": "MIT",
6
6
  "type": "module",