@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.
- package/package.json +1 -1
- package/schema.graphql +3 -0
package/package.json
CHANGED
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
|
|