@caido/sdk-frontend 0.44.2-beta.2 → 0.44.2-beta.3
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
|
@@ -7121,6 +7121,11 @@ export type NewerVersionUserErrorFullFragment = {
|
|
|
7121
7121
|
version: number;
|
|
7122
7122
|
code: string;
|
|
7123
7123
|
};
|
|
7124
|
+
export type AuthorizationUserErrorFullFragment = {
|
|
7125
|
+
__typename: "AuthorizationUserError";
|
|
7126
|
+
reason: AuthorizationErrorReason;
|
|
7127
|
+
code: string;
|
|
7128
|
+
};
|
|
7124
7129
|
export type DataExportMetaFragment = {
|
|
7125
7130
|
__typename: "DataExport";
|
|
7126
7131
|
id: string;
|
|
@@ -15648,6 +15653,7 @@ export declare const StoreUserErrorFullFragmentDoc = "\n fragment storeUserEr
|
|
|
15648
15653
|
export declare const ProjectUserErrorFullFragmentDoc = "\n fragment projectUserErrorFull on ProjectUserError {\n ...userErrorFull\n projectReason: reason\n}\n ";
|
|
15649
15654
|
export declare const CertificateUserErrorFullFragmentDoc = "\n fragment certificateUserErrorFull on CertificateUserError {\n ...userErrorFull\n certificateReason: reason\n}\n ";
|
|
15650
15655
|
export declare const NewerVersionUserErrorFullFragmentDoc = "\n fragment newerVersionUserErrorFull on NewerVersionUserError {\n ...userErrorFull\n version\n}\n ";
|
|
15656
|
+
export declare const AuthorizationUserErrorFullFragmentDoc = "\n fragment authorizationUserErrorFull on AuthorizationUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
15651
15657
|
export declare const DataExportMetaFieldsFragmentDoc = "\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n ";
|
|
15652
15658
|
export declare const DataExportMetaFragmentDoc = "\n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n ";
|
|
15653
15659
|
export declare const DataExportFullFieldsFragmentDoc = "\n fragment dataExportFullFields on DataExport {\n ...dataExportMeta\n downloadUri\n}\n ";
|