@nixopus/api-client 0.0.3 → 0.0.4

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/dist/index.d.mts CHANGED
@@ -1,3 +1,6 @@
1
+ import * as _tanstack_query_core from '@tanstack/query-core';
2
+ import * as _tanstack_react_query from '@tanstack/react-query';
3
+ import { UseMutationOptions, InfiniteData } from '@tanstack/react-query';
1
4
  import { z } from 'zod';
2
5
 
3
6
  type AuthToken = string | undefined;
@@ -8856,6 +8859,3233 @@ declare const getWs: <ThrowOnError extends boolean = false>(options?: Options<Ge
8856
8859
  */
8857
8860
  declare const getWsLiveApplicationId: <ThrowOnError extends boolean = false>(options: Options<GetWsLiveApplicationIdData, ThrowOnError>) => RequestResult<GetWsLiveApplicationIdResponses, GetWsLiveApplicationIdErrors, ThrowOnError, "fields">;
8858
8861
 
8862
+ type QueryKey<TOptions extends Options> = [
8863
+ Pick<TOptions, 'baseUrl' | 'body' | 'headers' | 'path' | 'query'> & {
8864
+ _id: string;
8865
+ _infinite?: boolean;
8866
+ tags?: ReadonlyArray<string>;
8867
+ }
8868
+ ];
8869
+ declare const getApiV1AuditLogsQueryKey: (options?: Options<GetApiV1AuditLogsData>) => [Pick<Options<GetApiV1AuditLogsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8870
+ _id: string;
8871
+ _infinite?: boolean;
8872
+ tags?: ReadonlyArray<string>;
8873
+ }];
8874
+ /**
8875
+ * get recent audit logs
8876
+ *
8877
+ * #### Controller:
8878
+ *
8879
+ * `github.com/raghavyuva/nixopus-api/internal/features/audit/controller.(*AuditController).GetRecentAuditLogs`
8880
+ *
8881
+ * #### Middlewares:
8882
+ *
8883
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
8884
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
8885
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
8886
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
8887
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
8888
+ *
8889
+ * ---
8890
+ *
8891
+ *
8892
+ */
8893
+ declare const getApiV1AuditLogsOptions: (options?: Options<GetApiV1AuditLogsData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<GetActivitiesResponse, unknown, GetActivitiesResponse, [Pick<Options<GetApiV1AuditLogsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8894
+ _id: string;
8895
+ _infinite?: boolean;
8896
+ tags?: ReadonlyArray<string>;
8897
+ }]>, "queryFn"> & {
8898
+ queryFn?: _tanstack_query_core.QueryFunction<GetActivitiesResponse, [Pick<Options<GetApiV1AuditLogsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8899
+ _id: string;
8900
+ _infinite?: boolean;
8901
+ tags?: ReadonlyArray<string>;
8902
+ }], never> | undefined;
8903
+ } & {
8904
+ queryKey: [Pick<Options<GetApiV1AuditLogsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8905
+ _id: string;
8906
+ _infinite?: boolean;
8907
+ tags?: ReadonlyArray<string>;
8908
+ }] & {
8909
+ [dataTagSymbol]: GetActivitiesResponse;
8910
+ [dataTagErrorSymbol]: unknown;
8911
+ };
8912
+ };
8913
+ declare const getApiV1AuthBootstrapQueryKey: (options?: Options<GetApiV1AuthBootstrapData>) => [Pick<Options<GetApiV1AuthBootstrapData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8914
+ _id: string;
8915
+ _infinite?: boolean;
8916
+ tags?: ReadonlyArray<string>;
8917
+ }];
8918
+ /**
8919
+ * handle bootstrap
8920
+ *
8921
+ * #### Controller:
8922
+ *
8923
+ * `github.com/raghavyuva/nixopus-api/internal/features/auth/controller.(*AuthController).HandleBootstrap`
8924
+ *
8925
+ * #### Middlewares:
8926
+ *
8927
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
8928
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
8929
+ *
8930
+ * ---
8931
+ *
8932
+ *
8933
+ */
8934
+ declare const getApiV1AuthBootstrapOptions: (options?: Options<GetApiV1AuthBootstrapData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<BootstrapResponse, unknown, BootstrapResponse, [Pick<Options<GetApiV1AuthBootstrapData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8935
+ _id: string;
8936
+ _infinite?: boolean;
8937
+ tags?: ReadonlyArray<string>;
8938
+ }]>, "queryFn"> & {
8939
+ queryFn?: _tanstack_query_core.QueryFunction<BootstrapResponse, [Pick<Options<GetApiV1AuthBootstrapData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8940
+ _id: string;
8941
+ _infinite?: boolean;
8942
+ tags?: ReadonlyArray<string>;
8943
+ }], never> | undefined;
8944
+ } & {
8945
+ queryKey: [Pick<Options<GetApiV1AuthBootstrapData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8946
+ _id: string;
8947
+ _infinite?: boolean;
8948
+ tags?: ReadonlyArray<string>;
8949
+ }] & {
8950
+ [dataTagSymbol]: BootstrapResponse;
8951
+ [dataTagErrorSymbol]: unknown;
8952
+ };
8953
+ };
8954
+ /**
8955
+ * handle c l i init
8956
+ *
8957
+ * #### Controller:
8958
+ *
8959
+ * `github.com/raghavyuva/nixopus-api/internal/features/auth/controller.(*AuthController).HandleCLIInit`
8960
+ *
8961
+ * #### Middlewares:
8962
+ *
8963
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
8964
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
8965
+ *
8966
+ * ---
8967
+ *
8968
+ *
8969
+ */
8970
+ declare const postApiV1AuthCliInitMutation: (options?: Partial<Options<PostApiV1AuthCliInitData>>) => UseMutationOptions<PostApiV1AuthCliInitResponse, PostApiV1AuthCliInitError, Options<PostApiV1AuthCliInitData>>;
8971
+ declare const getApiV1AuthIsAdminRegisteredQueryKey: (options?: Options<GetApiV1AuthIsAdminRegisteredData>) => [Pick<Options<GetApiV1AuthIsAdminRegisteredData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8972
+ _id: string;
8973
+ _infinite?: boolean;
8974
+ tags?: ReadonlyArray<string>;
8975
+ }];
8976
+ /**
8977
+ * is admin registered
8978
+ *
8979
+ * #### Controller:
8980
+ *
8981
+ * `github.com/raghavyuva/nixopus-api/internal/features/auth/controller.(*AuthController).IsAdminRegistered`
8982
+ *
8983
+ * #### Middlewares:
8984
+ *
8985
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
8986
+ *
8987
+ * ---
8988
+ *
8989
+ *
8990
+ */
8991
+ declare const getApiV1AuthIsAdminRegisteredOptions: (options?: Options<GetApiV1AuthIsAdminRegisteredData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<AdminRegisteredResponse, unknown, AdminRegisteredResponse, [Pick<Options<GetApiV1AuthIsAdminRegisteredData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8992
+ _id: string;
8993
+ _infinite?: boolean;
8994
+ tags?: ReadonlyArray<string>;
8995
+ }]>, "queryFn"> & {
8996
+ queryFn?: _tanstack_query_core.QueryFunction<AdminRegisteredResponse, [Pick<Options<GetApiV1AuthIsAdminRegisteredData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8997
+ _id: string;
8998
+ _infinite?: boolean;
8999
+ tags?: ReadonlyArray<string>;
9000
+ }], never> | undefined;
9001
+ } & {
9002
+ queryKey: [Pick<Options<GetApiV1AuthIsAdminRegisteredData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9003
+ _id: string;
9004
+ _infinite?: boolean;
9005
+ tags?: ReadonlyArray<string>;
9006
+ }] & {
9007
+ [dataTagSymbol]: AdminRegisteredResponse;
9008
+ [dataTagErrorSymbol]: unknown;
9009
+ };
9010
+ };
9011
+ declare const getApiV1ContainerQueryKey: (options?: Options<GetApiV1ContainerData>) => [Pick<Options<GetApiV1ContainerData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9012
+ _id: string;
9013
+ _infinite?: boolean;
9014
+ tags?: ReadonlyArray<string>;
9015
+ }];
9016
+ /**
9017
+ * list containers
9018
+ *
9019
+ * #### Controller:
9020
+ *
9021
+ * `github.com/raghavyuva/nixopus-api/internal/features/container/controller.(*ContainerController).ListContainers`
9022
+ *
9023
+ * #### Middlewares:
9024
+ *
9025
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9026
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9027
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9028
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9029
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9030
+ *
9031
+ * ---
9032
+ *
9033
+ *
9034
+ */
9035
+ declare const getApiV1ContainerOptions: (options?: Options<GetApiV1ContainerData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<ListContainersResponse, unknown, ListContainersResponse, [Pick<Options<GetApiV1ContainerData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9036
+ _id: string;
9037
+ _infinite?: boolean;
9038
+ tags?: ReadonlyArray<string>;
9039
+ }]>, "queryFn"> & {
9040
+ queryFn?: _tanstack_query_core.QueryFunction<ListContainersResponse, [Pick<Options<GetApiV1ContainerData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9041
+ _id: string;
9042
+ _infinite?: boolean;
9043
+ tags?: ReadonlyArray<string>;
9044
+ }], never> | undefined;
9045
+ } & {
9046
+ queryKey: [Pick<Options<GetApiV1ContainerData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9047
+ _id: string;
9048
+ _infinite?: boolean;
9049
+ tags?: ReadonlyArray<string>;
9050
+ }] & {
9051
+ [dataTagSymbol]: ListContainersResponse;
9052
+ [dataTagErrorSymbol]: unknown;
9053
+ };
9054
+ };
9055
+ /**
9056
+ * list images
9057
+ *
9058
+ * #### Controller:
9059
+ *
9060
+ * `github.com/raghavyuva/nixopus-api/internal/features/container/controller.(*ContainerController).ListImages`
9061
+ *
9062
+ * #### Middlewares:
9063
+ *
9064
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9065
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9066
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9067
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9068
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9069
+ *
9070
+ * ---
9071
+ *
9072
+ *
9073
+ */
9074
+ declare const postApiV1ContainerImagesMutation: (options?: Partial<Options<PostApiV1ContainerImagesData>>) => UseMutationOptions<PostApiV1ContainerImagesResponse, PostApiV1ContainerImagesError, Options<PostApiV1ContainerImagesData>>;
9075
+ /**
9076
+ * prune build cache
9077
+ *
9078
+ * #### Controller:
9079
+ *
9080
+ * `github.com/raghavyuva/nixopus-api/internal/features/container/controller.(*ContainerController).PruneBuildCache`
9081
+ *
9082
+ * #### Middlewares:
9083
+ *
9084
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9085
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9086
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9087
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9088
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9089
+ *
9090
+ * ---
9091
+ *
9092
+ *
9093
+ */
9094
+ declare const postApiV1ContainerPruneBuildCacheMutation: (options?: Partial<Options<PostApiV1ContainerPruneBuildCacheData>>) => UseMutationOptions<PostApiV1ContainerPruneBuildCacheResponse, PostApiV1ContainerPruneBuildCacheError, Options<PostApiV1ContainerPruneBuildCacheData>>;
9095
+ /**
9096
+ * prune images
9097
+ *
9098
+ * #### Controller:
9099
+ *
9100
+ * `github.com/raghavyuva/nixopus-api/internal/features/container/controller.(*ContainerController).PruneImages`
9101
+ *
9102
+ * #### Middlewares:
9103
+ *
9104
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9105
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9106
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9107
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9108
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9109
+ *
9110
+ * ---
9111
+ *
9112
+ *
9113
+ */
9114
+ declare const postApiV1ContainerPruneImagesMutation: (options?: Partial<Options<PostApiV1ContainerPruneImagesData>>) => UseMutationOptions<PostApiV1ContainerPruneImagesResponse, PostApiV1ContainerPruneImagesError, Options<PostApiV1ContainerPruneImagesData>>;
9115
+ /**
9116
+ * remove container
9117
+ *
9118
+ * #### Controller:
9119
+ *
9120
+ * `github.com/raghavyuva/nixopus-api/internal/features/container/controller.(*ContainerController).RemoveContainer`
9121
+ *
9122
+ * #### Middlewares:
9123
+ *
9124
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9125
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9126
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9127
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9128
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9129
+ *
9130
+ * ---
9131
+ *
9132
+ *
9133
+ */
9134
+ declare const deleteApiV1ContainerContainerIdMutation: (options?: Partial<Options<DeleteApiV1ContainerContainerIdData>>) => UseMutationOptions<DeleteApiV1ContainerContainerIdResponse, DeleteApiV1ContainerContainerIdError, Options<DeleteApiV1ContainerContainerIdData>>;
9135
+ declare const getApiV1ContainerContainerIdQueryKey: (options: Options<GetApiV1ContainerContainerIdData>) => [Pick<Options<GetApiV1ContainerContainerIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9136
+ _id: string;
9137
+ _infinite?: boolean;
9138
+ tags?: ReadonlyArray<string>;
9139
+ }];
9140
+ /**
9141
+ * get container
9142
+ *
9143
+ * #### Controller:
9144
+ *
9145
+ * `github.com/raghavyuva/nixopus-api/internal/features/container/controller.(*ContainerController).GetContainer`
9146
+ *
9147
+ * #### Middlewares:
9148
+ *
9149
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9150
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9151
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9152
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9153
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9154
+ *
9155
+ * ---
9156
+ *
9157
+ *
9158
+ */
9159
+ declare const getApiV1ContainerContainerIdOptions: (options: Options<GetApiV1ContainerContainerIdData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<GetContainerResponse, unknown, GetContainerResponse, [Pick<Options<GetApiV1ContainerContainerIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9160
+ _id: string;
9161
+ _infinite?: boolean;
9162
+ tags?: ReadonlyArray<string>;
9163
+ }]>, "queryFn"> & {
9164
+ queryFn?: _tanstack_query_core.QueryFunction<GetContainerResponse, [Pick<Options<GetApiV1ContainerContainerIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9165
+ _id: string;
9166
+ _infinite?: boolean;
9167
+ tags?: ReadonlyArray<string>;
9168
+ }], never> | undefined;
9169
+ } & {
9170
+ queryKey: [Pick<Options<GetApiV1ContainerContainerIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9171
+ _id: string;
9172
+ _infinite?: boolean;
9173
+ tags?: ReadonlyArray<string>;
9174
+ }] & {
9175
+ [dataTagSymbol]: GetContainerResponse;
9176
+ [dataTagErrorSymbol]: unknown;
9177
+ };
9178
+ };
9179
+ /**
9180
+ * get container logs
9181
+ *
9182
+ * #### Controller:
9183
+ *
9184
+ * `github.com/raghavyuva/nixopus-api/internal/features/container/controller.(*ContainerController).GetContainerLogs`
9185
+ *
9186
+ * #### Middlewares:
9187
+ *
9188
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9189
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9190
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9191
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9192
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9193
+ *
9194
+ * ---
9195
+ *
9196
+ *
9197
+ */
9198
+ declare const postApiV1ContainerContainerIdLogsMutation: (options?: Partial<Options<PostApiV1ContainerContainerIdLogsData>>) => UseMutationOptions<PostApiV1ContainerContainerIdLogsResponse, PostApiV1ContainerContainerIdLogsError, Options<PostApiV1ContainerContainerIdLogsData>>;
9199
+ /**
9200
+ * update container resources
9201
+ *
9202
+ * #### Controller:
9203
+ *
9204
+ * `github.com/raghavyuva/nixopus-api/internal/features/container/controller.(*ContainerController).UpdateContainerResources`
9205
+ *
9206
+ * #### Middlewares:
9207
+ *
9208
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9209
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9210
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9211
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9212
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9213
+ *
9214
+ * ---
9215
+ *
9216
+ *
9217
+ */
9218
+ declare const putApiV1ContainerContainerIdResourcesMutation: (options?: Partial<Options<PutApiV1ContainerContainerIdResourcesData>>) => UseMutationOptions<PutApiV1ContainerContainerIdResourcesResponse, PutApiV1ContainerContainerIdResourcesError, Options<PutApiV1ContainerContainerIdResourcesData>>;
9219
+ /**
9220
+ * restart container
9221
+ *
9222
+ * #### Controller:
9223
+ *
9224
+ * `github.com/raghavyuva/nixopus-api/internal/features/container/controller.(*ContainerController).RestartContainer`
9225
+ *
9226
+ * #### Middlewares:
9227
+ *
9228
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9229
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9230
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9231
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9232
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9233
+ *
9234
+ * ---
9235
+ *
9236
+ *
9237
+ */
9238
+ declare const postApiV1ContainerContainerIdRestartMutation: (options?: Partial<Options<PostApiV1ContainerContainerIdRestartData>>) => UseMutationOptions<PostApiV1ContainerContainerIdRestartResponse, PostApiV1ContainerContainerIdRestartError, Options<PostApiV1ContainerContainerIdRestartData>>;
9239
+ /**
9240
+ * start container
9241
+ *
9242
+ * #### Controller:
9243
+ *
9244
+ * `github.com/raghavyuva/nixopus-api/internal/features/container/controller.(*ContainerController).StartContainer`
9245
+ *
9246
+ * #### Middlewares:
9247
+ *
9248
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9249
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9250
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9251
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9252
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9253
+ *
9254
+ * ---
9255
+ *
9256
+ *
9257
+ */
9258
+ declare const postApiV1ContainerContainerIdStartMutation: (options?: Partial<Options<PostApiV1ContainerContainerIdStartData>>) => UseMutationOptions<PostApiV1ContainerContainerIdStartResponse, PostApiV1ContainerContainerIdStartError, Options<PostApiV1ContainerContainerIdStartData>>;
9259
+ /**
9260
+ * stop container
9261
+ *
9262
+ * #### Controller:
9263
+ *
9264
+ * `github.com/raghavyuva/nixopus-api/internal/features/container/controller.(*ContainerController).StopContainer`
9265
+ *
9266
+ * #### Middlewares:
9267
+ *
9268
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9269
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9270
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9271
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9272
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9273
+ *
9274
+ * ---
9275
+ *
9276
+ *
9277
+ */
9278
+ declare const postApiV1ContainerContainerIdStopMutation: (options?: Partial<Options<PostApiV1ContainerContainerIdStopData>>) => UseMutationOptions<PostApiV1ContainerContainerIdStopResponse, PostApiV1ContainerContainerIdStopError, Options<PostApiV1ContainerContainerIdStopData>>;
9279
+ /**
9280
+ * delete application
9281
+ *
9282
+ * #### Controller:
9283
+ *
9284
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).DeleteApplication`
9285
+ *
9286
+ * #### Middlewares:
9287
+ *
9288
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9289
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9290
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9291
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9292
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9293
+ *
9294
+ * ---
9295
+ *
9296
+ *
9297
+ */
9298
+ declare const deleteApiV1DeployApplicationMutation: (options?: Partial<Options<DeleteApiV1DeployApplicationData>>) => UseMutationOptions<DeleteApiV1DeployApplicationResponse, DeleteApiV1DeployApplicationError, Options<DeleteApiV1DeployApplicationData>>;
9299
+ declare const getApiV1DeployApplicationQueryKey: (options?: Options<GetApiV1DeployApplicationData>) => [Pick<Options<GetApiV1DeployApplicationData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9300
+ _id: string;
9301
+ _infinite?: boolean;
9302
+ tags?: ReadonlyArray<string>;
9303
+ }];
9304
+ /**
9305
+ * get application by id
9306
+ *
9307
+ * #### Controller:
9308
+ *
9309
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).GetApplicationById`
9310
+ *
9311
+ * #### Middlewares:
9312
+ *
9313
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9314
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9315
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9316
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9317
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9318
+ *
9319
+ * ---
9320
+ *
9321
+ *
9322
+ */
9323
+ declare const getApiV1DeployApplicationOptions: (options?: Options<GetApiV1DeployApplicationData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<ApplicationResponse, unknown, ApplicationResponse, [Pick<Options<GetApiV1DeployApplicationData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9324
+ _id: string;
9325
+ _infinite?: boolean;
9326
+ tags?: ReadonlyArray<string>;
9327
+ }]>, "queryFn"> & {
9328
+ queryFn?: _tanstack_query_core.QueryFunction<ApplicationResponse, [Pick<Options<GetApiV1DeployApplicationData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9329
+ _id: string;
9330
+ _infinite?: boolean;
9331
+ tags?: ReadonlyArray<string>;
9332
+ }], never> | undefined;
9333
+ } & {
9334
+ queryKey: [Pick<Options<GetApiV1DeployApplicationData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9335
+ _id: string;
9336
+ _infinite?: boolean;
9337
+ tags?: ReadonlyArray<string>;
9338
+ }] & {
9339
+ [dataTagSymbol]: ApplicationResponse;
9340
+ [dataTagErrorSymbol]: unknown;
9341
+ };
9342
+ };
9343
+ /**
9344
+ * handle deploy
9345
+ *
9346
+ * #### Controller:
9347
+ *
9348
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).HandleDeploy`
9349
+ *
9350
+ * #### Middlewares:
9351
+ *
9352
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9353
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9354
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9355
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9356
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9357
+ *
9358
+ * ---
9359
+ *
9360
+ *
9361
+ */
9362
+ declare const postApiV1DeployApplicationMutation: (options?: Partial<Options<PostApiV1DeployApplicationData>>) => UseMutationOptions<PostApiV1DeployApplicationResponse, PostApiV1DeployApplicationError, Options<PostApiV1DeployApplicationData>>;
9363
+ /**
9364
+ * update application
9365
+ *
9366
+ * #### Controller:
9367
+ *
9368
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).UpdateApplication`
9369
+ *
9370
+ * #### Middlewares:
9371
+ *
9372
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9373
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9374
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9375
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9376
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9377
+ *
9378
+ * ---
9379
+ *
9380
+ *
9381
+ */
9382
+ declare const putApiV1DeployApplicationMutation: (options?: Partial<Options<PutApiV1DeployApplicationData>>) => UseMutationOptions<PutApiV1DeployApplicationResponse, PutApiV1DeployApplicationError, Options<PutApiV1DeployApplicationData>>;
9383
+ declare const getApiV1DeployApplicationDeploymentsQueryKey: (options: Options<GetApiV1DeployApplicationDeploymentsData>) => [Pick<Options<GetApiV1DeployApplicationDeploymentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9384
+ _id: string;
9385
+ _infinite?: boolean;
9386
+ tags?: ReadonlyArray<string>;
9387
+ }];
9388
+ /**
9389
+ * get application deployments
9390
+ *
9391
+ * #### Controller:
9392
+ *
9393
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).GetApplicationDeployments`
9394
+ *
9395
+ * #### Middlewares:
9396
+ *
9397
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9398
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9399
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9400
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9401
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9402
+ *
9403
+ * ---
9404
+ *
9405
+ *
9406
+ */
9407
+ declare const getApiV1DeployApplicationDeploymentsOptions: (options: Options<GetApiV1DeployApplicationDeploymentsData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<ListDeploymentsResponse, unknown, ListDeploymentsResponse, [Pick<Options<GetApiV1DeployApplicationDeploymentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9408
+ _id: string;
9409
+ _infinite?: boolean;
9410
+ tags?: ReadonlyArray<string>;
9411
+ }]>, "queryFn"> & {
9412
+ queryFn?: _tanstack_query_core.QueryFunction<ListDeploymentsResponse, [Pick<Options<GetApiV1DeployApplicationDeploymentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9413
+ _id: string;
9414
+ _infinite?: boolean;
9415
+ tags?: ReadonlyArray<string>;
9416
+ }], never> | undefined;
9417
+ } & {
9418
+ queryKey: [Pick<Options<GetApiV1DeployApplicationDeploymentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9419
+ _id: string;
9420
+ _infinite?: boolean;
9421
+ tags?: ReadonlyArray<string>;
9422
+ }] & {
9423
+ [dataTagSymbol]: ListDeploymentsResponse;
9424
+ [dataTagErrorSymbol]: unknown;
9425
+ };
9426
+ };
9427
+ declare const getApiV1DeployApplicationDeploymentsInfiniteQueryKey: (options: Options<GetApiV1DeployApplicationDeploymentsData>) => QueryKey<Options<GetApiV1DeployApplicationDeploymentsData>>;
9428
+ /**
9429
+ * get application deployments
9430
+ *
9431
+ * #### Controller:
9432
+ *
9433
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).GetApplicationDeployments`
9434
+ *
9435
+ * #### Middlewares:
9436
+ *
9437
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9438
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9439
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9440
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9441
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9442
+ *
9443
+ * ---
9444
+ *
9445
+ *
9446
+ */
9447
+ declare const getApiV1DeployApplicationDeploymentsInfiniteOptions: (options: Options<GetApiV1DeployApplicationDeploymentsData>) => _tanstack_react_query.UseInfiniteQueryOptions<ListDeploymentsResponse, unknown, InfiniteData<ListDeploymentsResponse, unknown>, QueryKey<Options<GetApiV1DeployApplicationDeploymentsData>>, string | Pick<Pick<Options<GetApiV1DeployApplicationDeploymentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9448
+ _id: string;
9449
+ _infinite?: boolean;
9450
+ tags?: ReadonlyArray<string>;
9451
+ }, "query" | "body" | "headers" | "path">> & {
9452
+ initialData: InfiniteData<ListDeploymentsResponse, string | Pick<Pick<Options<GetApiV1DeployApplicationDeploymentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9453
+ _id: string;
9454
+ _infinite?: boolean;
9455
+ tags?: ReadonlyArray<string>;
9456
+ }, "query" | "body" | "headers" | "path">> | (() => InfiniteData<ListDeploymentsResponse, string | Pick<Pick<Options<GetApiV1DeployApplicationDeploymentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9457
+ _id: string;
9458
+ _infinite?: boolean;
9459
+ tags?: ReadonlyArray<string>;
9460
+ }, "query" | "body" | "headers" | "path">>) | undefined;
9461
+ } & {
9462
+ queryKey: QueryKey<Options<GetApiV1DeployApplicationDeploymentsData>> & {
9463
+ [dataTagSymbol]: InfiniteData<ListDeploymentsResponse, unknown>;
9464
+ [dataTagErrorSymbol]: unknown;
9465
+ };
9466
+ };
9467
+ declare const getApiV1DeployApplicationDeploymentsDeploymentIdQueryKey: (options: Options<GetApiV1DeployApplicationDeploymentsDeploymentIdData>) => [Pick<Options<GetApiV1DeployApplicationDeploymentsDeploymentIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9468
+ _id: string;
9469
+ _infinite?: boolean;
9470
+ tags?: ReadonlyArray<string>;
9471
+ }];
9472
+ /**
9473
+ * get deployment by id
9474
+ *
9475
+ * #### Controller:
9476
+ *
9477
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).GetDeploymentById`
9478
+ *
9479
+ * #### Middlewares:
9480
+ *
9481
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9482
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9483
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9484
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9485
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9486
+ *
9487
+ * ---
9488
+ *
9489
+ *
9490
+ */
9491
+ declare const getApiV1DeployApplicationDeploymentsDeploymentIdOptions: (options: Options<GetApiV1DeployApplicationDeploymentsDeploymentIdData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<DeploymentResponse, unknown, DeploymentResponse, [Pick<Options<GetApiV1DeployApplicationDeploymentsDeploymentIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9492
+ _id: string;
9493
+ _infinite?: boolean;
9494
+ tags?: ReadonlyArray<string>;
9495
+ }]>, "queryFn"> & {
9496
+ queryFn?: _tanstack_query_core.QueryFunction<DeploymentResponse, [Pick<Options<GetApiV1DeployApplicationDeploymentsDeploymentIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9497
+ _id: string;
9498
+ _infinite?: boolean;
9499
+ tags?: ReadonlyArray<string>;
9500
+ }], never> | undefined;
9501
+ } & {
9502
+ queryKey: [Pick<Options<GetApiV1DeployApplicationDeploymentsDeploymentIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9503
+ _id: string;
9504
+ _infinite?: boolean;
9505
+ tags?: ReadonlyArray<string>;
9506
+ }] & {
9507
+ [dataTagSymbol]: DeploymentResponse;
9508
+ [dataTagErrorSymbol]: unknown;
9509
+ };
9510
+ };
9511
+ declare const getApiV1DeployApplicationDeploymentsDeploymentIdLogsQueryKey: (options: Options<GetApiV1DeployApplicationDeploymentsDeploymentIdLogsData>) => [Pick<Options<GetApiV1DeployApplicationDeploymentsDeploymentIdLogsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9512
+ _id: string;
9513
+ _infinite?: boolean;
9514
+ tags?: ReadonlyArray<string>;
9515
+ }];
9516
+ /**
9517
+ * get deployment logs
9518
+ *
9519
+ * #### Controller:
9520
+ *
9521
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).GetDeploymentLogs`
9522
+ *
9523
+ * #### Middlewares:
9524
+ *
9525
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9526
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9527
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9528
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9529
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9530
+ *
9531
+ * ---
9532
+ *
9533
+ *
9534
+ */
9535
+ declare const getApiV1DeployApplicationDeploymentsDeploymentIdLogsOptions: (options: Options<GetApiV1DeployApplicationDeploymentsDeploymentIdLogsData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<LogsResponse, unknown, LogsResponse, [Pick<Options<GetApiV1DeployApplicationDeploymentsDeploymentIdLogsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9536
+ _id: string;
9537
+ _infinite?: boolean;
9538
+ tags?: ReadonlyArray<string>;
9539
+ }]>, "queryFn"> & {
9540
+ queryFn?: _tanstack_query_core.QueryFunction<LogsResponse, [Pick<Options<GetApiV1DeployApplicationDeploymentsDeploymentIdLogsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9541
+ _id: string;
9542
+ _infinite?: boolean;
9543
+ tags?: ReadonlyArray<string>;
9544
+ }], never> | undefined;
9545
+ } & {
9546
+ queryKey: [Pick<Options<GetApiV1DeployApplicationDeploymentsDeploymentIdLogsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9547
+ _id: string;
9548
+ _infinite?: boolean;
9549
+ tags?: ReadonlyArray<string>;
9550
+ }] & {
9551
+ [dataTagSymbol]: LogsResponse;
9552
+ [dataTagErrorSymbol]: unknown;
9553
+ };
9554
+ };
9555
+ /**
9556
+ * remove application domain
9557
+ *
9558
+ * #### Controller:
9559
+ *
9560
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).RemoveApplicationDomain`
9561
+ *
9562
+ * #### Middlewares:
9563
+ *
9564
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9565
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9566
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9567
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9568
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9569
+ *
9570
+ * ---
9571
+ *
9572
+ *
9573
+ */
9574
+ declare const deleteApiV1DeployApplicationDomainsMutation: (options?: Partial<Options<DeleteApiV1DeployApplicationDomainsData>>) => UseMutationOptions<DeleteApiV1DeployApplicationDomainsResponse, DeleteApiV1DeployApplicationDomainsError, Options<DeleteApiV1DeployApplicationDomainsData>>;
9575
+ /**
9576
+ * add application domain
9577
+ *
9578
+ * #### Controller:
9579
+ *
9580
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).AddApplicationDomain`
9581
+ *
9582
+ * #### Middlewares:
9583
+ *
9584
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9585
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9586
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9587
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9588
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9589
+ *
9590
+ * ---
9591
+ *
9592
+ *
9593
+ */
9594
+ declare const postApiV1DeployApplicationDomainsMutation: (options?: Partial<Options<PostApiV1DeployApplicationDomainsData>>) => UseMutationOptions<PostApiV1DeployApplicationDomainsResponse, PostApiV1DeployApplicationDomainsError, Options<PostApiV1DeployApplicationDomainsData>>;
9595
+ /**
9596
+ * update application labels
9597
+ *
9598
+ * #### Controller:
9599
+ *
9600
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).UpdateApplicationLabels`
9601
+ *
9602
+ * #### Middlewares:
9603
+ *
9604
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9605
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9606
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9607
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9608
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9609
+ *
9610
+ * ---
9611
+ *
9612
+ *
9613
+ */
9614
+ declare const putApiV1DeployApplicationLabelsMutation: (options?: Partial<Options<PutApiV1DeployApplicationLabelsData>>) => UseMutationOptions<PutApiV1DeployApplicationLabelsResponse, PutApiV1DeployApplicationLabelsError, Options<PutApiV1DeployApplicationLabelsData>>;
9615
+ declare const getApiV1DeployApplicationLogsApplicationIdQueryKey: (options: Options<GetApiV1DeployApplicationLogsApplicationIdData>) => [Pick<Options<GetApiV1DeployApplicationLogsApplicationIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9616
+ _id: string;
9617
+ _infinite?: boolean;
9618
+ tags?: ReadonlyArray<string>;
9619
+ }];
9620
+ /**
9621
+ * get logs
9622
+ *
9623
+ * #### Controller:
9624
+ *
9625
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).GetLogs`
9626
+ *
9627
+ * #### Middlewares:
9628
+ *
9629
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9630
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9631
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9632
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9633
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9634
+ *
9635
+ * ---
9636
+ *
9637
+ *
9638
+ */
9639
+ declare const getApiV1DeployApplicationLogsApplicationIdOptions: (options: Options<GetApiV1DeployApplicationLogsApplicationIdData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<LogsResponse, unknown, LogsResponse, [Pick<Options<GetApiV1DeployApplicationLogsApplicationIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9640
+ _id: string;
9641
+ _infinite?: boolean;
9642
+ tags?: ReadonlyArray<string>;
9643
+ }]>, "queryFn"> & {
9644
+ queryFn?: _tanstack_query_core.QueryFunction<LogsResponse, [Pick<Options<GetApiV1DeployApplicationLogsApplicationIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9645
+ _id: string;
9646
+ _infinite?: boolean;
9647
+ tags?: ReadonlyArray<string>;
9648
+ }], never> | undefined;
9649
+ } & {
9650
+ queryKey: [Pick<Options<GetApiV1DeployApplicationLogsApplicationIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9651
+ _id: string;
9652
+ _infinite?: boolean;
9653
+ tags?: ReadonlyArray<string>;
9654
+ }] & {
9655
+ [dataTagSymbol]: LogsResponse;
9656
+ [dataTagErrorSymbol]: unknown;
9657
+ };
9658
+ };
9659
+ /**
9660
+ * handle create project
9661
+ *
9662
+ * #### Controller:
9663
+ *
9664
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).HandleCreateProject`
9665
+ *
9666
+ * #### Middlewares:
9667
+ *
9668
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9669
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9670
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9671
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9672
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9673
+ *
9674
+ * ---
9675
+ *
9676
+ *
9677
+ */
9678
+ declare const postApiV1DeployApplicationProjectMutation: (options?: Partial<Options<PostApiV1DeployApplicationProjectData>>) => UseMutationOptions<PostApiV1DeployApplicationProjectResponse, PostApiV1DeployApplicationProjectError, Options<PostApiV1DeployApplicationProjectData>>;
9679
+ /**
9680
+ * handle add application to family
9681
+ *
9682
+ * #### Controller:
9683
+ *
9684
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).HandleAddApplicationToFamily`
9685
+ *
9686
+ * #### Middlewares:
9687
+ *
9688
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9689
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9690
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9691
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9692
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9693
+ *
9694
+ * ---
9695
+ *
9696
+ *
9697
+ */
9698
+ declare const postApiV1DeployApplicationProjectAddToFamilyMutation: (options?: Partial<Options<PostApiV1DeployApplicationProjectAddToFamilyData>>) => UseMutationOptions<PostApiV1DeployApplicationProjectAddToFamilyResponse, PostApiV1DeployApplicationProjectAddToFamilyError, Options<PostApiV1DeployApplicationProjectAddToFamilyData>>;
9699
+ /**
9700
+ * handle deploy project
9701
+ *
9702
+ * #### Controller:
9703
+ *
9704
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).HandleDeployProject`
9705
+ *
9706
+ * #### Middlewares:
9707
+ *
9708
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9709
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9710
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9711
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9712
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9713
+ *
9714
+ * ---
9715
+ *
9716
+ *
9717
+ */
9718
+ declare const postApiV1DeployApplicationProjectDeployMutation: (options?: Partial<Options<PostApiV1DeployApplicationProjectDeployData>>) => UseMutationOptions<PostApiV1DeployApplicationProjectDeployResponse, PostApiV1DeployApplicationProjectDeployError, Options<PostApiV1DeployApplicationProjectDeployData>>;
9719
+ /**
9720
+ * handle duplicate project
9721
+ *
9722
+ * #### Controller:
9723
+ *
9724
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).HandleDuplicateProject`
9725
+ *
9726
+ * #### Middlewares:
9727
+ *
9728
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9729
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9730
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9731
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9732
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9733
+ *
9734
+ * ---
9735
+ *
9736
+ *
9737
+ */
9738
+ declare const postApiV1DeployApplicationProjectDuplicateMutation: (options?: Partial<Options<PostApiV1DeployApplicationProjectDuplicateData>>) => UseMutationOptions<PostApiV1DeployApplicationProjectDuplicateResponse, PostApiV1DeployApplicationProjectDuplicateError, Options<PostApiV1DeployApplicationProjectDuplicateData>>;
9739
+ declare const getApiV1DeployApplicationProjectFamilyQueryKey: (options?: Options<GetApiV1DeployApplicationProjectFamilyData>) => [Pick<Options<GetApiV1DeployApplicationProjectFamilyData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9740
+ _id: string;
9741
+ _infinite?: boolean;
9742
+ tags?: ReadonlyArray<string>;
9743
+ }];
9744
+ /**
9745
+ * handle get project family
9746
+ *
9747
+ * #### Controller:
9748
+ *
9749
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).HandleGetProjectFamily`
9750
+ *
9751
+ * #### Middlewares:
9752
+ *
9753
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9754
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9755
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9756
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9757
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9758
+ *
9759
+ * ---
9760
+ *
9761
+ *
9762
+ */
9763
+ declare const getApiV1DeployApplicationProjectFamilyOptions: (options?: Options<GetApiV1DeployApplicationProjectFamilyData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<ProjectFamilyResponse, unknown, ProjectFamilyResponse, [Pick<Options<GetApiV1DeployApplicationProjectFamilyData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9764
+ _id: string;
9765
+ _infinite?: boolean;
9766
+ tags?: ReadonlyArray<string>;
9767
+ }]>, "queryFn"> & {
9768
+ queryFn?: _tanstack_query_core.QueryFunction<ProjectFamilyResponse, [Pick<Options<GetApiV1DeployApplicationProjectFamilyData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9769
+ _id: string;
9770
+ _infinite?: boolean;
9771
+ tags?: ReadonlyArray<string>;
9772
+ }], never> | undefined;
9773
+ } & {
9774
+ queryKey: [Pick<Options<GetApiV1DeployApplicationProjectFamilyData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9775
+ _id: string;
9776
+ _infinite?: boolean;
9777
+ tags?: ReadonlyArray<string>;
9778
+ }] & {
9779
+ [dataTagSymbol]: ProjectFamilyResponse;
9780
+ [dataTagErrorSymbol]: unknown;
9781
+ };
9782
+ };
9783
+ declare const getApiV1DeployApplicationProjectFamilyEnvironmentsQueryKey: (options?: Options<GetApiV1DeployApplicationProjectFamilyEnvironmentsData>) => [Pick<Options<GetApiV1DeployApplicationProjectFamilyEnvironmentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9784
+ _id: string;
9785
+ _infinite?: boolean;
9786
+ tags?: ReadonlyArray<string>;
9787
+ }];
9788
+ /**
9789
+ * handle get environments in family
9790
+ *
9791
+ * #### Controller:
9792
+ *
9793
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).HandleGetEnvironmentsInFamily`
9794
+ *
9795
+ * #### Middlewares:
9796
+ *
9797
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9798
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9799
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9800
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9801
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9802
+ *
9803
+ * ---
9804
+ *
9805
+ *
9806
+ */
9807
+ declare const getApiV1DeployApplicationProjectFamilyEnvironmentsOptions: (options?: Options<GetApiV1DeployApplicationProjectFamilyEnvironmentsData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<EnvironmentsInFamilyResponse, unknown, EnvironmentsInFamilyResponse, [Pick<Options<GetApiV1DeployApplicationProjectFamilyEnvironmentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9808
+ _id: string;
9809
+ _infinite?: boolean;
9810
+ tags?: ReadonlyArray<string>;
9811
+ }]>, "queryFn"> & {
9812
+ queryFn?: _tanstack_query_core.QueryFunction<EnvironmentsInFamilyResponse, [Pick<Options<GetApiV1DeployApplicationProjectFamilyEnvironmentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9813
+ _id: string;
9814
+ _infinite?: boolean;
9815
+ tags?: ReadonlyArray<string>;
9816
+ }], never> | undefined;
9817
+ } & {
9818
+ queryKey: [Pick<Options<GetApiV1DeployApplicationProjectFamilyEnvironmentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9819
+ _id: string;
9820
+ _infinite?: boolean;
9821
+ tags?: ReadonlyArray<string>;
9822
+ }] & {
9823
+ [dataTagSymbol]: EnvironmentsInFamilyResponse;
9824
+ [dataTagErrorSymbol]: unknown;
9825
+ };
9826
+ };
9827
+ /**
9828
+ * handle recover
9829
+ *
9830
+ * #### Controller:
9831
+ *
9832
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).HandleRecover`
9833
+ *
9834
+ * #### Middlewares:
9835
+ *
9836
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9837
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9838
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9839
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9840
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9841
+ *
9842
+ * ---
9843
+ *
9844
+ *
9845
+ */
9846
+ declare const postApiV1DeployApplicationRecoverMutation: (options?: Partial<Options<PostApiV1DeployApplicationRecoverData>>) => UseMutationOptions<PostApiV1DeployApplicationRecoverResponse, PostApiV1DeployApplicationRecoverError, Options<PostApiV1DeployApplicationRecoverData>>;
9847
+ /**
9848
+ * re deploy application
9849
+ *
9850
+ * #### Controller:
9851
+ *
9852
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).ReDeployApplication`
9853
+ *
9854
+ * #### Middlewares:
9855
+ *
9856
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9857
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9858
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9859
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9860
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9861
+ *
9862
+ * ---
9863
+ *
9864
+ *
9865
+ */
9866
+ declare const postApiV1DeployApplicationRedeployMutation: (options?: Partial<Options<PostApiV1DeployApplicationRedeployData>>) => UseMutationOptions<PostApiV1DeployApplicationRedeployResponse, PostApiV1DeployApplicationRedeployError, Options<PostApiV1DeployApplicationRedeployData>>;
9867
+ /**
9868
+ * handle restart
9869
+ *
9870
+ * #### Controller:
9871
+ *
9872
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).HandleRestart`
9873
+ *
9874
+ * #### Middlewares:
9875
+ *
9876
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9877
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9878
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9879
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9880
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9881
+ *
9882
+ * ---
9883
+ *
9884
+ *
9885
+ */
9886
+ declare const postApiV1DeployApplicationRestartMutation: (options?: Partial<Options<PostApiV1DeployApplicationRestartData>>) => UseMutationOptions<PostApiV1DeployApplicationRestartResponse, PostApiV1DeployApplicationRestartError, Options<PostApiV1DeployApplicationRestartData>>;
9887
+ /**
9888
+ * handle rollback
9889
+ *
9890
+ * #### Controller:
9891
+ *
9892
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).HandleRollback`
9893
+ *
9894
+ * #### Middlewares:
9895
+ *
9896
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9897
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9898
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9899
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9900
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9901
+ *
9902
+ * ---
9903
+ *
9904
+ *
9905
+ */
9906
+ declare const postApiV1DeployApplicationRollbackMutation: (options?: Partial<Options<PostApiV1DeployApplicationRollbackData>>) => UseMutationOptions<PostApiV1DeployApplicationRollbackResponse, PostApiV1DeployApplicationRollbackError, Options<PostApiV1DeployApplicationRollbackData>>;
9907
+ declare const getApiV1DeployApplicationsQueryKey: (options: Options<GetApiV1DeployApplicationsData>) => [Pick<Options<GetApiV1DeployApplicationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9908
+ _id: string;
9909
+ _infinite?: boolean;
9910
+ tags?: ReadonlyArray<string>;
9911
+ }];
9912
+ /**
9913
+ * get applications
9914
+ *
9915
+ * #### Controller:
9916
+ *
9917
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).GetApplications`
9918
+ *
9919
+ * #### Middlewares:
9920
+ *
9921
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9922
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9923
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9924
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9925
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9926
+ *
9927
+ * ---
9928
+ *
9929
+ *
9930
+ */
9931
+ declare const getApiV1DeployApplicationsOptions: (options: Options<GetApiV1DeployApplicationsData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<ListApplicationsResponse, unknown, ListApplicationsResponse, [Pick<Options<GetApiV1DeployApplicationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9932
+ _id: string;
9933
+ _infinite?: boolean;
9934
+ tags?: ReadonlyArray<string>;
9935
+ }]>, "queryFn"> & {
9936
+ queryFn?: _tanstack_query_core.QueryFunction<ListApplicationsResponse, [Pick<Options<GetApiV1DeployApplicationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9937
+ _id: string;
9938
+ _infinite?: boolean;
9939
+ tags?: ReadonlyArray<string>;
9940
+ }], never> | undefined;
9941
+ } & {
9942
+ queryKey: [Pick<Options<GetApiV1DeployApplicationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9943
+ _id: string;
9944
+ _infinite?: boolean;
9945
+ tags?: ReadonlyArray<string>;
9946
+ }] & {
9947
+ [dataTagSymbol]: ListApplicationsResponse;
9948
+ [dataTagErrorSymbol]: unknown;
9949
+ };
9950
+ };
9951
+ declare const getApiV1DeployApplicationsInfiniteQueryKey: (options: Options<GetApiV1DeployApplicationsData>) => QueryKey<Options<GetApiV1DeployApplicationsData>>;
9952
+ /**
9953
+ * get applications
9954
+ *
9955
+ * #### Controller:
9956
+ *
9957
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).GetApplications`
9958
+ *
9959
+ * #### Middlewares:
9960
+ *
9961
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
9962
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
9963
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
9964
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
9965
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
9966
+ *
9967
+ * ---
9968
+ *
9969
+ *
9970
+ */
9971
+ declare const getApiV1DeployApplicationsInfiniteOptions: (options: Options<GetApiV1DeployApplicationsData>) => _tanstack_react_query.UseInfiniteQueryOptions<ListApplicationsResponse, unknown, InfiniteData<ListApplicationsResponse, unknown>, QueryKey<Options<GetApiV1DeployApplicationsData>>, string | Pick<Pick<Options<GetApiV1DeployApplicationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9972
+ _id: string;
9973
+ _infinite?: boolean;
9974
+ tags?: ReadonlyArray<string>;
9975
+ }, "query" | "body" | "headers" | "path">> & {
9976
+ initialData: InfiniteData<ListApplicationsResponse, string | Pick<Pick<Options<GetApiV1DeployApplicationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9977
+ _id: string;
9978
+ _infinite?: boolean;
9979
+ tags?: ReadonlyArray<string>;
9980
+ }, "query" | "body" | "headers" | "path">> | (() => InfiniteData<ListApplicationsResponse, string | Pick<Pick<Options<GetApiV1DeployApplicationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
9981
+ _id: string;
9982
+ _infinite?: boolean;
9983
+ tags?: ReadonlyArray<string>;
9984
+ }, "query" | "body" | "headers" | "path">>) | undefined;
9985
+ } & {
9986
+ queryKey: QueryKey<Options<GetApiV1DeployApplicationsData>> & {
9987
+ [dataTagSymbol]: InfiniteData<ListApplicationsResponse, unknown>;
9988
+ [dataTagErrorSymbol]: unknown;
9989
+ };
9990
+ };
9991
+ /**
9992
+ * delete domain
9993
+ *
9994
+ * #### Controller:
9995
+ *
9996
+ * `github.com/raghavyuva/nixopus-api/internal/features/domain/controller.(*DomainsController).DeleteDomain`
9997
+ *
9998
+ * #### Middlewares:
9999
+ *
10000
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10001
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10002
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10003
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10004
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10005
+ *
10006
+ * ---
10007
+ *
10008
+ *
10009
+ */
10010
+ declare const deleteApiV1DomainMutation: (options?: Partial<Options<DeleteApiV1DomainData>>) => UseMutationOptions<DeleteApiV1DomainResponse, DeleteApiV1DomainError, Options<DeleteApiV1DomainData>>;
10011
+ /**
10012
+ * create domain
10013
+ *
10014
+ * #### Controller:
10015
+ *
10016
+ * `github.com/raghavyuva/nixopus-api/internal/features/domain/controller.(*DomainsController).CreateDomain`
10017
+ *
10018
+ * #### Middlewares:
10019
+ *
10020
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10021
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10022
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10023
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10024
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10025
+ *
10026
+ * ---
10027
+ *
10028
+ *
10029
+ */
10030
+ declare const postApiV1DomainMutation: (options?: Partial<Options<PostApiV1DomainData>>) => UseMutationOptions<PostApiV1DomainResponse, PostApiV1DomainError, Options<PostApiV1DomainData>>;
10031
+ /**
10032
+ * update domain
10033
+ *
10034
+ * #### Controller:
10035
+ *
10036
+ * `github.com/raghavyuva/nixopus-api/internal/features/domain/controller.(*DomainsController).UpdateDomain`
10037
+ *
10038
+ * #### Middlewares:
10039
+ *
10040
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10041
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10042
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10043
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10044
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10045
+ *
10046
+ * ---
10047
+ *
10048
+ *
10049
+ */
10050
+ declare const putApiV1DomainMutation: (options?: Partial<Options<PutApiV1DomainData>>) => UseMutationOptions<PutApiV1DomainResponse, PutApiV1DomainError, Options<PutApiV1DomainData>>;
10051
+ declare const getApiV1DomainGenerateQueryKey: (options?: Options<GetApiV1DomainGenerateData>) => [Pick<Options<GetApiV1DomainGenerateData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10052
+ _id: string;
10053
+ _infinite?: boolean;
10054
+ tags?: ReadonlyArray<string>;
10055
+ }];
10056
+ /**
10057
+ * generate random sub domain
10058
+ *
10059
+ * #### Controller:
10060
+ *
10061
+ * `github.com/raghavyuva/nixopus-api/internal/features/domain/controller.(*DomainsController).GenerateRandomSubDomain`
10062
+ *
10063
+ * #### Middlewares:
10064
+ *
10065
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10066
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10067
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10068
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10069
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10070
+ *
10071
+ * ---
10072
+ *
10073
+ *
10074
+ */
10075
+ declare const getApiV1DomainGenerateOptions: (options?: Options<GetApiV1DomainGenerateData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<RandomSubdomainResponseWrapper, unknown, RandomSubdomainResponseWrapper, [Pick<Options<GetApiV1DomainGenerateData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10076
+ _id: string;
10077
+ _infinite?: boolean;
10078
+ tags?: ReadonlyArray<string>;
10079
+ }]>, "queryFn"> & {
10080
+ queryFn?: _tanstack_query_core.QueryFunction<RandomSubdomainResponseWrapper, [Pick<Options<GetApiV1DomainGenerateData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10081
+ _id: string;
10082
+ _infinite?: boolean;
10083
+ tags?: ReadonlyArray<string>;
10084
+ }], never> | undefined;
10085
+ } & {
10086
+ queryKey: [Pick<Options<GetApiV1DomainGenerateData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10087
+ _id: string;
10088
+ _infinite?: boolean;
10089
+ tags?: ReadonlyArray<string>;
10090
+ }] & {
10091
+ [dataTagSymbol]: RandomSubdomainResponseWrapper;
10092
+ [dataTagErrorSymbol]: unknown;
10093
+ };
10094
+ };
10095
+ declare const getApiV1DomainsQueryKey: (options?: Options<GetApiV1DomainsData>) => [Pick<Options<GetApiV1DomainsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10096
+ _id: string;
10097
+ _infinite?: boolean;
10098
+ tags?: ReadonlyArray<string>;
10099
+ }];
10100
+ /**
10101
+ * get domains
10102
+ *
10103
+ * #### Controller:
10104
+ *
10105
+ * `github.com/raghavyuva/nixopus-api/internal/features/domain/controller.(*DomainsController).GetDomains`
10106
+ *
10107
+ * #### Middlewares:
10108
+ *
10109
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10110
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10111
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10112
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10113
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10114
+ *
10115
+ * ---
10116
+ *
10117
+ *
10118
+ */
10119
+ declare const getApiV1DomainsOptions: (options?: Options<GetApiV1DomainsData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<ListDomainsResponse, unknown, ListDomainsResponse, [Pick<Options<GetApiV1DomainsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10120
+ _id: string;
10121
+ _infinite?: boolean;
10122
+ tags?: ReadonlyArray<string>;
10123
+ }]>, "queryFn"> & {
10124
+ queryFn?: _tanstack_query_core.QueryFunction<ListDomainsResponse, [Pick<Options<GetApiV1DomainsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10125
+ _id: string;
10126
+ _infinite?: boolean;
10127
+ tags?: ReadonlyArray<string>;
10128
+ }], never> | undefined;
10129
+ } & {
10130
+ queryKey: [Pick<Options<GetApiV1DomainsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10131
+ _id: string;
10132
+ _infinite?: boolean;
10133
+ tags?: ReadonlyArray<string>;
10134
+ }] & {
10135
+ [dataTagSymbol]: ListDomainsResponse;
10136
+ [dataTagErrorSymbol]: unknown;
10137
+ };
10138
+ };
10139
+ declare const getApiV1ExtensionsQueryKey: (options?: Options<GetApiV1ExtensionsData>) => [Pick<Options<GetApiV1ExtensionsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10140
+ _id: string;
10141
+ _infinite?: boolean;
10142
+ tags?: ReadonlyArray<string>;
10143
+ }];
10144
+ /**
10145
+ * get extensions
10146
+ *
10147
+ * #### Controller:
10148
+ *
10149
+ * `github.com/raghavyuva/nixopus-api/internal/features/extension/controller.(*ExtensionsController).GetExtensions`
10150
+ *
10151
+ * #### Middlewares:
10152
+ *
10153
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10154
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10155
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10156
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10157
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10158
+ *
10159
+ * ---
10160
+ *
10161
+ *
10162
+ */
10163
+ declare const getApiV1ExtensionsOptions: (options?: Options<GetApiV1ExtensionsData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<ListExtensionsResponse, unknown, ListExtensionsResponse, [Pick<Options<GetApiV1ExtensionsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10164
+ _id: string;
10165
+ _infinite?: boolean;
10166
+ tags?: ReadonlyArray<string>;
10167
+ }]>, "queryFn"> & {
10168
+ queryFn?: _tanstack_query_core.QueryFunction<ListExtensionsResponse, [Pick<Options<GetApiV1ExtensionsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10169
+ _id: string;
10170
+ _infinite?: boolean;
10171
+ tags?: ReadonlyArray<string>;
10172
+ }], never> | undefined;
10173
+ } & {
10174
+ queryKey: [Pick<Options<GetApiV1ExtensionsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10175
+ _id: string;
10176
+ _infinite?: boolean;
10177
+ tags?: ReadonlyArray<string>;
10178
+ }] & {
10179
+ [dataTagSymbol]: ListExtensionsResponse;
10180
+ [dataTagErrorSymbol]: unknown;
10181
+ };
10182
+ };
10183
+ declare const getApiV1ExtensionsByExtensionIdExtensionIdQueryKey: (options: Options<GetApiV1ExtensionsByExtensionIdExtensionIdData>) => [Pick<Options<GetApiV1ExtensionsByExtensionIdExtensionIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10184
+ _id: string;
10185
+ _infinite?: boolean;
10186
+ tags?: ReadonlyArray<string>;
10187
+ }];
10188
+ /**
10189
+ * get extension by extension i d
10190
+ *
10191
+ * #### Controller:
10192
+ *
10193
+ * `github.com/raghavyuva/nixopus-api/internal/features/extension/controller.(*ExtensionsController).GetExtensionByExtensionID`
10194
+ *
10195
+ * #### Middlewares:
10196
+ *
10197
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10198
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10199
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10200
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10201
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10202
+ *
10203
+ * ---
10204
+ *
10205
+ *
10206
+ */
10207
+ declare const getApiV1ExtensionsByExtensionIdExtensionIdOptions: (options: Options<GetApiV1ExtensionsByExtensionIdExtensionIdData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<ExtensionResponse, unknown, ExtensionResponse, [Pick<Options<GetApiV1ExtensionsByExtensionIdExtensionIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10208
+ _id: string;
10209
+ _infinite?: boolean;
10210
+ tags?: ReadonlyArray<string>;
10211
+ }]>, "queryFn"> & {
10212
+ queryFn?: _tanstack_query_core.QueryFunction<ExtensionResponse, [Pick<Options<GetApiV1ExtensionsByExtensionIdExtensionIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10213
+ _id: string;
10214
+ _infinite?: boolean;
10215
+ tags?: ReadonlyArray<string>;
10216
+ }], never> | undefined;
10217
+ } & {
10218
+ queryKey: [Pick<Options<GetApiV1ExtensionsByExtensionIdExtensionIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10219
+ _id: string;
10220
+ _infinite?: boolean;
10221
+ tags?: ReadonlyArray<string>;
10222
+ }] & {
10223
+ [dataTagSymbol]: ExtensionResponse;
10224
+ [dataTagErrorSymbol]: unknown;
10225
+ };
10226
+ };
10227
+ declare const getApiV1ExtensionsByExtensionIdExtensionIdExecutionsQueryKey: (options: Options<GetApiV1ExtensionsByExtensionIdExtensionIdExecutionsData>) => [Pick<Options<GetApiV1ExtensionsByExtensionIdExtensionIdExecutionsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10228
+ _id: string;
10229
+ _infinite?: boolean;
10230
+ tags?: ReadonlyArray<string>;
10231
+ }];
10232
+ /**
10233
+ * list executions by extension i d
10234
+ *
10235
+ * #### Controller:
10236
+ *
10237
+ * `github.com/raghavyuva/nixopus-api/internal/features/extension/controller.(*ExtensionsController).ListExecutionsByExtensionID`
10238
+ *
10239
+ * #### Middlewares:
10240
+ *
10241
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10242
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10243
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10244
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10245
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10246
+ *
10247
+ * ---
10248
+ *
10249
+ *
10250
+ */
10251
+ declare const getApiV1ExtensionsByExtensionIdExtensionIdExecutionsOptions: (options: Options<GetApiV1ExtensionsByExtensionIdExtensionIdExecutionsData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<ListExecutionsResponse, unknown, ListExecutionsResponse, [Pick<Options<GetApiV1ExtensionsByExtensionIdExtensionIdExecutionsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10252
+ _id: string;
10253
+ _infinite?: boolean;
10254
+ tags?: ReadonlyArray<string>;
10255
+ }]>, "queryFn"> & {
10256
+ queryFn?: _tanstack_query_core.QueryFunction<ListExecutionsResponse, [Pick<Options<GetApiV1ExtensionsByExtensionIdExtensionIdExecutionsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10257
+ _id: string;
10258
+ _infinite?: boolean;
10259
+ tags?: ReadonlyArray<string>;
10260
+ }], never> | undefined;
10261
+ } & {
10262
+ queryKey: [Pick<Options<GetApiV1ExtensionsByExtensionIdExtensionIdExecutionsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10263
+ _id: string;
10264
+ _infinite?: boolean;
10265
+ tags?: ReadonlyArray<string>;
10266
+ }] & {
10267
+ [dataTagSymbol]: ListExecutionsResponse;
10268
+ [dataTagErrorSymbol]: unknown;
10269
+ };
10270
+ };
10271
+ declare const getApiV1ExtensionsCategoriesQueryKey: (options?: Options<GetApiV1ExtensionsCategoriesData>) => [Pick<Options<GetApiV1ExtensionsCategoriesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10272
+ _id: string;
10273
+ _infinite?: boolean;
10274
+ tags?: ReadonlyArray<string>;
10275
+ }];
10276
+ /**
10277
+ * get categories
10278
+ *
10279
+ * #### Controller:
10280
+ *
10281
+ * `github.com/raghavyuva/nixopus-api/internal/features/extension/controller.(*ExtensionsController).GetCategories`
10282
+ *
10283
+ * #### Middlewares:
10284
+ *
10285
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10286
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10287
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10288
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10289
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10290
+ *
10291
+ * ---
10292
+ *
10293
+ *
10294
+ */
10295
+ declare const getApiV1ExtensionsCategoriesOptions: (options?: Options<GetApiV1ExtensionsCategoriesData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<CategoriesResponse, unknown, CategoriesResponse, [Pick<Options<GetApiV1ExtensionsCategoriesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10296
+ _id: string;
10297
+ _infinite?: boolean;
10298
+ tags?: ReadonlyArray<string>;
10299
+ }]>, "queryFn"> & {
10300
+ queryFn?: _tanstack_query_core.QueryFunction<CategoriesResponse, [Pick<Options<GetApiV1ExtensionsCategoriesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10301
+ _id: string;
10302
+ _infinite?: boolean;
10303
+ tags?: ReadonlyArray<string>;
10304
+ }], never> | undefined;
10305
+ } & {
10306
+ queryKey: [Pick<Options<GetApiV1ExtensionsCategoriesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10307
+ _id: string;
10308
+ _infinite?: boolean;
10309
+ tags?: ReadonlyArray<string>;
10310
+ }] & {
10311
+ [dataTagSymbol]: CategoriesResponse;
10312
+ [dataTagErrorSymbol]: unknown;
10313
+ };
10314
+ };
10315
+ declare const getApiV1ExtensionsExecutionExecutionIdQueryKey: (options: Options<GetApiV1ExtensionsExecutionExecutionIdData>) => [Pick<Options<GetApiV1ExtensionsExecutionExecutionIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10316
+ _id: string;
10317
+ _infinite?: boolean;
10318
+ tags?: ReadonlyArray<string>;
10319
+ }];
10320
+ /**
10321
+ * get execution
10322
+ *
10323
+ * #### Controller:
10324
+ *
10325
+ * `github.com/raghavyuva/nixopus-api/internal/features/extension/controller.(*ExtensionsController).GetExecution`
10326
+ *
10327
+ * #### Middlewares:
10328
+ *
10329
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10330
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10331
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10332
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10333
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10334
+ *
10335
+ * ---
10336
+ *
10337
+ *
10338
+ */
10339
+ declare const getApiV1ExtensionsExecutionExecutionIdOptions: (options: Options<GetApiV1ExtensionsExecutionExecutionIdData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<ExecutionResponse, unknown, ExecutionResponse, [Pick<Options<GetApiV1ExtensionsExecutionExecutionIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10340
+ _id: string;
10341
+ _infinite?: boolean;
10342
+ tags?: ReadonlyArray<string>;
10343
+ }]>, "queryFn"> & {
10344
+ queryFn?: _tanstack_query_core.QueryFunction<ExecutionResponse, [Pick<Options<GetApiV1ExtensionsExecutionExecutionIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10345
+ _id: string;
10346
+ _infinite?: boolean;
10347
+ tags?: ReadonlyArray<string>;
10348
+ }], never> | undefined;
10349
+ } & {
10350
+ queryKey: [Pick<Options<GetApiV1ExtensionsExecutionExecutionIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10351
+ _id: string;
10352
+ _infinite?: boolean;
10353
+ tags?: ReadonlyArray<string>;
10354
+ }] & {
10355
+ [dataTagSymbol]: ExecutionResponse;
10356
+ [dataTagErrorSymbol]: unknown;
10357
+ };
10358
+ };
10359
+ /**
10360
+ * cancel execution
10361
+ *
10362
+ * #### Controller:
10363
+ *
10364
+ * `github.com/raghavyuva/nixopus-api/internal/features/extension/controller.(*ExtensionsController).CancelExecution`
10365
+ *
10366
+ * #### Middlewares:
10367
+ *
10368
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10369
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10370
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10371
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10372
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10373
+ *
10374
+ * ---
10375
+ *
10376
+ *
10377
+ */
10378
+ declare const postApiV1ExtensionsExecutionExecutionIdCancelMutation: (options?: Partial<Options<PostApiV1ExtensionsExecutionExecutionIdCancelData>>) => UseMutationOptions<PostApiV1ExtensionsExecutionExecutionIdCancelResponse, PostApiV1ExtensionsExecutionExecutionIdCancelError, Options<PostApiV1ExtensionsExecutionExecutionIdCancelData>>;
10379
+ declare const getApiV1ExtensionsExecutionExecutionIdLogsQueryKey: (options: Options<GetApiV1ExtensionsExecutionExecutionIdLogsData>) => [Pick<Options<GetApiV1ExtensionsExecutionExecutionIdLogsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10380
+ _id: string;
10381
+ _infinite?: boolean;
10382
+ tags?: ReadonlyArray<string>;
10383
+ }];
10384
+ /**
10385
+ * list execution logs
10386
+ *
10387
+ * #### Controller:
10388
+ *
10389
+ * `github.com/raghavyuva/nixopus-api/internal/features/extension/controller.(*ExtensionsController).ListExecutionLogs`
10390
+ *
10391
+ * #### Middlewares:
10392
+ *
10393
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10394
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10395
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10396
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10397
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10398
+ *
10399
+ * ---
10400
+ *
10401
+ *
10402
+ */
10403
+ declare const getApiV1ExtensionsExecutionExecutionIdLogsOptions: (options: Options<GetApiV1ExtensionsExecutionExecutionIdLogsData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<ListLogsResponse, unknown, ListLogsResponse, [Pick<Options<GetApiV1ExtensionsExecutionExecutionIdLogsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10404
+ _id: string;
10405
+ _infinite?: boolean;
10406
+ tags?: ReadonlyArray<string>;
10407
+ }]>, "queryFn"> & {
10408
+ queryFn?: _tanstack_query_core.QueryFunction<ListLogsResponse, [Pick<Options<GetApiV1ExtensionsExecutionExecutionIdLogsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10409
+ _id: string;
10410
+ _infinite?: boolean;
10411
+ tags?: ReadonlyArray<string>;
10412
+ }], never> | undefined;
10413
+ } & {
10414
+ queryKey: [Pick<Options<GetApiV1ExtensionsExecutionExecutionIdLogsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10415
+ _id: string;
10416
+ _infinite?: boolean;
10417
+ tags?: ReadonlyArray<string>;
10418
+ }] & {
10419
+ [dataTagSymbol]: ListLogsResponse;
10420
+ [dataTagErrorSymbol]: unknown;
10421
+ };
10422
+ };
10423
+ /**
10424
+ * fork extension
10425
+ *
10426
+ * #### Controller:
10427
+ *
10428
+ * `github.com/raghavyuva/nixopus-api/internal/features/extension/controller.(*ExtensionsController).ForkExtension`
10429
+ *
10430
+ * #### Middlewares:
10431
+ *
10432
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10433
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10434
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10435
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10436
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10437
+ *
10438
+ * ---
10439
+ *
10440
+ *
10441
+ */
10442
+ declare const postApiV1ExtensionsExtensionIdForkMutation: (options?: Partial<Options<PostApiV1ExtensionsExtensionIdForkData>>) => UseMutationOptions<PostApiV1ExtensionsExtensionIdForkResponse, PostApiV1ExtensionsExtensionIdForkError, Options<PostApiV1ExtensionsExtensionIdForkData>>;
10443
+ /**
10444
+ * run extension
10445
+ *
10446
+ * #### Controller:
10447
+ *
10448
+ * `github.com/raghavyuva/nixopus-api/internal/features/extension/controller.(*ExtensionsController).RunExtension`
10449
+ *
10450
+ * #### Middlewares:
10451
+ *
10452
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10453
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10454
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10455
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10456
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10457
+ *
10458
+ * ---
10459
+ *
10460
+ *
10461
+ */
10462
+ declare const postApiV1ExtensionsExtensionIdRunMutation: (options?: Partial<Options<PostApiV1ExtensionsExtensionIdRunData>>) => UseMutationOptions<PostApiV1ExtensionsExtensionIdRunResponse, PostApiV1ExtensionsExtensionIdRunError, Options<PostApiV1ExtensionsExtensionIdRunData>>;
10463
+ /**
10464
+ * delete fork
10465
+ *
10466
+ * #### Controller:
10467
+ *
10468
+ * `github.com/raghavyuva/nixopus-api/internal/features/extension/controller.(*ExtensionsController).DeleteFork`
10469
+ *
10470
+ * #### Middlewares:
10471
+ *
10472
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10473
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10474
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10475
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10476
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10477
+ *
10478
+ * ---
10479
+ *
10480
+ *
10481
+ */
10482
+ declare const deleteApiV1ExtensionsIdMutation: (options?: Partial<Options<DeleteApiV1ExtensionsIdData>>) => UseMutationOptions<DeleteApiV1ExtensionsIdResponse, DeleteApiV1ExtensionsIdError, Options<DeleteApiV1ExtensionsIdData>>;
10483
+ declare const getApiV1ExtensionsIdQueryKey: (options: Options<GetApiV1ExtensionsIdData>) => [Pick<Options<GetApiV1ExtensionsIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10484
+ _id: string;
10485
+ _infinite?: boolean;
10486
+ tags?: ReadonlyArray<string>;
10487
+ }];
10488
+ /**
10489
+ * get extension
10490
+ *
10491
+ * #### Controller:
10492
+ *
10493
+ * `github.com/raghavyuva/nixopus-api/internal/features/extension/controller.(*ExtensionsController).GetExtension`
10494
+ *
10495
+ * #### Middlewares:
10496
+ *
10497
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10498
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10499
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10500
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10501
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10502
+ *
10503
+ * ---
10504
+ *
10505
+ *
10506
+ */
10507
+ declare const getApiV1ExtensionsIdOptions: (options: Options<GetApiV1ExtensionsIdData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<ExtensionResponse, unknown, ExtensionResponse, [Pick<Options<GetApiV1ExtensionsIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10508
+ _id: string;
10509
+ _infinite?: boolean;
10510
+ tags?: ReadonlyArray<string>;
10511
+ }]>, "queryFn"> & {
10512
+ queryFn?: _tanstack_query_core.QueryFunction<ExtensionResponse, [Pick<Options<GetApiV1ExtensionsIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10513
+ _id: string;
10514
+ _infinite?: boolean;
10515
+ tags?: ReadonlyArray<string>;
10516
+ }], never> | undefined;
10517
+ } & {
10518
+ queryKey: [Pick<Options<GetApiV1ExtensionsIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10519
+ _id: string;
10520
+ _infinite?: boolean;
10521
+ tags?: ReadonlyArray<string>;
10522
+ }] & {
10523
+ [dataTagSymbol]: ExtensionResponse;
10524
+ [dataTagErrorSymbol]: unknown;
10525
+ };
10526
+ };
10527
+ declare const getApiV1FeatureFlagsQueryKey: (options?: Options<GetApiV1FeatureFlagsData>) => [Pick<Options<GetApiV1FeatureFlagsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10528
+ _id: string;
10529
+ _infinite?: boolean;
10530
+ tags?: ReadonlyArray<string>;
10531
+ }];
10532
+ /**
10533
+ * get feature flags
10534
+ *
10535
+ * #### Controller:
10536
+ *
10537
+ * `github.com/raghavyuva/nixopus-api/internal/features/feature-flags/controller.(*FeatureFlagController).GetFeatureFlags`
10538
+ *
10539
+ * #### Middlewares:
10540
+ *
10541
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10542
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10543
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10544
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10545
+ *
10546
+ * ---
10547
+ *
10548
+ *
10549
+ */
10550
+ declare const getApiV1FeatureFlagsOptions: (options?: Options<GetApiV1FeatureFlagsData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<ListFeatureFlagsResponse, unknown, ListFeatureFlagsResponse, [Pick<Options<GetApiV1FeatureFlagsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10551
+ _id: string;
10552
+ _infinite?: boolean;
10553
+ tags?: ReadonlyArray<string>;
10554
+ }]>, "queryFn"> & {
10555
+ queryFn?: _tanstack_query_core.QueryFunction<ListFeatureFlagsResponse, [Pick<Options<GetApiV1FeatureFlagsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10556
+ _id: string;
10557
+ _infinite?: boolean;
10558
+ tags?: ReadonlyArray<string>;
10559
+ }], never> | undefined;
10560
+ } & {
10561
+ queryKey: [Pick<Options<GetApiV1FeatureFlagsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10562
+ _id: string;
10563
+ _infinite?: boolean;
10564
+ tags?: ReadonlyArray<string>;
10565
+ }] & {
10566
+ [dataTagSymbol]: ListFeatureFlagsResponse;
10567
+ [dataTagErrorSymbol]: unknown;
10568
+ };
10569
+ };
10570
+ /**
10571
+ * update feature flag
10572
+ *
10573
+ * #### Controller:
10574
+ *
10575
+ * `github.com/raghavyuva/nixopus-api/internal/features/feature-flags/controller.(*FeatureFlagController).UpdateFeatureFlag`
10576
+ *
10577
+ * #### Middlewares:
10578
+ *
10579
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10580
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10581
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10582
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10583
+ *
10584
+ * ---
10585
+ *
10586
+ *
10587
+ */
10588
+ declare const putApiV1FeatureFlagsMutation: (options?: Partial<Options<PutApiV1FeatureFlagsData>>) => UseMutationOptions<PutApiV1FeatureFlagsResponse, PutApiV1FeatureFlagsError, Options<PutApiV1FeatureFlagsData>>;
10589
+ declare const getApiV1FeatureFlagsCheckQueryKey: (options?: Options<GetApiV1FeatureFlagsCheckData>) => [Pick<Options<GetApiV1FeatureFlagsCheckData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10590
+ _id: string;
10591
+ _infinite?: boolean;
10592
+ tags?: ReadonlyArray<string>;
10593
+ }];
10594
+ /**
10595
+ * is feature enabled
10596
+ *
10597
+ * #### Controller:
10598
+ *
10599
+ * `github.com/raghavyuva/nixopus-api/internal/features/feature-flags/controller.(*FeatureFlagController).IsFeatureEnabled`
10600
+ *
10601
+ * #### Middlewares:
10602
+ *
10603
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10604
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10605
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10606
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10607
+ *
10608
+ * ---
10609
+ *
10610
+ *
10611
+ */
10612
+ declare const getApiV1FeatureFlagsCheckOptions: (options?: Options<GetApiV1FeatureFlagsCheckData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<IsFeatureEnabledResponse, unknown, IsFeatureEnabledResponse, [Pick<Options<GetApiV1FeatureFlagsCheckData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10613
+ _id: string;
10614
+ _infinite?: boolean;
10615
+ tags?: ReadonlyArray<string>;
10616
+ }]>, "queryFn"> & {
10617
+ queryFn?: _tanstack_query_core.QueryFunction<IsFeatureEnabledResponse, [Pick<Options<GetApiV1FeatureFlagsCheckData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10618
+ _id: string;
10619
+ _infinite?: boolean;
10620
+ tags?: ReadonlyArray<string>;
10621
+ }], never> | undefined;
10622
+ } & {
10623
+ queryKey: [Pick<Options<GetApiV1FeatureFlagsCheckData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10624
+ _id: string;
10625
+ _infinite?: boolean;
10626
+ tags?: ReadonlyArray<string>;
10627
+ }] & {
10628
+ [dataTagSymbol]: IsFeatureEnabledResponse;
10629
+ [dataTagErrorSymbol]: unknown;
10630
+ };
10631
+ };
10632
+ declare const getApiV1FileManagerQueryKey: (options: Options<GetApiV1FileManagerData>) => [Pick<Options<GetApiV1FileManagerData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10633
+ _id: string;
10634
+ _infinite?: boolean;
10635
+ tags?: ReadonlyArray<string>;
10636
+ }];
10637
+ /**
10638
+ * list files
10639
+ *
10640
+ * #### Controller:
10641
+ *
10642
+ * `github.com/raghavyuva/nixopus-api/internal/features/file-manager/controller.(*FileManagerController).ListFiles`
10643
+ *
10644
+ * #### Middlewares:
10645
+ *
10646
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10647
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10648
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10649
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10650
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10651
+ *
10652
+ * ---
10653
+ *
10654
+ *
10655
+ */
10656
+ declare const getApiV1FileManagerOptions: (options: Options<GetApiV1FileManagerData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<ListFilesResponse, unknown, ListFilesResponse, [Pick<Options<GetApiV1FileManagerData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10657
+ _id: string;
10658
+ _infinite?: boolean;
10659
+ tags?: ReadonlyArray<string>;
10660
+ }]>, "queryFn"> & {
10661
+ queryFn?: _tanstack_query_core.QueryFunction<ListFilesResponse, [Pick<Options<GetApiV1FileManagerData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10662
+ _id: string;
10663
+ _infinite?: boolean;
10664
+ tags?: ReadonlyArray<string>;
10665
+ }], never> | undefined;
10666
+ } & {
10667
+ queryKey: [Pick<Options<GetApiV1FileManagerData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10668
+ _id: string;
10669
+ _infinite?: boolean;
10670
+ tags?: ReadonlyArray<string>;
10671
+ }] & {
10672
+ [dataTagSymbol]: ListFilesResponse;
10673
+ [dataTagErrorSymbol]: unknown;
10674
+ };
10675
+ };
10676
+ /**
10677
+ * copy directory
10678
+ *
10679
+ * #### Controller:
10680
+ *
10681
+ * `github.com/raghavyuva/nixopus-api/internal/features/file-manager/controller.(*FileManagerController).CopyDirectory`
10682
+ *
10683
+ * #### Middlewares:
10684
+ *
10685
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10686
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10687
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10688
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10689
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10690
+ *
10691
+ * ---
10692
+ *
10693
+ *
10694
+ */
10695
+ declare const postApiV1FileManagerCopyDirectoryMutation: (options?: Partial<Options<PostApiV1FileManagerCopyDirectoryData>>) => UseMutationOptions<PostApiV1FileManagerCopyDirectoryResponse, PostApiV1FileManagerCopyDirectoryError, Options<PostApiV1FileManagerCopyDirectoryData>>;
10696
+ /**
10697
+ * create directory
10698
+ *
10699
+ * #### Controller:
10700
+ *
10701
+ * `github.com/raghavyuva/nixopus-api/internal/features/file-manager/controller.(*FileManagerController).CreateDirectory`
10702
+ *
10703
+ * #### Middlewares:
10704
+ *
10705
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10706
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10707
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10708
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10709
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10710
+ *
10711
+ * ---
10712
+ *
10713
+ *
10714
+ */
10715
+ declare const postApiV1FileManagerCreateDirectoryMutation: (options?: Partial<Options<PostApiV1FileManagerCreateDirectoryData>>) => UseMutationOptions<PostApiV1FileManagerCreateDirectoryResponse, PostApiV1FileManagerCreateDirectoryError, Options<PostApiV1FileManagerCreateDirectoryData>>;
10716
+ /**
10717
+ * delete directory
10718
+ *
10719
+ * #### Controller:
10720
+ *
10721
+ * `github.com/raghavyuva/nixopus-api/internal/features/file-manager/controller.(*FileManagerController).DeleteDirectory`
10722
+ *
10723
+ * #### Middlewares:
10724
+ *
10725
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10726
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10727
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10728
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10729
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10730
+ *
10731
+ * ---
10732
+ *
10733
+ *
10734
+ */
10735
+ declare const deleteApiV1FileManagerDeleteDirectoryMutation: (options?: Partial<Options<DeleteApiV1FileManagerDeleteDirectoryData>>) => UseMutationOptions<DeleteApiV1FileManagerDeleteDirectoryResponse, DeleteApiV1FileManagerDeleteDirectoryError, Options<DeleteApiV1FileManagerDeleteDirectoryData>>;
10736
+ /**
10737
+ * move directory
10738
+ *
10739
+ * #### Controller:
10740
+ *
10741
+ * `github.com/raghavyuva/nixopus-api/internal/features/file-manager/controller.(*FileManagerController).MoveDirectory`
10742
+ *
10743
+ * #### Middlewares:
10744
+ *
10745
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10746
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10747
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10748
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10749
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10750
+ *
10751
+ * ---
10752
+ *
10753
+ *
10754
+ */
10755
+ declare const postApiV1FileManagerMoveDirectoryMutation: (options?: Partial<Options<PostApiV1FileManagerMoveDirectoryData>>) => UseMutationOptions<PostApiV1FileManagerMoveDirectoryResponse, PostApiV1FileManagerMoveDirectoryError, Options<PostApiV1FileManagerMoveDirectoryData>>;
10756
+ /**
10757
+ * upload file
10758
+ *
10759
+ * #### Controller:
10760
+ *
10761
+ * `github.com/raghavyuva/nixopus-api/internal/features/file-manager/controller.(*FileManagerController).UploadFile`
10762
+ *
10763
+ * #### Middlewares:
10764
+ *
10765
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10766
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10767
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10768
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10769
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10770
+ *
10771
+ * ---
10772
+ *
10773
+ *
10774
+ */
10775
+ declare const postApiV1FileManagerUploadMutation: (options?: Partial<Options<PostApiV1FileManagerUploadData>>) => UseMutationOptions<PostApiV1FileManagerUploadResponse, PostApiV1FileManagerUploadError, Options<PostApiV1FileManagerUploadData>>;
10776
+ /**
10777
+ * delete github connector
10778
+ *
10779
+ * #### Controller:
10780
+ *
10781
+ * `github.com/raghavyuva/nixopus-api/internal/features/github-connector/controller.(*GithubConnectorController).DeleteGithubConnector`
10782
+ *
10783
+ * #### Middlewares:
10784
+ *
10785
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10786
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10787
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10788
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10789
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10790
+ *
10791
+ * ---
10792
+ *
10793
+ *
10794
+ */
10795
+ declare const deleteApiV1GithubConnectorMutation: (options?: Partial<Options<DeleteApiV1GithubConnectorData>>) => UseMutationOptions<DeleteApiV1GithubConnectorResponse, DeleteApiV1GithubConnectorError, Options<DeleteApiV1GithubConnectorData>>;
10796
+ /**
10797
+ * create github connector
10798
+ *
10799
+ * #### Controller:
10800
+ *
10801
+ * `github.com/raghavyuva/nixopus-api/internal/features/github-connector/controller.(*GithubConnectorController).CreateGithubConnector`
10802
+ *
10803
+ * #### Middlewares:
10804
+ *
10805
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10806
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10807
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10808
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10809
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10810
+ *
10811
+ * ---
10812
+ *
10813
+ *
10814
+ */
10815
+ declare const postApiV1GithubConnectorMutation: (options?: Partial<Options<PostApiV1GithubConnectorData>>) => UseMutationOptions<PostApiV1GithubConnectorResponse, PostApiV1GithubConnectorError, Options<PostApiV1GithubConnectorData>>;
10816
+ /**
10817
+ * update github connector request
10818
+ *
10819
+ * #### Controller:
10820
+ *
10821
+ * `github.com/raghavyuva/nixopus-api/internal/features/github-connector/controller.(*GithubConnectorController).UpdateGithubConnectorRequest`
10822
+ *
10823
+ * #### Middlewares:
10824
+ *
10825
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10826
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10827
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10828
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10829
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10830
+ *
10831
+ * ---
10832
+ *
10833
+ *
10834
+ */
10835
+ declare const putApiV1GithubConnectorMutation: (options?: Partial<Options<PutApiV1GithubConnectorData>>) => UseMutationOptions<PutApiV1GithubConnectorResponse, PutApiV1GithubConnectorError, Options<PutApiV1GithubConnectorData>>;
10836
+ declare const getApiV1GithubConnectorAllQueryKey: (options?: Options<GetApiV1GithubConnectorAllData>) => [Pick<Options<GetApiV1GithubConnectorAllData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10837
+ _id: string;
10838
+ _infinite?: boolean;
10839
+ tags?: ReadonlyArray<string>;
10840
+ }];
10841
+ /**
10842
+ * get github connectors
10843
+ *
10844
+ * #### Controller:
10845
+ *
10846
+ * `github.com/raghavyuva/nixopus-api/internal/features/github-connector/controller.(*GithubConnectorController).GetGithubConnectors`
10847
+ *
10848
+ * #### Middlewares:
10849
+ *
10850
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10851
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10852
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10853
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10854
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10855
+ *
10856
+ * ---
10857
+ *
10858
+ *
10859
+ */
10860
+ declare const getApiV1GithubConnectorAllOptions: (options?: Options<GetApiV1GithubConnectorAllData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<ListConnectorsResponse, unknown, ListConnectorsResponse, [Pick<Options<GetApiV1GithubConnectorAllData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10861
+ _id: string;
10862
+ _infinite?: boolean;
10863
+ tags?: ReadonlyArray<string>;
10864
+ }]>, "queryFn"> & {
10865
+ queryFn?: _tanstack_query_core.QueryFunction<ListConnectorsResponse, [Pick<Options<GetApiV1GithubConnectorAllData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10866
+ _id: string;
10867
+ _infinite?: boolean;
10868
+ tags?: ReadonlyArray<string>;
10869
+ }], never> | undefined;
10870
+ } & {
10871
+ queryKey: [Pick<Options<GetApiV1GithubConnectorAllData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10872
+ _id: string;
10873
+ _infinite?: boolean;
10874
+ tags?: ReadonlyArray<string>;
10875
+ }] & {
10876
+ [dataTagSymbol]: ListConnectorsResponse;
10877
+ [dataTagErrorSymbol]: unknown;
10878
+ };
10879
+ };
10880
+ declare const getApiV1GithubConnectorRepositoriesQueryKey: (options?: Options<GetApiV1GithubConnectorRepositoriesData>) => [Pick<Options<GetApiV1GithubConnectorRepositoriesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10881
+ _id: string;
10882
+ _infinite?: boolean;
10883
+ tags?: ReadonlyArray<string>;
10884
+ }];
10885
+ /**
10886
+ * get github repositories
10887
+ *
10888
+ * #### Controller:
10889
+ *
10890
+ * `github.com/raghavyuva/nixopus-api/internal/features/github-connector/controller.(*GithubConnectorController).GetGithubRepositories`
10891
+ *
10892
+ * #### Middlewares:
10893
+ *
10894
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10895
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10896
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10897
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10898
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10899
+ *
10900
+ * ---
10901
+ *
10902
+ *
10903
+ */
10904
+ declare const getApiV1GithubConnectorRepositoriesOptions: (options?: Options<GetApiV1GithubConnectorRepositoriesData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<ListRepositoriesResponse, unknown, ListRepositoriesResponse, [Pick<Options<GetApiV1GithubConnectorRepositoriesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10905
+ _id: string;
10906
+ _infinite?: boolean;
10907
+ tags?: ReadonlyArray<string>;
10908
+ }]>, "queryFn"> & {
10909
+ queryFn?: _tanstack_query_core.QueryFunction<ListRepositoriesResponse, [Pick<Options<GetApiV1GithubConnectorRepositoriesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10910
+ _id: string;
10911
+ _infinite?: boolean;
10912
+ tags?: ReadonlyArray<string>;
10913
+ }], never> | undefined;
10914
+ } & {
10915
+ queryKey: [Pick<Options<GetApiV1GithubConnectorRepositoriesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10916
+ _id: string;
10917
+ _infinite?: boolean;
10918
+ tags?: ReadonlyArray<string>;
10919
+ }] & {
10920
+ [dataTagSymbol]: ListRepositoriesResponse;
10921
+ [dataTagErrorSymbol]: unknown;
10922
+ };
10923
+ };
10924
+ /**
10925
+ * get github repository branches
10926
+ *
10927
+ * #### Controller:
10928
+ *
10929
+ * `github.com/raghavyuva/nixopus-api/internal/features/github-connector/controller.(*GithubConnectorController).GetGithubRepositoryBranches`
10930
+ *
10931
+ * #### Middlewares:
10932
+ *
10933
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10934
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10935
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10936
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10937
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10938
+ *
10939
+ * ---
10940
+ *
10941
+ *
10942
+ */
10943
+ declare const postApiV1GithubConnectorRepositoryBranchesMutation: (options?: Partial<Options<PostApiV1GithubConnectorRepositoryBranchesData>>) => UseMutationOptions<PostApiV1GithubConnectorRepositoryBranchesResponse, PostApiV1GithubConnectorRepositoryBranchesError, Options<PostApiV1GithubConnectorRepositoryBranchesData>>;
10944
+ declare const getApiV1HealthQueryKey: (options?: Options<GetApiV1HealthData>) => [Pick<Options<GetApiV1HealthData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10945
+ _id: string;
10946
+ _infinite?: boolean;
10947
+ tags?: ReadonlyArray<string>;
10948
+ }];
10949
+ /**
10950
+ * health check
10951
+ *
10952
+ * #### Controller:
10953
+ *
10954
+ * `github.com/raghavyuva/nixopus-api/internal/features/health.HealthCheck`
10955
+ *
10956
+ * #### Middlewares:
10957
+ *
10958
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10959
+ *
10960
+ * ---
10961
+ *
10962
+ *
10963
+ */
10964
+ declare const getApiV1HealthOptions: (options?: Options<GetApiV1HealthData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<HealthCheckResponse, unknown, HealthCheckResponse, [Pick<Options<GetApiV1HealthData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10965
+ _id: string;
10966
+ _infinite?: boolean;
10967
+ tags?: ReadonlyArray<string>;
10968
+ }]>, "queryFn"> & {
10969
+ queryFn?: _tanstack_query_core.QueryFunction<HealthCheckResponse, [Pick<Options<GetApiV1HealthData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10970
+ _id: string;
10971
+ _infinite?: boolean;
10972
+ tags?: ReadonlyArray<string>;
10973
+ }], never> | undefined;
10974
+ } & {
10975
+ queryKey: [Pick<Options<GetApiV1HealthData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
10976
+ _id: string;
10977
+ _infinite?: boolean;
10978
+ tags?: ReadonlyArray<string>;
10979
+ }] & {
10980
+ [dataTagSymbol]: HealthCheckResponse;
10981
+ [dataTagErrorSymbol]: unknown;
10982
+ };
10983
+ };
10984
+ /**
10985
+ * delete health check
10986
+ *
10987
+ * #### Controller:
10988
+ *
10989
+ * `github.com/raghavyuva/nixopus-api/internal/features/healthcheck/controller.(*HealthCheckController).DeleteHealthCheck`
10990
+ *
10991
+ * #### Middlewares:
10992
+ *
10993
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
10994
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
10995
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
10996
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
10997
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
10998
+ *
10999
+ * ---
11000
+ *
11001
+ *
11002
+ */
11003
+ declare const deleteApiV1HealthcheckMutation: (options?: Partial<Options<DeleteApiV1HealthcheckData>>) => UseMutationOptions<DeleteApiV1HealthcheckResponse, DeleteApiV1HealthcheckError, Options<DeleteApiV1HealthcheckData>>;
11004
+ declare const getApiV1HealthcheckQueryKey: (options?: Options<GetApiV1HealthcheckData>) => [Pick<Options<GetApiV1HealthcheckData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11005
+ _id: string;
11006
+ _infinite?: boolean;
11007
+ tags?: ReadonlyArray<string>;
11008
+ }];
11009
+ /**
11010
+ * get health check
11011
+ *
11012
+ * #### Controller:
11013
+ *
11014
+ * `github.com/raghavyuva/nixopus-api/internal/features/healthcheck/controller.(*HealthCheckController).GetHealthCheck`
11015
+ *
11016
+ * #### Middlewares:
11017
+ *
11018
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11019
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11020
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
11021
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
11022
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
11023
+ *
11024
+ * ---
11025
+ *
11026
+ *
11027
+ */
11028
+ declare const getApiV1HealthcheckOptions: (options?: Options<GetApiV1HealthcheckData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<Response$1, unknown, Response$1, [Pick<Options<GetApiV1HealthcheckData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11029
+ _id: string;
11030
+ _infinite?: boolean;
11031
+ tags?: ReadonlyArray<string>;
11032
+ }]>, "queryFn"> & {
11033
+ queryFn?: _tanstack_query_core.QueryFunction<Response$1, [Pick<Options<GetApiV1HealthcheckData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11034
+ _id: string;
11035
+ _infinite?: boolean;
11036
+ tags?: ReadonlyArray<string>;
11037
+ }], never> | undefined;
11038
+ } & {
11039
+ queryKey: [Pick<Options<GetApiV1HealthcheckData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11040
+ _id: string;
11041
+ _infinite?: boolean;
11042
+ tags?: ReadonlyArray<string>;
11043
+ }] & {
11044
+ [dataTagSymbol]: Response$1;
11045
+ [dataTagErrorSymbol]: unknown;
11046
+ };
11047
+ };
11048
+ /**
11049
+ * create health check
11050
+ *
11051
+ * #### Controller:
11052
+ *
11053
+ * `github.com/raghavyuva/nixopus-api/internal/features/healthcheck/controller.(*HealthCheckController).CreateHealthCheck`
11054
+ *
11055
+ * #### Middlewares:
11056
+ *
11057
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11058
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11059
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
11060
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
11061
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
11062
+ *
11063
+ * ---
11064
+ *
11065
+ *
11066
+ */
11067
+ declare const postApiV1HealthcheckMutation: (options?: Partial<Options<PostApiV1HealthcheckData>>) => UseMutationOptions<PostApiV1HealthcheckResponse, PostApiV1HealthcheckError, Options<PostApiV1HealthcheckData>>;
11068
+ /**
11069
+ * update health check
11070
+ *
11071
+ * #### Controller:
11072
+ *
11073
+ * `github.com/raghavyuva/nixopus-api/internal/features/healthcheck/controller.(*HealthCheckController).UpdateHealthCheck`
11074
+ *
11075
+ * #### Middlewares:
11076
+ *
11077
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11078
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11079
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
11080
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
11081
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
11082
+ *
11083
+ * ---
11084
+ *
11085
+ *
11086
+ */
11087
+ declare const putApiV1HealthcheckMutation: (options?: Partial<Options<PutApiV1HealthcheckData>>) => UseMutationOptions<PutApiV1HealthcheckResponse, PutApiV1HealthcheckError, Options<PutApiV1HealthcheckData>>;
11088
+ declare const getApiV1HealthcheckResultsQueryKey: (options?: Options<GetApiV1HealthcheckResultsData>) => [Pick<Options<GetApiV1HealthcheckResultsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11089
+ _id: string;
11090
+ _infinite?: boolean;
11091
+ tags?: ReadonlyArray<string>;
11092
+ }];
11093
+ /**
11094
+ * get health check results
11095
+ *
11096
+ * #### Controller:
11097
+ *
11098
+ * `github.com/raghavyuva/nixopus-api/internal/features/healthcheck/controller.(*HealthCheckController).GetHealthCheckResults`
11099
+ *
11100
+ * #### Middlewares:
11101
+ *
11102
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11103
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11104
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
11105
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
11106
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
11107
+ *
11108
+ * ---
11109
+ *
11110
+ *
11111
+ */
11112
+ declare const getApiV1HealthcheckResultsOptions: (options?: Options<GetApiV1HealthcheckResultsData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<Response$1, unknown, Response$1, [Pick<Options<GetApiV1HealthcheckResultsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11113
+ _id: string;
11114
+ _infinite?: boolean;
11115
+ tags?: ReadonlyArray<string>;
11116
+ }]>, "queryFn"> & {
11117
+ queryFn?: _tanstack_query_core.QueryFunction<Response$1, [Pick<Options<GetApiV1HealthcheckResultsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11118
+ _id: string;
11119
+ _infinite?: boolean;
11120
+ tags?: ReadonlyArray<string>;
11121
+ }], never> | undefined;
11122
+ } & {
11123
+ queryKey: [Pick<Options<GetApiV1HealthcheckResultsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11124
+ _id: string;
11125
+ _infinite?: boolean;
11126
+ tags?: ReadonlyArray<string>;
11127
+ }] & {
11128
+ [dataTagSymbol]: Response$1;
11129
+ [dataTagErrorSymbol]: unknown;
11130
+ };
11131
+ };
11132
+ declare const getApiV1HealthcheckStatsQueryKey: (options?: Options<GetApiV1HealthcheckStatsData>) => [Pick<Options<GetApiV1HealthcheckStatsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11133
+ _id: string;
11134
+ _infinite?: boolean;
11135
+ tags?: ReadonlyArray<string>;
11136
+ }];
11137
+ /**
11138
+ * get health check stats
11139
+ *
11140
+ * #### Controller:
11141
+ *
11142
+ * `github.com/raghavyuva/nixopus-api/internal/features/healthcheck/controller.(*HealthCheckController).GetHealthCheckStats`
11143
+ *
11144
+ * #### Middlewares:
11145
+ *
11146
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11147
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11148
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
11149
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
11150
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
11151
+ *
11152
+ * ---
11153
+ *
11154
+ *
11155
+ */
11156
+ declare const getApiV1HealthcheckStatsOptions: (options?: Options<GetApiV1HealthcheckStatsData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<Response$1, unknown, Response$1, [Pick<Options<GetApiV1HealthcheckStatsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11157
+ _id: string;
11158
+ _infinite?: boolean;
11159
+ tags?: ReadonlyArray<string>;
11160
+ }]>, "queryFn"> & {
11161
+ queryFn?: _tanstack_query_core.QueryFunction<Response$1, [Pick<Options<GetApiV1HealthcheckStatsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11162
+ _id: string;
11163
+ _infinite?: boolean;
11164
+ tags?: ReadonlyArray<string>;
11165
+ }], never> | undefined;
11166
+ } & {
11167
+ queryKey: [Pick<Options<GetApiV1HealthcheckStatsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11168
+ _id: string;
11169
+ _infinite?: boolean;
11170
+ tags?: ReadonlyArray<string>;
11171
+ }] & {
11172
+ [dataTagSymbol]: Response$1;
11173
+ [dataTagErrorSymbol]: unknown;
11174
+ };
11175
+ };
11176
+ /**
11177
+ * toggle health check
11178
+ *
11179
+ * #### Controller:
11180
+ *
11181
+ * `github.com/raghavyuva/nixopus-api/internal/features/healthcheck/controller.(*HealthCheckController).ToggleHealthCheck`
11182
+ *
11183
+ * #### Middlewares:
11184
+ *
11185
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11186
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11187
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
11188
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
11189
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
11190
+ *
11191
+ * ---
11192
+ *
11193
+ *
11194
+ */
11195
+ declare const patchApiV1HealthcheckToggleMutation: (options?: Partial<Options<PatchApiV1HealthcheckToggleData>>) => UseMutationOptions<PatchApiV1HealthcheckToggleResponse, PatchApiV1HealthcheckToggleError, Options<PatchApiV1HealthcheckToggleData>>;
11196
+ /**
11197
+ * handle pause
11198
+ *
11199
+ * #### Controller:
11200
+ *
11201
+ * `github.com/raghavyuva/nixopus-api/internal/routes.(*LiveDeployController).HandlePause`
11202
+ *
11203
+ * #### Middlewares:
11204
+ *
11205
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11206
+ *
11207
+ * ---
11208
+ *
11209
+ *
11210
+ */
11211
+ declare const postApiV1LivePauseMutation: (options?: Partial<Options<PostApiV1LivePauseData>>) => UseMutationOptions<PostApiV1LivePauseResponse, PostApiV1LivePauseError, Options<PostApiV1LivePauseData>>;
11212
+ declare const getApiV1NotificationPreferencesQueryKey: (options?: Options<GetApiV1NotificationPreferencesData>) => [Pick<Options<GetApiV1NotificationPreferencesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11213
+ _id: string;
11214
+ _infinite?: boolean;
11215
+ tags?: ReadonlyArray<string>;
11216
+ }];
11217
+ /**
11218
+ * get preferences
11219
+ *
11220
+ * #### Controller:
11221
+ *
11222
+ * `github.com/raghavyuva/nixopus-api/internal/features/notification/controller.(*NotificationController).GetPreferences`
11223
+ *
11224
+ * #### Middlewares:
11225
+ *
11226
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11227
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11228
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
11229
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
11230
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
11231
+ *
11232
+ * ---
11233
+ *
11234
+ *
11235
+ */
11236
+ declare const getApiV1NotificationPreferencesOptions: (options?: Options<GetApiV1NotificationPreferencesData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<PreferencesResponse, unknown, PreferencesResponse, [Pick<Options<GetApiV1NotificationPreferencesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11237
+ _id: string;
11238
+ _infinite?: boolean;
11239
+ tags?: ReadonlyArray<string>;
11240
+ }]>, "queryFn"> & {
11241
+ queryFn?: _tanstack_query_core.QueryFunction<PreferencesResponse, [Pick<Options<GetApiV1NotificationPreferencesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11242
+ _id: string;
11243
+ _infinite?: boolean;
11244
+ tags?: ReadonlyArray<string>;
11245
+ }], never> | undefined;
11246
+ } & {
11247
+ queryKey: [Pick<Options<GetApiV1NotificationPreferencesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11248
+ _id: string;
11249
+ _infinite?: boolean;
11250
+ tags?: ReadonlyArray<string>;
11251
+ }] & {
11252
+ [dataTagSymbol]: PreferencesResponse;
11253
+ [dataTagErrorSymbol]: unknown;
11254
+ };
11255
+ };
11256
+ /**
11257
+ * update preference
11258
+ *
11259
+ * #### Controller:
11260
+ *
11261
+ * `github.com/raghavyuva/nixopus-api/internal/features/notification/controller.(*NotificationController).UpdatePreference`
11262
+ *
11263
+ * #### Middlewares:
11264
+ *
11265
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11266
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11267
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
11268
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
11269
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
11270
+ *
11271
+ * ---
11272
+ *
11273
+ *
11274
+ */
11275
+ declare const postApiV1NotificationPreferencesMutation: (options?: Partial<Options<PostApiV1NotificationPreferencesData>>) => UseMutationOptions<PostApiV1NotificationPreferencesResponse, PostApiV1NotificationPreferencesError, Options<PostApiV1NotificationPreferencesData>>;
11276
+ /**
11277
+ * delete smtp
11278
+ *
11279
+ * #### Controller:
11280
+ *
11281
+ * `github.com/raghavyuva/nixopus-api/internal/features/notification/controller.(*NotificationController).DeleteSmtp`
11282
+ *
11283
+ * #### Middlewares:
11284
+ *
11285
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11286
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11287
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
11288
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
11289
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
11290
+ *
11291
+ * ---
11292
+ *
11293
+ *
11294
+ */
11295
+ declare const deleteApiV1NotificationSmtpMutation: (options?: Partial<Options<DeleteApiV1NotificationSmtpData>>) => UseMutationOptions<DeleteApiV1NotificationSmtpResponse, DeleteApiV1NotificationSmtpError, Options<DeleteApiV1NotificationSmtpData>>;
11296
+ declare const getApiV1NotificationSmtpQueryKey: (options?: Options<GetApiV1NotificationSmtpData>) => [Pick<Options<GetApiV1NotificationSmtpData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11297
+ _id: string;
11298
+ _infinite?: boolean;
11299
+ tags?: ReadonlyArray<string>;
11300
+ }];
11301
+ /**
11302
+ * get smtp
11303
+ *
11304
+ * #### Controller:
11305
+ *
11306
+ * `github.com/raghavyuva/nixopus-api/internal/features/notification/controller.(*NotificationController).GetSmtp`
11307
+ *
11308
+ * #### Middlewares:
11309
+ *
11310
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11311
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11312
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
11313
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
11314
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
11315
+ *
11316
+ * ---
11317
+ *
11318
+ *
11319
+ */
11320
+ declare const getApiV1NotificationSmtpOptions: (options?: Options<GetApiV1NotificationSmtpData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<SmtpConfigResponse, unknown, SmtpConfigResponse, [Pick<Options<GetApiV1NotificationSmtpData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11321
+ _id: string;
11322
+ _infinite?: boolean;
11323
+ tags?: ReadonlyArray<string>;
11324
+ }]>, "queryFn"> & {
11325
+ queryFn?: _tanstack_query_core.QueryFunction<SmtpConfigResponse, [Pick<Options<GetApiV1NotificationSmtpData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11326
+ _id: string;
11327
+ _infinite?: boolean;
11328
+ tags?: ReadonlyArray<string>;
11329
+ }], never> | undefined;
11330
+ } & {
11331
+ queryKey: [Pick<Options<GetApiV1NotificationSmtpData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11332
+ _id: string;
11333
+ _infinite?: boolean;
11334
+ tags?: ReadonlyArray<string>;
11335
+ }] & {
11336
+ [dataTagSymbol]: SmtpConfigResponse;
11337
+ [dataTagErrorSymbol]: unknown;
11338
+ };
11339
+ };
11340
+ /**
11341
+ * add smtp
11342
+ *
11343
+ * #### Controller:
11344
+ *
11345
+ * `github.com/raghavyuva/nixopus-api/internal/features/notification/controller.(*NotificationController).AddSmtp`
11346
+ *
11347
+ * #### Middlewares:
11348
+ *
11349
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11350
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11351
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
11352
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
11353
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
11354
+ *
11355
+ * ---
11356
+ *
11357
+ *
11358
+ */
11359
+ declare const postApiV1NotificationSmtpMutation: (options?: Partial<Options<PostApiV1NotificationSmtpData>>) => UseMutationOptions<PostApiV1NotificationSmtpResponse, PostApiV1NotificationSmtpError, Options<PostApiV1NotificationSmtpData>>;
11360
+ /**
11361
+ * update smtp
11362
+ *
11363
+ * #### Controller:
11364
+ *
11365
+ * `github.com/raghavyuva/nixopus-api/internal/features/notification/controller.(*NotificationController).UpdateSmtp`
11366
+ *
11367
+ * #### Middlewares:
11368
+ *
11369
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11370
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11371
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
11372
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
11373
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
11374
+ *
11375
+ * ---
11376
+ *
11377
+ *
11378
+ */
11379
+ declare const putApiV1NotificationSmtpMutation: (options?: Partial<Options<PutApiV1NotificationSmtpData>>) => UseMutationOptions<PutApiV1NotificationSmtpResponse, PutApiV1NotificationSmtpError, Options<PutApiV1NotificationSmtpData>>;
11380
+ /**
11381
+ * delete webhook config
11382
+ *
11383
+ * #### Controller:
11384
+ *
11385
+ * `github.com/raghavyuva/nixopus-api/internal/features/notification/controller.(*NotificationController).DeleteWebhookConfig`
11386
+ *
11387
+ * #### Middlewares:
11388
+ *
11389
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11390
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11391
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
11392
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
11393
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
11394
+ *
11395
+ * ---
11396
+ *
11397
+ *
11398
+ */
11399
+ declare const deleteApiV1NotificationWebhookMutation: (options?: Partial<Options<DeleteApiV1NotificationWebhookData>>) => UseMutationOptions<DeleteApiV1NotificationWebhookResponse, DeleteApiV1NotificationWebhookError, Options<DeleteApiV1NotificationWebhookData>>;
11400
+ /**
11401
+ * create webhook config
11402
+ *
11403
+ * #### Controller:
11404
+ *
11405
+ * `github.com/raghavyuva/nixopus-api/internal/features/notification/controller.(*NotificationController).CreateWebhookConfig`
11406
+ *
11407
+ * #### Middlewares:
11408
+ *
11409
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11410
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11411
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
11412
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
11413
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
11414
+ *
11415
+ * ---
11416
+ *
11417
+ *
11418
+ */
11419
+ declare const postApiV1NotificationWebhookMutation: (options?: Partial<Options<PostApiV1NotificationWebhookData>>) => UseMutationOptions<PostApiV1NotificationWebhookResponse, PostApiV1NotificationWebhookError, Options<PostApiV1NotificationWebhookData>>;
11420
+ /**
11421
+ * update webhook config
11422
+ *
11423
+ * #### Controller:
11424
+ *
11425
+ * `github.com/raghavyuva/nixopus-api/internal/features/notification/controller.(*NotificationController).UpdateWebhookConfig`
11426
+ *
11427
+ * #### Middlewares:
11428
+ *
11429
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11430
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11431
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
11432
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
11433
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
11434
+ *
11435
+ * ---
11436
+ *
11437
+ *
11438
+ */
11439
+ declare const putApiV1NotificationWebhookMutation: (options?: Partial<Options<PutApiV1NotificationWebhookData>>) => UseMutationOptions<PutApiV1NotificationWebhookResponse, PutApiV1NotificationWebhookError, Options<PutApiV1NotificationWebhookData>>;
11440
+ declare const getApiV1NotificationWebhookTypeQueryKey: (options: Options<GetApiV1NotificationWebhookTypeData>) => [Pick<Options<GetApiV1NotificationWebhookTypeData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11441
+ _id: string;
11442
+ _infinite?: boolean;
11443
+ tags?: ReadonlyArray<string>;
11444
+ }];
11445
+ /**
11446
+ * get webhook config
11447
+ *
11448
+ * #### Controller:
11449
+ *
11450
+ * `github.com/raghavyuva/nixopus-api/internal/features/notification/controller.(*NotificationController).GetWebhookConfig`
11451
+ *
11452
+ * #### Middlewares:
11453
+ *
11454
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11455
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11456
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
11457
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
11458
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
11459
+ *
11460
+ * ---
11461
+ *
11462
+ *
11463
+ */
11464
+ declare const getApiV1NotificationWebhookTypeOptions: (options: Options<GetApiV1NotificationWebhookTypeData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<WebhookConfigResponse, unknown, WebhookConfigResponse, [Pick<Options<GetApiV1NotificationWebhookTypeData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11465
+ _id: string;
11466
+ _infinite?: boolean;
11467
+ tags?: ReadonlyArray<string>;
11468
+ }]>, "queryFn"> & {
11469
+ queryFn?: _tanstack_query_core.QueryFunction<WebhookConfigResponse, [Pick<Options<GetApiV1NotificationWebhookTypeData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11470
+ _id: string;
11471
+ _infinite?: boolean;
11472
+ tags?: ReadonlyArray<string>;
11473
+ }], never> | undefined;
11474
+ } & {
11475
+ queryKey: [Pick<Options<GetApiV1NotificationWebhookTypeData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11476
+ _id: string;
11477
+ _infinite?: boolean;
11478
+ tags?: ReadonlyArray<string>;
11479
+ }] & {
11480
+ [dataTagSymbol]: WebhookConfigResponse;
11481
+ [dataTagErrorSymbol]: unknown;
11482
+ };
11483
+ };
11484
+ declare const getApiV1ServersQueryKey: (options?: Options<GetApiV1ServersData>) => [Pick<Options<GetApiV1ServersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11485
+ _id: string;
11486
+ _infinite?: boolean;
11487
+ tags?: ReadonlyArray<string>;
11488
+ }];
11489
+ /**
11490
+ * list servers
11491
+ *
11492
+ * #### Controller:
11493
+ *
11494
+ * `github.com/raghavyuva/nixopus-api/internal/features/server/controller.(*ServerController).ListServers`
11495
+ *
11496
+ * #### Middlewares:
11497
+ *
11498
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11499
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11500
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
11501
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
11502
+ *
11503
+ * ---
11504
+ *
11505
+ *
11506
+ */
11507
+ declare const getApiV1ServersOptions: (options?: Options<GetApiV1ServersData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<ListServersResponse, unknown, ListServersResponse, [Pick<Options<GetApiV1ServersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11508
+ _id: string;
11509
+ _infinite?: boolean;
11510
+ tags?: ReadonlyArray<string>;
11511
+ }]>, "queryFn"> & {
11512
+ queryFn?: _tanstack_query_core.QueryFunction<ListServersResponse, [Pick<Options<GetApiV1ServersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11513
+ _id: string;
11514
+ _infinite?: boolean;
11515
+ tags?: ReadonlyArray<string>;
11516
+ }], never> | undefined;
11517
+ } & {
11518
+ queryKey: [Pick<Options<GetApiV1ServersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11519
+ _id: string;
11520
+ _infinite?: boolean;
11521
+ tags?: ReadonlyArray<string>;
11522
+ }] & {
11523
+ [dataTagSymbol]: ListServersResponse;
11524
+ [dataTagErrorSymbol]: unknown;
11525
+ };
11526
+ };
11527
+ declare const getApiV1ServersSshStatusQueryKey: (options?: Options<GetApiV1ServersSshStatusData>) => [Pick<Options<GetApiV1ServersSshStatusData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11528
+ _id: string;
11529
+ _infinite?: boolean;
11530
+ tags?: ReadonlyArray<string>;
11531
+ }];
11532
+ /**
11533
+ * check s s h status
11534
+ *
11535
+ * #### Controller:
11536
+ *
11537
+ * `github.com/raghavyuva/nixopus-api/internal/features/server/controller.(*ServerController).CheckSSHStatus`
11538
+ *
11539
+ * #### Middlewares:
11540
+ *
11541
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11542
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11543
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
11544
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
11545
+ *
11546
+ * ---
11547
+ *
11548
+ *
11549
+ */
11550
+ declare const getApiV1ServersSshStatusOptions: (options?: Options<GetApiV1ServersSshStatusData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<SshConnectionStatusResponse, unknown, SshConnectionStatusResponse, [Pick<Options<GetApiV1ServersSshStatusData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11551
+ _id: string;
11552
+ _infinite?: boolean;
11553
+ tags?: ReadonlyArray<string>;
11554
+ }]>, "queryFn"> & {
11555
+ queryFn?: _tanstack_query_core.QueryFunction<SshConnectionStatusResponse, [Pick<Options<GetApiV1ServersSshStatusData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11556
+ _id: string;
11557
+ _infinite?: boolean;
11558
+ tags?: ReadonlyArray<string>;
11559
+ }], never> | undefined;
11560
+ } & {
11561
+ queryKey: [Pick<Options<GetApiV1ServersSshStatusData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11562
+ _id: string;
11563
+ _infinite?: boolean;
11564
+ tags?: ReadonlyArray<string>;
11565
+ }] & {
11566
+ [dataTagSymbol]: SshConnectionStatusResponse;
11567
+ [dataTagErrorSymbol]: unknown;
11568
+ };
11569
+ };
11570
+ /**
11571
+ * provision trail
11572
+ *
11573
+ * #### Controller:
11574
+ *
11575
+ * `github.com/raghavyuva/nixopus-api/internal/features/trail/controller.(*TrailController).ProvisionTrail`
11576
+ *
11577
+ * #### Middlewares:
11578
+ *
11579
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11580
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11581
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
11582
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
11583
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
11584
+ *
11585
+ * ---
11586
+ *
11587
+ *
11588
+ */
11589
+ declare const postApiV1TrailProvisionMutation: (options?: Partial<Options<PostApiV1TrailProvisionData>>) => UseMutationOptions<PostApiV1TrailProvisionResponse, PostApiV1TrailProvisionError, Options<PostApiV1TrailProvisionData>>;
11590
+ declare const getApiV1TrailStatusSessionIdQueryKey: (options: Options<GetApiV1TrailStatusSessionIdData>) => [Pick<Options<GetApiV1TrailStatusSessionIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11591
+ _id: string;
11592
+ _infinite?: boolean;
11593
+ tags?: ReadonlyArray<string>;
11594
+ }];
11595
+ /**
11596
+ * get status
11597
+ *
11598
+ * #### Controller:
11599
+ *
11600
+ * `github.com/raghavyuva/nixopus-api/internal/features/trail/controller.(*TrailController).GetStatus`
11601
+ *
11602
+ * #### Middlewares:
11603
+ *
11604
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11605
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11606
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func1`
11607
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func2`
11608
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).applyMiddleware.func3`
11609
+ *
11610
+ * ---
11611
+ *
11612
+ *
11613
+ */
11614
+ declare const getApiV1TrailStatusSessionIdOptions: (options: Options<GetApiV1TrailStatusSessionIdData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<Response$1, unknown, Response$1, [Pick<Options<GetApiV1TrailStatusSessionIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11615
+ _id: string;
11616
+ _infinite?: boolean;
11617
+ tags?: ReadonlyArray<string>;
11618
+ }]>, "queryFn"> & {
11619
+ queryFn?: _tanstack_query_core.QueryFunction<Response$1, [Pick<Options<GetApiV1TrailStatusSessionIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11620
+ _id: string;
11621
+ _infinite?: boolean;
11622
+ tags?: ReadonlyArray<string>;
11623
+ }], never> | undefined;
11624
+ } & {
11625
+ queryKey: [Pick<Options<GetApiV1TrailStatusSessionIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11626
+ _id: string;
11627
+ _infinite?: boolean;
11628
+ tags?: ReadonlyArray<string>;
11629
+ }] & {
11630
+ [dataTagSymbol]: Response$1;
11631
+ [dataTagErrorSymbol]: unknown;
11632
+ };
11633
+ };
11634
+ /**
11635
+ * perform update
11636
+ *
11637
+ * #### Controller:
11638
+ *
11639
+ * `github.com/raghavyuva/nixopus-api/internal/features/update/controller.(*UpdateController).PerformUpdate`
11640
+ *
11641
+ * #### Middlewares:
11642
+ *
11643
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11644
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11645
+ *
11646
+ * ---
11647
+ *
11648
+ *
11649
+ */
11650
+ declare const postApiV1UpdateMutation: (options?: Partial<Options<PostApiV1UpdateData>>) => UseMutationOptions<PostApiV1UpdateResponse, PostApiV1UpdateError, Options<PostApiV1UpdateData>>;
11651
+ declare const getApiV1UpdateCheckQueryKey: (options?: Options<GetApiV1UpdateCheckData>) => [Pick<Options<GetApiV1UpdateCheckData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11652
+ _id: string;
11653
+ _infinite?: boolean;
11654
+ tags?: ReadonlyArray<string>;
11655
+ }];
11656
+ /**
11657
+ * check for updates
11658
+ *
11659
+ * #### Controller:
11660
+ *
11661
+ * `github.com/raghavyuva/nixopus-api/internal/features/update/controller.(*UpdateController).CheckForUpdates`
11662
+ *
11663
+ * #### Middlewares:
11664
+ *
11665
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11666
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11667
+ *
11668
+ * ---
11669
+ *
11670
+ *
11671
+ */
11672
+ declare const getApiV1UpdateCheckOptions: (options?: Options<GetApiV1UpdateCheckData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<UpdateCheckResponse, unknown, UpdateCheckResponse, [Pick<Options<GetApiV1UpdateCheckData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11673
+ _id: string;
11674
+ _infinite?: boolean;
11675
+ tags?: ReadonlyArray<string>;
11676
+ }]>, "queryFn"> & {
11677
+ queryFn?: _tanstack_query_core.QueryFunction<UpdateCheckResponse, [Pick<Options<GetApiV1UpdateCheckData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11678
+ _id: string;
11679
+ _infinite?: boolean;
11680
+ tags?: ReadonlyArray<string>;
11681
+ }], never> | undefined;
11682
+ } & {
11683
+ queryKey: [Pick<Options<GetApiV1UpdateCheckData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11684
+ _id: string;
11685
+ _infinite?: boolean;
11686
+ tags?: ReadonlyArray<string>;
11687
+ }] & {
11688
+ [dataTagSymbol]: UpdateCheckResponse;
11689
+ [dataTagErrorSymbol]: unknown;
11690
+ };
11691
+ };
11692
+ declare const getApiV1UserQueryKey: (options?: Options<GetApiV1UserData>) => [Pick<Options<GetApiV1UserData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11693
+ _id: string;
11694
+ _infinite?: boolean;
11695
+ tags?: ReadonlyArray<string>;
11696
+ }];
11697
+ /**
11698
+ * get user details
11699
+ *
11700
+ * #### Controller:
11701
+ *
11702
+ * `github.com/raghavyuva/nixopus-api/internal/features/user/controller.(*UserController).GetUserDetails`
11703
+ *
11704
+ * #### Middlewares:
11705
+ *
11706
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11707
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11708
+ *
11709
+ * ---
11710
+ *
11711
+ *
11712
+ */
11713
+ declare const getApiV1UserOptions: (options?: Options<GetApiV1UserData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<UserResponse, unknown, UserResponse, [Pick<Options<GetApiV1UserData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11714
+ _id: string;
11715
+ _infinite?: boolean;
11716
+ tags?: ReadonlyArray<string>;
11717
+ }]>, "queryFn"> & {
11718
+ queryFn?: _tanstack_query_core.QueryFunction<UserResponse, [Pick<Options<GetApiV1UserData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11719
+ _id: string;
11720
+ _infinite?: boolean;
11721
+ tags?: ReadonlyArray<string>;
11722
+ }], never> | undefined;
11723
+ } & {
11724
+ queryKey: [Pick<Options<GetApiV1UserData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11725
+ _id: string;
11726
+ _infinite?: boolean;
11727
+ tags?: ReadonlyArray<string>;
11728
+ }] & {
11729
+ [dataTagSymbol]: UserResponse;
11730
+ [dataTagErrorSymbol]: unknown;
11731
+ };
11732
+ };
11733
+ /**
11734
+ * update avatar
11735
+ *
11736
+ * #### Controller:
11737
+ *
11738
+ * `github.com/raghavyuva/nixopus-api/internal/features/user/controller.(*UserController).UpdateAvatar`
11739
+ *
11740
+ * #### Middlewares:
11741
+ *
11742
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11743
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11744
+ *
11745
+ * ---
11746
+ *
11747
+ *
11748
+ */
11749
+ declare const patchApiV1UserAvatarMutation: (options?: Partial<Options<PatchApiV1UserAvatarData>>) => UseMutationOptions<PatchApiV1UserAvatarResponse, PatchApiV1UserAvatarError, Options<PatchApiV1UserAvatarData>>;
11750
+ /**
11751
+ * update user name
11752
+ *
11753
+ * #### Controller:
11754
+ *
11755
+ * `github.com/raghavyuva/nixopus-api/internal/features/user/controller.(*UserController).UpdateUserName`
11756
+ *
11757
+ * #### Middlewares:
11758
+ *
11759
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11760
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11761
+ *
11762
+ * ---
11763
+ *
11764
+ *
11765
+ */
11766
+ declare const patchApiV1UserNameMutation: (options?: Partial<Options<PatchApiV1UserNameData>>) => UseMutationOptions<PatchApiV1UserNameResponse, PatchApiV1UserNameError, Options<PatchApiV1UserNameData>>;
11767
+ declare const getApiV1UserOnboardedQueryKey: (options?: Options<GetApiV1UserOnboardedData>) => [Pick<Options<GetApiV1UserOnboardedData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11768
+ _id: string;
11769
+ _infinite?: boolean;
11770
+ tags?: ReadonlyArray<string>;
11771
+ }];
11772
+ /**
11773
+ * get is onboarded
11774
+ *
11775
+ * #### Controller:
11776
+ *
11777
+ * `github.com/raghavyuva/nixopus-api/internal/features/user/controller.(*UserController).GetIsOnboarded`
11778
+ *
11779
+ * #### Middlewares:
11780
+ *
11781
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11782
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11783
+ *
11784
+ * ---
11785
+ *
11786
+ *
11787
+ */
11788
+ declare const getApiV1UserOnboardedOptions: (options?: Options<GetApiV1UserOnboardedData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<IsOnboardedResponse, unknown, IsOnboardedResponse, [Pick<Options<GetApiV1UserOnboardedData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11789
+ _id: string;
11790
+ _infinite?: boolean;
11791
+ tags?: ReadonlyArray<string>;
11792
+ }]>, "queryFn"> & {
11793
+ queryFn?: _tanstack_query_core.QueryFunction<IsOnboardedResponse, [Pick<Options<GetApiV1UserOnboardedData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11794
+ _id: string;
11795
+ _infinite?: boolean;
11796
+ tags?: ReadonlyArray<string>;
11797
+ }], never> | undefined;
11798
+ } & {
11799
+ queryKey: [Pick<Options<GetApiV1UserOnboardedData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11800
+ _id: string;
11801
+ _infinite?: boolean;
11802
+ tags?: ReadonlyArray<string>;
11803
+ }] & {
11804
+ [dataTagSymbol]: IsOnboardedResponse;
11805
+ [dataTagErrorSymbol]: unknown;
11806
+ };
11807
+ };
11808
+ /**
11809
+ * mark onboarding complete
11810
+ *
11811
+ * #### Controller:
11812
+ *
11813
+ * `github.com/raghavyuva/nixopus-api/internal/features/user/controller.(*UserController).MarkOnboardingComplete`
11814
+ *
11815
+ * #### Middlewares:
11816
+ *
11817
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11818
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11819
+ *
11820
+ * ---
11821
+ *
11822
+ *
11823
+ */
11824
+ declare const postApiV1UserOnboardedMutation: (options?: Partial<Options<PostApiV1UserOnboardedData>>) => UseMutationOptions<PostApiV1UserOnboardedResponse, PostApiV1UserOnboardedError, Options<PostApiV1UserOnboardedData>>;
11825
+ declare const getApiV1UserPreferencesQueryKey: (options?: Options<GetApiV1UserPreferencesData>) => [Pick<Options<GetApiV1UserPreferencesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11826
+ _id: string;
11827
+ _infinite?: boolean;
11828
+ tags?: ReadonlyArray<string>;
11829
+ }];
11830
+ /**
11831
+ * get user preferences
11832
+ *
11833
+ * #### Controller:
11834
+ *
11835
+ * `github.com/raghavyuva/nixopus-api/internal/features/user/controller.(*UserController).GetUserPreferences`
11836
+ *
11837
+ * #### Middlewares:
11838
+ *
11839
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11840
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11841
+ *
11842
+ * ---
11843
+ *
11844
+ *
11845
+ */
11846
+ declare const getApiV1UserPreferencesOptions: (options?: Options<GetApiV1UserPreferencesData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<UserPreferencesResponse, unknown, UserPreferencesResponse, [Pick<Options<GetApiV1UserPreferencesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11847
+ _id: string;
11848
+ _infinite?: boolean;
11849
+ tags?: ReadonlyArray<string>;
11850
+ }]>, "queryFn"> & {
11851
+ queryFn?: _tanstack_query_core.QueryFunction<UserPreferencesResponse, [Pick<Options<GetApiV1UserPreferencesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11852
+ _id: string;
11853
+ _infinite?: boolean;
11854
+ tags?: ReadonlyArray<string>;
11855
+ }], never> | undefined;
11856
+ } & {
11857
+ queryKey: [Pick<Options<GetApiV1UserPreferencesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11858
+ _id: string;
11859
+ _infinite?: boolean;
11860
+ tags?: ReadonlyArray<string>;
11861
+ }] & {
11862
+ [dataTagSymbol]: UserPreferencesResponse;
11863
+ [dataTagErrorSymbol]: unknown;
11864
+ };
11865
+ };
11866
+ /**
11867
+ * update user preferences
11868
+ *
11869
+ * #### Controller:
11870
+ *
11871
+ * `github.com/raghavyuva/nixopus-api/internal/features/user/controller.(*UserController).UpdateUserPreferences`
11872
+ *
11873
+ * #### Middlewares:
11874
+ *
11875
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11876
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11877
+ *
11878
+ * ---
11879
+ *
11880
+ *
11881
+ */
11882
+ declare const putApiV1UserPreferencesMutation: (options?: Partial<Options<PutApiV1UserPreferencesData>>) => UseMutationOptions<PutApiV1UserPreferencesResponse, PutApiV1UserPreferencesError, Options<PutApiV1UserPreferencesData>>;
11883
+ declare const getApiV1UserSettingsQueryKey: (options?: Options<GetApiV1UserSettingsData>) => [Pick<Options<GetApiV1UserSettingsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11884
+ _id: string;
11885
+ _infinite?: boolean;
11886
+ tags?: ReadonlyArray<string>;
11887
+ }];
11888
+ /**
11889
+ * get settings
11890
+ *
11891
+ * #### Controller:
11892
+ *
11893
+ * `github.com/raghavyuva/nixopus-api/internal/features/user/controller.(*UserController).GetSettings`
11894
+ *
11895
+ * #### Middlewares:
11896
+ *
11897
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11898
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11899
+ *
11900
+ * ---
11901
+ *
11902
+ *
11903
+ */
11904
+ declare const getApiV1UserSettingsOptions: (options?: Options<GetApiV1UserSettingsData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<UserSettingsResponse, unknown, UserSettingsResponse, [Pick<Options<GetApiV1UserSettingsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11905
+ _id: string;
11906
+ _infinite?: boolean;
11907
+ tags?: ReadonlyArray<string>;
11908
+ }]>, "queryFn"> & {
11909
+ queryFn?: _tanstack_query_core.QueryFunction<UserSettingsResponse, [Pick<Options<GetApiV1UserSettingsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11910
+ _id: string;
11911
+ _infinite?: boolean;
11912
+ tags?: ReadonlyArray<string>;
11913
+ }], never> | undefined;
11914
+ } & {
11915
+ queryKey: [Pick<Options<GetApiV1UserSettingsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11916
+ _id: string;
11917
+ _infinite?: boolean;
11918
+ tags?: ReadonlyArray<string>;
11919
+ }] & {
11920
+ [dataTagSymbol]: UserSettingsResponse;
11921
+ [dataTagErrorSymbol]: unknown;
11922
+ };
11923
+ };
11924
+ /**
11925
+ * update auto update
11926
+ *
11927
+ * #### Controller:
11928
+ *
11929
+ * `github.com/raghavyuva/nixopus-api/internal/features/user/controller.(*UserController).UpdateAutoUpdate`
11930
+ *
11931
+ * #### Middlewares:
11932
+ *
11933
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11934
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11935
+ *
11936
+ * ---
11937
+ *
11938
+ *
11939
+ */
11940
+ declare const patchApiV1UserSettingsAutoUpdateMutation: (options?: Partial<Options<PatchApiV1UserSettingsAutoUpdateData>>) => UseMutationOptions<PatchApiV1UserSettingsAutoUpdateResponse, PatchApiV1UserSettingsAutoUpdateError, Options<PatchApiV1UserSettingsAutoUpdateData>>;
11941
+ /**
11942
+ * update font
11943
+ *
11944
+ * #### Controller:
11945
+ *
11946
+ * `github.com/raghavyuva/nixopus-api/internal/features/user/controller.(*UserController).UpdateFont`
11947
+ *
11948
+ * #### Middlewares:
11949
+ *
11950
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11951
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11952
+ *
11953
+ * ---
11954
+ *
11955
+ *
11956
+ */
11957
+ declare const patchApiV1UserSettingsFontMutation: (options?: Partial<Options<PatchApiV1UserSettingsFontData>>) => UseMutationOptions<PatchApiV1UserSettingsFontResponse, PatchApiV1UserSettingsFontError, Options<PatchApiV1UserSettingsFontData>>;
11958
+ /**
11959
+ * update language
11960
+ *
11961
+ * #### Controller:
11962
+ *
11963
+ * `github.com/raghavyuva/nixopus-api/internal/features/user/controller.(*UserController).UpdateLanguage`
11964
+ *
11965
+ * #### Middlewares:
11966
+ *
11967
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11968
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11969
+ *
11970
+ * ---
11971
+ *
11972
+ *
11973
+ */
11974
+ declare const patchApiV1UserSettingsLanguageMutation: (options?: Partial<Options<PatchApiV1UserSettingsLanguageData>>) => UseMutationOptions<PatchApiV1UserSettingsLanguageResponse, PatchApiV1UserSettingsLanguageError, Options<PatchApiV1UserSettingsLanguageData>>;
11975
+ /**
11976
+ * update theme
11977
+ *
11978
+ * #### Controller:
11979
+ *
11980
+ * `github.com/raghavyuva/nixopus-api/internal/features/user/controller.(*UserController).UpdateTheme`
11981
+ *
11982
+ * #### Middlewares:
11983
+ *
11984
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
11985
+ * - `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).SetupRoutes.(*Router).setupAuthentication.func2`
11986
+ *
11987
+ * ---
11988
+ *
11989
+ *
11990
+ */
11991
+ declare const patchApiV1UserSettingsThemeMutation: (options?: Partial<Options<PatchApiV1UserSettingsThemeData>>) => UseMutationOptions<PatchApiV1UserSettingsThemeResponse, PatchApiV1UserSettingsThemeError, Options<PatchApiV1UserSettingsThemeData>>;
11992
+ /**
11993
+ * handle github webhook
11994
+ *
11995
+ * #### Controller:
11996
+ *
11997
+ * `github.com/raghavyuva/nixopus-api/internal/features/deploy/controller.(*DeployController).HandleGithubWebhook`
11998
+ *
11999
+ * #### Middlewares:
12000
+ *
12001
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
12002
+ *
12003
+ * ---
12004
+ *
12005
+ *
12006
+ */
12007
+ declare const postApiV1WebhookMutation: (options?: Partial<Options<PostApiV1WebhookData>>) => UseMutationOptions<PostApiV1WebhookResponse, PostApiV1WebhookError, Options<PostApiV1WebhookData>>;
12008
+ declare const getWsQueryKey: (options?: Options<GetWsData>) => [Pick<Options<GetWsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
12009
+ _id: string;
12010
+ _infinite?: boolean;
12011
+ tags?: ReadonlyArray<string>;
12012
+ }];
12013
+ /**
12014
+ * func1
12015
+ *
12016
+ * #### Controller:
12017
+ *
12018
+ * `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).RegisterWebSocketRoutes.func1`
12019
+ *
12020
+ * #### Middlewares:
12021
+ *
12022
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
12023
+ *
12024
+ * ---
12025
+ *
12026
+ *
12027
+ */
12028
+ declare const getWsOptions: (options?: Options<GetWsData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<unknown, unknown, unknown, [Pick<Options<GetWsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
12029
+ _id: string;
12030
+ _infinite?: boolean;
12031
+ tags?: ReadonlyArray<string>;
12032
+ }]>, "queryFn"> & {
12033
+ queryFn?: _tanstack_query_core.QueryFunction<unknown, [Pick<Options<GetWsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
12034
+ _id: string;
12035
+ _infinite?: boolean;
12036
+ tags?: ReadonlyArray<string>;
12037
+ }], never> | undefined;
12038
+ } & {
12039
+ queryKey: [Pick<Options<GetWsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
12040
+ _id: string;
12041
+ _infinite?: boolean;
12042
+ tags?: ReadonlyArray<string>;
12043
+ }] & {
12044
+ [dataTagSymbol]: unknown;
12045
+ [dataTagErrorSymbol]: unknown;
12046
+ };
12047
+ };
12048
+ declare const getWsLiveApplicationIdQueryKey: (options: Options<GetWsLiveApplicationIdData>) => [Pick<Options<GetWsLiveApplicationIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
12049
+ _id: string;
12050
+ _infinite?: boolean;
12051
+ tags?: ReadonlyArray<string>;
12052
+ }];
12053
+ /**
12054
+ * func1
12055
+ *
12056
+ * #### Controller:
12057
+ *
12058
+ * `github.com/raghavyuva/nixopus-api/internal/routes.(*Router).RegisterLiveDeployRoutes.func1`
12059
+ *
12060
+ * #### Middlewares:
12061
+ *
12062
+ * - `github.com/go-fuego/fuego.defaultLogger.middleware`
12063
+ *
12064
+ * ---
12065
+ *
12066
+ *
12067
+ */
12068
+ declare const getWsLiveApplicationIdOptions: (options: Options<GetWsLiveApplicationIdData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<unknown, unknown, unknown, [Pick<Options<GetWsLiveApplicationIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
12069
+ _id: string;
12070
+ _infinite?: boolean;
12071
+ tags?: ReadonlyArray<string>;
12072
+ }]>, "queryFn"> & {
12073
+ queryFn?: _tanstack_query_core.QueryFunction<unknown, [Pick<Options<GetWsLiveApplicationIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
12074
+ _id: string;
12075
+ _infinite?: boolean;
12076
+ tags?: ReadonlyArray<string>;
12077
+ }], never> | undefined;
12078
+ } & {
12079
+ queryKey: [Pick<Options<GetWsLiveApplicationIdData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
12080
+ _id: string;
12081
+ _infinite?: boolean;
12082
+ tags?: ReadonlyArray<string>;
12083
+ }] & {
12084
+ [dataTagSymbol]: unknown;
12085
+ [dataTagErrorSymbol]: unknown;
12086
+ };
12087
+ };
12088
+
8859
12089
  /**
8860
12090
  * AddApplicationDomainRequest schema
8861
12091
  */
@@ -14094,13 +17324,13 @@ declare const zPreferencesResponse: z.ZodObject<{
14094
17324
  }, "strip", z.ZodTypeAny, {
14095
17325
  label?: string | undefined;
14096
17326
  id?: string | undefined;
14097
- description?: string | undefined;
14098
17327
  enabled?: boolean | undefined;
17328
+ description?: string | undefined;
14099
17329
  }, {
14100
17330
  label?: string | undefined;
14101
17331
  id?: string | undefined;
14102
- description?: string | undefined;
14103
17332
  enabled?: boolean | undefined;
17333
+ description?: string | undefined;
14104
17334
  }>, "many">>;
14105
17335
  security: z.ZodOptional<z.ZodArray<z.ZodObject<{
14106
17336
  description: z.ZodOptional<z.ZodString>;
@@ -14110,13 +17340,13 @@ declare const zPreferencesResponse: z.ZodObject<{
14110
17340
  }, "strip", z.ZodTypeAny, {
14111
17341
  label?: string | undefined;
14112
17342
  id?: string | undefined;
14113
- description?: string | undefined;
14114
17343
  enabled?: boolean | undefined;
17344
+ description?: string | undefined;
14115
17345
  }, {
14116
17346
  label?: string | undefined;
14117
17347
  id?: string | undefined;
14118
- description?: string | undefined;
14119
17348
  enabled?: boolean | undefined;
17349
+ description?: string | undefined;
14120
17350
  }>, "many">>;
14121
17351
  update: z.ZodOptional<z.ZodArray<z.ZodObject<{
14122
17352
  description: z.ZodOptional<z.ZodString>;
@@ -14126,51 +17356,51 @@ declare const zPreferencesResponse: z.ZodObject<{
14126
17356
  }, "strip", z.ZodTypeAny, {
14127
17357
  label?: string | undefined;
14128
17358
  id?: string | undefined;
14129
- description?: string | undefined;
14130
17359
  enabled?: boolean | undefined;
17360
+ description?: string | undefined;
14131
17361
  }, {
14132
17362
  label?: string | undefined;
14133
17363
  id?: string | undefined;
14134
- description?: string | undefined;
14135
17364
  enabled?: boolean | undefined;
17365
+ description?: string | undefined;
14136
17366
  }>, "many">>;
14137
17367
  }, "strip", z.ZodTypeAny, {
14138
17368
  security?: {
14139
17369
  label?: string | undefined;
14140
17370
  id?: string | undefined;
14141
- description?: string | undefined;
14142
17371
  enabled?: boolean | undefined;
17372
+ description?: string | undefined;
14143
17373
  }[] | undefined;
14144
17374
  activity?: {
14145
17375
  label?: string | undefined;
14146
17376
  id?: string | undefined;
14147
- description?: string | undefined;
14148
17377
  enabled?: boolean | undefined;
17378
+ description?: string | undefined;
14149
17379
  }[] | undefined;
14150
17380
  update?: {
14151
17381
  label?: string | undefined;
14152
17382
  id?: string | undefined;
14153
- description?: string | undefined;
14154
17383
  enabled?: boolean | undefined;
17384
+ description?: string | undefined;
14155
17385
  }[] | undefined;
14156
17386
  }, {
14157
17387
  security?: {
14158
17388
  label?: string | undefined;
14159
17389
  id?: string | undefined;
14160
- description?: string | undefined;
14161
17390
  enabled?: boolean | undefined;
17391
+ description?: string | undefined;
14162
17392
  }[] | undefined;
14163
17393
  activity?: {
14164
17394
  label?: string | undefined;
14165
17395
  id?: string | undefined;
14166
- description?: string | undefined;
14167
17396
  enabled?: boolean | undefined;
17397
+ description?: string | undefined;
14168
17398
  }[] | undefined;
14169
17399
  update?: {
14170
17400
  label?: string | undefined;
14171
17401
  id?: string | undefined;
14172
- description?: string | undefined;
14173
17402
  enabled?: boolean | undefined;
17403
+ description?: string | undefined;
14174
17404
  }[] | undefined;
14175
17405
  }>>;
14176
17406
  message: z.ZodOptional<z.ZodString>;
@@ -14180,20 +17410,20 @@ declare const zPreferencesResponse: z.ZodObject<{
14180
17410
  security?: {
14181
17411
  label?: string | undefined;
14182
17412
  id?: string | undefined;
14183
- description?: string | undefined;
14184
17413
  enabled?: boolean | undefined;
17414
+ description?: string | undefined;
14185
17415
  }[] | undefined;
14186
17416
  activity?: {
14187
17417
  label?: string | undefined;
14188
17418
  id?: string | undefined;
14189
- description?: string | undefined;
14190
17419
  enabled?: boolean | undefined;
17420
+ description?: string | undefined;
14191
17421
  }[] | undefined;
14192
17422
  update?: {
14193
17423
  label?: string | undefined;
14194
17424
  id?: string | undefined;
14195
- description?: string | undefined;
14196
17425
  enabled?: boolean | undefined;
17426
+ description?: string | undefined;
14197
17427
  }[] | undefined;
14198
17428
  } | undefined;
14199
17429
  message?: string | undefined;
@@ -14203,20 +17433,20 @@ declare const zPreferencesResponse: z.ZodObject<{
14203
17433
  security?: {
14204
17434
  label?: string | undefined;
14205
17435
  id?: string | undefined;
14206
- description?: string | undefined;
14207
17436
  enabled?: boolean | undefined;
17437
+ description?: string | undefined;
14208
17438
  }[] | undefined;
14209
17439
  activity?: {
14210
17440
  label?: string | undefined;
14211
17441
  id?: string | undefined;
14212
- description?: string | undefined;
14213
17442
  enabled?: boolean | undefined;
17443
+ description?: string | undefined;
14214
17444
  }[] | undefined;
14215
17445
  update?: {
14216
17446
  label?: string | undefined;
14217
17447
  id?: string | undefined;
14218
- description?: string | undefined;
14219
17448
  enabled?: boolean | undefined;
17449
+ description?: string | undefined;
14220
17450
  }[] | undefined;
14221
17451
  } | undefined;
14222
17452
  message?: string | undefined;
@@ -35625,13 +38855,13 @@ declare const zGetApiV1NotificationPreferencesResponse: z.ZodObject<{
35625
38855
  }, "strip", z.ZodTypeAny, {
35626
38856
  label?: string | undefined;
35627
38857
  id?: string | undefined;
35628
- description?: string | undefined;
35629
38858
  enabled?: boolean | undefined;
38859
+ description?: string | undefined;
35630
38860
  }, {
35631
38861
  label?: string | undefined;
35632
38862
  id?: string | undefined;
35633
- description?: string | undefined;
35634
38863
  enabled?: boolean | undefined;
38864
+ description?: string | undefined;
35635
38865
  }>, "many">>;
35636
38866
  security: z.ZodOptional<z.ZodArray<z.ZodObject<{
35637
38867
  description: z.ZodOptional<z.ZodString>;
@@ -35641,13 +38871,13 @@ declare const zGetApiV1NotificationPreferencesResponse: z.ZodObject<{
35641
38871
  }, "strip", z.ZodTypeAny, {
35642
38872
  label?: string | undefined;
35643
38873
  id?: string | undefined;
35644
- description?: string | undefined;
35645
38874
  enabled?: boolean | undefined;
38875
+ description?: string | undefined;
35646
38876
  }, {
35647
38877
  label?: string | undefined;
35648
38878
  id?: string | undefined;
35649
- description?: string | undefined;
35650
38879
  enabled?: boolean | undefined;
38880
+ description?: string | undefined;
35651
38881
  }>, "many">>;
35652
38882
  update: z.ZodOptional<z.ZodArray<z.ZodObject<{
35653
38883
  description: z.ZodOptional<z.ZodString>;
@@ -35657,51 +38887,51 @@ declare const zGetApiV1NotificationPreferencesResponse: z.ZodObject<{
35657
38887
  }, "strip", z.ZodTypeAny, {
35658
38888
  label?: string | undefined;
35659
38889
  id?: string | undefined;
35660
- description?: string | undefined;
35661
38890
  enabled?: boolean | undefined;
38891
+ description?: string | undefined;
35662
38892
  }, {
35663
38893
  label?: string | undefined;
35664
38894
  id?: string | undefined;
35665
- description?: string | undefined;
35666
38895
  enabled?: boolean | undefined;
38896
+ description?: string | undefined;
35667
38897
  }>, "many">>;
35668
38898
  }, "strip", z.ZodTypeAny, {
35669
38899
  security?: {
35670
38900
  label?: string | undefined;
35671
38901
  id?: string | undefined;
35672
- description?: string | undefined;
35673
38902
  enabled?: boolean | undefined;
38903
+ description?: string | undefined;
35674
38904
  }[] | undefined;
35675
38905
  activity?: {
35676
38906
  label?: string | undefined;
35677
38907
  id?: string | undefined;
35678
- description?: string | undefined;
35679
38908
  enabled?: boolean | undefined;
38909
+ description?: string | undefined;
35680
38910
  }[] | undefined;
35681
38911
  update?: {
35682
38912
  label?: string | undefined;
35683
38913
  id?: string | undefined;
35684
- description?: string | undefined;
35685
38914
  enabled?: boolean | undefined;
38915
+ description?: string | undefined;
35686
38916
  }[] | undefined;
35687
38917
  }, {
35688
38918
  security?: {
35689
38919
  label?: string | undefined;
35690
38920
  id?: string | undefined;
35691
- description?: string | undefined;
35692
38921
  enabled?: boolean | undefined;
38922
+ description?: string | undefined;
35693
38923
  }[] | undefined;
35694
38924
  activity?: {
35695
38925
  label?: string | undefined;
35696
38926
  id?: string | undefined;
35697
- description?: string | undefined;
35698
38927
  enabled?: boolean | undefined;
38928
+ description?: string | undefined;
35699
38929
  }[] | undefined;
35700
38930
  update?: {
35701
38931
  label?: string | undefined;
35702
38932
  id?: string | undefined;
35703
- description?: string | undefined;
35704
38933
  enabled?: boolean | undefined;
38934
+ description?: string | undefined;
35705
38935
  }[] | undefined;
35706
38936
  }>>;
35707
38937
  message: z.ZodOptional<z.ZodString>;
@@ -35711,20 +38941,20 @@ declare const zGetApiV1NotificationPreferencesResponse: z.ZodObject<{
35711
38941
  security?: {
35712
38942
  label?: string | undefined;
35713
38943
  id?: string | undefined;
35714
- description?: string | undefined;
35715
38944
  enabled?: boolean | undefined;
38945
+ description?: string | undefined;
35716
38946
  }[] | undefined;
35717
38947
  activity?: {
35718
38948
  label?: string | undefined;
35719
38949
  id?: string | undefined;
35720
- description?: string | undefined;
35721
38950
  enabled?: boolean | undefined;
38951
+ description?: string | undefined;
35722
38952
  }[] | undefined;
35723
38953
  update?: {
35724
38954
  label?: string | undefined;
35725
38955
  id?: string | undefined;
35726
- description?: string | undefined;
35727
38956
  enabled?: boolean | undefined;
38957
+ description?: string | undefined;
35728
38958
  }[] | undefined;
35729
38959
  } | undefined;
35730
38960
  message?: string | undefined;
@@ -35734,20 +38964,20 @@ declare const zGetApiV1NotificationPreferencesResponse: z.ZodObject<{
35734
38964
  security?: {
35735
38965
  label?: string | undefined;
35736
38966
  id?: string | undefined;
35737
- description?: string | undefined;
35738
38967
  enabled?: boolean | undefined;
38968
+ description?: string | undefined;
35739
38969
  }[] | undefined;
35740
38970
  activity?: {
35741
38971
  label?: string | undefined;
35742
38972
  id?: string | undefined;
35743
- description?: string | undefined;
35744
38973
  enabled?: boolean | undefined;
38974
+ description?: string | undefined;
35745
38975
  }[] | undefined;
35746
38976
  update?: {
35747
38977
  label?: string | undefined;
35748
38978
  id?: string | undefined;
35749
- description?: string | undefined;
35750
38979
  enabled?: boolean | undefined;
38980
+ description?: string | undefined;
35751
38981
  }[] | undefined;
35752
38982
  } | undefined;
35753
38983
  message?: string | undefined;
@@ -64101,4 +67331,4 @@ declare const zGetApiV1DeployApplicationsResponse: z.ZodObject<{
64101
67331
  status?: string | undefined;
64102
67332
  }>;
64103
67333
 
64104
- export { type AddApplicationDomainRequest, type AddApplicationToFamilyRequest, type AdminRegisteredResponse, type Application, type ApplicationDeployment, type ApplicationResponse, type BootstrapResponse, type CategoriesResponse, type CliInitRequest, type CliInitResponse, type ClientOptions, type ContainerActionResponse, type ContainerLogsRequest, type ContainerLogsResponse, type CopyDirectory, type CreateDeploymentRequest, type CreateDirectoryRequest, type CreateDomainRequest, type CreateDomainResponseWrapper, type CreateGithubConnectorRequest, type CreateHealthCheckRequest, type CreateProjectRequest, type CreateSmtpConfigRequest, type CreateWebhookConfigRequest, type DeleteApiV1ContainerContainerIdData, type DeleteApiV1ContainerContainerIdError, type DeleteApiV1ContainerContainerIdErrors, type DeleteApiV1ContainerContainerIdResponse, type DeleteApiV1ContainerContainerIdResponses, type DeleteApiV1DeployApplicationData, type DeleteApiV1DeployApplicationDomainsData, type DeleteApiV1DeployApplicationDomainsError, type DeleteApiV1DeployApplicationDomainsErrors, type DeleteApiV1DeployApplicationDomainsResponse, type DeleteApiV1DeployApplicationDomainsResponses, type DeleteApiV1DeployApplicationError, type DeleteApiV1DeployApplicationErrors, type DeleteApiV1DeployApplicationResponse, type DeleteApiV1DeployApplicationResponses, type DeleteApiV1DomainData, type DeleteApiV1DomainError, type DeleteApiV1DomainErrors, type DeleteApiV1DomainResponse, type DeleteApiV1DomainResponses, type DeleteApiV1ExtensionsIdData, type DeleteApiV1ExtensionsIdError, type DeleteApiV1ExtensionsIdErrors, type DeleteApiV1ExtensionsIdResponse, type DeleteApiV1ExtensionsIdResponses, type DeleteApiV1FileManagerDeleteDirectoryData, type DeleteApiV1FileManagerDeleteDirectoryError, type DeleteApiV1FileManagerDeleteDirectoryErrors, type DeleteApiV1FileManagerDeleteDirectoryResponse, type DeleteApiV1FileManagerDeleteDirectoryResponses, type DeleteApiV1GithubConnectorData, type DeleteApiV1GithubConnectorError, type DeleteApiV1GithubConnectorErrors, type DeleteApiV1GithubConnectorResponse, type DeleteApiV1GithubConnectorResponses, type DeleteApiV1HealthcheckData, type DeleteApiV1HealthcheckError, type DeleteApiV1HealthcheckErrors, type DeleteApiV1HealthcheckResponse, type DeleteApiV1HealthcheckResponses, type DeleteApiV1NotificationSmtpData, type DeleteApiV1NotificationSmtpError, type DeleteApiV1NotificationSmtpErrors, type DeleteApiV1NotificationSmtpResponse, type DeleteApiV1NotificationSmtpResponses, type DeleteApiV1NotificationWebhookData, type DeleteApiV1NotificationWebhookError, type DeleteApiV1NotificationWebhookErrors, type DeleteApiV1NotificationWebhookResponse, type DeleteApiV1NotificationWebhookResponses, type DeleteDeploymentRequest, type DeleteDirectoryRequest, type DeleteDomainRequest, type DeleteGithubConnectorRequest, type DeleteSmtpConfigRequest, type DeleteWebhookConfigRequest, type DeployProjectRequest, type DeploymentResponse, type DomainResponse, type DuplicateProjectRequest, type EnvironmentsInFamilyResponse, type ExecutionResponse, type Extension, type ExtensionExecution, type ExtensionResponse, type ForkExtensionRequest, type GetActivitiesResponse, type GetApiV1AuditLogsData, type GetApiV1AuditLogsError, type GetApiV1AuditLogsErrors, type GetApiV1AuditLogsResponse, type GetApiV1AuditLogsResponses, type GetApiV1AuthBootstrapData, type GetApiV1AuthBootstrapError, type GetApiV1AuthBootstrapErrors, type GetApiV1AuthBootstrapResponse, type GetApiV1AuthBootstrapResponses, type GetApiV1AuthIsAdminRegisteredData, type GetApiV1AuthIsAdminRegisteredError, type GetApiV1AuthIsAdminRegisteredErrors, type GetApiV1AuthIsAdminRegisteredResponse, type GetApiV1AuthIsAdminRegisteredResponses, type GetApiV1ContainerContainerIdData, type GetApiV1ContainerContainerIdError, type GetApiV1ContainerContainerIdErrors, type GetApiV1ContainerContainerIdResponse, type GetApiV1ContainerContainerIdResponses, type GetApiV1ContainerData, type GetApiV1ContainerError, type GetApiV1ContainerErrors, type GetApiV1ContainerResponse, type GetApiV1ContainerResponses, type GetApiV1DeployApplicationData, type GetApiV1DeployApplicationDeploymentsData, type GetApiV1DeployApplicationDeploymentsDeploymentIdData, type GetApiV1DeployApplicationDeploymentsDeploymentIdError, type GetApiV1DeployApplicationDeploymentsDeploymentIdErrors, type GetApiV1DeployApplicationDeploymentsDeploymentIdLogsData, type GetApiV1DeployApplicationDeploymentsDeploymentIdLogsError, type GetApiV1DeployApplicationDeploymentsDeploymentIdLogsErrors, type GetApiV1DeployApplicationDeploymentsDeploymentIdLogsResponse, type GetApiV1DeployApplicationDeploymentsDeploymentIdLogsResponses, type GetApiV1DeployApplicationDeploymentsDeploymentIdResponse, type GetApiV1DeployApplicationDeploymentsDeploymentIdResponses, type GetApiV1DeployApplicationDeploymentsError, type GetApiV1DeployApplicationDeploymentsErrors, type GetApiV1DeployApplicationDeploymentsResponse, type GetApiV1DeployApplicationDeploymentsResponses, type GetApiV1DeployApplicationError, type GetApiV1DeployApplicationErrors, type GetApiV1DeployApplicationLogsApplicationIdData, type GetApiV1DeployApplicationLogsApplicationIdError, type GetApiV1DeployApplicationLogsApplicationIdErrors, type GetApiV1DeployApplicationLogsApplicationIdResponse, type GetApiV1DeployApplicationLogsApplicationIdResponses, type GetApiV1DeployApplicationProjectFamilyData, type GetApiV1DeployApplicationProjectFamilyEnvironmentsData, type GetApiV1DeployApplicationProjectFamilyEnvironmentsError, type GetApiV1DeployApplicationProjectFamilyEnvironmentsErrors, type GetApiV1DeployApplicationProjectFamilyEnvironmentsResponse, type GetApiV1DeployApplicationProjectFamilyEnvironmentsResponses, type GetApiV1DeployApplicationProjectFamilyError, type GetApiV1DeployApplicationProjectFamilyErrors, type GetApiV1DeployApplicationProjectFamilyResponse, type GetApiV1DeployApplicationProjectFamilyResponses, type GetApiV1DeployApplicationResponse, type GetApiV1DeployApplicationResponses, type GetApiV1DeployApplicationsData, type GetApiV1DeployApplicationsError, type GetApiV1DeployApplicationsErrors, type GetApiV1DeployApplicationsResponse, type GetApiV1DeployApplicationsResponses, type GetApiV1DomainGenerateData, type GetApiV1DomainGenerateError, type GetApiV1DomainGenerateErrors, type GetApiV1DomainGenerateResponse, type GetApiV1DomainGenerateResponses, type GetApiV1DomainsData, type GetApiV1DomainsError, type GetApiV1DomainsErrors, type GetApiV1DomainsResponse, type GetApiV1DomainsResponses, type GetApiV1ExtensionsByExtensionIdExtensionIdData, type GetApiV1ExtensionsByExtensionIdExtensionIdError, type GetApiV1ExtensionsByExtensionIdExtensionIdErrors, type GetApiV1ExtensionsByExtensionIdExtensionIdExecutionsData, type GetApiV1ExtensionsByExtensionIdExtensionIdExecutionsError, type GetApiV1ExtensionsByExtensionIdExtensionIdExecutionsErrors, type GetApiV1ExtensionsByExtensionIdExtensionIdExecutionsResponse, type GetApiV1ExtensionsByExtensionIdExtensionIdExecutionsResponses, type GetApiV1ExtensionsByExtensionIdExtensionIdResponse, type GetApiV1ExtensionsByExtensionIdExtensionIdResponses, type GetApiV1ExtensionsCategoriesData, type GetApiV1ExtensionsCategoriesError, type GetApiV1ExtensionsCategoriesErrors, type GetApiV1ExtensionsCategoriesResponse, type GetApiV1ExtensionsCategoriesResponses, type GetApiV1ExtensionsData, type GetApiV1ExtensionsError, type GetApiV1ExtensionsErrors, type GetApiV1ExtensionsExecutionExecutionIdData, type GetApiV1ExtensionsExecutionExecutionIdError, type GetApiV1ExtensionsExecutionExecutionIdErrors, type GetApiV1ExtensionsExecutionExecutionIdLogsData, type GetApiV1ExtensionsExecutionExecutionIdLogsError, type GetApiV1ExtensionsExecutionExecutionIdLogsErrors, type GetApiV1ExtensionsExecutionExecutionIdLogsResponse, type GetApiV1ExtensionsExecutionExecutionIdLogsResponses, type GetApiV1ExtensionsExecutionExecutionIdResponse, type GetApiV1ExtensionsExecutionExecutionIdResponses, type GetApiV1ExtensionsIdData, type GetApiV1ExtensionsIdError, type GetApiV1ExtensionsIdErrors, type GetApiV1ExtensionsIdResponse, type GetApiV1ExtensionsIdResponses, type GetApiV1ExtensionsResponse, type GetApiV1ExtensionsResponses, type GetApiV1FeatureFlagsCheckData, type GetApiV1FeatureFlagsCheckError, type GetApiV1FeatureFlagsCheckErrors, type GetApiV1FeatureFlagsCheckResponse, type GetApiV1FeatureFlagsCheckResponses, type GetApiV1FeatureFlagsData, type GetApiV1FeatureFlagsError, type GetApiV1FeatureFlagsErrors, type GetApiV1FeatureFlagsResponse, type GetApiV1FeatureFlagsResponses, type GetApiV1FileManagerData, type GetApiV1FileManagerError, type GetApiV1FileManagerErrors, type GetApiV1FileManagerResponse, type GetApiV1FileManagerResponses, type GetApiV1GithubConnectorAllData, type GetApiV1GithubConnectorAllError, type GetApiV1GithubConnectorAllErrors, type GetApiV1GithubConnectorAllResponse, type GetApiV1GithubConnectorAllResponses, type GetApiV1GithubConnectorRepositoriesData, type GetApiV1GithubConnectorRepositoriesError, type GetApiV1GithubConnectorRepositoriesErrors, type GetApiV1GithubConnectorRepositoriesResponse, type GetApiV1GithubConnectorRepositoriesResponses, type GetApiV1HealthData, type GetApiV1HealthError, type GetApiV1HealthErrors, type GetApiV1HealthResponse, type GetApiV1HealthResponses, type GetApiV1HealthcheckData, type GetApiV1HealthcheckError, type GetApiV1HealthcheckErrors, type GetApiV1HealthcheckResponse, type GetApiV1HealthcheckResponses, type GetApiV1HealthcheckResultsData, type GetApiV1HealthcheckResultsError, type GetApiV1HealthcheckResultsErrors, type GetApiV1HealthcheckResultsResponse, type GetApiV1HealthcheckResultsResponses, type GetApiV1HealthcheckStatsData, type GetApiV1HealthcheckStatsError, type GetApiV1HealthcheckStatsErrors, type GetApiV1HealthcheckStatsResponse, type GetApiV1HealthcheckStatsResponses, type GetApiV1NotificationPreferencesData, type GetApiV1NotificationPreferencesError, type GetApiV1NotificationPreferencesErrors, type GetApiV1NotificationPreferencesResponse, type GetApiV1NotificationPreferencesResponses, type GetApiV1NotificationSmtpData, type GetApiV1NotificationSmtpError, type GetApiV1NotificationSmtpErrors, type GetApiV1NotificationSmtpResponse, type GetApiV1NotificationSmtpResponses, type GetApiV1NotificationWebhookTypeData, type GetApiV1NotificationWebhookTypeError, type GetApiV1NotificationWebhookTypeErrors, type GetApiV1NotificationWebhookTypeResponse, type GetApiV1NotificationWebhookTypeResponses, type GetApiV1ServersData, type GetApiV1ServersError, type GetApiV1ServersErrors, type GetApiV1ServersResponse, type GetApiV1ServersResponses, type GetApiV1ServersSshStatusData, type GetApiV1ServersSshStatusError, type GetApiV1ServersSshStatusErrors, type GetApiV1ServersSshStatusResponse, type GetApiV1ServersSshStatusResponses, type GetApiV1TrailStatusSessionIdData, type GetApiV1TrailStatusSessionIdError, type GetApiV1TrailStatusSessionIdErrors, type GetApiV1TrailStatusSessionIdResponse, type GetApiV1TrailStatusSessionIdResponses, type GetApiV1UpdateCheckData, type GetApiV1UpdateCheckError, type GetApiV1UpdateCheckErrors, type GetApiV1UpdateCheckResponse, type GetApiV1UpdateCheckResponses, type GetApiV1UserData, type GetApiV1UserError, type GetApiV1UserErrors, type GetApiV1UserOnboardedData, type GetApiV1UserOnboardedError, type GetApiV1UserOnboardedErrors, type GetApiV1UserOnboardedResponse, type GetApiV1UserOnboardedResponses, type GetApiV1UserPreferencesData, type GetApiV1UserPreferencesError, type GetApiV1UserPreferencesErrors, type GetApiV1UserPreferencesResponse, type GetApiV1UserPreferencesResponses, type GetApiV1UserResponse, type GetApiV1UserResponses, type GetApiV1UserSettingsData, type GetApiV1UserSettingsError, type GetApiV1UserSettingsErrors, type GetApiV1UserSettingsResponse, type GetApiV1UserSettingsResponses, type GetApplicationDeploymentsRequest, type GetApplicationsRequest, type GetContainerResponse, type GetGithubRepositoryBranchesRequest, type GetWsData, type GetWsError, type GetWsErrors, type GetWsLiveApplicationIdData, type GetWsLiveApplicationIdError, type GetWsLiveApplicationIdErrors, type GetWsLiveApplicationIdResponse, type GetWsLiveApplicationIdResponses, type GetWsResponse, type GetWsResponses, type HealthCheckResponse, type HttpError, type IsFeatureEnabledResponse, type IsOnboardedResponse, type LabelsResponse, type ListApplicationsResponse, type ListBranchesResponse, type ListConnectorsResponse, type ListContainersResponse, type ListDeploymentsResponse, type ListDomainsResponse, type ListExecutionsResponse, type ListExtensionsResponse, type ListFeatureFlagsResponse, type ListFilesRequest, type ListFilesResponse, type ListImagesRequest, type ListImagesResponse, type ListLogsResponse, type ListRepositoriesResponse, type ListServersResponse, type LogsResponse, type MarkOnboardingCompleteResponse, type MessageResponse, type MoveDirectory, type Options, type PatchApiV1HealthcheckToggleData, type PatchApiV1HealthcheckToggleError, type PatchApiV1HealthcheckToggleErrors, type PatchApiV1HealthcheckToggleResponse, type PatchApiV1HealthcheckToggleResponses, type PatchApiV1UserAvatarData, type PatchApiV1UserAvatarError, type PatchApiV1UserAvatarErrors, type PatchApiV1UserAvatarResponse, type PatchApiV1UserAvatarResponses, type PatchApiV1UserNameData, type PatchApiV1UserNameError, type PatchApiV1UserNameErrors, type PatchApiV1UserNameResponse, type PatchApiV1UserNameResponses, type PatchApiV1UserSettingsAutoUpdateData, type PatchApiV1UserSettingsAutoUpdateError, type PatchApiV1UserSettingsAutoUpdateErrors, type PatchApiV1UserSettingsAutoUpdateResponse, type PatchApiV1UserSettingsAutoUpdateResponses, type PatchApiV1UserSettingsFontData, type PatchApiV1UserSettingsFontError, type PatchApiV1UserSettingsFontErrors, type PatchApiV1UserSettingsFontResponse, type PatchApiV1UserSettingsFontResponses, type PatchApiV1UserSettingsLanguageData, type PatchApiV1UserSettingsLanguageError, type PatchApiV1UserSettingsLanguageErrors, type PatchApiV1UserSettingsLanguageResponse, type PatchApiV1UserSettingsLanguageResponses, type PatchApiV1UserSettingsThemeData, type PatchApiV1UserSettingsThemeError, type PatchApiV1UserSettingsThemeErrors, type PatchApiV1UserSettingsThemeResponse, type PatchApiV1UserSettingsThemeResponses, type PauseRequest, type PostApiV1AuthCliInitData, type PostApiV1AuthCliInitError, type PostApiV1AuthCliInitErrors, type PostApiV1AuthCliInitResponse, type PostApiV1AuthCliInitResponses, type PostApiV1ContainerContainerIdLogsData, type PostApiV1ContainerContainerIdLogsError, type PostApiV1ContainerContainerIdLogsErrors, type PostApiV1ContainerContainerIdLogsResponse, type PostApiV1ContainerContainerIdLogsResponses, type PostApiV1ContainerContainerIdRestartData, type PostApiV1ContainerContainerIdRestartError, type PostApiV1ContainerContainerIdRestartErrors, type PostApiV1ContainerContainerIdRestartResponse, type PostApiV1ContainerContainerIdRestartResponses, type PostApiV1ContainerContainerIdStartData, type PostApiV1ContainerContainerIdStartError, type PostApiV1ContainerContainerIdStartErrors, type PostApiV1ContainerContainerIdStartResponse, type PostApiV1ContainerContainerIdStartResponses, type PostApiV1ContainerContainerIdStopData, type PostApiV1ContainerContainerIdStopError, type PostApiV1ContainerContainerIdStopErrors, type PostApiV1ContainerContainerIdStopResponse, type PostApiV1ContainerContainerIdStopResponses, type PostApiV1ContainerImagesData, type PostApiV1ContainerImagesError, type PostApiV1ContainerImagesErrors, type PostApiV1ContainerImagesResponse, type PostApiV1ContainerImagesResponses, type PostApiV1ContainerPruneBuildCacheData, type PostApiV1ContainerPruneBuildCacheError, type PostApiV1ContainerPruneBuildCacheErrors, type PostApiV1ContainerPruneBuildCacheResponse, type PostApiV1ContainerPruneBuildCacheResponses, type PostApiV1ContainerPruneImagesData, type PostApiV1ContainerPruneImagesError, type PostApiV1ContainerPruneImagesErrors, type PostApiV1ContainerPruneImagesResponse, type PostApiV1ContainerPruneImagesResponses, type PostApiV1DeployApplicationData, type PostApiV1DeployApplicationDomainsData, type PostApiV1DeployApplicationDomainsError, type PostApiV1DeployApplicationDomainsErrors, type PostApiV1DeployApplicationDomainsResponse, type PostApiV1DeployApplicationDomainsResponses, type PostApiV1DeployApplicationError, type PostApiV1DeployApplicationErrors, type PostApiV1DeployApplicationProjectAddToFamilyData, type PostApiV1DeployApplicationProjectAddToFamilyError, type PostApiV1DeployApplicationProjectAddToFamilyErrors, type PostApiV1DeployApplicationProjectAddToFamilyResponse, type PostApiV1DeployApplicationProjectAddToFamilyResponses, type PostApiV1DeployApplicationProjectData, type PostApiV1DeployApplicationProjectDeployData, type PostApiV1DeployApplicationProjectDeployError, type PostApiV1DeployApplicationProjectDeployErrors, type PostApiV1DeployApplicationProjectDeployResponse, type PostApiV1DeployApplicationProjectDeployResponses, type PostApiV1DeployApplicationProjectDuplicateData, type PostApiV1DeployApplicationProjectDuplicateError, type PostApiV1DeployApplicationProjectDuplicateErrors, type PostApiV1DeployApplicationProjectDuplicateResponse, type PostApiV1DeployApplicationProjectDuplicateResponses, type PostApiV1DeployApplicationProjectError, type PostApiV1DeployApplicationProjectErrors, type PostApiV1DeployApplicationProjectResponse, type PostApiV1DeployApplicationProjectResponses, type PostApiV1DeployApplicationRecoverData, type PostApiV1DeployApplicationRecoverError, type PostApiV1DeployApplicationRecoverErrors, type PostApiV1DeployApplicationRecoverResponse, type PostApiV1DeployApplicationRecoverResponses, type PostApiV1DeployApplicationRedeployData, type PostApiV1DeployApplicationRedeployError, type PostApiV1DeployApplicationRedeployErrors, type PostApiV1DeployApplicationRedeployResponse, type PostApiV1DeployApplicationRedeployResponses, type PostApiV1DeployApplicationResponse, type PostApiV1DeployApplicationResponses, type PostApiV1DeployApplicationRestartData, type PostApiV1DeployApplicationRestartError, type PostApiV1DeployApplicationRestartErrors, type PostApiV1DeployApplicationRestartResponse, type PostApiV1DeployApplicationRestartResponses, type PostApiV1DeployApplicationRollbackData, type PostApiV1DeployApplicationRollbackError, type PostApiV1DeployApplicationRollbackErrors, type PostApiV1DeployApplicationRollbackResponse, type PostApiV1DeployApplicationRollbackResponses, type PostApiV1DomainData, type PostApiV1DomainError, type PostApiV1DomainErrors, type PostApiV1DomainResponse, type PostApiV1DomainResponses, type PostApiV1ExtensionsExecutionExecutionIdCancelData, type PostApiV1ExtensionsExecutionExecutionIdCancelError, type PostApiV1ExtensionsExecutionExecutionIdCancelErrors, type PostApiV1ExtensionsExecutionExecutionIdCancelResponse, type PostApiV1ExtensionsExecutionExecutionIdCancelResponses, type PostApiV1ExtensionsExtensionIdForkData, type PostApiV1ExtensionsExtensionIdForkError, type PostApiV1ExtensionsExtensionIdForkErrors, type PostApiV1ExtensionsExtensionIdForkResponse, type PostApiV1ExtensionsExtensionIdForkResponses, type PostApiV1ExtensionsExtensionIdRunData, type PostApiV1ExtensionsExtensionIdRunError, type PostApiV1ExtensionsExtensionIdRunErrors, type PostApiV1ExtensionsExtensionIdRunResponse, type PostApiV1ExtensionsExtensionIdRunResponses, type PostApiV1FileManagerCopyDirectoryData, type PostApiV1FileManagerCopyDirectoryError, type PostApiV1FileManagerCopyDirectoryErrors, type PostApiV1FileManagerCopyDirectoryResponse, type PostApiV1FileManagerCopyDirectoryResponses, type PostApiV1FileManagerCreateDirectoryData, type PostApiV1FileManagerCreateDirectoryError, type PostApiV1FileManagerCreateDirectoryErrors, type PostApiV1FileManagerCreateDirectoryResponse, type PostApiV1FileManagerCreateDirectoryResponses, type PostApiV1FileManagerMoveDirectoryData, type PostApiV1FileManagerMoveDirectoryError, type PostApiV1FileManagerMoveDirectoryErrors, type PostApiV1FileManagerMoveDirectoryResponse, type PostApiV1FileManagerMoveDirectoryResponses, type PostApiV1FileManagerUploadData, type PostApiV1FileManagerUploadError, type PostApiV1FileManagerUploadErrors, type PostApiV1FileManagerUploadResponse, type PostApiV1FileManagerUploadResponses, type PostApiV1GithubConnectorData, type PostApiV1GithubConnectorError, type PostApiV1GithubConnectorErrors, type PostApiV1GithubConnectorRepositoryBranchesData, type PostApiV1GithubConnectorRepositoryBranchesError, type PostApiV1GithubConnectorRepositoryBranchesErrors, type PostApiV1GithubConnectorRepositoryBranchesResponse, type PostApiV1GithubConnectorRepositoryBranchesResponses, type PostApiV1GithubConnectorResponse, type PostApiV1GithubConnectorResponses, type PostApiV1HealthcheckData, type PostApiV1HealthcheckError, type PostApiV1HealthcheckErrors, type PostApiV1HealthcheckResponse, type PostApiV1HealthcheckResponses, type PostApiV1LivePauseData, type PostApiV1LivePauseError, type PostApiV1LivePauseErrors, type PostApiV1LivePauseResponse, type PostApiV1LivePauseResponses, type PostApiV1NotificationPreferencesData, type PostApiV1NotificationPreferencesError, type PostApiV1NotificationPreferencesErrors, type PostApiV1NotificationPreferencesResponse, type PostApiV1NotificationPreferencesResponses, type PostApiV1NotificationSmtpData, type PostApiV1NotificationSmtpError, type PostApiV1NotificationSmtpErrors, type PostApiV1NotificationSmtpResponse, type PostApiV1NotificationSmtpResponses, type PostApiV1NotificationWebhookData, type PostApiV1NotificationWebhookError, type PostApiV1NotificationWebhookErrors, type PostApiV1NotificationWebhookResponse, type PostApiV1NotificationWebhookResponses, type PostApiV1TrailProvisionData, type PostApiV1TrailProvisionError, type PostApiV1TrailProvisionErrors, type PostApiV1TrailProvisionResponse, type PostApiV1TrailProvisionResponses, type PostApiV1UpdateData, type PostApiV1UpdateError, type PostApiV1UpdateErrors, type PostApiV1UpdateResponse, type PostApiV1UpdateResponses, type PostApiV1UserOnboardedData, type PostApiV1UserOnboardedError, type PostApiV1UserOnboardedErrors, type PostApiV1UserOnboardedResponse, type PostApiV1UserOnboardedResponses, type PostApiV1WebhookData, type PostApiV1WebhookError, type PostApiV1WebhookErrors, type PostApiV1WebhookResponse, type PostApiV1WebhookResponses, type PreferencesResponse, type ProjectFamilyResponse, type ProvisionRequest, type PruneBuildCacheRequest, type PruneImagesRequest, type PruneImagesResponse, type PutApiV1ContainerContainerIdResourcesData, type PutApiV1ContainerContainerIdResourcesError, type PutApiV1ContainerContainerIdResourcesErrors, type PutApiV1ContainerContainerIdResourcesResponse, type PutApiV1ContainerContainerIdResourcesResponses, type PutApiV1DeployApplicationData, type PutApiV1DeployApplicationError, type PutApiV1DeployApplicationErrors, type PutApiV1DeployApplicationLabelsData, type PutApiV1DeployApplicationLabelsError, type PutApiV1DeployApplicationLabelsErrors, type PutApiV1DeployApplicationLabelsResponse, type PutApiV1DeployApplicationLabelsResponses, type PutApiV1DeployApplicationResponse, type PutApiV1DeployApplicationResponses, type PutApiV1DomainData, type PutApiV1DomainError, type PutApiV1DomainErrors, type PutApiV1DomainResponse, type PutApiV1DomainResponses, type PutApiV1FeatureFlagsData, type PutApiV1FeatureFlagsError, type PutApiV1FeatureFlagsErrors, type PutApiV1FeatureFlagsResponse, type PutApiV1FeatureFlagsResponses, type PutApiV1GithubConnectorData, type PutApiV1GithubConnectorError, type PutApiV1GithubConnectorErrors, type PutApiV1GithubConnectorResponse, type PutApiV1GithubConnectorResponses, type PutApiV1HealthcheckData, type PutApiV1HealthcheckError, type PutApiV1HealthcheckErrors, type PutApiV1HealthcheckResponse, type PutApiV1HealthcheckResponses, type PutApiV1NotificationSmtpData, type PutApiV1NotificationSmtpError, type PutApiV1NotificationSmtpErrors, type PutApiV1NotificationSmtpResponse, type PutApiV1NotificationSmtpResponses, type PutApiV1NotificationWebhookData, type PutApiV1NotificationWebhookError, type PutApiV1NotificationWebhookErrors, type PutApiV1NotificationWebhookResponse, type PutApiV1NotificationWebhookResponses, type PutApiV1UserPreferencesData, type PutApiV1UserPreferencesError, type PutApiV1UserPreferencesErrors, type PutApiV1UserPreferencesResponse, type PutApiV1UserPreferencesResponses, type RandomSubdomainResponseWrapper, type ReDeployApplicationRequest, type RecoverRequest, type RecoverResponse, type RemoveApplicationDomainRequest, type Response$1 as Response, type RestartDeploymentRequest, type RollbackDeploymentRequest, type RunExtensionRequest, type SmtpConfigResponse, type SshConnectionStatusResponse, type ToggleHealthCheckRequest, type UnknownInterface, type UpdateAutoUpdateRequest, type UpdateAvatarRequest, type UpdateCheckResponse, type UpdateContainerResourcesRequest, type UpdateContainerResourcesResponse, type UpdateDeploymentRequest, type UpdateDomainRequest, type UpdateFeatureFlagRequest, type UpdateFontRequest, type UpdateGithubConnectorRequest, type UpdateHealthCheckRequest, type UpdateLabelsRequest, type UpdateLanguageRequest, type UpdatePreferenceRequest, type UpdateRequest, type UpdateResponse, type UpdateSmtpConfigRequest, type UpdateThemeRequest, type UpdateUserNameRequest, type UpdateUsernameResponse, type UpdateWebhookConfigRequest, type User, type UserPreferencesData, type UserPreferencesResponse, type UserResponse, type UserSettingsResponse, type WebhookConfigResponse, deleteApiV1ContainerContainerId, deleteApiV1DeployApplication, deleteApiV1DeployApplicationDomains, deleteApiV1Domain, deleteApiV1ExtensionsId, deleteApiV1FileManagerDeleteDirectory, deleteApiV1GithubConnector, deleteApiV1Healthcheck, deleteApiV1NotificationSmtp, deleteApiV1NotificationWebhook, getApiV1AuditLogs, getApiV1AuthBootstrap, getApiV1AuthIsAdminRegistered, getApiV1Container, getApiV1ContainerContainerId, getApiV1DeployApplication, getApiV1DeployApplicationDeployments, getApiV1DeployApplicationDeploymentsDeploymentId, getApiV1DeployApplicationDeploymentsDeploymentIdLogs, getApiV1DeployApplicationLogsApplicationId, getApiV1DeployApplicationProjectFamily, getApiV1DeployApplicationProjectFamilyEnvironments, getApiV1DeployApplications, getApiV1DomainGenerate, getApiV1Domains, getApiV1Extensions, getApiV1ExtensionsByExtensionIdExtensionId, getApiV1ExtensionsByExtensionIdExtensionIdExecutions, getApiV1ExtensionsCategories, getApiV1ExtensionsExecutionExecutionId, getApiV1ExtensionsExecutionExecutionIdLogs, getApiV1ExtensionsId, getApiV1FeatureFlags, getApiV1FeatureFlagsCheck, getApiV1FileManager, getApiV1GithubConnectorAll, getApiV1GithubConnectorRepositories, getApiV1Health, getApiV1Healthcheck, getApiV1HealthcheckResults, getApiV1HealthcheckStats, getApiV1NotificationPreferences, getApiV1NotificationSmtp, getApiV1NotificationWebhookType, getApiV1Servers, getApiV1ServersSshStatus, getApiV1TrailStatusSessionId, getApiV1UpdateCheck, getApiV1User, getApiV1UserOnboarded, getApiV1UserPreferences, getApiV1UserSettings, getWs, getWsLiveApplicationId, patchApiV1HealthcheckToggle, patchApiV1UserAvatar, patchApiV1UserName, patchApiV1UserSettingsAutoUpdate, patchApiV1UserSettingsFont, patchApiV1UserSettingsLanguage, patchApiV1UserSettingsTheme, postApiV1AuthCliInit, postApiV1ContainerContainerIdLogs, postApiV1ContainerContainerIdRestart, postApiV1ContainerContainerIdStart, postApiV1ContainerContainerIdStop, postApiV1ContainerImages, postApiV1ContainerPruneBuildCache, postApiV1ContainerPruneImages, postApiV1DeployApplication, postApiV1DeployApplicationDomains, postApiV1DeployApplicationProject, postApiV1DeployApplicationProjectAddToFamily, postApiV1DeployApplicationProjectDeploy, postApiV1DeployApplicationProjectDuplicate, postApiV1DeployApplicationRecover, postApiV1DeployApplicationRedeploy, postApiV1DeployApplicationRestart, postApiV1DeployApplicationRollback, postApiV1Domain, postApiV1ExtensionsExecutionExecutionIdCancel, postApiV1ExtensionsExtensionIdFork, postApiV1ExtensionsExtensionIdRun, postApiV1FileManagerCopyDirectory, postApiV1FileManagerCreateDirectory, postApiV1FileManagerMoveDirectory, postApiV1FileManagerUpload, postApiV1GithubConnector, postApiV1GithubConnectorRepositoryBranches, postApiV1Healthcheck, postApiV1LivePause, postApiV1NotificationPreferences, postApiV1NotificationSmtp, postApiV1NotificationWebhook, postApiV1TrailProvision, postApiV1Update, postApiV1UserOnboarded, postApiV1Webhook, putApiV1ContainerContainerIdResources, putApiV1DeployApplication, putApiV1DeployApplicationLabels, putApiV1Domain, putApiV1FeatureFlags, putApiV1GithubConnector, putApiV1Healthcheck, putApiV1NotificationSmtp, putApiV1NotificationWebhook, putApiV1UserPreferences, zAddApplicationDomainRequest, zAddApplicationToFamilyRequest, zAdminRegisteredResponse, zApplication, zApplicationDeployment, zApplicationResponse, zBootstrapResponse, zCategoriesResponse, zCliInitRequest, zCliInitResponse, zContainerActionResponse, zContainerLogsRequest, zContainerLogsResponse, zCopyDirectory, zCreateDeploymentRequest, zCreateDirectoryRequest, zCreateDomainRequest, zCreateDomainResponseWrapper, zCreateGithubConnectorRequest, zCreateHealthCheckRequest, zCreateProjectRequest, zCreateSmtpConfigRequest, zCreateWebhookConfigRequest, zDeleteApiV1ContainerContainerIdData, zDeleteApiV1ContainerContainerIdResponse, zDeleteApiV1DeployApplicationData, zDeleteApiV1DeployApplicationDomainsData, zDeleteApiV1DeployApplicationDomainsResponse, zDeleteApiV1DeployApplicationResponse, zDeleteApiV1DomainData, zDeleteApiV1DomainResponse, zDeleteApiV1ExtensionsIdData, zDeleteApiV1ExtensionsIdResponse, zDeleteApiV1FileManagerDeleteDirectoryData, zDeleteApiV1FileManagerDeleteDirectoryResponse, zDeleteApiV1GithubConnectorData, zDeleteApiV1GithubConnectorResponse, zDeleteApiV1HealthcheckData, zDeleteApiV1HealthcheckResponse, zDeleteApiV1NotificationSmtpData, zDeleteApiV1NotificationSmtpResponse, zDeleteApiV1NotificationWebhookData, zDeleteApiV1NotificationWebhookResponse, zDeleteDeploymentRequest, zDeleteDirectoryRequest, zDeleteDomainRequest, zDeleteGithubConnectorRequest, zDeleteSmtpConfigRequest, zDeleteWebhookConfigRequest, zDeployProjectRequest, zDeploymentResponse, zDomainResponse, zDuplicateProjectRequest, zEnvironmentsInFamilyResponse, zExecutionResponse, zExtension, zExtensionExecution, zExtensionResponse, zForkExtensionRequest, zGetActivitiesResponse, zGetApiV1AuditLogsData, zGetApiV1AuditLogsResponse, zGetApiV1AuthBootstrapData, zGetApiV1AuthBootstrapResponse, zGetApiV1AuthIsAdminRegisteredData, zGetApiV1AuthIsAdminRegisteredResponse, zGetApiV1ContainerContainerIdData, zGetApiV1ContainerContainerIdResponse, zGetApiV1ContainerData, zGetApiV1ContainerResponse, zGetApiV1DeployApplicationData, zGetApiV1DeployApplicationDeploymentsData, zGetApiV1DeployApplicationDeploymentsDeploymentIdData, zGetApiV1DeployApplicationDeploymentsDeploymentIdLogsData, zGetApiV1DeployApplicationDeploymentsDeploymentIdLogsResponse, zGetApiV1DeployApplicationDeploymentsDeploymentIdResponse, zGetApiV1DeployApplicationDeploymentsResponse, zGetApiV1DeployApplicationLogsApplicationIdData, zGetApiV1DeployApplicationLogsApplicationIdResponse, zGetApiV1DeployApplicationProjectFamilyData, zGetApiV1DeployApplicationProjectFamilyEnvironmentsData, zGetApiV1DeployApplicationProjectFamilyEnvironmentsResponse, zGetApiV1DeployApplicationProjectFamilyResponse, zGetApiV1DeployApplicationResponse, zGetApiV1DeployApplicationsData, zGetApiV1DeployApplicationsResponse, zGetApiV1DomainGenerateData, zGetApiV1DomainGenerateResponse, zGetApiV1DomainsData, zGetApiV1DomainsResponse, zGetApiV1ExtensionsByExtensionIdExtensionIdData, zGetApiV1ExtensionsByExtensionIdExtensionIdExecutionsData, zGetApiV1ExtensionsByExtensionIdExtensionIdExecutionsResponse, zGetApiV1ExtensionsByExtensionIdExtensionIdResponse, zGetApiV1ExtensionsCategoriesData, zGetApiV1ExtensionsCategoriesResponse, zGetApiV1ExtensionsData, zGetApiV1ExtensionsExecutionExecutionIdData, zGetApiV1ExtensionsExecutionExecutionIdLogsData, zGetApiV1ExtensionsExecutionExecutionIdLogsResponse, zGetApiV1ExtensionsExecutionExecutionIdResponse, zGetApiV1ExtensionsIdData, zGetApiV1ExtensionsIdResponse, zGetApiV1ExtensionsResponse, zGetApiV1FeatureFlagsCheckData, zGetApiV1FeatureFlagsCheckResponse, zGetApiV1FeatureFlagsData, zGetApiV1FeatureFlagsResponse, zGetApiV1FileManagerData, zGetApiV1FileManagerResponse, zGetApiV1GithubConnectorAllData, zGetApiV1GithubConnectorAllResponse, zGetApiV1GithubConnectorRepositoriesData, zGetApiV1GithubConnectorRepositoriesResponse, zGetApiV1HealthData, zGetApiV1HealthResponse, zGetApiV1HealthcheckData, zGetApiV1HealthcheckResponse, zGetApiV1HealthcheckResultsData, zGetApiV1HealthcheckResultsResponse, zGetApiV1HealthcheckStatsData, zGetApiV1HealthcheckStatsResponse, zGetApiV1NotificationPreferencesData, zGetApiV1NotificationPreferencesResponse, zGetApiV1NotificationSmtpData, zGetApiV1NotificationSmtpResponse, zGetApiV1NotificationWebhookTypeData, zGetApiV1NotificationWebhookTypeResponse, zGetApiV1ServersData, zGetApiV1ServersResponse, zGetApiV1ServersSshStatusData, zGetApiV1ServersSshStatusResponse, zGetApiV1TrailStatusSessionIdData, zGetApiV1TrailStatusSessionIdResponse, zGetApiV1UpdateCheckData, zGetApiV1UpdateCheckResponse, zGetApiV1UserData, zGetApiV1UserOnboardedData, zGetApiV1UserOnboardedResponse, zGetApiV1UserPreferencesData, zGetApiV1UserPreferencesResponse, zGetApiV1UserResponse, zGetApiV1UserSettingsData, zGetApiV1UserSettingsResponse, zGetApplicationDeploymentsRequest, zGetApplicationsRequest, zGetContainerResponse, zGetGithubRepositoryBranchesRequest, zGetWsData, zGetWsLiveApplicationIdData, zGetWsLiveApplicationIdResponse, zGetWsResponse, zHealthCheckResponse, zHttpError, zIsFeatureEnabledResponse, zIsOnboardedResponse, zLabelsResponse, zListApplicationsResponse, zListBranchesResponse, zListConnectorsResponse, zListContainersResponse, zListDeploymentsResponse, zListDomainsResponse, zListExecutionsResponse, zListExtensionsResponse, zListFeatureFlagsResponse, zListFilesRequest, zListFilesResponse, zListImagesRequest, zListImagesResponse, zListLogsResponse, zListRepositoriesResponse, zListServersResponse, zLogsResponse, zMarkOnboardingCompleteResponse, zMessageResponse, zMoveDirectory, zPatchApiV1HealthcheckToggleData, zPatchApiV1HealthcheckToggleResponse, zPatchApiV1UserAvatarData, zPatchApiV1UserAvatarResponse, zPatchApiV1UserNameData, zPatchApiV1UserNameResponse, zPatchApiV1UserSettingsAutoUpdateData, zPatchApiV1UserSettingsAutoUpdateResponse, zPatchApiV1UserSettingsFontData, zPatchApiV1UserSettingsFontResponse, zPatchApiV1UserSettingsLanguageData, zPatchApiV1UserSettingsLanguageResponse, zPatchApiV1UserSettingsThemeData, zPatchApiV1UserSettingsThemeResponse, zPauseRequest, zPostApiV1AuthCliInitData, zPostApiV1AuthCliInitResponse, zPostApiV1ContainerContainerIdLogsData, zPostApiV1ContainerContainerIdLogsResponse, zPostApiV1ContainerContainerIdRestartData, zPostApiV1ContainerContainerIdRestartResponse, zPostApiV1ContainerContainerIdStartData, zPostApiV1ContainerContainerIdStartResponse, zPostApiV1ContainerContainerIdStopData, zPostApiV1ContainerContainerIdStopResponse, zPostApiV1ContainerImagesData, zPostApiV1ContainerImagesResponse, zPostApiV1ContainerPruneBuildCacheData, zPostApiV1ContainerPruneBuildCacheResponse, zPostApiV1ContainerPruneImagesData, zPostApiV1ContainerPruneImagesResponse, zPostApiV1DeployApplicationData, zPostApiV1DeployApplicationDomainsData, zPostApiV1DeployApplicationDomainsResponse, zPostApiV1DeployApplicationProjectAddToFamilyData, zPostApiV1DeployApplicationProjectAddToFamilyResponse, zPostApiV1DeployApplicationProjectData, zPostApiV1DeployApplicationProjectDeployData, zPostApiV1DeployApplicationProjectDeployResponse, zPostApiV1DeployApplicationProjectDuplicateData, zPostApiV1DeployApplicationProjectDuplicateResponse, zPostApiV1DeployApplicationProjectResponse, zPostApiV1DeployApplicationRecoverData, zPostApiV1DeployApplicationRecoverResponse, zPostApiV1DeployApplicationRedeployData, zPostApiV1DeployApplicationRedeployResponse, zPostApiV1DeployApplicationResponse, zPostApiV1DeployApplicationRestartData, zPostApiV1DeployApplicationRestartResponse, zPostApiV1DeployApplicationRollbackData, zPostApiV1DeployApplicationRollbackResponse, zPostApiV1DomainData, zPostApiV1DomainResponse, zPostApiV1ExtensionsExecutionExecutionIdCancelData, zPostApiV1ExtensionsExecutionExecutionIdCancelResponse, zPostApiV1ExtensionsExtensionIdForkData, zPostApiV1ExtensionsExtensionIdForkResponse, zPostApiV1ExtensionsExtensionIdRunData, zPostApiV1ExtensionsExtensionIdRunResponse, zPostApiV1FileManagerCopyDirectoryData, zPostApiV1FileManagerCopyDirectoryResponse, zPostApiV1FileManagerCreateDirectoryData, zPostApiV1FileManagerCreateDirectoryResponse, zPostApiV1FileManagerMoveDirectoryData, zPostApiV1FileManagerMoveDirectoryResponse, zPostApiV1FileManagerUploadData, zPostApiV1FileManagerUploadResponse, zPostApiV1GithubConnectorData, zPostApiV1GithubConnectorRepositoryBranchesData, zPostApiV1GithubConnectorRepositoryBranchesResponse, zPostApiV1GithubConnectorResponse, zPostApiV1HealthcheckData, zPostApiV1HealthcheckResponse, zPostApiV1LivePauseData, zPostApiV1LivePauseResponse, zPostApiV1NotificationPreferencesData, zPostApiV1NotificationPreferencesResponse, zPostApiV1NotificationSmtpData, zPostApiV1NotificationSmtpResponse, zPostApiV1NotificationWebhookData, zPostApiV1NotificationWebhookResponse, zPostApiV1TrailProvisionData, zPostApiV1TrailProvisionResponse, zPostApiV1UpdateData, zPostApiV1UpdateResponse, zPostApiV1UserOnboardedData, zPostApiV1UserOnboardedResponse, zPostApiV1WebhookData, zPostApiV1WebhookResponse, zPreferencesResponse, zProjectFamilyResponse, zProvisionRequest, zPruneBuildCacheRequest, zPruneImagesRequest, zPruneImagesResponse, zPutApiV1ContainerContainerIdResourcesData, zPutApiV1ContainerContainerIdResourcesResponse, zPutApiV1DeployApplicationData, zPutApiV1DeployApplicationLabelsData, zPutApiV1DeployApplicationLabelsResponse, zPutApiV1DeployApplicationResponse, zPutApiV1DomainData, zPutApiV1DomainResponse, zPutApiV1FeatureFlagsData, zPutApiV1FeatureFlagsResponse, zPutApiV1GithubConnectorData, zPutApiV1GithubConnectorResponse, zPutApiV1HealthcheckData, zPutApiV1HealthcheckResponse, zPutApiV1NotificationSmtpData, zPutApiV1NotificationSmtpResponse, zPutApiV1NotificationWebhookData, zPutApiV1NotificationWebhookResponse, zPutApiV1UserPreferencesData, zPutApiV1UserPreferencesResponse, zRandomSubdomainResponseWrapper, zReDeployApplicationRequest, zRecoverRequest, zRecoverResponse, zRemoveApplicationDomainRequest, zResponse, zRestartDeploymentRequest, zRollbackDeploymentRequest, zRunExtensionRequest, zSmtpConfigResponse, zSshConnectionStatusResponse, zToggleHealthCheckRequest, zUnknownInterface, zUpdateAutoUpdateRequest, zUpdateAvatarRequest, zUpdateCheckResponse, zUpdateContainerResourcesRequest, zUpdateContainerResourcesResponse, zUpdateDeploymentRequest, zUpdateDomainRequest, zUpdateFeatureFlagRequest, zUpdateFontRequest, zUpdateGithubConnectorRequest, zUpdateHealthCheckRequest, zUpdateLabelsRequest, zUpdateLanguageRequest, zUpdatePreferenceRequest, zUpdateRequest, zUpdateResponse, zUpdateSmtpConfigRequest, zUpdateThemeRequest, zUpdateUserNameRequest, zUpdateUsernameResponse, zUpdateWebhookConfigRequest, zUser, zUserPreferencesData, zUserPreferencesResponse, zUserResponse, zUserSettingsResponse, zWebhookConfigResponse };
67334
+ export { type AddApplicationDomainRequest, type AddApplicationToFamilyRequest, type AdminRegisteredResponse, type Application, type ApplicationDeployment, type ApplicationResponse, type BootstrapResponse, type CategoriesResponse, type CliInitRequest, type CliInitResponse, type ClientOptions, type ContainerActionResponse, type ContainerLogsRequest, type ContainerLogsResponse, type CopyDirectory, type CreateDeploymentRequest, type CreateDirectoryRequest, type CreateDomainRequest, type CreateDomainResponseWrapper, type CreateGithubConnectorRequest, type CreateHealthCheckRequest, type CreateProjectRequest, type CreateSmtpConfigRequest, type CreateWebhookConfigRequest, type DeleteApiV1ContainerContainerIdData, type DeleteApiV1ContainerContainerIdError, type DeleteApiV1ContainerContainerIdErrors, type DeleteApiV1ContainerContainerIdResponse, type DeleteApiV1ContainerContainerIdResponses, type DeleteApiV1DeployApplicationData, type DeleteApiV1DeployApplicationDomainsData, type DeleteApiV1DeployApplicationDomainsError, type DeleteApiV1DeployApplicationDomainsErrors, type DeleteApiV1DeployApplicationDomainsResponse, type DeleteApiV1DeployApplicationDomainsResponses, type DeleteApiV1DeployApplicationError, type DeleteApiV1DeployApplicationErrors, type DeleteApiV1DeployApplicationResponse, type DeleteApiV1DeployApplicationResponses, type DeleteApiV1DomainData, type DeleteApiV1DomainError, type DeleteApiV1DomainErrors, type DeleteApiV1DomainResponse, type DeleteApiV1DomainResponses, type DeleteApiV1ExtensionsIdData, type DeleteApiV1ExtensionsIdError, type DeleteApiV1ExtensionsIdErrors, type DeleteApiV1ExtensionsIdResponse, type DeleteApiV1ExtensionsIdResponses, type DeleteApiV1FileManagerDeleteDirectoryData, type DeleteApiV1FileManagerDeleteDirectoryError, type DeleteApiV1FileManagerDeleteDirectoryErrors, type DeleteApiV1FileManagerDeleteDirectoryResponse, type DeleteApiV1FileManagerDeleteDirectoryResponses, type DeleteApiV1GithubConnectorData, type DeleteApiV1GithubConnectorError, type DeleteApiV1GithubConnectorErrors, type DeleteApiV1GithubConnectorResponse, type DeleteApiV1GithubConnectorResponses, type DeleteApiV1HealthcheckData, type DeleteApiV1HealthcheckError, type DeleteApiV1HealthcheckErrors, type DeleteApiV1HealthcheckResponse, type DeleteApiV1HealthcheckResponses, type DeleteApiV1NotificationSmtpData, type DeleteApiV1NotificationSmtpError, type DeleteApiV1NotificationSmtpErrors, type DeleteApiV1NotificationSmtpResponse, type DeleteApiV1NotificationSmtpResponses, type DeleteApiV1NotificationWebhookData, type DeleteApiV1NotificationWebhookError, type DeleteApiV1NotificationWebhookErrors, type DeleteApiV1NotificationWebhookResponse, type DeleteApiV1NotificationWebhookResponses, type DeleteDeploymentRequest, type DeleteDirectoryRequest, type DeleteDomainRequest, type DeleteGithubConnectorRequest, type DeleteSmtpConfigRequest, type DeleteWebhookConfigRequest, type DeployProjectRequest, type DeploymentResponse, type DomainResponse, type DuplicateProjectRequest, type EnvironmentsInFamilyResponse, type ExecutionResponse, type Extension, type ExtensionExecution, type ExtensionResponse, type ForkExtensionRequest, type GetActivitiesResponse, type GetApiV1AuditLogsData, type GetApiV1AuditLogsError, type GetApiV1AuditLogsErrors, type GetApiV1AuditLogsResponse, type GetApiV1AuditLogsResponses, type GetApiV1AuthBootstrapData, type GetApiV1AuthBootstrapError, type GetApiV1AuthBootstrapErrors, type GetApiV1AuthBootstrapResponse, type GetApiV1AuthBootstrapResponses, type GetApiV1AuthIsAdminRegisteredData, type GetApiV1AuthIsAdminRegisteredError, type GetApiV1AuthIsAdminRegisteredErrors, type GetApiV1AuthIsAdminRegisteredResponse, type GetApiV1AuthIsAdminRegisteredResponses, type GetApiV1ContainerContainerIdData, type GetApiV1ContainerContainerIdError, type GetApiV1ContainerContainerIdErrors, type GetApiV1ContainerContainerIdResponse, type GetApiV1ContainerContainerIdResponses, type GetApiV1ContainerData, type GetApiV1ContainerError, type GetApiV1ContainerErrors, type GetApiV1ContainerResponse, type GetApiV1ContainerResponses, type GetApiV1DeployApplicationData, type GetApiV1DeployApplicationDeploymentsData, type GetApiV1DeployApplicationDeploymentsDeploymentIdData, type GetApiV1DeployApplicationDeploymentsDeploymentIdError, type GetApiV1DeployApplicationDeploymentsDeploymentIdErrors, type GetApiV1DeployApplicationDeploymentsDeploymentIdLogsData, type GetApiV1DeployApplicationDeploymentsDeploymentIdLogsError, type GetApiV1DeployApplicationDeploymentsDeploymentIdLogsErrors, type GetApiV1DeployApplicationDeploymentsDeploymentIdLogsResponse, type GetApiV1DeployApplicationDeploymentsDeploymentIdLogsResponses, type GetApiV1DeployApplicationDeploymentsDeploymentIdResponse, type GetApiV1DeployApplicationDeploymentsDeploymentIdResponses, type GetApiV1DeployApplicationDeploymentsError, type GetApiV1DeployApplicationDeploymentsErrors, type GetApiV1DeployApplicationDeploymentsResponse, type GetApiV1DeployApplicationDeploymentsResponses, type GetApiV1DeployApplicationError, type GetApiV1DeployApplicationErrors, type GetApiV1DeployApplicationLogsApplicationIdData, type GetApiV1DeployApplicationLogsApplicationIdError, type GetApiV1DeployApplicationLogsApplicationIdErrors, type GetApiV1DeployApplicationLogsApplicationIdResponse, type GetApiV1DeployApplicationLogsApplicationIdResponses, type GetApiV1DeployApplicationProjectFamilyData, type GetApiV1DeployApplicationProjectFamilyEnvironmentsData, type GetApiV1DeployApplicationProjectFamilyEnvironmentsError, type GetApiV1DeployApplicationProjectFamilyEnvironmentsErrors, type GetApiV1DeployApplicationProjectFamilyEnvironmentsResponse, type GetApiV1DeployApplicationProjectFamilyEnvironmentsResponses, type GetApiV1DeployApplicationProjectFamilyError, type GetApiV1DeployApplicationProjectFamilyErrors, type GetApiV1DeployApplicationProjectFamilyResponse, type GetApiV1DeployApplicationProjectFamilyResponses, type GetApiV1DeployApplicationResponse, type GetApiV1DeployApplicationResponses, type GetApiV1DeployApplicationsData, type GetApiV1DeployApplicationsError, type GetApiV1DeployApplicationsErrors, type GetApiV1DeployApplicationsResponse, type GetApiV1DeployApplicationsResponses, type GetApiV1DomainGenerateData, type GetApiV1DomainGenerateError, type GetApiV1DomainGenerateErrors, type GetApiV1DomainGenerateResponse, type GetApiV1DomainGenerateResponses, type GetApiV1DomainsData, type GetApiV1DomainsError, type GetApiV1DomainsErrors, type GetApiV1DomainsResponse, type GetApiV1DomainsResponses, type GetApiV1ExtensionsByExtensionIdExtensionIdData, type GetApiV1ExtensionsByExtensionIdExtensionIdError, type GetApiV1ExtensionsByExtensionIdExtensionIdErrors, type GetApiV1ExtensionsByExtensionIdExtensionIdExecutionsData, type GetApiV1ExtensionsByExtensionIdExtensionIdExecutionsError, type GetApiV1ExtensionsByExtensionIdExtensionIdExecutionsErrors, type GetApiV1ExtensionsByExtensionIdExtensionIdExecutionsResponse, type GetApiV1ExtensionsByExtensionIdExtensionIdExecutionsResponses, type GetApiV1ExtensionsByExtensionIdExtensionIdResponse, type GetApiV1ExtensionsByExtensionIdExtensionIdResponses, type GetApiV1ExtensionsCategoriesData, type GetApiV1ExtensionsCategoriesError, type GetApiV1ExtensionsCategoriesErrors, type GetApiV1ExtensionsCategoriesResponse, type GetApiV1ExtensionsCategoriesResponses, type GetApiV1ExtensionsData, type GetApiV1ExtensionsError, type GetApiV1ExtensionsErrors, type GetApiV1ExtensionsExecutionExecutionIdData, type GetApiV1ExtensionsExecutionExecutionIdError, type GetApiV1ExtensionsExecutionExecutionIdErrors, type GetApiV1ExtensionsExecutionExecutionIdLogsData, type GetApiV1ExtensionsExecutionExecutionIdLogsError, type GetApiV1ExtensionsExecutionExecutionIdLogsErrors, type GetApiV1ExtensionsExecutionExecutionIdLogsResponse, type GetApiV1ExtensionsExecutionExecutionIdLogsResponses, type GetApiV1ExtensionsExecutionExecutionIdResponse, type GetApiV1ExtensionsExecutionExecutionIdResponses, type GetApiV1ExtensionsIdData, type GetApiV1ExtensionsIdError, type GetApiV1ExtensionsIdErrors, type GetApiV1ExtensionsIdResponse, type GetApiV1ExtensionsIdResponses, type GetApiV1ExtensionsResponse, type GetApiV1ExtensionsResponses, type GetApiV1FeatureFlagsCheckData, type GetApiV1FeatureFlagsCheckError, type GetApiV1FeatureFlagsCheckErrors, type GetApiV1FeatureFlagsCheckResponse, type GetApiV1FeatureFlagsCheckResponses, type GetApiV1FeatureFlagsData, type GetApiV1FeatureFlagsError, type GetApiV1FeatureFlagsErrors, type GetApiV1FeatureFlagsResponse, type GetApiV1FeatureFlagsResponses, type GetApiV1FileManagerData, type GetApiV1FileManagerError, type GetApiV1FileManagerErrors, type GetApiV1FileManagerResponse, type GetApiV1FileManagerResponses, type GetApiV1GithubConnectorAllData, type GetApiV1GithubConnectorAllError, type GetApiV1GithubConnectorAllErrors, type GetApiV1GithubConnectorAllResponse, type GetApiV1GithubConnectorAllResponses, type GetApiV1GithubConnectorRepositoriesData, type GetApiV1GithubConnectorRepositoriesError, type GetApiV1GithubConnectorRepositoriesErrors, type GetApiV1GithubConnectorRepositoriesResponse, type GetApiV1GithubConnectorRepositoriesResponses, type GetApiV1HealthData, type GetApiV1HealthError, type GetApiV1HealthErrors, type GetApiV1HealthResponse, type GetApiV1HealthResponses, type GetApiV1HealthcheckData, type GetApiV1HealthcheckError, type GetApiV1HealthcheckErrors, type GetApiV1HealthcheckResponse, type GetApiV1HealthcheckResponses, type GetApiV1HealthcheckResultsData, type GetApiV1HealthcheckResultsError, type GetApiV1HealthcheckResultsErrors, type GetApiV1HealthcheckResultsResponse, type GetApiV1HealthcheckResultsResponses, type GetApiV1HealthcheckStatsData, type GetApiV1HealthcheckStatsError, type GetApiV1HealthcheckStatsErrors, type GetApiV1HealthcheckStatsResponse, type GetApiV1HealthcheckStatsResponses, type GetApiV1NotificationPreferencesData, type GetApiV1NotificationPreferencesError, type GetApiV1NotificationPreferencesErrors, type GetApiV1NotificationPreferencesResponse, type GetApiV1NotificationPreferencesResponses, type GetApiV1NotificationSmtpData, type GetApiV1NotificationSmtpError, type GetApiV1NotificationSmtpErrors, type GetApiV1NotificationSmtpResponse, type GetApiV1NotificationSmtpResponses, type GetApiV1NotificationWebhookTypeData, type GetApiV1NotificationWebhookTypeError, type GetApiV1NotificationWebhookTypeErrors, type GetApiV1NotificationWebhookTypeResponse, type GetApiV1NotificationWebhookTypeResponses, type GetApiV1ServersData, type GetApiV1ServersError, type GetApiV1ServersErrors, type GetApiV1ServersResponse, type GetApiV1ServersResponses, type GetApiV1ServersSshStatusData, type GetApiV1ServersSshStatusError, type GetApiV1ServersSshStatusErrors, type GetApiV1ServersSshStatusResponse, type GetApiV1ServersSshStatusResponses, type GetApiV1TrailStatusSessionIdData, type GetApiV1TrailStatusSessionIdError, type GetApiV1TrailStatusSessionIdErrors, type GetApiV1TrailStatusSessionIdResponse, type GetApiV1TrailStatusSessionIdResponses, type GetApiV1UpdateCheckData, type GetApiV1UpdateCheckError, type GetApiV1UpdateCheckErrors, type GetApiV1UpdateCheckResponse, type GetApiV1UpdateCheckResponses, type GetApiV1UserData, type GetApiV1UserError, type GetApiV1UserErrors, type GetApiV1UserOnboardedData, type GetApiV1UserOnboardedError, type GetApiV1UserOnboardedErrors, type GetApiV1UserOnboardedResponse, type GetApiV1UserOnboardedResponses, type GetApiV1UserPreferencesData, type GetApiV1UserPreferencesError, type GetApiV1UserPreferencesErrors, type GetApiV1UserPreferencesResponse, type GetApiV1UserPreferencesResponses, type GetApiV1UserResponse, type GetApiV1UserResponses, type GetApiV1UserSettingsData, type GetApiV1UserSettingsError, type GetApiV1UserSettingsErrors, type GetApiV1UserSettingsResponse, type GetApiV1UserSettingsResponses, type GetApplicationDeploymentsRequest, type GetApplicationsRequest, type GetContainerResponse, type GetGithubRepositoryBranchesRequest, type GetWsData, type GetWsError, type GetWsErrors, type GetWsLiveApplicationIdData, type GetWsLiveApplicationIdError, type GetWsLiveApplicationIdErrors, type GetWsLiveApplicationIdResponse, type GetWsLiveApplicationIdResponses, type GetWsResponse, type GetWsResponses, type HealthCheckResponse, type HttpError, type IsFeatureEnabledResponse, type IsOnboardedResponse, type LabelsResponse, type ListApplicationsResponse, type ListBranchesResponse, type ListConnectorsResponse, type ListContainersResponse, type ListDeploymentsResponse, type ListDomainsResponse, type ListExecutionsResponse, type ListExtensionsResponse, type ListFeatureFlagsResponse, type ListFilesRequest, type ListFilesResponse, type ListImagesRequest, type ListImagesResponse, type ListLogsResponse, type ListRepositoriesResponse, type ListServersResponse, type LogsResponse, type MarkOnboardingCompleteResponse, type MessageResponse, type MoveDirectory, type Options, type PatchApiV1HealthcheckToggleData, type PatchApiV1HealthcheckToggleError, type PatchApiV1HealthcheckToggleErrors, type PatchApiV1HealthcheckToggleResponse, type PatchApiV1HealthcheckToggleResponses, type PatchApiV1UserAvatarData, type PatchApiV1UserAvatarError, type PatchApiV1UserAvatarErrors, type PatchApiV1UserAvatarResponse, type PatchApiV1UserAvatarResponses, type PatchApiV1UserNameData, type PatchApiV1UserNameError, type PatchApiV1UserNameErrors, type PatchApiV1UserNameResponse, type PatchApiV1UserNameResponses, type PatchApiV1UserSettingsAutoUpdateData, type PatchApiV1UserSettingsAutoUpdateError, type PatchApiV1UserSettingsAutoUpdateErrors, type PatchApiV1UserSettingsAutoUpdateResponse, type PatchApiV1UserSettingsAutoUpdateResponses, type PatchApiV1UserSettingsFontData, type PatchApiV1UserSettingsFontError, type PatchApiV1UserSettingsFontErrors, type PatchApiV1UserSettingsFontResponse, type PatchApiV1UserSettingsFontResponses, type PatchApiV1UserSettingsLanguageData, type PatchApiV1UserSettingsLanguageError, type PatchApiV1UserSettingsLanguageErrors, type PatchApiV1UserSettingsLanguageResponse, type PatchApiV1UserSettingsLanguageResponses, type PatchApiV1UserSettingsThemeData, type PatchApiV1UserSettingsThemeError, type PatchApiV1UserSettingsThemeErrors, type PatchApiV1UserSettingsThemeResponse, type PatchApiV1UserSettingsThemeResponses, type PauseRequest, type PostApiV1AuthCliInitData, type PostApiV1AuthCliInitError, type PostApiV1AuthCliInitErrors, type PostApiV1AuthCliInitResponse, type PostApiV1AuthCliInitResponses, type PostApiV1ContainerContainerIdLogsData, type PostApiV1ContainerContainerIdLogsError, type PostApiV1ContainerContainerIdLogsErrors, type PostApiV1ContainerContainerIdLogsResponse, type PostApiV1ContainerContainerIdLogsResponses, type PostApiV1ContainerContainerIdRestartData, type PostApiV1ContainerContainerIdRestartError, type PostApiV1ContainerContainerIdRestartErrors, type PostApiV1ContainerContainerIdRestartResponse, type PostApiV1ContainerContainerIdRestartResponses, type PostApiV1ContainerContainerIdStartData, type PostApiV1ContainerContainerIdStartError, type PostApiV1ContainerContainerIdStartErrors, type PostApiV1ContainerContainerIdStartResponse, type PostApiV1ContainerContainerIdStartResponses, type PostApiV1ContainerContainerIdStopData, type PostApiV1ContainerContainerIdStopError, type PostApiV1ContainerContainerIdStopErrors, type PostApiV1ContainerContainerIdStopResponse, type PostApiV1ContainerContainerIdStopResponses, type PostApiV1ContainerImagesData, type PostApiV1ContainerImagesError, type PostApiV1ContainerImagesErrors, type PostApiV1ContainerImagesResponse, type PostApiV1ContainerImagesResponses, type PostApiV1ContainerPruneBuildCacheData, type PostApiV1ContainerPruneBuildCacheError, type PostApiV1ContainerPruneBuildCacheErrors, type PostApiV1ContainerPruneBuildCacheResponse, type PostApiV1ContainerPruneBuildCacheResponses, type PostApiV1ContainerPruneImagesData, type PostApiV1ContainerPruneImagesError, type PostApiV1ContainerPruneImagesErrors, type PostApiV1ContainerPruneImagesResponse, type PostApiV1ContainerPruneImagesResponses, type PostApiV1DeployApplicationData, type PostApiV1DeployApplicationDomainsData, type PostApiV1DeployApplicationDomainsError, type PostApiV1DeployApplicationDomainsErrors, type PostApiV1DeployApplicationDomainsResponse, type PostApiV1DeployApplicationDomainsResponses, type PostApiV1DeployApplicationError, type PostApiV1DeployApplicationErrors, type PostApiV1DeployApplicationProjectAddToFamilyData, type PostApiV1DeployApplicationProjectAddToFamilyError, type PostApiV1DeployApplicationProjectAddToFamilyErrors, type PostApiV1DeployApplicationProjectAddToFamilyResponse, type PostApiV1DeployApplicationProjectAddToFamilyResponses, type PostApiV1DeployApplicationProjectData, type PostApiV1DeployApplicationProjectDeployData, type PostApiV1DeployApplicationProjectDeployError, type PostApiV1DeployApplicationProjectDeployErrors, type PostApiV1DeployApplicationProjectDeployResponse, type PostApiV1DeployApplicationProjectDeployResponses, type PostApiV1DeployApplicationProjectDuplicateData, type PostApiV1DeployApplicationProjectDuplicateError, type PostApiV1DeployApplicationProjectDuplicateErrors, type PostApiV1DeployApplicationProjectDuplicateResponse, type PostApiV1DeployApplicationProjectDuplicateResponses, type PostApiV1DeployApplicationProjectError, type PostApiV1DeployApplicationProjectErrors, type PostApiV1DeployApplicationProjectResponse, type PostApiV1DeployApplicationProjectResponses, type PostApiV1DeployApplicationRecoverData, type PostApiV1DeployApplicationRecoverError, type PostApiV1DeployApplicationRecoverErrors, type PostApiV1DeployApplicationRecoverResponse, type PostApiV1DeployApplicationRecoverResponses, type PostApiV1DeployApplicationRedeployData, type PostApiV1DeployApplicationRedeployError, type PostApiV1DeployApplicationRedeployErrors, type PostApiV1DeployApplicationRedeployResponse, type PostApiV1DeployApplicationRedeployResponses, type PostApiV1DeployApplicationResponse, type PostApiV1DeployApplicationResponses, type PostApiV1DeployApplicationRestartData, type PostApiV1DeployApplicationRestartError, type PostApiV1DeployApplicationRestartErrors, type PostApiV1DeployApplicationRestartResponse, type PostApiV1DeployApplicationRestartResponses, type PostApiV1DeployApplicationRollbackData, type PostApiV1DeployApplicationRollbackError, type PostApiV1DeployApplicationRollbackErrors, type PostApiV1DeployApplicationRollbackResponse, type PostApiV1DeployApplicationRollbackResponses, type PostApiV1DomainData, type PostApiV1DomainError, type PostApiV1DomainErrors, type PostApiV1DomainResponse, type PostApiV1DomainResponses, type PostApiV1ExtensionsExecutionExecutionIdCancelData, type PostApiV1ExtensionsExecutionExecutionIdCancelError, type PostApiV1ExtensionsExecutionExecutionIdCancelErrors, type PostApiV1ExtensionsExecutionExecutionIdCancelResponse, type PostApiV1ExtensionsExecutionExecutionIdCancelResponses, type PostApiV1ExtensionsExtensionIdForkData, type PostApiV1ExtensionsExtensionIdForkError, type PostApiV1ExtensionsExtensionIdForkErrors, type PostApiV1ExtensionsExtensionIdForkResponse, type PostApiV1ExtensionsExtensionIdForkResponses, type PostApiV1ExtensionsExtensionIdRunData, type PostApiV1ExtensionsExtensionIdRunError, type PostApiV1ExtensionsExtensionIdRunErrors, type PostApiV1ExtensionsExtensionIdRunResponse, type PostApiV1ExtensionsExtensionIdRunResponses, type PostApiV1FileManagerCopyDirectoryData, type PostApiV1FileManagerCopyDirectoryError, type PostApiV1FileManagerCopyDirectoryErrors, type PostApiV1FileManagerCopyDirectoryResponse, type PostApiV1FileManagerCopyDirectoryResponses, type PostApiV1FileManagerCreateDirectoryData, type PostApiV1FileManagerCreateDirectoryError, type PostApiV1FileManagerCreateDirectoryErrors, type PostApiV1FileManagerCreateDirectoryResponse, type PostApiV1FileManagerCreateDirectoryResponses, type PostApiV1FileManagerMoveDirectoryData, type PostApiV1FileManagerMoveDirectoryError, type PostApiV1FileManagerMoveDirectoryErrors, type PostApiV1FileManagerMoveDirectoryResponse, type PostApiV1FileManagerMoveDirectoryResponses, type PostApiV1FileManagerUploadData, type PostApiV1FileManagerUploadError, type PostApiV1FileManagerUploadErrors, type PostApiV1FileManagerUploadResponse, type PostApiV1FileManagerUploadResponses, type PostApiV1GithubConnectorData, type PostApiV1GithubConnectorError, type PostApiV1GithubConnectorErrors, type PostApiV1GithubConnectorRepositoryBranchesData, type PostApiV1GithubConnectorRepositoryBranchesError, type PostApiV1GithubConnectorRepositoryBranchesErrors, type PostApiV1GithubConnectorRepositoryBranchesResponse, type PostApiV1GithubConnectorRepositoryBranchesResponses, type PostApiV1GithubConnectorResponse, type PostApiV1GithubConnectorResponses, type PostApiV1HealthcheckData, type PostApiV1HealthcheckError, type PostApiV1HealthcheckErrors, type PostApiV1HealthcheckResponse, type PostApiV1HealthcheckResponses, type PostApiV1LivePauseData, type PostApiV1LivePauseError, type PostApiV1LivePauseErrors, type PostApiV1LivePauseResponse, type PostApiV1LivePauseResponses, type PostApiV1NotificationPreferencesData, type PostApiV1NotificationPreferencesError, type PostApiV1NotificationPreferencesErrors, type PostApiV1NotificationPreferencesResponse, type PostApiV1NotificationPreferencesResponses, type PostApiV1NotificationSmtpData, type PostApiV1NotificationSmtpError, type PostApiV1NotificationSmtpErrors, type PostApiV1NotificationSmtpResponse, type PostApiV1NotificationSmtpResponses, type PostApiV1NotificationWebhookData, type PostApiV1NotificationWebhookError, type PostApiV1NotificationWebhookErrors, type PostApiV1NotificationWebhookResponse, type PostApiV1NotificationWebhookResponses, type PostApiV1TrailProvisionData, type PostApiV1TrailProvisionError, type PostApiV1TrailProvisionErrors, type PostApiV1TrailProvisionResponse, type PostApiV1TrailProvisionResponses, type PostApiV1UpdateData, type PostApiV1UpdateError, type PostApiV1UpdateErrors, type PostApiV1UpdateResponse, type PostApiV1UpdateResponses, type PostApiV1UserOnboardedData, type PostApiV1UserOnboardedError, type PostApiV1UserOnboardedErrors, type PostApiV1UserOnboardedResponse, type PostApiV1UserOnboardedResponses, type PostApiV1WebhookData, type PostApiV1WebhookError, type PostApiV1WebhookErrors, type PostApiV1WebhookResponse, type PostApiV1WebhookResponses, type PreferencesResponse, type ProjectFamilyResponse, type ProvisionRequest, type PruneBuildCacheRequest, type PruneImagesRequest, type PruneImagesResponse, type PutApiV1ContainerContainerIdResourcesData, type PutApiV1ContainerContainerIdResourcesError, type PutApiV1ContainerContainerIdResourcesErrors, type PutApiV1ContainerContainerIdResourcesResponse, type PutApiV1ContainerContainerIdResourcesResponses, type PutApiV1DeployApplicationData, type PutApiV1DeployApplicationError, type PutApiV1DeployApplicationErrors, type PutApiV1DeployApplicationLabelsData, type PutApiV1DeployApplicationLabelsError, type PutApiV1DeployApplicationLabelsErrors, type PutApiV1DeployApplicationLabelsResponse, type PutApiV1DeployApplicationLabelsResponses, type PutApiV1DeployApplicationResponse, type PutApiV1DeployApplicationResponses, type PutApiV1DomainData, type PutApiV1DomainError, type PutApiV1DomainErrors, type PutApiV1DomainResponse, type PutApiV1DomainResponses, type PutApiV1FeatureFlagsData, type PutApiV1FeatureFlagsError, type PutApiV1FeatureFlagsErrors, type PutApiV1FeatureFlagsResponse, type PutApiV1FeatureFlagsResponses, type PutApiV1GithubConnectorData, type PutApiV1GithubConnectorError, type PutApiV1GithubConnectorErrors, type PutApiV1GithubConnectorResponse, type PutApiV1GithubConnectorResponses, type PutApiV1HealthcheckData, type PutApiV1HealthcheckError, type PutApiV1HealthcheckErrors, type PutApiV1HealthcheckResponse, type PutApiV1HealthcheckResponses, type PutApiV1NotificationSmtpData, type PutApiV1NotificationSmtpError, type PutApiV1NotificationSmtpErrors, type PutApiV1NotificationSmtpResponse, type PutApiV1NotificationSmtpResponses, type PutApiV1NotificationWebhookData, type PutApiV1NotificationWebhookError, type PutApiV1NotificationWebhookErrors, type PutApiV1NotificationWebhookResponse, type PutApiV1NotificationWebhookResponses, type PutApiV1UserPreferencesData, type PutApiV1UserPreferencesError, type PutApiV1UserPreferencesErrors, type PutApiV1UserPreferencesResponse, type PutApiV1UserPreferencesResponses, type QueryKey, type RandomSubdomainResponseWrapper, type ReDeployApplicationRequest, type RecoverRequest, type RecoverResponse, type RemoveApplicationDomainRequest, type Response$1 as Response, type RestartDeploymentRequest, type RollbackDeploymentRequest, type RunExtensionRequest, type SmtpConfigResponse, type SshConnectionStatusResponse, type ToggleHealthCheckRequest, type UnknownInterface, type UpdateAutoUpdateRequest, type UpdateAvatarRequest, type UpdateCheckResponse, type UpdateContainerResourcesRequest, type UpdateContainerResourcesResponse, type UpdateDeploymentRequest, type UpdateDomainRequest, type UpdateFeatureFlagRequest, type UpdateFontRequest, type UpdateGithubConnectorRequest, type UpdateHealthCheckRequest, type UpdateLabelsRequest, type UpdateLanguageRequest, type UpdatePreferenceRequest, type UpdateRequest, type UpdateResponse, type UpdateSmtpConfigRequest, type UpdateThemeRequest, type UpdateUserNameRequest, type UpdateUsernameResponse, type UpdateWebhookConfigRequest, type User, type UserPreferencesData, type UserPreferencesResponse, type UserResponse, type UserSettingsResponse, type WebhookConfigResponse, deleteApiV1ContainerContainerId, deleteApiV1ContainerContainerIdMutation, deleteApiV1DeployApplication, deleteApiV1DeployApplicationDomains, deleteApiV1DeployApplicationDomainsMutation, deleteApiV1DeployApplicationMutation, deleteApiV1Domain, deleteApiV1DomainMutation, deleteApiV1ExtensionsId, deleteApiV1ExtensionsIdMutation, deleteApiV1FileManagerDeleteDirectory, deleteApiV1FileManagerDeleteDirectoryMutation, deleteApiV1GithubConnector, deleteApiV1GithubConnectorMutation, deleteApiV1Healthcheck, deleteApiV1HealthcheckMutation, deleteApiV1NotificationSmtp, deleteApiV1NotificationSmtpMutation, deleteApiV1NotificationWebhook, deleteApiV1NotificationWebhookMutation, getApiV1AuditLogs, getApiV1AuditLogsOptions, getApiV1AuditLogsQueryKey, getApiV1AuthBootstrap, getApiV1AuthBootstrapOptions, getApiV1AuthBootstrapQueryKey, getApiV1AuthIsAdminRegistered, getApiV1AuthIsAdminRegisteredOptions, getApiV1AuthIsAdminRegisteredQueryKey, getApiV1Container, getApiV1ContainerContainerId, getApiV1ContainerContainerIdOptions, getApiV1ContainerContainerIdQueryKey, getApiV1ContainerOptions, getApiV1ContainerQueryKey, getApiV1DeployApplication, getApiV1DeployApplicationDeployments, getApiV1DeployApplicationDeploymentsDeploymentId, getApiV1DeployApplicationDeploymentsDeploymentIdLogs, getApiV1DeployApplicationDeploymentsDeploymentIdLogsOptions, getApiV1DeployApplicationDeploymentsDeploymentIdLogsQueryKey, getApiV1DeployApplicationDeploymentsDeploymentIdOptions, getApiV1DeployApplicationDeploymentsDeploymentIdQueryKey, getApiV1DeployApplicationDeploymentsInfiniteOptions, getApiV1DeployApplicationDeploymentsInfiniteQueryKey, getApiV1DeployApplicationDeploymentsOptions, getApiV1DeployApplicationDeploymentsQueryKey, getApiV1DeployApplicationLogsApplicationId, getApiV1DeployApplicationLogsApplicationIdOptions, getApiV1DeployApplicationLogsApplicationIdQueryKey, getApiV1DeployApplicationOptions, getApiV1DeployApplicationProjectFamily, getApiV1DeployApplicationProjectFamilyEnvironments, getApiV1DeployApplicationProjectFamilyEnvironmentsOptions, getApiV1DeployApplicationProjectFamilyEnvironmentsQueryKey, getApiV1DeployApplicationProjectFamilyOptions, getApiV1DeployApplicationProjectFamilyQueryKey, getApiV1DeployApplicationQueryKey, getApiV1DeployApplications, getApiV1DeployApplicationsInfiniteOptions, getApiV1DeployApplicationsInfiniteQueryKey, getApiV1DeployApplicationsOptions, getApiV1DeployApplicationsQueryKey, getApiV1DomainGenerate, getApiV1DomainGenerateOptions, getApiV1DomainGenerateQueryKey, getApiV1Domains, getApiV1DomainsOptions, getApiV1DomainsQueryKey, getApiV1Extensions, getApiV1ExtensionsByExtensionIdExtensionId, getApiV1ExtensionsByExtensionIdExtensionIdExecutions, getApiV1ExtensionsByExtensionIdExtensionIdExecutionsOptions, getApiV1ExtensionsByExtensionIdExtensionIdExecutionsQueryKey, getApiV1ExtensionsByExtensionIdExtensionIdOptions, getApiV1ExtensionsByExtensionIdExtensionIdQueryKey, getApiV1ExtensionsCategories, getApiV1ExtensionsCategoriesOptions, getApiV1ExtensionsCategoriesQueryKey, getApiV1ExtensionsExecutionExecutionId, getApiV1ExtensionsExecutionExecutionIdLogs, getApiV1ExtensionsExecutionExecutionIdLogsOptions, getApiV1ExtensionsExecutionExecutionIdLogsQueryKey, getApiV1ExtensionsExecutionExecutionIdOptions, getApiV1ExtensionsExecutionExecutionIdQueryKey, getApiV1ExtensionsId, getApiV1ExtensionsIdOptions, getApiV1ExtensionsIdQueryKey, getApiV1ExtensionsOptions, getApiV1ExtensionsQueryKey, getApiV1FeatureFlags, getApiV1FeatureFlagsCheck, getApiV1FeatureFlagsCheckOptions, getApiV1FeatureFlagsCheckQueryKey, getApiV1FeatureFlagsOptions, getApiV1FeatureFlagsQueryKey, getApiV1FileManager, getApiV1FileManagerOptions, getApiV1FileManagerQueryKey, getApiV1GithubConnectorAll, getApiV1GithubConnectorAllOptions, getApiV1GithubConnectorAllQueryKey, getApiV1GithubConnectorRepositories, getApiV1GithubConnectorRepositoriesOptions, getApiV1GithubConnectorRepositoriesQueryKey, getApiV1Health, getApiV1HealthOptions, getApiV1HealthQueryKey, getApiV1Healthcheck, getApiV1HealthcheckOptions, getApiV1HealthcheckQueryKey, getApiV1HealthcheckResults, getApiV1HealthcheckResultsOptions, getApiV1HealthcheckResultsQueryKey, getApiV1HealthcheckStats, getApiV1HealthcheckStatsOptions, getApiV1HealthcheckStatsQueryKey, getApiV1NotificationPreferences, getApiV1NotificationPreferencesOptions, getApiV1NotificationPreferencesQueryKey, getApiV1NotificationSmtp, getApiV1NotificationSmtpOptions, getApiV1NotificationSmtpQueryKey, getApiV1NotificationWebhookType, getApiV1NotificationWebhookTypeOptions, getApiV1NotificationWebhookTypeQueryKey, getApiV1Servers, getApiV1ServersOptions, getApiV1ServersQueryKey, getApiV1ServersSshStatus, getApiV1ServersSshStatusOptions, getApiV1ServersSshStatusQueryKey, getApiV1TrailStatusSessionId, getApiV1TrailStatusSessionIdOptions, getApiV1TrailStatusSessionIdQueryKey, getApiV1UpdateCheck, getApiV1UpdateCheckOptions, getApiV1UpdateCheckQueryKey, getApiV1User, getApiV1UserOnboarded, getApiV1UserOnboardedOptions, getApiV1UserOnboardedQueryKey, getApiV1UserOptions, getApiV1UserPreferences, getApiV1UserPreferencesOptions, getApiV1UserPreferencesQueryKey, getApiV1UserQueryKey, getApiV1UserSettings, getApiV1UserSettingsOptions, getApiV1UserSettingsQueryKey, getWs, getWsLiveApplicationId, getWsLiveApplicationIdOptions, getWsLiveApplicationIdQueryKey, getWsOptions, getWsQueryKey, patchApiV1HealthcheckToggle, patchApiV1HealthcheckToggleMutation, patchApiV1UserAvatar, patchApiV1UserAvatarMutation, patchApiV1UserName, patchApiV1UserNameMutation, patchApiV1UserSettingsAutoUpdate, patchApiV1UserSettingsAutoUpdateMutation, patchApiV1UserSettingsFont, patchApiV1UserSettingsFontMutation, patchApiV1UserSettingsLanguage, patchApiV1UserSettingsLanguageMutation, patchApiV1UserSettingsTheme, patchApiV1UserSettingsThemeMutation, postApiV1AuthCliInit, postApiV1AuthCliInitMutation, postApiV1ContainerContainerIdLogs, postApiV1ContainerContainerIdLogsMutation, postApiV1ContainerContainerIdRestart, postApiV1ContainerContainerIdRestartMutation, postApiV1ContainerContainerIdStart, postApiV1ContainerContainerIdStartMutation, postApiV1ContainerContainerIdStop, postApiV1ContainerContainerIdStopMutation, postApiV1ContainerImages, postApiV1ContainerImagesMutation, postApiV1ContainerPruneBuildCache, postApiV1ContainerPruneBuildCacheMutation, postApiV1ContainerPruneImages, postApiV1ContainerPruneImagesMutation, postApiV1DeployApplication, postApiV1DeployApplicationDomains, postApiV1DeployApplicationDomainsMutation, postApiV1DeployApplicationMutation, postApiV1DeployApplicationProject, postApiV1DeployApplicationProjectAddToFamily, postApiV1DeployApplicationProjectAddToFamilyMutation, postApiV1DeployApplicationProjectDeploy, postApiV1DeployApplicationProjectDeployMutation, postApiV1DeployApplicationProjectDuplicate, postApiV1DeployApplicationProjectDuplicateMutation, postApiV1DeployApplicationProjectMutation, postApiV1DeployApplicationRecover, postApiV1DeployApplicationRecoverMutation, postApiV1DeployApplicationRedeploy, postApiV1DeployApplicationRedeployMutation, postApiV1DeployApplicationRestart, postApiV1DeployApplicationRestartMutation, postApiV1DeployApplicationRollback, postApiV1DeployApplicationRollbackMutation, postApiV1Domain, postApiV1DomainMutation, postApiV1ExtensionsExecutionExecutionIdCancel, postApiV1ExtensionsExecutionExecutionIdCancelMutation, postApiV1ExtensionsExtensionIdFork, postApiV1ExtensionsExtensionIdForkMutation, postApiV1ExtensionsExtensionIdRun, postApiV1ExtensionsExtensionIdRunMutation, postApiV1FileManagerCopyDirectory, postApiV1FileManagerCopyDirectoryMutation, postApiV1FileManagerCreateDirectory, postApiV1FileManagerCreateDirectoryMutation, postApiV1FileManagerMoveDirectory, postApiV1FileManagerMoveDirectoryMutation, postApiV1FileManagerUpload, postApiV1FileManagerUploadMutation, postApiV1GithubConnector, postApiV1GithubConnectorMutation, postApiV1GithubConnectorRepositoryBranches, postApiV1GithubConnectorRepositoryBranchesMutation, postApiV1Healthcheck, postApiV1HealthcheckMutation, postApiV1LivePause, postApiV1LivePauseMutation, postApiV1NotificationPreferences, postApiV1NotificationPreferencesMutation, postApiV1NotificationSmtp, postApiV1NotificationSmtpMutation, postApiV1NotificationWebhook, postApiV1NotificationWebhookMutation, postApiV1TrailProvision, postApiV1TrailProvisionMutation, postApiV1Update, postApiV1UpdateMutation, postApiV1UserOnboarded, postApiV1UserOnboardedMutation, postApiV1Webhook, postApiV1WebhookMutation, putApiV1ContainerContainerIdResources, putApiV1ContainerContainerIdResourcesMutation, putApiV1DeployApplication, putApiV1DeployApplicationLabels, putApiV1DeployApplicationLabelsMutation, putApiV1DeployApplicationMutation, putApiV1Domain, putApiV1DomainMutation, putApiV1FeatureFlags, putApiV1FeatureFlagsMutation, putApiV1GithubConnector, putApiV1GithubConnectorMutation, putApiV1Healthcheck, putApiV1HealthcheckMutation, putApiV1NotificationSmtp, putApiV1NotificationSmtpMutation, putApiV1NotificationWebhook, putApiV1NotificationWebhookMutation, putApiV1UserPreferences, putApiV1UserPreferencesMutation, zAddApplicationDomainRequest, zAddApplicationToFamilyRequest, zAdminRegisteredResponse, zApplication, zApplicationDeployment, zApplicationResponse, zBootstrapResponse, zCategoriesResponse, zCliInitRequest, zCliInitResponse, zContainerActionResponse, zContainerLogsRequest, zContainerLogsResponse, zCopyDirectory, zCreateDeploymentRequest, zCreateDirectoryRequest, zCreateDomainRequest, zCreateDomainResponseWrapper, zCreateGithubConnectorRequest, zCreateHealthCheckRequest, zCreateProjectRequest, zCreateSmtpConfigRequest, zCreateWebhookConfigRequest, zDeleteApiV1ContainerContainerIdData, zDeleteApiV1ContainerContainerIdResponse, zDeleteApiV1DeployApplicationData, zDeleteApiV1DeployApplicationDomainsData, zDeleteApiV1DeployApplicationDomainsResponse, zDeleteApiV1DeployApplicationResponse, zDeleteApiV1DomainData, zDeleteApiV1DomainResponse, zDeleteApiV1ExtensionsIdData, zDeleteApiV1ExtensionsIdResponse, zDeleteApiV1FileManagerDeleteDirectoryData, zDeleteApiV1FileManagerDeleteDirectoryResponse, zDeleteApiV1GithubConnectorData, zDeleteApiV1GithubConnectorResponse, zDeleteApiV1HealthcheckData, zDeleteApiV1HealthcheckResponse, zDeleteApiV1NotificationSmtpData, zDeleteApiV1NotificationSmtpResponse, zDeleteApiV1NotificationWebhookData, zDeleteApiV1NotificationWebhookResponse, zDeleteDeploymentRequest, zDeleteDirectoryRequest, zDeleteDomainRequest, zDeleteGithubConnectorRequest, zDeleteSmtpConfigRequest, zDeleteWebhookConfigRequest, zDeployProjectRequest, zDeploymentResponse, zDomainResponse, zDuplicateProjectRequest, zEnvironmentsInFamilyResponse, zExecutionResponse, zExtension, zExtensionExecution, zExtensionResponse, zForkExtensionRequest, zGetActivitiesResponse, zGetApiV1AuditLogsData, zGetApiV1AuditLogsResponse, zGetApiV1AuthBootstrapData, zGetApiV1AuthBootstrapResponse, zGetApiV1AuthIsAdminRegisteredData, zGetApiV1AuthIsAdminRegisteredResponse, zGetApiV1ContainerContainerIdData, zGetApiV1ContainerContainerIdResponse, zGetApiV1ContainerData, zGetApiV1ContainerResponse, zGetApiV1DeployApplicationData, zGetApiV1DeployApplicationDeploymentsData, zGetApiV1DeployApplicationDeploymentsDeploymentIdData, zGetApiV1DeployApplicationDeploymentsDeploymentIdLogsData, zGetApiV1DeployApplicationDeploymentsDeploymentIdLogsResponse, zGetApiV1DeployApplicationDeploymentsDeploymentIdResponse, zGetApiV1DeployApplicationDeploymentsResponse, zGetApiV1DeployApplicationLogsApplicationIdData, zGetApiV1DeployApplicationLogsApplicationIdResponse, zGetApiV1DeployApplicationProjectFamilyData, zGetApiV1DeployApplicationProjectFamilyEnvironmentsData, zGetApiV1DeployApplicationProjectFamilyEnvironmentsResponse, zGetApiV1DeployApplicationProjectFamilyResponse, zGetApiV1DeployApplicationResponse, zGetApiV1DeployApplicationsData, zGetApiV1DeployApplicationsResponse, zGetApiV1DomainGenerateData, zGetApiV1DomainGenerateResponse, zGetApiV1DomainsData, zGetApiV1DomainsResponse, zGetApiV1ExtensionsByExtensionIdExtensionIdData, zGetApiV1ExtensionsByExtensionIdExtensionIdExecutionsData, zGetApiV1ExtensionsByExtensionIdExtensionIdExecutionsResponse, zGetApiV1ExtensionsByExtensionIdExtensionIdResponse, zGetApiV1ExtensionsCategoriesData, zGetApiV1ExtensionsCategoriesResponse, zGetApiV1ExtensionsData, zGetApiV1ExtensionsExecutionExecutionIdData, zGetApiV1ExtensionsExecutionExecutionIdLogsData, zGetApiV1ExtensionsExecutionExecutionIdLogsResponse, zGetApiV1ExtensionsExecutionExecutionIdResponse, zGetApiV1ExtensionsIdData, zGetApiV1ExtensionsIdResponse, zGetApiV1ExtensionsResponse, zGetApiV1FeatureFlagsCheckData, zGetApiV1FeatureFlagsCheckResponse, zGetApiV1FeatureFlagsData, zGetApiV1FeatureFlagsResponse, zGetApiV1FileManagerData, zGetApiV1FileManagerResponse, zGetApiV1GithubConnectorAllData, zGetApiV1GithubConnectorAllResponse, zGetApiV1GithubConnectorRepositoriesData, zGetApiV1GithubConnectorRepositoriesResponse, zGetApiV1HealthData, zGetApiV1HealthResponse, zGetApiV1HealthcheckData, zGetApiV1HealthcheckResponse, zGetApiV1HealthcheckResultsData, zGetApiV1HealthcheckResultsResponse, zGetApiV1HealthcheckStatsData, zGetApiV1HealthcheckStatsResponse, zGetApiV1NotificationPreferencesData, zGetApiV1NotificationPreferencesResponse, zGetApiV1NotificationSmtpData, zGetApiV1NotificationSmtpResponse, zGetApiV1NotificationWebhookTypeData, zGetApiV1NotificationWebhookTypeResponse, zGetApiV1ServersData, zGetApiV1ServersResponse, zGetApiV1ServersSshStatusData, zGetApiV1ServersSshStatusResponse, zGetApiV1TrailStatusSessionIdData, zGetApiV1TrailStatusSessionIdResponse, zGetApiV1UpdateCheckData, zGetApiV1UpdateCheckResponse, zGetApiV1UserData, zGetApiV1UserOnboardedData, zGetApiV1UserOnboardedResponse, zGetApiV1UserPreferencesData, zGetApiV1UserPreferencesResponse, zGetApiV1UserResponse, zGetApiV1UserSettingsData, zGetApiV1UserSettingsResponse, zGetApplicationDeploymentsRequest, zGetApplicationsRequest, zGetContainerResponse, zGetGithubRepositoryBranchesRequest, zGetWsData, zGetWsLiveApplicationIdData, zGetWsLiveApplicationIdResponse, zGetWsResponse, zHealthCheckResponse, zHttpError, zIsFeatureEnabledResponse, zIsOnboardedResponse, zLabelsResponse, zListApplicationsResponse, zListBranchesResponse, zListConnectorsResponse, zListContainersResponse, zListDeploymentsResponse, zListDomainsResponse, zListExecutionsResponse, zListExtensionsResponse, zListFeatureFlagsResponse, zListFilesRequest, zListFilesResponse, zListImagesRequest, zListImagesResponse, zListLogsResponse, zListRepositoriesResponse, zListServersResponse, zLogsResponse, zMarkOnboardingCompleteResponse, zMessageResponse, zMoveDirectory, zPatchApiV1HealthcheckToggleData, zPatchApiV1HealthcheckToggleResponse, zPatchApiV1UserAvatarData, zPatchApiV1UserAvatarResponse, zPatchApiV1UserNameData, zPatchApiV1UserNameResponse, zPatchApiV1UserSettingsAutoUpdateData, zPatchApiV1UserSettingsAutoUpdateResponse, zPatchApiV1UserSettingsFontData, zPatchApiV1UserSettingsFontResponse, zPatchApiV1UserSettingsLanguageData, zPatchApiV1UserSettingsLanguageResponse, zPatchApiV1UserSettingsThemeData, zPatchApiV1UserSettingsThemeResponse, zPauseRequest, zPostApiV1AuthCliInitData, zPostApiV1AuthCliInitResponse, zPostApiV1ContainerContainerIdLogsData, zPostApiV1ContainerContainerIdLogsResponse, zPostApiV1ContainerContainerIdRestartData, zPostApiV1ContainerContainerIdRestartResponse, zPostApiV1ContainerContainerIdStartData, zPostApiV1ContainerContainerIdStartResponse, zPostApiV1ContainerContainerIdStopData, zPostApiV1ContainerContainerIdStopResponse, zPostApiV1ContainerImagesData, zPostApiV1ContainerImagesResponse, zPostApiV1ContainerPruneBuildCacheData, zPostApiV1ContainerPruneBuildCacheResponse, zPostApiV1ContainerPruneImagesData, zPostApiV1ContainerPruneImagesResponse, zPostApiV1DeployApplicationData, zPostApiV1DeployApplicationDomainsData, zPostApiV1DeployApplicationDomainsResponse, zPostApiV1DeployApplicationProjectAddToFamilyData, zPostApiV1DeployApplicationProjectAddToFamilyResponse, zPostApiV1DeployApplicationProjectData, zPostApiV1DeployApplicationProjectDeployData, zPostApiV1DeployApplicationProjectDeployResponse, zPostApiV1DeployApplicationProjectDuplicateData, zPostApiV1DeployApplicationProjectDuplicateResponse, zPostApiV1DeployApplicationProjectResponse, zPostApiV1DeployApplicationRecoverData, zPostApiV1DeployApplicationRecoverResponse, zPostApiV1DeployApplicationRedeployData, zPostApiV1DeployApplicationRedeployResponse, zPostApiV1DeployApplicationResponse, zPostApiV1DeployApplicationRestartData, zPostApiV1DeployApplicationRestartResponse, zPostApiV1DeployApplicationRollbackData, zPostApiV1DeployApplicationRollbackResponse, zPostApiV1DomainData, zPostApiV1DomainResponse, zPostApiV1ExtensionsExecutionExecutionIdCancelData, zPostApiV1ExtensionsExecutionExecutionIdCancelResponse, zPostApiV1ExtensionsExtensionIdForkData, zPostApiV1ExtensionsExtensionIdForkResponse, zPostApiV1ExtensionsExtensionIdRunData, zPostApiV1ExtensionsExtensionIdRunResponse, zPostApiV1FileManagerCopyDirectoryData, zPostApiV1FileManagerCopyDirectoryResponse, zPostApiV1FileManagerCreateDirectoryData, zPostApiV1FileManagerCreateDirectoryResponse, zPostApiV1FileManagerMoveDirectoryData, zPostApiV1FileManagerMoveDirectoryResponse, zPostApiV1FileManagerUploadData, zPostApiV1FileManagerUploadResponse, zPostApiV1GithubConnectorData, zPostApiV1GithubConnectorRepositoryBranchesData, zPostApiV1GithubConnectorRepositoryBranchesResponse, zPostApiV1GithubConnectorResponse, zPostApiV1HealthcheckData, zPostApiV1HealthcheckResponse, zPostApiV1LivePauseData, zPostApiV1LivePauseResponse, zPostApiV1NotificationPreferencesData, zPostApiV1NotificationPreferencesResponse, zPostApiV1NotificationSmtpData, zPostApiV1NotificationSmtpResponse, zPostApiV1NotificationWebhookData, zPostApiV1NotificationWebhookResponse, zPostApiV1TrailProvisionData, zPostApiV1TrailProvisionResponse, zPostApiV1UpdateData, zPostApiV1UpdateResponse, zPostApiV1UserOnboardedData, zPostApiV1UserOnboardedResponse, zPostApiV1WebhookData, zPostApiV1WebhookResponse, zPreferencesResponse, zProjectFamilyResponse, zProvisionRequest, zPruneBuildCacheRequest, zPruneImagesRequest, zPruneImagesResponse, zPutApiV1ContainerContainerIdResourcesData, zPutApiV1ContainerContainerIdResourcesResponse, zPutApiV1DeployApplicationData, zPutApiV1DeployApplicationLabelsData, zPutApiV1DeployApplicationLabelsResponse, zPutApiV1DeployApplicationResponse, zPutApiV1DomainData, zPutApiV1DomainResponse, zPutApiV1FeatureFlagsData, zPutApiV1FeatureFlagsResponse, zPutApiV1GithubConnectorData, zPutApiV1GithubConnectorResponse, zPutApiV1HealthcheckData, zPutApiV1HealthcheckResponse, zPutApiV1NotificationSmtpData, zPutApiV1NotificationSmtpResponse, zPutApiV1NotificationWebhookData, zPutApiV1NotificationWebhookResponse, zPutApiV1UserPreferencesData, zPutApiV1UserPreferencesResponse, zRandomSubdomainResponseWrapper, zReDeployApplicationRequest, zRecoverRequest, zRecoverResponse, zRemoveApplicationDomainRequest, zResponse, zRestartDeploymentRequest, zRollbackDeploymentRequest, zRunExtensionRequest, zSmtpConfigResponse, zSshConnectionStatusResponse, zToggleHealthCheckRequest, zUnknownInterface, zUpdateAutoUpdateRequest, zUpdateAvatarRequest, zUpdateCheckResponse, zUpdateContainerResourcesRequest, zUpdateContainerResourcesResponse, zUpdateDeploymentRequest, zUpdateDomainRequest, zUpdateFeatureFlagRequest, zUpdateFontRequest, zUpdateGithubConnectorRequest, zUpdateHealthCheckRequest, zUpdateLabelsRequest, zUpdateLanguageRequest, zUpdatePreferenceRequest, zUpdateRequest, zUpdateResponse, zUpdateSmtpConfigRequest, zUpdateThemeRequest, zUpdateUserNameRequest, zUpdateUsernameResponse, zUpdateWebhookConfigRequest, zUser, zUserPreferencesData, zUserPreferencesResponse, zUserResponse, zUserSettingsResponse, zWebhookConfigResponse };