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

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
@@ -1527,8 +1527,8 @@ declare const MemberSchema: z.ZodObject<{
1527
1527
  isActive: boolean;
1528
1528
  }>;
1529
1529
  declare enum Action {
1530
- ADD = "add",
1531
- REMOVE = "remove"
1530
+ ADD = "ADD",
1531
+ REMOVE = "REMOVE"
1532
1532
  }
1533
1533
  declare const ReportViewerUpdateSchema: z.ZodObject<{
1534
1534
  userId: z.ZodString;
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, context },
4783
+ { data: reportViewerUpdate },
4784
4784
  context
4785
4785
  );
4786
4786
  return data;
@@ -6183,8 +6183,8 @@ var MemberSchema = external_exports.object({
6183
6183
  isActive: external_exports.boolean()
6184
6184
  });
6185
6185
  var Action = /* @__PURE__ */ ((Action2) => {
6186
- Action2["ADD"] = "add";
6187
- Action2["REMOVE"] = "remove";
6186
+ Action2["ADD"] = "ADD";
6187
+ Action2["REMOVE"] = "REMOVE";
6188
6188
  return Action2;
6189
6189
  })(Action || {});
6190
6190
  var ReportViewerUpdateSchema = external_exports.object({