Compare commits
2 Commits
dean/pool-
...
dean/camer
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6bc02ec47c | ||
| c92246510b |
@@ -2569,6 +2569,7 @@ export type MutationCreateCameraClaimSessionArgs = {
|
||||
agreedTermsVersion?: InputMaybe<Scalars["Int"]["input"]>;
|
||||
cameraId: Scalars["ID"]["input"];
|
||||
durationMinutes?: InputMaybe<Scalars["Int"]["input"]>;
|
||||
tags?: InputMaybe<Array<VideoTagInput>>;
|
||||
videoName?: InputMaybe<Scalars["String"]["input"]>;
|
||||
videoPrivate?: InputMaybe<Scalars["Boolean"]["input"]>;
|
||||
};
|
||||
@@ -6169,6 +6170,7 @@ export type CreateCameraClaimSessionMutationVariables = Exact<{
|
||||
videoName?: InputMaybe<Scalars["String"]["input"]>;
|
||||
videoPrivate?: InputMaybe<Scalars["Boolean"]["input"]>;
|
||||
agreedTermsVersion?: InputMaybe<Scalars["Int"]["input"]>;
|
||||
tags?: InputMaybe<Array<VideoTagInput> | VideoTagInput>;
|
||||
}>;
|
||||
|
||||
export type CreateCameraClaimSessionMutation = {
|
||||
@@ -13350,6 +13352,7 @@ export const CreateCameraClaimSessionDocument = gql`
|
||||
$videoName: String
|
||||
$videoPrivate: Boolean
|
||||
$agreedTermsVersion: Int
|
||||
$tags: [VideoTagInput!]
|
||||
) {
|
||||
createCameraClaimSession(
|
||||
cameraId: $cameraId
|
||||
@@ -13357,6 +13360,7 @@ export const CreateCameraClaimSessionDocument = gql`
|
||||
videoName: $videoName
|
||||
videoPrivate: $videoPrivate
|
||||
agreedTermsVersion: $agreedTermsVersion
|
||||
tags: $tags
|
||||
) {
|
||||
...CameraClaimSessionFields
|
||||
}
|
||||
@@ -13386,6 +13390,7 @@ export type CreateCameraClaimSessionMutationFn = Apollo.MutationFunction<
|
||||
* videoName: // value for 'videoName'
|
||||
* videoPrivate: // value for 'videoPrivate'
|
||||
* agreedTermsVersion: // value for 'agreedTermsVersion'
|
||||
* tags: // value for 'tags'
|
||||
* },
|
||||
* });
|
||||
*/
|
||||
|
||||
@@ -154,6 +154,7 @@ mutation CreateCameraClaimSession(
|
||||
$videoName: String
|
||||
$videoPrivate: Boolean
|
||||
$agreedTermsVersion: Int
|
||||
$tags: [VideoTagInput!]
|
||||
) {
|
||||
createCameraClaimSession(
|
||||
cameraId: $cameraId
|
||||
@@ -161,6 +162,7 @@ mutation CreateCameraClaimSession(
|
||||
videoName: $videoName
|
||||
videoPrivate: $videoPrivate
|
||||
agreedTermsVersion: $agreedTermsVersion
|
||||
tags: $tags
|
||||
) {
|
||||
...CameraClaimSessionFields
|
||||
}
|
||||
|
||||
@@ -1416,6 +1416,7 @@ type Mutation {
|
||||
videoName: String = null
|
||||
videoPrivate: Boolean = null
|
||||
agreedTermsVersion: Int = null
|
||||
tags: [VideoTagInput!] = null
|
||||
): CameraClaimSession!
|
||||
cancelCameraClaimSession(claimSessionId: ID!): CameraClaimSession!
|
||||
endCameraLease(leaseId: ID!): CameraLease!
|
||||
|
||||
Reference in New Issue
Block a user