@wix/vibe-bookings-plugin 0.8.0 → 0.9.0

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/dist/index.cjs CHANGED
@@ -12209,7 +12209,9 @@ var StaffMembersAPIClient = class {
12209
12209
  }
12210
12210
  async queryStaffMembers(limit = 10) {
12211
12211
  const client = await this.createStaffMembersClient();
12212
- const response = await client.staffMembers.queryStaffMembers().limit(limit).find();
12212
+ const response = await client.staffMembers.queryStaffMembers({
12213
+ fields: [es_exports2.RequestedFields.RESOURCE_DETAILS]
12214
+ }).limit(limit).find();
12213
12215
  return response;
12214
12216
  }
12215
12217
  };