shred-api-client 2.6.2-rc.7 → 2.6.2-rc.9

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.d.ts CHANGED
@@ -1511,17 +1511,20 @@ declare const TenantSchema: z.ZodObject<{
1511
1511
  reportViewers?: string[] | undefined;
1512
1512
  }>;
1513
1513
  declare const MemberSchema: z.ZodObject<{
1514
+ id: z.ZodString;
1514
1515
  name: z.ZodString;
1515
1516
  email: z.ZodString;
1516
1517
  pictureUrl: z.ZodString;
1517
1518
  isActive: z.ZodBoolean;
1518
1519
  }, "strip", z.ZodTypeAny, {
1519
1520
  email: string;
1521
+ id: string;
1520
1522
  pictureUrl: string;
1521
1523
  name: string;
1522
1524
  isActive: boolean;
1523
1525
  }, {
1524
1526
  email: string;
1527
+ id: string;
1525
1528
  pictureUrl: string;
1526
1529
  name: string;
1527
1530
  isActive: boolean;
package/dist/index.js CHANGED
@@ -4780,7 +4780,7 @@ var TenantAPI = class {
4780
4780
  this.env,
4781
4781
  `${endpoint}`,
4782
4782
  endpointInfo.method,
4783
- { data: reportViewerUpdate },
4783
+ reportViewerUpdate,
4784
4784
  context
4785
4785
  );
4786
4786
  return data;
@@ -6177,6 +6177,7 @@ var TenantSchema = external_exports.object({
6177
6177
  reportViewers: external_exports.array(external_exports.string()).optional()
6178
6178
  });
6179
6179
  var MemberSchema = external_exports.object({
6180
+ id: external_exports.string(),
6180
6181
  name: external_exports.string(),
6181
6182
  email: external_exports.string(),
6182
6183
  pictureUrl: external_exports.string(),