@caido/schema-proxy 0.56.1 → 0.57.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/schema.graphql +3 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caido/schema-proxy",
3
- "version": "0.56.1",
3
+ "version": "0.57.0",
4
4
  "description": "Caido Proxy API schemas (GraphQL and OpenAPI)",
5
5
  "author": "Caido Labs Inc. <dev@caido.io>",
6
6
  "repository": "https://github.com/caido/schemas/",
package/schema.graphql CHANGED
@@ -890,6 +890,8 @@ type CreateReplaySessionCollectionPayload {
890
890
  collection: ReplaySessionCollection
891
891
  }
892
892
 
893
+ union CreateReplaySessionError = PermissionDeniedUserError | CloudUserError | OtherUserError
894
+
893
895
  input CreateReplaySessionInput {
894
896
  collectionId: ID
895
897
  kind: ReplaySessionKind!
@@ -898,6 +900,7 @@ input CreateReplaySessionInput {
898
900
  }
899
901
 
900
902
  type CreateReplaySessionPayload {
903
+ error: CreateReplaySessionError
901
904
  session: ReplaySession
902
905
  }
903
906