freestyle 0.1.50 → 0.1.52

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.
Files changed (6) hide show
  1. package/README.md +1 -1
  2. package/index.cjs +1226 -611
  3. package/index.d.cts +612 -304
  4. package/index.d.mts +612 -304
  5. package/index.mjs +1226 -611
  6. package/package.json +1 -1
package/index.d.mts CHANGED
@@ -2259,6 +2259,11 @@ interface ResponseGetV1CronSchedulesIdMetricsTimeline200 {
2259
2259
  succeededOnRetryCount: number;
2260
2260
  failedCount: number;
2261
2261
  averageLatencyMs?: number | null;
2262
+ averageSuccessLatencyMs?: number | null;
2263
+ averageFailureLatencyMs?: number | null;
2264
+ p50SuccessLatencyMs?: number | null;
2265
+ p90SuccessLatencyMs?: number | null;
2266
+ p99SuccessLatencyMs?: number | null;
2262
2267
  }[];
2263
2268
  start: string;
2264
2269
  end: string;
@@ -8593,48 +8598,54 @@ interface FreestyleError {
8593
8598
  code: keyof typeof FREESTYLE_ERROR_CODE_MAP;
8594
8599
  message: string;
8595
8600
  }
8596
- declare function errorFromJSON(body: object & FreestyleError): Error;
8601
+ declare function errorFromJSON(body: object & FreestyleError, traceId?: string): Error;
8597
8602
  declare class GitErrorError extends Error {
8598
8603
  body: unknown & FreestyleError;
8604
+ traceId?: string | undefined;
8599
8605
  static readonly code: string;
8600
8606
  static readonly statusCode: number;
8601
8607
  static readonly description: string;
8602
- constructor(body: unknown & FreestyleError);
8608
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8603
8609
  }
8604
8610
  declare class BadParseError extends Error {
8605
8611
  body: unknown & FreestyleError;
8612
+ traceId?: string | undefined;
8606
8613
  static readonly code: string;
8607
8614
  static readonly statusCode: number;
8608
8615
  static readonly description: string;
8609
- constructor(body: unknown & FreestyleError);
8616
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8610
8617
  }
8611
8618
  declare class BadTimestampError extends Error {
8612
8619
  body: unknown & FreestyleError;
8620
+ traceId?: string | undefined;
8613
8621
  static readonly code: string;
8614
8622
  static readonly statusCode: number;
8615
8623
  static readonly description: string;
8616
- constructor(body: unknown & FreestyleError);
8624
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8617
8625
  }
8618
8626
  declare class BadSignatureError extends Error {
8619
8627
  body: unknown & FreestyleError;
8628
+ traceId?: string | undefined;
8620
8629
  static readonly code: string;
8621
8630
  static readonly statusCode: number;
8622
8631
  static readonly description: string;
8623
- constructor(body: unknown & FreestyleError);
8632
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8624
8633
  }
8625
8634
  declare class BadHeaderError extends Error {
8626
8635
  body: unknown & FreestyleError;
8636
+ traceId?: string | undefined;
8627
8637
  static readonly code: string;
8628
8638
  static readonly statusCode: number;
8629
8639
  static readonly description: string;
8630
- constructor(body: unknown & FreestyleError);
8640
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8631
8641
  }
8632
8642
  declare class BadKeyError extends Error {
8633
8643
  body: unknown & FreestyleError;
8644
+ traceId?: string | undefined;
8634
8645
  static readonly code: string;
8635
8646
  static readonly statusCode: number;
8636
8647
  static readonly description: string;
8637
- constructor(body: unknown & FreestyleError);
8648
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8638
8649
  }
8639
8650
  interface VmOperationDeniedDuringTransactionPublic {
8640
8651
  vmId: VmId;
@@ -8643,10 +8654,11 @@ interface VmOperationDeniedDuringTransactionPublic {
8643
8654
  }
8644
8655
  declare class VmOperationDeniedDuringTransactionError extends Error {
8645
8656
  body: VmOperationDeniedDuringTransactionPublic & FreestyleError;
8657
+ traceId?: string | undefined;
8646
8658
  static readonly code: string;
8647
8659
  static readonly statusCode: number;
8648
8660
  static readonly description: string;
8649
- constructor(body: VmOperationDeniedDuringTransactionPublic & FreestyleError);
8661
+ constructor(body: VmOperationDeniedDuringTransactionPublic & FreestyleError, traceId?: string | undefined);
8650
8662
  }
8651
8663
  interface VmTransactionIdMismatchPublic {
8652
8664
  vmId: VmId;
@@ -8656,31 +8668,35 @@ interface VmTransactionIdMismatchPublic {
8656
8668
  }
8657
8669
  declare class VmTransactionIdMismatchError extends Error {
8658
8670
  body: VmTransactionIdMismatchPublic & FreestyleError;
8671
+ traceId?: string | undefined;
8659
8672
  static readonly code: string;
8660
8673
  static readonly statusCode: number;
8661
8674
  static readonly description: string;
8662
- constructor(body: VmTransactionIdMismatchPublic & FreestyleError);
8675
+ constructor(body: VmTransactionIdMismatchPublic & FreestyleError, traceId?: string | undefined);
8663
8676
  }
8664
8677
  declare class VmNotInTransactionError extends Error {
8665
8678
  body: unknown & FreestyleError;
8679
+ traceId?: string | undefined;
8666
8680
  static readonly code: string;
8667
8681
  static readonly statusCode: number;
8668
8682
  static readonly description: string;
8669
- constructor(body: unknown & FreestyleError);
8683
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8670
8684
  }
8671
8685
  declare class PartitionNotFoundError extends Error {
8672
8686
  body: unknown & FreestyleError;
8687
+ traceId?: string | undefined;
8673
8688
  static readonly code: string;
8674
8689
  static readonly statusCode: number;
8675
8690
  static readonly description: string;
8676
- constructor(body: unknown & FreestyleError);
8691
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8677
8692
  }
8678
8693
  declare class UserNotFoundError extends Error {
8679
8694
  body: unknown & FreestyleError;
8695
+ traceId?: string | undefined;
8680
8696
  static readonly code: string;
8681
8697
  static readonly statusCode: number;
8682
8698
  static readonly description: string;
8683
- constructor(body: unknown & FreestyleError);
8699
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8684
8700
  }
8685
8701
  interface PublicUserAlreadyExists {
8686
8702
  userName: string;
@@ -8688,24 +8704,27 @@ interface PublicUserAlreadyExists {
8688
8704
  }
8689
8705
  declare class UserAlreadyExistsError extends Error {
8690
8706
  body: PublicUserAlreadyExists & FreestyleError;
8707
+ traceId?: string | undefined;
8691
8708
  static readonly code: string;
8692
8709
  static readonly statusCode: number;
8693
8710
  static readonly description: string;
8694
- constructor(body: PublicUserAlreadyExists & FreestyleError);
8711
+ constructor(body: PublicUserAlreadyExists & FreestyleError, traceId?: string | undefined);
8695
8712
  }
8696
8713
  declare class ValidationErrorError extends Error {
8697
8714
  body: unknown & FreestyleError;
8715
+ traceId?: string | undefined;
8698
8716
  static readonly code: string;
8699
8717
  static readonly statusCode: number;
8700
8718
  static readonly description: string;
8701
- constructor(body: unknown & FreestyleError);
8719
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8702
8720
  }
8703
8721
  declare class GroupNotFoundError extends Error {
8704
8722
  body: unknown & FreestyleError;
8723
+ traceId?: string | undefined;
8705
8724
  static readonly code: string;
8706
8725
  static readonly statusCode: number;
8707
8726
  static readonly description: string;
8708
- constructor(body: unknown & FreestyleError);
8727
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8709
8728
  }
8710
8729
  interface PublicGroupAlreadyExists {
8711
8730
  groupName: string;
@@ -8713,150 +8732,171 @@ interface PublicGroupAlreadyExists {
8713
8732
  }
8714
8733
  declare class GroupAlreadyExistsError extends Error {
8715
8734
  body: PublicGroupAlreadyExists & FreestyleError;
8735
+ traceId?: string | undefined;
8716
8736
  static readonly code: string;
8717
8737
  static readonly statusCode: number;
8718
8738
  static readonly description: string;
8719
- constructor(body: PublicGroupAlreadyExists & FreestyleError);
8739
+ constructor(body: PublicGroupAlreadyExists & FreestyleError, traceId?: string | undefined);
8720
8740
  }
8721
8741
  declare class DuplicateUserNameError extends Error {
8722
8742
  body: unknown & FreestyleError;
8743
+ traceId?: string | undefined;
8723
8744
  static readonly code: string;
8724
8745
  static readonly statusCode: number;
8725
8746
  static readonly description: string;
8726
- constructor(body: unknown & FreestyleError);
8747
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8727
8748
  }
8728
8749
  declare class UserGroupEmptyError extends Error {
8729
8750
  body: unknown & FreestyleError;
8751
+ traceId?: string | undefined;
8730
8752
  static readonly code: string;
8731
8753
  static readonly statusCode: number;
8732
8754
  static readonly description: string;
8733
- constructor(body: unknown & FreestyleError);
8755
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8734
8756
  }
8735
8757
  declare class UserSystemFlagMismatchError extends Error {
8736
8758
  body: unknown & FreestyleError;
8759
+ traceId?: string | undefined;
8737
8760
  static readonly code: string;
8738
8761
  static readonly statusCode: number;
8739
8762
  static readonly description: string;
8740
- constructor(body: unknown & FreestyleError);
8763
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8741
8764
  }
8742
8765
  declare class UserUidOutOfRangeError extends Error {
8743
8766
  body: unknown & FreestyleError;
8767
+ traceId?: string | undefined;
8744
8768
  static readonly code: string;
8745
8769
  static readonly statusCode: number;
8746
8770
  static readonly description: string;
8747
- constructor(body: unknown & FreestyleError);
8771
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8748
8772
  }
8749
8773
  declare class UserHomeInvalidError extends Error {
8750
8774
  body: unknown & FreestyleError;
8775
+ traceId?: string | undefined;
8751
8776
  static readonly code: string;
8752
8777
  static readonly statusCode: number;
8753
8778
  static readonly description: string;
8754
- constructor(body: unknown & FreestyleError);
8779
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8755
8780
  }
8756
8781
  declare class UserShellInvalidError extends Error {
8757
8782
  body: unknown & FreestyleError;
8783
+ traceId?: string | undefined;
8758
8784
  static readonly code: string;
8759
8785
  static readonly statusCode: number;
8760
8786
  static readonly description: string;
8761
- constructor(body: unknown & FreestyleError);
8787
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8762
8788
  }
8763
8789
  declare class DuplicateGroupNameError extends Error {
8764
8790
  body: unknown & FreestyleError;
8791
+ traceId?: string | undefined;
8765
8792
  static readonly code: string;
8766
8793
  static readonly statusCode: number;
8767
8794
  static readonly description: string;
8768
- constructor(body: unknown & FreestyleError);
8795
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8769
8796
  }
8770
8797
  declare class GroupNameReservedError extends Error {
8771
8798
  body: unknown & FreestyleError;
8799
+ traceId?: string | undefined;
8772
8800
  static readonly code: string;
8773
8801
  static readonly statusCode: number;
8774
8802
  static readonly description: string;
8775
- constructor(body: unknown & FreestyleError);
8803
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8776
8804
  }
8777
8805
  declare class GroupNameInvalidCharsError extends Error {
8778
8806
  body: unknown & FreestyleError;
8807
+ traceId?: string | undefined;
8779
8808
  static readonly code: string;
8780
8809
  static readonly statusCode: number;
8781
8810
  static readonly description: string;
8782
- constructor(body: unknown & FreestyleError);
8811
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8783
8812
  }
8784
8813
  declare class GroupNameTooLongError extends Error {
8785
8814
  body: unknown & FreestyleError;
8815
+ traceId?: string | undefined;
8786
8816
  static readonly code: string;
8787
8817
  static readonly statusCode: number;
8788
8818
  static readonly description: string;
8789
- constructor(body: unknown & FreestyleError);
8819
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8790
8820
  }
8791
8821
  declare class GroupNameEmptyError extends Error {
8792
8822
  body: unknown & FreestyleError;
8823
+ traceId?: string | undefined;
8793
8824
  static readonly code: string;
8794
8825
  static readonly statusCode: number;
8795
8826
  static readonly description: string;
8796
- constructor(body: unknown & FreestyleError);
8827
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8797
8828
  }
8798
8829
  declare class NoDefaultSnapshotAvailableError extends Error {
8799
8830
  body: unknown & FreestyleError;
8831
+ traceId?: string | undefined;
8800
8832
  static readonly code: string;
8801
8833
  static readonly statusCode: number;
8802
8834
  static readonly description: string;
8803
- constructor(body: unknown & FreestyleError);
8835
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8804
8836
  }
8805
8837
  declare class DockerSnapshotFailedError extends Error {
8806
8838
  body: unknown & FreestyleError;
8839
+ traceId?: string | undefined;
8807
8840
  static readonly code: string;
8808
8841
  static readonly statusCode: number;
8809
8842
  static readonly description: string;
8810
- constructor(body: unknown & FreestyleError);
8843
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8811
8844
  }
8812
8845
  declare class SetDefaultSnapshotFailedError extends Error {
8813
8846
  body: unknown & FreestyleError;
8847
+ traceId?: string | undefined;
8814
8848
  static readonly code: string;
8815
8849
  static readonly statusCode: number;
8816
8850
  static readonly description: string;
8817
- constructor(body: unknown & FreestyleError);
8851
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8818
8852
  }
8819
8853
  declare class SnapshotLayerCreationFailedError extends Error {
8820
8854
  body: unknown & FreestyleError;
8855
+ traceId?: string | undefined;
8821
8856
  static readonly code: string;
8822
8857
  static readonly statusCode: number;
8823
8858
  static readonly description: string;
8824
- constructor(body: unknown & FreestyleError);
8859
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8825
8860
  }
8826
8861
  declare class SnapshotDirNotFoundError extends Error {
8827
8862
  body: unknown & FreestyleError;
8863
+ traceId?: string | undefined;
8828
8864
  static readonly code: string;
8829
8865
  static readonly statusCode: number;
8830
8866
  static readonly description: string;
8831
- constructor(body: unknown & FreestyleError);
8867
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8832
8868
  }
8833
8869
  declare class SubvolumeCreationFailedError extends Error {
8834
8870
  body: unknown & FreestyleError;
8871
+ traceId?: string | undefined;
8835
8872
  static readonly code: string;
8836
8873
  static readonly statusCode: number;
8837
8874
  static readonly description: string;
8838
- constructor(body: unknown & FreestyleError);
8875
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8839
8876
  }
8840
8877
  declare class GetDefaultSnapshotFailedError extends Error {
8841
8878
  body: unknown & FreestyleError;
8879
+ traceId?: string | undefined;
8842
8880
  static readonly code: string;
8843
8881
  static readonly statusCode: number;
8844
8882
  static readonly description: string;
8845
- constructor(body: unknown & FreestyleError);
8883
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8846
8884
  }
8847
8885
  declare class VmNotFoundInFsError extends Error {
8848
8886
  body: unknown & FreestyleError;
8887
+ traceId?: string | undefined;
8849
8888
  static readonly code: string;
8850
8889
  static readonly statusCode: number;
8851
8890
  static readonly description: string;
8852
- constructor(body: unknown & FreestyleError);
8891
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8853
8892
  }
8854
8893
  declare class DatabaseErrorError extends Error {
8855
8894
  body: unknown & FreestyleError;
8895
+ traceId?: string | undefined;
8856
8896
  static readonly code: string;
8857
8897
  static readonly statusCode: number;
8858
8898
  static readonly description: string;
8859
- constructor(body: unknown & FreestyleError);
8899
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8860
8900
  }
8861
8901
  interface PublicInvalidVmId {
8862
8902
  vmId: string;
@@ -8865,10 +8905,11 @@ interface PublicInvalidVmId {
8865
8905
  }
8866
8906
  declare class InvalidVmIdError extends Error {
8867
8907
  body: PublicInvalidVmId & FreestyleError;
8908
+ traceId?: string | undefined;
8868
8909
  static readonly code: string;
8869
8910
  static readonly statusCode: number;
8870
8911
  static readonly description: string;
8871
- constructor(body: PublicInvalidVmId & FreestyleError);
8912
+ constructor(body: PublicInvalidVmId & FreestyleError, traceId?: string | undefined);
8872
8913
  }
8873
8914
  interface PublicVmDeleted {
8874
8915
  vmId: VmId;
@@ -8876,52 +8917,59 @@ interface PublicVmDeleted {
8876
8917
  }
8877
8918
  declare class VmDeletedError extends Error {
8878
8919
  body: PublicVmDeleted & FreestyleError;
8920
+ traceId?: string | undefined;
8879
8921
  static readonly code: string;
8880
8922
  static readonly statusCode: number;
8881
8923
  static readonly description: string;
8882
- constructor(body: PublicVmDeleted & FreestyleError);
8924
+ constructor(body: PublicVmDeleted & FreestyleError, traceId?: string | undefined);
8883
8925
  }
8884
8926
  declare class VmNotRunningError extends Error {
8885
8927
  body: unknown & FreestyleError;
8928
+ traceId?: string | undefined;
8886
8929
  static readonly code: string;
8887
8930
  static readonly statusCode: number;
8888
8931
  static readonly description: string;
8889
- constructor(body: unknown & FreestyleError);
8932
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8890
8933
  }
8891
8934
  declare class ActiveTransactionErrorError extends Error {
8892
8935
  body: unknown & FreestyleError;
8936
+ traceId?: string | undefined;
8893
8937
  static readonly code: string;
8894
8938
  static readonly statusCode: number;
8895
8939
  static readonly description: string;
8896
- constructor(body: unknown & FreestyleError);
8940
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8897
8941
  }
8898
8942
  declare class SwapVmTapError extends Error {
8899
8943
  body: unknown & FreestyleError;
8944
+ traceId?: string | undefined;
8900
8945
  static readonly code: string;
8901
8946
  static readonly statusCode: number;
8902
8947
  static readonly description: string;
8903
- constructor(body: unknown & FreestyleError);
8948
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8904
8949
  }
8905
8950
  declare class PreassignedVmIdCountMismatchError extends Error {
8906
8951
  body: unknown & FreestyleError;
8952
+ traceId?: string | undefined;
8907
8953
  static readonly code: string;
8908
8954
  static readonly statusCode: number;
8909
8955
  static readonly description: string;
8910
- constructor(body: unknown & FreestyleError);
8956
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8911
8957
  }
8912
8958
  declare class InternalErrorError extends Error {
8913
8959
  body: unknown & FreestyleError;
8960
+ traceId?: string | undefined;
8914
8961
  static readonly code: string;
8915
8962
  static readonly statusCode: number;
8916
8963
  static readonly description: string;
8917
- constructor(body: unknown & FreestyleError);
8964
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8918
8965
  }
8919
8966
  declare class RootfsCopyErrorError extends Error {
8920
8967
  body: unknown & FreestyleError;
8968
+ traceId?: string | undefined;
8921
8969
  static readonly code: string;
8922
8970
  static readonly statusCode: number;
8923
8971
  static readonly description: string;
8924
- constructor(body: unknown & FreestyleError);
8972
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
8925
8973
  }
8926
8974
  interface PublicFileNotFound {
8927
8975
  path: string;
@@ -8929,10 +8977,11 @@ interface PublicFileNotFound {
8929
8977
  }
8930
8978
  declare class FileNotFoundError extends Error {
8931
8979
  body: PublicFileNotFound & FreestyleError;
8980
+ traceId?: string | undefined;
8932
8981
  static readonly code: string;
8933
8982
  static readonly statusCode: number;
8934
8983
  static readonly description: string;
8935
- constructor(body: PublicFileNotFound & FreestyleError);
8984
+ constructor(body: PublicFileNotFound & FreestyleError, traceId?: string | undefined);
8936
8985
  }
8937
8986
  interface PublicFilesBadRequest {
8938
8987
  message: string;
@@ -8940,10 +8989,11 @@ interface PublicFilesBadRequest {
8940
8989
  }
8941
8990
  declare class FilesBadRequestError extends Error {
8942
8991
  body: PublicFilesBadRequest & FreestyleError;
8992
+ traceId?: string | undefined;
8943
8993
  static readonly code: string;
8944
8994
  static readonly statusCode: number;
8945
8995
  static readonly description: string;
8946
- constructor(body: PublicFilesBadRequest & FreestyleError);
8996
+ constructor(body: PublicFilesBadRequest & FreestyleError, traceId?: string | undefined);
8947
8997
  }
8948
8998
  interface VmNotFoundPublic {
8949
8999
  vmId: VmId;
@@ -8951,10 +9001,11 @@ interface VmNotFoundPublic {
8951
9001
  }
8952
9002
  declare class VmNotFoundError extends Error {
8953
9003
  body: VmNotFoundPublic & FreestyleError;
9004
+ traceId?: string | undefined;
8954
9005
  static readonly code: string;
8955
9006
  static readonly statusCode: number;
8956
9007
  static readonly description: string;
8957
- constructor(body: VmNotFoundPublic & FreestyleError);
9008
+ constructor(body: VmNotFoundPublic & FreestyleError, traceId?: string | undefined);
8958
9009
  }
8959
9010
  interface PublicInternalForkVmNotFound {
8960
9011
  forkVmId: VmId;
@@ -8962,10 +9013,11 @@ interface PublicInternalForkVmNotFound {
8962
9013
  }
8963
9014
  declare class InternalForkVmNotFoundError extends Error {
8964
9015
  body: PublicInternalForkVmNotFound & FreestyleError;
9016
+ traceId?: string | undefined;
8965
9017
  static readonly code: string;
8966
9018
  static readonly statusCode: number;
8967
9019
  static readonly description: string;
8968
- constructor(body: PublicInternalForkVmNotFound & FreestyleError);
9020
+ constructor(body: PublicInternalForkVmNotFound & FreestyleError, traceId?: string | undefined);
8969
9021
  }
8970
9022
  interface PublicBadRequest {
8971
9023
  message: string;
@@ -8973,10 +9025,11 @@ interface PublicBadRequest {
8973
9025
  }
8974
9026
  declare class BadRequestError extends Error {
8975
9027
  body: PublicBadRequest & FreestyleError;
9028
+ traceId?: string | undefined;
8976
9029
  static readonly code: string;
8977
9030
  static readonly statusCode: number;
8978
9031
  static readonly description: string;
8979
- constructor(body: PublicBadRequest & FreestyleError);
9032
+ constructor(body: PublicBadRequest & FreestyleError, traceId?: string | undefined);
8980
9033
  }
8981
9034
  type VmId = string;
8982
9035
  type VmId = string;
@@ -8990,10 +9043,11 @@ interface PublicInternalVmNotFound {
8990
9043
  }
8991
9044
  declare class InternalVmNotFoundError extends Error {
8992
9045
  body: PublicInternalVmNotFound & FreestyleError;
9046
+ traceId?: string | undefined;
8993
9047
  static readonly code: string;
8994
9048
  static readonly statusCode: number;
8995
9049
  static readonly description: string;
8996
- constructor(body: PublicInternalVmNotFound & FreestyleError);
9050
+ constructor(body: PublicInternalVmNotFound & FreestyleError, traceId?: string | undefined);
8997
9051
  }
8998
9052
  interface PublicSnapshotIsAccountDefault {
8999
9053
  snapshotId: SnapshotId;
@@ -9001,10 +9055,11 @@ interface PublicSnapshotIsAccountDefault {
9001
9055
  }
9002
9056
  declare class SnapshotIsAccountDefaultError extends Error {
9003
9057
  body: PublicSnapshotIsAccountDefault & FreestyleError;
9058
+ traceId?: string | undefined;
9004
9059
  static readonly code: string;
9005
9060
  static readonly statusCode: number;
9006
9061
  static readonly description: string;
9007
- constructor(body: PublicSnapshotIsAccountDefault & FreestyleError);
9062
+ constructor(body: PublicSnapshotIsAccountDefault & FreestyleError, traceId?: string | undefined);
9008
9063
  }
9009
9064
  interface PublicSnapshotAlreadyDeleted {
9010
9065
  snapshotId: SnapshotId;
@@ -9012,10 +9067,11 @@ interface PublicSnapshotAlreadyDeleted {
9012
9067
  }
9013
9068
  declare class SnapshotAlreadyDeletedError extends Error {
9014
9069
  body: PublicSnapshotAlreadyDeleted & FreestyleError;
9070
+ traceId?: string | undefined;
9015
9071
  static readonly code: string;
9016
9072
  static readonly statusCode: number;
9017
9073
  static readonly description: string;
9018
- constructor(body: PublicSnapshotAlreadyDeleted & FreestyleError);
9074
+ constructor(body: PublicSnapshotAlreadyDeleted & FreestyleError, traceId?: string | undefined);
9019
9075
  }
9020
9076
  interface PublicSnapshotNotFound {
9021
9077
  snapshotId: SnapshotId;
@@ -9023,10 +9079,11 @@ interface PublicSnapshotNotFound {
9023
9079
  }
9024
9080
  declare class SnapshotNotFoundError extends Error {
9025
9081
  body: PublicSnapshotNotFound & FreestyleError;
9082
+ traceId?: string | undefined;
9026
9083
  static readonly code: string;
9027
9084
  static readonly statusCode: number;
9028
9085
  static readonly description: string;
9029
- constructor(body: PublicSnapshotNotFound & FreestyleError);
9086
+ constructor(body: PublicSnapshotNotFound & FreestyleError, traceId?: string | undefined);
9030
9087
  }
9031
9088
  /**
9032
9089
  * Branded snapshot ID in the format `sc-<20 lowercase alphanumeric chars>`.
@@ -9055,10 +9112,11 @@ interface PublicSnapshotSetupFailed {
9055
9112
  }
9056
9113
  declare class SnapshotSetupFailedError extends Error {
9057
9114
  body: PublicSnapshotSetupFailed & FreestyleError;
9115
+ traceId?: string | undefined;
9058
9116
  static readonly code: string;
9059
9117
  static readonly statusCode: number;
9060
9118
  static readonly description: string;
9061
- constructor(body: PublicSnapshotSetupFailed & FreestyleError);
9119
+ constructor(body: PublicSnapshotSetupFailed & FreestyleError, traceId?: string | undefined);
9062
9120
  }
9063
9121
  interface PublicSnapshotVmBadRequest {
9064
9122
  message: string;
@@ -9066,31 +9124,35 @@ interface PublicSnapshotVmBadRequest {
9066
9124
  }
9067
9125
  declare class SnapshotVmBadRequestError extends Error {
9068
9126
  body: PublicSnapshotVmBadRequest & FreestyleError;
9127
+ traceId?: string | undefined;
9069
9128
  static readonly code: string;
9070
9129
  static readonly statusCode: number;
9071
9130
  static readonly description: string;
9072
- constructor(body: PublicSnapshotVmBadRequest & FreestyleError);
9131
+ constructor(body: PublicSnapshotVmBadRequest & FreestyleError, traceId?: string | undefined);
9073
9132
  }
9074
9133
  declare class StartingHandleInstanceIdMismatchError extends Error {
9075
9134
  body: unknown & FreestyleError;
9135
+ traceId?: string | undefined;
9076
9136
  static readonly code: string;
9077
9137
  static readonly statusCode: number;
9078
9138
  static readonly description: string;
9079
- constructor(body: unknown & FreestyleError);
9139
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9080
9140
  }
9081
9141
  declare class SuspendFailedAndStopFailedError extends Error {
9082
9142
  body: unknown & FreestyleError;
9143
+ traceId?: string | undefined;
9083
9144
  static readonly code: string;
9084
9145
  static readonly statusCode: number;
9085
9146
  static readonly description: string;
9086
- constructor(body: unknown & FreestyleError);
9147
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9087
9148
  }
9088
9149
  declare class SuspendFailedAndStoppedError extends Error {
9089
9150
  body: unknown & FreestyleError;
9151
+ traceId?: string | undefined;
9090
9152
  static readonly code: string;
9091
9153
  static readonly statusCode: number;
9092
9154
  static readonly description: string;
9093
- constructor(body: unknown & FreestyleError);
9155
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9094
9156
  }
9095
9157
  interface PublicResizeVmMemNotPowerOfTwo {
9096
9158
  got: number;
@@ -9098,10 +9160,11 @@ interface PublicResizeVmMemNotPowerOfTwo {
9098
9160
  }
9099
9161
  declare class ResizeVmMemNotPowerOfTwoError extends Error {
9100
9162
  body: PublicResizeVmMemNotPowerOfTwo & FreestyleError;
9163
+ traceId?: string | undefined;
9101
9164
  static readonly code: string;
9102
9165
  static readonly statusCode: number;
9103
9166
  static readonly description: string;
9104
- constructor(body: PublicResizeVmMemNotPowerOfTwo & FreestyleError);
9167
+ constructor(body: PublicResizeVmMemNotPowerOfTwo & FreestyleError, traceId?: string | undefined);
9105
9168
  }
9106
9169
  interface PublicResizeVmVcpuNotPowerOfTwo {
9107
9170
  got: number;
@@ -9109,10 +9172,11 @@ interface PublicResizeVmVcpuNotPowerOfTwo {
9109
9172
  }
9110
9173
  declare class ResizeVmVcpuNotPowerOfTwoError extends Error {
9111
9174
  body: PublicResizeVmVcpuNotPowerOfTwo & FreestyleError;
9175
+ traceId?: string | undefined;
9112
9176
  static readonly code: string;
9113
9177
  static readonly statusCode: number;
9114
9178
  static readonly description: string;
9115
- constructor(body: PublicResizeVmVcpuNotPowerOfTwo & FreestyleError);
9179
+ constructor(body: PublicResizeVmVcpuNotPowerOfTwo & FreestyleError, traceId?: string | undefined);
9116
9180
  }
9117
9181
  interface PublicResizeVmMemOutOfRange {
9118
9182
  got: number;
@@ -9122,10 +9186,11 @@ interface PublicResizeVmMemOutOfRange {
9122
9186
  }
9123
9187
  declare class ResizeVmMemOutOfRangeError extends Error {
9124
9188
  body: PublicResizeVmMemOutOfRange & FreestyleError;
9189
+ traceId?: string | undefined;
9125
9190
  static readonly code: string;
9126
9191
  static readonly statusCode: number;
9127
9192
  static readonly description: string;
9128
- constructor(body: PublicResizeVmMemOutOfRange & FreestyleError);
9193
+ constructor(body: PublicResizeVmMemOutOfRange & FreestyleError, traceId?: string | undefined);
9129
9194
  }
9130
9195
  interface PublicResizeVmVcpuOutOfRange {
9131
9196
  got: number;
@@ -9134,10 +9199,11 @@ interface PublicResizeVmVcpuOutOfRange {
9134
9199
  }
9135
9200
  declare class ResizeVmVcpuOutOfRangeError extends Error {
9136
9201
  body: PublicResizeVmVcpuOutOfRange & FreestyleError;
9202
+ traceId?: string | undefined;
9137
9203
  static readonly code: string;
9138
9204
  static readonly statusCode: number;
9139
9205
  static readonly description: string;
9140
- constructor(body: PublicResizeVmVcpuOutOfRange & FreestyleError);
9206
+ constructor(body: PublicResizeVmVcpuOutOfRange & FreestyleError, traceId?: string | undefined);
9141
9207
  }
9142
9208
  interface PublicResizeVmRootfsShrinkNotSupported {
9143
9209
  currentMb: number;
@@ -9146,17 +9212,19 @@ interface PublicResizeVmRootfsShrinkNotSupported {
9146
9212
  }
9147
9213
  declare class ResizeVmRootfsShrinkNotSupportedError extends Error {
9148
9214
  body: PublicResizeVmRootfsShrinkNotSupported & FreestyleError;
9215
+ traceId?: string | undefined;
9149
9216
  static readonly code: string;
9150
9217
  static readonly statusCode: number;
9151
9218
  static readonly description: string;
9152
- constructor(body: PublicResizeVmRootfsShrinkNotSupported & FreestyleError);
9219
+ constructor(body: PublicResizeVmRootfsShrinkNotSupported & FreestyleError, traceId?: string | undefined);
9153
9220
  }
9154
9221
  declare class ResizeVmEmptyRequestError extends Error {
9155
9222
  body: unknown & FreestyleError;
9223
+ traceId?: string | undefined;
9156
9224
  static readonly code: string;
9157
9225
  static readonly statusCode: number;
9158
9226
  static readonly description: string;
9159
- constructor(body: unknown & FreestyleError);
9227
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9160
9228
  }
9161
9229
  interface PublicExecTimedOut {
9162
9230
  timeoutMs: number;
@@ -9166,10 +9234,11 @@ interface PublicExecTimedOut {
9166
9234
  }
9167
9235
  declare class ExecTimedOutError extends Error {
9168
9236
  body: PublicExecTimedOut & FreestyleError;
9237
+ traceId?: string | undefined;
9169
9238
  static readonly code: string;
9170
9239
  static readonly statusCode: number;
9171
9240
  static readonly description: string;
9172
- constructor(body: PublicExecTimedOut & FreestyleError);
9241
+ constructor(body: PublicExecTimedOut & FreestyleError, traceId?: string | undefined);
9173
9242
  }
9174
9243
  interface ConflictingSpecSourcesErrorPublic {
9175
9244
  /**
@@ -9188,10 +9257,11 @@ interface ConflictingSpecSourcesErrorPublic {
9188
9257
  }
9189
9258
  declare class ConflictingSpecSourcesErrorError extends Error {
9190
9259
  body: ConflictingSpecSourcesErrorPublic & FreestyleError;
9260
+ traceId?: string | undefined;
9191
9261
  static readonly code: string;
9192
9262
  static readonly statusCode: number;
9193
9263
  static readonly description: string;
9194
- constructor(body: ConflictingSpecSourcesErrorPublic & FreestyleError);
9264
+ constructor(body: ConflictingSpecSourcesErrorPublic & FreestyleError, traceId?: string | undefined);
9195
9265
  }
9196
9266
  interface NonLeafLayerFieldErrorPublic {
9197
9267
  /**
@@ -9207,17 +9277,19 @@ interface NonLeafLayerFieldErrorPublic {
9207
9277
  }
9208
9278
  declare class NonLeafLayerFieldErrorError extends Error {
9209
9279
  body: NonLeafLayerFieldErrorPublic & FreestyleError;
9280
+ traceId?: string | undefined;
9210
9281
  static readonly code: string;
9211
9282
  static readonly statusCode: number;
9212
9283
  static readonly description: string;
9213
- constructor(body: NonLeafLayerFieldErrorPublic & FreestyleError);
9284
+ constructor(body: NonLeafLayerFieldErrorPublic & FreestyleError, traceId?: string | undefined);
9214
9285
  }
9215
9286
  declare class InvalidGitRepoSpecErrorError extends Error {
9216
9287
  body: unknown & FreestyleError;
9288
+ traceId?: string | undefined;
9217
9289
  static readonly code: string;
9218
9290
  static readonly statusCode: number;
9219
9291
  static readonly description: string;
9220
- constructor(body: unknown & FreestyleError);
9292
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9221
9293
  }
9222
9294
  interface PublicForkVmNotFound {
9223
9295
  forkVmId: string;
@@ -9225,10 +9297,11 @@ interface PublicForkVmNotFound {
9225
9297
  }
9226
9298
  declare class ForkVmNotFoundError extends Error {
9227
9299
  body: PublicForkVmNotFound & FreestyleError;
9300
+ traceId?: string | undefined;
9228
9301
  static readonly code: string;
9229
9302
  static readonly statusCode: number;
9230
9303
  static readonly description: string;
9231
- constructor(body: PublicForkVmNotFound & FreestyleError);
9304
+ constructor(body: PublicForkVmNotFound & FreestyleError, traceId?: string | undefined);
9232
9305
  }
9233
9306
  interface PublicCreateSnapshotBadRequest {
9234
9307
  message: string;
@@ -9236,10 +9309,11 @@ interface PublicCreateSnapshotBadRequest {
9236
9309
  }
9237
9310
  declare class CreateSnapshotBadRequestError extends Error {
9238
9311
  body: PublicCreateSnapshotBadRequest & FreestyleError;
9312
+ traceId?: string | undefined;
9239
9313
  static readonly code: string;
9240
9314
  static readonly statusCode: number;
9241
9315
  static readonly description: string;
9242
- constructor(body: PublicCreateSnapshotBadRequest & FreestyleError);
9316
+ constructor(body: PublicCreateSnapshotBadRequest & FreestyleError, traceId?: string | undefined);
9243
9317
  }
9244
9318
  interface PublicUnsupportedOs {
9245
9319
  os: string;
@@ -9247,10 +9321,11 @@ interface PublicUnsupportedOs {
9247
9321
  }
9248
9322
  declare class UnsupportedOsError extends Error {
9249
9323
  body: PublicUnsupportedOs & FreestyleError;
9324
+ traceId?: string | undefined;
9250
9325
  static readonly code: string;
9251
9326
  static readonly statusCode: number;
9252
9327
  static readonly description: string;
9253
- constructor(body: PublicUnsupportedOs & FreestyleError);
9328
+ constructor(body: PublicUnsupportedOs & FreestyleError, traceId?: string | undefined);
9254
9329
  }
9255
9330
  interface PublicBuildFailed {
9256
9331
  exitCode: number;
@@ -9259,115 +9334,131 @@ interface PublicBuildFailed {
9259
9334
  }
9260
9335
  declare class BuildFailedError extends Error {
9261
9336
  body: PublicBuildFailed & FreestyleError;
9337
+ traceId?: string | undefined;
9262
9338
  static readonly code: string;
9263
9339
  static readonly statusCode: number;
9264
9340
  static readonly description: string;
9265
- constructor(body: PublicBuildFailed & FreestyleError);
9341
+ constructor(body: PublicBuildFailed & FreestyleError, traceId?: string | undefined);
9266
9342
  }
9267
9343
  declare class ResumedVmNonResponsiveError extends Error {
9268
9344
  body: unknown & FreestyleError;
9345
+ traceId?: string | undefined;
9269
9346
  static readonly code: string;
9270
9347
  static readonly statusCode: number;
9271
9348
  static readonly description: string;
9272
- constructor(body: unknown & FreestyleError);
9349
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9273
9350
  }
9274
9351
  declare class SnapshotLoadTimeoutError extends Error {
9275
9352
  body: unknown & FreestyleError;
9353
+ traceId?: string | undefined;
9276
9354
  static readonly code: string;
9277
9355
  static readonly statusCode: number;
9278
9356
  static readonly description: string;
9279
- constructor(body: unknown & FreestyleError);
9357
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9280
9358
  }
9281
9359
  declare class UffdTimeoutErrorError extends Error {
9282
9360
  body: unknown & FreestyleError;
9361
+ traceId?: string | undefined;
9283
9362
  static readonly code: string;
9284
9363
  static readonly statusCode: number;
9285
9364
  static readonly description: string;
9286
- constructor(body: unknown & FreestyleError);
9365
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9287
9366
  }
9288
9367
  declare class KernelPanicError extends Error {
9289
9368
  body: unknown & FreestyleError;
9369
+ traceId?: string | undefined;
9290
9370
  static readonly code: string;
9291
9371
  static readonly statusCode: number;
9292
9372
  static readonly description: string;
9293
- constructor(body: unknown & FreestyleError);
9373
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9294
9374
  }
9295
9375
  declare class ReqwestError extends Error {
9296
9376
  body: unknown & FreestyleError;
9377
+ traceId?: string | undefined;
9297
9378
  static readonly code: string;
9298
9379
  static readonly statusCode: number;
9299
9380
  static readonly description: string;
9300
- constructor(body: unknown & FreestyleError);
9381
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9301
9382
  }
9302
9383
  declare class FirecrackerPidNotFoundError extends Error {
9303
9384
  body: unknown & FreestyleError;
9385
+ traceId?: string | undefined;
9304
9386
  static readonly code: string;
9305
9387
  static readonly statusCode: number;
9306
9388
  static readonly description: string;
9307
- constructor(body: unknown & FreestyleError);
9389
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9308
9390
  }
9309
9391
  declare class FirecrackerApiSocketNotFoundError extends Error {
9310
9392
  body: unknown & FreestyleError;
9393
+ traceId?: string | undefined;
9311
9394
  static readonly code: string;
9312
9395
  static readonly statusCode: number;
9313
9396
  static readonly description: string;
9314
- constructor(body: unknown & FreestyleError);
9397
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9315
9398
  }
9316
9399
  declare class InvalidSnapshotIdError extends Error {
9317
9400
  body: unknown & FreestyleError;
9401
+ traceId?: string | undefined;
9318
9402
  static readonly code: string;
9319
9403
  static readonly statusCode: number;
9320
9404
  static readonly description: string;
9321
- constructor(body: unknown & FreestyleError);
9405
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9322
9406
  }
9323
9407
  declare class VmStartTimeoutError extends Error {
9324
9408
  body: unknown & FreestyleError;
9409
+ traceId?: string | undefined;
9325
9410
  static readonly code: string;
9326
9411
  static readonly statusCode: number;
9327
9412
  static readonly description: string;
9328
- constructor(body: unknown & FreestyleError);
9413
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9329
9414
  }
9330
9415
  declare class VmIsSuspendingError extends Error {
9331
9416
  body: unknown & FreestyleError;
9417
+ traceId?: string | undefined;
9332
9418
  static readonly code: string;
9333
9419
  static readonly statusCode: number;
9334
9420
  static readonly description: string;
9335
- constructor(body: unknown & FreestyleError);
9421
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9336
9422
  }
9337
9423
  declare class VmExitDuringStartError extends Error {
9338
9424
  body: unknown & FreestyleError;
9425
+ traceId?: string | undefined;
9339
9426
  static readonly code: string;
9340
9427
  static readonly statusCode: number;
9341
9428
  static readonly description: string;
9342
- constructor(body: unknown & FreestyleError);
9429
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9343
9430
  }
9344
9431
  declare class VmAccessDeniedError extends Error {
9345
9432
  body: unknown & FreestyleError;
9433
+ traceId?: string | undefined;
9346
9434
  static readonly code: string;
9347
9435
  static readonly statusCode: number;
9348
9436
  static readonly description: string;
9349
- constructor(body: unknown & FreestyleError);
9437
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9350
9438
  }
9351
9439
  declare class FailedToSpawnUffdError extends Error {
9352
9440
  body: unknown & FreestyleError;
9441
+ traceId?: string | undefined;
9353
9442
  static readonly code: string;
9354
9443
  static readonly statusCode: number;
9355
9444
  static readonly description: string;
9356
- constructor(body: unknown & FreestyleError);
9445
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9357
9446
  }
9358
9447
  declare class VmSpawnProcessError extends Error {
9359
9448
  body: unknown & FreestyleError;
9449
+ traceId?: string | undefined;
9360
9450
  static readonly code: string;
9361
9451
  static readonly statusCode: number;
9362
9452
  static readonly description: string;
9363
- constructor(body: unknown & FreestyleError);
9453
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9364
9454
  }
9365
9455
  declare class VmSubnetNotFoundError extends Error {
9366
9456
  body: unknown & FreestyleError;
9457
+ traceId?: string | undefined;
9367
9458
  static readonly code: string;
9368
9459
  static readonly statusCode: number;
9369
9460
  static readonly description: string;
9370
- constructor(body: unknown & FreestyleError);
9461
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9371
9462
  }
9372
9463
  interface PublicCreateVmMemNotPowerOfTwo {
9373
9464
  got: number;
@@ -9375,10 +9466,11 @@ interface PublicCreateVmMemNotPowerOfTwo {
9375
9466
  }
9376
9467
  declare class CreateVmMemNotPowerOfTwoError extends Error {
9377
9468
  body: PublicCreateVmMemNotPowerOfTwo & FreestyleError;
9469
+ traceId?: string | undefined;
9378
9470
  static readonly code: string;
9379
9471
  static readonly statusCode: number;
9380
9472
  static readonly description: string;
9381
- constructor(body: PublicCreateVmMemNotPowerOfTwo & FreestyleError);
9473
+ constructor(body: PublicCreateVmMemNotPowerOfTwo & FreestyleError, traceId?: string | undefined);
9382
9474
  }
9383
9475
  interface PublicCreateVmVcpuNotPowerOfTwo {
9384
9476
  got: number;
@@ -9386,10 +9478,11 @@ interface PublicCreateVmVcpuNotPowerOfTwo {
9386
9478
  }
9387
9479
  declare class CreateVmVcpuNotPowerOfTwoError extends Error {
9388
9480
  body: PublicCreateVmVcpuNotPowerOfTwo & FreestyleError;
9481
+ traceId?: string | undefined;
9389
9482
  static readonly code: string;
9390
9483
  static readonly statusCode: number;
9391
9484
  static readonly description: string;
9392
- constructor(body: PublicCreateVmVcpuNotPowerOfTwo & FreestyleError);
9485
+ constructor(body: PublicCreateVmVcpuNotPowerOfTwo & FreestyleError, traceId?: string | undefined);
9393
9486
  }
9394
9487
  interface PublicCreateVmRootfsOutOfRange {
9395
9488
  got: number;
@@ -9399,10 +9492,11 @@ interface PublicCreateVmRootfsOutOfRange {
9399
9492
  }
9400
9493
  declare class CreateVmRootfsOutOfRangeError extends Error {
9401
9494
  body: PublicCreateVmRootfsOutOfRange & FreestyleError;
9495
+ traceId?: string | undefined;
9402
9496
  static readonly code: string;
9403
9497
  static readonly statusCode: number;
9404
9498
  static readonly description: string;
9405
- constructor(body: PublicCreateVmRootfsOutOfRange & FreestyleError);
9499
+ constructor(body: PublicCreateVmRootfsOutOfRange & FreestyleError, traceId?: string | undefined);
9406
9500
  }
9407
9501
  interface PublicCreateVmMemOutOfRange {
9408
9502
  got: number;
@@ -9412,10 +9506,11 @@ interface PublicCreateVmMemOutOfRange {
9412
9506
  }
9413
9507
  declare class CreateVmMemOutOfRangeError extends Error {
9414
9508
  body: PublicCreateVmMemOutOfRange & FreestyleError;
9509
+ traceId?: string | undefined;
9415
9510
  static readonly code: string;
9416
9511
  static readonly statusCode: number;
9417
9512
  static readonly description: string;
9418
- constructor(body: PublicCreateVmMemOutOfRange & FreestyleError);
9513
+ constructor(body: PublicCreateVmMemOutOfRange & FreestyleError, traceId?: string | undefined);
9419
9514
  }
9420
9515
  interface PublicCreateVmVcpuOutOfRange {
9421
9516
  got: number;
@@ -9424,10 +9519,11 @@ interface PublicCreateVmVcpuOutOfRange {
9424
9519
  }
9425
9520
  declare class CreateVmVcpuOutOfRangeError extends Error {
9426
9521
  body: PublicCreateVmVcpuOutOfRange & FreestyleError;
9522
+ traceId?: string | undefined;
9427
9523
  static readonly code: string;
9428
9524
  static readonly statusCode: number;
9429
9525
  static readonly description: string;
9430
- constructor(body: PublicCreateVmVcpuOutOfRange & FreestyleError);
9526
+ constructor(body: PublicCreateVmVcpuOutOfRange & FreestyleError, traceId?: string | undefined);
9431
9527
  }
9432
9528
  interface PublicCreateVmBadRequest {
9433
9529
  message: string;
@@ -9435,10 +9531,11 @@ interface PublicCreateVmBadRequest {
9435
9531
  }
9436
9532
  declare class CreateVmBadRequestError extends Error {
9437
9533
  body: PublicCreateVmBadRequest & FreestyleError;
9534
+ traceId?: string | undefined;
9438
9535
  static readonly code: string;
9439
9536
  static readonly statusCode: number;
9440
9537
  static readonly description: string;
9441
- constructor(body: PublicCreateVmBadRequest & FreestyleError);
9538
+ constructor(body: PublicCreateVmBadRequest & FreestyleError, traceId?: string | undefined);
9442
9539
  }
9443
9540
  interface VmSetupFailedPublic {
9444
9541
  snapshotId?: string | null;
@@ -9470,108 +9567,123 @@ interface ServiceLog {
9470
9567
  }
9471
9568
  declare class VmSetupFailedError extends Error {
9472
9569
  body: VmSetupFailedPublic & FreestyleError;
9570
+ traceId?: string | undefined;
9473
9571
  static readonly code: string;
9474
9572
  static readonly statusCode: number;
9475
9573
  static readonly description: string;
9476
- constructor(body: VmSetupFailedPublic & FreestyleError);
9574
+ constructor(body: VmSetupFailedPublic & FreestyleError, traceId?: string | undefined);
9477
9575
  }
9478
9576
  declare class WantedByEmptyError extends Error {
9479
9577
  body: unknown & FreestyleError;
9578
+ traceId?: string | undefined;
9480
9579
  static readonly code: string;
9481
9580
  static readonly statusCode: number;
9482
9581
  static readonly description: string;
9483
- constructor(body: unknown & FreestyleError);
9582
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9484
9583
  }
9485
9584
  declare class WorkdirEmptyError extends Error {
9486
9585
  body: unknown & FreestyleError;
9586
+ traceId?: string | undefined;
9487
9587
  static readonly code: string;
9488
9588
  static readonly statusCode: number;
9489
9589
  static readonly description: string;
9490
- constructor(body: unknown & FreestyleError);
9590
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9491
9591
  }
9492
9592
  declare class GroupEmptyError extends Error {
9493
9593
  body: unknown & FreestyleError;
9594
+ traceId?: string | undefined;
9494
9595
  static readonly code: string;
9495
9596
  static readonly statusCode: number;
9496
9597
  static readonly description: string;
9497
- constructor(body: unknown & FreestyleError);
9598
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9498
9599
  }
9499
9600
  declare class UserEmptyError extends Error {
9500
9601
  body: unknown & FreestyleError;
9602
+ traceId?: string | undefined;
9501
9603
  static readonly code: string;
9502
9604
  static readonly statusCode: number;
9503
9605
  static readonly description: string;
9504
- constructor(body: unknown & FreestyleError);
9606
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9505
9607
  }
9506
9608
  declare class OnFailureArrayContainsEmptyError extends Error {
9507
9609
  body: unknown & FreestyleError;
9610
+ traceId?: string | undefined;
9508
9611
  static readonly code: string;
9509
9612
  static readonly statusCode: number;
9510
9613
  static readonly description: string;
9511
- constructor(body: unknown & FreestyleError);
9614
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9512
9615
  }
9513
9616
  declare class RequiresArrayContainsEmptyError extends Error {
9514
9617
  body: unknown & FreestyleError;
9618
+ traceId?: string | undefined;
9515
9619
  static readonly code: string;
9516
9620
  static readonly statusCode: number;
9517
9621
  static readonly description: string;
9518
- constructor(body: unknown & FreestyleError);
9622
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9519
9623
  }
9520
9624
  declare class AfterArrayContainsEmptyError extends Error {
9521
9625
  body: unknown & FreestyleError;
9626
+ traceId?: string | undefined;
9522
9627
  static readonly code: string;
9523
9628
  static readonly statusCode: number;
9524
9629
  static readonly description: string;
9525
- constructor(body: unknown & FreestyleError);
9630
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9526
9631
  }
9527
9632
  declare class EnvKeyContainsEqualsError extends Error {
9528
9633
  body: unknown & FreestyleError;
9634
+ traceId?: string | undefined;
9529
9635
  static readonly code: string;
9530
9636
  static readonly statusCode: number;
9531
9637
  static readonly description: string;
9532
- constructor(body: unknown & FreestyleError);
9638
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9533
9639
  }
9534
9640
  declare class EnvKeyEmptyError extends Error {
9535
9641
  body: unknown & FreestyleError;
9642
+ traceId?: string | undefined;
9536
9643
  static readonly code: string;
9537
9644
  static readonly statusCode: number;
9538
9645
  static readonly description: string;
9539
- constructor(body: unknown & FreestyleError);
9646
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9540
9647
  }
9541
9648
  declare class ExecEmptyError extends Error {
9542
9649
  body: unknown & FreestyleError;
9650
+ traceId?: string | undefined;
9543
9651
  static readonly code: string;
9544
9652
  static readonly statusCode: number;
9545
9653
  static readonly description: string;
9546
- constructor(body: unknown & FreestyleError);
9654
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9547
9655
  }
9548
9656
  declare class ServiceNameTooLongError extends Error {
9549
9657
  body: unknown & FreestyleError;
9658
+ traceId?: string | undefined;
9550
9659
  static readonly code: string;
9551
9660
  static readonly statusCode: number;
9552
9661
  static readonly description: string;
9553
- constructor(body: unknown & FreestyleError);
9662
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9554
9663
  }
9555
9664
  declare class ServiceNameInvalidPrefixError extends Error {
9556
9665
  body: unknown & FreestyleError;
9666
+ traceId?: string | undefined;
9557
9667
  static readonly code: string;
9558
9668
  static readonly statusCode: number;
9559
9669
  static readonly description: string;
9560
- constructor(body: unknown & FreestyleError);
9670
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9561
9671
  }
9562
9672
  declare class ServiceNameInvalidCharsError extends Error {
9563
9673
  body: unknown & FreestyleError;
9674
+ traceId?: string | undefined;
9564
9675
  static readonly code: string;
9565
9676
  static readonly statusCode: number;
9566
9677
  static readonly description: string;
9567
- constructor(body: unknown & FreestyleError);
9678
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9568
9679
  }
9569
9680
  declare class ServiceNameEmptyError extends Error {
9570
9681
  body: unknown & FreestyleError;
9682
+ traceId?: string | undefined;
9571
9683
  static readonly code: string;
9572
9684
  static readonly statusCode: number;
9573
9685
  static readonly description: string;
9574
- constructor(body: unknown & FreestyleError);
9686
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9575
9687
  }
9576
9688
  interface PublicServiceAlreadyExists {
9577
9689
  serviceName: string;
@@ -9579,31 +9691,35 @@ interface PublicServiceAlreadyExists {
9579
9691
  }
9580
9692
  declare class ServiceAlreadyExistsError extends Error {
9581
9693
  body: PublicServiceAlreadyExists & FreestyleError;
9694
+ traceId?: string | undefined;
9582
9695
  static readonly code: string;
9583
9696
  static readonly statusCode: number;
9584
9697
  static readonly description: string;
9585
- constructor(body: PublicServiceAlreadyExists & FreestyleError);
9698
+ constructor(body: PublicServiceAlreadyExists & FreestyleError, traceId?: string | undefined);
9586
9699
  }
9587
9700
  declare class ServiceNotFoundError extends Error {
9588
9701
  body: unknown & FreestyleError;
9702
+ traceId?: string | undefined;
9589
9703
  static readonly code: string;
9590
9704
  static readonly statusCode: number;
9591
9705
  static readonly description: string;
9592
- constructor(body: unknown & FreestyleError);
9706
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9593
9707
  }
9594
9708
  declare class InvalidRequestError extends Error {
9595
9709
  body: unknown & FreestyleError;
9710
+ traceId?: string | undefined;
9596
9711
  static readonly code: string;
9597
9712
  static readonly statusCode: number;
9598
9713
  static readonly description: string;
9599
- constructor(body: unknown & FreestyleError);
9714
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9600
9715
  }
9601
9716
  declare class RepoNotFoundError extends Error {
9602
9717
  body: unknown & FreestyleError;
9718
+ traceId?: string | undefined;
9603
9719
  static readonly code: string;
9604
9720
  static readonly statusCode: number;
9605
9721
  static readonly description: string;
9606
- constructor(body: unknown & FreestyleError);
9722
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9607
9723
  }
9608
9724
  type JavascriptLog = {
9609
9725
  message: string;
@@ -9624,66 +9740,75 @@ interface PublicRuntimeError {
9624
9740
  }
9625
9741
  declare class RuntimeErrorError extends Error {
9626
9742
  body: PublicRuntimeError & FreestyleError;
9743
+ traceId?: string | undefined;
9627
9744
  static readonly code: string;
9628
9745
  static readonly statusCode: number;
9629
9746
  static readonly description: string;
9630
- constructor(body: PublicRuntimeError & FreestyleError);
9747
+ constructor(body: PublicRuntimeError & FreestyleError, traceId?: string | undefined);
9631
9748
  }
9632
9749
  declare class SyntaxErrorError extends Error {
9633
9750
  body: unknown & FreestyleError;
9751
+ traceId?: string | undefined;
9634
9752
  static readonly code: string;
9635
9753
  static readonly statusCode: number;
9636
9754
  static readonly description: string;
9637
- constructor(body: unknown & FreestyleError);
9755
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9638
9756
  }
9639
9757
  declare class InternalError extends Error {
9640
9758
  body: unknown & FreestyleError;
9759
+ traceId?: string | undefined;
9641
9760
  static readonly code: string;
9642
9761
  static readonly statusCode: number;
9643
9762
  static readonly description: string;
9644
- constructor(body: unknown & FreestyleError);
9763
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9645
9764
  }
9646
9765
  declare class SigningError extends Error {
9647
9766
  body: unknown & FreestyleError;
9767
+ traceId?: string | undefined;
9648
9768
  static readonly code: string;
9649
9769
  static readonly statusCode: number;
9650
9770
  static readonly description: string;
9651
- constructor(body: unknown & FreestyleError);
9771
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9652
9772
  }
9653
9773
  declare class InvalidSignatureError extends Error {
9654
9774
  body: unknown & FreestyleError;
9775
+ traceId?: string | undefined;
9655
9776
  static readonly code: string;
9656
9777
  static readonly statusCode: number;
9657
9778
  static readonly description: string;
9658
- constructor(body: unknown & FreestyleError);
9779
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9659
9780
  }
9660
9781
  declare class InvalidParametersError extends Error {
9661
9782
  body: unknown & FreestyleError;
9783
+ traceId?: string | undefined;
9662
9784
  static readonly code: string;
9663
9785
  static readonly statusCode: number;
9664
9786
  static readonly description: string;
9665
- constructor(body: unknown & FreestyleError);
9787
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9666
9788
  }
9667
9789
  declare class MaxUsesExceededError extends Error {
9668
9790
  body: unknown & FreestyleError;
9791
+ traceId?: string | undefined;
9669
9792
  static readonly code: string;
9670
9793
  static readonly statusCode: number;
9671
9794
  static readonly description: string;
9672
- constructor(body: unknown & FreestyleError);
9795
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9673
9796
  }
9674
9797
  declare class ExpiredError extends Error {
9675
9798
  body: unknown & FreestyleError;
9799
+ traceId?: string | undefined;
9676
9800
  static readonly code: string;
9677
9801
  static readonly statusCode: number;
9678
9802
  static readonly description: string;
9679
- constructor(body: unknown & FreestyleError);
9803
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9680
9804
  }
9681
9805
  declare class NotFoundError extends Error {
9682
9806
  body: unknown & FreestyleError;
9807
+ traceId?: string | undefined;
9683
9808
  static readonly code: string;
9684
9809
  static readonly statusCode: number;
9685
9810
  static readonly description: string;
9686
- constructor(body: unknown & FreestyleError);
9811
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9687
9812
  }
9688
9813
  interface PublicTreeNotFound {
9689
9814
  hash: string;
@@ -9691,10 +9816,11 @@ interface PublicTreeNotFound {
9691
9816
  }
9692
9817
  declare class TreeNotFoundError extends Error {
9693
9818
  body: PublicTreeNotFound & FreestyleError;
9819
+ traceId?: string | undefined;
9694
9820
  static readonly code: string;
9695
9821
  static readonly statusCode: number;
9696
9822
  static readonly description: string;
9697
- constructor(body: PublicTreeNotFound & FreestyleError);
9823
+ constructor(body: PublicTreeNotFound & FreestyleError, traceId?: string | undefined);
9698
9824
  }
9699
9825
  interface PublicBranchNotFound {
9700
9826
  branch: string;
@@ -9702,10 +9828,11 @@ interface PublicBranchNotFound {
9702
9828
  }
9703
9829
  declare class BranchNotFoundError extends Error {
9704
9830
  body: PublicBranchNotFound & FreestyleError;
9831
+ traceId?: string | undefined;
9705
9832
  static readonly code: string;
9706
9833
  static readonly statusCode: number;
9707
9834
  static readonly description: string;
9708
- constructor(body: PublicBranchNotFound & FreestyleError);
9835
+ constructor(body: PublicBranchNotFound & FreestyleError, traceId?: string | undefined);
9709
9836
  }
9710
9837
  interface PublicCommitNotFound {
9711
9838
  hash: string;
@@ -9713,10 +9840,11 @@ interface PublicCommitNotFound {
9713
9840
  }
9714
9841
  declare class CommitNotFoundError extends Error {
9715
9842
  body: PublicCommitNotFound & FreestyleError;
9843
+ traceId?: string | undefined;
9716
9844
  static readonly code: string;
9717
9845
  static readonly statusCode: number;
9718
9846
  static readonly description: string;
9719
- constructor(body: PublicCommitNotFound & FreestyleError);
9847
+ constructor(body: PublicCommitNotFound & FreestyleError, traceId?: string | undefined);
9720
9848
  }
9721
9849
  interface PublicParentNotFound {
9722
9850
  sha: string;
@@ -9724,17 +9852,19 @@ interface PublicParentNotFound {
9724
9852
  }
9725
9853
  declare class ParentNotFoundError extends Error {
9726
9854
  body: PublicParentNotFound & FreestyleError;
9855
+ traceId?: string | undefined;
9727
9856
  static readonly code: string;
9728
9857
  static readonly statusCode: number;
9729
9858
  static readonly description: string;
9730
- constructor(body: PublicParentNotFound & FreestyleError);
9859
+ constructor(body: PublicParentNotFound & FreestyleError, traceId?: string | undefined);
9731
9860
  }
9732
9861
  declare class NoDefaultBranchError extends Error {
9733
9862
  body: unknown & FreestyleError;
9863
+ traceId?: string | undefined;
9734
9864
  static readonly code: string;
9735
9865
  static readonly statusCode: number;
9736
9866
  static readonly description: string;
9737
- constructor(body: unknown & FreestyleError);
9867
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9738
9868
  }
9739
9869
  interface PublicInvalidBase64Content {
9740
9870
  path: string;
@@ -9742,10 +9872,11 @@ interface PublicInvalidBase64Content {
9742
9872
  }
9743
9873
  declare class InvalidBase64ContentError extends Error {
9744
9874
  body: PublicInvalidBase64Content & FreestyleError;
9875
+ traceId?: string | undefined;
9745
9876
  static readonly code: string;
9746
9877
  static readonly statusCode: number;
9747
9878
  static readonly description: string;
9748
- constructor(body: PublicInvalidBase64Content & FreestyleError);
9879
+ constructor(body: PublicInvalidBase64Content & FreestyleError, traceId?: string | undefined);
9749
9880
  }
9750
9881
  interface PublicInvalidFileChange {
9751
9882
  path: string;
@@ -9753,10 +9884,11 @@ interface PublicInvalidFileChange {
9753
9884
  }
9754
9885
  declare class InvalidFileChangeError extends Error {
9755
9886
  body: PublicInvalidFileChange & FreestyleError;
9887
+ traceId?: string | undefined;
9756
9888
  static readonly code: string;
9757
9889
  static readonly statusCode: number;
9758
9890
  static readonly description: string;
9759
- constructor(body: PublicInvalidFileChange & FreestyleError);
9891
+ constructor(body: PublicInvalidFileChange & FreestyleError, traceId?: string | undefined);
9760
9892
  }
9761
9893
  interface PublicInvalidFilePath {
9762
9894
  path: string;
@@ -9764,10 +9896,11 @@ interface PublicInvalidFilePath {
9764
9896
  }
9765
9897
  declare class InvalidFilePathError extends Error {
9766
9898
  body: PublicInvalidFilePath & FreestyleError;
9899
+ traceId?: string | undefined;
9767
9900
  static readonly code: string;
9768
9901
  static readonly statusCode: number;
9769
9902
  static readonly description: string;
9770
- constructor(body: PublicInvalidFilePath & FreestyleError);
9903
+ constructor(body: PublicInvalidFilePath & FreestyleError, traceId?: string | undefined);
9771
9904
  }
9772
9905
  interface PublicConflictingParent {
9773
9906
  expected: string;
@@ -9776,10 +9909,11 @@ interface PublicConflictingParent {
9776
9909
  }
9777
9910
  declare class ConflictingParentError extends Error {
9778
9911
  body: PublicConflictingParent & FreestyleError;
9912
+ traceId?: string | undefined;
9779
9913
  static readonly code: string;
9780
9914
  static readonly statusCode: number;
9781
9915
  static readonly description: string;
9782
- constructor(body: PublicConflictingParent & FreestyleError);
9916
+ constructor(body: PublicConflictingParent & FreestyleError, traceId?: string | undefined);
9783
9917
  }
9784
9918
  interface PublicAmbiguous {
9785
9919
  rev: string;
@@ -9787,10 +9921,11 @@ interface PublicAmbiguous {
9787
9921
  }
9788
9922
  declare class AmbiguousError extends Error {
9789
9923
  body: PublicAmbiguous & FreestyleError;
9924
+ traceId?: string | undefined;
9790
9925
  static readonly code: string;
9791
9926
  static readonly statusCode: number;
9792
9927
  static readonly description: string;
9793
- constructor(body: PublicAmbiguous & FreestyleError);
9928
+ constructor(body: PublicAmbiguous & FreestyleError, traceId?: string | undefined);
9794
9929
  }
9795
9930
  interface PublicInvalid {
9796
9931
  rev: string;
@@ -9798,17 +9933,19 @@ interface PublicInvalid {
9798
9933
  }
9799
9934
  declare class InvalidError extends Error {
9800
9935
  body: PublicInvalid & FreestyleError;
9936
+ traceId?: string | undefined;
9801
9937
  static readonly code: string;
9802
9938
  static readonly statusCode: number;
9803
9939
  static readonly description: string;
9804
- constructor(body: PublicInvalid & FreestyleError);
9940
+ constructor(body: PublicInvalid & FreestyleError, traceId?: string | undefined);
9805
9941
  }
9806
9942
  declare class ConflictError extends Error {
9807
9943
  body: unknown & FreestyleError;
9944
+ traceId?: string | undefined;
9808
9945
  static readonly code: string;
9809
9946
  static readonly statusCode: number;
9810
9947
  static readonly description: string;
9811
- constructor(body: unknown & FreestyleError);
9948
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9812
9949
  }
9813
9950
  interface PublicBranchAlreadyExists {
9814
9951
  branch: string;
@@ -9816,10 +9953,11 @@ interface PublicBranchAlreadyExists {
9816
9953
  }
9817
9954
  declare class BranchAlreadyExistsError extends Error {
9818
9955
  body: PublicBranchAlreadyExists & FreestyleError;
9956
+ traceId?: string | undefined;
9819
9957
  static readonly code: string;
9820
9958
  static readonly statusCode: number;
9821
9959
  static readonly description: string;
9822
- constructor(body: PublicBranchAlreadyExists & FreestyleError);
9960
+ constructor(body: PublicBranchAlreadyExists & FreestyleError, traceId?: string | undefined);
9823
9961
  }
9824
9962
  interface PublicPathNotFound {
9825
9963
  path: string;
@@ -9827,10 +9965,11 @@ interface PublicPathNotFound {
9827
9965
  }
9828
9966
  declare class PathNotFoundError extends Error {
9829
9967
  body: PublicPathNotFound & FreestyleError;
9968
+ traceId?: string | undefined;
9830
9969
  static readonly code: string;
9831
9970
  static readonly statusCode: number;
9832
9971
  static readonly description: string;
9833
- constructor(body: PublicPathNotFound & FreestyleError);
9972
+ constructor(body: PublicPathNotFound & FreestyleError, traceId?: string | undefined);
9834
9973
  }
9835
9974
  interface PublicReferenceNotFound {
9836
9975
  reference: string;
@@ -9838,38 +9977,43 @@ interface PublicReferenceNotFound {
9838
9977
  }
9839
9978
  declare class ReferenceNotFoundError extends Error {
9840
9979
  body: PublicReferenceNotFound & FreestyleError;
9980
+ traceId?: string | undefined;
9841
9981
  static readonly code: string;
9842
9982
  static readonly statusCode: number;
9843
9983
  static readonly description: string;
9844
- constructor(body: PublicReferenceNotFound & FreestyleError);
9984
+ constructor(body: PublicReferenceNotFound & FreestyleError, traceId?: string | undefined);
9845
9985
  }
9846
9986
  declare class InvalidServiceError extends Error {
9847
9987
  body: unknown & FreestyleError;
9988
+ traceId?: string | undefined;
9848
9989
  static readonly code: string;
9849
9990
  static readonly statusCode: number;
9850
9991
  static readonly description: string;
9851
- constructor(body: unknown & FreestyleError);
9992
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9852
9993
  }
9853
9994
  declare class ExpectedServiceError extends Error {
9854
9995
  body: unknown & FreestyleError;
9996
+ traceId?: string | undefined;
9855
9997
  static readonly code: string;
9856
9998
  static readonly statusCode: number;
9857
9999
  static readonly description: string;
9858
- constructor(body: unknown & FreestyleError);
10000
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9859
10001
  }
9860
10002
  declare class UnauthorizedError extends Error {
9861
10003
  body: unknown & FreestyleError;
10004
+ traceId?: string | undefined;
9862
10005
  static readonly code: string;
9863
10006
  static readonly statusCode: number;
9864
10007
  static readonly description: string;
9865
- constructor(body: unknown & FreestyleError);
10008
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9866
10009
  }
9867
10010
  declare class ForbiddenError extends Error {
9868
10011
  body: unknown & FreestyleError;
10012
+ traceId?: string | undefined;
9869
10013
  static readonly code: string;
9870
10014
  static readonly statusCode: number;
9871
10015
  static readonly description: string;
9872
- constructor(body: unknown & FreestyleError);
10016
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9873
10017
  }
9874
10018
  interface PublicInvalidAccountId {
9875
10019
  accountId: string;
@@ -9877,17 +10021,19 @@ interface PublicInvalidAccountId {
9877
10021
  }
9878
10022
  declare class InvalidAccountIdError extends Error {
9879
10023
  body: PublicInvalidAccountId & FreestyleError;
10024
+ traceId?: string | undefined;
9880
10025
  static readonly code: string;
9881
10026
  static readonly statusCode: number;
9882
10027
  static readonly description: string;
9883
- constructor(body: PublicInvalidAccountId & FreestyleError);
10028
+ constructor(body: PublicInvalidAccountId & FreestyleError, traceId?: string | undefined);
9884
10029
  }
9885
10030
  declare class SourceImportConflictError extends Error {
9886
10031
  body: unknown & FreestyleError;
10032
+ traceId?: string | undefined;
9887
10033
  static readonly code: string;
9888
10034
  static readonly statusCode: number;
9889
10035
  static readonly description: string;
9890
- constructor(body: unknown & FreestyleError);
10036
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9891
10037
  }
9892
10038
  interface PublicSourceUnauthorized {
9893
10039
  url: string;
@@ -9895,10 +10041,11 @@ interface PublicSourceUnauthorized {
9895
10041
  }
9896
10042
  declare class SourceUnauthorizedError extends Error {
9897
10043
  body: PublicSourceUnauthorized & FreestyleError;
10044
+ traceId?: string | undefined;
9898
10045
  static readonly code: string;
9899
10046
  static readonly statusCode: number;
9900
10047
  static readonly description: string;
9901
- constructor(body: PublicSourceUnauthorized & FreestyleError);
10048
+ constructor(body: PublicSourceUnauthorized & FreestyleError, traceId?: string | undefined);
9902
10049
  }
9903
10050
  interface PublicSourceNotFound {
9904
10051
  url: string;
@@ -9906,10 +10053,11 @@ interface PublicSourceNotFound {
9906
10053
  }
9907
10054
  declare class SourceNotFoundError extends Error {
9908
10055
  body: PublicSourceNotFound & FreestyleError;
10056
+ traceId?: string | undefined;
9909
10057
  static readonly code: string;
9910
10058
  static readonly statusCode: number;
9911
10059
  static readonly description: string;
9912
- constructor(body: PublicSourceNotFound & FreestyleError);
10060
+ constructor(body: PublicSourceNotFound & FreestyleError, traceId?: string | undefined);
9913
10061
  }
9914
10062
  interface PublicImportSubdirNotFound {
9915
10063
  /**
@@ -9921,10 +10069,11 @@ interface PublicImportSubdirNotFound {
9921
10069
  }
9922
10070
  declare class ImportSubdirNotFoundError extends Error {
9923
10071
  body: PublicImportSubdirNotFound & FreestyleError;
10072
+ traceId?: string | undefined;
9924
10073
  static readonly code: string;
9925
10074
  static readonly statusCode: number;
9926
10075
  static readonly description: string;
9927
- constructor(body: PublicImportSubdirNotFound & FreestyleError);
10076
+ constructor(body: PublicImportSubdirNotFound & FreestyleError, traceId?: string | undefined);
9928
10077
  }
9929
10078
  interface PublicRepoAlreadyExists {
9930
10079
  repoId: string;
@@ -9932,10 +10081,11 @@ interface PublicRepoAlreadyExists {
9932
10081
  }
9933
10082
  declare class RepoAlreadyExistsError extends Error {
9934
10083
  body: PublicRepoAlreadyExists & FreestyleError;
10084
+ traceId?: string | undefined;
9935
10085
  static readonly code: string;
9936
10086
  static readonly statusCode: number;
9937
10087
  static readonly description: string;
9938
- constructor(body: PublicRepoAlreadyExists & FreestyleError);
10088
+ constructor(body: PublicRepoAlreadyExists & FreestyleError, traceId?: string | undefined);
9939
10089
  }
9940
10090
  interface PublicTagNotFound {
9941
10091
  hash: string;
@@ -9943,10 +10093,11 @@ interface PublicTagNotFound {
9943
10093
  }
9944
10094
  declare class TagNotFoundError extends Error {
9945
10095
  body: PublicTagNotFound & FreestyleError;
10096
+ traceId?: string | undefined;
9946
10097
  static readonly code: string;
9947
10098
  static readonly statusCode: number;
9948
10099
  static readonly description: string;
9949
- constructor(body: PublicTagNotFound & FreestyleError);
10100
+ constructor(body: PublicTagNotFound & FreestyleError, traceId?: string | undefined);
9950
10101
  }
9951
10102
  interface PublicInvalidRevision {
9952
10103
  revision: string;
@@ -9954,10 +10105,11 @@ interface PublicInvalidRevision {
9954
10105
  }
9955
10106
  declare class InvalidRevisionError extends Error {
9956
10107
  body: PublicInvalidRevision & FreestyleError;
10108
+ traceId?: string | undefined;
9957
10109
  static readonly code: string;
9958
10110
  static readonly statusCode: number;
9959
10111
  static readonly description: string;
9960
- constructor(body: PublicInvalidRevision & FreestyleError);
10112
+ constructor(body: PublicInvalidRevision & FreestyleError, traceId?: string | undefined);
9961
10113
  }
9962
10114
  interface PublicBlobNotFound {
9963
10115
  hash: string;
@@ -9965,17 +10117,19 @@ interface PublicBlobNotFound {
9965
10117
  }
9966
10118
  declare class BlobNotFoundError extends Error {
9967
10119
  body: PublicBlobNotFound & FreestyleError;
10120
+ traceId?: string | undefined;
9968
10121
  static readonly code: string;
9969
10122
  static readonly statusCode: number;
9970
10123
  static readonly description: string;
9971
- constructor(body: PublicBlobNotFound & FreestyleError);
10124
+ constructor(body: PublicBlobNotFound & FreestyleError, traceId?: string | undefined);
9972
10125
  }
9973
10126
  declare class SendErrorError extends Error {
9974
10127
  body: unknown & FreestyleError;
10128
+ traceId?: string | undefined;
9975
10129
  static readonly code: string;
9976
10130
  static readonly statusCode: number;
9977
10131
  static readonly description: string;
9978
- constructor(body: unknown & FreestyleError);
10132
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
9979
10133
  }
9980
10134
  type LfsTransferAdapter = ("basic" | "multipart" | "ssh") | {
9981
10135
  other: string;
@@ -9987,10 +10141,11 @@ interface PublicUnsupportedTransfer {
9987
10141
  }
9988
10142
  declare class UnsupportedTransferError extends Error {
9989
10143
  body: PublicUnsupportedTransfer & FreestyleError;
10144
+ traceId?: string | undefined;
9990
10145
  static readonly code: string;
9991
10146
  static readonly statusCode: number;
9992
10147
  static readonly description: string;
9993
- constructor(body: PublicUnsupportedTransfer & FreestyleError);
10148
+ constructor(body: PublicUnsupportedTransfer & FreestyleError, traceId?: string | undefined);
9994
10149
  }
9995
10150
  interface PublicDiffInvalidPathPattern {
9996
10151
  reason: string;
@@ -9998,10 +10153,11 @@ interface PublicDiffInvalidPathPattern {
9998
10153
  }
9999
10154
  declare class DiffInvalidPathPatternError extends Error {
10000
10155
  body: PublicDiffInvalidPathPattern & FreestyleError;
10156
+ traceId?: string | undefined;
10001
10157
  static readonly code: string;
10002
10158
  static readonly statusCode: number;
10003
10159
  static readonly description: string;
10004
- constructor(body: PublicDiffInvalidPathPattern & FreestyleError);
10160
+ constructor(body: PublicDiffInvalidPathPattern & FreestyleError, traceId?: string | undefined);
10005
10161
  }
10006
10162
  interface PublicDiffInvalidRegex {
10007
10163
  reason: string;
@@ -10009,17 +10165,19 @@ interface PublicDiffInvalidRegex {
10009
10165
  }
10010
10166
  declare class DiffInvalidRegexError extends Error {
10011
10167
  body: PublicDiffInvalidRegex & FreestyleError;
10168
+ traceId?: string | undefined;
10012
10169
  static readonly code: string;
10013
10170
  static readonly statusCode: number;
10014
10171
  static readonly description: string;
10015
- constructor(body: PublicDiffInvalidRegex & FreestyleError);
10172
+ constructor(body: PublicDiffInvalidRegex & FreestyleError, traceId?: string | undefined);
10016
10173
  }
10017
10174
  declare class DiffEmptyQueryError extends Error {
10018
10175
  body: unknown & FreestyleError;
10176
+ traceId?: string | undefined;
10019
10177
  static readonly code: string;
10020
10178
  static readonly statusCode: number;
10021
10179
  static readonly description: string;
10022
- constructor(body: unknown & FreestyleError);
10180
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10023
10181
  }
10024
10182
  interface PublicCommitInvalidRegex {
10025
10183
  reason: string;
@@ -10027,17 +10185,19 @@ interface PublicCommitInvalidRegex {
10027
10185
  }
10028
10186
  declare class CommitInvalidRegexError extends Error {
10029
10187
  body: PublicCommitInvalidRegex & FreestyleError;
10188
+ traceId?: string | undefined;
10030
10189
  static readonly code: string;
10031
10190
  static readonly statusCode: number;
10032
10191
  static readonly description: string;
10033
- constructor(body: PublicCommitInvalidRegex & FreestyleError);
10192
+ constructor(body: PublicCommitInvalidRegex & FreestyleError, traceId?: string | undefined);
10034
10193
  }
10035
10194
  declare class CommitEmptyQueryError extends Error {
10036
10195
  body: unknown & FreestyleError;
10196
+ traceId?: string | undefined;
10037
10197
  static readonly code: string;
10038
10198
  static readonly statusCode: number;
10039
10199
  static readonly description: string;
10040
- constructor(body: unknown & FreestyleError);
10200
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10041
10201
  }
10042
10202
  interface PublicFilenameInvalidPattern {
10043
10203
  reason: string;
@@ -10045,17 +10205,19 @@ interface PublicFilenameInvalidPattern {
10045
10205
  }
10046
10206
  declare class FilenameInvalidPatternError extends Error {
10047
10207
  body: PublicFilenameInvalidPattern & FreestyleError;
10208
+ traceId?: string | undefined;
10048
10209
  static readonly code: string;
10049
10210
  static readonly statusCode: number;
10050
10211
  static readonly description: string;
10051
- constructor(body: PublicFilenameInvalidPattern & FreestyleError);
10212
+ constructor(body: PublicFilenameInvalidPattern & FreestyleError, traceId?: string | undefined);
10052
10213
  }
10053
10214
  declare class FilenameEmptyQueryError extends Error {
10054
10215
  body: unknown & FreestyleError;
10216
+ traceId?: string | undefined;
10055
10217
  static readonly code: string;
10056
10218
  static readonly statusCode: number;
10057
10219
  static readonly description: string;
10058
- constructor(body: unknown & FreestyleError);
10220
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10059
10221
  }
10060
10222
  interface PublicInvalidRegex {
10061
10223
  reason: string;
@@ -10063,10 +10225,11 @@ interface PublicInvalidRegex {
10063
10225
  }
10064
10226
  declare class InvalidRegexError extends Error {
10065
10227
  body: PublicInvalidRegex & FreestyleError;
10228
+ traceId?: string | undefined;
10066
10229
  static readonly code: string;
10067
10230
  static readonly statusCode: number;
10068
10231
  static readonly description: string;
10069
- constructor(body: PublicInvalidRegex & FreestyleError);
10232
+ constructor(body: PublicInvalidRegex & FreestyleError, traceId?: string | undefined);
10070
10233
  }
10071
10234
  interface PublicInvalidPathPattern {
10072
10235
  reason: string;
@@ -10074,24 +10237,27 @@ interface PublicInvalidPathPattern {
10074
10237
  }
10075
10238
  declare class InvalidPathPatternError extends Error {
10076
10239
  body: PublicInvalidPathPattern & FreestyleError;
10240
+ traceId?: string | undefined;
10077
10241
  static readonly code: string;
10078
10242
  static readonly statusCode: number;
10079
10243
  static readonly description: string;
10080
- constructor(body: PublicInvalidPathPattern & FreestyleError);
10244
+ constructor(body: PublicInvalidPathPattern & FreestyleError, traceId?: string | undefined);
10081
10245
  }
10082
10246
  declare class EmptyQueryError extends Error {
10083
10247
  body: unknown & FreestyleError;
10248
+ traceId?: string | undefined;
10084
10249
  static readonly code: string;
10085
10250
  static readonly statusCode: number;
10086
10251
  static readonly description: string;
10087
- constructor(body: unknown & FreestyleError);
10252
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10088
10253
  }
10089
10254
  declare class PackfileError extends Error {
10090
10255
  body: unknown & FreestyleError;
10256
+ traceId?: string | undefined;
10091
10257
  static readonly code: string;
10092
10258
  static readonly statusCode: number;
10093
10259
  static readonly description: string;
10094
- constructor(body: unknown & FreestyleError);
10260
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10095
10261
  }
10096
10262
  interface PublicInvalidRange {
10097
10263
  since: string;
@@ -10100,17 +10266,19 @@ interface PublicInvalidRange {
10100
10266
  }
10101
10267
  declare class InvalidRangeError extends Error {
10102
10268
  body: PublicInvalidRange & FreestyleError;
10269
+ traceId?: string | undefined;
10103
10270
  static readonly code: string;
10104
10271
  static readonly statusCode: number;
10105
10272
  static readonly description: string;
10106
- constructor(body: PublicInvalidRange & FreestyleError);
10273
+ constructor(body: PublicInvalidRange & FreestyleError, traceId?: string | undefined);
10107
10274
  }
10108
10275
  declare class OffsetWithSelectorError extends Error {
10109
10276
  body: unknown & FreestyleError;
10277
+ traceId?: string | undefined;
10110
10278
  static readonly code: string;
10111
10279
  static readonly statusCode: number;
10112
10280
  static readonly description: string;
10113
- constructor(body: unknown & FreestyleError);
10281
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10114
10282
  }
10115
10283
  interface PublicCommitNotInBranch {
10116
10284
  sha: string;
@@ -10119,17 +10287,19 @@ interface PublicCommitNotInBranch {
10119
10287
  }
10120
10288
  declare class CommitNotInBranchError extends Error {
10121
10289
  body: PublicCommitNotInBranch & FreestyleError;
10290
+ traceId?: string | undefined;
10122
10291
  static readonly code: string;
10123
10292
  static readonly statusCode: number;
10124
10293
  static readonly description: string;
10125
- constructor(body: PublicCommitNotInBranch & FreestyleError);
10294
+ constructor(body: PublicCommitNotInBranch & FreestyleError, traceId?: string | undefined);
10126
10295
  }
10127
10296
  declare class GitHubSyncConflictError extends Error {
10128
10297
  body: unknown & FreestyleError;
10298
+ traceId?: string | undefined;
10129
10299
  static readonly code: string;
10130
10300
  static readonly statusCode: number;
10131
10301
  static readonly description: string;
10132
- constructor(body: unknown & FreestyleError);
10302
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10133
10303
  }
10134
10304
  interface InvalidObjectIdPublic {
10135
10305
  hash: string;
@@ -10137,10 +10307,11 @@ interface InvalidObjectIdPublic {
10137
10307
  }
10138
10308
  declare class InvalidObjectIdError extends Error {
10139
10309
  body: InvalidObjectIdPublic & FreestyleError;
10310
+ traceId?: string | undefined;
10140
10311
  static readonly code: string;
10141
10312
  static readonly statusCode: number;
10142
10313
  static readonly description: string;
10143
- constructor(body: InvalidObjectIdPublic & FreestyleError);
10314
+ constructor(body: InvalidObjectIdPublic & FreestyleError, traceId?: string | undefined);
10144
10315
  }
10145
10316
  interface PublicTooManyConcurrentRepairs {
10146
10317
  current: number;
@@ -10149,10 +10320,11 @@ interface PublicTooManyConcurrentRepairs {
10149
10320
  }
10150
10321
  declare class TooManyConcurrentRepairsError extends Error {
10151
10322
  body: PublicTooManyConcurrentRepairs & FreestyleError;
10323
+ traceId?: string | undefined;
10152
10324
  static readonly code: string;
10153
10325
  static readonly statusCode: number;
10154
10326
  static readonly description: string;
10155
- constructor(body: PublicTooManyConcurrentRepairs & FreestyleError);
10327
+ constructor(body: PublicTooManyConcurrentRepairs & FreestyleError, traceId?: string | undefined);
10156
10328
  }
10157
10329
  interface PublicAlreadyInProgress {
10158
10330
  existingJobId: string;
@@ -10160,10 +10332,11 @@ interface PublicAlreadyInProgress {
10160
10332
  }
10161
10333
  declare class AlreadyInProgressError extends Error {
10162
10334
  body: PublicAlreadyInProgress & FreestyleError;
10335
+ traceId?: string | undefined;
10163
10336
  static readonly code: string;
10164
10337
  static readonly statusCode: number;
10165
10338
  static readonly description: string;
10166
- constructor(body: PublicAlreadyInProgress & FreestyleError);
10339
+ constructor(body: PublicAlreadyInProgress & FreestyleError, traceId?: string | undefined);
10167
10340
  }
10168
10341
  interface PublicJobNotFound {
10169
10342
  jobId: string;
@@ -10171,31 +10344,35 @@ interface PublicJobNotFound {
10171
10344
  }
10172
10345
  declare class JobNotFoundError extends Error {
10173
10346
  body: PublicJobNotFound & FreestyleError;
10347
+ traceId?: string | undefined;
10174
10348
  static readonly code: string;
10175
10349
  static readonly statusCode: number;
10176
10350
  static readonly description: string;
10177
- constructor(body: PublicJobNotFound & FreestyleError);
10351
+ constructor(body: PublicJobNotFound & FreestyleError, traceId?: string | undefined);
10178
10352
  }
10179
10353
  declare class UnavailableError extends Error {
10180
10354
  body: unknown & FreestyleError;
10355
+ traceId?: string | undefined;
10181
10356
  static readonly code: string;
10182
10357
  static readonly statusCode: number;
10183
10358
  static readonly description: string;
10184
- constructor(body: unknown & FreestyleError);
10359
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10185
10360
  }
10186
10361
  declare class ScheduleNotFoundError extends Error {
10187
10362
  body: unknown & FreestyleError;
10363
+ traceId?: string | undefined;
10188
10364
  static readonly code: string;
10189
10365
  static readonly statusCode: number;
10190
10366
  static readonly description: string;
10191
- constructor(body: unknown & FreestyleError);
10367
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10192
10368
  }
10193
10369
  declare class ServiceUnavailableError extends Error {
10194
10370
  body: unknown & FreestyleError;
10371
+ traceId?: string | undefined;
10195
10372
  static readonly code: string;
10196
10373
  static readonly statusCode: number;
10197
10374
  static readonly description: string;
10198
- constructor(body: unknown & FreestyleError);
10375
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10199
10376
  }
10200
10377
  interface PublicRepairAlreadyInProgress {
10201
10378
  existingJobId: string;
@@ -10203,10 +10380,11 @@ interface PublicRepairAlreadyInProgress {
10203
10380
  }
10204
10381
  declare class RepairAlreadyInProgressError extends Error {
10205
10382
  body: PublicRepairAlreadyInProgress & FreestyleError;
10383
+ traceId?: string | undefined;
10206
10384
  static readonly code: string;
10207
10385
  static readonly statusCode: number;
10208
10386
  static readonly description: string;
10209
- constructor(body: PublicRepairAlreadyInProgress & FreestyleError);
10387
+ constructor(body: PublicRepairAlreadyInProgress & FreestyleError, traceId?: string | undefined);
10210
10388
  }
10211
10389
  interface PublicMemoryStorageQuotaExceeded {
10212
10390
  limit: number;
@@ -10216,10 +10394,11 @@ interface PublicMemoryStorageQuotaExceeded {
10216
10394
  }
10217
10395
  declare class MemoryStorageQuotaExceededError extends Error {
10218
10396
  body: PublicMemoryStorageQuotaExceeded & FreestyleError;
10397
+ traceId?: string | undefined;
10219
10398
  static readonly code: string;
10220
10399
  static readonly statusCode: number;
10221
10400
  static readonly description: string;
10222
- constructor(body: PublicMemoryStorageQuotaExceeded & FreestyleError);
10401
+ constructor(body: PublicMemoryStorageQuotaExceeded & FreestyleError, traceId?: string | undefined);
10223
10402
  }
10224
10403
  interface PublicRootfsStorageQuotaExceeded {
10225
10404
  limit: number;
@@ -10229,10 +10408,11 @@ interface PublicRootfsStorageQuotaExceeded {
10229
10408
  }
10230
10409
  declare class RootfsStorageQuotaExceededError extends Error {
10231
10410
  body: PublicRootfsStorageQuotaExceeded & FreestyleError;
10411
+ traceId?: string | undefined;
10232
10412
  static readonly code: string;
10233
10413
  static readonly statusCode: number;
10234
10414
  static readonly description: string;
10235
- constructor(body: PublicRootfsStorageQuotaExceeded & FreestyleError);
10415
+ constructor(body: PublicRootfsStorageQuotaExceeded & FreestyleError, traceId?: string | undefined);
10236
10416
  }
10237
10417
  interface PublicRootfsSizeTooLarge {
10238
10418
  gotGb: number;
@@ -10240,10 +10420,11 @@ interface PublicRootfsSizeTooLarge {
10240
10420
  }
10241
10421
  declare class RootfsSizeTooLargeError extends Error {
10242
10422
  body: PublicRootfsSizeTooLarge & FreestyleError;
10423
+ traceId?: string | undefined;
10243
10424
  static readonly code: string;
10244
10425
  static readonly statusCode: number;
10245
10426
  static readonly description: string;
10246
- constructor(body: PublicRootfsSizeTooLarge & FreestyleError);
10427
+ constructor(body: PublicRootfsSizeTooLarge & FreestyleError, traceId?: string | undefined);
10247
10428
  }
10248
10429
  interface PublicMemSizeTooLarge {
10249
10430
  gotGb: number;
@@ -10251,10 +10432,11 @@ interface PublicMemSizeTooLarge {
10251
10432
  }
10252
10433
  declare class MemSizeTooLargeError extends Error {
10253
10434
  body: PublicMemSizeTooLarge & FreestyleError;
10435
+ traceId?: string | undefined;
10254
10436
  static readonly code: string;
10255
10437
  static readonly statusCode: number;
10256
10438
  static readonly description: string;
10257
- constructor(body: PublicMemSizeTooLarge & FreestyleError);
10439
+ constructor(body: PublicMemSizeTooLarge & FreestyleError, traceId?: string | undefined);
10258
10440
  }
10259
10441
  interface PublicRootfsOverPlanLimit {
10260
10442
  got: number;
@@ -10263,10 +10445,11 @@ interface PublicRootfsOverPlanLimit {
10263
10445
  }
10264
10446
  declare class RootfsOverPlanLimitError extends Error {
10265
10447
  body: PublicRootfsOverPlanLimit & FreestyleError;
10448
+ traceId?: string | undefined;
10266
10449
  static readonly code: string;
10267
10450
  static readonly statusCode: number;
10268
10451
  static readonly description: string;
10269
- constructor(body: PublicRootfsOverPlanLimit & FreestyleError);
10452
+ constructor(body: PublicRootfsOverPlanLimit & FreestyleError, traceId?: string | undefined);
10270
10453
  }
10271
10454
  interface PublicMemOverPlanLimit {
10272
10455
  got: number;
@@ -10275,10 +10458,11 @@ interface PublicMemOverPlanLimit {
10275
10458
  }
10276
10459
  declare class MemOverPlanLimitError extends Error {
10277
10460
  body: PublicMemOverPlanLimit & FreestyleError;
10461
+ traceId?: string | undefined;
10278
10462
  static readonly code: string;
10279
10463
  static readonly statusCode: number;
10280
10464
  static readonly description: string;
10281
- constructor(body: PublicMemOverPlanLimit & FreestyleError);
10465
+ constructor(body: PublicMemOverPlanLimit & FreestyleError, traceId?: string | undefined);
10282
10466
  }
10283
10467
  interface PublicVcpuOverPlanLimit {
10284
10468
  got: number;
@@ -10287,17 +10471,19 @@ interface PublicVcpuOverPlanLimit {
10287
10471
  }
10288
10472
  declare class VcpuOverPlanLimitError extends Error {
10289
10473
  body: PublicVcpuOverPlanLimit & FreestyleError;
10474
+ traceId?: string | undefined;
10290
10475
  static readonly code: string;
10291
10476
  static readonly statusCode: number;
10292
10477
  static readonly description: string;
10293
- constructor(body: PublicVcpuOverPlanLimit & FreestyleError);
10478
+ constructor(body: PublicVcpuOverPlanLimit & FreestyleError, traceId?: string | undefined);
10294
10479
  }
10295
10480
  declare class CustomSizingNotAllowedError extends Error {
10296
10481
  body: unknown & FreestyleError;
10482
+ traceId?: string | undefined;
10297
10483
  static readonly code: string;
10298
10484
  static readonly statusCode: number;
10299
10485
  static readonly description: string;
10300
- constructor(body: unknown & FreestyleError);
10486
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10301
10487
  }
10302
10488
  interface PublicSnapshotLimitExceeded {
10303
10489
  limit: number;
@@ -10306,17 +10492,19 @@ interface PublicSnapshotLimitExceeded {
10306
10492
  }
10307
10493
  declare class SnapshotLimitExceededError extends Error {
10308
10494
  body: PublicSnapshotLimitExceeded & FreestyleError;
10495
+ traceId?: string | undefined;
10309
10496
  static readonly code: string;
10310
10497
  static readonly statusCode: number;
10311
10498
  static readonly description: string;
10312
- constructor(body: PublicSnapshotLimitExceeded & FreestyleError);
10499
+ constructor(body: PublicSnapshotLimitExceeded & FreestyleError, traceId?: string | undefined);
10313
10500
  }
10314
10501
  declare class PersistentVmsNotAllowedError extends Error {
10315
10502
  body: unknown & FreestyleError;
10503
+ traceId?: string | undefined;
10316
10504
  static readonly code: string;
10317
10505
  static readonly statusCode: number;
10318
10506
  static readonly description: string;
10319
- constructor(body: unknown & FreestyleError);
10507
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10320
10508
  }
10321
10509
  interface PublicTotalVmLimitExceeded {
10322
10510
  limit: number;
@@ -10325,10 +10513,11 @@ interface PublicTotalVmLimitExceeded {
10325
10513
  }
10326
10514
  declare class TotalVmLimitExceededError extends Error {
10327
10515
  body: PublicTotalVmLimitExceeded & FreestyleError;
10516
+ traceId?: string | undefined;
10328
10517
  static readonly code: string;
10329
10518
  static readonly statusCode: number;
10330
10519
  static readonly description: string;
10331
- constructor(body: PublicTotalVmLimitExceeded & FreestyleError);
10520
+ constructor(body: PublicTotalVmLimitExceeded & FreestyleError, traceId?: string | undefined);
10332
10521
  }
10333
10522
  interface PublicVmLimitExceeded {
10334
10523
  limit: number;
@@ -10337,10 +10526,11 @@ interface PublicVmLimitExceeded {
10337
10526
  }
10338
10527
  declare class VmLimitExceededError extends Error {
10339
10528
  body: PublicVmLimitExceeded & FreestyleError;
10529
+ traceId?: string | undefined;
10340
10530
  static readonly code: string;
10341
10531
  static readonly statusCode: number;
10342
10532
  static readonly description: string;
10343
- constructor(body: PublicVmLimitExceeded & FreestyleError);
10533
+ constructor(body: PublicVmLimitExceeded & FreestyleError, traceId?: string | undefined);
10344
10534
  }
10345
10535
  interface PublicObservabilityDatabaseError {
10346
10536
  message: string;
@@ -10348,10 +10538,11 @@ interface PublicObservabilityDatabaseError {
10348
10538
  }
10349
10539
  declare class ObservabilityDatabaseErrorError extends Error {
10350
10540
  body: PublicObservabilityDatabaseError & FreestyleError;
10541
+ traceId?: string | undefined;
10351
10542
  static readonly code: string;
10352
10543
  static readonly statusCode: number;
10353
10544
  static readonly description: string;
10354
- constructor(body: PublicObservabilityDatabaseError & FreestyleError);
10545
+ constructor(body: PublicObservabilityDatabaseError & FreestyleError, traceId?: string | undefined);
10355
10546
  }
10356
10547
  interface PublicObservabilityAccessDenied {
10357
10548
  deploymentId: string;
@@ -10359,10 +10550,11 @@ interface PublicObservabilityAccessDenied {
10359
10550
  }
10360
10551
  declare class ObservabilityAccessDeniedError extends Error {
10361
10552
  body: PublicObservabilityAccessDenied & FreestyleError;
10553
+ traceId?: string | undefined;
10362
10554
  static readonly code: string;
10363
10555
  static readonly statusCode: number;
10364
10556
  static readonly description: string;
10365
- constructor(body: PublicObservabilityAccessDenied & FreestyleError);
10557
+ constructor(body: PublicObservabilityAccessDenied & FreestyleError, traceId?: string | undefined);
10366
10558
  }
10367
10559
  interface PublicParseLogsFailed {
10368
10560
  message: string;
@@ -10370,10 +10562,11 @@ interface PublicParseLogsFailed {
10370
10562
  }
10371
10563
  declare class ParseLogsFailedError extends Error {
10372
10564
  body: PublicParseLogsFailed & FreestyleError;
10565
+ traceId?: string | undefined;
10373
10566
  static readonly code: string;
10374
10567
  static readonly statusCode: number;
10375
10568
  static readonly description: string;
10376
- constructor(body: PublicParseLogsFailed & FreestyleError);
10569
+ constructor(body: PublicParseLogsFailed & FreestyleError, traceId?: string | undefined);
10377
10570
  }
10378
10571
  interface PublicRetrieveLogsFailed {
10379
10572
  message: string;
@@ -10381,10 +10574,11 @@ interface PublicRetrieveLogsFailed {
10381
10574
  }
10382
10575
  declare class RetrieveLogsFailedError extends Error {
10383
10576
  body: PublicRetrieveLogsFailed & FreestyleError;
10577
+ traceId?: string | undefined;
10384
10578
  static readonly code: string;
10385
10579
  static readonly statusCode: number;
10386
10580
  static readonly description: string;
10387
- constructor(body: PublicRetrieveLogsFailed & FreestyleError);
10581
+ constructor(body: PublicRetrieveLogsFailed & FreestyleError, traceId?: string | undefined);
10388
10582
  }
10389
10583
  interface PublicInvalidQuery {
10390
10584
  message: string;
@@ -10392,10 +10586,11 @@ interface PublicInvalidQuery {
10392
10586
  }
10393
10587
  declare class InvalidQueryError extends Error {
10394
10588
  body: PublicInvalidQuery & FreestyleError;
10589
+ traceId?: string | undefined;
10395
10590
  static readonly code: string;
10396
10591
  static readonly statusCode: number;
10397
10592
  static readonly description: string;
10398
- constructor(body: PublicInvalidQuery & FreestyleError);
10593
+ constructor(body: PublicInvalidQuery & FreestyleError, traceId?: string | undefined);
10399
10594
  }
10400
10595
  interface PublicLogsNotFound {
10401
10596
  deploymentId: string;
@@ -10403,10 +10598,11 @@ interface PublicLogsNotFound {
10403
10598
  }
10404
10599
  declare class LogsNotFoundError extends Error {
10405
10600
  body: PublicLogsNotFound & FreestyleError;
10601
+ traceId?: string | undefined;
10406
10602
  static readonly code: string;
10407
10603
  static readonly statusCode: number;
10408
10604
  static readonly description: string;
10409
- constructor(body: PublicLogsNotFound & FreestyleError);
10605
+ constructor(body: PublicLogsNotFound & FreestyleError, traceId?: string | undefined);
10410
10606
  }
10411
10607
  interface PublicTriggerError {
10412
10608
  message: string;
@@ -10414,10 +10610,11 @@ interface PublicTriggerError {
10414
10610
  }
10415
10611
  declare class TriggerErrorError extends Error {
10416
10612
  body: PublicTriggerError & FreestyleError;
10613
+ traceId?: string | undefined;
10417
10614
  static readonly code: string;
10418
10615
  static readonly statusCode: number;
10419
10616
  static readonly description: string;
10420
- constructor(body: PublicTriggerError & FreestyleError);
10617
+ constructor(body: PublicTriggerError & FreestyleError, traceId?: string | undefined);
10421
10618
  }
10422
10619
  interface PublicTokenError {
10423
10620
  message: string;
@@ -10425,10 +10622,11 @@ interface PublicTokenError {
10425
10622
  }
10426
10623
  declare class TokenErrorError extends Error {
10427
10624
  body: PublicTokenError & FreestyleError;
10625
+ traceId?: string | undefined;
10428
10626
  static readonly code: string;
10429
10627
  static readonly statusCode: number;
10430
10628
  static readonly description: string;
10431
- constructor(body: PublicTokenError & FreestyleError);
10629
+ constructor(body: PublicTokenError & FreestyleError, traceId?: string | undefined);
10432
10630
  }
10433
10631
  interface PublicPermissionError {
10434
10632
  message: string;
@@ -10436,10 +10634,11 @@ interface PublicPermissionError {
10436
10634
  }
10437
10635
  declare class PermissionErrorError extends Error {
10438
10636
  body: PublicPermissionError & FreestyleError;
10637
+ traceId?: string | undefined;
10439
10638
  static readonly code: string;
10440
10639
  static readonly statusCode: number;
10441
10640
  static readonly description: string;
10442
- constructor(body: PublicPermissionError & FreestyleError);
10641
+ constructor(body: PublicPermissionError & FreestyleError, traceId?: string | undefined);
10443
10642
  }
10444
10643
  interface PublicIdentityError {
10445
10644
  message: string;
@@ -10447,10 +10646,11 @@ interface PublicIdentityError {
10447
10646
  }
10448
10647
  declare class IdentityErrorError extends Error {
10449
10648
  body: PublicIdentityError & FreestyleError;
10649
+ traceId?: string | undefined;
10450
10650
  static readonly code: string;
10451
10651
  static readonly statusCode: number;
10452
10652
  static readonly description: string;
10453
- constructor(body: PublicIdentityError & FreestyleError);
10653
+ constructor(body: PublicIdentityError & FreestyleError, traceId?: string | undefined);
10454
10654
  }
10455
10655
  interface PublicGetContentFailed {
10456
10656
  message: string;
@@ -10458,10 +10658,11 @@ interface PublicGetContentFailed {
10458
10658
  }
10459
10659
  declare class GetContentFailedError extends Error {
10460
10660
  body: PublicGetContentFailed & FreestyleError;
10661
+ traceId?: string | undefined;
10461
10662
  static readonly code: string;
10462
10663
  static readonly statusCode: number;
10463
10664
  static readonly description: string;
10464
- constructor(body: PublicGetContentFailed & FreestyleError);
10665
+ constructor(body: PublicGetContentFailed & FreestyleError, traceId?: string | undefined);
10465
10666
  }
10466
10667
  interface PublicContentNotFound {
10467
10668
  path: string;
@@ -10469,10 +10670,11 @@ interface PublicContentNotFound {
10469
10670
  }
10470
10671
  declare class ContentNotFoundError extends Error {
10471
10672
  body: PublicContentNotFound & FreestyleError;
10673
+ traceId?: string | undefined;
10472
10674
  static readonly code: string;
10473
10675
  static readonly statusCode: number;
10474
10676
  static readonly description: string;
10475
- constructor(body: PublicContentNotFound & FreestyleError);
10677
+ constructor(body: PublicContentNotFound & FreestyleError, traceId?: string | undefined);
10476
10678
  }
10477
10679
  interface PublicDownloadFailed {
10478
10680
  message: string;
@@ -10480,10 +10682,11 @@ interface PublicDownloadFailed {
10480
10682
  }
10481
10683
  declare class DownloadFailedError extends Error {
10482
10684
  body: PublicDownloadFailed & FreestyleError;
10685
+ traceId?: string | undefined;
10483
10686
  static readonly code: string;
10484
10687
  static readonly statusCode: number;
10485
10688
  static readonly description: string;
10486
- constructor(body: PublicDownloadFailed & FreestyleError);
10689
+ constructor(body: PublicDownloadFailed & FreestyleError, traceId?: string | undefined);
10487
10690
  }
10488
10691
  interface PublicGitServerError {
10489
10692
  message: string;
@@ -10491,10 +10694,11 @@ interface PublicGitServerError {
10491
10694
  }
10492
10695
  declare class GitServerErrorError extends Error {
10493
10696
  body: PublicGitServerError & FreestyleError;
10697
+ traceId?: string | undefined;
10494
10698
  static readonly code: string;
10495
10699
  static readonly statusCode: number;
10496
10700
  static readonly description: string;
10497
- constructor(body: PublicGitServerError & FreestyleError);
10701
+ constructor(body: PublicGitServerError & FreestyleError, traceId?: string | undefined);
10498
10702
  }
10499
10703
  interface PublicParseResponseError {
10500
10704
  message: string;
@@ -10502,17 +10706,19 @@ interface PublicParseResponseError {
10502
10706
  }
10503
10707
  declare class ParseResponseErrorError extends Error {
10504
10708
  body: PublicParseResponseError & FreestyleError;
10709
+ traceId?: string | undefined;
10505
10710
  static readonly code: string;
10506
10711
  static readonly statusCode: number;
10507
10712
  static readonly description: string;
10508
- constructor(body: PublicParseResponseError & FreestyleError);
10713
+ constructor(body: PublicParseResponseError & FreestyleError, traceId?: string | undefined);
10509
10714
  }
10510
10715
  declare class RepositoryAccessDeniedError extends Error {
10511
10716
  body: unknown & FreestyleError;
10717
+ traceId?: string | undefined;
10512
10718
  static readonly code: string;
10513
10719
  static readonly statusCode: number;
10514
10720
  static readonly description: string;
10515
- constructor(body: unknown & FreestyleError);
10721
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10516
10722
  }
10517
10723
  interface PublicGitHubSyncFailed {
10518
10724
  message: string;
@@ -10520,10 +10726,11 @@ interface PublicGitHubSyncFailed {
10520
10726
  }
10521
10727
  declare class GitHubSyncFailedError extends Error {
10522
10728
  body: PublicGitHubSyncFailed & FreestyleError;
10729
+ traceId?: string | undefined;
10523
10730
  static readonly code: string;
10524
10731
  static readonly statusCode: number;
10525
10732
  static readonly description: string;
10526
- constructor(body: PublicGitHubSyncFailed & FreestyleError);
10733
+ constructor(body: PublicGitHubSyncFailed & FreestyleError, traceId?: string | undefined);
10527
10734
  }
10528
10735
  interface PublicUpdateDefaultBranchFailed {
10529
10736
  message: string;
@@ -10531,10 +10738,11 @@ interface PublicUpdateDefaultBranchFailed {
10531
10738
  }
10532
10739
  declare class UpdateDefaultBranchFailedError extends Error {
10533
10740
  body: PublicUpdateDefaultBranchFailed & FreestyleError;
10741
+ traceId?: string | undefined;
10534
10742
  static readonly code: string;
10535
10743
  static readonly statusCode: number;
10536
10744
  static readonly description: string;
10537
- constructor(body: PublicUpdateDefaultBranchFailed & FreestyleError);
10745
+ constructor(body: PublicUpdateDefaultBranchFailed & FreestyleError, traceId?: string | undefined);
10538
10746
  }
10539
10747
  interface PublicGetRepositoryInfoFailed {
10540
10748
  message: string;
@@ -10542,10 +10750,11 @@ interface PublicGetRepositoryInfoFailed {
10542
10750
  }
10543
10751
  declare class GetRepositoryInfoFailedError extends Error {
10544
10752
  body: PublicGetRepositoryInfoFailed & FreestyleError;
10753
+ traceId?: string | undefined;
10545
10754
  static readonly code: string;
10546
10755
  static readonly statusCode: number;
10547
10756
  static readonly description: string;
10548
- constructor(body: PublicGetRepositoryInfoFailed & FreestyleError);
10757
+ constructor(body: PublicGetRepositoryInfoFailed & FreestyleError, traceId?: string | undefined);
10549
10758
  }
10550
10759
  interface PublicListRepositoriesFailed {
10551
10760
  message: string;
@@ -10553,10 +10762,11 @@ interface PublicListRepositoriesFailed {
10553
10762
  }
10554
10763
  declare class ListRepositoriesFailedError extends Error {
10555
10764
  body: PublicListRepositoriesFailed & FreestyleError;
10765
+ traceId?: string | undefined;
10556
10766
  static readonly code: string;
10557
10767
  static readonly statusCode: number;
10558
10768
  static readonly description: string;
10559
- constructor(body: PublicListRepositoriesFailed & FreestyleError);
10769
+ constructor(body: PublicListRepositoriesFailed & FreestyleError, traceId?: string | undefined);
10560
10770
  }
10561
10771
  interface PublicDeleteRepositoryFailed {
10562
10772
  message: string;
@@ -10564,10 +10774,11 @@ interface PublicDeleteRepositoryFailed {
10564
10774
  }
10565
10775
  declare class DeleteRepositoryFailedError extends Error {
10566
10776
  body: PublicDeleteRepositoryFailed & FreestyleError;
10777
+ traceId?: string | undefined;
10567
10778
  static readonly code: string;
10568
10779
  static readonly statusCode: number;
10569
10780
  static readonly description: string;
10570
- constructor(body: PublicDeleteRepositoryFailed & FreestyleError);
10781
+ constructor(body: PublicDeleteRepositoryFailed & FreestyleError, traceId?: string | undefined);
10571
10782
  }
10572
10783
  interface PublicCreateRepositoryFailed {
10573
10784
  message: string;
@@ -10575,10 +10786,11 @@ interface PublicCreateRepositoryFailed {
10575
10786
  }
10576
10787
  declare class CreateRepositoryFailedError extends Error {
10577
10788
  body: PublicCreateRepositoryFailed & FreestyleError;
10789
+ traceId?: string | undefined;
10578
10790
  static readonly code: string;
10579
10791
  static readonly statusCode: number;
10580
10792
  static readonly description: string;
10581
- constructor(body: PublicCreateRepositoryFailed & FreestyleError);
10793
+ constructor(body: PublicCreateRepositoryFailed & FreestyleError, traceId?: string | undefined);
10582
10794
  }
10583
10795
  interface PublicSerializationError {
10584
10796
  message: string;
@@ -10586,10 +10798,11 @@ interface PublicSerializationError {
10586
10798
  }
10587
10799
  declare class SerializationErrorError extends Error {
10588
10800
  body: PublicSerializationError & FreestyleError;
10801
+ traceId?: string | undefined;
10589
10802
  static readonly code: string;
10590
10803
  static readonly statusCode: number;
10591
10804
  static readonly description: string;
10592
- constructor(body: PublicSerializationError & FreestyleError);
10805
+ constructor(body: PublicSerializationError & FreestyleError, traceId?: string | undefined);
10593
10806
  }
10594
10807
  interface PublicGitInvalidRequest {
10595
10808
  message: string;
@@ -10597,10 +10810,11 @@ interface PublicGitInvalidRequest {
10597
10810
  }
10598
10811
  declare class GitInvalidRequestError extends Error {
10599
10812
  body: PublicGitInvalidRequest & FreestyleError;
10813
+ traceId?: string | undefined;
10600
10814
  static readonly code: string;
10601
10815
  static readonly statusCode: number;
10602
10816
  static readonly description: string;
10603
- constructor(body: PublicGitInvalidRequest & FreestyleError);
10817
+ constructor(body: PublicGitInvalidRequest & FreestyleError, traceId?: string | undefined);
10604
10818
  }
10605
10819
  interface PublicRepositoryNotFound {
10606
10820
  repoId: string;
@@ -10608,17 +10822,19 @@ interface PublicRepositoryNotFound {
10608
10822
  }
10609
10823
  declare class RepositoryNotFoundError extends Error {
10610
10824
  body: PublicRepositoryNotFound & FreestyleError;
10825
+ traceId?: string | undefined;
10611
10826
  static readonly code: string;
10612
10827
  static readonly statusCode: number;
10613
10828
  static readonly description: string;
10614
- constructor(body: PublicRepositoryNotFound & FreestyleError);
10829
+ constructor(body: PublicRepositoryNotFound & FreestyleError, traceId?: string | undefined);
10615
10830
  }
10616
10831
  declare class DomainOwnershipVerificationFailedError extends Error {
10617
10832
  body: unknown & FreestyleError;
10833
+ traceId?: string | undefined;
10618
10834
  static readonly code: string;
10619
10835
  static readonly statusCode: number;
10620
10836
  static readonly description: string;
10621
- constructor(body: unknown & FreestyleError);
10837
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10622
10838
  }
10623
10839
  interface PublicErrorDeletingRecord {
10624
10840
  domain: string;
@@ -10628,10 +10844,11 @@ interface PublicErrorDeletingRecord {
10628
10844
  }
10629
10845
  declare class ErrorDeletingRecordError extends Error {
10630
10846
  body: PublicErrorDeletingRecord & FreestyleError;
10847
+ traceId?: string | undefined;
10631
10848
  static readonly code: string;
10632
10849
  static readonly statusCode: number;
10633
10850
  static readonly description: string;
10634
- constructor(body: PublicErrorDeletingRecord & FreestyleError);
10851
+ constructor(body: PublicErrorDeletingRecord & FreestyleError, traceId?: string | undefined);
10635
10852
  }
10636
10853
  interface PublicRecordOwnershipError {
10637
10854
  recordId: string;
@@ -10640,10 +10857,11 @@ interface PublicRecordOwnershipError {
10640
10857
  }
10641
10858
  declare class RecordOwnershipErrorError extends Error {
10642
10859
  body: PublicRecordOwnershipError & FreestyleError;
10860
+ traceId?: string | undefined;
10643
10861
  static readonly code: string;
10644
10862
  static readonly statusCode: number;
10645
10863
  static readonly description: string;
10646
- constructor(body: PublicRecordOwnershipError & FreestyleError);
10864
+ constructor(body: PublicRecordOwnershipError & FreestyleError, traceId?: string | undefined);
10647
10865
  }
10648
10866
  interface PublicErrorCreatingRecord {
10649
10867
  message: string;
@@ -10651,10 +10869,11 @@ interface PublicErrorCreatingRecord {
10651
10869
  }
10652
10870
  declare class ErrorCreatingRecordError extends Error {
10653
10871
  body: PublicErrorCreatingRecord & FreestyleError;
10872
+ traceId?: string | undefined;
10654
10873
  static readonly code: string;
10655
10874
  static readonly statusCode: number;
10656
10875
  static readonly description: string;
10657
- constructor(body: PublicErrorCreatingRecord & FreestyleError);
10876
+ constructor(body: PublicErrorCreatingRecord & FreestyleError, traceId?: string | undefined);
10658
10877
  }
10659
10878
  interface PublicDomainOwnershipError {
10660
10879
  domain: string;
@@ -10663,10 +10882,11 @@ interface PublicDomainOwnershipError {
10663
10882
  }
10664
10883
  declare class DomainOwnershipErrorError extends Error {
10665
10884
  body: PublicDomainOwnershipError & FreestyleError;
10885
+ traceId?: string | undefined;
10666
10886
  static readonly code: string;
10667
10887
  static readonly statusCode: number;
10668
10888
  static readonly description: string;
10669
- constructor(body: PublicDomainOwnershipError & FreestyleError);
10889
+ constructor(body: PublicDomainOwnershipError & FreestyleError, traceId?: string | undefined);
10670
10890
  }
10671
10891
  interface UnauthorizedErrorPublic {
10672
10892
  route: string;
@@ -10675,24 +10895,27 @@ interface UnauthorizedErrorPublic {
10675
10895
  }
10676
10896
  declare class UnauthorizedErrorError extends Error {
10677
10897
  body: UnauthorizedErrorPublic & FreestyleError;
10898
+ traceId?: string | undefined;
10678
10899
  static readonly code: string;
10679
10900
  static readonly statusCode: number;
10680
10901
  static readonly description: string;
10681
- constructor(body: UnauthorizedErrorPublic & FreestyleError);
10902
+ constructor(body: UnauthorizedErrorPublic & FreestyleError, traceId?: string | undefined);
10682
10903
  }
10683
10904
  declare class BranchNameEmptyError extends Error {
10684
10905
  body: unknown & FreestyleError;
10906
+ traceId?: string | undefined;
10685
10907
  static readonly code: string;
10686
10908
  static readonly statusCode: number;
10687
10909
  static readonly description: string;
10688
- constructor(body: unknown & FreestyleError);
10910
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10689
10911
  }
10690
10912
  declare class ServerDeploymentFailedError extends Error {
10691
10913
  body: unknown & FreestyleError;
10914
+ traceId?: string | undefined;
10692
10915
  static readonly code: string;
10693
10916
  static readonly statusCode: number;
10694
10917
  static readonly description: string;
10695
- constructor(body: unknown & FreestyleError);
10918
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10696
10919
  }
10697
10920
  interface PublicLockfileError {
10698
10921
  message: string;
@@ -10700,17 +10923,19 @@ interface PublicLockfileError {
10700
10923
  }
10701
10924
  declare class LockfileErrorError extends Error {
10702
10925
  body: PublicLockfileError & FreestyleError;
10926
+ traceId?: string | undefined;
10703
10927
  static readonly code: string;
10704
10928
  static readonly statusCode: number;
10705
10929
  static readonly description: string;
10706
- constructor(body: PublicLockfileError & FreestyleError);
10930
+ constructor(body: PublicLockfileError & FreestyleError, traceId?: string | undefined);
10707
10931
  }
10708
10932
  declare class UploadErrorError extends Error {
10709
10933
  body: unknown & FreestyleError;
10934
+ traceId?: string | undefined;
10710
10935
  static readonly code: string;
10711
10936
  static readonly statusCode: number;
10712
10937
  static readonly description: string;
10713
- constructor(body: unknown & FreestyleError);
10938
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10714
10939
  }
10715
10940
  interface PublicDomainMappingError {
10716
10941
  domain: string;
@@ -10718,10 +10943,11 @@ interface PublicDomainMappingError {
10718
10943
  }
10719
10944
  declare class DomainMappingErrorError extends Error {
10720
10945
  body: PublicDomainMappingError & FreestyleError;
10946
+ traceId?: string | undefined;
10721
10947
  static readonly code: string;
10722
10948
  static readonly statusCode: number;
10723
10949
  static readonly description: string;
10724
- constructor(body: PublicDomainMappingError & FreestyleError);
10950
+ constructor(body: PublicDomainMappingError & FreestyleError, traceId?: string | undefined);
10725
10951
  }
10726
10952
  interface PublicCertificateProvisioningError {
10727
10953
  domain: string;
@@ -10730,17 +10956,19 @@ interface PublicCertificateProvisioningError {
10730
10956
  }
10731
10957
  declare class CertificateProvisioningErrorError extends Error {
10732
10958
  body: PublicCertificateProvisioningError & FreestyleError;
10959
+ traceId?: string | undefined;
10733
10960
  static readonly code: string;
10734
10961
  static readonly statusCode: number;
10735
10962
  static readonly description: string;
10736
- constructor(body: PublicCertificateProvisioningError & FreestyleError);
10963
+ constructor(body: PublicCertificateProvisioningError & FreestyleError, traceId?: string | undefined);
10737
10964
  }
10738
10965
  declare class NoEntrypointFoundError extends Error {
10739
10966
  body: unknown & FreestyleError;
10967
+ traceId?: string | undefined;
10740
10968
  static readonly code: string;
10741
10969
  static readonly statusCode: number;
10742
10970
  static readonly description: string;
10743
- constructor(body: unknown & FreestyleError);
10971
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10744
10972
  }
10745
10973
  interface PublicEntrypointNotFound {
10746
10974
  entrypoint: string;
@@ -10748,10 +10976,11 @@ interface PublicEntrypointNotFound {
10748
10976
  }
10749
10977
  declare class EntrypointNotFoundError extends Error {
10750
10978
  body: PublicEntrypointNotFound & FreestyleError;
10979
+ traceId?: string | undefined;
10751
10980
  static readonly code: string;
10752
10981
  static readonly statusCode: number;
10753
10982
  static readonly description: string;
10754
- constructor(body: PublicEntrypointNotFound & FreestyleError);
10983
+ constructor(body: PublicEntrypointNotFound & FreestyleError, traceId?: string | undefined);
10755
10984
  }
10756
10985
  interface PublicNoDomainOwnership {
10757
10986
  domain: string;
@@ -10759,10 +10988,11 @@ interface PublicNoDomainOwnership {
10759
10988
  }
10760
10989
  declare class NoDomainOwnershipError extends Error {
10761
10990
  body: PublicNoDomainOwnership & FreestyleError;
10991
+ traceId?: string | undefined;
10762
10992
  static readonly code: string;
10763
10993
  static readonly statusCode: number;
10764
10994
  static readonly description: string;
10765
- constructor(body: PublicNoDomainOwnership & FreestyleError);
10995
+ constructor(body: PublicNoDomainOwnership & FreestyleError, traceId?: string | undefined);
10766
10996
  }
10767
10997
  interface PublicInvalidDomains {
10768
10998
  domains: string[];
@@ -10770,10 +11000,11 @@ interface PublicInvalidDomains {
10770
11000
  }
10771
11001
  declare class InvalidDomainsError extends Error {
10772
11002
  body: PublicInvalidDomains & FreestyleError;
11003
+ traceId?: string | undefined;
10773
11004
  static readonly code: string;
10774
11005
  static readonly statusCode: number;
10775
11006
  static readonly description: string;
10776
- constructor(body: PublicInvalidDomains & FreestyleError);
11007
+ constructor(body: PublicInvalidDomains & FreestyleError, traceId?: string | undefined);
10777
11008
  }
10778
11009
  interface PublicWebDeploymentBadRequest {
10779
11010
  message: string;
@@ -10781,10 +11012,11 @@ interface PublicWebDeploymentBadRequest {
10781
11012
  }
10782
11013
  declare class WebDeploymentBadRequestError extends Error {
10783
11014
  body: PublicWebDeploymentBadRequest & FreestyleError;
11015
+ traceId?: string | undefined;
10784
11016
  static readonly code: string;
10785
11017
  static readonly statusCode: number;
10786
11018
  static readonly description: string;
10787
- constructor(body: PublicWebDeploymentBadRequest & FreestyleError);
11019
+ constructor(body: PublicWebDeploymentBadRequest & FreestyleError, traceId?: string | undefined);
10788
11020
  }
10789
11021
  interface PublicTimeoutLimitExceeded {
10790
11022
  requestedMs: number;
@@ -10793,10 +11025,11 @@ interface PublicTimeoutLimitExceeded {
10793
11025
  }
10794
11026
  declare class TimeoutLimitExceededError extends Error {
10795
11027
  body: PublicTimeoutLimitExceeded & FreestyleError;
11028
+ traceId?: string | undefined;
10796
11029
  static readonly code: string;
10797
11030
  static readonly statusCode: number;
10798
11031
  static readonly description: string;
10799
- constructor(body: PublicTimeoutLimitExceeded & FreestyleError);
11032
+ constructor(body: PublicTimeoutLimitExceeded & FreestyleError, traceId?: string | undefined);
10800
11033
  }
10801
11034
  interface PublicDeploymentLimitExceeded {
10802
11035
  limit: number;
@@ -10805,17 +11038,19 @@ interface PublicDeploymentLimitExceeded {
10805
11038
  }
10806
11039
  declare class DeploymentLimitExceededError extends Error {
10807
11040
  body: PublicDeploymentLimitExceeded & FreestyleError;
11041
+ traceId?: string | undefined;
10808
11042
  static readonly code: string;
10809
11043
  static readonly statusCode: number;
10810
11044
  static readonly description: string;
10811
- constructor(body: PublicDeploymentLimitExceeded & FreestyleError);
11045
+ constructor(body: PublicDeploymentLimitExceeded & FreestyleError, traceId?: string | undefined);
10812
11046
  }
10813
11047
  declare class DeploymentNotFoundError extends Error {
10814
11048
  body: unknown & FreestyleError;
11049
+ traceId?: string | undefined;
10815
11050
  static readonly code: string;
10816
11051
  static readonly statusCode: number;
10817
11052
  static readonly description: string;
10818
- constructor(body: unknown & FreestyleError);
11053
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10819
11054
  }
10820
11055
  interface PublicResizeFailed {
10821
11056
  message: string;
@@ -10823,24 +11058,27 @@ interface PublicResizeFailed {
10823
11058
  }
10824
11059
  declare class ResizeFailedError extends Error {
10825
11060
  body: PublicResizeFailed & FreestyleError;
11061
+ traceId?: string | undefined;
10826
11062
  static readonly code: string;
10827
11063
  static readonly statusCode: number;
10828
11064
  static readonly description: string;
10829
- constructor(body: PublicResizeFailed & FreestyleError);
11065
+ constructor(body: PublicResizeFailed & FreestyleError, traceId?: string | undefined);
10830
11066
  }
10831
11067
  declare class InternalResizeVmNotFoundError extends Error {
10832
11068
  body: unknown & FreestyleError;
11069
+ traceId?: string | undefined;
10833
11070
  static readonly code: string;
10834
11071
  static readonly statusCode: number;
10835
11072
  static readonly description: string;
10836
- constructor(body: unknown & FreestyleError);
11073
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10837
11074
  }
10838
11075
  declare class ExecuteLimitExceededError extends Error {
10839
11076
  body: unknown & FreestyleError;
11077
+ traceId?: string | undefined;
10840
11078
  static readonly code: string;
10841
11079
  static readonly statusCode: number;
10842
11080
  static readonly description: string;
10843
- constructor(body: unknown & FreestyleError);
11081
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10844
11082
  }
10845
11083
  interface PublicDomainOwnershipNotVerified {
10846
11084
  domain: string;
@@ -10848,10 +11086,11 @@ interface PublicDomainOwnershipNotVerified {
10848
11086
  }
10849
11087
  declare class DomainOwnershipNotVerifiedError extends Error {
10850
11088
  body: PublicDomainOwnershipNotVerified & FreestyleError;
11089
+ traceId?: string | undefined;
10851
11090
  static readonly code: string;
10852
11091
  static readonly statusCode: number;
10853
11092
  static readonly description: string;
10854
- constructor(body: PublicDomainOwnershipNotVerified & FreestyleError);
11093
+ constructor(body: PublicDomainOwnershipNotVerified & FreestyleError, traceId?: string | undefined);
10855
11094
  }
10856
11095
  interface PublicVmAccessDeniedForMapping {
10857
11096
  vmId: string;
@@ -10859,10 +11098,11 @@ interface PublicVmAccessDeniedForMapping {
10859
11098
  }
10860
11099
  declare class VmAccessDeniedForMappingError extends Error {
10861
11100
  body: PublicVmAccessDeniedForMapping & FreestyleError;
11101
+ traceId?: string | undefined;
10862
11102
  static readonly code: string;
10863
11103
  static readonly statusCode: number;
10864
11104
  static readonly description: string;
10865
- constructor(body: PublicVmAccessDeniedForMapping & FreestyleError);
11105
+ constructor(body: PublicVmAccessDeniedForMapping & FreestyleError, traceId?: string | undefined);
10866
11106
  }
10867
11107
  interface PublicDeploymentAccessDenied {
10868
11108
  deploymentId: string;
@@ -10870,10 +11110,11 @@ interface PublicDeploymentAccessDenied {
10870
11110
  }
10871
11111
  declare class DeploymentAccessDeniedError extends Error {
10872
11112
  body: PublicDeploymentAccessDenied & FreestyleError;
11113
+ traceId?: string | undefined;
10873
11114
  static readonly code: string;
10874
11115
  static readonly statusCode: number;
10875
11116
  static readonly description: string;
10876
- constructor(body: PublicDeploymentAccessDenied & FreestyleError);
11117
+ constructor(body: PublicDeploymentAccessDenied & FreestyleError, traceId?: string | undefined);
10877
11118
  }
10878
11119
  interface PublicFailedToProvisionCertificateForMapping {
10879
11120
  message: string;
@@ -10881,10 +11122,11 @@ interface PublicFailedToProvisionCertificateForMapping {
10881
11122
  }
10882
11123
  declare class FailedToProvisionCertificateForMappingError extends Error {
10883
11124
  body: PublicFailedToProvisionCertificateForMapping & FreestyleError;
11125
+ traceId?: string | undefined;
10884
11126
  static readonly code: string;
10885
11127
  static readonly statusCode: number;
10886
11128
  static readonly description: string;
10887
- constructor(body: PublicFailedToProvisionCertificateForMapping & FreestyleError);
11129
+ constructor(body: PublicFailedToProvisionCertificateForMapping & FreestyleError, traceId?: string | undefined);
10888
11130
  }
10889
11131
  interface PublicFailedInsertDomainMapping {
10890
11132
  message: string;
@@ -10892,10 +11134,11 @@ interface PublicFailedInsertDomainMapping {
10892
11134
  }
10893
11135
  declare class FailedInsertDomainMappingError extends Error {
10894
11136
  body: PublicFailedInsertDomainMapping & FreestyleError;
11137
+ traceId?: string | undefined;
10895
11138
  static readonly code: string;
10896
11139
  static readonly statusCode: number;
10897
11140
  static readonly description: string;
10898
- constructor(body: PublicFailedInsertDomainMapping & FreestyleError);
11141
+ constructor(body: PublicFailedInsertDomainMapping & FreestyleError, traceId?: string | undefined);
10899
11142
  }
10900
11143
  interface PublicDomainAlreadyExists {
10901
11144
  domain: string;
@@ -10903,10 +11146,11 @@ interface PublicDomainAlreadyExists {
10903
11146
  }
10904
11147
  declare class DomainAlreadyExistsError extends Error {
10905
11148
  body: PublicDomainAlreadyExists & FreestyleError;
11149
+ traceId?: string | undefined;
10906
11150
  static readonly code: string;
10907
11151
  static readonly statusCode: number;
10908
11152
  static readonly description: string;
10909
- constructor(body: PublicDomainAlreadyExists & FreestyleError);
11153
+ constructor(body: PublicDomainAlreadyExists & FreestyleError, traceId?: string | undefined);
10910
11154
  }
10911
11155
  interface PublicFailedToInsertOwnership {
10912
11156
  message: string;
@@ -10914,10 +11158,11 @@ interface PublicFailedToInsertOwnership {
10914
11158
  }
10915
11159
  declare class FailedToInsertOwnershipError extends Error {
10916
11160
  body: PublicFailedToInsertOwnership & FreestyleError;
11161
+ traceId?: string | undefined;
10917
11162
  static readonly code: string;
10918
11163
  static readonly statusCode: number;
10919
11164
  static readonly description: string;
10920
- constructor(body: PublicFailedToInsertOwnership & FreestyleError);
11165
+ constructor(body: PublicFailedToInsertOwnership & FreestyleError, traceId?: string | undefined);
10921
11166
  }
10922
11167
  interface PublicFailedRemoveDomainMapping {
10923
11168
  message: string;
@@ -10925,10 +11170,11 @@ interface PublicFailedRemoveDomainMapping {
10925
11170
  }
10926
11171
  declare class FailedRemoveDomainMappingError extends Error {
10927
11172
  body: PublicFailedRemoveDomainMapping & FreestyleError;
11173
+ traceId?: string | undefined;
10928
11174
  static readonly code: string;
10929
11175
  static readonly statusCode: number;
10930
11176
  static readonly description: string;
10931
- constructor(body: PublicFailedRemoveDomainMapping & FreestyleError);
11177
+ constructor(body: PublicFailedRemoveDomainMapping & FreestyleError, traceId?: string | undefined);
10932
11178
  }
10933
11179
  interface PublicFailedPermissionsCheck {
10934
11180
  domain: string;
@@ -10936,10 +11182,11 @@ interface PublicFailedPermissionsCheck {
10936
11182
  }
10937
11183
  declare class FailedPermissionsCheckError extends Error {
10938
11184
  body: PublicFailedPermissionsCheck & FreestyleError;
11185
+ traceId?: string | undefined;
10939
11186
  static readonly code: string;
10940
11187
  static readonly statusCode: number;
10941
11188
  static readonly description: string;
10942
- constructor(body: PublicFailedPermissionsCheck & FreestyleError);
11189
+ constructor(body: PublicFailedPermissionsCheck & FreestyleError, traceId?: string | undefined);
10943
11190
  }
10944
11191
  interface PublicFailedToCheckDomainMappingPermissions {
10945
11192
  message: string;
@@ -10947,31 +11194,35 @@ interface PublicFailedToCheckDomainMappingPermissions {
10947
11194
  }
10948
11195
  declare class FailedToCheckDomainMappingPermissionsError extends Error {
10949
11196
  body: PublicFailedToCheckDomainMappingPermissions & FreestyleError;
11197
+ traceId?: string | undefined;
10950
11198
  static readonly code: string;
10951
11199
  static readonly statusCode: number;
10952
11200
  static readonly description: string;
10953
- constructor(body: PublicFailedToCheckDomainMappingPermissions & FreestyleError);
11201
+ constructor(body: PublicFailedToCheckDomainMappingPermissions & FreestyleError, traceId?: string | undefined);
10954
11202
  }
10955
11203
  declare class FailedToPreRegisterError extends Error {
10956
11204
  body: unknown & FreestyleError;
11205
+ traceId?: string | undefined;
10957
11206
  static readonly code: string;
10958
11207
  static readonly statusCode: number;
10959
11208
  static readonly description: string;
10960
- constructor(body: unknown & FreestyleError);
11209
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10961
11210
  }
10962
11211
  declare class AccessDeniedError extends Error {
10963
11212
  body: unknown & FreestyleError;
11213
+ traceId?: string | undefined;
10964
11214
  static readonly code: string;
10965
11215
  static readonly statusCode: number;
10966
11216
  static readonly description: string;
10967
- constructor(body: unknown & FreestyleError);
11217
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10968
11218
  }
10969
11219
  declare class PermissionAlreadyExistsError extends Error {
10970
11220
  body: unknown & FreestyleError;
11221
+ traceId?: string | undefined;
10971
11222
  static readonly code: string;
10972
11223
  static readonly statusCode: number;
10973
11224
  static readonly description: string;
10974
- constructor(body: unknown & FreestyleError);
11225
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
10975
11226
  }
10976
11227
  interface PublicListTokensFailed {
10977
11228
  message: string;
@@ -10979,10 +11230,11 @@ interface PublicListTokensFailed {
10979
11230
  }
10980
11231
  declare class ListTokensFailedError extends Error {
10981
11232
  body: PublicListTokensFailed & FreestyleError;
11233
+ traceId?: string | undefined;
10982
11234
  static readonly code: string;
10983
11235
  static readonly statusCode: number;
10984
11236
  static readonly description: string;
10985
- constructor(body: PublicListTokensFailed & FreestyleError);
11237
+ constructor(body: PublicListTokensFailed & FreestyleError, traceId?: string | undefined);
10986
11238
  }
10987
11239
  interface PublicRevokeTokenFailed {
10988
11240
  message: string;
@@ -10990,10 +11242,11 @@ interface PublicRevokeTokenFailed {
10990
11242
  }
10991
11243
  declare class RevokeTokenFailedError extends Error {
10992
11244
  body: PublicRevokeTokenFailed & FreestyleError;
11245
+ traceId?: string | undefined;
10993
11246
  static readonly code: string;
10994
11247
  static readonly statusCode: number;
10995
11248
  static readonly description: string;
10996
- constructor(body: PublicRevokeTokenFailed & FreestyleError);
11249
+ constructor(body: PublicRevokeTokenFailed & FreestyleError, traceId?: string | undefined);
10997
11250
  }
10998
11251
  interface PublicCreateTokenFailed {
10999
11252
  message: string;
@@ -11001,10 +11254,11 @@ interface PublicCreateTokenFailed {
11001
11254
  }
11002
11255
  declare class CreateTokenFailedError extends Error {
11003
11256
  body: PublicCreateTokenFailed & FreestyleError;
11257
+ traceId?: string | undefined;
11004
11258
  static readonly code: string;
11005
11259
  static readonly statusCode: number;
11006
11260
  static readonly description: string;
11007
- constructor(body: PublicCreateTokenFailed & FreestyleError);
11261
+ constructor(body: PublicCreateTokenFailed & FreestyleError, traceId?: string | undefined);
11008
11262
  }
11009
11263
  interface PublicListPermissionsFailed {
11010
11264
  message: string;
@@ -11012,10 +11266,11 @@ interface PublicListPermissionsFailed {
11012
11266
  }
11013
11267
  declare class ListPermissionsFailedError extends Error {
11014
11268
  body: PublicListPermissionsFailed & FreestyleError;
11269
+ traceId?: string | undefined;
11015
11270
  static readonly code: string;
11016
11271
  static readonly statusCode: number;
11017
11272
  static readonly description: string;
11018
- constructor(body: PublicListPermissionsFailed & FreestyleError);
11273
+ constructor(body: PublicListPermissionsFailed & FreestyleError, traceId?: string | undefined);
11019
11274
  }
11020
11275
  interface PublicGetPermissionFailed {
11021
11276
  message: string;
@@ -11023,10 +11278,11 @@ interface PublicGetPermissionFailed {
11023
11278
  }
11024
11279
  declare class GetPermissionFailedError extends Error {
11025
11280
  body: PublicGetPermissionFailed & FreestyleError;
11281
+ traceId?: string | undefined;
11026
11282
  static readonly code: string;
11027
11283
  static readonly statusCode: number;
11028
11284
  static readonly description: string;
11029
- constructor(body: PublicGetPermissionFailed & FreestyleError);
11285
+ constructor(body: PublicGetPermissionFailed & FreestyleError, traceId?: string | undefined);
11030
11286
  }
11031
11287
  interface PublicUpdatePermissionFailed {
11032
11288
  message: string;
@@ -11034,10 +11290,11 @@ interface PublicUpdatePermissionFailed {
11034
11290
  }
11035
11291
  declare class UpdatePermissionFailedError extends Error {
11036
11292
  body: PublicUpdatePermissionFailed & FreestyleError;
11293
+ traceId?: string | undefined;
11037
11294
  static readonly code: string;
11038
11295
  static readonly statusCode: number;
11039
11296
  static readonly description: string;
11040
- constructor(body: PublicUpdatePermissionFailed & FreestyleError);
11297
+ constructor(body: PublicUpdatePermissionFailed & FreestyleError, traceId?: string | undefined);
11041
11298
  }
11042
11299
  interface PublicRevokePermissionFailed {
11043
11300
  message: string;
@@ -11045,10 +11302,11 @@ interface PublicRevokePermissionFailed {
11045
11302
  }
11046
11303
  declare class RevokePermissionFailedError extends Error {
11047
11304
  body: PublicRevokePermissionFailed & FreestyleError;
11305
+ traceId?: string | undefined;
11048
11306
  static readonly code: string;
11049
11307
  static readonly statusCode: number;
11050
11308
  static readonly description: string;
11051
- constructor(body: PublicRevokePermissionFailed & FreestyleError);
11309
+ constructor(body: PublicRevokePermissionFailed & FreestyleError, traceId?: string | undefined);
11052
11310
  }
11053
11311
  interface PublicGrantPermissionFailed {
11054
11312
  message: string;
@@ -11056,10 +11314,11 @@ interface PublicGrantPermissionFailed {
11056
11314
  }
11057
11315
  declare class GrantPermissionFailedError extends Error {
11058
11316
  body: PublicGrantPermissionFailed & FreestyleError;
11317
+ traceId?: string | undefined;
11059
11318
  static readonly code: string;
11060
11319
  static readonly statusCode: number;
11061
11320
  static readonly description: string;
11062
- constructor(body: PublicGrantPermissionFailed & FreestyleError);
11321
+ constructor(body: PublicGrantPermissionFailed & FreestyleError, traceId?: string | undefined);
11063
11322
  }
11064
11323
  interface PublicListIdentitiesFailed {
11065
11324
  message: string;
@@ -11067,10 +11326,11 @@ interface PublicListIdentitiesFailed {
11067
11326
  }
11068
11327
  declare class ListIdentitiesFailedError extends Error {
11069
11328
  body: PublicListIdentitiesFailed & FreestyleError;
11329
+ traceId?: string | undefined;
11070
11330
  static readonly code: string;
11071
11331
  static readonly statusCode: number;
11072
11332
  static readonly description: string;
11073
- constructor(body: PublicListIdentitiesFailed & FreestyleError);
11333
+ constructor(body: PublicListIdentitiesFailed & FreestyleError, traceId?: string | undefined);
11074
11334
  }
11075
11335
  interface PublicDeleteIdentityFailed {
11076
11336
  message: string;
@@ -11078,10 +11338,11 @@ interface PublicDeleteIdentityFailed {
11078
11338
  }
11079
11339
  declare class DeleteIdentityFailedError extends Error {
11080
11340
  body: PublicDeleteIdentityFailed & FreestyleError;
11341
+ traceId?: string | undefined;
11081
11342
  static readonly code: string;
11082
11343
  static readonly statusCode: number;
11083
11344
  static readonly description: string;
11084
- constructor(body: PublicDeleteIdentityFailed & FreestyleError);
11345
+ constructor(body: PublicDeleteIdentityFailed & FreestyleError, traceId?: string | undefined);
11085
11346
  }
11086
11347
  interface PublicCreateIdentityFailed {
11087
11348
  message: string;
@@ -11089,66 +11350,75 @@ interface PublicCreateIdentityFailed {
11089
11350
  }
11090
11351
  declare class CreateIdentityFailedError extends Error {
11091
11352
  body: PublicCreateIdentityFailed & FreestyleError;
11353
+ traceId?: string | undefined;
11092
11354
  static readonly code: string;
11093
11355
  static readonly statusCode: number;
11094
11356
  static readonly description: string;
11095
- constructor(body: PublicCreateIdentityFailed & FreestyleError);
11357
+ constructor(body: PublicCreateIdentityFailed & FreestyleError, traceId?: string | undefined);
11096
11358
  }
11097
11359
  declare class VmPermissionNotFoundError extends Error {
11098
11360
  body: unknown & FreestyleError;
11361
+ traceId?: string | undefined;
11099
11362
  static readonly code: string;
11100
11363
  static readonly statusCode: number;
11101
11364
  static readonly description: string;
11102
- constructor(body: unknown & FreestyleError);
11365
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
11103
11366
  }
11104
11367
  declare class PermissionNotFoundError extends Error {
11105
11368
  body: unknown & FreestyleError;
11369
+ traceId?: string | undefined;
11106
11370
  static readonly code: string;
11107
11371
  static readonly statusCode: number;
11108
11372
  static readonly description: string;
11109
- constructor(body: unknown & FreestyleError);
11373
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
11110
11374
  }
11111
11375
  declare class GitRepositoryAccessDeniedError extends Error {
11112
11376
  body: unknown & FreestyleError;
11377
+ traceId?: string | undefined;
11113
11378
  static readonly code: string;
11114
11379
  static readonly statusCode: number;
11115
11380
  static readonly description: string;
11116
- constructor(body: unknown & FreestyleError);
11381
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
11117
11382
  }
11118
11383
  declare class GitRepositoryNotFoundError extends Error {
11119
11384
  body: unknown & FreestyleError;
11385
+ traceId?: string | undefined;
11120
11386
  static readonly code: string;
11121
11387
  static readonly statusCode: number;
11122
11388
  static readonly description: string;
11123
- constructor(body: unknown & FreestyleError);
11389
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
11124
11390
  }
11125
11391
  declare class CannotDeleteManagedIdentityError extends Error {
11126
11392
  body: unknown & FreestyleError;
11393
+ traceId?: string | undefined;
11127
11394
  static readonly code: string;
11128
11395
  static readonly statusCode: number;
11129
11396
  static readonly description: string;
11130
- constructor(body: unknown & FreestyleError);
11397
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
11131
11398
  }
11132
11399
  declare class CannotModifyManagedIdentityError extends Error {
11133
11400
  body: unknown & FreestyleError;
11401
+ traceId?: string | undefined;
11134
11402
  static readonly code: string;
11135
11403
  static readonly statusCode: number;
11136
11404
  static readonly description: string;
11137
- constructor(body: unknown & FreestyleError);
11405
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
11138
11406
  }
11139
11407
  declare class IdentityAccessDeniedError extends Error {
11140
11408
  body: unknown & FreestyleError;
11409
+ traceId?: string | undefined;
11141
11410
  static readonly code: string;
11142
11411
  static readonly statusCode: number;
11143
11412
  static readonly description: string;
11144
- constructor(body: unknown & FreestyleError);
11413
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
11145
11414
  }
11146
11415
  declare class IdentityNotFoundError extends Error {
11147
11416
  body: unknown & FreestyleError;
11417
+ traceId?: string | undefined;
11148
11418
  static readonly code: string;
11149
11419
  static readonly statusCode: number;
11150
11420
  static readonly description: string;
11151
- constructor(body: unknown & FreestyleError);
11421
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
11152
11422
  }
11153
11423
  interface PublicExecuteInternalError {
11154
11424
  message: string;
@@ -11156,17 +11426,19 @@ interface PublicExecuteInternalError {
11156
11426
  }
11157
11427
  declare class ExecuteInternalErrorError extends Error {
11158
11428
  body: PublicExecuteInternalError & FreestyleError;
11429
+ traceId?: string | undefined;
11159
11430
  static readonly code: string;
11160
11431
  static readonly statusCode: number;
11161
11432
  static readonly description: string;
11162
- constructor(body: PublicExecuteInternalError & FreestyleError);
11433
+ constructor(body: PublicExecuteInternalError & FreestyleError, traceId?: string | undefined);
11163
11434
  }
11164
11435
  declare class ExecuteAccessDeniedError extends Error {
11165
11436
  body: unknown & FreestyleError;
11437
+ traceId?: string | undefined;
11166
11438
  static readonly code: string;
11167
11439
  static readonly statusCode: number;
11168
11440
  static readonly description: string;
11169
- constructor(body: unknown & FreestyleError);
11441
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
11170
11442
  }
11171
11443
  interface PublicListRunsFailed {
11172
11444
  message: string;
@@ -11174,10 +11446,11 @@ interface PublicListRunsFailed {
11174
11446
  }
11175
11447
  declare class ListRunsFailedError extends Error {
11176
11448
  body: PublicListRunsFailed & FreestyleError;
11449
+ traceId?: string | undefined;
11177
11450
  static readonly code: string;
11178
11451
  static readonly statusCode: number;
11179
11452
  static readonly description: string;
11180
- constructor(body: PublicListRunsFailed & FreestyleError);
11453
+ constructor(body: PublicListRunsFailed & FreestyleError, traceId?: string | undefined);
11181
11454
  }
11182
11455
  interface PublicExecutionError {
11183
11456
  message: string;
@@ -11185,10 +11458,11 @@ interface PublicExecutionError {
11185
11458
  }
11186
11459
  declare class ExecutionErrorError extends Error {
11187
11460
  body: PublicExecutionError & FreestyleError;
11461
+ traceId?: string | undefined;
11188
11462
  static readonly code: string;
11189
11463
  static readonly statusCode: number;
11190
11464
  static readonly description: string;
11191
- constructor(body: PublicExecutionError & FreestyleError);
11465
+ constructor(body: PublicExecutionError & FreestyleError, traceId?: string | undefined);
11192
11466
  }
11193
11467
  interface PublicConnectionFailed {
11194
11468
  message: string;
@@ -11196,10 +11470,11 @@ interface PublicConnectionFailed {
11196
11470
  }
11197
11471
  declare class ConnectionFailedError extends Error {
11198
11472
  body: PublicConnectionFailed & FreestyleError;
11473
+ traceId?: string | undefined;
11199
11474
  static readonly code: string;
11200
11475
  static readonly statusCode: number;
11201
11476
  static readonly description: string;
11202
- constructor(body: PublicConnectionFailed & FreestyleError);
11477
+ constructor(body: PublicConnectionFailed & FreestyleError, traceId?: string | undefined);
11203
11478
  }
11204
11479
  interface PublicMetadataWriteFailed {
11205
11480
  message: string;
@@ -11207,10 +11482,11 @@ interface PublicMetadataWriteFailed {
11207
11482
  }
11208
11483
  declare class MetadataWriteFailedError extends Error {
11209
11484
  body: PublicMetadataWriteFailed & FreestyleError;
11485
+ traceId?: string | undefined;
11210
11486
  static readonly code: string;
11211
11487
  static readonly statusCode: number;
11212
11488
  static readonly description: string;
11213
- constructor(body: PublicMetadataWriteFailed & FreestyleError);
11489
+ constructor(body: PublicMetadataWriteFailed & FreestyleError, traceId?: string | undefined);
11214
11490
  }
11215
11491
  interface PublicNodeModulesInstallFailed {
11216
11492
  message: string;
@@ -11218,10 +11494,11 @@ interface PublicNodeModulesInstallFailed {
11218
11494
  }
11219
11495
  declare class NodeModulesInstallFailedError extends Error {
11220
11496
  body: PublicNodeModulesInstallFailed & FreestyleError;
11497
+ traceId?: string | undefined;
11221
11498
  static readonly code: string;
11222
11499
  static readonly statusCode: number;
11223
11500
  static readonly description: string;
11224
- constructor(body: PublicNodeModulesInstallFailed & FreestyleError);
11501
+ constructor(body: PublicNodeModulesInstallFailed & FreestyleError, traceId?: string | undefined);
11225
11502
  }
11226
11503
  interface PublicNodeModulesDownloadFailed {
11227
11504
  message: string;
@@ -11229,10 +11506,11 @@ interface PublicNodeModulesDownloadFailed {
11229
11506
  }
11230
11507
  declare class NodeModulesDownloadFailedError extends Error {
11231
11508
  body: PublicNodeModulesDownloadFailed & FreestyleError;
11509
+ traceId?: string | undefined;
11232
11510
  static readonly code: string;
11233
11511
  static readonly statusCode: number;
11234
11512
  static readonly description: string;
11235
- constructor(body: PublicNodeModulesDownloadFailed & FreestyleError);
11513
+ constructor(body: PublicNodeModulesDownloadFailed & FreestyleError, traceId?: string | undefined);
11236
11514
  }
11237
11515
  interface PublicLockGenerationFailed {
11238
11516
  message: string;
@@ -11240,10 +11518,11 @@ interface PublicLockGenerationFailed {
11240
11518
  }
11241
11519
  declare class LockGenerationFailedError extends Error {
11242
11520
  body: PublicLockGenerationFailed & FreestyleError;
11521
+ traceId?: string | undefined;
11243
11522
  static readonly code: string;
11244
11523
  static readonly statusCode: number;
11245
11524
  static readonly description: string;
11246
- constructor(body: PublicLockGenerationFailed & FreestyleError);
11525
+ constructor(body: PublicLockGenerationFailed & FreestyleError, traceId?: string | undefined);
11247
11526
  }
11248
11527
  interface PublicWriteScriptFailed {
11249
11528
  message: string;
@@ -11251,10 +11530,11 @@ interface PublicWriteScriptFailed {
11251
11530
  }
11252
11531
  declare class WriteScriptFailedError extends Error {
11253
11532
  body: PublicWriteScriptFailed & FreestyleError;
11533
+ traceId?: string | undefined;
11254
11534
  static readonly code: string;
11255
11535
  static readonly statusCode: number;
11256
11536
  static readonly description: string;
11257
- constructor(body: PublicWriteScriptFailed & FreestyleError);
11537
+ constructor(body: PublicWriteScriptFailed & FreestyleError, traceId?: string | undefined);
11258
11538
  }
11259
11539
  interface PublicDirectoryCreationFailed {
11260
11540
  message: string;
@@ -11262,10 +11542,11 @@ interface PublicDirectoryCreationFailed {
11262
11542
  }
11263
11543
  declare class DirectoryCreationFailedError extends Error {
11264
11544
  body: PublicDirectoryCreationFailed & FreestyleError;
11545
+ traceId?: string | undefined;
11265
11546
  static readonly code: string;
11266
11547
  static readonly statusCode: number;
11267
11548
  static readonly description: string;
11268
- constructor(body: PublicDirectoryCreationFailed & FreestyleError);
11549
+ constructor(body: PublicDirectoryCreationFailed & FreestyleError, traceId?: string | undefined);
11269
11550
  }
11270
11551
  interface PublicNetworkPermissionsFailed {
11271
11552
  message: string;
@@ -11273,10 +11554,11 @@ interface PublicNetworkPermissionsFailed {
11273
11554
  }
11274
11555
  declare class NetworkPermissionsFailedError extends Error {
11275
11556
  body: PublicNetworkPermissionsFailed & FreestyleError;
11557
+ traceId?: string | undefined;
11276
11558
  static readonly code: string;
11277
11559
  static readonly statusCode: number;
11278
11560
  static readonly description: string;
11279
- constructor(body: PublicNetworkPermissionsFailed & FreestyleError);
11561
+ constructor(body: PublicNetworkPermissionsFailed & FreestyleError, traceId?: string | undefined);
11280
11562
  }
11281
11563
  interface PublicLoggingFailed {
11282
11564
  message: string;
@@ -11284,10 +11566,11 @@ interface PublicLoggingFailed {
11284
11566
  }
11285
11567
  declare class LoggingFailedError extends Error {
11286
11568
  body: PublicLoggingFailed & FreestyleError;
11569
+ traceId?: string | undefined;
11287
11570
  static readonly code: string;
11288
11571
  static readonly statusCode: number;
11289
11572
  static readonly description: string;
11290
- constructor(body: PublicLoggingFailed & FreestyleError);
11573
+ constructor(body: PublicLoggingFailed & FreestyleError, traceId?: string | undefined);
11291
11574
  }
11292
11575
  interface PublicRunNotFound {
11293
11576
  runId: string;
@@ -11295,10 +11578,11 @@ interface PublicRunNotFound {
11295
11578
  }
11296
11579
  declare class RunNotFoundError extends Error {
11297
11580
  body: PublicRunNotFound & FreestyleError;
11581
+ traceId?: string | undefined;
11298
11582
  static readonly code: string;
11299
11583
  static readonly statusCode: number;
11300
11584
  static readonly description: string;
11301
- constructor(body: PublicRunNotFound & FreestyleError);
11585
+ constructor(body: PublicRunNotFound & FreestyleError, traceId?: string | undefined);
11302
11586
  }
11303
11587
  interface PublicLimitExceeded {
11304
11588
  limit: number;
@@ -11307,10 +11591,11 @@ interface PublicLimitExceeded {
11307
11591
  }
11308
11592
  declare class LimitExceededError extends Error {
11309
11593
  body: PublicLimitExceeded & FreestyleError;
11594
+ traceId?: string | undefined;
11310
11595
  static readonly code: string;
11311
11596
  static readonly statusCode: number;
11312
11597
  static readonly description: string;
11313
- constructor(body: PublicLimitExceeded & FreestyleError);
11598
+ constructor(body: PublicLimitExceeded & FreestyleError, traceId?: string | undefined);
11314
11599
  }
11315
11600
  interface PublicFailedToProvisionCertificate {
11316
11601
  message: string;
@@ -11318,10 +11603,11 @@ interface PublicFailedToProvisionCertificate {
11318
11603
  }
11319
11604
  declare class FailedToProvisionCertificateError extends Error {
11320
11605
  body: PublicFailedToProvisionCertificate & FreestyleError;
11606
+ traceId?: string | undefined;
11321
11607
  static readonly code: string;
11322
11608
  static readonly statusCode: number;
11323
11609
  static readonly description: string;
11324
- constructor(body: PublicFailedToProvisionCertificate & FreestyleError);
11610
+ constructor(body: PublicFailedToProvisionCertificate & FreestyleError, traceId?: string | undefined);
11325
11611
  }
11326
11612
  interface PublicFailedToInsertDomainMapping {
11327
11613
  message: string;
@@ -11329,10 +11615,11 @@ interface PublicFailedToInsertDomainMapping {
11329
11615
  }
11330
11616
  declare class FailedToInsertDomainMappingError extends Error {
11331
11617
  body: PublicFailedToInsertDomainMapping & FreestyleError;
11618
+ traceId?: string | undefined;
11332
11619
  static readonly code: string;
11333
11620
  static readonly statusCode: number;
11334
11621
  static readonly description: string;
11335
- constructor(body: PublicFailedToInsertDomainMapping & FreestyleError);
11622
+ constructor(body: PublicFailedToInsertDomainMapping & FreestyleError, traceId?: string | undefined);
11336
11623
  }
11337
11624
  interface PublicPermissionDenied {
11338
11625
  message: string;
@@ -11340,10 +11627,11 @@ interface PublicPermissionDenied {
11340
11627
  }
11341
11628
  declare class PermissionDeniedError extends Error {
11342
11629
  body: PublicPermissionDenied & FreestyleError;
11630
+ traceId?: string | undefined;
11343
11631
  static readonly code: string;
11344
11632
  static readonly statusCode: number;
11345
11633
  static readonly description: string;
11346
- constructor(body: PublicPermissionDenied & FreestyleError);
11634
+ constructor(body: PublicPermissionDenied & FreestyleError, traceId?: string | undefined);
11347
11635
  }
11348
11636
  interface PublicFailedToCheckPermissions {
11349
11637
  message: string;
@@ -11351,10 +11639,11 @@ interface PublicFailedToCheckPermissions {
11351
11639
  }
11352
11640
  declare class FailedToCheckPermissionsError extends Error {
11353
11641
  body: PublicFailedToCheckPermissions & FreestyleError;
11642
+ traceId?: string | undefined;
11354
11643
  static readonly code: string;
11355
11644
  static readonly statusCode: number;
11356
11645
  static readonly description: string;
11357
- constructor(body: PublicFailedToCheckPermissions & FreestyleError);
11646
+ constructor(body: PublicFailedToCheckPermissions & FreestyleError, traceId?: string | undefined);
11358
11647
  }
11359
11648
  interface PublicFailedToListDomains {
11360
11649
  message: string;
@@ -11362,10 +11651,11 @@ interface PublicFailedToListDomains {
11362
11651
  }
11363
11652
  declare class FailedToListDomainsError extends Error {
11364
11653
  body: PublicFailedToListDomains & FreestyleError;
11654
+ traceId?: string | undefined;
11365
11655
  static readonly code: string;
11366
11656
  static readonly statusCode: number;
11367
11657
  static readonly description: string;
11368
- constructor(body: PublicFailedToListDomains & FreestyleError);
11658
+ constructor(body: PublicFailedToListDomains & FreestyleError, traceId?: string | undefined);
11369
11659
  }
11370
11660
  interface PublicFailedToListVerifications {
11371
11661
  message: string;
@@ -11373,10 +11663,11 @@ interface PublicFailedToListVerifications {
11373
11663
  }
11374
11664
  declare class FailedToListVerificationsError extends Error {
11375
11665
  body: PublicFailedToListVerifications & FreestyleError;
11666
+ traceId?: string | undefined;
11376
11667
  static readonly code: string;
11377
11668
  static readonly statusCode: number;
11378
11669
  static readonly description: string;
11379
- constructor(body: PublicFailedToListVerifications & FreestyleError);
11670
+ constructor(body: PublicFailedToListVerifications & FreestyleError, traceId?: string | undefined);
11380
11671
  }
11381
11672
  interface PublicFailedToVerifyDomain {
11382
11673
  message: string;
@@ -11384,10 +11675,11 @@ interface PublicFailedToVerifyDomain {
11384
11675
  }
11385
11676
  declare class FailedToVerifyDomainError extends Error {
11386
11677
  body: PublicFailedToVerifyDomain & FreestyleError;
11678
+ traceId?: string | undefined;
11387
11679
  static readonly code: string;
11388
11680
  static readonly statusCode: number;
11389
11681
  static readonly description: string;
11390
- constructor(body: PublicFailedToVerifyDomain & FreestyleError);
11682
+ constructor(body: PublicFailedToVerifyDomain & FreestyleError, traceId?: string | undefined);
11391
11683
  }
11392
11684
  interface PublicVerificationFailed {
11393
11685
  message: string;
@@ -11395,10 +11687,11 @@ interface PublicVerificationFailed {
11395
11687
  }
11396
11688
  declare class VerificationFailedError extends Error {
11397
11689
  body: PublicVerificationFailed & FreestyleError;
11690
+ traceId?: string | undefined;
11398
11691
  static readonly code: string;
11399
11692
  static readonly statusCode: number;
11400
11693
  static readonly description: string;
11401
- constructor(body: PublicVerificationFailed & FreestyleError);
11694
+ constructor(body: PublicVerificationFailed & FreestyleError, traceId?: string | undefined);
11402
11695
  }
11403
11696
  interface PublicFailedToDeleteVerification {
11404
11697
  message: string;
@@ -11406,10 +11699,11 @@ interface PublicFailedToDeleteVerification {
11406
11699
  }
11407
11700
  declare class FailedToDeleteVerificationError extends Error {
11408
11701
  body: PublicFailedToDeleteVerification & FreestyleError;
11702
+ traceId?: string | undefined;
11409
11703
  static readonly code: string;
11410
11704
  static readonly statusCode: number;
11411
11705
  static readonly description: string;
11412
- constructor(body: PublicFailedToDeleteVerification & FreestyleError);
11706
+ constructor(body: PublicFailedToDeleteVerification & FreestyleError, traceId?: string | undefined);
11413
11707
  }
11414
11708
  interface PublicVerificationNotFound {
11415
11709
  domain: string;
@@ -11417,10 +11711,11 @@ interface PublicVerificationNotFound {
11417
11711
  }
11418
11712
  declare class VerificationNotFoundError extends Error {
11419
11713
  body: PublicVerificationNotFound & FreestyleError;
11714
+ traceId?: string | undefined;
11420
11715
  static readonly code: string;
11421
11716
  static readonly statusCode: number;
11422
11717
  static readonly description: string;
11423
- constructor(body: PublicVerificationNotFound & FreestyleError);
11718
+ constructor(body: PublicVerificationNotFound & FreestyleError, traceId?: string | undefined);
11424
11719
  }
11425
11720
  interface PublicFailedToCreateVerificationCode {
11426
11721
  message: string;
@@ -11428,10 +11723,11 @@ interface PublicFailedToCreateVerificationCode {
11428
11723
  }
11429
11724
  declare class FailedToCreateVerificationCodeError extends Error {
11430
11725
  body: PublicFailedToCreateVerificationCode & FreestyleError;
11726
+ traceId?: string | undefined;
11431
11727
  static readonly code: string;
11432
11728
  static readonly statusCode: number;
11433
11729
  static readonly description: string;
11434
- constructor(body: PublicFailedToCreateVerificationCode & FreestyleError);
11730
+ constructor(body: PublicFailedToCreateVerificationCode & FreestyleError, traceId?: string | undefined);
11435
11731
  }
11436
11732
  interface PublicInvalidDomain {
11437
11733
  domain: string;
@@ -11439,10 +11735,11 @@ interface PublicInvalidDomain {
11439
11735
  }
11440
11736
  declare class InvalidDomainError extends Error {
11441
11737
  body: PublicInvalidDomain & FreestyleError;
11738
+ traceId?: string | undefined;
11442
11739
  static readonly code: string;
11443
11740
  static readonly statusCode: number;
11444
11741
  static readonly description: string;
11445
- constructor(body: PublicInvalidDomain & FreestyleError);
11742
+ constructor(body: PublicInvalidDomain & FreestyleError, traceId?: string | undefined);
11446
11743
  }
11447
11744
  interface PublicCloudstateInternalError {
11448
11745
  message: string;
@@ -11450,10 +11747,11 @@ interface PublicCloudstateInternalError {
11450
11747
  }
11451
11748
  declare class CloudstateInternalErrorError extends Error {
11452
11749
  body: PublicCloudstateInternalError & FreestyleError;
11750
+ traceId?: string | undefined;
11453
11751
  static readonly code: string;
11454
11752
  static readonly statusCode: number;
11455
11753
  static readonly description: string;
11456
- constructor(body: PublicCloudstateInternalError & FreestyleError);
11754
+ constructor(body: PublicCloudstateInternalError & FreestyleError, traceId?: string | undefined);
11457
11755
  }
11458
11756
  interface PublicCloudstateDatabaseError {
11459
11757
  message: string;
@@ -11461,10 +11759,11 @@ interface PublicCloudstateDatabaseError {
11461
11759
  }
11462
11760
  declare class CloudstateDatabaseErrorError extends Error {
11463
11761
  body: PublicCloudstateDatabaseError & FreestyleError;
11762
+ traceId?: string | undefined;
11464
11763
  static readonly code: string;
11465
11764
  static readonly statusCode: number;
11466
11765
  static readonly description: string;
11467
- constructor(body: PublicCloudstateDatabaseError & FreestyleError);
11766
+ constructor(body: PublicCloudstateDatabaseError & FreestyleError, traceId?: string | undefined);
11468
11767
  }
11469
11768
  interface PublicCloudstateAccessDenied {
11470
11769
  projectId: string;
@@ -11472,10 +11771,11 @@ interface PublicCloudstateAccessDenied {
11472
11771
  }
11473
11772
  declare class CloudstateAccessDeniedError extends Error {
11474
11773
  body: PublicCloudstateAccessDenied & FreestyleError;
11774
+ traceId?: string | undefined;
11475
11775
  static readonly code: string;
11476
11776
  static readonly statusCode: number;
11477
11777
  static readonly description: string;
11478
- constructor(body: PublicCloudstateAccessDenied & FreestyleError);
11778
+ constructor(body: PublicCloudstateAccessDenied & FreestyleError, traceId?: string | undefined);
11479
11779
  }
11480
11780
  interface PublicRestoreFailed {
11481
11781
  message: string;
@@ -11483,10 +11783,11 @@ interface PublicRestoreFailed {
11483
11783
  }
11484
11784
  declare class RestoreFailedError extends Error {
11485
11785
  body: PublicRestoreFailed & FreestyleError;
11786
+ traceId?: string | undefined;
11486
11787
  static readonly code: string;
11487
11788
  static readonly statusCode: number;
11488
11789
  static readonly description: string;
11489
- constructor(body: PublicRestoreFailed & FreestyleError);
11790
+ constructor(body: PublicRestoreFailed & FreestyleError, traceId?: string | undefined);
11490
11791
  }
11491
11792
  interface PublicCreateBackupFailed {
11492
11793
  message: string;
@@ -11494,10 +11795,11 @@ interface PublicCreateBackupFailed {
11494
11795
  }
11495
11796
  declare class CreateBackupFailedError extends Error {
11496
11797
  body: PublicCreateBackupFailed & FreestyleError;
11798
+ traceId?: string | undefined;
11497
11799
  static readonly code: string;
11498
11800
  static readonly statusCode: number;
11499
11801
  static readonly description: string;
11500
- constructor(body: PublicCreateBackupFailed & FreestyleError);
11802
+ constructor(body: PublicCreateBackupFailed & FreestyleError, traceId?: string | undefined);
11501
11803
  }
11502
11804
  interface PublicBackupFailed {
11503
11805
  message: string;
@@ -11505,10 +11807,11 @@ interface PublicBackupFailed {
11505
11807
  }
11506
11808
  declare class BackupFailedError extends Error {
11507
11809
  body: PublicBackupFailed & FreestyleError;
11810
+ traceId?: string | undefined;
11508
11811
  static readonly code: string;
11509
11812
  static readonly statusCode: number;
11510
11813
  static readonly description: string;
11511
- constructor(body: PublicBackupFailed & FreestyleError);
11814
+ constructor(body: PublicBackupFailed & FreestyleError, traceId?: string | undefined);
11512
11815
  }
11513
11816
  interface PublicDeploymentFailed {
11514
11817
  message: string;
@@ -11516,10 +11819,11 @@ interface PublicDeploymentFailed {
11516
11819
  }
11517
11820
  declare class DeploymentFailedError extends Error {
11518
11821
  body: PublicDeploymentFailed & FreestyleError;
11822
+ traceId?: string | undefined;
11519
11823
  static readonly code: string;
11520
11824
  static readonly statusCode: number;
11521
11825
  static readonly description: string;
11522
- constructor(body: PublicDeploymentFailed & FreestyleError);
11826
+ constructor(body: PublicDeploymentFailed & FreestyleError, traceId?: string | undefined);
11523
11827
  }
11524
11828
  interface PublicInvalidDeploymentRequest {
11525
11829
  message: string;
@@ -11527,10 +11831,11 @@ interface PublicInvalidDeploymentRequest {
11527
11831
  }
11528
11832
  declare class InvalidDeploymentRequestError extends Error {
11529
11833
  body: PublicInvalidDeploymentRequest & FreestyleError;
11834
+ traceId?: string | undefined;
11530
11835
  static readonly code: string;
11531
11836
  static readonly statusCode: number;
11532
11837
  static readonly description: string;
11533
- constructor(body: PublicInvalidDeploymentRequest & FreestyleError);
11838
+ constructor(body: PublicInvalidDeploymentRequest & FreestyleError, traceId?: string | undefined);
11534
11839
  }
11535
11840
  interface PublicProjectNotFound {
11536
11841
  projectId: string;
@@ -11538,24 +11843,27 @@ interface PublicProjectNotFound {
11538
11843
  }
11539
11844
  declare class ProjectNotFoundError extends Error {
11540
11845
  body: PublicProjectNotFound & FreestyleError;
11846
+ traceId?: string | undefined;
11541
11847
  static readonly code: string;
11542
11848
  static readonly statusCode: number;
11543
11849
  static readonly description: string;
11544
- constructor(body: PublicProjectNotFound & FreestyleError);
11850
+ constructor(body: PublicProjectNotFound & FreestyleError, traceId?: string | undefined);
11545
11851
  }
11546
11852
  declare class GitRepoLimitExceededError extends Error {
11547
11853
  body: unknown & FreestyleError;
11854
+ traceId?: string | undefined;
11548
11855
  static readonly code: string;
11549
11856
  static readonly statusCode: number;
11550
11857
  static readonly description: string;
11551
- constructor(body: unknown & FreestyleError);
11858
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
11552
11859
  }
11553
11860
  declare class EmptyTagError extends Error {
11554
11861
  body: unknown & FreestyleError;
11862
+ traceId?: string | undefined;
11555
11863
  static readonly code: string;
11556
11864
  static readonly statusCode: number;
11557
11865
  static readonly description: string;
11558
- constructor(body: unknown & FreestyleError);
11866
+ constructor(body: unknown & FreestyleError, traceId?: string | undefined);
11559
11867
  }
11560
11868
  declare const FREESTYLE_ERROR_CODE_MAP: {
11561
11869
  GIT_ERROR: typeof GitErrorError;