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

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
@@ -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({