@nixopus/api-client 0.0.8 → 0.0.10
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 +1409 -136
- package/dist/index.d.ts +1409 -136
- package/dist/index.js +319 -11
- package/dist/index.mjs +282 -11
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -554,16 +554,7 @@ type ApplicationDeployment = {
|
|
|
554
554
|
id?: string;
|
|
555
555
|
image_s3_key?: string;
|
|
556
556
|
image_size?: number;
|
|
557
|
-
logs?: Array<
|
|
558
|
-
application?: Application;
|
|
559
|
-
application_deployment?: ApplicationDeployment;
|
|
560
|
-
application_deployment_id?: string;
|
|
561
|
-
application_id?: string;
|
|
562
|
-
created_at?: string;
|
|
563
|
-
id?: string;
|
|
564
|
-
log?: string;
|
|
565
|
-
updated_at?: string;
|
|
566
|
-
}>;
|
|
557
|
+
logs?: Array<ApplicationLogs>;
|
|
567
558
|
status?: {
|
|
568
559
|
application_deployment?: ApplicationDeployment;
|
|
569
560
|
application_deployment_id?: string;
|
|
@@ -577,7 +568,16 @@ type ApplicationDeployment = {
|
|
|
577
568
|
type ApplicationDomain = {
|
|
578
569
|
application?: Application;
|
|
579
570
|
application_id?: string;
|
|
580
|
-
compose_service?:
|
|
571
|
+
compose_service?: {
|
|
572
|
+
application?: Application;
|
|
573
|
+
application_id?: string;
|
|
574
|
+
created_at?: string;
|
|
575
|
+
domains?: Array<ApplicationDomain>;
|
|
576
|
+
id?: string;
|
|
577
|
+
port?: number;
|
|
578
|
+
service_name?: string;
|
|
579
|
+
updated_at?: string;
|
|
580
|
+
};
|
|
581
581
|
compose_service_id?: string;
|
|
582
582
|
created_at?: string;
|
|
583
583
|
domain?: string;
|
|
@@ -1270,6 +1270,7 @@ type CreateGithubConnectorRequest = {
|
|
|
1270
1270
|
app_id?: string;
|
|
1271
1271
|
client_id?: string;
|
|
1272
1272
|
client_secret?: string;
|
|
1273
|
+
installation_id?: string;
|
|
1273
1274
|
pem?: string;
|
|
1274
1275
|
slug?: string;
|
|
1275
1276
|
webhook_secret?: string;
|
|
@@ -3515,6 +3516,22 @@ type ListLogsResponse = {
|
|
|
3515
3516
|
message?: string;
|
|
3516
3517
|
status?: string;
|
|
3517
3518
|
};
|
|
3519
|
+
/**
|
|
3520
|
+
* ListPlansResponse schema
|
|
3521
|
+
*/
|
|
3522
|
+
type ListPlansResponse = {
|
|
3523
|
+
data?: Array<{
|
|
3524
|
+
id?: string;
|
|
3525
|
+
monthly_cost_cents?: number;
|
|
3526
|
+
monthly_cost_usd?: string;
|
|
3527
|
+
name?: string;
|
|
3528
|
+
ram_mb?: number;
|
|
3529
|
+
storage_mb?: number;
|
|
3530
|
+
tier?: string;
|
|
3531
|
+
vcpu?: number;
|
|
3532
|
+
}>;
|
|
3533
|
+
status?: string;
|
|
3534
|
+
};
|
|
3518
3535
|
/**
|
|
3519
3536
|
* ListRepositoriesResponse schema
|
|
3520
3537
|
*/
|
|
@@ -3676,6 +3693,7 @@ type ListServersResponse = {
|
|
|
3676
3693
|
created_at?: string;
|
|
3677
3694
|
domain?: string;
|
|
3678
3695
|
error?: string;
|
|
3696
|
+
guest_ip?: string;
|
|
3679
3697
|
id?: string;
|
|
3680
3698
|
lxd_container_name?: string;
|
|
3681
3699
|
organization?: {
|
|
@@ -3687,6 +3705,7 @@ type ListServersResponse = {
|
|
|
3687
3705
|
slug?: string;
|
|
3688
3706
|
};
|
|
3689
3707
|
organization_id?: string;
|
|
3708
|
+
server_id?: string;
|
|
3690
3709
|
ssh_key?: {
|
|
3691
3710
|
auth_method?: string;
|
|
3692
3711
|
created_at?: string;
|
|
@@ -4078,6 +4097,44 @@ type LogsResponse = {
|
|
|
4078
4097
|
message?: string;
|
|
4079
4098
|
status?: string;
|
|
4080
4099
|
};
|
|
4100
|
+
/**
|
|
4101
|
+
* MachineActionResponse schema
|
|
4102
|
+
*/
|
|
4103
|
+
type MachineActionResponse = {
|
|
4104
|
+
message?: string;
|
|
4105
|
+
status?: string;
|
|
4106
|
+
};
|
|
4107
|
+
/**
|
|
4108
|
+
* MachineBillingResponse schema
|
|
4109
|
+
*/
|
|
4110
|
+
type MachineBillingResponse = {
|
|
4111
|
+
data?: {
|
|
4112
|
+
billing_status?: string;
|
|
4113
|
+
days_remaining?: number;
|
|
4114
|
+
grace_deadline?: string;
|
|
4115
|
+
has_machine?: boolean;
|
|
4116
|
+
message?: string;
|
|
4117
|
+
monthly_cost_cents?: number;
|
|
4118
|
+
monthly_cost_usd?: string;
|
|
4119
|
+
period_end?: string;
|
|
4120
|
+
plan_name?: string;
|
|
4121
|
+
plan_tier?: string;
|
|
4122
|
+
};
|
|
4123
|
+
status?: string;
|
|
4124
|
+
};
|
|
4125
|
+
/**
|
|
4126
|
+
* MachineStateResponse schema
|
|
4127
|
+
*/
|
|
4128
|
+
type MachineStateResponse = {
|
|
4129
|
+
data?: {
|
|
4130
|
+
active?: boolean;
|
|
4131
|
+
pid?: number;
|
|
4132
|
+
state?: string;
|
|
4133
|
+
uptime_sec?: number;
|
|
4134
|
+
};
|
|
4135
|
+
message?: string;
|
|
4136
|
+
status?: string;
|
|
4137
|
+
};
|
|
4081
4138
|
/**
|
|
4082
4139
|
* MarkOnboardingCompleteResponse schema
|
|
4083
4140
|
*/
|
|
@@ -4508,6 +4565,33 @@ type SshConnectionStatusResponse = {
|
|
|
4508
4565
|
message?: string;
|
|
4509
4566
|
status?: string;
|
|
4510
4567
|
};
|
|
4568
|
+
/**
|
|
4569
|
+
* SelectPlanRequest schema
|
|
4570
|
+
*/
|
|
4571
|
+
type SelectPlanRequest = {
|
|
4572
|
+
plan_tier: string;
|
|
4573
|
+
};
|
|
4574
|
+
/**
|
|
4575
|
+
* SelectPlanResponse schema
|
|
4576
|
+
*/
|
|
4577
|
+
type SelectPlanResponse = {
|
|
4578
|
+
balance_after_cents?: number;
|
|
4579
|
+
charged_cents?: number;
|
|
4580
|
+
error?: string;
|
|
4581
|
+
message?: string;
|
|
4582
|
+
period_end?: string;
|
|
4583
|
+
plan?: {
|
|
4584
|
+
id?: string;
|
|
4585
|
+
monthly_cost_cents?: number;
|
|
4586
|
+
monthly_cost_usd?: string;
|
|
4587
|
+
name?: string;
|
|
4588
|
+
ram_mb?: number;
|
|
4589
|
+
storage_mb?: number;
|
|
4590
|
+
tier?: string;
|
|
4591
|
+
vcpu?: number;
|
|
4592
|
+
};
|
|
4593
|
+
status?: string;
|
|
4594
|
+
};
|
|
4511
4595
|
/**
|
|
4512
4596
|
* SendNotificationRequest schema
|
|
4513
4597
|
*/
|
|
@@ -7731,6 +7815,34 @@ type PauseLiveDeployServiceResponses = {
|
|
|
7731
7815
|
200: PauseResponse;
|
|
7732
7816
|
};
|
|
7733
7817
|
type PauseLiveDeployServiceResponse = PauseLiveDeployServiceResponses[keyof PauseLiveDeployServiceResponses];
|
|
7818
|
+
type GetMachineBillingStatusData = {
|
|
7819
|
+
body?: never;
|
|
7820
|
+
headers?: {
|
|
7821
|
+
Accept?: string;
|
|
7822
|
+
};
|
|
7823
|
+
path?: never;
|
|
7824
|
+
query?: never;
|
|
7825
|
+
url: '/api/v1/machine/billing';
|
|
7826
|
+
};
|
|
7827
|
+
type GetMachineBillingStatusErrors = {
|
|
7828
|
+
/**
|
|
7829
|
+
* Bad Request _(validation or deserialization error)_
|
|
7830
|
+
*/
|
|
7831
|
+
400: ErrorEnvelope;
|
|
7832
|
+
/**
|
|
7833
|
+
* Internal Server Error _(panics)_
|
|
7834
|
+
*/
|
|
7835
|
+
500: ErrorEnvelope;
|
|
7836
|
+
default: unknown;
|
|
7837
|
+
};
|
|
7838
|
+
type GetMachineBillingStatusError = GetMachineBillingStatusErrors[keyof GetMachineBillingStatusErrors];
|
|
7839
|
+
type GetMachineBillingStatusResponses = {
|
|
7840
|
+
/**
|
|
7841
|
+
* OK
|
|
7842
|
+
*/
|
|
7843
|
+
200: MachineBillingResponse;
|
|
7844
|
+
};
|
|
7845
|
+
type GetMachineBillingStatusResponse = GetMachineBillingStatusResponses[keyof GetMachineBillingStatusResponses];
|
|
7734
7846
|
type ExecuteACommandOnTheHostMachineData = {
|
|
7735
7847
|
/**
|
|
7736
7848
|
* Request body for types.HostExecRequest
|
|
@@ -7762,6 +7874,149 @@ type ExecuteACommandOnTheHostMachineResponses = {
|
|
|
7762
7874
|
200: HostExecResponse;
|
|
7763
7875
|
};
|
|
7764
7876
|
type ExecuteACommandOnTheHostMachineResponse = ExecuteACommandOnTheHostMachineResponses[keyof ExecuteACommandOnTheHostMachineResponses];
|
|
7877
|
+
type PauseMachineData = {
|
|
7878
|
+
body?: never;
|
|
7879
|
+
headers?: {
|
|
7880
|
+
Accept?: string;
|
|
7881
|
+
};
|
|
7882
|
+
path?: never;
|
|
7883
|
+
query?: never;
|
|
7884
|
+
url: '/api/v1/machine/pause';
|
|
7885
|
+
};
|
|
7886
|
+
type PauseMachineErrors = {
|
|
7887
|
+
/**
|
|
7888
|
+
* Bad Request _(validation or deserialization error)_
|
|
7889
|
+
*/
|
|
7890
|
+
400: ErrorEnvelope;
|
|
7891
|
+
/**
|
|
7892
|
+
* Internal Server Error _(panics)_
|
|
7893
|
+
*/
|
|
7894
|
+
500: ErrorEnvelope;
|
|
7895
|
+
default: unknown;
|
|
7896
|
+
};
|
|
7897
|
+
type PauseMachineError = PauseMachineErrors[keyof PauseMachineErrors];
|
|
7898
|
+
type PauseMachineResponses = {
|
|
7899
|
+
/**
|
|
7900
|
+
* OK
|
|
7901
|
+
*/
|
|
7902
|
+
200: MachineActionResponse;
|
|
7903
|
+
};
|
|
7904
|
+
type PauseMachineResponse = PauseMachineResponses[keyof PauseMachineResponses];
|
|
7905
|
+
type SelectAMachinePlanData = {
|
|
7906
|
+
/**
|
|
7907
|
+
* Request body for types.SelectPlanRequest
|
|
7908
|
+
*/
|
|
7909
|
+
body: SelectPlanRequest;
|
|
7910
|
+
headers?: {
|
|
7911
|
+
Accept?: string;
|
|
7912
|
+
};
|
|
7913
|
+
path?: never;
|
|
7914
|
+
query?: never;
|
|
7915
|
+
url: '/api/v1/machine/plan/select';
|
|
7916
|
+
};
|
|
7917
|
+
type SelectAMachinePlanErrors = {
|
|
7918
|
+
/**
|
|
7919
|
+
* Bad Request _(validation or deserialization error)_
|
|
7920
|
+
*/
|
|
7921
|
+
400: ErrorEnvelope;
|
|
7922
|
+
/**
|
|
7923
|
+
* Internal Server Error _(panics)_
|
|
7924
|
+
*/
|
|
7925
|
+
500: ErrorEnvelope;
|
|
7926
|
+
default: unknown;
|
|
7927
|
+
};
|
|
7928
|
+
type SelectAMachinePlanError = SelectAMachinePlanErrors[keyof SelectAMachinePlanErrors];
|
|
7929
|
+
type SelectAMachinePlanResponses = {
|
|
7930
|
+
/**
|
|
7931
|
+
* OK
|
|
7932
|
+
*/
|
|
7933
|
+
200: SelectPlanResponse;
|
|
7934
|
+
};
|
|
7935
|
+
type SelectAMachinePlanResponse = SelectAMachinePlanResponses[keyof SelectAMachinePlanResponses];
|
|
7936
|
+
type ListAvailableMachinePlansData = {
|
|
7937
|
+
body?: never;
|
|
7938
|
+
headers?: {
|
|
7939
|
+
Accept?: string;
|
|
7940
|
+
};
|
|
7941
|
+
path?: never;
|
|
7942
|
+
query?: never;
|
|
7943
|
+
url: '/api/v1/machine/plans';
|
|
7944
|
+
};
|
|
7945
|
+
type ListAvailableMachinePlansErrors = {
|
|
7946
|
+
/**
|
|
7947
|
+
* Bad Request _(validation or deserialization error)_
|
|
7948
|
+
*/
|
|
7949
|
+
400: ErrorEnvelope;
|
|
7950
|
+
/**
|
|
7951
|
+
* Internal Server Error _(panics)_
|
|
7952
|
+
*/
|
|
7953
|
+
500: ErrorEnvelope;
|
|
7954
|
+
default: unknown;
|
|
7955
|
+
};
|
|
7956
|
+
type ListAvailableMachinePlansError = ListAvailableMachinePlansErrors[keyof ListAvailableMachinePlansErrors];
|
|
7957
|
+
type ListAvailableMachinePlansResponses = {
|
|
7958
|
+
/**
|
|
7959
|
+
* OK
|
|
7960
|
+
*/
|
|
7961
|
+
200: ListPlansResponse;
|
|
7962
|
+
};
|
|
7963
|
+
type ListAvailableMachinePlansResponse = ListAvailableMachinePlansResponses[keyof ListAvailableMachinePlansResponses];
|
|
7964
|
+
type RestartMachineData = {
|
|
7965
|
+
body?: never;
|
|
7966
|
+
headers?: {
|
|
7967
|
+
Accept?: string;
|
|
7968
|
+
};
|
|
7969
|
+
path?: never;
|
|
7970
|
+
query?: never;
|
|
7971
|
+
url: '/api/v1/machine/restart';
|
|
7972
|
+
};
|
|
7973
|
+
type RestartMachineErrors = {
|
|
7974
|
+
/**
|
|
7975
|
+
* Bad Request _(validation or deserialization error)_
|
|
7976
|
+
*/
|
|
7977
|
+
400: ErrorEnvelope;
|
|
7978
|
+
/**
|
|
7979
|
+
* Internal Server Error _(panics)_
|
|
7980
|
+
*/
|
|
7981
|
+
500: ErrorEnvelope;
|
|
7982
|
+
default: unknown;
|
|
7983
|
+
};
|
|
7984
|
+
type RestartMachineError = RestartMachineErrors[keyof RestartMachineErrors];
|
|
7985
|
+
type RestartMachineResponses = {
|
|
7986
|
+
/**
|
|
7987
|
+
* OK
|
|
7988
|
+
*/
|
|
7989
|
+
200: MachineActionResponse;
|
|
7990
|
+
};
|
|
7991
|
+
type RestartMachineResponse = RestartMachineResponses[keyof RestartMachineResponses];
|
|
7992
|
+
type ResumeMachineData = {
|
|
7993
|
+
body?: never;
|
|
7994
|
+
headers?: {
|
|
7995
|
+
Accept?: string;
|
|
7996
|
+
};
|
|
7997
|
+
path?: never;
|
|
7998
|
+
query?: never;
|
|
7999
|
+
url: '/api/v1/machine/resume';
|
|
8000
|
+
};
|
|
8001
|
+
type ResumeMachineErrors = {
|
|
8002
|
+
/**
|
|
8003
|
+
* Bad Request _(validation or deserialization error)_
|
|
8004
|
+
*/
|
|
8005
|
+
400: ErrorEnvelope;
|
|
8006
|
+
/**
|
|
8007
|
+
* Internal Server Error _(panics)_
|
|
8008
|
+
*/
|
|
8009
|
+
500: ErrorEnvelope;
|
|
8010
|
+
default: unknown;
|
|
8011
|
+
};
|
|
8012
|
+
type ResumeMachineError = ResumeMachineErrors[keyof ResumeMachineErrors];
|
|
8013
|
+
type ResumeMachineResponses = {
|
|
8014
|
+
/**
|
|
8015
|
+
* OK
|
|
8016
|
+
*/
|
|
8017
|
+
200: MachineActionResponse;
|
|
8018
|
+
};
|
|
8019
|
+
type ResumeMachineResponse = ResumeMachineResponses[keyof ResumeMachineResponses];
|
|
7765
8020
|
type GetMachineSystemStatsData = {
|
|
7766
8021
|
body?: never;
|
|
7767
8022
|
headers?: {
|
|
@@ -7790,6 +8045,34 @@ type GetMachineSystemStatsResponses = {
|
|
|
7790
8045
|
200: SystemStatsResponse;
|
|
7791
8046
|
};
|
|
7792
8047
|
type GetMachineSystemStatsResponse = GetMachineSystemStatsResponses[keyof GetMachineSystemStatsResponses];
|
|
8048
|
+
type GetMachineLifecycleStatusData = {
|
|
8049
|
+
body?: never;
|
|
8050
|
+
headers?: {
|
|
8051
|
+
Accept?: string;
|
|
8052
|
+
};
|
|
8053
|
+
path?: never;
|
|
8054
|
+
query?: never;
|
|
8055
|
+
url: '/api/v1/machine/status';
|
|
8056
|
+
};
|
|
8057
|
+
type GetMachineLifecycleStatusErrors = {
|
|
8058
|
+
/**
|
|
8059
|
+
* Bad Request _(validation or deserialization error)_
|
|
8060
|
+
*/
|
|
8061
|
+
400: ErrorEnvelope;
|
|
8062
|
+
/**
|
|
8063
|
+
* Internal Server Error _(panics)_
|
|
8064
|
+
*/
|
|
8065
|
+
500: ErrorEnvelope;
|
|
8066
|
+
default: unknown;
|
|
8067
|
+
};
|
|
8068
|
+
type GetMachineLifecycleStatusError = GetMachineLifecycleStatusErrors[keyof GetMachineLifecycleStatusErrors];
|
|
8069
|
+
type GetMachineLifecycleStatusResponses = {
|
|
8070
|
+
/**
|
|
8071
|
+
* OK
|
|
8072
|
+
*/
|
|
8073
|
+
200: MachineStateResponse;
|
|
8074
|
+
};
|
|
8075
|
+
type GetMachineLifecycleStatusResponse = GetMachineLifecycleStatusResponses[keyof GetMachineLifecycleStatusResponses];
|
|
7793
8076
|
type GetNotificationPreferencesData = {
|
|
7794
8077
|
body?: never;
|
|
7795
8078
|
headers?: {
|
|
@@ -9543,6 +9826,16 @@ declare const toggleHealthCheck: <ThrowOnError extends boolean = false>(options:
|
|
|
9543
9826
|
* Side effects: May mutate server state.
|
|
9544
9827
|
*/
|
|
9545
9828
|
declare const pauseLiveDeployService: <ThrowOnError extends boolean = false>(options: Options<PauseLiveDeployServiceData, ThrowOnError>) => RequestResult<PauseLiveDeployServiceResponses, PauseLiveDeployServiceErrors, ThrowOnError, "fields">;
|
|
9829
|
+
/**
|
|
9830
|
+
* Get machine billing status
|
|
9831
|
+
*
|
|
9832
|
+
* Get machine billing status.
|
|
9833
|
+
*
|
|
9834
|
+
* Auth: Required (bearer token).
|
|
9835
|
+
* Scope: Organization-scoped in authenticated context.
|
|
9836
|
+
* Side effects: Read-only operation.
|
|
9837
|
+
*/
|
|
9838
|
+
declare const getMachineBillingStatus: <ThrowOnError extends boolean = false>(options?: Options<GetMachineBillingStatusData, ThrowOnError>) => RequestResult<GetMachineBillingStatusResponses, GetMachineBillingStatusErrors, ThrowOnError, "fields">;
|
|
9546
9839
|
/**
|
|
9547
9840
|
* Execute a command on the host machine
|
|
9548
9841
|
*
|
|
@@ -9553,6 +9846,56 @@ declare const pauseLiveDeployService: <ThrowOnError extends boolean = false>(opt
|
|
|
9553
9846
|
* Side effects: May mutate server state.
|
|
9554
9847
|
*/
|
|
9555
9848
|
declare const executeACommandOnTheHostMachine: <ThrowOnError extends boolean = false>(options: Options<ExecuteACommandOnTheHostMachineData, ThrowOnError>) => RequestResult<ExecuteACommandOnTheHostMachineResponses, ExecuteACommandOnTheHostMachineErrors, ThrowOnError, "fields">;
|
|
9849
|
+
/**
|
|
9850
|
+
* Pause machine
|
|
9851
|
+
*
|
|
9852
|
+
* Pause machine.
|
|
9853
|
+
*
|
|
9854
|
+
* Auth: Required (bearer token).
|
|
9855
|
+
* Scope: Organization-scoped in authenticated context.
|
|
9856
|
+
* Side effects: May mutate server state.
|
|
9857
|
+
*/
|
|
9858
|
+
declare const pauseMachine: <ThrowOnError extends boolean = false>(options?: Options<PauseMachineData, ThrowOnError>) => RequestResult<PauseMachineResponses, PauseMachineErrors, ThrowOnError, "fields">;
|
|
9859
|
+
/**
|
|
9860
|
+
* Select a machine plan
|
|
9861
|
+
*
|
|
9862
|
+
* Select a machine plan.
|
|
9863
|
+
*
|
|
9864
|
+
* Auth: Required (bearer token).
|
|
9865
|
+
* Scope: Organization-scoped in authenticated context.
|
|
9866
|
+
* Side effects: May mutate server state.
|
|
9867
|
+
*/
|
|
9868
|
+
declare const selectAMachinePlan: <ThrowOnError extends boolean = false>(options: Options<SelectAMachinePlanData, ThrowOnError>) => RequestResult<SelectAMachinePlanResponses, SelectAMachinePlanErrors, ThrowOnError, "fields">;
|
|
9869
|
+
/**
|
|
9870
|
+
* List available machine plans
|
|
9871
|
+
*
|
|
9872
|
+
* List available machine plans.
|
|
9873
|
+
*
|
|
9874
|
+
* Auth: Required (bearer token).
|
|
9875
|
+
* Scope: Organization-scoped in authenticated context.
|
|
9876
|
+
* Side effects: Read-only operation.
|
|
9877
|
+
*/
|
|
9878
|
+
declare const listAvailableMachinePlans: <ThrowOnError extends boolean = false>(options?: Options<ListAvailableMachinePlansData, ThrowOnError>) => RequestResult<ListAvailableMachinePlansResponses, ListAvailableMachinePlansErrors, ThrowOnError, "fields">;
|
|
9879
|
+
/**
|
|
9880
|
+
* Restart machine
|
|
9881
|
+
*
|
|
9882
|
+
* Restart machine.
|
|
9883
|
+
*
|
|
9884
|
+
* Auth: Required (bearer token).
|
|
9885
|
+
* Scope: Organization-scoped in authenticated context.
|
|
9886
|
+
* Side effects: May mutate server state.
|
|
9887
|
+
*/
|
|
9888
|
+
declare const restartMachine: <ThrowOnError extends boolean = false>(options?: Options<RestartMachineData, ThrowOnError>) => RequestResult<RestartMachineResponses, RestartMachineErrors, ThrowOnError, "fields">;
|
|
9889
|
+
/**
|
|
9890
|
+
* Resume machine
|
|
9891
|
+
*
|
|
9892
|
+
* Resume machine.
|
|
9893
|
+
*
|
|
9894
|
+
* Auth: Required (bearer token).
|
|
9895
|
+
* Scope: Organization-scoped in authenticated context.
|
|
9896
|
+
* Side effects: May mutate server state.
|
|
9897
|
+
*/
|
|
9898
|
+
declare const resumeMachine: <ThrowOnError extends boolean = false>(options?: Options<ResumeMachineData, ThrowOnError>) => RequestResult<ResumeMachineResponses, ResumeMachineErrors, ThrowOnError, "fields">;
|
|
9556
9899
|
/**
|
|
9557
9900
|
* Get machine system stats
|
|
9558
9901
|
*
|
|
@@ -9563,6 +9906,16 @@ declare const executeACommandOnTheHostMachine: <ThrowOnError extends boolean = f
|
|
|
9563
9906
|
* Side effects: Read-only operation.
|
|
9564
9907
|
*/
|
|
9565
9908
|
declare const getMachineSystemStats: <ThrowOnError extends boolean = false>(options?: Options<GetMachineSystemStatsData, ThrowOnError>) => RequestResult<GetMachineSystemStatsResponses, GetMachineSystemStatsErrors, ThrowOnError, "fields">;
|
|
9909
|
+
/**
|
|
9910
|
+
* Get machine lifecycle status
|
|
9911
|
+
*
|
|
9912
|
+
* Get machine lifecycle status.
|
|
9913
|
+
*
|
|
9914
|
+
* Auth: Required (bearer token).
|
|
9915
|
+
* Scope: Organization-scoped in authenticated context.
|
|
9916
|
+
* Side effects: Read-only operation.
|
|
9917
|
+
*/
|
|
9918
|
+
declare const getMachineLifecycleStatus: <ThrowOnError extends boolean = false>(options?: Options<GetMachineLifecycleStatusData, ThrowOnError>) => RequestResult<GetMachineLifecycleStatusResponses, GetMachineLifecycleStatusErrors, ThrowOnError, "fields">;
|
|
9566
9919
|
/**
|
|
9567
9920
|
* Get notification preferences
|
|
9568
9921
|
*
|
|
@@ -11653,6 +12006,40 @@ declare const toggleHealthCheckMutation: (options?: Partial<Options<ToggleHealth
|
|
|
11653
12006
|
* Side effects: May mutate server state.
|
|
11654
12007
|
*/
|
|
11655
12008
|
declare const pauseLiveDeployServiceMutation: (options?: Partial<Options<PauseLiveDeployServiceData>>) => UseMutationOptions<PauseLiveDeployServiceResponse, PauseLiveDeployServiceError, Options<PauseLiveDeployServiceData>>;
|
|
12009
|
+
declare const getMachineBillingStatusQueryKey: (options?: Options<GetMachineBillingStatusData>) => [Pick<Options<GetMachineBillingStatusData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
12010
|
+
_id: string;
|
|
12011
|
+
_infinite?: boolean;
|
|
12012
|
+
tags?: ReadonlyArray<string>;
|
|
12013
|
+
}];
|
|
12014
|
+
/**
|
|
12015
|
+
* Get machine billing status
|
|
12016
|
+
*
|
|
12017
|
+
* Get machine billing status.
|
|
12018
|
+
*
|
|
12019
|
+
* Auth: Required (bearer token).
|
|
12020
|
+
* Scope: Organization-scoped in authenticated context.
|
|
12021
|
+
* Side effects: Read-only operation.
|
|
12022
|
+
*/
|
|
12023
|
+
declare const getMachineBillingStatusOptions: (options?: Options<GetMachineBillingStatusData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<MachineBillingResponse, unknown, MachineBillingResponse, [Pick<Options<GetMachineBillingStatusData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
12024
|
+
_id: string;
|
|
12025
|
+
_infinite?: boolean;
|
|
12026
|
+
tags?: ReadonlyArray<string>;
|
|
12027
|
+
}]>, "queryFn"> & {
|
|
12028
|
+
queryFn?: _tanstack_query_core.QueryFunction<MachineBillingResponse, [Pick<Options<GetMachineBillingStatusData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
12029
|
+
_id: string;
|
|
12030
|
+
_infinite?: boolean;
|
|
12031
|
+
tags?: ReadonlyArray<string>;
|
|
12032
|
+
}], never> | undefined;
|
|
12033
|
+
} & {
|
|
12034
|
+
queryKey: [Pick<Options<GetMachineBillingStatusData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
12035
|
+
_id: string;
|
|
12036
|
+
_infinite?: boolean;
|
|
12037
|
+
tags?: ReadonlyArray<string>;
|
|
12038
|
+
}] & {
|
|
12039
|
+
[dataTagSymbol]: MachineBillingResponse;
|
|
12040
|
+
[dataTagErrorSymbol]: unknown;
|
|
12041
|
+
};
|
|
12042
|
+
};
|
|
11656
12043
|
/**
|
|
11657
12044
|
* Execute a command on the host machine
|
|
11658
12045
|
*
|
|
@@ -11663,6 +12050,80 @@ declare const pauseLiveDeployServiceMutation: (options?: Partial<Options<PauseLi
|
|
|
11663
12050
|
* Side effects: May mutate server state.
|
|
11664
12051
|
*/
|
|
11665
12052
|
declare const executeACommandOnTheHostMachineMutation: (options?: Partial<Options<ExecuteACommandOnTheHostMachineData>>) => UseMutationOptions<ExecuteACommandOnTheHostMachineResponse, ExecuteACommandOnTheHostMachineError, Options<ExecuteACommandOnTheHostMachineData>>;
|
|
12053
|
+
/**
|
|
12054
|
+
* Pause machine
|
|
12055
|
+
*
|
|
12056
|
+
* Pause machine.
|
|
12057
|
+
*
|
|
12058
|
+
* Auth: Required (bearer token).
|
|
12059
|
+
* Scope: Organization-scoped in authenticated context.
|
|
12060
|
+
* Side effects: May mutate server state.
|
|
12061
|
+
*/
|
|
12062
|
+
declare const pauseMachineMutation: (options?: Partial<Options<PauseMachineData>>) => UseMutationOptions<PauseMachineResponse, PauseMachineError, Options<PauseMachineData>>;
|
|
12063
|
+
/**
|
|
12064
|
+
* Select a machine plan
|
|
12065
|
+
*
|
|
12066
|
+
* Select a machine plan.
|
|
12067
|
+
*
|
|
12068
|
+
* Auth: Required (bearer token).
|
|
12069
|
+
* Scope: Organization-scoped in authenticated context.
|
|
12070
|
+
* Side effects: May mutate server state.
|
|
12071
|
+
*/
|
|
12072
|
+
declare const selectAMachinePlanMutation: (options?: Partial<Options<SelectAMachinePlanData>>) => UseMutationOptions<SelectAMachinePlanResponse, SelectAMachinePlanError, Options<SelectAMachinePlanData>>;
|
|
12073
|
+
declare const listAvailableMachinePlansQueryKey: (options?: Options<ListAvailableMachinePlansData>) => [Pick<Options<ListAvailableMachinePlansData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
12074
|
+
_id: string;
|
|
12075
|
+
_infinite?: boolean;
|
|
12076
|
+
tags?: ReadonlyArray<string>;
|
|
12077
|
+
}];
|
|
12078
|
+
/**
|
|
12079
|
+
* List available machine plans
|
|
12080
|
+
*
|
|
12081
|
+
* List available machine plans.
|
|
12082
|
+
*
|
|
12083
|
+
* Auth: Required (bearer token).
|
|
12084
|
+
* Scope: Organization-scoped in authenticated context.
|
|
12085
|
+
* Side effects: Read-only operation.
|
|
12086
|
+
*/
|
|
12087
|
+
declare const listAvailableMachinePlansOptions: (options?: Options<ListAvailableMachinePlansData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<ListPlansResponse, unknown, ListPlansResponse, [Pick<Options<ListAvailableMachinePlansData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
12088
|
+
_id: string;
|
|
12089
|
+
_infinite?: boolean;
|
|
12090
|
+
tags?: ReadonlyArray<string>;
|
|
12091
|
+
}]>, "queryFn"> & {
|
|
12092
|
+
queryFn?: _tanstack_query_core.QueryFunction<ListPlansResponse, [Pick<Options<ListAvailableMachinePlansData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
12093
|
+
_id: string;
|
|
12094
|
+
_infinite?: boolean;
|
|
12095
|
+
tags?: ReadonlyArray<string>;
|
|
12096
|
+
}], never> | undefined;
|
|
12097
|
+
} & {
|
|
12098
|
+
queryKey: [Pick<Options<ListAvailableMachinePlansData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
12099
|
+
_id: string;
|
|
12100
|
+
_infinite?: boolean;
|
|
12101
|
+
tags?: ReadonlyArray<string>;
|
|
12102
|
+
}] & {
|
|
12103
|
+
[dataTagSymbol]: ListPlansResponse;
|
|
12104
|
+
[dataTagErrorSymbol]: unknown;
|
|
12105
|
+
};
|
|
12106
|
+
};
|
|
12107
|
+
/**
|
|
12108
|
+
* Restart machine
|
|
12109
|
+
*
|
|
12110
|
+
* Restart machine.
|
|
12111
|
+
*
|
|
12112
|
+
* Auth: Required (bearer token).
|
|
12113
|
+
* Scope: Organization-scoped in authenticated context.
|
|
12114
|
+
* Side effects: May mutate server state.
|
|
12115
|
+
*/
|
|
12116
|
+
declare const restartMachineMutation: (options?: Partial<Options<RestartMachineData>>) => UseMutationOptions<RestartMachineResponse, RestartMachineError, Options<RestartMachineData>>;
|
|
12117
|
+
/**
|
|
12118
|
+
* Resume machine
|
|
12119
|
+
*
|
|
12120
|
+
* Resume machine.
|
|
12121
|
+
*
|
|
12122
|
+
* Auth: Required (bearer token).
|
|
12123
|
+
* Scope: Organization-scoped in authenticated context.
|
|
12124
|
+
* Side effects: May mutate server state.
|
|
12125
|
+
*/
|
|
12126
|
+
declare const resumeMachineMutation: (options?: Partial<Options<ResumeMachineData>>) => UseMutationOptions<ResumeMachineResponse, ResumeMachineError, Options<ResumeMachineData>>;
|
|
11666
12127
|
declare const getMachineSystemStatsQueryKey: (options?: Options<GetMachineSystemStatsData>) => [Pick<Options<GetMachineSystemStatsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
11667
12128
|
_id: string;
|
|
11668
12129
|
_infinite?: boolean;
|
|
@@ -11697,6 +12158,40 @@ declare const getMachineSystemStatsOptions: (options?: Options<GetMachineSystemS
|
|
|
11697
12158
|
[dataTagErrorSymbol]: unknown;
|
|
11698
12159
|
};
|
|
11699
12160
|
};
|
|
12161
|
+
declare const getMachineLifecycleStatusQueryKey: (options?: Options<GetMachineLifecycleStatusData>) => [Pick<Options<GetMachineLifecycleStatusData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
12162
|
+
_id: string;
|
|
12163
|
+
_infinite?: boolean;
|
|
12164
|
+
tags?: ReadonlyArray<string>;
|
|
12165
|
+
}];
|
|
12166
|
+
/**
|
|
12167
|
+
* Get machine lifecycle status
|
|
12168
|
+
*
|
|
12169
|
+
* Get machine lifecycle status.
|
|
12170
|
+
*
|
|
12171
|
+
* Auth: Required (bearer token).
|
|
12172
|
+
* Scope: Organization-scoped in authenticated context.
|
|
12173
|
+
* Side effects: Read-only operation.
|
|
12174
|
+
*/
|
|
12175
|
+
declare const getMachineLifecycleStatusOptions: (options?: Options<GetMachineLifecycleStatusData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<MachineStateResponse, unknown, MachineStateResponse, [Pick<Options<GetMachineLifecycleStatusData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
12176
|
+
_id: string;
|
|
12177
|
+
_infinite?: boolean;
|
|
12178
|
+
tags?: ReadonlyArray<string>;
|
|
12179
|
+
}]>, "queryFn"> & {
|
|
12180
|
+
queryFn?: _tanstack_query_core.QueryFunction<MachineStateResponse, [Pick<Options<GetMachineLifecycleStatusData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
12181
|
+
_id: string;
|
|
12182
|
+
_infinite?: boolean;
|
|
12183
|
+
tags?: ReadonlyArray<string>;
|
|
12184
|
+
}], never> | undefined;
|
|
12185
|
+
} & {
|
|
12186
|
+
queryKey: [Pick<Options<GetMachineLifecycleStatusData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
12187
|
+
_id: string;
|
|
12188
|
+
_infinite?: boolean;
|
|
12189
|
+
tags?: ReadonlyArray<string>;
|
|
12190
|
+
}] & {
|
|
12191
|
+
[dataTagSymbol]: MachineStateResponse;
|
|
12192
|
+
[dataTagErrorSymbol]: unknown;
|
|
12193
|
+
};
|
|
12194
|
+
};
|
|
11700
12195
|
declare const getNotificationPreferencesQueryKey: (options?: Options<GetNotificationPreferencesData>) => [Pick<Options<GetNotificationPreferencesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
11701
12196
|
_id: string;
|
|
11702
12197
|
_infinite?: boolean;
|
|
@@ -12703,6 +13198,7 @@ declare const zCreateGithubConnectorRequest: z.ZodObject<{
|
|
|
12703
13198
|
app_id: z.ZodOptional<z.ZodString>;
|
|
12704
13199
|
client_id: z.ZodOptional<z.ZodString>;
|
|
12705
13200
|
client_secret: z.ZodOptional<z.ZodString>;
|
|
13201
|
+
installation_id: z.ZodOptional<z.ZodString>;
|
|
12706
13202
|
pem: z.ZodOptional<z.ZodString>;
|
|
12707
13203
|
slug: z.ZodOptional<z.ZodString>;
|
|
12708
13204
|
webhook_secret: z.ZodOptional<z.ZodString>;
|
|
@@ -12710,6 +13206,7 @@ declare const zCreateGithubConnectorRequest: z.ZodObject<{
|
|
|
12710
13206
|
app_id?: string | undefined;
|
|
12711
13207
|
client_id?: string | undefined;
|
|
12712
13208
|
client_secret?: string | undefined;
|
|
13209
|
+
installation_id?: string | undefined;
|
|
12713
13210
|
pem?: string | undefined;
|
|
12714
13211
|
slug?: string | undefined;
|
|
12715
13212
|
webhook_secret?: string | undefined;
|
|
@@ -12717,6 +13214,7 @@ declare const zCreateGithubConnectorRequest: z.ZodObject<{
|
|
|
12717
13214
|
app_id?: string | undefined;
|
|
12718
13215
|
client_id?: string | undefined;
|
|
12719
13216
|
client_secret?: string | undefined;
|
|
13217
|
+
installation_id?: string | undefined;
|
|
12720
13218
|
pem?: string | undefined;
|
|
12721
13219
|
slug?: string | undefined;
|
|
12722
13220
|
webhook_secret?: string | undefined;
|
|
@@ -14653,6 +15151,7 @@ declare const zListConnectorsResponse: z.ZodObject<{
|
|
|
14653
15151
|
app_id?: string | undefined;
|
|
14654
15152
|
client_id?: string | undefined;
|
|
14655
15153
|
client_secret?: string | undefined;
|
|
15154
|
+
installation_id?: string | undefined;
|
|
14656
15155
|
pem?: string | undefined;
|
|
14657
15156
|
slug?: string | undefined;
|
|
14658
15157
|
webhook_secret?: string | undefined;
|
|
@@ -14660,12 +15159,12 @@ declare const zListConnectorsResponse: z.ZodObject<{
|
|
|
14660
15159
|
deleted_at?: string | undefined;
|
|
14661
15160
|
updated_at?: string | undefined;
|
|
14662
15161
|
user_id?: string | undefined;
|
|
14663
|
-
installation_id?: string | undefined;
|
|
14664
15162
|
}, {
|
|
14665
15163
|
id?: string | undefined;
|
|
14666
15164
|
app_id?: string | undefined;
|
|
14667
15165
|
client_id?: string | undefined;
|
|
14668
15166
|
client_secret?: string | undefined;
|
|
15167
|
+
installation_id?: string | undefined;
|
|
14669
15168
|
pem?: string | undefined;
|
|
14670
15169
|
slug?: string | undefined;
|
|
14671
15170
|
webhook_secret?: string | undefined;
|
|
@@ -14673,7 +15172,6 @@ declare const zListConnectorsResponse: z.ZodObject<{
|
|
|
14673
15172
|
deleted_at?: string | undefined;
|
|
14674
15173
|
updated_at?: string | undefined;
|
|
14675
15174
|
user_id?: string | undefined;
|
|
14676
|
-
installation_id?: string | undefined;
|
|
14677
15175
|
}>, "many">>;
|
|
14678
15176
|
message: z.ZodOptional<z.ZodString>;
|
|
14679
15177
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -14683,6 +15181,7 @@ declare const zListConnectorsResponse: z.ZodObject<{
|
|
|
14683
15181
|
app_id?: string | undefined;
|
|
14684
15182
|
client_id?: string | undefined;
|
|
14685
15183
|
client_secret?: string | undefined;
|
|
15184
|
+
installation_id?: string | undefined;
|
|
14686
15185
|
pem?: string | undefined;
|
|
14687
15186
|
slug?: string | undefined;
|
|
14688
15187
|
webhook_secret?: string | undefined;
|
|
@@ -14690,7 +15189,6 @@ declare const zListConnectorsResponse: z.ZodObject<{
|
|
|
14690
15189
|
deleted_at?: string | undefined;
|
|
14691
15190
|
updated_at?: string | undefined;
|
|
14692
15191
|
user_id?: string | undefined;
|
|
14693
|
-
installation_id?: string | undefined;
|
|
14694
15192
|
}[] | undefined;
|
|
14695
15193
|
status?: string | undefined;
|
|
14696
15194
|
message?: string | undefined;
|
|
@@ -14700,6 +15198,7 @@ declare const zListConnectorsResponse: z.ZodObject<{
|
|
|
14700
15198
|
app_id?: string | undefined;
|
|
14701
15199
|
client_id?: string | undefined;
|
|
14702
15200
|
client_secret?: string | undefined;
|
|
15201
|
+
installation_id?: string | undefined;
|
|
14703
15202
|
pem?: string | undefined;
|
|
14704
15203
|
slug?: string | undefined;
|
|
14705
15204
|
webhook_secret?: string | undefined;
|
|
@@ -14707,7 +15206,6 @@ declare const zListConnectorsResponse: z.ZodObject<{
|
|
|
14707
15206
|
deleted_at?: string | undefined;
|
|
14708
15207
|
updated_at?: string | undefined;
|
|
14709
15208
|
user_id?: string | undefined;
|
|
14710
|
-
installation_id?: string | undefined;
|
|
14711
15209
|
}[] | undefined;
|
|
14712
15210
|
status?: string | undefined;
|
|
14713
15211
|
message?: string | undefined;
|
|
@@ -16920,6 +17418,64 @@ declare const zListLogsResponse: z.ZodObject<{
|
|
|
16920
17418
|
status?: string | undefined;
|
|
16921
17419
|
message?: string | undefined;
|
|
16922
17420
|
}>;
|
|
17421
|
+
/**
|
|
17422
|
+
* ListPlansResponse schema
|
|
17423
|
+
*/
|
|
17424
|
+
declare const zListPlansResponse: z.ZodObject<{
|
|
17425
|
+
data: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17426
|
+
id: z.ZodOptional<z.ZodString>;
|
|
17427
|
+
monthly_cost_cents: z.ZodOptional<z.ZodNumber>;
|
|
17428
|
+
monthly_cost_usd: z.ZodOptional<z.ZodString>;
|
|
17429
|
+
name: z.ZodOptional<z.ZodString>;
|
|
17430
|
+
ram_mb: z.ZodOptional<z.ZodNumber>;
|
|
17431
|
+
storage_mb: z.ZodOptional<z.ZodNumber>;
|
|
17432
|
+
tier: z.ZodOptional<z.ZodString>;
|
|
17433
|
+
vcpu: z.ZodOptional<z.ZodNumber>;
|
|
17434
|
+
}, "strip", z.ZodTypeAny, {
|
|
17435
|
+
name?: string | undefined;
|
|
17436
|
+
id?: string | undefined;
|
|
17437
|
+
monthly_cost_cents?: number | undefined;
|
|
17438
|
+
monthly_cost_usd?: string | undefined;
|
|
17439
|
+
ram_mb?: number | undefined;
|
|
17440
|
+
storage_mb?: number | undefined;
|
|
17441
|
+
tier?: string | undefined;
|
|
17442
|
+
vcpu?: number | undefined;
|
|
17443
|
+
}, {
|
|
17444
|
+
name?: string | undefined;
|
|
17445
|
+
id?: string | undefined;
|
|
17446
|
+
monthly_cost_cents?: number | undefined;
|
|
17447
|
+
monthly_cost_usd?: string | undefined;
|
|
17448
|
+
ram_mb?: number | undefined;
|
|
17449
|
+
storage_mb?: number | undefined;
|
|
17450
|
+
tier?: string | undefined;
|
|
17451
|
+
vcpu?: number | undefined;
|
|
17452
|
+
}>, "many">>;
|
|
17453
|
+
status: z.ZodOptional<z.ZodString>;
|
|
17454
|
+
}, "strip", z.ZodTypeAny, {
|
|
17455
|
+
data?: {
|
|
17456
|
+
name?: string | undefined;
|
|
17457
|
+
id?: string | undefined;
|
|
17458
|
+
monthly_cost_cents?: number | undefined;
|
|
17459
|
+
monthly_cost_usd?: string | undefined;
|
|
17460
|
+
ram_mb?: number | undefined;
|
|
17461
|
+
storage_mb?: number | undefined;
|
|
17462
|
+
tier?: string | undefined;
|
|
17463
|
+
vcpu?: number | undefined;
|
|
17464
|
+
}[] | undefined;
|
|
17465
|
+
status?: string | undefined;
|
|
17466
|
+
}, {
|
|
17467
|
+
data?: {
|
|
17468
|
+
name?: string | undefined;
|
|
17469
|
+
id?: string | undefined;
|
|
17470
|
+
monthly_cost_cents?: number | undefined;
|
|
17471
|
+
monthly_cost_usd?: string | undefined;
|
|
17472
|
+
ram_mb?: number | undefined;
|
|
17473
|
+
storage_mb?: number | undefined;
|
|
17474
|
+
tier?: string | undefined;
|
|
17475
|
+
vcpu?: number | undefined;
|
|
17476
|
+
}[] | undefined;
|
|
17477
|
+
status?: string | undefined;
|
|
17478
|
+
}>;
|
|
16923
17479
|
/**
|
|
16924
17480
|
* ListRepositoriesResponse schema
|
|
16925
17481
|
*/
|
|
@@ -17687,122 +18243,244 @@ declare const zListRepositoriesResponse: z.ZodObject<{
|
|
|
17687
18243
|
message?: string | undefined;
|
|
17688
18244
|
}, {
|
|
17689
18245
|
data?: {
|
|
17690
|
-
page?: number | undefined;
|
|
17691
|
-
page_size?: number | undefined;
|
|
17692
|
-
total_count?: number | undefined;
|
|
17693
|
-
repositories?: {
|
|
17694
|
-
name?: string | undefined;
|
|
17695
|
-
url?: string | undefined;
|
|
17696
|
-
id?: number | undefined;
|
|
17697
|
-
created_at?: string | undefined;
|
|
17698
|
-
updated_at?: string | undefined;
|
|
17699
|
-
description?: string | undefined;
|
|
17700
|
-
permissions?: {
|
|
17701
|
-
push?: boolean | undefined;
|
|
17702
|
-
admin?: boolean | undefined;
|
|
17703
|
-
maintain?: boolean | undefined;
|
|
17704
|
-
pull?: boolean | undefined;
|
|
17705
|
-
triage?: boolean | undefined;
|
|
17706
|
-
} | undefined;
|
|
17707
|
-
size?: number | undefined;
|
|
17708
|
-
allow_forking?: boolean | undefined;
|
|
17709
|
-
archive_url?: string | undefined;
|
|
17710
|
-
archived?: boolean | undefined;
|
|
17711
|
-
assignees_url?: string | undefined;
|
|
17712
|
-
blobs_url?: string | undefined;
|
|
17713
|
-
branches_url?: string | undefined;
|
|
17714
|
-
clone_url?: string | undefined;
|
|
17715
|
-
collaborators_url?: string | undefined;
|
|
17716
|
-
comments_url?: string | undefined;
|
|
17717
|
-
commits_url?: string | undefined;
|
|
17718
|
-
compare_url?: string | undefined;
|
|
17719
|
-
contents_url?: string | undefined;
|
|
17720
|
-
contributors_url?: string | undefined;
|
|
17721
|
-
default_branch?: string | undefined;
|
|
17722
|
-
deployments_url?: string | undefined;
|
|
17723
|
-
disabled?: boolean | undefined;
|
|
17724
|
-
downloads_url?: string | undefined;
|
|
17725
|
-
events_url?: string | undefined;
|
|
17726
|
-
fork?: boolean | undefined;
|
|
17727
|
-
forks?: number | undefined;
|
|
17728
|
-
forks_count?: number | undefined;
|
|
17729
|
-
forks_url?: string | undefined;
|
|
17730
|
-
full_name?: string | undefined;
|
|
17731
|
-
git_commits_url?: string | undefined;
|
|
17732
|
-
git_refs_url?: string | undefined;
|
|
17733
|
-
git_tags_url?: string | undefined;
|
|
17734
|
-
git_url?: string | undefined;
|
|
17735
|
-
has_discussions?: boolean | undefined;
|
|
17736
|
-
has_downloads?: boolean | undefined;
|
|
17737
|
-
has_issues?: boolean | undefined;
|
|
17738
|
-
has_pages?: boolean | undefined;
|
|
17739
|
-
has_projects?: boolean | undefined;
|
|
17740
|
-
has_wiki?: boolean | undefined;
|
|
17741
|
-
homepage?: string | undefined;
|
|
17742
|
-
hooks_url?: string | undefined;
|
|
17743
|
-
html_url?: string | undefined;
|
|
17744
|
-
is_template?: boolean | undefined;
|
|
17745
|
-
issue_comment_url?: string | undefined;
|
|
17746
|
-
issue_events_url?: string | undefined;
|
|
17747
|
-
issues_url?: string | undefined;
|
|
17748
|
-
keys_url?: string | undefined;
|
|
17749
|
-
labels_url?: string | undefined;
|
|
17750
|
-
language?: string | undefined;
|
|
17751
|
-
languages_url?: string | undefined;
|
|
17752
|
-
node_id?: string | undefined;
|
|
17753
|
-
license?: {
|
|
17754
|
-
name?: string | undefined;
|
|
17755
|
-
key?: string | undefined;
|
|
17756
|
-
url?: string | undefined;
|
|
17757
|
-
node_id?: string | undefined;
|
|
17758
|
-
spdx_id?: string | undefined;
|
|
17759
|
-
} | undefined;
|
|
17760
|
-
merges_url?: string | undefined;
|
|
17761
|
-
milestones_url?: string | undefined;
|
|
17762
|
-
mirror_url?: string | undefined;
|
|
17763
|
-
notifications_url?: string | undefined;
|
|
17764
|
-
open_issues?: number | undefined;
|
|
17765
|
-
open_issues_count?: number | undefined;
|
|
17766
|
-
owner?: {
|
|
17767
|
-
url?: string | undefined;
|
|
17768
|
-
id?: number | undefined;
|
|
17769
|
-
type?: string | undefined;
|
|
17770
|
-
events_url?: string | undefined;
|
|
17771
|
-
html_url?: string | undefined;
|
|
17772
|
-
node_id?: string | undefined;
|
|
17773
|
-
avatar_url?: string | undefined;
|
|
17774
|
-
followers_url?: string | undefined;
|
|
17775
|
-
following_url?: string | undefined;
|
|
17776
|
-
gists_url?: string | undefined;
|
|
17777
|
-
gravatar_id?: string | undefined;
|
|
17778
|
-
login?: string | undefined;
|
|
17779
|
-
organizations_url?: string | undefined;
|
|
17780
|
-
received_events_url?: string | undefined;
|
|
17781
|
-
repos_url?: string | undefined;
|
|
17782
|
-
site_admin?: boolean | undefined;
|
|
17783
|
-
starred_url?: string | undefined;
|
|
17784
|
-
subscriptions_url?: string | undefined;
|
|
17785
|
-
} | undefined;
|
|
17786
|
-
private?: boolean | undefined;
|
|
17787
|
-
pulls_url?: string | undefined;
|
|
17788
|
-
pushed_at?: string | undefined;
|
|
17789
|
-
releases_url?: string | undefined;
|
|
17790
|
-
ssh_url?: string | undefined;
|
|
17791
|
-
stargazers_count?: number | undefined;
|
|
17792
|
-
stargazers_url?: string | undefined;
|
|
17793
|
-
statuses_url?: string | undefined;
|
|
17794
|
-
subscribers_url?: string | undefined;
|
|
17795
|
-
subscription_url?: string | undefined;
|
|
17796
|
-
svn_url?: string | undefined;
|
|
17797
|
-
tags_url?: string | undefined;
|
|
17798
|
-
teams_url?: string | undefined;
|
|
17799
|
-
topics?: string[] | undefined;
|
|
17800
|
-
trees_url?: string | undefined;
|
|
17801
|
-
visibility?: string | undefined;
|
|
17802
|
-
watchers?: number | undefined;
|
|
17803
|
-
watchers_count?: number | undefined;
|
|
17804
|
-
web_commit_signoff_required?: boolean | undefined;
|
|
17805
|
-
}[] | undefined;
|
|
18246
|
+
page?: number | undefined;
|
|
18247
|
+
page_size?: number | undefined;
|
|
18248
|
+
total_count?: number | undefined;
|
|
18249
|
+
repositories?: {
|
|
18250
|
+
name?: string | undefined;
|
|
18251
|
+
url?: string | undefined;
|
|
18252
|
+
id?: number | undefined;
|
|
18253
|
+
created_at?: string | undefined;
|
|
18254
|
+
updated_at?: string | undefined;
|
|
18255
|
+
description?: string | undefined;
|
|
18256
|
+
permissions?: {
|
|
18257
|
+
push?: boolean | undefined;
|
|
18258
|
+
admin?: boolean | undefined;
|
|
18259
|
+
maintain?: boolean | undefined;
|
|
18260
|
+
pull?: boolean | undefined;
|
|
18261
|
+
triage?: boolean | undefined;
|
|
18262
|
+
} | undefined;
|
|
18263
|
+
size?: number | undefined;
|
|
18264
|
+
allow_forking?: boolean | undefined;
|
|
18265
|
+
archive_url?: string | undefined;
|
|
18266
|
+
archived?: boolean | undefined;
|
|
18267
|
+
assignees_url?: string | undefined;
|
|
18268
|
+
blobs_url?: string | undefined;
|
|
18269
|
+
branches_url?: string | undefined;
|
|
18270
|
+
clone_url?: string | undefined;
|
|
18271
|
+
collaborators_url?: string | undefined;
|
|
18272
|
+
comments_url?: string | undefined;
|
|
18273
|
+
commits_url?: string | undefined;
|
|
18274
|
+
compare_url?: string | undefined;
|
|
18275
|
+
contents_url?: string | undefined;
|
|
18276
|
+
contributors_url?: string | undefined;
|
|
18277
|
+
default_branch?: string | undefined;
|
|
18278
|
+
deployments_url?: string | undefined;
|
|
18279
|
+
disabled?: boolean | undefined;
|
|
18280
|
+
downloads_url?: string | undefined;
|
|
18281
|
+
events_url?: string | undefined;
|
|
18282
|
+
fork?: boolean | undefined;
|
|
18283
|
+
forks?: number | undefined;
|
|
18284
|
+
forks_count?: number | undefined;
|
|
18285
|
+
forks_url?: string | undefined;
|
|
18286
|
+
full_name?: string | undefined;
|
|
18287
|
+
git_commits_url?: string | undefined;
|
|
18288
|
+
git_refs_url?: string | undefined;
|
|
18289
|
+
git_tags_url?: string | undefined;
|
|
18290
|
+
git_url?: string | undefined;
|
|
18291
|
+
has_discussions?: boolean | undefined;
|
|
18292
|
+
has_downloads?: boolean | undefined;
|
|
18293
|
+
has_issues?: boolean | undefined;
|
|
18294
|
+
has_pages?: boolean | undefined;
|
|
18295
|
+
has_projects?: boolean | undefined;
|
|
18296
|
+
has_wiki?: boolean | undefined;
|
|
18297
|
+
homepage?: string | undefined;
|
|
18298
|
+
hooks_url?: string | undefined;
|
|
18299
|
+
html_url?: string | undefined;
|
|
18300
|
+
is_template?: boolean | undefined;
|
|
18301
|
+
issue_comment_url?: string | undefined;
|
|
18302
|
+
issue_events_url?: string | undefined;
|
|
18303
|
+
issues_url?: string | undefined;
|
|
18304
|
+
keys_url?: string | undefined;
|
|
18305
|
+
labels_url?: string | undefined;
|
|
18306
|
+
language?: string | undefined;
|
|
18307
|
+
languages_url?: string | undefined;
|
|
18308
|
+
node_id?: string | undefined;
|
|
18309
|
+
license?: {
|
|
18310
|
+
name?: string | undefined;
|
|
18311
|
+
key?: string | undefined;
|
|
18312
|
+
url?: string | undefined;
|
|
18313
|
+
node_id?: string | undefined;
|
|
18314
|
+
spdx_id?: string | undefined;
|
|
18315
|
+
} | undefined;
|
|
18316
|
+
merges_url?: string | undefined;
|
|
18317
|
+
milestones_url?: string | undefined;
|
|
18318
|
+
mirror_url?: string | undefined;
|
|
18319
|
+
notifications_url?: string | undefined;
|
|
18320
|
+
open_issues?: number | undefined;
|
|
18321
|
+
open_issues_count?: number | undefined;
|
|
18322
|
+
owner?: {
|
|
18323
|
+
url?: string | undefined;
|
|
18324
|
+
id?: number | undefined;
|
|
18325
|
+
type?: string | undefined;
|
|
18326
|
+
events_url?: string | undefined;
|
|
18327
|
+
html_url?: string | undefined;
|
|
18328
|
+
node_id?: string | undefined;
|
|
18329
|
+
avatar_url?: string | undefined;
|
|
18330
|
+
followers_url?: string | undefined;
|
|
18331
|
+
following_url?: string | undefined;
|
|
18332
|
+
gists_url?: string | undefined;
|
|
18333
|
+
gravatar_id?: string | undefined;
|
|
18334
|
+
login?: string | undefined;
|
|
18335
|
+
organizations_url?: string | undefined;
|
|
18336
|
+
received_events_url?: string | undefined;
|
|
18337
|
+
repos_url?: string | undefined;
|
|
18338
|
+
site_admin?: boolean | undefined;
|
|
18339
|
+
starred_url?: string | undefined;
|
|
18340
|
+
subscriptions_url?: string | undefined;
|
|
18341
|
+
} | undefined;
|
|
18342
|
+
private?: boolean | undefined;
|
|
18343
|
+
pulls_url?: string | undefined;
|
|
18344
|
+
pushed_at?: string | undefined;
|
|
18345
|
+
releases_url?: string | undefined;
|
|
18346
|
+
ssh_url?: string | undefined;
|
|
18347
|
+
stargazers_count?: number | undefined;
|
|
18348
|
+
stargazers_url?: string | undefined;
|
|
18349
|
+
statuses_url?: string | undefined;
|
|
18350
|
+
subscribers_url?: string | undefined;
|
|
18351
|
+
subscription_url?: string | undefined;
|
|
18352
|
+
svn_url?: string | undefined;
|
|
18353
|
+
tags_url?: string | undefined;
|
|
18354
|
+
teams_url?: string | undefined;
|
|
18355
|
+
topics?: string[] | undefined;
|
|
18356
|
+
trees_url?: string | undefined;
|
|
18357
|
+
visibility?: string | undefined;
|
|
18358
|
+
watchers?: number | undefined;
|
|
18359
|
+
watchers_count?: number | undefined;
|
|
18360
|
+
web_commit_signoff_required?: boolean | undefined;
|
|
18361
|
+
}[] | undefined;
|
|
18362
|
+
} | undefined;
|
|
18363
|
+
status?: string | undefined;
|
|
18364
|
+
message?: string | undefined;
|
|
18365
|
+
}>;
|
|
18366
|
+
/**
|
|
18367
|
+
* MachineActionResponse schema
|
|
18368
|
+
*/
|
|
18369
|
+
declare const zMachineActionResponse: z.ZodObject<{
|
|
18370
|
+
message: z.ZodOptional<z.ZodString>;
|
|
18371
|
+
status: z.ZodOptional<z.ZodString>;
|
|
18372
|
+
}, "strip", z.ZodTypeAny, {
|
|
18373
|
+
status?: string | undefined;
|
|
18374
|
+
message?: string | undefined;
|
|
18375
|
+
}, {
|
|
18376
|
+
status?: string | undefined;
|
|
18377
|
+
message?: string | undefined;
|
|
18378
|
+
}>;
|
|
18379
|
+
/**
|
|
18380
|
+
* MachineBillingResponse schema
|
|
18381
|
+
*/
|
|
18382
|
+
declare const zMachineBillingResponse: z.ZodObject<{
|
|
18383
|
+
data: z.ZodOptional<z.ZodObject<{
|
|
18384
|
+
billing_status: z.ZodOptional<z.ZodString>;
|
|
18385
|
+
days_remaining: z.ZodOptional<z.ZodNumber>;
|
|
18386
|
+
grace_deadline: z.ZodOptional<z.ZodString>;
|
|
18387
|
+
has_machine: z.ZodOptional<z.ZodBoolean>;
|
|
18388
|
+
message: z.ZodOptional<z.ZodString>;
|
|
18389
|
+
monthly_cost_cents: z.ZodOptional<z.ZodNumber>;
|
|
18390
|
+
monthly_cost_usd: z.ZodOptional<z.ZodString>;
|
|
18391
|
+
period_end: z.ZodOptional<z.ZodString>;
|
|
18392
|
+
plan_name: z.ZodOptional<z.ZodString>;
|
|
18393
|
+
plan_tier: z.ZodOptional<z.ZodString>;
|
|
18394
|
+
}, "strip", z.ZodTypeAny, {
|
|
18395
|
+
message?: string | undefined;
|
|
18396
|
+
monthly_cost_cents?: number | undefined;
|
|
18397
|
+
monthly_cost_usd?: string | undefined;
|
|
18398
|
+
billing_status?: string | undefined;
|
|
18399
|
+
days_remaining?: number | undefined;
|
|
18400
|
+
grace_deadline?: string | undefined;
|
|
18401
|
+
has_machine?: boolean | undefined;
|
|
18402
|
+
period_end?: string | undefined;
|
|
18403
|
+
plan_name?: string | undefined;
|
|
18404
|
+
plan_tier?: string | undefined;
|
|
18405
|
+
}, {
|
|
18406
|
+
message?: string | undefined;
|
|
18407
|
+
monthly_cost_cents?: number | undefined;
|
|
18408
|
+
monthly_cost_usd?: string | undefined;
|
|
18409
|
+
billing_status?: string | undefined;
|
|
18410
|
+
days_remaining?: number | undefined;
|
|
18411
|
+
grace_deadline?: string | undefined;
|
|
18412
|
+
has_machine?: boolean | undefined;
|
|
18413
|
+
period_end?: string | undefined;
|
|
18414
|
+
plan_name?: string | undefined;
|
|
18415
|
+
plan_tier?: string | undefined;
|
|
18416
|
+
}>>;
|
|
18417
|
+
status: z.ZodOptional<z.ZodString>;
|
|
18418
|
+
}, "strip", z.ZodTypeAny, {
|
|
18419
|
+
data?: {
|
|
18420
|
+
message?: string | undefined;
|
|
18421
|
+
monthly_cost_cents?: number | undefined;
|
|
18422
|
+
monthly_cost_usd?: string | undefined;
|
|
18423
|
+
billing_status?: string | undefined;
|
|
18424
|
+
days_remaining?: number | undefined;
|
|
18425
|
+
grace_deadline?: string | undefined;
|
|
18426
|
+
has_machine?: boolean | undefined;
|
|
18427
|
+
period_end?: string | undefined;
|
|
18428
|
+
plan_name?: string | undefined;
|
|
18429
|
+
plan_tier?: string | undefined;
|
|
18430
|
+
} | undefined;
|
|
18431
|
+
status?: string | undefined;
|
|
18432
|
+
}, {
|
|
18433
|
+
data?: {
|
|
18434
|
+
message?: string | undefined;
|
|
18435
|
+
monthly_cost_cents?: number | undefined;
|
|
18436
|
+
monthly_cost_usd?: string | undefined;
|
|
18437
|
+
billing_status?: string | undefined;
|
|
18438
|
+
days_remaining?: number | undefined;
|
|
18439
|
+
grace_deadline?: string | undefined;
|
|
18440
|
+
has_machine?: boolean | undefined;
|
|
18441
|
+
period_end?: string | undefined;
|
|
18442
|
+
plan_name?: string | undefined;
|
|
18443
|
+
plan_tier?: string | undefined;
|
|
18444
|
+
} | undefined;
|
|
18445
|
+
status?: string | undefined;
|
|
18446
|
+
}>;
|
|
18447
|
+
/**
|
|
18448
|
+
* MachineStateResponse schema
|
|
18449
|
+
*/
|
|
18450
|
+
declare const zMachineStateResponse: z.ZodObject<{
|
|
18451
|
+
data: z.ZodOptional<z.ZodObject<{
|
|
18452
|
+
active: z.ZodOptional<z.ZodBoolean>;
|
|
18453
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
18454
|
+
state: z.ZodOptional<z.ZodString>;
|
|
18455
|
+
uptime_sec: z.ZodOptional<z.ZodBigInt>;
|
|
18456
|
+
}, "strip", z.ZodTypeAny, {
|
|
18457
|
+
state?: string | undefined;
|
|
18458
|
+
active?: boolean | undefined;
|
|
18459
|
+
pid?: number | undefined;
|
|
18460
|
+
uptime_sec?: bigint | undefined;
|
|
18461
|
+
}, {
|
|
18462
|
+
state?: string | undefined;
|
|
18463
|
+
active?: boolean | undefined;
|
|
18464
|
+
pid?: number | undefined;
|
|
18465
|
+
uptime_sec?: bigint | undefined;
|
|
18466
|
+
}>>;
|
|
18467
|
+
message: z.ZodOptional<z.ZodString>;
|
|
18468
|
+
status: z.ZodOptional<z.ZodString>;
|
|
18469
|
+
}, "strip", z.ZodTypeAny, {
|
|
18470
|
+
data?: {
|
|
18471
|
+
state?: string | undefined;
|
|
18472
|
+
active?: boolean | undefined;
|
|
18473
|
+
pid?: number | undefined;
|
|
18474
|
+
uptime_sec?: bigint | undefined;
|
|
18475
|
+
} | undefined;
|
|
18476
|
+
status?: string | undefined;
|
|
18477
|
+
message?: string | undefined;
|
|
18478
|
+
}, {
|
|
18479
|
+
data?: {
|
|
18480
|
+
state?: string | undefined;
|
|
18481
|
+
active?: boolean | undefined;
|
|
18482
|
+
pid?: number | undefined;
|
|
18483
|
+
uptime_sec?: bigint | undefined;
|
|
17806
18484
|
} | undefined;
|
|
17807
18485
|
status?: string | undefined;
|
|
17808
18486
|
message?: string | undefined;
|
|
@@ -18518,6 +19196,89 @@ declare const zSshConnectionStatusResponse: z.ZodObject<{
|
|
|
18518
19196
|
connected?: boolean | undefined;
|
|
18519
19197
|
is_configured?: boolean | undefined;
|
|
18520
19198
|
}>;
|
|
19199
|
+
/**
|
|
19200
|
+
* SelectPlanRequest schema
|
|
19201
|
+
*/
|
|
19202
|
+
declare const zSelectPlanRequest: z.ZodObject<{
|
|
19203
|
+
plan_tier: z.ZodString;
|
|
19204
|
+
}, "strip", z.ZodTypeAny, {
|
|
19205
|
+
plan_tier: string;
|
|
19206
|
+
}, {
|
|
19207
|
+
plan_tier: string;
|
|
19208
|
+
}>;
|
|
19209
|
+
/**
|
|
19210
|
+
* SelectPlanResponse schema
|
|
19211
|
+
*/
|
|
19212
|
+
declare const zSelectPlanResponse: z.ZodObject<{
|
|
19213
|
+
balance_after_cents: z.ZodOptional<z.ZodNumber>;
|
|
19214
|
+
charged_cents: z.ZodOptional<z.ZodNumber>;
|
|
19215
|
+
error: z.ZodOptional<z.ZodString>;
|
|
19216
|
+
message: z.ZodOptional<z.ZodString>;
|
|
19217
|
+
period_end: z.ZodOptional<z.ZodString>;
|
|
19218
|
+
plan: z.ZodOptional<z.ZodObject<{
|
|
19219
|
+
id: z.ZodOptional<z.ZodString>;
|
|
19220
|
+
monthly_cost_cents: z.ZodOptional<z.ZodNumber>;
|
|
19221
|
+
monthly_cost_usd: z.ZodOptional<z.ZodString>;
|
|
19222
|
+
name: z.ZodOptional<z.ZodString>;
|
|
19223
|
+
ram_mb: z.ZodOptional<z.ZodNumber>;
|
|
19224
|
+
storage_mb: z.ZodOptional<z.ZodNumber>;
|
|
19225
|
+
tier: z.ZodOptional<z.ZodString>;
|
|
19226
|
+
vcpu: z.ZodOptional<z.ZodNumber>;
|
|
19227
|
+
}, "strip", z.ZodTypeAny, {
|
|
19228
|
+
name?: string | undefined;
|
|
19229
|
+
id?: string | undefined;
|
|
19230
|
+
monthly_cost_cents?: number | undefined;
|
|
19231
|
+
monthly_cost_usd?: string | undefined;
|
|
19232
|
+
ram_mb?: number | undefined;
|
|
19233
|
+
storage_mb?: number | undefined;
|
|
19234
|
+
tier?: string | undefined;
|
|
19235
|
+
vcpu?: number | undefined;
|
|
19236
|
+
}, {
|
|
19237
|
+
name?: string | undefined;
|
|
19238
|
+
id?: string | undefined;
|
|
19239
|
+
monthly_cost_cents?: number | undefined;
|
|
19240
|
+
monthly_cost_usd?: string | undefined;
|
|
19241
|
+
ram_mb?: number | undefined;
|
|
19242
|
+
storage_mb?: number | undefined;
|
|
19243
|
+
tier?: string | undefined;
|
|
19244
|
+
vcpu?: number | undefined;
|
|
19245
|
+
}>>;
|
|
19246
|
+
status: z.ZodOptional<z.ZodString>;
|
|
19247
|
+
}, "strip", z.ZodTypeAny, {
|
|
19248
|
+
error?: string | undefined;
|
|
19249
|
+
status?: string | undefined;
|
|
19250
|
+
message?: string | undefined;
|
|
19251
|
+
period_end?: string | undefined;
|
|
19252
|
+
balance_after_cents?: number | undefined;
|
|
19253
|
+
charged_cents?: number | undefined;
|
|
19254
|
+
plan?: {
|
|
19255
|
+
name?: string | undefined;
|
|
19256
|
+
id?: string | undefined;
|
|
19257
|
+
monthly_cost_cents?: number | undefined;
|
|
19258
|
+
monthly_cost_usd?: string | undefined;
|
|
19259
|
+
ram_mb?: number | undefined;
|
|
19260
|
+
storage_mb?: number | undefined;
|
|
19261
|
+
tier?: string | undefined;
|
|
19262
|
+
vcpu?: number | undefined;
|
|
19263
|
+
} | undefined;
|
|
19264
|
+
}, {
|
|
19265
|
+
error?: string | undefined;
|
|
19266
|
+
status?: string | undefined;
|
|
19267
|
+
message?: string | undefined;
|
|
19268
|
+
period_end?: string | undefined;
|
|
19269
|
+
balance_after_cents?: number | undefined;
|
|
19270
|
+
charged_cents?: number | undefined;
|
|
19271
|
+
plan?: {
|
|
19272
|
+
name?: string | undefined;
|
|
19273
|
+
id?: string | undefined;
|
|
19274
|
+
monthly_cost_cents?: number | undefined;
|
|
19275
|
+
monthly_cost_usd?: string | undefined;
|
|
19276
|
+
ram_mb?: number | undefined;
|
|
19277
|
+
storage_mb?: number | undefined;
|
|
19278
|
+
tier?: string | undefined;
|
|
19279
|
+
vcpu?: number | undefined;
|
|
19280
|
+
} | undefined;
|
|
19281
|
+
}>;
|
|
18521
19282
|
/**
|
|
18522
19283
|
* SendNotificationRequest schema
|
|
18523
19284
|
*/
|
|
@@ -19560,6 +20321,7 @@ declare const zListServersResponse: z.ZodObject<{
|
|
|
19560
20321
|
created_at: z.ZodOptional<z.ZodString>;
|
|
19561
20322
|
domain: z.ZodOptional<z.ZodString>;
|
|
19562
20323
|
error: z.ZodOptional<z.ZodString>;
|
|
20324
|
+
guest_ip: z.ZodOptional<z.ZodString>;
|
|
19563
20325
|
id: z.ZodOptional<z.ZodString>;
|
|
19564
20326
|
lxd_container_name: z.ZodOptional<z.ZodString>;
|
|
19565
20327
|
organization: z.ZodOptional<z.ZodObject<{
|
|
@@ -19585,6 +20347,7 @@ declare const zListServersResponse: z.ZodObject<{
|
|
|
19585
20347
|
logo?: string | undefined;
|
|
19586
20348
|
}>>;
|
|
19587
20349
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
20350
|
+
server_id: z.ZodOptional<z.ZodString>;
|
|
19588
20351
|
ssh_key: z.ZodOptional<z.ZodObject<{
|
|
19589
20352
|
auth_method: z.ZodOptional<z.ZodString>;
|
|
19590
20353
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -19932,7 +20695,9 @@ declare const zListServersResponse: z.ZodObject<{
|
|
|
19932
20695
|
} | undefined;
|
|
19933
20696
|
subdomain?: string | undefined;
|
|
19934
20697
|
step?: string | undefined;
|
|
20698
|
+
guest_ip?: string | undefined;
|
|
19935
20699
|
lxd_container_name?: string | undefined;
|
|
20700
|
+
server_id?: string | undefined;
|
|
19936
20701
|
ssh_key?: {
|
|
19937
20702
|
name?: string | undefined;
|
|
19938
20703
|
id?: string | undefined;
|
|
@@ -20022,7 +20787,9 @@ declare const zListServersResponse: z.ZodObject<{
|
|
|
20022
20787
|
} | undefined;
|
|
20023
20788
|
subdomain?: string | undefined;
|
|
20024
20789
|
step?: string | undefined;
|
|
20790
|
+
guest_ip?: string | undefined;
|
|
20025
20791
|
lxd_container_name?: string | undefined;
|
|
20792
|
+
server_id?: string | undefined;
|
|
20026
20793
|
ssh_key?: {
|
|
20027
20794
|
name?: string | undefined;
|
|
20028
20795
|
id?: string | undefined;
|
|
@@ -20144,7 +20911,9 @@ declare const zListServersResponse: z.ZodObject<{
|
|
|
20144
20911
|
} | undefined;
|
|
20145
20912
|
subdomain?: string | undefined;
|
|
20146
20913
|
step?: string | undefined;
|
|
20914
|
+
guest_ip?: string | undefined;
|
|
20147
20915
|
lxd_container_name?: string | undefined;
|
|
20916
|
+
server_id?: string | undefined;
|
|
20148
20917
|
ssh_key?: {
|
|
20149
20918
|
name?: string | undefined;
|
|
20150
20919
|
id?: string | undefined;
|
|
@@ -20262,7 +21031,9 @@ declare const zListServersResponse: z.ZodObject<{
|
|
|
20262
21031
|
} | undefined;
|
|
20263
21032
|
subdomain?: string | undefined;
|
|
20264
21033
|
step?: string | undefined;
|
|
21034
|
+
guest_ip?: string | undefined;
|
|
20265
21035
|
lxd_container_name?: string | undefined;
|
|
21036
|
+
server_id?: string | undefined;
|
|
20266
21037
|
ssh_key?: {
|
|
20267
21038
|
name?: string | undefined;
|
|
20268
21039
|
id?: string | undefined;
|
|
@@ -20394,7 +21165,9 @@ declare const zListServersResponse: z.ZodObject<{
|
|
|
20394
21165
|
} | undefined;
|
|
20395
21166
|
subdomain?: string | undefined;
|
|
20396
21167
|
step?: string | undefined;
|
|
21168
|
+
guest_ip?: string | undefined;
|
|
20397
21169
|
lxd_container_name?: string | undefined;
|
|
21170
|
+
server_id?: string | undefined;
|
|
20398
21171
|
ssh_key?: {
|
|
20399
21172
|
name?: string | undefined;
|
|
20400
21173
|
id?: string | undefined;
|
|
@@ -20522,7 +21295,9 @@ declare const zListServersResponse: z.ZodObject<{
|
|
|
20522
21295
|
} | undefined;
|
|
20523
21296
|
subdomain?: string | undefined;
|
|
20524
21297
|
step?: string | undefined;
|
|
21298
|
+
guest_ip?: string | undefined;
|
|
20525
21299
|
lxd_container_name?: string | undefined;
|
|
21300
|
+
server_id?: string | undefined;
|
|
20526
21301
|
ssh_key?: {
|
|
20527
21302
|
name?: string | undefined;
|
|
20528
21303
|
id?: string | undefined;
|
|
@@ -20654,7 +21429,9 @@ declare const zListServersResponse: z.ZodObject<{
|
|
|
20654
21429
|
} | undefined;
|
|
20655
21430
|
subdomain?: string | undefined;
|
|
20656
21431
|
step?: string | undefined;
|
|
21432
|
+
guest_ip?: string | undefined;
|
|
20657
21433
|
lxd_container_name?: string | undefined;
|
|
21434
|
+
server_id?: string | undefined;
|
|
20658
21435
|
ssh_key?: {
|
|
20659
21436
|
name?: string | undefined;
|
|
20660
21437
|
id?: string | undefined;
|
|
@@ -20786,7 +21563,9 @@ declare const zListServersResponse: z.ZodObject<{
|
|
|
20786
21563
|
} | undefined;
|
|
20787
21564
|
subdomain?: string | undefined;
|
|
20788
21565
|
step?: string | undefined;
|
|
21566
|
+
guest_ip?: string | undefined;
|
|
20789
21567
|
lxd_container_name?: string | undefined;
|
|
21568
|
+
server_id?: string | undefined;
|
|
20790
21569
|
ssh_key?: {
|
|
20791
21570
|
name?: string | undefined;
|
|
20792
21571
|
id?: string | undefined;
|
|
@@ -52973,6 +53752,7 @@ declare const zCreateGitHubConnectorData: z.ZodObject<{
|
|
|
52973
53752
|
app_id: z.ZodOptional<z.ZodString>;
|
|
52974
53753
|
client_id: z.ZodOptional<z.ZodString>;
|
|
52975
53754
|
client_secret: z.ZodOptional<z.ZodString>;
|
|
53755
|
+
installation_id: z.ZodOptional<z.ZodString>;
|
|
52976
53756
|
pem: z.ZodOptional<z.ZodString>;
|
|
52977
53757
|
slug: z.ZodOptional<z.ZodString>;
|
|
52978
53758
|
webhook_secret: z.ZodOptional<z.ZodString>;
|
|
@@ -52980,6 +53760,7 @@ declare const zCreateGitHubConnectorData: z.ZodObject<{
|
|
|
52980
53760
|
app_id?: string | undefined;
|
|
52981
53761
|
client_id?: string | undefined;
|
|
52982
53762
|
client_secret?: string | undefined;
|
|
53763
|
+
installation_id?: string | undefined;
|
|
52983
53764
|
pem?: string | undefined;
|
|
52984
53765
|
slug?: string | undefined;
|
|
52985
53766
|
webhook_secret?: string | undefined;
|
|
@@ -52987,6 +53768,7 @@ declare const zCreateGitHubConnectorData: z.ZodObject<{
|
|
|
52987
53768
|
app_id?: string | undefined;
|
|
52988
53769
|
client_id?: string | undefined;
|
|
52989
53770
|
client_secret?: string | undefined;
|
|
53771
|
+
installation_id?: string | undefined;
|
|
52990
53772
|
pem?: string | undefined;
|
|
52991
53773
|
slug?: string | undefined;
|
|
52992
53774
|
webhook_secret?: string | undefined;
|
|
@@ -53005,6 +53787,7 @@ declare const zCreateGitHubConnectorData: z.ZodObject<{
|
|
|
53005
53787
|
app_id?: string | undefined;
|
|
53006
53788
|
client_id?: string | undefined;
|
|
53007
53789
|
client_secret?: string | undefined;
|
|
53790
|
+
installation_id?: string | undefined;
|
|
53008
53791
|
pem?: string | undefined;
|
|
53009
53792
|
slug?: string | undefined;
|
|
53010
53793
|
webhook_secret?: string | undefined;
|
|
@@ -53019,6 +53802,7 @@ declare const zCreateGitHubConnectorData: z.ZodObject<{
|
|
|
53019
53802
|
app_id?: string | undefined;
|
|
53020
53803
|
client_id?: string | undefined;
|
|
53021
53804
|
client_secret?: string | undefined;
|
|
53805
|
+
installation_id?: string | undefined;
|
|
53022
53806
|
pem?: string | undefined;
|
|
53023
53807
|
slug?: string | undefined;
|
|
53024
53808
|
webhook_secret?: string | undefined;
|
|
@@ -53144,6 +53928,7 @@ declare const zListGitHubConnectorsResponse: z.ZodObject<{
|
|
|
53144
53928
|
app_id?: string | undefined;
|
|
53145
53929
|
client_id?: string | undefined;
|
|
53146
53930
|
client_secret?: string | undefined;
|
|
53931
|
+
installation_id?: string | undefined;
|
|
53147
53932
|
pem?: string | undefined;
|
|
53148
53933
|
slug?: string | undefined;
|
|
53149
53934
|
webhook_secret?: string | undefined;
|
|
@@ -53151,12 +53936,12 @@ declare const zListGitHubConnectorsResponse: z.ZodObject<{
|
|
|
53151
53936
|
deleted_at?: string | undefined;
|
|
53152
53937
|
updated_at?: string | undefined;
|
|
53153
53938
|
user_id?: string | undefined;
|
|
53154
|
-
installation_id?: string | undefined;
|
|
53155
53939
|
}, {
|
|
53156
53940
|
id?: string | undefined;
|
|
53157
53941
|
app_id?: string | undefined;
|
|
53158
53942
|
client_id?: string | undefined;
|
|
53159
53943
|
client_secret?: string | undefined;
|
|
53944
|
+
installation_id?: string | undefined;
|
|
53160
53945
|
pem?: string | undefined;
|
|
53161
53946
|
slug?: string | undefined;
|
|
53162
53947
|
webhook_secret?: string | undefined;
|
|
@@ -53164,7 +53949,6 @@ declare const zListGitHubConnectorsResponse: z.ZodObject<{
|
|
|
53164
53949
|
deleted_at?: string | undefined;
|
|
53165
53950
|
updated_at?: string | undefined;
|
|
53166
53951
|
user_id?: string | undefined;
|
|
53167
|
-
installation_id?: string | undefined;
|
|
53168
53952
|
}>, "many">>;
|
|
53169
53953
|
message: z.ZodOptional<z.ZodString>;
|
|
53170
53954
|
status: z.ZodOptional<z.ZodString>;
|
|
@@ -53174,6 +53958,7 @@ declare const zListGitHubConnectorsResponse: z.ZodObject<{
|
|
|
53174
53958
|
app_id?: string | undefined;
|
|
53175
53959
|
client_id?: string | undefined;
|
|
53176
53960
|
client_secret?: string | undefined;
|
|
53961
|
+
installation_id?: string | undefined;
|
|
53177
53962
|
pem?: string | undefined;
|
|
53178
53963
|
slug?: string | undefined;
|
|
53179
53964
|
webhook_secret?: string | undefined;
|
|
@@ -53181,7 +53966,6 @@ declare const zListGitHubConnectorsResponse: z.ZodObject<{
|
|
|
53181
53966
|
deleted_at?: string | undefined;
|
|
53182
53967
|
updated_at?: string | undefined;
|
|
53183
53968
|
user_id?: string | undefined;
|
|
53184
|
-
installation_id?: string | undefined;
|
|
53185
53969
|
}[] | undefined;
|
|
53186
53970
|
status?: string | undefined;
|
|
53187
53971
|
message?: string | undefined;
|
|
@@ -53191,6 +53975,7 @@ declare const zListGitHubConnectorsResponse: z.ZodObject<{
|
|
|
53191
53975
|
app_id?: string | undefined;
|
|
53192
53976
|
client_id?: string | undefined;
|
|
53193
53977
|
client_secret?: string | undefined;
|
|
53978
|
+
installation_id?: string | undefined;
|
|
53194
53979
|
pem?: string | undefined;
|
|
53195
53980
|
slug?: string | undefined;
|
|
53196
53981
|
webhook_secret?: string | undefined;
|
|
@@ -53198,7 +53983,6 @@ declare const zListGitHubConnectorsResponse: z.ZodObject<{
|
|
|
53198
53983
|
deleted_at?: string | undefined;
|
|
53199
53984
|
updated_at?: string | undefined;
|
|
53200
53985
|
user_id?: string | undefined;
|
|
53201
|
-
installation_id?: string | undefined;
|
|
53202
53986
|
}[] | undefined;
|
|
53203
53987
|
status?: string | undefined;
|
|
53204
53988
|
message?: string | undefined;
|
|
@@ -54770,6 +55554,100 @@ declare const zPauseLiveDeployServiceResponse: z.ZodObject<{
|
|
|
54770
55554
|
status?: string | undefined;
|
|
54771
55555
|
message?: string | undefined;
|
|
54772
55556
|
}>;
|
|
55557
|
+
declare const zGetMachineBillingStatusData: z.ZodObject<{
|
|
55558
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
55559
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
55560
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
55561
|
+
headers: z.ZodOptional<z.ZodObject<{
|
|
55562
|
+
Accept: z.ZodOptional<z.ZodString>;
|
|
55563
|
+
}, "strip", z.ZodTypeAny, {
|
|
55564
|
+
Accept?: string | undefined;
|
|
55565
|
+
}, {
|
|
55566
|
+
Accept?: string | undefined;
|
|
55567
|
+
}>>;
|
|
55568
|
+
}, "strip", z.ZodTypeAny, {
|
|
55569
|
+
query?: undefined;
|
|
55570
|
+
body?: undefined;
|
|
55571
|
+
headers?: {
|
|
55572
|
+
Accept?: string | undefined;
|
|
55573
|
+
} | undefined;
|
|
55574
|
+
path?: undefined;
|
|
55575
|
+
}, {
|
|
55576
|
+
query?: undefined;
|
|
55577
|
+
body?: undefined;
|
|
55578
|
+
headers?: {
|
|
55579
|
+
Accept?: string | undefined;
|
|
55580
|
+
} | undefined;
|
|
55581
|
+
path?: undefined;
|
|
55582
|
+
}>;
|
|
55583
|
+
/**
|
|
55584
|
+
* OK
|
|
55585
|
+
*/
|
|
55586
|
+
declare const zGetMachineBillingStatusResponse: z.ZodObject<{
|
|
55587
|
+
data: z.ZodOptional<z.ZodObject<{
|
|
55588
|
+
billing_status: z.ZodOptional<z.ZodString>;
|
|
55589
|
+
days_remaining: z.ZodOptional<z.ZodNumber>;
|
|
55590
|
+
grace_deadline: z.ZodOptional<z.ZodString>;
|
|
55591
|
+
has_machine: z.ZodOptional<z.ZodBoolean>;
|
|
55592
|
+
message: z.ZodOptional<z.ZodString>;
|
|
55593
|
+
monthly_cost_cents: z.ZodOptional<z.ZodNumber>;
|
|
55594
|
+
monthly_cost_usd: z.ZodOptional<z.ZodString>;
|
|
55595
|
+
period_end: z.ZodOptional<z.ZodString>;
|
|
55596
|
+
plan_name: z.ZodOptional<z.ZodString>;
|
|
55597
|
+
plan_tier: z.ZodOptional<z.ZodString>;
|
|
55598
|
+
}, "strip", z.ZodTypeAny, {
|
|
55599
|
+
message?: string | undefined;
|
|
55600
|
+
monthly_cost_cents?: number | undefined;
|
|
55601
|
+
monthly_cost_usd?: string | undefined;
|
|
55602
|
+
billing_status?: string | undefined;
|
|
55603
|
+
days_remaining?: number | undefined;
|
|
55604
|
+
grace_deadline?: string | undefined;
|
|
55605
|
+
has_machine?: boolean | undefined;
|
|
55606
|
+
period_end?: string | undefined;
|
|
55607
|
+
plan_name?: string | undefined;
|
|
55608
|
+
plan_tier?: string | undefined;
|
|
55609
|
+
}, {
|
|
55610
|
+
message?: string | undefined;
|
|
55611
|
+
monthly_cost_cents?: number | undefined;
|
|
55612
|
+
monthly_cost_usd?: string | undefined;
|
|
55613
|
+
billing_status?: string | undefined;
|
|
55614
|
+
days_remaining?: number | undefined;
|
|
55615
|
+
grace_deadline?: string | undefined;
|
|
55616
|
+
has_machine?: boolean | undefined;
|
|
55617
|
+
period_end?: string | undefined;
|
|
55618
|
+
plan_name?: string | undefined;
|
|
55619
|
+
plan_tier?: string | undefined;
|
|
55620
|
+
}>>;
|
|
55621
|
+
status: z.ZodOptional<z.ZodString>;
|
|
55622
|
+
}, "strip", z.ZodTypeAny, {
|
|
55623
|
+
data?: {
|
|
55624
|
+
message?: string | undefined;
|
|
55625
|
+
monthly_cost_cents?: number | undefined;
|
|
55626
|
+
monthly_cost_usd?: string | undefined;
|
|
55627
|
+
billing_status?: string | undefined;
|
|
55628
|
+
days_remaining?: number | undefined;
|
|
55629
|
+
grace_deadline?: string | undefined;
|
|
55630
|
+
has_machine?: boolean | undefined;
|
|
55631
|
+
period_end?: string | undefined;
|
|
55632
|
+
plan_name?: string | undefined;
|
|
55633
|
+
plan_tier?: string | undefined;
|
|
55634
|
+
} | undefined;
|
|
55635
|
+
status?: string | undefined;
|
|
55636
|
+
}, {
|
|
55637
|
+
data?: {
|
|
55638
|
+
message?: string | undefined;
|
|
55639
|
+
monthly_cost_cents?: number | undefined;
|
|
55640
|
+
monthly_cost_usd?: string | undefined;
|
|
55641
|
+
billing_status?: string | undefined;
|
|
55642
|
+
days_remaining?: number | undefined;
|
|
55643
|
+
grace_deadline?: string | undefined;
|
|
55644
|
+
has_machine?: boolean | undefined;
|
|
55645
|
+
period_end?: string | undefined;
|
|
55646
|
+
plan_name?: string | undefined;
|
|
55647
|
+
plan_tier?: string | undefined;
|
|
55648
|
+
} | undefined;
|
|
55649
|
+
status?: string | undefined;
|
|
55650
|
+
}>;
|
|
54773
55651
|
declare const zExecuteACommandOnTheHostMachineData: z.ZodObject<{
|
|
54774
55652
|
body: z.ZodObject<{
|
|
54775
55653
|
command: z.ZodString;
|
|
@@ -54842,6 +55720,316 @@ declare const zExecuteACommandOnTheHostMachineResponse: z.ZodObject<{
|
|
|
54842
55720
|
status?: string | undefined;
|
|
54843
55721
|
message?: string | undefined;
|
|
54844
55722
|
}>;
|
|
55723
|
+
declare const zPauseMachineData: z.ZodObject<{
|
|
55724
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
55725
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
55726
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
55727
|
+
headers: z.ZodOptional<z.ZodObject<{
|
|
55728
|
+
Accept: z.ZodOptional<z.ZodString>;
|
|
55729
|
+
}, "strip", z.ZodTypeAny, {
|
|
55730
|
+
Accept?: string | undefined;
|
|
55731
|
+
}, {
|
|
55732
|
+
Accept?: string | undefined;
|
|
55733
|
+
}>>;
|
|
55734
|
+
}, "strip", z.ZodTypeAny, {
|
|
55735
|
+
query?: undefined;
|
|
55736
|
+
body?: undefined;
|
|
55737
|
+
headers?: {
|
|
55738
|
+
Accept?: string | undefined;
|
|
55739
|
+
} | undefined;
|
|
55740
|
+
path?: undefined;
|
|
55741
|
+
}, {
|
|
55742
|
+
query?: undefined;
|
|
55743
|
+
body?: undefined;
|
|
55744
|
+
headers?: {
|
|
55745
|
+
Accept?: string | undefined;
|
|
55746
|
+
} | undefined;
|
|
55747
|
+
path?: undefined;
|
|
55748
|
+
}>;
|
|
55749
|
+
/**
|
|
55750
|
+
* OK
|
|
55751
|
+
*/
|
|
55752
|
+
declare const zPauseMachineResponse: z.ZodObject<{
|
|
55753
|
+
message: z.ZodOptional<z.ZodString>;
|
|
55754
|
+
status: z.ZodOptional<z.ZodString>;
|
|
55755
|
+
}, "strip", z.ZodTypeAny, {
|
|
55756
|
+
status?: string | undefined;
|
|
55757
|
+
message?: string | undefined;
|
|
55758
|
+
}, {
|
|
55759
|
+
status?: string | undefined;
|
|
55760
|
+
message?: string | undefined;
|
|
55761
|
+
}>;
|
|
55762
|
+
declare const zSelectAMachinePlanData: z.ZodObject<{
|
|
55763
|
+
body: z.ZodObject<{
|
|
55764
|
+
plan_tier: z.ZodString;
|
|
55765
|
+
}, "strip", z.ZodTypeAny, {
|
|
55766
|
+
plan_tier: string;
|
|
55767
|
+
}, {
|
|
55768
|
+
plan_tier: string;
|
|
55769
|
+
}>;
|
|
55770
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
55771
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
55772
|
+
headers: z.ZodOptional<z.ZodObject<{
|
|
55773
|
+
Accept: z.ZodOptional<z.ZodString>;
|
|
55774
|
+
}, "strip", z.ZodTypeAny, {
|
|
55775
|
+
Accept?: string | undefined;
|
|
55776
|
+
}, {
|
|
55777
|
+
Accept?: string | undefined;
|
|
55778
|
+
}>>;
|
|
55779
|
+
}, "strip", z.ZodTypeAny, {
|
|
55780
|
+
body: {
|
|
55781
|
+
plan_tier: string;
|
|
55782
|
+
};
|
|
55783
|
+
query?: undefined;
|
|
55784
|
+
headers?: {
|
|
55785
|
+
Accept?: string | undefined;
|
|
55786
|
+
} | undefined;
|
|
55787
|
+
path?: undefined;
|
|
55788
|
+
}, {
|
|
55789
|
+
body: {
|
|
55790
|
+
plan_tier: string;
|
|
55791
|
+
};
|
|
55792
|
+
query?: undefined;
|
|
55793
|
+
headers?: {
|
|
55794
|
+
Accept?: string | undefined;
|
|
55795
|
+
} | undefined;
|
|
55796
|
+
path?: undefined;
|
|
55797
|
+
}>;
|
|
55798
|
+
/**
|
|
55799
|
+
* OK
|
|
55800
|
+
*/
|
|
55801
|
+
declare const zSelectAMachinePlanResponse: z.ZodObject<{
|
|
55802
|
+
balance_after_cents: z.ZodOptional<z.ZodNumber>;
|
|
55803
|
+
charged_cents: z.ZodOptional<z.ZodNumber>;
|
|
55804
|
+
error: z.ZodOptional<z.ZodString>;
|
|
55805
|
+
message: z.ZodOptional<z.ZodString>;
|
|
55806
|
+
period_end: z.ZodOptional<z.ZodString>;
|
|
55807
|
+
plan: z.ZodOptional<z.ZodObject<{
|
|
55808
|
+
id: z.ZodOptional<z.ZodString>;
|
|
55809
|
+
monthly_cost_cents: z.ZodOptional<z.ZodNumber>;
|
|
55810
|
+
monthly_cost_usd: z.ZodOptional<z.ZodString>;
|
|
55811
|
+
name: z.ZodOptional<z.ZodString>;
|
|
55812
|
+
ram_mb: z.ZodOptional<z.ZodNumber>;
|
|
55813
|
+
storage_mb: z.ZodOptional<z.ZodNumber>;
|
|
55814
|
+
tier: z.ZodOptional<z.ZodString>;
|
|
55815
|
+
vcpu: z.ZodOptional<z.ZodNumber>;
|
|
55816
|
+
}, "strip", z.ZodTypeAny, {
|
|
55817
|
+
name?: string | undefined;
|
|
55818
|
+
id?: string | undefined;
|
|
55819
|
+
monthly_cost_cents?: number | undefined;
|
|
55820
|
+
monthly_cost_usd?: string | undefined;
|
|
55821
|
+
ram_mb?: number | undefined;
|
|
55822
|
+
storage_mb?: number | undefined;
|
|
55823
|
+
tier?: string | undefined;
|
|
55824
|
+
vcpu?: number | undefined;
|
|
55825
|
+
}, {
|
|
55826
|
+
name?: string | undefined;
|
|
55827
|
+
id?: string | undefined;
|
|
55828
|
+
monthly_cost_cents?: number | undefined;
|
|
55829
|
+
monthly_cost_usd?: string | undefined;
|
|
55830
|
+
ram_mb?: number | undefined;
|
|
55831
|
+
storage_mb?: number | undefined;
|
|
55832
|
+
tier?: string | undefined;
|
|
55833
|
+
vcpu?: number | undefined;
|
|
55834
|
+
}>>;
|
|
55835
|
+
status: z.ZodOptional<z.ZodString>;
|
|
55836
|
+
}, "strip", z.ZodTypeAny, {
|
|
55837
|
+
error?: string | undefined;
|
|
55838
|
+
status?: string | undefined;
|
|
55839
|
+
message?: string | undefined;
|
|
55840
|
+
period_end?: string | undefined;
|
|
55841
|
+
balance_after_cents?: number | undefined;
|
|
55842
|
+
charged_cents?: number | undefined;
|
|
55843
|
+
plan?: {
|
|
55844
|
+
name?: string | undefined;
|
|
55845
|
+
id?: string | undefined;
|
|
55846
|
+
monthly_cost_cents?: number | undefined;
|
|
55847
|
+
monthly_cost_usd?: string | undefined;
|
|
55848
|
+
ram_mb?: number | undefined;
|
|
55849
|
+
storage_mb?: number | undefined;
|
|
55850
|
+
tier?: string | undefined;
|
|
55851
|
+
vcpu?: number | undefined;
|
|
55852
|
+
} | undefined;
|
|
55853
|
+
}, {
|
|
55854
|
+
error?: string | undefined;
|
|
55855
|
+
status?: string | undefined;
|
|
55856
|
+
message?: string | undefined;
|
|
55857
|
+
period_end?: string | undefined;
|
|
55858
|
+
balance_after_cents?: number | undefined;
|
|
55859
|
+
charged_cents?: number | undefined;
|
|
55860
|
+
plan?: {
|
|
55861
|
+
name?: string | undefined;
|
|
55862
|
+
id?: string | undefined;
|
|
55863
|
+
monthly_cost_cents?: number | undefined;
|
|
55864
|
+
monthly_cost_usd?: string | undefined;
|
|
55865
|
+
ram_mb?: number | undefined;
|
|
55866
|
+
storage_mb?: number | undefined;
|
|
55867
|
+
tier?: string | undefined;
|
|
55868
|
+
vcpu?: number | undefined;
|
|
55869
|
+
} | undefined;
|
|
55870
|
+
}>;
|
|
55871
|
+
declare const zListAvailableMachinePlansData: z.ZodObject<{
|
|
55872
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
55873
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
55874
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
55875
|
+
headers: z.ZodOptional<z.ZodObject<{
|
|
55876
|
+
Accept: z.ZodOptional<z.ZodString>;
|
|
55877
|
+
}, "strip", z.ZodTypeAny, {
|
|
55878
|
+
Accept?: string | undefined;
|
|
55879
|
+
}, {
|
|
55880
|
+
Accept?: string | undefined;
|
|
55881
|
+
}>>;
|
|
55882
|
+
}, "strip", z.ZodTypeAny, {
|
|
55883
|
+
query?: undefined;
|
|
55884
|
+
body?: undefined;
|
|
55885
|
+
headers?: {
|
|
55886
|
+
Accept?: string | undefined;
|
|
55887
|
+
} | undefined;
|
|
55888
|
+
path?: undefined;
|
|
55889
|
+
}, {
|
|
55890
|
+
query?: undefined;
|
|
55891
|
+
body?: undefined;
|
|
55892
|
+
headers?: {
|
|
55893
|
+
Accept?: string | undefined;
|
|
55894
|
+
} | undefined;
|
|
55895
|
+
path?: undefined;
|
|
55896
|
+
}>;
|
|
55897
|
+
/**
|
|
55898
|
+
* OK
|
|
55899
|
+
*/
|
|
55900
|
+
declare const zListAvailableMachinePlansResponse: z.ZodObject<{
|
|
55901
|
+
data: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
55902
|
+
id: z.ZodOptional<z.ZodString>;
|
|
55903
|
+
monthly_cost_cents: z.ZodOptional<z.ZodNumber>;
|
|
55904
|
+
monthly_cost_usd: z.ZodOptional<z.ZodString>;
|
|
55905
|
+
name: z.ZodOptional<z.ZodString>;
|
|
55906
|
+
ram_mb: z.ZodOptional<z.ZodNumber>;
|
|
55907
|
+
storage_mb: z.ZodOptional<z.ZodNumber>;
|
|
55908
|
+
tier: z.ZodOptional<z.ZodString>;
|
|
55909
|
+
vcpu: z.ZodOptional<z.ZodNumber>;
|
|
55910
|
+
}, "strip", z.ZodTypeAny, {
|
|
55911
|
+
name?: string | undefined;
|
|
55912
|
+
id?: string | undefined;
|
|
55913
|
+
monthly_cost_cents?: number | undefined;
|
|
55914
|
+
monthly_cost_usd?: string | undefined;
|
|
55915
|
+
ram_mb?: number | undefined;
|
|
55916
|
+
storage_mb?: number | undefined;
|
|
55917
|
+
tier?: string | undefined;
|
|
55918
|
+
vcpu?: number | undefined;
|
|
55919
|
+
}, {
|
|
55920
|
+
name?: string | undefined;
|
|
55921
|
+
id?: string | undefined;
|
|
55922
|
+
monthly_cost_cents?: number | undefined;
|
|
55923
|
+
monthly_cost_usd?: string | undefined;
|
|
55924
|
+
ram_mb?: number | undefined;
|
|
55925
|
+
storage_mb?: number | undefined;
|
|
55926
|
+
tier?: string | undefined;
|
|
55927
|
+
vcpu?: number | undefined;
|
|
55928
|
+
}>, "many">>;
|
|
55929
|
+
status: z.ZodOptional<z.ZodString>;
|
|
55930
|
+
}, "strip", z.ZodTypeAny, {
|
|
55931
|
+
data?: {
|
|
55932
|
+
name?: string | undefined;
|
|
55933
|
+
id?: string | undefined;
|
|
55934
|
+
monthly_cost_cents?: number | undefined;
|
|
55935
|
+
monthly_cost_usd?: string | undefined;
|
|
55936
|
+
ram_mb?: number | undefined;
|
|
55937
|
+
storage_mb?: number | undefined;
|
|
55938
|
+
tier?: string | undefined;
|
|
55939
|
+
vcpu?: number | undefined;
|
|
55940
|
+
}[] | undefined;
|
|
55941
|
+
status?: string | undefined;
|
|
55942
|
+
}, {
|
|
55943
|
+
data?: {
|
|
55944
|
+
name?: string | undefined;
|
|
55945
|
+
id?: string | undefined;
|
|
55946
|
+
monthly_cost_cents?: number | undefined;
|
|
55947
|
+
monthly_cost_usd?: string | undefined;
|
|
55948
|
+
ram_mb?: number | undefined;
|
|
55949
|
+
storage_mb?: number | undefined;
|
|
55950
|
+
tier?: string | undefined;
|
|
55951
|
+
vcpu?: number | undefined;
|
|
55952
|
+
}[] | undefined;
|
|
55953
|
+
status?: string | undefined;
|
|
55954
|
+
}>;
|
|
55955
|
+
declare const zRestartMachineData: z.ZodObject<{
|
|
55956
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
55957
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
55958
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
55959
|
+
headers: z.ZodOptional<z.ZodObject<{
|
|
55960
|
+
Accept: z.ZodOptional<z.ZodString>;
|
|
55961
|
+
}, "strip", z.ZodTypeAny, {
|
|
55962
|
+
Accept?: string | undefined;
|
|
55963
|
+
}, {
|
|
55964
|
+
Accept?: string | undefined;
|
|
55965
|
+
}>>;
|
|
55966
|
+
}, "strip", z.ZodTypeAny, {
|
|
55967
|
+
query?: undefined;
|
|
55968
|
+
body?: undefined;
|
|
55969
|
+
headers?: {
|
|
55970
|
+
Accept?: string | undefined;
|
|
55971
|
+
} | undefined;
|
|
55972
|
+
path?: undefined;
|
|
55973
|
+
}, {
|
|
55974
|
+
query?: undefined;
|
|
55975
|
+
body?: undefined;
|
|
55976
|
+
headers?: {
|
|
55977
|
+
Accept?: string | undefined;
|
|
55978
|
+
} | undefined;
|
|
55979
|
+
path?: undefined;
|
|
55980
|
+
}>;
|
|
55981
|
+
/**
|
|
55982
|
+
* OK
|
|
55983
|
+
*/
|
|
55984
|
+
declare const zRestartMachineResponse: z.ZodObject<{
|
|
55985
|
+
message: z.ZodOptional<z.ZodString>;
|
|
55986
|
+
status: z.ZodOptional<z.ZodString>;
|
|
55987
|
+
}, "strip", z.ZodTypeAny, {
|
|
55988
|
+
status?: string | undefined;
|
|
55989
|
+
message?: string | undefined;
|
|
55990
|
+
}, {
|
|
55991
|
+
status?: string | undefined;
|
|
55992
|
+
message?: string | undefined;
|
|
55993
|
+
}>;
|
|
55994
|
+
declare const zResumeMachineData: z.ZodObject<{
|
|
55995
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
55996
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
55997
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
55998
|
+
headers: z.ZodOptional<z.ZodObject<{
|
|
55999
|
+
Accept: z.ZodOptional<z.ZodString>;
|
|
56000
|
+
}, "strip", z.ZodTypeAny, {
|
|
56001
|
+
Accept?: string | undefined;
|
|
56002
|
+
}, {
|
|
56003
|
+
Accept?: string | undefined;
|
|
56004
|
+
}>>;
|
|
56005
|
+
}, "strip", z.ZodTypeAny, {
|
|
56006
|
+
query?: undefined;
|
|
56007
|
+
body?: undefined;
|
|
56008
|
+
headers?: {
|
|
56009
|
+
Accept?: string | undefined;
|
|
56010
|
+
} | undefined;
|
|
56011
|
+
path?: undefined;
|
|
56012
|
+
}, {
|
|
56013
|
+
query?: undefined;
|
|
56014
|
+
body?: undefined;
|
|
56015
|
+
headers?: {
|
|
56016
|
+
Accept?: string | undefined;
|
|
56017
|
+
} | undefined;
|
|
56018
|
+
path?: undefined;
|
|
56019
|
+
}>;
|
|
56020
|
+
/**
|
|
56021
|
+
* OK
|
|
56022
|
+
*/
|
|
56023
|
+
declare const zResumeMachineResponse: z.ZodObject<{
|
|
56024
|
+
message: z.ZodOptional<z.ZodString>;
|
|
56025
|
+
status: z.ZodOptional<z.ZodString>;
|
|
56026
|
+
}, "strip", z.ZodTypeAny, {
|
|
56027
|
+
status?: string | undefined;
|
|
56028
|
+
message?: string | undefined;
|
|
56029
|
+
}, {
|
|
56030
|
+
status?: string | undefined;
|
|
56031
|
+
message?: string | undefined;
|
|
56032
|
+
}>;
|
|
54845
56033
|
declare const zGetMachineSystemStatsData: z.ZodObject<{
|
|
54846
56034
|
body: z.ZodOptional<z.ZodNever>;
|
|
54847
56035
|
path: z.ZodOptional<z.ZodNever>;
|
|
@@ -55325,6 +56513,73 @@ declare const zGetMachineSystemStatsResponse: z.ZodObject<{
|
|
|
55325
56513
|
status?: string | undefined;
|
|
55326
56514
|
message?: string | undefined;
|
|
55327
56515
|
}>;
|
|
56516
|
+
declare const zGetMachineLifecycleStatusData: z.ZodObject<{
|
|
56517
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
56518
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
56519
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
56520
|
+
headers: z.ZodOptional<z.ZodObject<{
|
|
56521
|
+
Accept: z.ZodOptional<z.ZodString>;
|
|
56522
|
+
}, "strip", z.ZodTypeAny, {
|
|
56523
|
+
Accept?: string | undefined;
|
|
56524
|
+
}, {
|
|
56525
|
+
Accept?: string | undefined;
|
|
56526
|
+
}>>;
|
|
56527
|
+
}, "strip", z.ZodTypeAny, {
|
|
56528
|
+
query?: undefined;
|
|
56529
|
+
body?: undefined;
|
|
56530
|
+
headers?: {
|
|
56531
|
+
Accept?: string | undefined;
|
|
56532
|
+
} | undefined;
|
|
56533
|
+
path?: undefined;
|
|
56534
|
+
}, {
|
|
56535
|
+
query?: undefined;
|
|
56536
|
+
body?: undefined;
|
|
56537
|
+
headers?: {
|
|
56538
|
+
Accept?: string | undefined;
|
|
56539
|
+
} | undefined;
|
|
56540
|
+
path?: undefined;
|
|
56541
|
+
}>;
|
|
56542
|
+
/**
|
|
56543
|
+
* OK
|
|
56544
|
+
*/
|
|
56545
|
+
declare const zGetMachineLifecycleStatusResponse: z.ZodObject<{
|
|
56546
|
+
data: z.ZodOptional<z.ZodObject<{
|
|
56547
|
+
active: z.ZodOptional<z.ZodBoolean>;
|
|
56548
|
+
pid: z.ZodOptional<z.ZodNumber>;
|
|
56549
|
+
state: z.ZodOptional<z.ZodString>;
|
|
56550
|
+
uptime_sec: z.ZodOptional<z.ZodBigInt>;
|
|
56551
|
+
}, "strip", z.ZodTypeAny, {
|
|
56552
|
+
state?: string | undefined;
|
|
56553
|
+
active?: boolean | undefined;
|
|
56554
|
+
pid?: number | undefined;
|
|
56555
|
+
uptime_sec?: bigint | undefined;
|
|
56556
|
+
}, {
|
|
56557
|
+
state?: string | undefined;
|
|
56558
|
+
active?: boolean | undefined;
|
|
56559
|
+
pid?: number | undefined;
|
|
56560
|
+
uptime_sec?: bigint | undefined;
|
|
56561
|
+
}>>;
|
|
56562
|
+
message: z.ZodOptional<z.ZodString>;
|
|
56563
|
+
status: z.ZodOptional<z.ZodString>;
|
|
56564
|
+
}, "strip", z.ZodTypeAny, {
|
|
56565
|
+
data?: {
|
|
56566
|
+
state?: string | undefined;
|
|
56567
|
+
active?: boolean | undefined;
|
|
56568
|
+
pid?: number | undefined;
|
|
56569
|
+
uptime_sec?: bigint | undefined;
|
|
56570
|
+
} | undefined;
|
|
56571
|
+
status?: string | undefined;
|
|
56572
|
+
message?: string | undefined;
|
|
56573
|
+
}, {
|
|
56574
|
+
data?: {
|
|
56575
|
+
state?: string | undefined;
|
|
56576
|
+
active?: boolean | undefined;
|
|
56577
|
+
pid?: number | undefined;
|
|
56578
|
+
uptime_sec?: bigint | undefined;
|
|
56579
|
+
} | undefined;
|
|
56580
|
+
status?: string | undefined;
|
|
56581
|
+
message?: string | undefined;
|
|
56582
|
+
}>;
|
|
55328
56583
|
declare const zGetNotificationPreferencesData: z.ZodObject<{
|
|
55329
56584
|
body: z.ZodOptional<z.ZodNever>;
|
|
55330
56585
|
path: z.ZodOptional<z.ZodNever>;
|
|
@@ -56443,6 +57698,7 @@ declare const zListServersResponse2: z.ZodObject<{
|
|
|
56443
57698
|
created_at: z.ZodOptional<z.ZodString>;
|
|
56444
57699
|
domain: z.ZodOptional<z.ZodString>;
|
|
56445
57700
|
error: z.ZodOptional<z.ZodString>;
|
|
57701
|
+
guest_ip: z.ZodOptional<z.ZodString>;
|
|
56446
57702
|
id: z.ZodOptional<z.ZodString>;
|
|
56447
57703
|
lxd_container_name: z.ZodOptional<z.ZodString>;
|
|
56448
57704
|
organization: z.ZodOptional<z.ZodObject<{
|
|
@@ -56468,6 +57724,7 @@ declare const zListServersResponse2: z.ZodObject<{
|
|
|
56468
57724
|
logo?: string | undefined;
|
|
56469
57725
|
}>>;
|
|
56470
57726
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
57727
|
+
server_id: z.ZodOptional<z.ZodString>;
|
|
56471
57728
|
ssh_key: z.ZodOptional<z.ZodObject<{
|
|
56472
57729
|
auth_method: z.ZodOptional<z.ZodString>;
|
|
56473
57730
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -56815,7 +58072,9 @@ declare const zListServersResponse2: z.ZodObject<{
|
|
|
56815
58072
|
} | undefined;
|
|
56816
58073
|
subdomain?: string | undefined;
|
|
56817
58074
|
step?: string | undefined;
|
|
58075
|
+
guest_ip?: string | undefined;
|
|
56818
58076
|
lxd_container_name?: string | undefined;
|
|
58077
|
+
server_id?: string | undefined;
|
|
56819
58078
|
ssh_key?: {
|
|
56820
58079
|
name?: string | undefined;
|
|
56821
58080
|
id?: string | undefined;
|
|
@@ -56905,7 +58164,9 @@ declare const zListServersResponse2: z.ZodObject<{
|
|
|
56905
58164
|
} | undefined;
|
|
56906
58165
|
subdomain?: string | undefined;
|
|
56907
58166
|
step?: string | undefined;
|
|
58167
|
+
guest_ip?: string | undefined;
|
|
56908
58168
|
lxd_container_name?: string | undefined;
|
|
58169
|
+
server_id?: string | undefined;
|
|
56909
58170
|
ssh_key?: {
|
|
56910
58171
|
name?: string | undefined;
|
|
56911
58172
|
id?: string | undefined;
|
|
@@ -57027,7 +58288,9 @@ declare const zListServersResponse2: z.ZodObject<{
|
|
|
57027
58288
|
} | undefined;
|
|
57028
58289
|
subdomain?: string | undefined;
|
|
57029
58290
|
step?: string | undefined;
|
|
58291
|
+
guest_ip?: string | undefined;
|
|
57030
58292
|
lxd_container_name?: string | undefined;
|
|
58293
|
+
server_id?: string | undefined;
|
|
57031
58294
|
ssh_key?: {
|
|
57032
58295
|
name?: string | undefined;
|
|
57033
58296
|
id?: string | undefined;
|
|
@@ -57145,7 +58408,9 @@ declare const zListServersResponse2: z.ZodObject<{
|
|
|
57145
58408
|
} | undefined;
|
|
57146
58409
|
subdomain?: string | undefined;
|
|
57147
58410
|
step?: string | undefined;
|
|
58411
|
+
guest_ip?: string | undefined;
|
|
57148
58412
|
lxd_container_name?: string | undefined;
|
|
58413
|
+
server_id?: string | undefined;
|
|
57149
58414
|
ssh_key?: {
|
|
57150
58415
|
name?: string | undefined;
|
|
57151
58416
|
id?: string | undefined;
|
|
@@ -57277,7 +58542,9 @@ declare const zListServersResponse2: z.ZodObject<{
|
|
|
57277
58542
|
} | undefined;
|
|
57278
58543
|
subdomain?: string | undefined;
|
|
57279
58544
|
step?: string | undefined;
|
|
58545
|
+
guest_ip?: string | undefined;
|
|
57280
58546
|
lxd_container_name?: string | undefined;
|
|
58547
|
+
server_id?: string | undefined;
|
|
57281
58548
|
ssh_key?: {
|
|
57282
58549
|
name?: string | undefined;
|
|
57283
58550
|
id?: string | undefined;
|
|
@@ -57405,7 +58672,9 @@ declare const zListServersResponse2: z.ZodObject<{
|
|
|
57405
58672
|
} | undefined;
|
|
57406
58673
|
subdomain?: string | undefined;
|
|
57407
58674
|
step?: string | undefined;
|
|
58675
|
+
guest_ip?: string | undefined;
|
|
57408
58676
|
lxd_container_name?: string | undefined;
|
|
58677
|
+
server_id?: string | undefined;
|
|
57409
58678
|
ssh_key?: {
|
|
57410
58679
|
name?: string | undefined;
|
|
57411
58680
|
id?: string | undefined;
|
|
@@ -57537,7 +58806,9 @@ declare const zListServersResponse2: z.ZodObject<{
|
|
|
57537
58806
|
} | undefined;
|
|
57538
58807
|
subdomain?: string | undefined;
|
|
57539
58808
|
step?: string | undefined;
|
|
58809
|
+
guest_ip?: string | undefined;
|
|
57540
58810
|
lxd_container_name?: string | undefined;
|
|
58811
|
+
server_id?: string | undefined;
|
|
57541
58812
|
ssh_key?: {
|
|
57542
58813
|
name?: string | undefined;
|
|
57543
58814
|
id?: string | undefined;
|
|
@@ -57669,7 +58940,9 @@ declare const zListServersResponse2: z.ZodObject<{
|
|
|
57669
58940
|
} | undefined;
|
|
57670
58941
|
subdomain?: string | undefined;
|
|
57671
58942
|
step?: string | undefined;
|
|
58943
|
+
guest_ip?: string | undefined;
|
|
57672
58944
|
lxd_container_name?: string | undefined;
|
|
58945
|
+
server_id?: string | undefined;
|
|
57673
58946
|
ssh_key?: {
|
|
57674
58947
|
name?: string | undefined;
|
|
57675
58948
|
id?: string | undefined;
|
|
@@ -91279,4 +92552,4 @@ declare const zListHealthCheckResultsResponse: z.ZodObject<{
|
|
|
91279
92552
|
message?: string | undefined;
|
|
91280
92553
|
}>;
|
|
91281
92554
|
|
|
91282
|
-
export { type AddApplicationDomainData, type AddApplicationDomainError, type AddApplicationDomainErrors, type AddApplicationDomainRequest, type AddApplicationDomainResponse, type AddApplicationDomainResponses, type AddApplicationToFamilyRequest, type AddCustomDomainData, type AddCustomDomainError, type AddCustomDomainErrors, type AddCustomDomainRequest, type AddCustomDomainResponse, type AddCustomDomainResponses, type AddProjectToFamilyData, type AddProjectToFamilyError, type AddProjectToFamilyErrors, type AddProjectToFamilyResponse, type AddProjectToFamilyResponses, type AdminRegisteredResponse, type Application, type ApplicationDeployment, type ApplicationDomain, type ApplicationLogs, type ApplicationResponse, type BootstrapResponse, type CancelExecutionData, type CancelExecutionError, type CancelExecutionErrors, type CancelExecutionResponse, type CancelExecutionResponses, type CategoriesResponse, type CheckAdminRegistrationData, type CheckAdminRegistrationError, type CheckAdminRegistrationErrors, type CheckAdminRegistrationResponse, type CheckAdminRegistrationResponses, type CheckCustomDomainDnsData, type CheckCustomDomainDnsError, type CheckCustomDomainDnsErrors, type CheckCustomDomainDnsResponse, type CheckCustomDomainDnsResponses, type CheckForUpdatesData, type CheckForUpdatesError, type CheckForUpdatesErrors, type CheckForUpdatesResponse, type CheckForUpdatesResponses, type CheckIfFeatureIsEnabledData, type CheckIfFeatureIsEnabledError, type CheckIfFeatureIsEnabledErrors, type CheckIfFeatureIsEnabledResponse, type CheckIfFeatureIsEnabledResponses, type CheckOnboardingStatusData, type CheckOnboardingStatusError, type CheckOnboardingStatusErrors, type CheckOnboardingStatusResponse, type CheckOnboardingStatusResponses, type CliInitRequest, type CliInitResponse, type ClientOptions, type ComposeService, type ComposeServicesResponse, type ContainerActionResponse, type ContainerLogsRequest, type ContainerLogsResponse, type CopyDirectory, type CopyDirectoryData, type CopyDirectoryError, type CopyDirectoryErrors, type CopyDirectoryResponse, type CopyDirectoryResponses, type CreateDeploymentRequest, type CreateDirectoryData, type CreateDirectoryError, type CreateDirectoryErrors, type CreateDirectoryRequest, type CreateDirectoryResponse, type CreateDirectoryResponses, type CreateGitHubConnectorData, type CreateGitHubConnectorError, type CreateGitHubConnectorErrors, type CreateGitHubConnectorResponse, type CreateGitHubConnectorResponses, type CreateGithubConnectorRequest, type CreateHealthCheckData, type CreateHealthCheckError, type CreateHealthCheckErrors, type CreateHealthCheckRequest, type CreateHealthCheckResponse, type CreateHealthCheckResponses, type CreateProjectData, type CreateProjectError, type CreateProjectErrors, type CreateProjectRequest, type CreateProjectResponse, type CreateProjectResponses, type CreateSmtpConfigData, type CreateSmtpConfigError, type CreateSmtpConfigErrors, type CreateSmtpConfigRequest, type CreateSmtpConfigResponse, type CreateSmtpConfigResponses, type CreateWebhookConfigData, type CreateWebhookConfigError, type CreateWebhookConfigErrors, type CreateWebhookConfigRequest, type CreateWebhookConfigResponse, type CreateWebhookConfigResponses, type CustomDomainResponse, type DeleteApplicationData, type DeleteApplicationError, type DeleteApplicationErrors, type DeleteApplicationResponse, type DeleteApplicationResponses, type DeleteDeploymentRequest, type DeleteDirectoryData, type DeleteDirectoryError, type DeleteDirectoryErrors, type DeleteDirectoryRequest, type DeleteDirectoryResponse, type DeleteDirectoryResponses, type DeleteForkedExtensionData, type DeleteForkedExtensionError, type DeleteForkedExtensionErrors, type DeleteForkedExtensionResponse, type DeleteForkedExtensionResponses, type DeleteGitHubConnectorData, type DeleteGitHubConnectorError, type DeleteGitHubConnectorErrors, type DeleteGitHubConnectorResponse, type DeleteGitHubConnectorResponses, type DeleteGithubConnectorRequest, type DeleteHealthCheckData, type DeleteHealthCheckError, type DeleteHealthCheckErrors, type DeleteHealthCheckResponse, type DeleteHealthCheckResponses, type DeleteSmtpConfigData, type DeleteSmtpConfigError, type DeleteSmtpConfigErrors, type DeleteSmtpConfigRequest, type DeleteSmtpConfigResponse, type DeleteSmtpConfigResponses, type DeleteWebhookConfigData, type DeleteWebhookConfigError, type DeleteWebhookConfigErrors, type DeleteWebhookConfigRequest, type DeleteWebhookConfigResponse, type DeleteWebhookConfigResponses, type DeployApplicationData, type DeployApplicationError, type DeployApplicationErrors, type DeployApplicationResponse, type DeployApplicationResponses, type DeployProjectData, type DeployProjectError, type DeployProjectErrors, type DeployProjectRequest, type DeployProjectResponse, type DeployProjectResponses, type DeploymentResponse, type DnsCheckResponse, type DnsSetupResponse, type DuplicateProjectData, type DuplicateProjectError, type DuplicateProjectErrors, type DuplicateProjectRequest, type DuplicateProjectResponse, type DuplicateProjectResponses, type EnvironmentsInFamilyResponse, type ErrorEnvelope, type ExecuteACommandOnTheHostMachineData, type ExecuteACommandOnTheHostMachineError, type ExecuteACommandOnTheHostMachineErrors, type ExecuteACommandOnTheHostMachineResponse, type ExecuteACommandOnTheHostMachineResponses, type ExecutionResponse, type Extension, type ExtensionExecution, type ExtensionResponse, type ForkExtensionData, type ForkExtensionError, type ForkExtensionErrors, type ForkExtensionRequest, type ForkExtensionResponse, type ForkExtensionResponses, type GenerateRandomSubdomainData, type GenerateRandomSubdomainError, type GenerateRandomSubdomainErrors, type GenerateRandomSubdomainResponse, type GenerateRandomSubdomainResponses, type GetActivitiesResponse, type GetApplicationData, type GetApplicationError, type GetApplicationErrors, type GetApplicationLogsData, type GetApplicationLogsError, type GetApplicationLogsErrors, type GetApplicationLogsResponse, type GetApplicationLogsResponses, type GetApplicationResponse, type GetApplicationResponses, type GetBootstrapSessionDataData, type GetBootstrapSessionDataError, type GetBootstrapSessionDataErrors, type GetBootstrapSessionDataResponse, type GetBootstrapSessionDataResponses, type GetContainerData, type GetContainerError, type GetContainerErrors, type GetContainerLogsData, type GetContainerLogsError, type GetContainerLogsErrors, type GetContainerLogsResponse, type GetContainerLogsResponses, type GetContainerResponse, type GetContainerResponse2, type GetContainerResponses, type GetCurrentUserProfileData, type GetCurrentUserProfileError, type GetCurrentUserProfileErrors, type GetCurrentUserProfileResponse, type GetCurrentUserProfileResponses, type GetDeploymentData, type GetDeploymentError, type GetDeploymentErrors, type GetDeploymentLogsData, type GetDeploymentLogsError, type GetDeploymentLogsErrors, type GetDeploymentLogsResponse, type GetDeploymentLogsResponses, type GetDeploymentResponse, type GetDeploymentResponses, type GetExecutionData, type GetExecutionError, type GetExecutionErrors, type GetExecutionResponse, type GetExecutionResponses, type GetExtensionByExtensionIdData, type GetExtensionByExtensionIdError, type GetExtensionByExtensionIdErrors, type GetExtensionByExtensionIdResponse, type GetExtensionByExtensionIdResponses, type GetExtensionByIdData, type GetExtensionByIdError, type GetExtensionByIdErrors, type GetExtensionByIdResponse, type GetExtensionByIdResponses, type GetGithubRepositoryBranchesRequest, type GetHealthCheckStatsData, type GetHealthCheckStatsError, type GetHealthCheckStatsErrors, type GetHealthCheckStatsResponse, type GetHealthCheckStatsResponses, type GetHealthChecksData, type GetHealthChecksError, type GetHealthChecksErrors, type GetHealthChecksResponse, type GetHealthChecksResponses, type GetMachineSystemStatsData, type GetMachineSystemStatsError, type GetMachineSystemStatsErrors, type GetMachineSystemStatsResponse, type GetMachineSystemStatsResponses, type GetNotificationPreferencesData, type GetNotificationPreferencesError, type GetNotificationPreferencesErrors, type GetNotificationPreferencesResponse, type GetNotificationPreferencesResponses, type GetSmtpConfigData, type GetSmtpConfigError, type GetSmtpConfigErrors, type GetSmtpConfigResponse, type GetSmtpConfigResponses, type GetSshConnectionStatusData, type GetSshConnectionStatusError, type GetSshConnectionStatusErrors, type GetSshConnectionStatusResponse, type GetSshConnectionStatusResponses, type GetTrailSessionStatusData, type GetTrailSessionStatusError, type GetTrailSessionStatusErrors, type GetTrailSessionStatusResponse, type GetTrailSessionStatusResponses, type GetUserPreferencesData, type GetUserPreferencesError, type GetUserPreferencesErrors, type GetUserPreferencesResponse, type GetUserPreferencesResponses, type GetUserSettingsData, type GetUserSettingsError, type GetUserSettingsErrors, type GetUserSettingsResponse, type GetUserSettingsResponses, type GetWebhookConfigData, type GetWebhookConfigError, type GetWebhookConfigErrors, type GetWebhookConfigResponse, type GetWebhookConfigResponses, type HandleGitHubWebhookData, type HandleGitHubWebhookError, type HandleGitHubWebhookErrors, type HandleGitHubWebhookResponse, type HandleGitHubWebhookResponses, type HealthCheckData, type HealthCheckError, type HealthCheckErrors, type HealthCheckMessageResponse, type HealthCheckResponse, type HealthCheckResponse2, type HealthCheckResponses, type HealthCheckResult, type HealthCheckResultsResponse, type HealthCheckStatsResponse, type HostExecRequest, type HostExecResponse, type HttpError, type IndexApplicationCodebaseData, type IndexApplicationCodebaseError, type IndexApplicationCodebaseErrors, type IndexApplicationCodebaseResponse, type IndexApplicationCodebaseResponses, type IndexCodebaseResponse, type InitializeCliSessionData, type InitializeCliSessionError, type InitializeCliSessionErrors, type InitializeCliSessionResponse, type InitializeCliSessionResponses, type IsFeatureEnabledResponse, type IsOnboardedResponse, type LabelsResponse, type ListApplicationDeploymentsData, type ListApplicationDeploymentsError, type ListApplicationDeploymentsErrors, type ListApplicationDeploymentsResponse, type ListApplicationDeploymentsResponses, type ListApplicationsData, type ListApplicationsError, type ListApplicationsErrors, type ListApplicationsResponse, type ListApplicationsResponse2, type ListApplicationsResponses, type ListAuditLogsData, type ListAuditLogsError, type ListAuditLogsErrors, type ListAuditLogsResponse, type ListAuditLogsResponses, type ListBranchesResponse, type ListComposeServicesData, type ListComposeServicesError, type ListComposeServicesErrors, type ListComposeServicesResponse, type ListComposeServicesResponses, type ListConnectorsResponse, type ListContainersData, type ListContainersError, type ListContainersErrors, type ListContainersResponse, type ListContainersResponse2, type ListContainersResponses, type ListDeploymentsResponse, type ListDomainsData, type ListDomainsError, type ListDomainsErrors, type ListDomainsResponse, type ListDomainsResponse2, type ListDomainsResponses, type ListExecutionLogsData, type ListExecutionLogsError, type ListExecutionLogsErrors, type ListExecutionLogsResponse, type ListExecutionLogsResponses, type ListExecutionsResponse, type ListExtensionCategoriesData, type ListExtensionCategoriesError, type ListExtensionCategoriesErrors, type ListExtensionCategoriesResponse, type ListExtensionCategoriesResponses, type ListExtensionExecutionsData, type ListExtensionExecutionsError, type ListExtensionExecutionsErrors, type ListExtensionExecutionsResponse, type ListExtensionExecutionsResponses, type ListExtensionsData, type ListExtensionsError, type ListExtensionsErrors, type ListExtensionsResponse, type ListExtensionsResponse2, type ListExtensionsResponses, type ListFamilyEnvironmentsData, type ListFamilyEnvironmentsError, type ListFamilyEnvironmentsErrors, type ListFamilyEnvironmentsResponse, type ListFamilyEnvironmentsResponses, type ListFeatureFlagsData, type ListFeatureFlagsError, type ListFeatureFlagsErrors, type ListFeatureFlagsResponse, type ListFeatureFlagsResponse2, type ListFeatureFlagsResponses, type ListFilesData, type ListFilesError, type ListFilesErrors, type ListFilesResponse, type ListFilesResponse2, type ListFilesResponses, type ListGitHubConnectorsData, type ListGitHubConnectorsError, type ListGitHubConnectorsErrors, type ListGitHubConnectorsResponse, type ListGitHubConnectorsResponses, type ListGitHubRepositoriesData, type ListGitHubRepositoriesError, type ListGitHubRepositoriesErrors, type ListGitHubRepositoriesResponse, type ListGitHubRepositoriesResponses, type ListHealthCheckResultsData, type ListHealthCheckResultsError, type ListHealthCheckResultsErrors, type ListHealthCheckResultsResponse, type ListHealthCheckResultsResponses, type ListImagesData, type ListImagesError, type ListImagesErrors, type ListImagesRequest, type ListImagesResponse, type ListImagesResponse2, type ListImagesResponses, type ListLogsResponse, type ListProjectsInFamilyData, type ListProjectsInFamilyError, type ListProjectsInFamilyErrors, type ListProjectsInFamilyResponse, type ListProjectsInFamilyResponses, type ListRepositoriesResponse, type ListRepositoryBranchesData, type ListRepositoryBranchesError, type ListRepositoryBranchesErrors, type ListRepositoryBranchesResponse, type ListRepositoryBranchesResponses, type ListServersData, type ListServersError, type ListServersErrors, type ListServersResponse, type ListServersResponse2, type ListServersResponses, type LogsResponse, type MarkOnboardingCompleteData, type MarkOnboardingCompleteError, type MarkOnboardingCompleteErrors, type MarkOnboardingCompleteResponse, type MarkOnboardingCompleteResponse2, type MarkOnboardingCompleteResponses, type MessageResponse, type MoveDirectory, type MoveDirectoryData, type MoveDirectoryError, type MoveDirectoryErrors, type MoveDirectoryResponse, type MoveDirectoryResponses, type Options, type PauseLiveDeployServiceData, type PauseLiveDeployServiceError, type PauseLiveDeployServiceErrors, type PauseLiveDeployServiceResponse, type PauseLiveDeployServiceResponses, type PauseRequest, type PauseResponse, type PerformUpdateData, type PerformUpdateError, type PerformUpdateErrors, type PerformUpdateResponse, type PerformUpdateResponses, type PreferencesResponse, type PreviewComposeRequest, type PreviewComposeResponse, type PreviewComposeServicesData, type PreviewComposeServicesError, type PreviewComposeServicesErrors, type PreviewComposeServicesResponse, type PreviewComposeServicesResponses, type ProjectFamilyResponse, type ProvisionRequest, type ProvisionTrailResourcesData, type ProvisionTrailResourcesError, type ProvisionTrailResourcesErrors, type ProvisionTrailResourcesResponse, type ProvisionTrailResourcesResponses, type ProvisionTrailResponse, type PruneBuildCacheData, type PruneBuildCacheError, type PruneBuildCacheErrors, type PruneBuildCacheRequest, type PruneBuildCacheResponse, type PruneBuildCacheResponses, type PruneImagesData, type PruneImagesError, type PruneImagesErrors, type PruneImagesRequest, type PruneImagesResponse, type PruneImagesResponse2, type PruneImagesResponses, type QueryKey, type RandomSubdomainResponseWrapper, type ReDeployApplicationRequest, type RecoverApplicationData, type RecoverApplicationError, type RecoverApplicationErrors, type RecoverApplicationResponse, type RecoverApplicationResponses, type RecoverRequest, type RecoverResponse, type RedeployApplicationData, type RedeployApplicationError, type RedeployApplicationErrors, type RedeployApplicationResponse, type RedeployApplicationResponses, type RemoveApplicationDomainData, type RemoveApplicationDomainError, type RemoveApplicationDomainErrors, type RemoveApplicationDomainRequest, type RemoveApplicationDomainResponse, type RemoveApplicationDomainResponses, type RemoveContainerData, type RemoveContainerError, type RemoveContainerErrors, type RemoveContainerResponse, type RemoveContainerResponses, type RemoveCustomDomainData, type RemoveCustomDomainError, type RemoveCustomDomainErrors, type RemoveCustomDomainRequest, type RemoveCustomDomainResponse, type RemoveCustomDomainResponses, type RestartContainerData, type RestartContainerError, type RestartContainerErrors, type RestartContainerResponse, type RestartContainerResponses, type RestartDeploymentData, type RestartDeploymentError, type RestartDeploymentErrors, type RestartDeploymentRequest, type RestartDeploymentResponse, type RestartDeploymentResponses, type RollbackDeploymentData, type RollbackDeploymentError, type RollbackDeploymentErrors, type RollbackDeploymentRequest, type RollbackDeploymentResponse, type RollbackDeploymentResponses, type RunExtensionData, type RunExtensionError, type RunExtensionErrors, type RunExtensionRequest, type RunExtensionResponse, type RunExtensionResponses, type SendNotificationData, type SendNotificationError, type SendNotificationErrors, type SendNotificationRequest, type SendNotificationResponse, type SendNotificationResponse2, type SendNotificationResponses, type SmtpConfigResponse, type SshConnectionStatusResponse, type StartContainerData, type StartContainerError, type StartContainerErrors, type StartContainerResponse, type StartContainerResponses, type StopContainerData, type StopContainerError, type StopContainerErrors, type StopContainerResponse, type StopContainerResponses, type SystemStatsResponse, type ToggleHealthCheckData, type ToggleHealthCheckError, type ToggleHealthCheckErrors, type ToggleHealthCheckRequest, type ToggleHealthCheckResponse, type ToggleHealthCheckResponses, type TrailStatusEnvelopeResponse, type UnknownInterface, type UpdateApplicationData, type UpdateApplicationError, type UpdateApplicationErrors, type UpdateApplicationLabelsData, type UpdateApplicationLabelsError, type UpdateApplicationLabelsErrors, type UpdateApplicationLabelsResponse, type UpdateApplicationLabelsResponses, type UpdateApplicationResponse, type UpdateApplicationResponses, type UpdateAutoUpdateRequest, type UpdateAutoUpdateSettingsData, type UpdateAutoUpdateSettingsError, type UpdateAutoUpdateSettingsErrors, type UpdateAutoUpdateSettingsResponse, type UpdateAutoUpdateSettingsResponses, type UpdateAvatarRequest, type UpdateCheckResponse, type UpdateContainerResourcesData, type UpdateContainerResourcesError, type UpdateContainerResourcesErrors, type UpdateContainerResourcesRequest, type UpdateContainerResourcesResponse, type UpdateContainerResourcesResponse2, type UpdateContainerResourcesResponses, type UpdateDeploymentRequest, type UpdateFeatureFlagData, type UpdateFeatureFlagError, type UpdateFeatureFlagErrors, type UpdateFeatureFlagRequest, type UpdateFeatureFlagResponse, type UpdateFeatureFlagResponses, type UpdateFontRequest, type UpdateFontSettingsData, type UpdateFontSettingsError, type UpdateFontSettingsErrors, type UpdateFontSettingsResponse, type UpdateFontSettingsResponses, type UpdateGitHubConnectorData, type UpdateGitHubConnectorError, type UpdateGitHubConnectorErrors, type UpdateGitHubConnectorResponse, type UpdateGitHubConnectorResponses, type UpdateGithubConnectorRequest, type UpdateHealthCheckData, type UpdateHealthCheckError, type UpdateHealthCheckErrors, type UpdateHealthCheckRequest, type UpdateHealthCheckResponse, type UpdateHealthCheckResponses, type UpdateLabelsRequest, type UpdateLanguageRequest, type UpdateLanguageSettingsData, type UpdateLanguageSettingsError, type UpdateLanguageSettingsErrors, type UpdateLanguageSettingsResponse, type UpdateLanguageSettingsResponses, type UpdateNotificationPreferencesData, type UpdateNotificationPreferencesError, type UpdateNotificationPreferencesErrors, type UpdateNotificationPreferencesResponse, type UpdateNotificationPreferencesResponses, type UpdatePreferenceRequest, type UpdateRequest, type UpdateResponse, type UpdateSmtpConfigData, type UpdateSmtpConfigError, type UpdateSmtpConfigErrors, type UpdateSmtpConfigRequest, type UpdateSmtpConfigResponse, type UpdateSmtpConfigResponses, type UpdateThemeRequest, type UpdateThemeSettingsData, type UpdateThemeSettingsError, type UpdateThemeSettingsErrors, type UpdateThemeSettingsResponse, type UpdateThemeSettingsResponses, type UpdateUserAvatarData, type UpdateUserAvatarError, type UpdateUserAvatarErrors, type UpdateUserAvatarResponse, type UpdateUserAvatarResponses, type UpdateUserNameData, type UpdateUserNameError, type UpdateUserNameErrors, type UpdateUserNameRequest, type UpdateUserNameResponse, type UpdateUserNameResponses, type UpdateUserPreferencesData, type UpdateUserPreferencesError, type UpdateUserPreferencesErrors, type UpdateUserPreferencesResponse, type UpdateUserPreferencesResponses, type UpdateUsernameResponse, type UpdateWebhookConfigData, type UpdateWebhookConfigError, type UpdateWebhookConfigErrors, type UpdateWebhookConfigRequest, type UpdateWebhookConfigResponse, type UpdateWebhookConfigResponses, type UploadFileData, type UploadFileError, type UploadFileErrors, type UploadFileResponse, type UploadFileResponses, type User, type UserPreferencesData, type UserPreferencesResponse, type UserResponse, type UserSettingsResponse, type VerifyCustomDomainData, type VerifyCustomDomainError, type VerifyCustomDomainErrors, type VerifyCustomDomainRequest, type VerifyCustomDomainResponse, type VerifyCustomDomainResponses, type WebhookConfigResponse, addApplicationDomain, addApplicationDomainMutation, addCustomDomain, addCustomDomainMutation, addProjectToFamily, addProjectToFamilyMutation, cancelExecution, cancelExecutionMutation, checkAdminRegistration, checkAdminRegistrationOptions, checkAdminRegistrationQueryKey, checkCustomDomainDns, checkCustomDomainDnsOptions, checkCustomDomainDnsQueryKey, checkForUpdates, checkForUpdatesOptions, checkForUpdatesQueryKey, checkIfFeatureIsEnabled, checkIfFeatureIsEnabledOptions, checkIfFeatureIsEnabledQueryKey, checkOnboardingStatus, checkOnboardingStatusOptions, checkOnboardingStatusQueryKey, copyDirectory, copyDirectoryMutation, createDirectory, createDirectoryMutation, createGitHubConnector, createGitHubConnectorMutation, createHealthCheck, createHealthCheckMutation, createProject, createProjectMutation, createSmtpConfig, createSmtpConfigMutation, createWebhookConfig, createWebhookConfigMutation, deleteApplication, deleteApplicationMutation, deleteDirectory, deleteDirectoryMutation, deleteForkedExtension, deleteForkedExtensionMutation, deleteGitHubConnector, deleteGitHubConnectorMutation, deleteHealthCheck, deleteHealthCheckMutation, deleteSmtpConfig, deleteSmtpConfigMutation, deleteWebhookConfig, deleteWebhookConfigMutation, deployApplication, deployApplicationMutation, deployProject, deployProjectMutation, duplicateProject, duplicateProjectMutation, executeACommandOnTheHostMachine, executeACommandOnTheHostMachineMutation, forkExtension, forkExtensionMutation, generateRandomSubdomain, generateRandomSubdomainOptions, generateRandomSubdomainQueryKey, getApplication, getApplicationLogs, getApplicationLogsInfiniteOptions, getApplicationLogsInfiniteQueryKey, getApplicationLogsOptions, getApplicationLogsQueryKey, getApplicationOptions, getApplicationQueryKey, getBootstrapSessionData, getBootstrapSessionDataOptions, getBootstrapSessionDataQueryKey, getContainer, getContainerLogs, getContainerLogsMutation, getContainerOptions, getContainerQueryKey, getCurrentUserProfile, getCurrentUserProfileOptions, getCurrentUserProfileQueryKey, getDeployment, getDeploymentLogs, getDeploymentLogsInfiniteOptions, getDeploymentLogsInfiniteQueryKey, getDeploymentLogsOptions, getDeploymentLogsQueryKey, getDeploymentOptions, getDeploymentQueryKey, getExecution, getExecutionOptions, getExecutionQueryKey, getExtensionByExtensionId, getExtensionByExtensionIdOptions, getExtensionByExtensionIdQueryKey, getExtensionById, getExtensionByIdOptions, getExtensionByIdQueryKey, getHealthCheckStats, getHealthCheckStatsOptions, getHealthCheckStatsQueryKey, getHealthChecks, getHealthChecksOptions, getHealthChecksQueryKey, getMachineSystemStats, getMachineSystemStatsOptions, getMachineSystemStatsQueryKey, getNotificationPreferences, getNotificationPreferencesOptions, getNotificationPreferencesQueryKey, getSmtpConfig, getSmtpConfigOptions, getSmtpConfigQueryKey, getSshConnectionStatus, getSshConnectionStatusOptions, getSshConnectionStatusQueryKey, getTrailSessionStatus, getTrailSessionStatusOptions, getTrailSessionStatusQueryKey, getUserPreferences, getUserPreferencesOptions, getUserPreferencesQueryKey, getUserSettings, getUserSettingsOptions, getUserSettingsQueryKey, getWebhookConfig, getWebhookConfigOptions, getWebhookConfigQueryKey, handleGitHubWebhook, handleGitHubWebhookMutation, healthCheck, healthCheckOptions, healthCheckQueryKey, indexApplicationCodebase, indexApplicationCodebaseMutation, initializeCliSession, initializeCliSessionMutation, listApplicationDeployments, listApplicationDeploymentsInfiniteOptions, listApplicationDeploymentsInfiniteQueryKey, listApplicationDeploymentsOptions, listApplicationDeploymentsQueryKey, listApplications, listApplicationsInfiniteOptions, listApplicationsInfiniteQueryKey, listApplicationsOptions, listApplicationsQueryKey, listAuditLogs, listAuditLogsInfiniteOptions, listAuditLogsInfiniteQueryKey, listAuditLogsOptions, listAuditLogsQueryKey, listComposeServices, listComposeServicesOptions, listComposeServicesQueryKey, listContainers, listContainersOptions, listContainersQueryKey, listDomains, listDomainsOptions, listDomainsQueryKey, listExecutionLogs, listExecutionLogsOptions, listExecutionLogsQueryKey, listExtensionCategories, listExtensionCategoriesOptions, listExtensionCategoriesQueryKey, listExtensionExecutions, listExtensionExecutionsOptions, listExtensionExecutionsQueryKey, listExtensions, listExtensionsInfiniteOptions, listExtensionsInfiniteQueryKey, listExtensionsOptions, listExtensionsQueryKey, listFamilyEnvironments, listFamilyEnvironmentsOptions, listFamilyEnvironmentsQueryKey, listFeatureFlags, listFeatureFlagsOptions, listFeatureFlagsQueryKey, listFiles, listFilesOptions, listFilesQueryKey, listGitHubConnectors, listGitHubConnectorsOptions, listGitHubConnectorsQueryKey, listGitHubRepositories, listGitHubRepositoriesOptions, listGitHubRepositoriesQueryKey, listHealthCheckResults, listHealthCheckResultsOptions, listHealthCheckResultsQueryKey, listImages, listImagesMutation, listProjectsInFamily, listProjectsInFamilyOptions, listProjectsInFamilyQueryKey, listRepositoryBranches, listRepositoryBranchesMutation, listServers, listServersInfiniteOptions, listServersInfiniteQueryKey, listServersOptions, listServersQueryKey, markOnboardingComplete, markOnboardingCompleteMutation, moveDirectory, moveDirectoryMutation, pauseLiveDeployService, pauseLiveDeployServiceMutation, performUpdate, performUpdateMutation, previewComposeServices, previewComposeServicesMutation, provisionTrailResources, provisionTrailResourcesMutation, pruneBuildCache, pruneBuildCacheMutation, pruneImages, pruneImagesMutation, recoverApplication, recoverApplicationMutation, redeployApplication, redeployApplicationMutation, removeApplicationDomain, removeApplicationDomainMutation, removeContainer, removeContainerMutation, removeCustomDomain, removeCustomDomainMutation, restartContainer, restartContainerMutation, restartDeployment, restartDeploymentMutation, rollbackDeployment, rollbackDeploymentMutation, runExtension, runExtensionMutation, sendNotification, sendNotificationMutation, startContainer, startContainerMutation, stopContainer, stopContainerMutation, toggleHealthCheck, toggleHealthCheckMutation, updateApplication, updateApplicationLabels, updateApplicationLabelsMutation, updateApplicationMutation, updateAutoUpdateSettings, updateAutoUpdateSettingsMutation, updateContainerResources, updateContainerResourcesMutation, updateFeatureFlag, updateFeatureFlagMutation, updateFontSettings, updateFontSettingsMutation, updateGitHubConnector, updateGitHubConnectorMutation, updateHealthCheck, updateHealthCheckMutation, updateLanguageSettings, updateLanguageSettingsMutation, updateNotificationPreferences, updateNotificationPreferencesMutation, updateSmtpConfig, updateSmtpConfigMutation, updateThemeSettings, updateThemeSettingsMutation, updateUserAvatar, updateUserAvatarMutation, updateUserName, updateUserNameMutation, updateUserPreferences, updateUserPreferencesMutation, updateWebhookConfig, updateWebhookConfigMutation, uploadFile, uploadFileMutation, verifyCustomDomain, verifyCustomDomainMutation, zAddApplicationDomainData, zAddApplicationDomainRequest, zAddApplicationDomainResponse, zAddApplicationToFamilyRequest, zAddCustomDomainData, zAddCustomDomainRequest, zAddCustomDomainResponse, zAddProjectToFamilyData, zAddProjectToFamilyResponse, zAdminRegisteredResponse, zApplication, zApplicationDeployment, zApplicationDomain, zApplicationLogs, zApplicationResponse, zBootstrapResponse, zCancelExecutionData, zCancelExecutionResponse, zCategoriesResponse, zCheckAdminRegistrationData, zCheckAdminRegistrationResponse, zCheckCustomDomainDnsData, zCheckCustomDomainDnsResponse, zCheckForUpdatesData, zCheckForUpdatesResponse, zCheckIfFeatureIsEnabledData, zCheckIfFeatureIsEnabledResponse, zCheckOnboardingStatusData, zCheckOnboardingStatusResponse, zCliInitRequest, zCliInitResponse, zComposeService, zComposeServicesResponse, zContainerActionResponse, zContainerLogsRequest, zContainerLogsResponse, zCopyDirectory, zCopyDirectoryData, zCopyDirectoryResponse, zCreateDeploymentRequest, zCreateDirectoryData, zCreateDirectoryRequest, zCreateDirectoryResponse, zCreateGitHubConnectorData, zCreateGitHubConnectorResponse, zCreateGithubConnectorRequest, zCreateHealthCheckData, zCreateHealthCheckRequest, zCreateHealthCheckResponse, zCreateProjectData, zCreateProjectRequest, zCreateProjectResponse, zCreateSmtpConfigData, zCreateSmtpConfigRequest, zCreateSmtpConfigResponse, zCreateWebhookConfigData, zCreateWebhookConfigRequest, zCreateWebhookConfigResponse, zCustomDomainResponse, zDeleteApplicationData, zDeleteApplicationResponse, zDeleteDeploymentRequest, zDeleteDirectoryData, zDeleteDirectoryRequest, zDeleteDirectoryResponse, zDeleteForkedExtensionData, zDeleteForkedExtensionResponse, zDeleteGitHubConnectorData, zDeleteGitHubConnectorResponse, zDeleteGithubConnectorRequest, zDeleteHealthCheckData, zDeleteHealthCheckResponse, zDeleteSmtpConfigData, zDeleteSmtpConfigRequest, zDeleteSmtpConfigResponse, zDeleteWebhookConfigData, zDeleteWebhookConfigRequest, zDeleteWebhookConfigResponse, zDeployApplicationData, zDeployApplicationResponse, zDeployProjectData, zDeployProjectRequest, zDeployProjectResponse, zDeploymentResponse, zDnsCheckResponse, zDnsSetupResponse, zDuplicateProjectData, zDuplicateProjectRequest, zDuplicateProjectResponse, zEnvironmentsInFamilyResponse, zErrorEnvelope, zExecuteACommandOnTheHostMachineData, zExecuteACommandOnTheHostMachineResponse, zExecutionResponse, zExtension, zExtensionExecution, zExtensionResponse, zForkExtensionData, zForkExtensionRequest, zForkExtensionResponse, zGenerateRandomSubdomainData, zGenerateRandomSubdomainResponse, zGetActivitiesResponse, zGetApplicationData, zGetApplicationLogsData, zGetApplicationLogsResponse, zGetApplicationResponse, zGetBootstrapSessionDataData, zGetBootstrapSessionDataResponse, zGetContainerData, zGetContainerLogsData, zGetContainerLogsResponse, zGetContainerResponse, zGetContainerResponse2, zGetCurrentUserProfileData, zGetCurrentUserProfileResponse, zGetDeploymentData, zGetDeploymentLogsData, zGetDeploymentLogsResponse, zGetDeploymentResponse, zGetExecutionData, zGetExecutionResponse, zGetExtensionByExtensionIdData, zGetExtensionByExtensionIdResponse, zGetExtensionByIdData, zGetExtensionByIdResponse, zGetGithubRepositoryBranchesRequest, zGetHealthCheckStatsData, zGetHealthCheckStatsResponse, zGetHealthChecksData, zGetHealthChecksResponse, zGetMachineSystemStatsData, zGetMachineSystemStatsResponse, zGetNotificationPreferencesData, zGetNotificationPreferencesResponse, zGetSmtpConfigData, zGetSmtpConfigResponse, zGetSshConnectionStatusData, zGetSshConnectionStatusResponse, zGetTrailSessionStatusData, zGetTrailSessionStatusResponse, zGetUserPreferencesData, zGetUserPreferencesResponse, zGetUserSettingsData, zGetUserSettingsResponse, zGetWebhookConfigData, zGetWebhookConfigResponse, zHandleGitHubWebhookData, zHandleGitHubWebhookResponse, zHealthCheckData, zHealthCheckMessageResponse, zHealthCheckResponse, zHealthCheckResponse2, zHealthCheckResult, zHealthCheckResultsResponse, zHealthCheckStatsResponse, zHostExecRequest, zHostExecResponse, zHttpError, zIndexApplicationCodebaseData, zIndexApplicationCodebaseResponse, zIndexCodebaseResponse, zInitializeCliSessionData, zInitializeCliSessionResponse, zIsFeatureEnabledResponse, zIsOnboardedResponse, zLabelsResponse, zListApplicationDeploymentsData, zListApplicationDeploymentsResponse, zListApplicationsData, zListApplicationsResponse, zListApplicationsResponse2, zListAuditLogsData, zListAuditLogsResponse, zListBranchesResponse, zListComposeServicesData, zListComposeServicesResponse, zListConnectorsResponse, zListContainersData, zListContainersResponse, zListContainersResponse2, zListDeploymentsResponse, zListDomainsData, zListDomainsResponse, zListDomainsResponse2, zListExecutionLogsData, zListExecutionLogsResponse, zListExecutionsResponse, zListExtensionCategoriesData, zListExtensionCategoriesResponse, zListExtensionExecutionsData, zListExtensionExecutionsResponse, zListExtensionsData, zListExtensionsResponse, zListExtensionsResponse2, zListFamilyEnvironmentsData, zListFamilyEnvironmentsResponse, zListFeatureFlagsData, zListFeatureFlagsResponse, zListFeatureFlagsResponse2, zListFilesData, zListFilesResponse, zListFilesResponse2, zListGitHubConnectorsData, zListGitHubConnectorsResponse, zListGitHubRepositoriesData, zListGitHubRepositoriesResponse, zListHealthCheckResultsData, zListHealthCheckResultsResponse, zListImagesData, zListImagesRequest, zListImagesResponse, zListImagesResponse2, zListLogsResponse, zListProjectsInFamilyData, zListProjectsInFamilyResponse, zListRepositoriesResponse, zListRepositoryBranchesData, zListRepositoryBranchesResponse, zListServersData, zListServersResponse, zListServersResponse2, zLogsResponse, zMarkOnboardingCompleteData, zMarkOnboardingCompleteResponse, zMarkOnboardingCompleteResponse2, zMessageResponse, zMoveDirectory, zMoveDirectoryData, zMoveDirectoryResponse, zPauseLiveDeployServiceData, zPauseLiveDeployServiceResponse, zPauseRequest, zPauseResponse, zPerformUpdateData, zPerformUpdateResponse, zPreferencesResponse, zPreviewComposeRequest, zPreviewComposeResponse, zPreviewComposeServicesData, zPreviewComposeServicesResponse, zProjectFamilyResponse, zProvisionRequest, zProvisionTrailResourcesData, zProvisionTrailResourcesResponse, zProvisionTrailResponse, zPruneBuildCacheData, zPruneBuildCacheRequest, zPruneBuildCacheResponse, zPruneImagesData, zPruneImagesRequest, zPruneImagesResponse, zPruneImagesResponse2, zRandomSubdomainResponseWrapper, zReDeployApplicationRequest, zRecoverApplicationData, zRecoverApplicationResponse, zRecoverRequest, zRecoverResponse, zRedeployApplicationData, zRedeployApplicationResponse, zRemoveApplicationDomainData, zRemoveApplicationDomainRequest, zRemoveApplicationDomainResponse, zRemoveContainerData, zRemoveContainerResponse, zRemoveCustomDomainData, zRemoveCustomDomainRequest, zRemoveCustomDomainResponse, zRestartContainerData, zRestartContainerResponse, zRestartDeploymentData, zRestartDeploymentRequest, zRestartDeploymentResponse, zRollbackDeploymentData, zRollbackDeploymentRequest, zRollbackDeploymentResponse, zRunExtensionData, zRunExtensionRequest, zRunExtensionResponse, zSendNotificationData, zSendNotificationRequest, zSendNotificationResponse, zSendNotificationResponse2, zSmtpConfigResponse, zSshConnectionStatusResponse, zStartContainerData, zStartContainerResponse, zStopContainerData, zStopContainerResponse, zSystemStatsResponse, zToggleHealthCheckData, zToggleHealthCheckRequest, zToggleHealthCheckResponse, zTrailStatusEnvelopeResponse, zUnknownInterface, zUpdateApplicationData, zUpdateApplicationLabelsData, zUpdateApplicationLabelsResponse, zUpdateApplicationResponse, zUpdateAutoUpdateRequest, zUpdateAutoUpdateSettingsData, zUpdateAutoUpdateSettingsResponse, zUpdateAvatarRequest, zUpdateCheckResponse, zUpdateContainerResourcesData, zUpdateContainerResourcesRequest, zUpdateContainerResourcesResponse, zUpdateContainerResourcesResponse2, zUpdateDeploymentRequest, zUpdateFeatureFlagData, zUpdateFeatureFlagRequest, zUpdateFeatureFlagResponse, zUpdateFontRequest, zUpdateFontSettingsData, zUpdateFontSettingsResponse, zUpdateGitHubConnectorData, zUpdateGitHubConnectorResponse, zUpdateGithubConnectorRequest, zUpdateHealthCheckData, zUpdateHealthCheckRequest, zUpdateHealthCheckResponse, zUpdateLabelsRequest, zUpdateLanguageRequest, zUpdateLanguageSettingsData, zUpdateLanguageSettingsResponse, zUpdateNotificationPreferencesData, zUpdateNotificationPreferencesResponse, zUpdatePreferenceRequest, zUpdateRequest, zUpdateResponse, zUpdateSmtpConfigData, zUpdateSmtpConfigRequest, zUpdateSmtpConfigResponse, zUpdateThemeRequest, zUpdateThemeSettingsData, zUpdateThemeSettingsResponse, zUpdateUserAvatarData, zUpdateUserAvatarResponse, zUpdateUserNameData, zUpdateUserNameRequest, zUpdateUserNameResponse, zUpdateUserPreferencesData, zUpdateUserPreferencesResponse, zUpdateUsernameResponse, zUpdateWebhookConfigData, zUpdateWebhookConfigRequest, zUpdateWebhookConfigResponse, zUploadFileData, zUploadFileResponse, zUser, zUserPreferencesData, zUserPreferencesResponse, zUserResponse, zUserSettingsResponse, zVerifyCustomDomainData, zVerifyCustomDomainRequest, zVerifyCustomDomainResponse, zWebhookConfigResponse };
|
|
92555
|
+
export { type AddApplicationDomainData, type AddApplicationDomainError, type AddApplicationDomainErrors, type AddApplicationDomainRequest, type AddApplicationDomainResponse, type AddApplicationDomainResponses, type AddApplicationToFamilyRequest, type AddCustomDomainData, type AddCustomDomainError, type AddCustomDomainErrors, type AddCustomDomainRequest, type AddCustomDomainResponse, type AddCustomDomainResponses, type AddProjectToFamilyData, type AddProjectToFamilyError, type AddProjectToFamilyErrors, type AddProjectToFamilyResponse, type AddProjectToFamilyResponses, type AdminRegisteredResponse, type Application, type ApplicationDeployment, type ApplicationDomain, type ApplicationLogs, type ApplicationResponse, type BootstrapResponse, type CancelExecutionData, type CancelExecutionError, type CancelExecutionErrors, type CancelExecutionResponse, type CancelExecutionResponses, type CategoriesResponse, type CheckAdminRegistrationData, type CheckAdminRegistrationError, type CheckAdminRegistrationErrors, type CheckAdminRegistrationResponse, type CheckAdminRegistrationResponses, type CheckCustomDomainDnsData, type CheckCustomDomainDnsError, type CheckCustomDomainDnsErrors, type CheckCustomDomainDnsResponse, type CheckCustomDomainDnsResponses, type CheckForUpdatesData, type CheckForUpdatesError, type CheckForUpdatesErrors, type CheckForUpdatesResponse, type CheckForUpdatesResponses, type CheckIfFeatureIsEnabledData, type CheckIfFeatureIsEnabledError, type CheckIfFeatureIsEnabledErrors, type CheckIfFeatureIsEnabledResponse, type CheckIfFeatureIsEnabledResponses, type CheckOnboardingStatusData, type CheckOnboardingStatusError, type CheckOnboardingStatusErrors, type CheckOnboardingStatusResponse, type CheckOnboardingStatusResponses, type CliInitRequest, type CliInitResponse, type ClientOptions, type ComposeService, type ComposeServicesResponse, type ContainerActionResponse, type ContainerLogsRequest, type ContainerLogsResponse, type CopyDirectory, type CopyDirectoryData, type CopyDirectoryError, type CopyDirectoryErrors, type CopyDirectoryResponse, type CopyDirectoryResponses, type CreateDeploymentRequest, type CreateDirectoryData, type CreateDirectoryError, type CreateDirectoryErrors, type CreateDirectoryRequest, type CreateDirectoryResponse, type CreateDirectoryResponses, type CreateGitHubConnectorData, type CreateGitHubConnectorError, type CreateGitHubConnectorErrors, type CreateGitHubConnectorResponse, type CreateGitHubConnectorResponses, type CreateGithubConnectorRequest, type CreateHealthCheckData, type CreateHealthCheckError, type CreateHealthCheckErrors, type CreateHealthCheckRequest, type CreateHealthCheckResponse, type CreateHealthCheckResponses, type CreateProjectData, type CreateProjectError, type CreateProjectErrors, type CreateProjectRequest, type CreateProjectResponse, type CreateProjectResponses, type CreateSmtpConfigData, type CreateSmtpConfigError, type CreateSmtpConfigErrors, type CreateSmtpConfigRequest, type CreateSmtpConfigResponse, type CreateSmtpConfigResponses, type CreateWebhookConfigData, type CreateWebhookConfigError, type CreateWebhookConfigErrors, type CreateWebhookConfigRequest, type CreateWebhookConfigResponse, type CreateWebhookConfigResponses, type CustomDomainResponse, type DeleteApplicationData, type DeleteApplicationError, type DeleteApplicationErrors, type DeleteApplicationResponse, type DeleteApplicationResponses, type DeleteDeploymentRequest, type DeleteDirectoryData, type DeleteDirectoryError, type DeleteDirectoryErrors, type DeleteDirectoryRequest, type DeleteDirectoryResponse, type DeleteDirectoryResponses, type DeleteForkedExtensionData, type DeleteForkedExtensionError, type DeleteForkedExtensionErrors, type DeleteForkedExtensionResponse, type DeleteForkedExtensionResponses, type DeleteGitHubConnectorData, type DeleteGitHubConnectorError, type DeleteGitHubConnectorErrors, type DeleteGitHubConnectorResponse, type DeleteGitHubConnectorResponses, type DeleteGithubConnectorRequest, type DeleteHealthCheckData, type DeleteHealthCheckError, type DeleteHealthCheckErrors, type DeleteHealthCheckResponse, type DeleteHealthCheckResponses, type DeleteSmtpConfigData, type DeleteSmtpConfigError, type DeleteSmtpConfigErrors, type DeleteSmtpConfigRequest, type DeleteSmtpConfigResponse, type DeleteSmtpConfigResponses, type DeleteWebhookConfigData, type DeleteWebhookConfigError, type DeleteWebhookConfigErrors, type DeleteWebhookConfigRequest, type DeleteWebhookConfigResponse, type DeleteWebhookConfigResponses, type DeployApplicationData, type DeployApplicationError, type DeployApplicationErrors, type DeployApplicationResponse, type DeployApplicationResponses, type DeployProjectData, type DeployProjectError, type DeployProjectErrors, type DeployProjectRequest, type DeployProjectResponse, type DeployProjectResponses, type DeploymentResponse, type DnsCheckResponse, type DnsSetupResponse, type DuplicateProjectData, type DuplicateProjectError, type DuplicateProjectErrors, type DuplicateProjectRequest, type DuplicateProjectResponse, type DuplicateProjectResponses, type EnvironmentsInFamilyResponse, type ErrorEnvelope, type ExecuteACommandOnTheHostMachineData, type ExecuteACommandOnTheHostMachineError, type ExecuteACommandOnTheHostMachineErrors, type ExecuteACommandOnTheHostMachineResponse, type ExecuteACommandOnTheHostMachineResponses, type ExecutionResponse, type Extension, type ExtensionExecution, type ExtensionResponse, type ForkExtensionData, type ForkExtensionError, type ForkExtensionErrors, type ForkExtensionRequest, type ForkExtensionResponse, type ForkExtensionResponses, type GenerateRandomSubdomainData, type GenerateRandomSubdomainError, type GenerateRandomSubdomainErrors, type GenerateRandomSubdomainResponse, type GenerateRandomSubdomainResponses, type GetActivitiesResponse, type GetApplicationData, type GetApplicationError, type GetApplicationErrors, type GetApplicationLogsData, type GetApplicationLogsError, type GetApplicationLogsErrors, type GetApplicationLogsResponse, type GetApplicationLogsResponses, type GetApplicationResponse, type GetApplicationResponses, type GetBootstrapSessionDataData, type GetBootstrapSessionDataError, type GetBootstrapSessionDataErrors, type GetBootstrapSessionDataResponse, type GetBootstrapSessionDataResponses, type GetContainerData, type GetContainerError, type GetContainerErrors, type GetContainerLogsData, type GetContainerLogsError, type GetContainerLogsErrors, type GetContainerLogsResponse, type GetContainerLogsResponses, type GetContainerResponse, type GetContainerResponse2, type GetContainerResponses, type GetCurrentUserProfileData, type GetCurrentUserProfileError, type GetCurrentUserProfileErrors, type GetCurrentUserProfileResponse, type GetCurrentUserProfileResponses, type GetDeploymentData, type GetDeploymentError, type GetDeploymentErrors, type GetDeploymentLogsData, type GetDeploymentLogsError, type GetDeploymentLogsErrors, type GetDeploymentLogsResponse, type GetDeploymentLogsResponses, type GetDeploymentResponse, type GetDeploymentResponses, type GetExecutionData, type GetExecutionError, type GetExecutionErrors, type GetExecutionResponse, type GetExecutionResponses, type GetExtensionByExtensionIdData, type GetExtensionByExtensionIdError, type GetExtensionByExtensionIdErrors, type GetExtensionByExtensionIdResponse, type GetExtensionByExtensionIdResponses, type GetExtensionByIdData, type GetExtensionByIdError, type GetExtensionByIdErrors, type GetExtensionByIdResponse, type GetExtensionByIdResponses, type GetGithubRepositoryBranchesRequest, type GetHealthCheckStatsData, type GetHealthCheckStatsError, type GetHealthCheckStatsErrors, type GetHealthCheckStatsResponse, type GetHealthCheckStatsResponses, type GetHealthChecksData, type GetHealthChecksError, type GetHealthChecksErrors, type GetHealthChecksResponse, type GetHealthChecksResponses, type GetMachineBillingStatusData, type GetMachineBillingStatusError, type GetMachineBillingStatusErrors, type GetMachineBillingStatusResponse, type GetMachineBillingStatusResponses, type GetMachineLifecycleStatusData, type GetMachineLifecycleStatusError, type GetMachineLifecycleStatusErrors, type GetMachineLifecycleStatusResponse, type GetMachineLifecycleStatusResponses, type GetMachineSystemStatsData, type GetMachineSystemStatsError, type GetMachineSystemStatsErrors, type GetMachineSystemStatsResponse, type GetMachineSystemStatsResponses, type GetNotificationPreferencesData, type GetNotificationPreferencesError, type GetNotificationPreferencesErrors, type GetNotificationPreferencesResponse, type GetNotificationPreferencesResponses, type GetSmtpConfigData, type GetSmtpConfigError, type GetSmtpConfigErrors, type GetSmtpConfigResponse, type GetSmtpConfigResponses, type GetSshConnectionStatusData, type GetSshConnectionStatusError, type GetSshConnectionStatusErrors, type GetSshConnectionStatusResponse, type GetSshConnectionStatusResponses, type GetTrailSessionStatusData, type GetTrailSessionStatusError, type GetTrailSessionStatusErrors, type GetTrailSessionStatusResponse, type GetTrailSessionStatusResponses, type GetUserPreferencesData, type GetUserPreferencesError, type GetUserPreferencesErrors, type GetUserPreferencesResponse, type GetUserPreferencesResponses, type GetUserSettingsData, type GetUserSettingsError, type GetUserSettingsErrors, type GetUserSettingsResponse, type GetUserSettingsResponses, type GetWebhookConfigData, type GetWebhookConfigError, type GetWebhookConfigErrors, type GetWebhookConfigResponse, type GetWebhookConfigResponses, type HandleGitHubWebhookData, type HandleGitHubWebhookError, type HandleGitHubWebhookErrors, type HandleGitHubWebhookResponse, type HandleGitHubWebhookResponses, type HealthCheckData, type HealthCheckError, type HealthCheckErrors, type HealthCheckMessageResponse, type HealthCheckResponse, type HealthCheckResponse2, type HealthCheckResponses, type HealthCheckResult, type HealthCheckResultsResponse, type HealthCheckStatsResponse, type HostExecRequest, type HostExecResponse, type HttpError, type IndexApplicationCodebaseData, type IndexApplicationCodebaseError, type IndexApplicationCodebaseErrors, type IndexApplicationCodebaseResponse, type IndexApplicationCodebaseResponses, type IndexCodebaseResponse, type InitializeCliSessionData, type InitializeCliSessionError, type InitializeCliSessionErrors, type InitializeCliSessionResponse, type InitializeCliSessionResponses, type IsFeatureEnabledResponse, type IsOnboardedResponse, type LabelsResponse, type ListApplicationDeploymentsData, type ListApplicationDeploymentsError, type ListApplicationDeploymentsErrors, type ListApplicationDeploymentsResponse, type ListApplicationDeploymentsResponses, type ListApplicationsData, type ListApplicationsError, type ListApplicationsErrors, type ListApplicationsResponse, type ListApplicationsResponse2, type ListApplicationsResponses, type ListAuditLogsData, type ListAuditLogsError, type ListAuditLogsErrors, type ListAuditLogsResponse, type ListAuditLogsResponses, type ListAvailableMachinePlansData, type ListAvailableMachinePlansError, type ListAvailableMachinePlansErrors, type ListAvailableMachinePlansResponse, type ListAvailableMachinePlansResponses, type ListBranchesResponse, type ListComposeServicesData, type ListComposeServicesError, type ListComposeServicesErrors, type ListComposeServicesResponse, type ListComposeServicesResponses, type ListConnectorsResponse, type ListContainersData, type ListContainersError, type ListContainersErrors, type ListContainersResponse, type ListContainersResponse2, type ListContainersResponses, type ListDeploymentsResponse, type ListDomainsData, type ListDomainsError, type ListDomainsErrors, type ListDomainsResponse, type ListDomainsResponse2, type ListDomainsResponses, type ListExecutionLogsData, type ListExecutionLogsError, type ListExecutionLogsErrors, type ListExecutionLogsResponse, type ListExecutionLogsResponses, type ListExecutionsResponse, type ListExtensionCategoriesData, type ListExtensionCategoriesError, type ListExtensionCategoriesErrors, type ListExtensionCategoriesResponse, type ListExtensionCategoriesResponses, type ListExtensionExecutionsData, type ListExtensionExecutionsError, type ListExtensionExecutionsErrors, type ListExtensionExecutionsResponse, type ListExtensionExecutionsResponses, type ListExtensionsData, type ListExtensionsError, type ListExtensionsErrors, type ListExtensionsResponse, type ListExtensionsResponse2, type ListExtensionsResponses, type ListFamilyEnvironmentsData, type ListFamilyEnvironmentsError, type ListFamilyEnvironmentsErrors, type ListFamilyEnvironmentsResponse, type ListFamilyEnvironmentsResponses, type ListFeatureFlagsData, type ListFeatureFlagsError, type ListFeatureFlagsErrors, type ListFeatureFlagsResponse, type ListFeatureFlagsResponse2, type ListFeatureFlagsResponses, type ListFilesData, type ListFilesError, type ListFilesErrors, type ListFilesResponse, type ListFilesResponse2, type ListFilesResponses, type ListGitHubConnectorsData, type ListGitHubConnectorsError, type ListGitHubConnectorsErrors, type ListGitHubConnectorsResponse, type ListGitHubConnectorsResponses, type ListGitHubRepositoriesData, type ListGitHubRepositoriesError, type ListGitHubRepositoriesErrors, type ListGitHubRepositoriesResponse, type ListGitHubRepositoriesResponses, type ListHealthCheckResultsData, type ListHealthCheckResultsError, type ListHealthCheckResultsErrors, type ListHealthCheckResultsResponse, type ListHealthCheckResultsResponses, type ListImagesData, type ListImagesError, type ListImagesErrors, type ListImagesRequest, type ListImagesResponse, type ListImagesResponse2, type ListImagesResponses, type ListLogsResponse, type ListPlansResponse, type ListProjectsInFamilyData, type ListProjectsInFamilyError, type ListProjectsInFamilyErrors, type ListProjectsInFamilyResponse, type ListProjectsInFamilyResponses, type ListRepositoriesResponse, type ListRepositoryBranchesData, type ListRepositoryBranchesError, type ListRepositoryBranchesErrors, type ListRepositoryBranchesResponse, type ListRepositoryBranchesResponses, type ListServersData, type ListServersError, type ListServersErrors, type ListServersResponse, type ListServersResponse2, type ListServersResponses, type LogsResponse, type MachineActionResponse, type MachineBillingResponse, type MachineStateResponse, type MarkOnboardingCompleteData, type MarkOnboardingCompleteError, type MarkOnboardingCompleteErrors, type MarkOnboardingCompleteResponse, type MarkOnboardingCompleteResponse2, type MarkOnboardingCompleteResponses, type MessageResponse, type MoveDirectory, type MoveDirectoryData, type MoveDirectoryError, type MoveDirectoryErrors, type MoveDirectoryResponse, type MoveDirectoryResponses, type Options, type PauseLiveDeployServiceData, type PauseLiveDeployServiceError, type PauseLiveDeployServiceErrors, type PauseLiveDeployServiceResponse, type PauseLiveDeployServiceResponses, type PauseMachineData, type PauseMachineError, type PauseMachineErrors, type PauseMachineResponse, type PauseMachineResponses, type PauseRequest, type PauseResponse, type PerformUpdateData, type PerformUpdateError, type PerformUpdateErrors, type PerformUpdateResponse, type PerformUpdateResponses, type PreferencesResponse, type PreviewComposeRequest, type PreviewComposeResponse, type PreviewComposeServicesData, type PreviewComposeServicesError, type PreviewComposeServicesErrors, type PreviewComposeServicesResponse, type PreviewComposeServicesResponses, type ProjectFamilyResponse, type ProvisionRequest, type ProvisionTrailResourcesData, type ProvisionTrailResourcesError, type ProvisionTrailResourcesErrors, type ProvisionTrailResourcesResponse, type ProvisionTrailResourcesResponses, type ProvisionTrailResponse, type PruneBuildCacheData, type PruneBuildCacheError, type PruneBuildCacheErrors, type PruneBuildCacheRequest, type PruneBuildCacheResponse, type PruneBuildCacheResponses, type PruneImagesData, type PruneImagesError, type PruneImagesErrors, type PruneImagesRequest, type PruneImagesResponse, type PruneImagesResponse2, type PruneImagesResponses, type QueryKey, type RandomSubdomainResponseWrapper, type ReDeployApplicationRequest, type RecoverApplicationData, type RecoverApplicationError, type RecoverApplicationErrors, type RecoverApplicationResponse, type RecoverApplicationResponses, type RecoverRequest, type RecoverResponse, type RedeployApplicationData, type RedeployApplicationError, type RedeployApplicationErrors, type RedeployApplicationResponse, type RedeployApplicationResponses, type RemoveApplicationDomainData, type RemoveApplicationDomainError, type RemoveApplicationDomainErrors, type RemoveApplicationDomainRequest, type RemoveApplicationDomainResponse, type RemoveApplicationDomainResponses, type RemoveContainerData, type RemoveContainerError, type RemoveContainerErrors, type RemoveContainerResponse, type RemoveContainerResponses, type RemoveCustomDomainData, type RemoveCustomDomainError, type RemoveCustomDomainErrors, type RemoveCustomDomainRequest, type RemoveCustomDomainResponse, type RemoveCustomDomainResponses, type RestartContainerData, type RestartContainerError, type RestartContainerErrors, type RestartContainerResponse, type RestartContainerResponses, type RestartDeploymentData, type RestartDeploymentError, type RestartDeploymentErrors, type RestartDeploymentRequest, type RestartDeploymentResponse, type RestartDeploymentResponses, type RestartMachineData, type RestartMachineError, type RestartMachineErrors, type RestartMachineResponse, type RestartMachineResponses, type ResumeMachineData, type ResumeMachineError, type ResumeMachineErrors, type ResumeMachineResponse, type ResumeMachineResponses, type RollbackDeploymentData, type RollbackDeploymentError, type RollbackDeploymentErrors, type RollbackDeploymentRequest, type RollbackDeploymentResponse, type RollbackDeploymentResponses, type RunExtensionData, type RunExtensionError, type RunExtensionErrors, type RunExtensionRequest, type RunExtensionResponse, type RunExtensionResponses, type SelectAMachinePlanData, type SelectAMachinePlanError, type SelectAMachinePlanErrors, type SelectAMachinePlanResponse, type SelectAMachinePlanResponses, type SelectPlanRequest, type SelectPlanResponse, type SendNotificationData, type SendNotificationError, type SendNotificationErrors, type SendNotificationRequest, type SendNotificationResponse, type SendNotificationResponse2, type SendNotificationResponses, type SmtpConfigResponse, type SshConnectionStatusResponse, type StartContainerData, type StartContainerError, type StartContainerErrors, type StartContainerResponse, type StartContainerResponses, type StopContainerData, type StopContainerError, type StopContainerErrors, type StopContainerResponse, type StopContainerResponses, type SystemStatsResponse, type ToggleHealthCheckData, type ToggleHealthCheckError, type ToggleHealthCheckErrors, type ToggleHealthCheckRequest, type ToggleHealthCheckResponse, type ToggleHealthCheckResponses, type TrailStatusEnvelopeResponse, type UnknownInterface, type UpdateApplicationData, type UpdateApplicationError, type UpdateApplicationErrors, type UpdateApplicationLabelsData, type UpdateApplicationLabelsError, type UpdateApplicationLabelsErrors, type UpdateApplicationLabelsResponse, type UpdateApplicationLabelsResponses, type UpdateApplicationResponse, type UpdateApplicationResponses, type UpdateAutoUpdateRequest, type UpdateAutoUpdateSettingsData, type UpdateAutoUpdateSettingsError, type UpdateAutoUpdateSettingsErrors, type UpdateAutoUpdateSettingsResponse, type UpdateAutoUpdateSettingsResponses, type UpdateAvatarRequest, type UpdateCheckResponse, type UpdateContainerResourcesData, type UpdateContainerResourcesError, type UpdateContainerResourcesErrors, type UpdateContainerResourcesRequest, type UpdateContainerResourcesResponse, type UpdateContainerResourcesResponse2, type UpdateContainerResourcesResponses, type UpdateDeploymentRequest, type UpdateFeatureFlagData, type UpdateFeatureFlagError, type UpdateFeatureFlagErrors, type UpdateFeatureFlagRequest, type UpdateFeatureFlagResponse, type UpdateFeatureFlagResponses, type UpdateFontRequest, type UpdateFontSettingsData, type UpdateFontSettingsError, type UpdateFontSettingsErrors, type UpdateFontSettingsResponse, type UpdateFontSettingsResponses, type UpdateGitHubConnectorData, type UpdateGitHubConnectorError, type UpdateGitHubConnectorErrors, type UpdateGitHubConnectorResponse, type UpdateGitHubConnectorResponses, type UpdateGithubConnectorRequest, type UpdateHealthCheckData, type UpdateHealthCheckError, type UpdateHealthCheckErrors, type UpdateHealthCheckRequest, type UpdateHealthCheckResponse, type UpdateHealthCheckResponses, type UpdateLabelsRequest, type UpdateLanguageRequest, type UpdateLanguageSettingsData, type UpdateLanguageSettingsError, type UpdateLanguageSettingsErrors, type UpdateLanguageSettingsResponse, type UpdateLanguageSettingsResponses, type UpdateNotificationPreferencesData, type UpdateNotificationPreferencesError, type UpdateNotificationPreferencesErrors, type UpdateNotificationPreferencesResponse, type UpdateNotificationPreferencesResponses, type UpdatePreferenceRequest, type UpdateRequest, type UpdateResponse, type UpdateSmtpConfigData, type UpdateSmtpConfigError, type UpdateSmtpConfigErrors, type UpdateSmtpConfigRequest, type UpdateSmtpConfigResponse, type UpdateSmtpConfigResponses, type UpdateThemeRequest, type UpdateThemeSettingsData, type UpdateThemeSettingsError, type UpdateThemeSettingsErrors, type UpdateThemeSettingsResponse, type UpdateThemeSettingsResponses, type UpdateUserAvatarData, type UpdateUserAvatarError, type UpdateUserAvatarErrors, type UpdateUserAvatarResponse, type UpdateUserAvatarResponses, type UpdateUserNameData, type UpdateUserNameError, type UpdateUserNameErrors, type UpdateUserNameRequest, type UpdateUserNameResponse, type UpdateUserNameResponses, type UpdateUserPreferencesData, type UpdateUserPreferencesError, type UpdateUserPreferencesErrors, type UpdateUserPreferencesResponse, type UpdateUserPreferencesResponses, type UpdateUsernameResponse, type UpdateWebhookConfigData, type UpdateWebhookConfigError, type UpdateWebhookConfigErrors, type UpdateWebhookConfigRequest, type UpdateWebhookConfigResponse, type UpdateWebhookConfigResponses, type UploadFileData, type UploadFileError, type UploadFileErrors, type UploadFileResponse, type UploadFileResponses, type User, type UserPreferencesData, type UserPreferencesResponse, type UserResponse, type UserSettingsResponse, type VerifyCustomDomainData, type VerifyCustomDomainError, type VerifyCustomDomainErrors, type VerifyCustomDomainRequest, type VerifyCustomDomainResponse, type VerifyCustomDomainResponses, type WebhookConfigResponse, addApplicationDomain, addApplicationDomainMutation, addCustomDomain, addCustomDomainMutation, addProjectToFamily, addProjectToFamilyMutation, cancelExecution, cancelExecutionMutation, checkAdminRegistration, checkAdminRegistrationOptions, checkAdminRegistrationQueryKey, checkCustomDomainDns, checkCustomDomainDnsOptions, checkCustomDomainDnsQueryKey, checkForUpdates, checkForUpdatesOptions, checkForUpdatesQueryKey, checkIfFeatureIsEnabled, checkIfFeatureIsEnabledOptions, checkIfFeatureIsEnabledQueryKey, checkOnboardingStatus, checkOnboardingStatusOptions, checkOnboardingStatusQueryKey, copyDirectory, copyDirectoryMutation, createDirectory, createDirectoryMutation, createGitHubConnector, createGitHubConnectorMutation, createHealthCheck, createHealthCheckMutation, createProject, createProjectMutation, createSmtpConfig, createSmtpConfigMutation, createWebhookConfig, createWebhookConfigMutation, deleteApplication, deleteApplicationMutation, deleteDirectory, deleteDirectoryMutation, deleteForkedExtension, deleteForkedExtensionMutation, deleteGitHubConnector, deleteGitHubConnectorMutation, deleteHealthCheck, deleteHealthCheckMutation, deleteSmtpConfig, deleteSmtpConfigMutation, deleteWebhookConfig, deleteWebhookConfigMutation, deployApplication, deployApplicationMutation, deployProject, deployProjectMutation, duplicateProject, duplicateProjectMutation, executeACommandOnTheHostMachine, executeACommandOnTheHostMachineMutation, forkExtension, forkExtensionMutation, generateRandomSubdomain, generateRandomSubdomainOptions, generateRandomSubdomainQueryKey, getApplication, getApplicationLogs, getApplicationLogsInfiniteOptions, getApplicationLogsInfiniteQueryKey, getApplicationLogsOptions, getApplicationLogsQueryKey, getApplicationOptions, getApplicationQueryKey, getBootstrapSessionData, getBootstrapSessionDataOptions, getBootstrapSessionDataQueryKey, getContainer, getContainerLogs, getContainerLogsMutation, getContainerOptions, getContainerQueryKey, getCurrentUserProfile, getCurrentUserProfileOptions, getCurrentUserProfileQueryKey, getDeployment, getDeploymentLogs, getDeploymentLogsInfiniteOptions, getDeploymentLogsInfiniteQueryKey, getDeploymentLogsOptions, getDeploymentLogsQueryKey, getDeploymentOptions, getDeploymentQueryKey, getExecution, getExecutionOptions, getExecutionQueryKey, getExtensionByExtensionId, getExtensionByExtensionIdOptions, getExtensionByExtensionIdQueryKey, getExtensionById, getExtensionByIdOptions, getExtensionByIdQueryKey, getHealthCheckStats, getHealthCheckStatsOptions, getHealthCheckStatsQueryKey, getHealthChecks, getHealthChecksOptions, getHealthChecksQueryKey, getMachineBillingStatus, getMachineBillingStatusOptions, getMachineBillingStatusQueryKey, getMachineLifecycleStatus, getMachineLifecycleStatusOptions, getMachineLifecycleStatusQueryKey, getMachineSystemStats, getMachineSystemStatsOptions, getMachineSystemStatsQueryKey, getNotificationPreferences, getNotificationPreferencesOptions, getNotificationPreferencesQueryKey, getSmtpConfig, getSmtpConfigOptions, getSmtpConfigQueryKey, getSshConnectionStatus, getSshConnectionStatusOptions, getSshConnectionStatusQueryKey, getTrailSessionStatus, getTrailSessionStatusOptions, getTrailSessionStatusQueryKey, getUserPreferences, getUserPreferencesOptions, getUserPreferencesQueryKey, getUserSettings, getUserSettingsOptions, getUserSettingsQueryKey, getWebhookConfig, getWebhookConfigOptions, getWebhookConfigQueryKey, handleGitHubWebhook, handleGitHubWebhookMutation, healthCheck, healthCheckOptions, healthCheckQueryKey, indexApplicationCodebase, indexApplicationCodebaseMutation, initializeCliSession, initializeCliSessionMutation, listApplicationDeployments, listApplicationDeploymentsInfiniteOptions, listApplicationDeploymentsInfiniteQueryKey, listApplicationDeploymentsOptions, listApplicationDeploymentsQueryKey, listApplications, listApplicationsInfiniteOptions, listApplicationsInfiniteQueryKey, listApplicationsOptions, listApplicationsQueryKey, listAuditLogs, listAuditLogsInfiniteOptions, listAuditLogsInfiniteQueryKey, listAuditLogsOptions, listAuditLogsQueryKey, listAvailableMachinePlans, listAvailableMachinePlansOptions, listAvailableMachinePlansQueryKey, listComposeServices, listComposeServicesOptions, listComposeServicesQueryKey, listContainers, listContainersOptions, listContainersQueryKey, listDomains, listDomainsOptions, listDomainsQueryKey, listExecutionLogs, listExecutionLogsOptions, listExecutionLogsQueryKey, listExtensionCategories, listExtensionCategoriesOptions, listExtensionCategoriesQueryKey, listExtensionExecutions, listExtensionExecutionsOptions, listExtensionExecutionsQueryKey, listExtensions, listExtensionsInfiniteOptions, listExtensionsInfiniteQueryKey, listExtensionsOptions, listExtensionsQueryKey, listFamilyEnvironments, listFamilyEnvironmentsOptions, listFamilyEnvironmentsQueryKey, listFeatureFlags, listFeatureFlagsOptions, listFeatureFlagsQueryKey, listFiles, listFilesOptions, listFilesQueryKey, listGitHubConnectors, listGitHubConnectorsOptions, listGitHubConnectorsQueryKey, listGitHubRepositories, listGitHubRepositoriesOptions, listGitHubRepositoriesQueryKey, listHealthCheckResults, listHealthCheckResultsOptions, listHealthCheckResultsQueryKey, listImages, listImagesMutation, listProjectsInFamily, listProjectsInFamilyOptions, listProjectsInFamilyQueryKey, listRepositoryBranches, listRepositoryBranchesMutation, listServers, listServersInfiniteOptions, listServersInfiniteQueryKey, listServersOptions, listServersQueryKey, markOnboardingComplete, markOnboardingCompleteMutation, moveDirectory, moveDirectoryMutation, pauseLiveDeployService, pauseLiveDeployServiceMutation, pauseMachine, pauseMachineMutation, performUpdate, performUpdateMutation, previewComposeServices, previewComposeServicesMutation, provisionTrailResources, provisionTrailResourcesMutation, pruneBuildCache, pruneBuildCacheMutation, pruneImages, pruneImagesMutation, recoverApplication, recoverApplicationMutation, redeployApplication, redeployApplicationMutation, removeApplicationDomain, removeApplicationDomainMutation, removeContainer, removeContainerMutation, removeCustomDomain, removeCustomDomainMutation, restartContainer, restartContainerMutation, restartDeployment, restartDeploymentMutation, restartMachine, restartMachineMutation, resumeMachine, resumeMachineMutation, rollbackDeployment, rollbackDeploymentMutation, runExtension, runExtensionMutation, selectAMachinePlan, selectAMachinePlanMutation, sendNotification, sendNotificationMutation, startContainer, startContainerMutation, stopContainer, stopContainerMutation, toggleHealthCheck, toggleHealthCheckMutation, updateApplication, updateApplicationLabels, updateApplicationLabelsMutation, updateApplicationMutation, updateAutoUpdateSettings, updateAutoUpdateSettingsMutation, updateContainerResources, updateContainerResourcesMutation, updateFeatureFlag, updateFeatureFlagMutation, updateFontSettings, updateFontSettingsMutation, updateGitHubConnector, updateGitHubConnectorMutation, updateHealthCheck, updateHealthCheckMutation, updateLanguageSettings, updateLanguageSettingsMutation, updateNotificationPreferences, updateNotificationPreferencesMutation, updateSmtpConfig, updateSmtpConfigMutation, updateThemeSettings, updateThemeSettingsMutation, updateUserAvatar, updateUserAvatarMutation, updateUserName, updateUserNameMutation, updateUserPreferences, updateUserPreferencesMutation, updateWebhookConfig, updateWebhookConfigMutation, uploadFile, uploadFileMutation, verifyCustomDomain, verifyCustomDomainMutation, zAddApplicationDomainData, zAddApplicationDomainRequest, zAddApplicationDomainResponse, zAddApplicationToFamilyRequest, zAddCustomDomainData, zAddCustomDomainRequest, zAddCustomDomainResponse, zAddProjectToFamilyData, zAddProjectToFamilyResponse, zAdminRegisteredResponse, zApplication, zApplicationDeployment, zApplicationDomain, zApplicationLogs, zApplicationResponse, zBootstrapResponse, zCancelExecutionData, zCancelExecutionResponse, zCategoriesResponse, zCheckAdminRegistrationData, zCheckAdminRegistrationResponse, zCheckCustomDomainDnsData, zCheckCustomDomainDnsResponse, zCheckForUpdatesData, zCheckForUpdatesResponse, zCheckIfFeatureIsEnabledData, zCheckIfFeatureIsEnabledResponse, zCheckOnboardingStatusData, zCheckOnboardingStatusResponse, zCliInitRequest, zCliInitResponse, zComposeService, zComposeServicesResponse, zContainerActionResponse, zContainerLogsRequest, zContainerLogsResponse, zCopyDirectory, zCopyDirectoryData, zCopyDirectoryResponse, zCreateDeploymentRequest, zCreateDirectoryData, zCreateDirectoryRequest, zCreateDirectoryResponse, zCreateGitHubConnectorData, zCreateGitHubConnectorResponse, zCreateGithubConnectorRequest, zCreateHealthCheckData, zCreateHealthCheckRequest, zCreateHealthCheckResponse, zCreateProjectData, zCreateProjectRequest, zCreateProjectResponse, zCreateSmtpConfigData, zCreateSmtpConfigRequest, zCreateSmtpConfigResponse, zCreateWebhookConfigData, zCreateWebhookConfigRequest, zCreateWebhookConfigResponse, zCustomDomainResponse, zDeleteApplicationData, zDeleteApplicationResponse, zDeleteDeploymentRequest, zDeleteDirectoryData, zDeleteDirectoryRequest, zDeleteDirectoryResponse, zDeleteForkedExtensionData, zDeleteForkedExtensionResponse, zDeleteGitHubConnectorData, zDeleteGitHubConnectorResponse, zDeleteGithubConnectorRequest, zDeleteHealthCheckData, zDeleteHealthCheckResponse, zDeleteSmtpConfigData, zDeleteSmtpConfigRequest, zDeleteSmtpConfigResponse, zDeleteWebhookConfigData, zDeleteWebhookConfigRequest, zDeleteWebhookConfigResponse, zDeployApplicationData, zDeployApplicationResponse, zDeployProjectData, zDeployProjectRequest, zDeployProjectResponse, zDeploymentResponse, zDnsCheckResponse, zDnsSetupResponse, zDuplicateProjectData, zDuplicateProjectRequest, zDuplicateProjectResponse, zEnvironmentsInFamilyResponse, zErrorEnvelope, zExecuteACommandOnTheHostMachineData, zExecuteACommandOnTheHostMachineResponse, zExecutionResponse, zExtension, zExtensionExecution, zExtensionResponse, zForkExtensionData, zForkExtensionRequest, zForkExtensionResponse, zGenerateRandomSubdomainData, zGenerateRandomSubdomainResponse, zGetActivitiesResponse, zGetApplicationData, zGetApplicationLogsData, zGetApplicationLogsResponse, zGetApplicationResponse, zGetBootstrapSessionDataData, zGetBootstrapSessionDataResponse, zGetContainerData, zGetContainerLogsData, zGetContainerLogsResponse, zGetContainerResponse, zGetContainerResponse2, zGetCurrentUserProfileData, zGetCurrentUserProfileResponse, zGetDeploymentData, zGetDeploymentLogsData, zGetDeploymentLogsResponse, zGetDeploymentResponse, zGetExecutionData, zGetExecutionResponse, zGetExtensionByExtensionIdData, zGetExtensionByExtensionIdResponse, zGetExtensionByIdData, zGetExtensionByIdResponse, zGetGithubRepositoryBranchesRequest, zGetHealthCheckStatsData, zGetHealthCheckStatsResponse, zGetHealthChecksData, zGetHealthChecksResponse, zGetMachineBillingStatusData, zGetMachineBillingStatusResponse, zGetMachineLifecycleStatusData, zGetMachineLifecycleStatusResponse, zGetMachineSystemStatsData, zGetMachineSystemStatsResponse, zGetNotificationPreferencesData, zGetNotificationPreferencesResponse, zGetSmtpConfigData, zGetSmtpConfigResponse, zGetSshConnectionStatusData, zGetSshConnectionStatusResponse, zGetTrailSessionStatusData, zGetTrailSessionStatusResponse, zGetUserPreferencesData, zGetUserPreferencesResponse, zGetUserSettingsData, zGetUserSettingsResponse, zGetWebhookConfigData, zGetWebhookConfigResponse, zHandleGitHubWebhookData, zHandleGitHubWebhookResponse, zHealthCheckData, zHealthCheckMessageResponse, zHealthCheckResponse, zHealthCheckResponse2, zHealthCheckResult, zHealthCheckResultsResponse, zHealthCheckStatsResponse, zHostExecRequest, zHostExecResponse, zHttpError, zIndexApplicationCodebaseData, zIndexApplicationCodebaseResponse, zIndexCodebaseResponse, zInitializeCliSessionData, zInitializeCliSessionResponse, zIsFeatureEnabledResponse, zIsOnboardedResponse, zLabelsResponse, zListApplicationDeploymentsData, zListApplicationDeploymentsResponse, zListApplicationsData, zListApplicationsResponse, zListApplicationsResponse2, zListAuditLogsData, zListAuditLogsResponse, zListAvailableMachinePlansData, zListAvailableMachinePlansResponse, zListBranchesResponse, zListComposeServicesData, zListComposeServicesResponse, zListConnectorsResponse, zListContainersData, zListContainersResponse, zListContainersResponse2, zListDeploymentsResponse, zListDomainsData, zListDomainsResponse, zListDomainsResponse2, zListExecutionLogsData, zListExecutionLogsResponse, zListExecutionsResponse, zListExtensionCategoriesData, zListExtensionCategoriesResponse, zListExtensionExecutionsData, zListExtensionExecutionsResponse, zListExtensionsData, zListExtensionsResponse, zListExtensionsResponse2, zListFamilyEnvironmentsData, zListFamilyEnvironmentsResponse, zListFeatureFlagsData, zListFeatureFlagsResponse, zListFeatureFlagsResponse2, zListFilesData, zListFilesResponse, zListFilesResponse2, zListGitHubConnectorsData, zListGitHubConnectorsResponse, zListGitHubRepositoriesData, zListGitHubRepositoriesResponse, zListHealthCheckResultsData, zListHealthCheckResultsResponse, zListImagesData, zListImagesRequest, zListImagesResponse, zListImagesResponse2, zListLogsResponse, zListPlansResponse, zListProjectsInFamilyData, zListProjectsInFamilyResponse, zListRepositoriesResponse, zListRepositoryBranchesData, zListRepositoryBranchesResponse, zListServersData, zListServersResponse, zListServersResponse2, zLogsResponse, zMachineActionResponse, zMachineBillingResponse, zMachineStateResponse, zMarkOnboardingCompleteData, zMarkOnboardingCompleteResponse, zMarkOnboardingCompleteResponse2, zMessageResponse, zMoveDirectory, zMoveDirectoryData, zMoveDirectoryResponse, zPauseLiveDeployServiceData, zPauseLiveDeployServiceResponse, zPauseMachineData, zPauseMachineResponse, zPauseRequest, zPauseResponse, zPerformUpdateData, zPerformUpdateResponse, zPreferencesResponse, zPreviewComposeRequest, zPreviewComposeResponse, zPreviewComposeServicesData, zPreviewComposeServicesResponse, zProjectFamilyResponse, zProvisionRequest, zProvisionTrailResourcesData, zProvisionTrailResourcesResponse, zProvisionTrailResponse, zPruneBuildCacheData, zPruneBuildCacheRequest, zPruneBuildCacheResponse, zPruneImagesData, zPruneImagesRequest, zPruneImagesResponse, zPruneImagesResponse2, zRandomSubdomainResponseWrapper, zReDeployApplicationRequest, zRecoverApplicationData, zRecoverApplicationResponse, zRecoverRequest, zRecoverResponse, zRedeployApplicationData, zRedeployApplicationResponse, zRemoveApplicationDomainData, zRemoveApplicationDomainRequest, zRemoveApplicationDomainResponse, zRemoveContainerData, zRemoveContainerResponse, zRemoveCustomDomainData, zRemoveCustomDomainRequest, zRemoveCustomDomainResponse, zRestartContainerData, zRestartContainerResponse, zRestartDeploymentData, zRestartDeploymentRequest, zRestartDeploymentResponse, zRestartMachineData, zRestartMachineResponse, zResumeMachineData, zResumeMachineResponse, zRollbackDeploymentData, zRollbackDeploymentRequest, zRollbackDeploymentResponse, zRunExtensionData, zRunExtensionRequest, zRunExtensionResponse, zSelectAMachinePlanData, zSelectAMachinePlanResponse, zSelectPlanRequest, zSelectPlanResponse, zSendNotificationData, zSendNotificationRequest, zSendNotificationResponse, zSendNotificationResponse2, zSmtpConfigResponse, zSshConnectionStatusResponse, zStartContainerData, zStartContainerResponse, zStopContainerData, zStopContainerResponse, zSystemStatsResponse, zToggleHealthCheckData, zToggleHealthCheckRequest, zToggleHealthCheckResponse, zTrailStatusEnvelopeResponse, zUnknownInterface, zUpdateApplicationData, zUpdateApplicationLabelsData, zUpdateApplicationLabelsResponse, zUpdateApplicationResponse, zUpdateAutoUpdateRequest, zUpdateAutoUpdateSettingsData, zUpdateAutoUpdateSettingsResponse, zUpdateAvatarRequest, zUpdateCheckResponse, zUpdateContainerResourcesData, zUpdateContainerResourcesRequest, zUpdateContainerResourcesResponse, zUpdateContainerResourcesResponse2, zUpdateDeploymentRequest, zUpdateFeatureFlagData, zUpdateFeatureFlagRequest, zUpdateFeatureFlagResponse, zUpdateFontRequest, zUpdateFontSettingsData, zUpdateFontSettingsResponse, zUpdateGitHubConnectorData, zUpdateGitHubConnectorResponse, zUpdateGithubConnectorRequest, zUpdateHealthCheckData, zUpdateHealthCheckRequest, zUpdateHealthCheckResponse, zUpdateLabelsRequest, zUpdateLanguageRequest, zUpdateLanguageSettingsData, zUpdateLanguageSettingsResponse, zUpdateNotificationPreferencesData, zUpdateNotificationPreferencesResponse, zUpdatePreferenceRequest, zUpdateRequest, zUpdateResponse, zUpdateSmtpConfigData, zUpdateSmtpConfigRequest, zUpdateSmtpConfigResponse, zUpdateThemeRequest, zUpdateThemeSettingsData, zUpdateThemeSettingsResponse, zUpdateUserAvatarData, zUpdateUserAvatarResponse, zUpdateUserNameData, zUpdateUserNameRequest, zUpdateUserNameResponse, zUpdateUserPreferencesData, zUpdateUserPreferencesResponse, zUpdateUsernameResponse, zUpdateWebhookConfigData, zUpdateWebhookConfigRequest, zUpdateWebhookConfigResponse, zUploadFileData, zUploadFileResponse, zUser, zUserPreferencesData, zUserPreferencesResponse, zUserResponse, zUserSettingsResponse, zVerifyCustomDomainData, zVerifyCustomDomainRequest, zVerifyCustomDomainResponse, zWebhookConfigResponse };
|