authhero 0.223.0 → 0.224.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.
@@ -16203,7 +16203,7 @@ export declare function init(config: AuthHeroConfig): {
16203
16203
  };
16204
16204
  output: {};
16205
16205
  outputFormat: string;
16206
- status: 201;
16206
+ status: 204;
16207
16207
  };
16208
16208
  };
16209
16209
  } & {
package/dist/authhero.mjs CHANGED
@@ -20945,7 +20945,7 @@ const cx = qt.extend({
20945
20945
  }
20946
20946
  ],
20947
20947
  responses: {
20948
- 201: {
20948
+ 204: {
20949
20949
  description: "Members added successfully"
20950
20950
  }
20951
20951
  }
@@ -20967,10 +20967,7 @@ const cx = qt.extend({
20967
20967
  user_id: s,
20968
20968
  organization_id: n
20969
20969
  });
20970
- return t.json(
20971
- { message: "Members added successfully" },
20972
- { status: 201 }
20973
- );
20970
+ return new Response(null, { status: 204 });
20974
20971
  }
20975
20972
  ).openapi(
20976
20973
  U({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "authhero",
3
- "version": "0.223.0",
3
+ "version": "0.224.0",
4
4
  "files": [
5
5
  "dist"
6
6
  ],