@caido/sdk-frontend 0.45.2-beta.3 → 0.46.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caido/sdk-frontend",
3
- "version": "0.45.2-beta.3",
3
+ "version": "v0.46.0",
4
4
  "description": "Typing for the Caido Frontend SDK",
5
5
  "author": "Caido Labs Inc. <dev@caido.io>",
6
6
  "license": "MIT",
@@ -4187,6 +4187,17 @@ export type AutomateEntryMetaFragment = {
4187
4187
  id: string;
4188
4188
  };
4189
4189
  };
4190
+ export type AutomateEntryEdgeMetaFragment = {
4191
+ node: {
4192
+ __typename: "AutomateEntry";
4193
+ id: string;
4194
+ name: string;
4195
+ createdAt: Date;
4196
+ session: {
4197
+ id: string;
4198
+ };
4199
+ };
4200
+ };
4190
4201
  export type AutomateEntryFullFragment = {
4191
4202
  __typename: "AutomateEntry";
4192
4203
  id: string;
@@ -4364,6 +4375,23 @@ export type AutomateSessionMetaFragment = {
4364
4375
  };
4365
4376
  }>;
4366
4377
  };
4378
+ export type AutomateSessionEdgeMetaFragment = {
4379
+ node: {
4380
+ __typename: "AutomateSession";
4381
+ id: string;
4382
+ name: string;
4383
+ createdAt: Date;
4384
+ entries: Array<{
4385
+ __typename: "AutomateEntry";
4386
+ id: string;
4387
+ name: string;
4388
+ createdAt: Date;
4389
+ session: {
4390
+ id: string;
4391
+ };
4392
+ }>;
4393
+ };
4394
+ };
4367
4395
  export type AutomateSessionFullFragment = {
4368
4396
  __typename: "AutomateSession";
4369
4397
  raw: string;
@@ -5043,10 +5071,10 @@ export type AutomateEntryRequestsCountQuery = {
5043
5071
  };
5044
5072
  } | undefined | null;
5045
5073
  };
5046
- export type AutomateSessionsQueryVariables = Exact<{
5074
+ export type AutomateSessionsStateQueryVariables = Exact<{
5047
5075
  [key: string]: never;
5048
5076
  }>;
5049
- export type AutomateSessionsQuery = {
5077
+ export type AutomateSessionsStateQuery = {
5050
5078
  automateSessions: {
5051
5079
  edges: Array<{
5052
5080
  node: {
@@ -5066,6 +5094,30 @@ export type AutomateSessionsQuery = {
5066
5094
  };
5067
5095
  }>;
5068
5096
  };
5097
+ automateTasks: {
5098
+ edges: Array<{
5099
+ node: {
5100
+ id: string;
5101
+ paused: boolean;
5102
+ entry: {
5103
+ __typename: "AutomateEntry";
5104
+ id: string;
5105
+ name: string;
5106
+ createdAt: Date;
5107
+ session: {
5108
+ id: string;
5109
+ };
5110
+ };
5111
+ };
5112
+ }>;
5113
+ pageInfo: {
5114
+ __typename: "PageInfo";
5115
+ hasPreviousPage: boolean;
5116
+ hasNextPage: boolean;
5117
+ startCursor?: string | undefined | null;
5118
+ endCursor?: string | undefined | null;
5119
+ };
5120
+ };
5069
5121
  };
5070
5122
  export type AutomateSessionQueryVariables = Exact<{
5071
5123
  id: Scalars["ID"]["input"];
@@ -5153,38 +5205,6 @@ export type AutomateSessionQuery = {
5153
5205
  }>;
5154
5206
  } | undefined | null;
5155
5207
  };
5156
- export type AutomateTasksQueryVariables = Exact<{
5157
- after?: InputMaybe<Scalars["String"]["input"]>;
5158
- before?: InputMaybe<Scalars["String"]["input"]>;
5159
- first?: InputMaybe<Scalars["Int"]["input"]>;
5160
- last?: InputMaybe<Scalars["Int"]["input"]>;
5161
- }>;
5162
- export type AutomateTasksQuery = {
5163
- automateTasks: {
5164
- edges: Array<{
5165
- node: {
5166
- id: string;
5167
- paused: boolean;
5168
- entry: {
5169
- __typename: "AutomateEntry";
5170
- id: string;
5171
- name: string;
5172
- createdAt: Date;
5173
- session: {
5174
- id: string;
5175
- };
5176
- };
5177
- };
5178
- }>;
5179
- pageInfo: {
5180
- __typename: "PageInfo";
5181
- hasPreviousPage: boolean;
5182
- hasNextPage: boolean;
5183
- startCursor?: string | undefined | null;
5184
- endCursor?: string | undefined | null;
5185
- };
5186
- };
5187
- };
5188
5208
  export type DeleteAutomateEntriesMutationVariables = Exact<{
5189
5209
  ids: Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"];
5190
5210
  }>;
@@ -15802,6 +15822,7 @@ export declare const AssistantUsageFullFragmentDoc = "\n fragment assistantUs
15802
15822
  export declare const AuthenticationRequestFullFragmentDoc = "\n fragment authenticationRequestFull on AuthenticationRequest {\n __typename\n id\n expiresAt\n userCode\n verificationUrl\n}\n ";
15803
15823
  export declare const AuthenticationTokenFullFragmentDoc = "\n fragment authenticationTokenFull on AuthenticationToken {\n __typename\n accessToken\n expiresAt\n refreshToken\n scopes\n}\n ";
15804
15824
  export declare const AutomateEntryMetaFragmentDoc = "\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
15825
+ export declare const AutomateEntryEdgeMetaFragmentDoc = "\n fragment automateEntryEdgeMeta on AutomateEntryEdge {\n node {\n ...automateEntryMeta\n }\n}\n ";
15805
15826
  export declare const ConcurrencySettingFullFragmentDoc = "\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n ";
15806
15827
  export declare const RetryOnFailureSettingFullFragmentDoc = "\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n ";
15807
15828
  export declare const SimpleListPayloadOptionsFullFragmentDoc = "\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n ";
@@ -15825,6 +15846,7 @@ export declare const AutomateEntryRequestPayloadFullFragmentDoc = "\n fragmen
15825
15846
  export declare const AutomateEntryRequestMetaFragmentDoc = "\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n}\n ";
15826
15847
  export declare const AutomateEntryRequestEdgeMetaFragmentDoc = "\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n ";
15827
15848
  export declare const AutomateSessionMetaFragmentDoc = "\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n ";
15849
+ export declare const AutomateSessionEdgeMetaFragmentDoc = "\n fragment automateSessionEdgeMeta on AutomateSessionEdge {\n node {\n ...automateSessionMeta\n }\n}\n ";
15828
15850
  export declare const ConnectionInfoFullFragmentDoc = "\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
15829
15851
  export declare const AutomateSessionFullFragmentDoc = "\n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n ";
15830
15852
  export declare const AutomateTaskMetaFragmentDoc = "\n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n ";
@@ -15960,9 +15982,8 @@ export declare const AutomateEntryDocument = "\n query automateEntry($id: ID!
15960
15982
  export declare const AutomateEntryRequestsDocument = "\n query automateEntryRequests($id: ID!, $after: String, $first: Int, $before: String, $last: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\n filter: $filter\n ) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
15961
15983
  export declare const AutomateEntryRequestsByOffsetDocument = "\n query automateEntryRequestsByOffset($id: ID!, $limit: Int, $offset: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requestsByOffset(limit: $limit, offset: $offset, order: $order, filter: $filter) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
15962
15984
  export declare const AutomateEntryRequestsCountDocument = "\n query automateEntryRequestsCount($id: ID!, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(first: 0, filter: $filter) {\n count {\n ...countFull\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
15963
- export declare const AutomateSessionsDocument = "\n query automateSessions {\n automateSessions {\n edges {\n node {\n ...automateSessionMeta\n }\n }\n }\n}\n \n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
15985
+ export declare const AutomateSessionsStateDocument = "\n query automateSessionsState {\n automateSessions {\n edges {\n ...automateSessionEdgeMeta\n }\n }\n automateTasks {\n edges {\n ...automateTaskEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment automateSessionEdgeMeta on AutomateSessionEdge {\n node {\n ...automateSessionMeta\n }\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateTaskEdgeMeta on AutomateTaskEdge {\n node {\n ...automateTaskMeta\n }\n}\n \n\n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
15964
15986
  export declare const AutomateSessionDocument = "\n query automateSession($id: ID!) {\n automateSession(id: $id) {\n ...automateSessionFull\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
15965
- export declare const AutomateTasksDocument = "\n query automateTasks($after: String, $before: String, $first: Int, $last: Int) {\n automateTasks(after: $after, before: $before, first: $first, last: $last) {\n edges {\n node {\n ...automateTaskMeta\n }\n }\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
15966
15987
  export declare const DeleteAutomateEntriesDocument = "\n mutation deleteAutomateEntries($ids: [ID!]!) {\n deleteAutomateEntries(ids: $ids) {\n deletedIds\n errors {\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
15967
15988
  export declare const RenameAutomateEntryDocument = "\n mutation renameAutomateEntry($id: ID!, $name: String!) {\n renameAutomateEntry(id: $id, name: $name) {\n entry {\n ...automateEntryFull\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
15968
15989
  export declare const CreateAutomateSessionDocument = "\n mutation createAutomateSession($input: CreateAutomateSessionInput!) {\n createAutomateSession(input: $input) {\n session {\n ...automateSessionFull\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
@@ -15977,8 +15998,8 @@ export declare const CreatedAutomateEntryRequestDocument = "\n subscription c
15977
15998
  export declare const CreatedAutomateTaskDocument = "\n subscription createdAutomateTask {\n createdAutomateTask {\n automateTaskEdge {\n ...automateTaskEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateTaskEdgeMeta on AutomateTaskEdge {\n node {\n ...automateTaskMeta\n }\n}\n \n\n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
15978
15999
  export declare const DeletedAutomateTaskDocument = "\n subscription deletedAutomateTask {\n deletedAutomateTask {\n deletedAutomateTaskId\n snapshot\n }\n}\n ";
15979
16000
  export declare const UpdatedAutomateTaskDocument = "\n subscription updatedAutomateTask {\n updatedAutomateTask {\n automateTaskEdge {\n ...automateTaskEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateTaskEdgeMeta on AutomateTaskEdge {\n node {\n ...automateTaskMeta\n }\n}\n \n\n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
15980
- export declare const CreatedAutomateEntryDocument = "\n subscription createdAutomateEntry {\n createdAutomateEntry {\n automateEntryEdge {\n node {\n ...automateEntryMeta\n }\n }\n }\n}\n \n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
15981
- export declare const UpdatedAutomateEntryDocument = "\n subscription updatedAutomateEntry {\n updatedAutomateEntry {\n automateEntryEdge {\n node {\n ...automateEntryMeta\n }\n }\n snapshot\n }\n}\n \n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
16001
+ export declare const CreatedAutomateEntryDocument = "\n subscription createdAutomateEntry {\n createdAutomateEntry {\n automateEntryEdge {\n ...automateEntryEdgeMeta\n }\n }\n}\n \n fragment automateEntryEdgeMeta on AutomateEntryEdge {\n node {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
16002
+ export declare const UpdatedAutomateEntryDocument = "\n subscription updatedAutomateEntry {\n updatedAutomateEntry {\n automateEntryEdge {\n ...automateEntryEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateEntryEdgeMeta on AutomateEntryEdge {\n node {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
15982
16003
  export declare const DeletedAutomateEntryDocument = "\n subscription deletedAutomateEntry {\n deletedAutomateEntry {\n deletedAutomateEntryId\n }\n}\n ";
15983
16004
  export declare const CreatedAutomateSessionDocument = "\n subscription createdAutomateSession {\n createdAutomateSession {\n automateSessionEdge {\n node {\n ...automateSessionMeta\n }\n }\n }\n}\n \n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
15984
16005
  export declare const UpdatedAutomateSessionDocument = "\n subscription updatedAutomateSession {\n updatedAutomateSession {\n automateSessionEdge {\n node {\n ...automateSessionMeta\n }\n }\n snapshot\n }\n}\n \n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
@@ -16233,9 +16254,8 @@ export declare function getSdk<C>(requester: Requester<C>): {
16233
16254
  automateEntryRequests(variables: AutomateEntryRequestsQueryVariables, options?: C): Promise<AutomateEntryRequestsQuery>;
16234
16255
  automateEntryRequestsByOffset(variables: AutomateEntryRequestsByOffsetQueryVariables, options?: C): Promise<AutomateEntryRequestsByOffsetQuery>;
16235
16256
  automateEntryRequestsCount(variables: AutomateEntryRequestsCountQueryVariables, options?: C): Promise<AutomateEntryRequestsCountQuery>;
16236
- automateSessions(variables?: AutomateSessionsQueryVariables, options?: C): Promise<AutomateSessionsQuery>;
16257
+ automateSessionsState(variables?: AutomateSessionsStateQueryVariables, options?: C): Promise<AutomateSessionsStateQuery>;
16237
16258
  automateSession(variables: AutomateSessionQueryVariables, options?: C): Promise<AutomateSessionQuery>;
16238
- automateTasks(variables?: AutomateTasksQueryVariables, options?: C): Promise<AutomateTasksQuery>;
16239
16259
  deleteAutomateEntries(variables: DeleteAutomateEntriesMutationVariables, options?: C): Promise<DeleteAutomateEntriesMutation>;
16240
16260
  renameAutomateEntry(variables: RenameAutomateEntryMutationVariables, options?: C): Promise<RenameAutomateEntryMutation>;
16241
16261
  createAutomateSession(variables: CreateAutomateSessionMutationVariables, options?: C): Promise<CreateAutomateSessionMutation>;