@nixopus/api-client 0.0.7 → 0.0.8

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.ts CHANGED
@@ -554,7 +554,16 @@ type ApplicationDeployment = {
554
554
  id?: string;
555
555
  image_s3_key?: string;
556
556
  image_size?: number;
557
- logs?: Array<ApplicationLogs>;
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
+ }>;
558
567
  status?: {
559
568
  application_deployment?: ApplicationDeployment;
560
569
  application_deployment_id?: string;
@@ -2559,6 +2568,24 @@ type HealthCheckStatsResponse = {
2559
2568
  message?: string;
2560
2569
  status?: string;
2561
2570
  };
2571
+ /**
2572
+ * HostExecRequest schema
2573
+ */
2574
+ type HostExecRequest = {
2575
+ command: string;
2576
+ };
2577
+ /**
2578
+ * HostExecResponse schema
2579
+ */
2580
+ type HostExecResponse = {
2581
+ data?: {
2582
+ exit_code?: number;
2583
+ stderr?: string;
2584
+ stdout?: string;
2585
+ };
2586
+ message?: string;
2587
+ status?: string;
2588
+ };
2562
2589
  /**
2563
2590
  * IndexCodebaseResponse schema
2564
2591
  */
@@ -4505,6 +4532,75 @@ type SendNotificationResponse = {
4505
4532
  message?: string;
4506
4533
  status?: string;
4507
4534
  };
4535
+ /**
4536
+ * SystemStatsResponse schema
4537
+ */
4538
+ type SystemStatsResponse = {
4539
+ data?: {
4540
+ architecture?: string;
4541
+ cpu?: {
4542
+ overall?: number;
4543
+ per_core?: Array<{
4544
+ core_id?: number;
4545
+ usage?: number;
4546
+ }>;
4547
+ };
4548
+ cpu_cores?: number;
4549
+ cpu_info?: string;
4550
+ disk?: {
4551
+ allMounts?: Array<{
4552
+ avail?: string;
4553
+ capacity?: string;
4554
+ filesystem?: string;
4555
+ mountPoint?: string;
4556
+ size?: string;
4557
+ used?: string;
4558
+ }>;
4559
+ available?: number;
4560
+ mountPoint?: string;
4561
+ percentage?: number;
4562
+ total?: number;
4563
+ used?: number;
4564
+ };
4565
+ hostname?: string;
4566
+ kernel_version?: string;
4567
+ load?: {
4568
+ fifteenMin?: number;
4569
+ fiveMin?: number;
4570
+ oneMin?: number;
4571
+ uptime?: string;
4572
+ };
4573
+ memory?: {
4574
+ percentage?: number;
4575
+ rawInfo?: string;
4576
+ total?: number;
4577
+ used?: number;
4578
+ };
4579
+ network?: {
4580
+ downloadSpeed?: number;
4581
+ interfaces?: Array<{
4582
+ bytesRecv?: number;
4583
+ bytesSent?: number;
4584
+ dropIn?: number;
4585
+ dropOut?: number;
4586
+ errorIn?: number;
4587
+ errorOut?: number;
4588
+ name?: string;
4589
+ packetsRecv?: number;
4590
+ packetsSent?: number;
4591
+ }>;
4592
+ totalBytesRecv?: number;
4593
+ totalBytesSent?: number;
4594
+ totalPacketsRecv?: number;
4595
+ totalPacketsSent?: number;
4596
+ uploadSpeed?: number;
4597
+ };
4598
+ os_type?: string;
4599
+ timestamp?: string;
4600
+ };
4601
+ message?: string;
4602
+ status?: string;
4603
+ };
4508
4604
  /**
4509
4605
  * ToggleHealthCheckRequest schema
4510
4606
  */
@@ -7635,6 +7731,65 @@ type PauseLiveDeployServiceResponses = {
7635
7731
  200: PauseResponse;
7636
7732
  };
7637
7733
  type PauseLiveDeployServiceResponse = PauseLiveDeployServiceResponses[keyof PauseLiveDeployServiceResponses];
7734
+ type ExecuteACommandOnTheHostMachineData = {
7735
+ /**
7736
+ * Request body for types.HostExecRequest
7737
+ */
7738
+ body: HostExecRequest;
7739
+ headers?: {
7740
+ Accept?: string;
7741
+ };
7742
+ path?: never;
7743
+ query?: never;
7744
+ url: '/api/v1/machine/exec';
7745
+ };
7746
+ type ExecuteACommandOnTheHostMachineErrors = {
7747
+ /**
7748
+ * Bad Request _(validation or deserialization error)_
7749
+ */
7750
+ 400: ErrorEnvelope;
7751
+ /**
7752
+ * Internal Server Error _(panics)_
7753
+ */
7754
+ 500: ErrorEnvelope;
7755
+ default: unknown;
7756
+ };
7757
+ type ExecuteACommandOnTheHostMachineError = ExecuteACommandOnTheHostMachineErrors[keyof ExecuteACommandOnTheHostMachineErrors];
7758
+ type ExecuteACommandOnTheHostMachineResponses = {
7759
+ /**
7760
+ * OK
7761
+ */
7762
+ 200: HostExecResponse;
7763
+ };
7764
+ type ExecuteACommandOnTheHostMachineResponse = ExecuteACommandOnTheHostMachineResponses[keyof ExecuteACommandOnTheHostMachineResponses];
7765
+ type GetMachineSystemStatsData = {
7766
+ body?: never;
7767
+ headers?: {
7768
+ Accept?: string;
7769
+ };
7770
+ path?: never;
7771
+ query?: never;
7772
+ url: '/api/v1/machine/stats';
7773
+ };
7774
+ type GetMachineSystemStatsErrors = {
7775
+ /**
7776
+ * Bad Request _(validation or deserialization error)_
7777
+ */
7778
+ 400: ErrorEnvelope;
7779
+ /**
7780
+ * Internal Server Error _(panics)_
7781
+ */
7782
+ 500: ErrorEnvelope;
7783
+ default: unknown;
7784
+ };
7785
+ type GetMachineSystemStatsError = GetMachineSystemStatsErrors[keyof GetMachineSystemStatsErrors];
7786
+ type GetMachineSystemStatsResponses = {
7787
+ /**
7788
+ * OK
7789
+ */
7790
+ 200: SystemStatsResponse;
7791
+ };
7792
+ type GetMachineSystemStatsResponse = GetMachineSystemStatsResponses[keyof GetMachineSystemStatsResponses];
7638
7793
  type GetNotificationPreferencesData = {
7639
7794
  body?: never;
7640
7795
  headers?: {
@@ -9388,6 +9543,26 @@ declare const toggleHealthCheck: <ThrowOnError extends boolean = false>(options:
9388
9543
  * Side effects: May mutate server state.
9389
9544
  */
9390
9545
  declare const pauseLiveDeployService: <ThrowOnError extends boolean = false>(options: Options<PauseLiveDeployServiceData, ThrowOnError>) => RequestResult<PauseLiveDeployServiceResponses, PauseLiveDeployServiceErrors, ThrowOnError, "fields">;
9546
+ /**
9547
+ * Execute a command on the host machine
9548
+ *
9549
+ * Execute a command on the host machine.
9550
+ *
9551
+ * Auth: Required (bearer token).
9552
+ * Scope: Organization-scoped in authenticated context.
9553
+ * Side effects: May mutate server state.
9554
+ */
9555
+ declare const executeACommandOnTheHostMachine: <ThrowOnError extends boolean = false>(options: Options<ExecuteACommandOnTheHostMachineData, ThrowOnError>) => RequestResult<ExecuteACommandOnTheHostMachineResponses, ExecuteACommandOnTheHostMachineErrors, ThrowOnError, "fields">;
9556
+ /**
9557
+ * Get machine system stats
9558
+ *
9559
+ * Get machine system stats.
9560
+ *
9561
+ * Auth: Required (bearer token).
9562
+ * Scope: Organization-scoped in authenticated context.
9563
+ * Side effects: Read-only operation.
9564
+ */
9565
+ declare const getMachineSystemStats: <ThrowOnError extends boolean = false>(options?: Options<GetMachineSystemStatsData, ThrowOnError>) => RequestResult<GetMachineSystemStatsResponses, GetMachineSystemStatsErrors, ThrowOnError, "fields">;
9391
9566
  /**
9392
9567
  * Get notification preferences
9393
9568
  *
@@ -11478,6 +11653,50 @@ declare const toggleHealthCheckMutation: (options?: Partial<Options<ToggleHealth
11478
11653
  * Side effects: May mutate server state.
11479
11654
  */
11480
11655
  declare const pauseLiveDeployServiceMutation: (options?: Partial<Options<PauseLiveDeployServiceData>>) => UseMutationOptions<PauseLiveDeployServiceResponse, PauseLiveDeployServiceError, Options<PauseLiveDeployServiceData>>;
11656
+ /**
11657
+ * Execute a command on the host machine
11658
+ *
11659
+ * Execute a command on the host machine.
11660
+ *
11661
+ * Auth: Required (bearer token).
11662
+ * Scope: Organization-scoped in authenticated context.
11663
+ * Side effects: May mutate server state.
11664
+ */
11665
+ declare const executeACommandOnTheHostMachineMutation: (options?: Partial<Options<ExecuteACommandOnTheHostMachineData>>) => UseMutationOptions<ExecuteACommandOnTheHostMachineResponse, ExecuteACommandOnTheHostMachineError, Options<ExecuteACommandOnTheHostMachineData>>;
11666
+ declare const getMachineSystemStatsQueryKey: (options?: Options<GetMachineSystemStatsData>) => [Pick<Options<GetMachineSystemStatsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11667
+ _id: string;
11668
+ _infinite?: boolean;
11669
+ tags?: ReadonlyArray<string>;
11670
+ }];
11671
+ /**
11672
+ * Get machine system stats
11673
+ *
11674
+ * Get machine system stats.
11675
+ *
11676
+ * Auth: Required (bearer token).
11677
+ * Scope: Organization-scoped in authenticated context.
11678
+ * Side effects: Read-only operation.
11679
+ */
11680
+ declare const getMachineSystemStatsOptions: (options?: Options<GetMachineSystemStatsData>) => _tanstack_query_core.OmitKeyof<_tanstack_react_query.UseQueryOptions<SystemStatsResponse, unknown, SystemStatsResponse, [Pick<Options<GetMachineSystemStatsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11681
+ _id: string;
11682
+ _infinite?: boolean;
11683
+ tags?: ReadonlyArray<string>;
11684
+ }]>, "queryFn"> & {
11685
+ queryFn?: _tanstack_query_core.QueryFunction<SystemStatsResponse, [Pick<Options<GetMachineSystemStatsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11686
+ _id: string;
11687
+ _infinite?: boolean;
11688
+ tags?: ReadonlyArray<string>;
11689
+ }], never> | undefined;
11690
+ } & {
11691
+ queryKey: [Pick<Options<GetMachineSystemStatsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11692
+ _id: string;
11693
+ _infinite?: boolean;
11694
+ tags?: ReadonlyArray<string>;
11695
+ }] & {
11696
+ [dataTagSymbol]: SystemStatsResponse;
11697
+ [dataTagErrorSymbol]: unknown;
11698
+ };
11699
+ };
11481
11700
  declare const getNotificationPreferencesQueryKey: (options?: Options<GetNotificationPreferencesData>) => [Pick<Options<GetNotificationPreferencesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
11482
11701
  _id: string;
11483
11702
  _infinite?: boolean;
@@ -14210,6 +14429,52 @@ declare const zHealthCheckStatsResponse: z.ZodObject<{
14210
14429
  status?: string | undefined;
14211
14430
  message?: string | undefined;
14212
14431
  }>;
14432
+ /**
14433
+ * HostExecRequest schema
14434
+ */
14435
+ declare const zHostExecRequest: z.ZodObject<{
14436
+ command: z.ZodString;
14437
+ }, "strip", z.ZodTypeAny, {
14438
+ command: string;
14439
+ }, {
14440
+ command: string;
14441
+ }>;
14442
+ /**
14443
+ * HostExecResponse schema
14444
+ */
14445
+ declare const zHostExecResponse: z.ZodObject<{
14446
+ data: z.ZodOptional<z.ZodObject<{
14447
+ exit_code: z.ZodOptional<z.ZodNumber>;
14448
+ stderr: z.ZodOptional<z.ZodString>;
14449
+ stdout: z.ZodOptional<z.ZodString>;
14450
+ }, "strip", z.ZodTypeAny, {
14451
+ stderr?: string | undefined;
14452
+ stdout?: string | undefined;
14453
+ exit_code?: number | undefined;
14454
+ }, {
14455
+ stderr?: string | undefined;
14456
+ stdout?: string | undefined;
14457
+ exit_code?: number | undefined;
14458
+ }>>;
14459
+ message: z.ZodOptional<z.ZodString>;
14460
+ status: z.ZodOptional<z.ZodString>;
14461
+ }, "strip", z.ZodTypeAny, {
14462
+ data?: {
14463
+ stderr?: string | undefined;
14464
+ stdout?: string | undefined;
14465
+ exit_code?: number | undefined;
14466
+ } | undefined;
14467
+ status?: string | undefined;
14468
+ message?: string | undefined;
14469
+ }, {
14470
+ data?: {
14471
+ stderr?: string | undefined;
14472
+ stdout?: string | undefined;
14473
+ exit_code?: number | undefined;
14474
+ } | undefined;
14475
+ status?: string | undefined;
14476
+ message?: string | undefined;
14477
+ }>;
14213
14478
  /**
14214
14479
  * IndexCodebaseResponse schema
14215
14480
  */
@@ -18311,6 +18576,463 @@ declare const zSendNotificationResponse: z.ZodObject<{
18311
18576
  status?: string | undefined;
18312
18577
  message?: string | undefined;
18313
18578
  }>;
18579
+ /**
18580
+ * SystemStatsResponse schema
18581
+ */
18582
+ declare const zSystemStatsResponse: z.ZodObject<{
18583
+ data: z.ZodOptional<z.ZodObject<{
18584
+ architecture: z.ZodOptional<z.ZodString>;
18585
+ cpu: z.ZodOptional<z.ZodObject<{
18586
+ overall: z.ZodOptional<z.ZodNumber>;
18587
+ per_core: z.ZodOptional<z.ZodArray<z.ZodObject<{
18588
+ core_id: z.ZodOptional<z.ZodNumber>;
18589
+ usage: z.ZodOptional<z.ZodNumber>;
18590
+ }, "strip", z.ZodTypeAny, {
18591
+ core_id?: number | undefined;
18592
+ usage?: number | undefined;
18593
+ }, {
18594
+ core_id?: number | undefined;
18595
+ usage?: number | undefined;
18596
+ }>, "many">>;
18597
+ }, "strip", z.ZodTypeAny, {
18598
+ overall?: number | undefined;
18599
+ per_core?: {
18600
+ core_id?: number | undefined;
18601
+ usage?: number | undefined;
18602
+ }[] | undefined;
18603
+ }, {
18604
+ overall?: number | undefined;
18605
+ per_core?: {
18606
+ core_id?: number | undefined;
18607
+ usage?: number | undefined;
18608
+ }[] | undefined;
18609
+ }>>;
18610
+ cpu_cores: z.ZodOptional<z.ZodNumber>;
18611
+ cpu_info: z.ZodOptional<z.ZodString>;
18612
+ disk: z.ZodOptional<z.ZodObject<{
18613
+ allMounts: z.ZodOptional<z.ZodArray<z.ZodObject<{
18614
+ avail: z.ZodOptional<z.ZodString>;
18615
+ capacity: z.ZodOptional<z.ZodString>;
18616
+ filesystem: z.ZodOptional<z.ZodString>;
18617
+ mountPoint: z.ZodOptional<z.ZodString>;
18618
+ size: z.ZodOptional<z.ZodString>;
18619
+ used: z.ZodOptional<z.ZodString>;
18620
+ }, "strip", z.ZodTypeAny, {
18621
+ size?: string | undefined;
18622
+ avail?: string | undefined;
18623
+ capacity?: string | undefined;
18624
+ filesystem?: string | undefined;
18625
+ mountPoint?: string | undefined;
18626
+ used?: string | undefined;
18627
+ }, {
18628
+ size?: string | undefined;
18629
+ avail?: string | undefined;
18630
+ capacity?: string | undefined;
18631
+ filesystem?: string | undefined;
18632
+ mountPoint?: string | undefined;
18633
+ used?: string | undefined;
18634
+ }>, "many">>;
18635
+ available: z.ZodOptional<z.ZodNumber>;
18636
+ mountPoint: z.ZodOptional<z.ZodString>;
18637
+ percentage: z.ZodOptional<z.ZodNumber>;
18638
+ total: z.ZodOptional<z.ZodNumber>;
18639
+ used: z.ZodOptional<z.ZodNumber>;
18640
+ }, "strip", z.ZodTypeAny, {
18641
+ total?: number | undefined;
18642
+ mountPoint?: string | undefined;
18643
+ used?: number | undefined;
18644
+ allMounts?: {
18645
+ size?: string | undefined;
18646
+ avail?: string | undefined;
18647
+ capacity?: string | undefined;
18648
+ filesystem?: string | undefined;
18649
+ mountPoint?: string | undefined;
18650
+ used?: string | undefined;
18651
+ }[] | undefined;
18652
+ available?: number | undefined;
18653
+ percentage?: number | undefined;
18654
+ }, {
18655
+ total?: number | undefined;
18656
+ mountPoint?: string | undefined;
18657
+ used?: number | undefined;
18658
+ allMounts?: {
18659
+ size?: string | undefined;
18660
+ avail?: string | undefined;
18661
+ capacity?: string | undefined;
18662
+ filesystem?: string | undefined;
18663
+ mountPoint?: string | undefined;
18664
+ used?: string | undefined;
18665
+ }[] | undefined;
18666
+ available?: number | undefined;
18667
+ percentage?: number | undefined;
18668
+ }>>;
18669
+ hostname: z.ZodOptional<z.ZodString>;
18670
+ kernel_version: z.ZodOptional<z.ZodString>;
18671
+ load: z.ZodOptional<z.ZodObject<{
18672
+ fifteenMin: z.ZodOptional<z.ZodNumber>;
18673
+ fiveMin: z.ZodOptional<z.ZodNumber>;
18674
+ oneMin: z.ZodOptional<z.ZodNumber>;
18675
+ uptime: z.ZodOptional<z.ZodString>;
18676
+ }, "strip", z.ZodTypeAny, {
18677
+ fifteenMin?: number | undefined;
18678
+ fiveMin?: number | undefined;
18679
+ oneMin?: number | undefined;
18680
+ uptime?: string | undefined;
18681
+ }, {
18682
+ fifteenMin?: number | undefined;
18683
+ fiveMin?: number | undefined;
18684
+ oneMin?: number | undefined;
18685
+ uptime?: string | undefined;
18686
+ }>>;
18687
+ memory: z.ZodOptional<z.ZodObject<{
18688
+ percentage: z.ZodOptional<z.ZodNumber>;
18689
+ rawInfo: z.ZodOptional<z.ZodString>;
18690
+ total: z.ZodOptional<z.ZodNumber>;
18691
+ used: z.ZodOptional<z.ZodNumber>;
18692
+ }, "strip", z.ZodTypeAny, {
18693
+ total?: number | undefined;
18694
+ used?: number | undefined;
18695
+ percentage?: number | undefined;
18696
+ rawInfo?: string | undefined;
18697
+ }, {
18698
+ total?: number | undefined;
18699
+ used?: number | undefined;
18700
+ percentage?: number | undefined;
18701
+ rawInfo?: string | undefined;
18702
+ }>>;
18703
+ network: z.ZodOptional<z.ZodObject<{
18704
+ downloadSpeed: z.ZodOptional<z.ZodNumber>;
18705
+ interfaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
18706
+ bytesRecv: z.ZodOptional<z.ZodNumber>;
18707
+ bytesSent: z.ZodOptional<z.ZodNumber>;
18708
+ dropIn: z.ZodOptional<z.ZodNumber>;
18709
+ dropOut: z.ZodOptional<z.ZodNumber>;
18710
+ errorIn: z.ZodOptional<z.ZodNumber>;
18711
+ errorOut: z.ZodOptional<z.ZodNumber>;
18712
+ name: z.ZodOptional<z.ZodString>;
18713
+ packetsRecv: z.ZodOptional<z.ZodNumber>;
18714
+ packetsSent: z.ZodOptional<z.ZodNumber>;
18715
+ }, "strip", z.ZodTypeAny, {
18716
+ name?: string | undefined;
18717
+ bytesRecv?: number | undefined;
18718
+ bytesSent?: number | undefined;
18719
+ dropIn?: number | undefined;
18720
+ dropOut?: number | undefined;
18721
+ errorIn?: number | undefined;
18722
+ errorOut?: number | undefined;
18723
+ packetsRecv?: number | undefined;
18724
+ packetsSent?: number | undefined;
18725
+ }, {
18726
+ name?: string | undefined;
18727
+ bytesRecv?: number | undefined;
18728
+ bytesSent?: number | undefined;
18729
+ dropIn?: number | undefined;
18730
+ dropOut?: number | undefined;
18731
+ errorIn?: number | undefined;
18732
+ errorOut?: number | undefined;
18733
+ packetsRecv?: number | undefined;
18734
+ packetsSent?: number | undefined;
18735
+ }>, "many">>;
18736
+ totalBytesRecv: z.ZodOptional<z.ZodNumber>;
18737
+ totalBytesSent: z.ZodOptional<z.ZodNumber>;
18738
+ totalPacketsRecv: z.ZodOptional<z.ZodNumber>;
18739
+ totalPacketsSent: z.ZodOptional<z.ZodNumber>;
18740
+ uploadSpeed: z.ZodOptional<z.ZodNumber>;
18741
+ }, "strip", z.ZodTypeAny, {
18742
+ downloadSpeed?: number | undefined;
18743
+ interfaces?: {
18744
+ name?: string | undefined;
18745
+ bytesRecv?: number | undefined;
18746
+ bytesSent?: number | undefined;
18747
+ dropIn?: number | undefined;
18748
+ dropOut?: number | undefined;
18749
+ errorIn?: number | undefined;
18750
+ errorOut?: number | undefined;
18751
+ packetsRecv?: number | undefined;
18752
+ packetsSent?: number | undefined;
18753
+ }[] | undefined;
18754
+ totalBytesRecv?: number | undefined;
18755
+ totalBytesSent?: number | undefined;
18756
+ totalPacketsRecv?: number | undefined;
18757
+ totalPacketsSent?: number | undefined;
18758
+ uploadSpeed?: number | undefined;
18759
+ }, {
18760
+ downloadSpeed?: number | undefined;
18761
+ interfaces?: {
18762
+ name?: string | undefined;
18763
+ bytesRecv?: number | undefined;
18764
+ bytesSent?: number | undefined;
18765
+ dropIn?: number | undefined;
18766
+ dropOut?: number | undefined;
18767
+ errorIn?: number | undefined;
18768
+ errorOut?: number | undefined;
18769
+ packetsRecv?: number | undefined;
18770
+ packetsSent?: number | undefined;
18771
+ }[] | undefined;
18772
+ totalBytesRecv?: number | undefined;
18773
+ totalBytesSent?: number | undefined;
18774
+ totalPacketsRecv?: number | undefined;
18775
+ totalPacketsSent?: number | undefined;
18776
+ uploadSpeed?: number | undefined;
18777
+ }>>;
18778
+ os_type: z.ZodOptional<z.ZodString>;
18779
+ timestamp: z.ZodOptional<z.ZodString>;
18780
+ }, "strip", z.ZodTypeAny, {
18781
+ timestamp?: string | undefined;
18782
+ memory?: {
18783
+ total?: number | undefined;
18784
+ used?: number | undefined;
18785
+ percentage?: number | undefined;
18786
+ rawInfo?: string | undefined;
18787
+ } | undefined;
18788
+ architecture?: string | undefined;
18789
+ cpu?: {
18790
+ overall?: number | undefined;
18791
+ per_core?: {
18792
+ core_id?: number | undefined;
18793
+ usage?: number | undefined;
18794
+ }[] | undefined;
18795
+ } | undefined;
18796
+ cpu_cores?: number | undefined;
18797
+ cpu_info?: string | undefined;
18798
+ disk?: {
18799
+ total?: number | undefined;
18800
+ mountPoint?: string | undefined;
18801
+ used?: number | undefined;
18802
+ allMounts?: {
18803
+ size?: string | undefined;
18804
+ avail?: string | undefined;
18805
+ capacity?: string | undefined;
18806
+ filesystem?: string | undefined;
18807
+ mountPoint?: string | undefined;
18808
+ used?: string | undefined;
18809
+ }[] | undefined;
18810
+ available?: number | undefined;
18811
+ percentage?: number | undefined;
18812
+ } | undefined;
18813
+ hostname?: string | undefined;
18814
+ kernel_version?: string | undefined;
18815
+ load?: {
18816
+ fifteenMin?: number | undefined;
18817
+ fiveMin?: number | undefined;
18818
+ oneMin?: number | undefined;
18819
+ uptime?: string | undefined;
18820
+ } | undefined;
18821
+ network?: {
18822
+ downloadSpeed?: number | undefined;
18823
+ interfaces?: {
18824
+ name?: string | undefined;
18825
+ bytesRecv?: number | undefined;
18826
+ bytesSent?: number | undefined;
18827
+ dropIn?: number | undefined;
18828
+ dropOut?: number | undefined;
18829
+ errorIn?: number | undefined;
18830
+ errorOut?: number | undefined;
18831
+ packetsRecv?: number | undefined;
18832
+ packetsSent?: number | undefined;
18833
+ }[] | undefined;
18834
+ totalBytesRecv?: number | undefined;
18835
+ totalBytesSent?: number | undefined;
18836
+ totalPacketsRecv?: number | undefined;
18837
+ totalPacketsSent?: number | undefined;
18838
+ uploadSpeed?: number | undefined;
18839
+ } | undefined;
18840
+ os_type?: string | undefined;
18841
+ }, {
18842
+ timestamp?: string | undefined;
18843
+ memory?: {
18844
+ total?: number | undefined;
18845
+ used?: number | undefined;
18846
+ percentage?: number | undefined;
18847
+ rawInfo?: string | undefined;
18848
+ } | undefined;
18849
+ architecture?: string | undefined;
18850
+ cpu?: {
18851
+ overall?: number | undefined;
18852
+ per_core?: {
18853
+ core_id?: number | undefined;
18854
+ usage?: number | undefined;
18855
+ }[] | undefined;
18856
+ } | undefined;
18857
+ cpu_cores?: number | undefined;
18858
+ cpu_info?: string | undefined;
18859
+ disk?: {
18860
+ total?: number | undefined;
18861
+ mountPoint?: string | undefined;
18862
+ used?: number | undefined;
18863
+ allMounts?: {
18864
+ size?: string | undefined;
18865
+ avail?: string | undefined;
18866
+ capacity?: string | undefined;
18867
+ filesystem?: string | undefined;
18868
+ mountPoint?: string | undefined;
18869
+ used?: string | undefined;
18870
+ }[] | undefined;
18871
+ available?: number | undefined;
18872
+ percentage?: number | undefined;
18873
+ } | undefined;
18874
+ hostname?: string | undefined;
18875
+ kernel_version?: string | undefined;
18876
+ load?: {
18877
+ fifteenMin?: number | undefined;
18878
+ fiveMin?: number | undefined;
18879
+ oneMin?: number | undefined;
18880
+ uptime?: string | undefined;
18881
+ } | undefined;
18882
+ network?: {
18883
+ downloadSpeed?: number | undefined;
18884
+ interfaces?: {
18885
+ name?: string | undefined;
18886
+ bytesRecv?: number | undefined;
18887
+ bytesSent?: number | undefined;
18888
+ dropIn?: number | undefined;
18889
+ dropOut?: number | undefined;
18890
+ errorIn?: number | undefined;
18891
+ errorOut?: number | undefined;
18892
+ packetsRecv?: number | undefined;
18893
+ packetsSent?: number | undefined;
18894
+ }[] | undefined;
18895
+ totalBytesRecv?: number | undefined;
18896
+ totalBytesSent?: number | undefined;
18897
+ totalPacketsRecv?: number | undefined;
18898
+ totalPacketsSent?: number | undefined;
18899
+ uploadSpeed?: number | undefined;
18900
+ } | undefined;
18901
+ os_type?: string | undefined;
18902
+ }>>;
18903
+ message: z.ZodOptional<z.ZodString>;
18904
+ status: z.ZodOptional<z.ZodString>;
18905
+ }, "strip", z.ZodTypeAny, {
18906
+ data?: {
18907
+ timestamp?: string | undefined;
18908
+ memory?: {
18909
+ total?: number | undefined;
18910
+ used?: number | undefined;
18911
+ percentage?: number | undefined;
18912
+ rawInfo?: string | undefined;
18913
+ } | undefined;
18914
+ architecture?: string | undefined;
18915
+ cpu?: {
18916
+ overall?: number | undefined;
18917
+ per_core?: {
18918
+ core_id?: number | undefined;
18919
+ usage?: number | undefined;
18920
+ }[] | undefined;
18921
+ } | undefined;
18922
+ cpu_cores?: number | undefined;
18923
+ cpu_info?: string | undefined;
18924
+ disk?: {
18925
+ total?: number | undefined;
18926
+ mountPoint?: string | undefined;
18927
+ used?: number | undefined;
18928
+ allMounts?: {
18929
+ size?: string | undefined;
18930
+ avail?: string | undefined;
18931
+ capacity?: string | undefined;
18932
+ filesystem?: string | undefined;
18933
+ mountPoint?: string | undefined;
18934
+ used?: string | undefined;
18935
+ }[] | undefined;
18936
+ available?: number | undefined;
18937
+ percentage?: number | undefined;
18938
+ } | undefined;
18939
+ hostname?: string | undefined;
18940
+ kernel_version?: string | undefined;
18941
+ load?: {
18942
+ fifteenMin?: number | undefined;
18943
+ fiveMin?: number | undefined;
18944
+ oneMin?: number | undefined;
18945
+ uptime?: string | undefined;
18946
+ } | undefined;
18947
+ network?: {
18948
+ downloadSpeed?: number | undefined;
18949
+ interfaces?: {
18950
+ name?: string | undefined;
18951
+ bytesRecv?: number | undefined;
18952
+ bytesSent?: number | undefined;
18953
+ dropIn?: number | undefined;
18954
+ dropOut?: number | undefined;
18955
+ errorIn?: number | undefined;
18956
+ errorOut?: number | undefined;
18957
+ packetsRecv?: number | undefined;
18958
+ packetsSent?: number | undefined;
18959
+ }[] | undefined;
18960
+ totalBytesRecv?: number | undefined;
18961
+ totalBytesSent?: number | undefined;
18962
+ totalPacketsRecv?: number | undefined;
18963
+ totalPacketsSent?: number | undefined;
18964
+ uploadSpeed?: number | undefined;
18965
+ } | undefined;
18966
+ os_type?: string | undefined;
18967
+ } | undefined;
18968
+ status?: string | undefined;
18969
+ message?: string | undefined;
18970
+ }, {
18971
+ data?: {
18972
+ timestamp?: string | undefined;
18973
+ memory?: {
18974
+ total?: number | undefined;
18975
+ used?: number | undefined;
18976
+ percentage?: number | undefined;
18977
+ rawInfo?: string | undefined;
18978
+ } | undefined;
18979
+ architecture?: string | undefined;
18980
+ cpu?: {
18981
+ overall?: number | undefined;
18982
+ per_core?: {
18983
+ core_id?: number | undefined;
18984
+ usage?: number | undefined;
18985
+ }[] | undefined;
18986
+ } | undefined;
18987
+ cpu_cores?: number | undefined;
18988
+ cpu_info?: string | undefined;
18989
+ disk?: {
18990
+ total?: number | undefined;
18991
+ mountPoint?: string | undefined;
18992
+ used?: number | undefined;
18993
+ allMounts?: {
18994
+ size?: string | undefined;
18995
+ avail?: string | undefined;
18996
+ capacity?: string | undefined;
18997
+ filesystem?: string | undefined;
18998
+ mountPoint?: string | undefined;
18999
+ used?: string | undefined;
19000
+ }[] | undefined;
19001
+ available?: number | undefined;
19002
+ percentage?: number | undefined;
19003
+ } | undefined;
19004
+ hostname?: string | undefined;
19005
+ kernel_version?: string | undefined;
19006
+ load?: {
19007
+ fifteenMin?: number | undefined;
19008
+ fiveMin?: number | undefined;
19009
+ oneMin?: number | undefined;
19010
+ uptime?: string | undefined;
19011
+ } | undefined;
19012
+ network?: {
19013
+ downloadSpeed?: number | undefined;
19014
+ interfaces?: {
19015
+ name?: string | undefined;
19016
+ bytesRecv?: number | undefined;
19017
+ bytesSent?: number | undefined;
19018
+ dropIn?: number | undefined;
19019
+ dropOut?: number | undefined;
19020
+ errorIn?: number | undefined;
19021
+ errorOut?: number | undefined;
19022
+ packetsRecv?: number | undefined;
19023
+ packetsSent?: number | undefined;
19024
+ }[] | undefined;
19025
+ totalBytesRecv?: number | undefined;
19026
+ totalBytesSent?: number | undefined;
19027
+ totalPacketsRecv?: number | undefined;
19028
+ totalPacketsSent?: number | undefined;
19029
+ uploadSpeed?: number | undefined;
19030
+ } | undefined;
19031
+ os_type?: string | undefined;
19032
+ } | undefined;
19033
+ status?: string | undefined;
19034
+ message?: string | undefined;
19035
+ }>;
18314
19036
  /**
18315
19037
  * ToggleHealthCheckRequest schema
18316
19038
  */
@@ -54048,6 +54770,561 @@ declare const zPauseLiveDeployServiceResponse: z.ZodObject<{
54048
54770
  status?: string | undefined;
54049
54771
  message?: string | undefined;
54050
54772
  }>;
54773
+ declare const zExecuteACommandOnTheHostMachineData: z.ZodObject<{
54774
+ body: z.ZodObject<{
54775
+ command: z.ZodString;
54776
+ }, "strip", z.ZodTypeAny, {
54777
+ command: string;
54778
+ }, {
54779
+ command: string;
54780
+ }>;
54781
+ path: z.ZodOptional<z.ZodNever>;
54782
+ query: z.ZodOptional<z.ZodNever>;
54783
+ headers: z.ZodOptional<z.ZodObject<{
54784
+ Accept: z.ZodOptional<z.ZodString>;
54785
+ }, "strip", z.ZodTypeAny, {
54786
+ Accept?: string | undefined;
54787
+ }, {
54788
+ Accept?: string | undefined;
54789
+ }>>;
54790
+ }, "strip", z.ZodTypeAny, {
54791
+ body: {
54792
+ command: string;
54793
+ };
54794
+ query?: undefined;
54795
+ headers?: {
54796
+ Accept?: string | undefined;
54797
+ } | undefined;
54798
+ path?: undefined;
54799
+ }, {
54800
+ body: {
54801
+ command: string;
54802
+ };
54803
+ query?: undefined;
54804
+ headers?: {
54805
+ Accept?: string | undefined;
54806
+ } | undefined;
54807
+ path?: undefined;
54808
+ }>;
54809
+ /**
54810
+ * OK
54811
+ */
54812
+ declare const zExecuteACommandOnTheHostMachineResponse: z.ZodObject<{
54813
+ data: z.ZodOptional<z.ZodObject<{
54814
+ exit_code: z.ZodOptional<z.ZodNumber>;
54815
+ stderr: z.ZodOptional<z.ZodString>;
54816
+ stdout: z.ZodOptional<z.ZodString>;
54817
+ }, "strip", z.ZodTypeAny, {
54818
+ stderr?: string | undefined;
54819
+ stdout?: string | undefined;
54820
+ exit_code?: number | undefined;
54821
+ }, {
54822
+ stderr?: string | undefined;
54823
+ stdout?: string | undefined;
54824
+ exit_code?: number | undefined;
54825
+ }>>;
54826
+ message: z.ZodOptional<z.ZodString>;
54827
+ status: z.ZodOptional<z.ZodString>;
54828
+ }, "strip", z.ZodTypeAny, {
54829
+ data?: {
54830
+ stderr?: string | undefined;
54831
+ stdout?: string | undefined;
54832
+ exit_code?: number | undefined;
54833
+ } | undefined;
54834
+ status?: string | undefined;
54835
+ message?: string | undefined;
54836
+ }, {
54837
+ data?: {
54838
+ stderr?: string | undefined;
54839
+ stdout?: string | undefined;
54840
+ exit_code?: number | undefined;
54841
+ } | undefined;
54842
+ status?: string | undefined;
54843
+ message?: string | undefined;
54844
+ }>;
54845
+ declare const zGetMachineSystemStatsData: z.ZodObject<{
54846
+ body: z.ZodOptional<z.ZodNever>;
54847
+ path: z.ZodOptional<z.ZodNever>;
54848
+ query: z.ZodOptional<z.ZodNever>;
54849
+ headers: z.ZodOptional<z.ZodObject<{
54850
+ Accept: z.ZodOptional<z.ZodString>;
54851
+ }, "strip", z.ZodTypeAny, {
54852
+ Accept?: string | undefined;
54853
+ }, {
54854
+ Accept?: string | undefined;
54855
+ }>>;
54856
+ }, "strip", z.ZodTypeAny, {
54857
+ query?: undefined;
54858
+ body?: undefined;
54859
+ headers?: {
54860
+ Accept?: string | undefined;
54861
+ } | undefined;
54862
+ path?: undefined;
54863
+ }, {
54864
+ query?: undefined;
54865
+ body?: undefined;
54866
+ headers?: {
54867
+ Accept?: string | undefined;
54868
+ } | undefined;
54869
+ path?: undefined;
54870
+ }>;
54871
+ /**
54872
+ * OK
54873
+ */
54874
+ declare const zGetMachineSystemStatsResponse: z.ZodObject<{
54875
+ data: z.ZodOptional<z.ZodObject<{
54876
+ architecture: z.ZodOptional<z.ZodString>;
54877
+ cpu: z.ZodOptional<z.ZodObject<{
54878
+ overall: z.ZodOptional<z.ZodNumber>;
54879
+ per_core: z.ZodOptional<z.ZodArray<z.ZodObject<{
54880
+ core_id: z.ZodOptional<z.ZodNumber>;
54881
+ usage: z.ZodOptional<z.ZodNumber>;
54882
+ }, "strip", z.ZodTypeAny, {
54883
+ core_id?: number | undefined;
54884
+ usage?: number | undefined;
54885
+ }, {
54886
+ core_id?: number | undefined;
54887
+ usage?: number | undefined;
54888
+ }>, "many">>;
54889
+ }, "strip", z.ZodTypeAny, {
54890
+ overall?: number | undefined;
54891
+ per_core?: {
54892
+ core_id?: number | undefined;
54893
+ usage?: number | undefined;
54894
+ }[] | undefined;
54895
+ }, {
54896
+ overall?: number | undefined;
54897
+ per_core?: {
54898
+ core_id?: number | undefined;
54899
+ usage?: number | undefined;
54900
+ }[] | undefined;
54901
+ }>>;
54902
+ cpu_cores: z.ZodOptional<z.ZodNumber>;
54903
+ cpu_info: z.ZodOptional<z.ZodString>;
54904
+ disk: z.ZodOptional<z.ZodObject<{
54905
+ allMounts: z.ZodOptional<z.ZodArray<z.ZodObject<{
54906
+ avail: z.ZodOptional<z.ZodString>;
54907
+ capacity: z.ZodOptional<z.ZodString>;
54908
+ filesystem: z.ZodOptional<z.ZodString>;
54909
+ mountPoint: z.ZodOptional<z.ZodString>;
54910
+ size: z.ZodOptional<z.ZodString>;
54911
+ used: z.ZodOptional<z.ZodString>;
54912
+ }, "strip", z.ZodTypeAny, {
54913
+ size?: string | undefined;
54914
+ avail?: string | undefined;
54915
+ capacity?: string | undefined;
54916
+ filesystem?: string | undefined;
54917
+ mountPoint?: string | undefined;
54918
+ used?: string | undefined;
54919
+ }, {
54920
+ size?: string | undefined;
54921
+ avail?: string | undefined;
54922
+ capacity?: string | undefined;
54923
+ filesystem?: string | undefined;
54924
+ mountPoint?: string | undefined;
54925
+ used?: string | undefined;
54926
+ }>, "many">>;
54927
+ available: z.ZodOptional<z.ZodNumber>;
54928
+ mountPoint: z.ZodOptional<z.ZodString>;
54929
+ percentage: z.ZodOptional<z.ZodNumber>;
54930
+ total: z.ZodOptional<z.ZodNumber>;
54931
+ used: z.ZodOptional<z.ZodNumber>;
54932
+ }, "strip", z.ZodTypeAny, {
54933
+ total?: number | undefined;
54934
+ mountPoint?: string | undefined;
54935
+ used?: number | undefined;
54936
+ allMounts?: {
54937
+ size?: string | undefined;
54938
+ avail?: string | undefined;
54939
+ capacity?: string | undefined;
54940
+ filesystem?: string | undefined;
54941
+ mountPoint?: string | undefined;
54942
+ used?: string | undefined;
54943
+ }[] | undefined;
54944
+ available?: number | undefined;
54945
+ percentage?: number | undefined;
54946
+ }, {
54947
+ total?: number | undefined;
54948
+ mountPoint?: string | undefined;
54949
+ used?: number | undefined;
54950
+ allMounts?: {
54951
+ size?: string | undefined;
54952
+ avail?: string | undefined;
54953
+ capacity?: string | undefined;
54954
+ filesystem?: string | undefined;
54955
+ mountPoint?: string | undefined;
54956
+ used?: string | undefined;
54957
+ }[] | undefined;
54958
+ available?: number | undefined;
54959
+ percentage?: number | undefined;
54960
+ }>>;
54961
+ hostname: z.ZodOptional<z.ZodString>;
54962
+ kernel_version: z.ZodOptional<z.ZodString>;
54963
+ load: z.ZodOptional<z.ZodObject<{
54964
+ fifteenMin: z.ZodOptional<z.ZodNumber>;
54965
+ fiveMin: z.ZodOptional<z.ZodNumber>;
54966
+ oneMin: z.ZodOptional<z.ZodNumber>;
54967
+ uptime: z.ZodOptional<z.ZodString>;
54968
+ }, "strip", z.ZodTypeAny, {
54969
+ fifteenMin?: number | undefined;
54970
+ fiveMin?: number | undefined;
54971
+ oneMin?: number | undefined;
54972
+ uptime?: string | undefined;
54973
+ }, {
54974
+ fifteenMin?: number | undefined;
54975
+ fiveMin?: number | undefined;
54976
+ oneMin?: number | undefined;
54977
+ uptime?: string | undefined;
54978
+ }>>;
54979
+ memory: z.ZodOptional<z.ZodObject<{
54980
+ percentage: z.ZodOptional<z.ZodNumber>;
54981
+ rawInfo: z.ZodOptional<z.ZodString>;
54982
+ total: z.ZodOptional<z.ZodNumber>;
54983
+ used: z.ZodOptional<z.ZodNumber>;
54984
+ }, "strip", z.ZodTypeAny, {
54985
+ total?: number | undefined;
54986
+ used?: number | undefined;
54987
+ percentage?: number | undefined;
54988
+ rawInfo?: string | undefined;
54989
+ }, {
54990
+ total?: number | undefined;
54991
+ used?: number | undefined;
54992
+ percentage?: number | undefined;
54993
+ rawInfo?: string | undefined;
54994
+ }>>;
54995
+ network: z.ZodOptional<z.ZodObject<{
54996
+ downloadSpeed: z.ZodOptional<z.ZodNumber>;
54997
+ interfaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
54998
+ bytesRecv: z.ZodOptional<z.ZodNumber>;
54999
+ bytesSent: z.ZodOptional<z.ZodNumber>;
55000
+ dropIn: z.ZodOptional<z.ZodNumber>;
55001
+ dropOut: z.ZodOptional<z.ZodNumber>;
55002
+ errorIn: z.ZodOptional<z.ZodNumber>;
55003
+ errorOut: z.ZodOptional<z.ZodNumber>;
55004
+ name: z.ZodOptional<z.ZodString>;
55005
+ packetsRecv: z.ZodOptional<z.ZodNumber>;
55006
+ packetsSent: z.ZodOptional<z.ZodNumber>;
55007
+ }, "strip", z.ZodTypeAny, {
55008
+ name?: string | undefined;
55009
+ bytesRecv?: number | undefined;
55010
+ bytesSent?: number | undefined;
55011
+ dropIn?: number | undefined;
55012
+ dropOut?: number | undefined;
55013
+ errorIn?: number | undefined;
55014
+ errorOut?: number | undefined;
55015
+ packetsRecv?: number | undefined;
55016
+ packetsSent?: number | undefined;
55017
+ }, {
55018
+ name?: string | undefined;
55019
+ bytesRecv?: number | undefined;
55020
+ bytesSent?: number | undefined;
55021
+ dropIn?: number | undefined;
55022
+ dropOut?: number | undefined;
55023
+ errorIn?: number | undefined;
55024
+ errorOut?: number | undefined;
55025
+ packetsRecv?: number | undefined;
55026
+ packetsSent?: number | undefined;
55027
+ }>, "many">>;
55028
+ totalBytesRecv: z.ZodOptional<z.ZodNumber>;
55029
+ totalBytesSent: z.ZodOptional<z.ZodNumber>;
55030
+ totalPacketsRecv: z.ZodOptional<z.ZodNumber>;
55031
+ totalPacketsSent: z.ZodOptional<z.ZodNumber>;
55032
+ uploadSpeed: z.ZodOptional<z.ZodNumber>;
55033
+ }, "strip", z.ZodTypeAny, {
55034
+ downloadSpeed?: number | undefined;
55035
+ interfaces?: {
55036
+ name?: string | undefined;
55037
+ bytesRecv?: number | undefined;
55038
+ bytesSent?: number | undefined;
55039
+ dropIn?: number | undefined;
55040
+ dropOut?: number | undefined;
55041
+ errorIn?: number | undefined;
55042
+ errorOut?: number | undefined;
55043
+ packetsRecv?: number | undefined;
55044
+ packetsSent?: number | undefined;
55045
+ }[] | undefined;
55046
+ totalBytesRecv?: number | undefined;
55047
+ totalBytesSent?: number | undefined;
55048
+ totalPacketsRecv?: number | undefined;
55049
+ totalPacketsSent?: number | undefined;
55050
+ uploadSpeed?: number | undefined;
55051
+ }, {
55052
+ downloadSpeed?: number | undefined;
55053
+ interfaces?: {
55054
+ name?: string | undefined;
55055
+ bytesRecv?: number | undefined;
55056
+ bytesSent?: number | undefined;
55057
+ dropIn?: number | undefined;
55058
+ dropOut?: number | undefined;
55059
+ errorIn?: number | undefined;
55060
+ errorOut?: number | undefined;
55061
+ packetsRecv?: number | undefined;
55062
+ packetsSent?: number | undefined;
55063
+ }[] | undefined;
55064
+ totalBytesRecv?: number | undefined;
55065
+ totalBytesSent?: number | undefined;
55066
+ totalPacketsRecv?: number | undefined;
55067
+ totalPacketsSent?: number | undefined;
55068
+ uploadSpeed?: number | undefined;
55069
+ }>>;
55070
+ os_type: z.ZodOptional<z.ZodString>;
55071
+ timestamp: z.ZodOptional<z.ZodString>;
55072
+ }, "strip", z.ZodTypeAny, {
55073
+ timestamp?: string | undefined;
55074
+ memory?: {
55075
+ total?: number | undefined;
55076
+ used?: number | undefined;
55077
+ percentage?: number | undefined;
55078
+ rawInfo?: string | undefined;
55079
+ } | undefined;
55080
+ architecture?: string | undefined;
55081
+ cpu?: {
55082
+ overall?: number | undefined;
55083
+ per_core?: {
55084
+ core_id?: number | undefined;
55085
+ usage?: number | undefined;
55086
+ }[] | undefined;
55087
+ } | undefined;
55088
+ cpu_cores?: number | undefined;
55089
+ cpu_info?: string | undefined;
55090
+ disk?: {
55091
+ total?: number | undefined;
55092
+ mountPoint?: string | undefined;
55093
+ used?: number | undefined;
55094
+ allMounts?: {
55095
+ size?: string | undefined;
55096
+ avail?: string | undefined;
55097
+ capacity?: string | undefined;
55098
+ filesystem?: string | undefined;
55099
+ mountPoint?: string | undefined;
55100
+ used?: string | undefined;
55101
+ }[] | undefined;
55102
+ available?: number | undefined;
55103
+ percentage?: number | undefined;
55104
+ } | undefined;
55105
+ hostname?: string | undefined;
55106
+ kernel_version?: string | undefined;
55107
+ load?: {
55108
+ fifteenMin?: number | undefined;
55109
+ fiveMin?: number | undefined;
55110
+ oneMin?: number | undefined;
55111
+ uptime?: string | undefined;
55112
+ } | undefined;
55113
+ network?: {
55114
+ downloadSpeed?: number | undefined;
55115
+ interfaces?: {
55116
+ name?: string | undefined;
55117
+ bytesRecv?: number | undefined;
55118
+ bytesSent?: number | undefined;
55119
+ dropIn?: number | undefined;
55120
+ dropOut?: number | undefined;
55121
+ errorIn?: number | undefined;
55122
+ errorOut?: number | undefined;
55123
+ packetsRecv?: number | undefined;
55124
+ packetsSent?: number | undefined;
55125
+ }[] | undefined;
55126
+ totalBytesRecv?: number | undefined;
55127
+ totalBytesSent?: number | undefined;
55128
+ totalPacketsRecv?: number | undefined;
55129
+ totalPacketsSent?: number | undefined;
55130
+ uploadSpeed?: number | undefined;
55131
+ } | undefined;
55132
+ os_type?: string | undefined;
55133
+ }, {
55134
+ timestamp?: string | undefined;
55135
+ memory?: {
55136
+ total?: number | undefined;
55137
+ used?: number | undefined;
55138
+ percentage?: number | undefined;
55139
+ rawInfo?: string | undefined;
55140
+ } | undefined;
55141
+ architecture?: string | undefined;
55142
+ cpu?: {
55143
+ overall?: number | undefined;
55144
+ per_core?: {
55145
+ core_id?: number | undefined;
55146
+ usage?: number | undefined;
55147
+ }[] | undefined;
55148
+ } | undefined;
55149
+ cpu_cores?: number | undefined;
55150
+ cpu_info?: string | undefined;
55151
+ disk?: {
55152
+ total?: number | undefined;
55153
+ mountPoint?: string | undefined;
55154
+ used?: number | undefined;
55155
+ allMounts?: {
55156
+ size?: string | undefined;
55157
+ avail?: string | undefined;
55158
+ capacity?: string | undefined;
55159
+ filesystem?: string | undefined;
55160
+ mountPoint?: string | undefined;
55161
+ used?: string | undefined;
55162
+ }[] | undefined;
55163
+ available?: number | undefined;
55164
+ percentage?: number | undefined;
55165
+ } | undefined;
55166
+ hostname?: string | undefined;
55167
+ kernel_version?: string | undefined;
55168
+ load?: {
55169
+ fifteenMin?: number | undefined;
55170
+ fiveMin?: number | undefined;
55171
+ oneMin?: number | undefined;
55172
+ uptime?: string | undefined;
55173
+ } | undefined;
55174
+ network?: {
55175
+ downloadSpeed?: number | undefined;
55176
+ interfaces?: {
55177
+ name?: string | undefined;
55178
+ bytesRecv?: number | undefined;
55179
+ bytesSent?: number | undefined;
55180
+ dropIn?: number | undefined;
55181
+ dropOut?: number | undefined;
55182
+ errorIn?: number | undefined;
55183
+ errorOut?: number | undefined;
55184
+ packetsRecv?: number | undefined;
55185
+ packetsSent?: number | undefined;
55186
+ }[] | undefined;
55187
+ totalBytesRecv?: number | undefined;
55188
+ totalBytesSent?: number | undefined;
55189
+ totalPacketsRecv?: number | undefined;
55190
+ totalPacketsSent?: number | undefined;
55191
+ uploadSpeed?: number | undefined;
55192
+ } | undefined;
55193
+ os_type?: string | undefined;
55194
+ }>>;
55195
+ message: z.ZodOptional<z.ZodString>;
55196
+ status: z.ZodOptional<z.ZodString>;
55197
+ }, "strip", z.ZodTypeAny, {
55198
+ data?: {
55199
+ timestamp?: string | undefined;
55200
+ memory?: {
55201
+ total?: number | undefined;
55202
+ used?: number | undefined;
55203
+ percentage?: number | undefined;
55204
+ rawInfo?: string | undefined;
55205
+ } | undefined;
55206
+ architecture?: string | undefined;
55207
+ cpu?: {
55208
+ overall?: number | undefined;
55209
+ per_core?: {
55210
+ core_id?: number | undefined;
55211
+ usage?: number | undefined;
55212
+ }[] | undefined;
55213
+ } | undefined;
55214
+ cpu_cores?: number | undefined;
55215
+ cpu_info?: string | undefined;
55216
+ disk?: {
55217
+ total?: number | undefined;
55218
+ mountPoint?: string | undefined;
55219
+ used?: number | undefined;
55220
+ allMounts?: {
55221
+ size?: string | undefined;
55222
+ avail?: string | undefined;
55223
+ capacity?: string | undefined;
55224
+ filesystem?: string | undefined;
55225
+ mountPoint?: string | undefined;
55226
+ used?: string | undefined;
55227
+ }[] | undefined;
55228
+ available?: number | undefined;
55229
+ percentage?: number | undefined;
55230
+ } | undefined;
55231
+ hostname?: string | undefined;
55232
+ kernel_version?: string | undefined;
55233
+ load?: {
55234
+ fifteenMin?: number | undefined;
55235
+ fiveMin?: number | undefined;
55236
+ oneMin?: number | undefined;
55237
+ uptime?: string | undefined;
55238
+ } | undefined;
55239
+ network?: {
55240
+ downloadSpeed?: number | undefined;
55241
+ interfaces?: {
55242
+ name?: string | undefined;
55243
+ bytesRecv?: number | undefined;
55244
+ bytesSent?: number | undefined;
55245
+ dropIn?: number | undefined;
55246
+ dropOut?: number | undefined;
55247
+ errorIn?: number | undefined;
55248
+ errorOut?: number | undefined;
55249
+ packetsRecv?: number | undefined;
55250
+ packetsSent?: number | undefined;
55251
+ }[] | undefined;
55252
+ totalBytesRecv?: number | undefined;
55253
+ totalBytesSent?: number | undefined;
55254
+ totalPacketsRecv?: number | undefined;
55255
+ totalPacketsSent?: number | undefined;
55256
+ uploadSpeed?: number | undefined;
55257
+ } | undefined;
55258
+ os_type?: string | undefined;
55259
+ } | undefined;
55260
+ status?: string | undefined;
55261
+ message?: string | undefined;
55262
+ }, {
55263
+ data?: {
55264
+ timestamp?: string | undefined;
55265
+ memory?: {
55266
+ total?: number | undefined;
55267
+ used?: number | undefined;
55268
+ percentage?: number | undefined;
55269
+ rawInfo?: string | undefined;
55270
+ } | undefined;
55271
+ architecture?: string | undefined;
55272
+ cpu?: {
55273
+ overall?: number | undefined;
55274
+ per_core?: {
55275
+ core_id?: number | undefined;
55276
+ usage?: number | undefined;
55277
+ }[] | undefined;
55278
+ } | undefined;
55279
+ cpu_cores?: number | undefined;
55280
+ cpu_info?: string | undefined;
55281
+ disk?: {
55282
+ total?: number | undefined;
55283
+ mountPoint?: string | undefined;
55284
+ used?: number | undefined;
55285
+ allMounts?: {
55286
+ size?: string | undefined;
55287
+ avail?: string | undefined;
55288
+ capacity?: string | undefined;
55289
+ filesystem?: string | undefined;
55290
+ mountPoint?: string | undefined;
55291
+ used?: string | undefined;
55292
+ }[] | undefined;
55293
+ available?: number | undefined;
55294
+ percentage?: number | undefined;
55295
+ } | undefined;
55296
+ hostname?: string | undefined;
55297
+ kernel_version?: string | undefined;
55298
+ load?: {
55299
+ fifteenMin?: number | undefined;
55300
+ fiveMin?: number | undefined;
55301
+ oneMin?: number | undefined;
55302
+ uptime?: string | undefined;
55303
+ } | undefined;
55304
+ network?: {
55305
+ downloadSpeed?: number | undefined;
55306
+ interfaces?: {
55307
+ name?: string | undefined;
55308
+ bytesRecv?: number | undefined;
55309
+ bytesSent?: number | undefined;
55310
+ dropIn?: number | undefined;
55311
+ dropOut?: number | undefined;
55312
+ errorIn?: number | undefined;
55313
+ errorOut?: number | undefined;
55314
+ packetsRecv?: number | undefined;
55315
+ packetsSent?: number | undefined;
55316
+ }[] | undefined;
55317
+ totalBytesRecv?: number | undefined;
55318
+ totalBytesSent?: number | undefined;
55319
+ totalPacketsRecv?: number | undefined;
55320
+ totalPacketsSent?: number | undefined;
55321
+ uploadSpeed?: number | undefined;
55322
+ } | undefined;
55323
+ os_type?: string | undefined;
55324
+ } | undefined;
55325
+ status?: string | undefined;
55326
+ message?: string | undefined;
55327
+ }>;
54051
55328
  declare const zGetNotificationPreferencesData: z.ZodObject<{
54052
55329
  body: z.ZodOptional<z.ZodNever>;
54053
55330
  path: z.ZodOptional<z.ZodNever>;
@@ -90002,4 +91279,4 @@ declare const zListHealthCheckResultsResponse: z.ZodObject<{
90002
91279
  message?: string | undefined;
90003
91280
  }>;
90004
91281
 
90005
- 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 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 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 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 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, 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, 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, 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, zGetNotificationPreferencesData, zGetNotificationPreferencesResponse, zGetSmtpConfigData, zGetSmtpConfigResponse, zGetSshConnectionStatusData, zGetSshConnectionStatusResponse, zGetTrailSessionStatusData, zGetTrailSessionStatusResponse, zGetUserPreferencesData, zGetUserPreferencesResponse, zGetUserSettingsData, zGetUserSettingsResponse, zGetWebhookConfigData, zGetWebhookConfigResponse, zHandleGitHubWebhookData, zHandleGitHubWebhookResponse, zHealthCheckData, zHealthCheckMessageResponse, zHealthCheckResponse, zHealthCheckResponse2, zHealthCheckResult, zHealthCheckResultsResponse, zHealthCheckStatsResponse, 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, 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 };
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 };