Xivgear Types Documentation
    Preparing search index...

    Class UserDataClient<SecurityDataType>

    xivgear-userdata-service

    0.0

    Type Parameters

    • SecurityDataType extends unknown

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    baseUrl: string = ""
    healthz: {
        healthCheck: (
            params?: RequestParams,
        ) => Promise<HttpResponse<string, any>>;
    } = ...

    Type Declaration

    • healthCheck: (params?: RequestParams) => Promise<HttpResponse<string, any>>

      No description

      HealthCheck

      GET:/healthz

      200 string healthCheck 200 response

    readyz: {
        readyCheck: (
            params?: RequestParams,
        ) => Promise<HttpResponse<string, any>>;
    } = ...

    Type Declaration

    • readyCheck: (params?: RequestParams) => Promise<HttpResponse<string, any>>

      No description

      ReadyCheck

      GET:/readyz

      200 string readyCheck 200 response

    userdata: {
        deleteSheet: (
            sheetId: string,
            data: DeleteSheetRequest,
            params?: RequestParams,
        ) => Promise<HttpResponse<DeleteSheetResponse, any>>;
        getPrefs: (
            params?: RequestParams,
        ) => Promise<HttpResponse<GetPreferencesResponse, any>>;
        getSheet: (
            sheetId: string,
            params?: RequestParams,
        ) => Promise<HttpResponse<GetSheetResponse, any>>;
        getSheetsList: (
            params?: RequestParams,
        ) => Promise<HttpResponse<GetSheetsResponse, any>>;
        putPrefs: (
            data: PutPreferencesRequest,
            params?: RequestParams,
        ) => Promise<HttpResponse<void, any>>;
        putSheet: (
            sheetId: string,
            data: PutSheetRequest,
            params?: RequestParams,
        ) => Promise<HttpResponse<PutSheetResponse, any>>;
    } = ...

    Type Declaration

    Methods