@caido/sdk-frontend 0.54.2-beta.11 → 0.54.2-beta.12

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.54.2-beta.11",
3
+ "version": "0.54.2-beta.12",
4
4
  "description": "Typing for the Caido Frontend SDK",
5
5
  "author": "Caido Labs Inc. <dev@caido.io>",
6
6
  "repository": "https://github.com/caido/sdk-js/",
@@ -21822,6 +21822,17 @@ export type CreatedLogLinesSubscription = {
21822
21822
  }>;
21823
21823
  };
21824
21824
  };
21825
+ export type UpdatedCloudStatusSubscriptionVariables = Exact<{
21826
+ [key: string]: never;
21827
+ }>;
21828
+ export type UpdatedCloudStatusSubscription = {
21829
+ updatedCloudStatus: {
21830
+ cloudStatus: {
21831
+ __typename: "CloudStatus";
21832
+ sync: boolean;
21833
+ };
21834
+ };
21835
+ };
21825
21836
  export type ScopeFullFragment = {
21826
21837
  __typename: "Scope";
21827
21838
  id: string;
@@ -24916,6 +24927,7 @@ export declare const GetCertificateDocument = "\n query getCertificate($passw
24916
24927
  export declare const ImportCertificateDocument = "\n mutation importCertificate($input: ImportCertificateInput!) {\n importCertificate(input: $input) {\n error {\n __typename\n ... on CertificateUserError {\n ...certificateUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment certificateUserErrorFull on CertificateUserError {\n ...userErrorFull\n certificateReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
24917
24928
  export declare const RegenerateCertificateDocument = "\n mutation regenerateCertificate {\n regenerateCertificate {\n success\n }\n}\n ";
24918
24929
  export declare const CreatedLogLinesDocument = "\n subscription createdLogLines($duration: Duration!) {\n createdLogLines(duration: $duration) {\n lines {\n ...logLineFull\n }\n }\n}\n \n fragment logLineFull on LogLine {\n __typename\n level\n message\n target\n timestamp\n}\n ";
24930
+ export declare const UpdatedCloudStatusDocument = "\n subscription updatedCloudStatus {\n updatedCloudStatus {\n cloudStatus {\n ...cloudStatusFull\n }\n }\n}\n \n fragment cloudStatusFull on CloudStatus {\n __typename\n sync\n}\n ";
24919
24931
  export declare const CreateScopeDocument = "\n mutation createScope($input: CreateScopeInput!) {\n createScope(input: $input) {\n error {\n ... on InvalidGlobTermsUserError {\n ...invalidGlobTermsUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n scope {\n ...scopeFull\n }\n }\n}\n \n fragment invalidGlobTermsUserErrorFull on InvalidGlobTermsUserError {\n ...userErrorFull\n terms\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment scopeFull on Scope {\n __typename\n id\n name\n allowlist\n denylist\n indexed\n}\n ";
24920
24932
  export declare const UpdateScopeDocument = "\n mutation updateScope($id: ID!, $input: UpdateScopeInput!) {\n updateScope(id: $id, input: $input) {\n error {\n ... on InvalidGlobTermsUserError {\n ...invalidGlobTermsUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n scope {\n ...scopeFull\n }\n }\n}\n \n fragment invalidGlobTermsUserErrorFull on InvalidGlobTermsUserError {\n ...userErrorFull\n terms\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment scopeFull on Scope {\n __typename\n id\n name\n allowlist\n denylist\n indexed\n}\n ";
24921
24933
  export declare const DeleteScopeDocument = "\n mutation deleteScope($id: ID!) {\n deleteScope(id: $id) {\n deletedId\n }\n}\n ";
@@ -25236,6 +25248,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
25236
25248
  importCertificate(variables: ImportCertificateMutationVariables, options?: C): Promise<ImportCertificateMutation>;
25237
25249
  regenerateCertificate(variables?: RegenerateCertificateMutationVariables, options?: C): Promise<RegenerateCertificateMutation>;
25238
25250
  createdLogLines(variables: CreatedLogLinesSubscriptionVariables, options?: C): AsyncIterable<CreatedLogLinesSubscription>;
25251
+ updatedCloudStatus(variables?: UpdatedCloudStatusSubscriptionVariables, options?: C): AsyncIterable<UpdatedCloudStatusSubscription>;
25239
25252
  createScope(variables: CreateScopeMutationVariables, options?: C): Promise<CreateScopeMutation>;
25240
25253
  updateScope(variables: UpdateScopeMutationVariables, options?: C): Promise<UpdateScopeMutation>;
25241
25254
  deleteScope(variables: DeleteScopeMutationVariables, options?: C): Promise<DeleteScopeMutation>;