@aws-sdk/client-codecommit 3.428.0 → 3.429.0
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.
|
@@ -38,7 +38,7 @@ export interface Approval {
|
|
|
38
38
|
* @public
|
|
39
39
|
* <p>The state of the approval, APPROVE or REVOKE. REVOKE states are not stored.</p>
|
|
40
40
|
*/
|
|
41
|
-
approvalState?: ApprovalState
|
|
41
|
+
approvalState?: ApprovalState;
|
|
42
42
|
}
|
|
43
43
|
/**
|
|
44
44
|
* @public
|
|
@@ -198,7 +198,7 @@ export interface ApprovalRuleOverriddenEventMetadata {
|
|
|
198
198
|
* @public
|
|
199
199
|
* <p>The status of the override event.</p>
|
|
200
200
|
*/
|
|
201
|
-
overrideStatus?: OverrideStatus
|
|
201
|
+
overrideStatus?: OverrideStatus;
|
|
202
202
|
}
|
|
203
203
|
/**
|
|
204
204
|
* @public
|
|
@@ -324,7 +324,7 @@ export interface ApprovalStateChangedEventMetadata {
|
|
|
324
324
|
* @public
|
|
325
325
|
* <p>The approval status for the pull request.</p>
|
|
326
326
|
*/
|
|
327
|
-
approvalStatus?: ApprovalState
|
|
327
|
+
approvalStatus?: ApprovalState;
|
|
328
328
|
}
|
|
329
329
|
/**
|
|
330
330
|
* @public
|
|
@@ -635,7 +635,7 @@ export interface BatchDescribeMergeConflictsInput {
|
|
|
635
635
|
* @public
|
|
636
636
|
* <p>The merge option or strategy you want to use to merge the code.</p>
|
|
637
637
|
*/
|
|
638
|
-
mergeOption: MergeOptionTypeEnum |
|
|
638
|
+
mergeOption: MergeOptionTypeEnum | undefined;
|
|
639
639
|
/**
|
|
640
640
|
* @public
|
|
641
641
|
* <p>The maximum number of merge hunks to include in the output.</p>
|
|
@@ -658,14 +658,14 @@ export interface BatchDescribeMergeConflictsInput {
|
|
|
658
658
|
* If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in
|
|
659
659
|
* both branches has differences on the same line.</p>
|
|
660
660
|
*/
|
|
661
|
-
conflictDetailLevel?: ConflictDetailLevelTypeEnum
|
|
661
|
+
conflictDetailLevel?: ConflictDetailLevelTypeEnum;
|
|
662
662
|
/**
|
|
663
663
|
* @public
|
|
664
664
|
* <p>Specifies which branch to use when resolving conflicts, or whether to attempt
|
|
665
665
|
* automatically merging two versions of a file. The default is NONE, which requires any
|
|
666
666
|
* conflicts to be resolved manually before the merge operation is successful.</p>
|
|
667
667
|
*/
|
|
668
|
-
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum
|
|
668
|
+
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum;
|
|
669
669
|
/**
|
|
670
670
|
* @public
|
|
671
671
|
* <p>An enumeration token that, when provided in a request, returns the next batch of the
|
|
@@ -695,17 +695,17 @@ export interface FileModes {
|
|
|
695
695
|
* @public
|
|
696
696
|
* <p>The file mode of a file in the source of a merge or pull request.</p>
|
|
697
697
|
*/
|
|
698
|
-
source?: FileModeTypeEnum
|
|
698
|
+
source?: FileModeTypeEnum;
|
|
699
699
|
/**
|
|
700
700
|
* @public
|
|
701
701
|
* <p>The file mode of a file in the destination of a merge or pull request.</p>
|
|
702
702
|
*/
|
|
703
|
-
destination?: FileModeTypeEnum
|
|
703
|
+
destination?: FileModeTypeEnum;
|
|
704
704
|
/**
|
|
705
705
|
* @public
|
|
706
706
|
* <p>The file mode of a file in the base of a merge or pull request.</p>
|
|
707
707
|
*/
|
|
708
|
-
base?: FileModeTypeEnum
|
|
708
|
+
base?: FileModeTypeEnum;
|
|
709
709
|
}
|
|
710
710
|
/**
|
|
711
711
|
* @public
|
|
@@ -772,12 +772,12 @@ export interface MergeOperations {
|
|
|
772
772
|
* <p>The operation (add, modify, or delete) on a file in the source of a merge or pull
|
|
773
773
|
* request.</p>
|
|
774
774
|
*/
|
|
775
|
-
source?: ChangeTypeEnum
|
|
775
|
+
source?: ChangeTypeEnum;
|
|
776
776
|
/**
|
|
777
777
|
* @public
|
|
778
778
|
* <p>The operation on a file in the destination of a merge or pull request.</p>
|
|
779
779
|
*/
|
|
780
|
-
destination?: ChangeTypeEnum
|
|
780
|
+
destination?: ChangeTypeEnum;
|
|
781
781
|
}
|
|
782
782
|
/**
|
|
783
783
|
* @public
|
|
@@ -802,17 +802,17 @@ export interface ObjectTypes {
|
|
|
802
802
|
* @public
|
|
803
803
|
* <p>The type of the object in the source branch.</p>
|
|
804
804
|
*/
|
|
805
|
-
source?: ObjectTypeEnum
|
|
805
|
+
source?: ObjectTypeEnum;
|
|
806
806
|
/**
|
|
807
807
|
* @public
|
|
808
808
|
* <p>The type of the object in the destination branch.</p>
|
|
809
809
|
*/
|
|
810
|
-
destination?: ObjectTypeEnum
|
|
810
|
+
destination?: ObjectTypeEnum;
|
|
811
811
|
/**
|
|
812
812
|
* @public
|
|
813
813
|
* <p>The type of the object in the base commit of the merge.</p>
|
|
814
814
|
*/
|
|
815
|
-
base?: ObjectTypeEnum
|
|
815
|
+
base?: ObjectTypeEnum;
|
|
816
816
|
}
|
|
817
817
|
/**
|
|
818
818
|
* @public
|
|
@@ -1852,7 +1852,7 @@ export interface PutFileEntry {
|
|
|
1852
1852
|
* @public
|
|
1853
1853
|
* <p>The extrapolated file mode permissions for the file. Valid values include EXECUTABLE and NORMAL.</p>
|
|
1854
1854
|
*/
|
|
1855
|
-
fileMode?: FileModeTypeEnum
|
|
1855
|
+
fileMode?: FileModeTypeEnum;
|
|
1856
1856
|
/**
|
|
1857
1857
|
* @public
|
|
1858
1858
|
* <p>The content of the file, if a source file is not specified.</p>
|
|
@@ -1879,7 +1879,7 @@ export interface SetFileModeEntry {
|
|
|
1879
1879
|
* @public
|
|
1880
1880
|
* <p>The file mode for the file.</p>
|
|
1881
1881
|
*/
|
|
1882
|
-
fileMode: FileModeTypeEnum |
|
|
1882
|
+
fileMode: FileModeTypeEnum | undefined;
|
|
1883
1883
|
}
|
|
1884
1884
|
/**
|
|
1885
1885
|
* @public
|
|
@@ -1961,7 +1961,7 @@ export interface FileMetadata {
|
|
|
1961
1961
|
* @public
|
|
1962
1962
|
* <p>The extrapolated file mode permissions for the file. Valid values include EXECUTABLE and NORMAL.</p>
|
|
1963
1963
|
*/
|
|
1964
|
-
fileMode?: FileModeTypeEnum
|
|
1964
|
+
fileMode?: FileModeTypeEnum;
|
|
1965
1965
|
}
|
|
1966
1966
|
/**
|
|
1967
1967
|
* @public
|
|
@@ -2404,7 +2404,7 @@ export interface MergeMetadata {
|
|
|
2404
2404
|
* @public
|
|
2405
2405
|
* <p>The merge strategy used in the merge.</p>
|
|
2406
2406
|
*/
|
|
2407
|
-
mergeOption?: MergeOptionTypeEnum
|
|
2407
|
+
mergeOption?: MergeOptionTypeEnum;
|
|
2408
2408
|
}
|
|
2409
2409
|
/**
|
|
2410
2410
|
* @public
|
|
@@ -2485,7 +2485,7 @@ export interface PullRequest {
|
|
|
2485
2485
|
* @public
|
|
2486
2486
|
* <p>The status of the pull request. Pull request status can only change from <code>OPEN</code> to <code>CLOSED</code>.</p>
|
|
2487
2487
|
*/
|
|
2488
|
-
pullRequestStatus?: PullRequestStatusEnum
|
|
2488
|
+
pullRequestStatus?: PullRequestStatusEnum;
|
|
2489
2489
|
/**
|
|
2490
2490
|
* @public
|
|
2491
2491
|
* <p>The Amazon Resource Name (ARN) of the user who created the pull request.</p>
|
|
@@ -3049,7 +3049,7 @@ export interface ReplaceContentEntry {
|
|
|
3049
3049
|
* @public
|
|
3050
3050
|
* <p>The replacement type to use when determining how to resolve the conflict.</p>
|
|
3051
3051
|
*/
|
|
3052
|
-
replacementType: ReplacementTypeEnum |
|
|
3052
|
+
replacementType: ReplacementTypeEnum | undefined;
|
|
3053
3053
|
/**
|
|
3054
3054
|
* @public
|
|
3055
3055
|
* <p>The base-64 encoded content to use when the replacement type is USE_NEW_CONTENT.</p>
|
|
@@ -3059,7 +3059,7 @@ export interface ReplaceContentEntry {
|
|
|
3059
3059
|
* @public
|
|
3060
3060
|
* <p>The file mode to apply during conflict resoltion.</p>
|
|
3061
3061
|
*/
|
|
3062
|
-
fileMode?: FileModeTypeEnum
|
|
3062
|
+
fileMode?: FileModeTypeEnum;
|
|
3063
3063
|
}
|
|
3064
3064
|
/**
|
|
3065
3065
|
* @public
|
|
@@ -3108,7 +3108,7 @@ export interface CreateUnreferencedMergeCommitInput {
|
|
|
3108
3108
|
* @public
|
|
3109
3109
|
* <p>The merge option or strategy you want to use to merge the code.</p>
|
|
3110
3110
|
*/
|
|
3111
|
-
mergeOption: MergeOptionTypeEnum |
|
|
3111
|
+
mergeOption: MergeOptionTypeEnum | undefined;
|
|
3112
3112
|
/**
|
|
3113
3113
|
* @public
|
|
3114
3114
|
* <p>The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used,
|
|
@@ -3116,14 +3116,14 @@ export interface CreateUnreferencedMergeCommitInput {
|
|
|
3116
3116
|
* If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in
|
|
3117
3117
|
* both branches has differences on the same line.</p>
|
|
3118
3118
|
*/
|
|
3119
|
-
conflictDetailLevel?: ConflictDetailLevelTypeEnum
|
|
3119
|
+
conflictDetailLevel?: ConflictDetailLevelTypeEnum;
|
|
3120
3120
|
/**
|
|
3121
3121
|
* @public
|
|
3122
3122
|
* <p>Specifies which branch to use when resolving conflicts, or whether to attempt
|
|
3123
3123
|
* automatically merging two versions of a file. The default is NONE, which requires any
|
|
3124
3124
|
* conflicts to be resolved manually before the merge operation is successful.</p>
|
|
3125
3125
|
*/
|
|
3126
|
-
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum
|
|
3126
|
+
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum;
|
|
3127
3127
|
/**
|
|
3128
3128
|
* @public
|
|
3129
3129
|
* <p>The name of the author who created the unreferenced commit. This information is used
|
|
@@ -3612,7 +3612,7 @@ export interface DescribeMergeConflictsInput {
|
|
|
3612
3612
|
* @public
|
|
3613
3613
|
* <p>The merge option or strategy you want to use to merge the code.</p>
|
|
3614
3614
|
*/
|
|
3615
|
-
mergeOption: MergeOptionTypeEnum |
|
|
3615
|
+
mergeOption: MergeOptionTypeEnum | undefined;
|
|
3616
3616
|
/**
|
|
3617
3617
|
* @public
|
|
3618
3618
|
* <p>The maximum number of merge hunks to include in the output.</p>
|
|
@@ -3630,14 +3630,14 @@ export interface DescribeMergeConflictsInput {
|
|
|
3630
3630
|
* If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in
|
|
3631
3631
|
* both branches has differences on the same line.</p>
|
|
3632
3632
|
*/
|
|
3633
|
-
conflictDetailLevel?: ConflictDetailLevelTypeEnum
|
|
3633
|
+
conflictDetailLevel?: ConflictDetailLevelTypeEnum;
|
|
3634
3634
|
/**
|
|
3635
3635
|
* @public
|
|
3636
3636
|
* <p>Specifies which branch to use when resolving conflicts, or whether to attempt
|
|
3637
3637
|
* automatically merging two versions of a file. The default is NONE, which requires any
|
|
3638
3638
|
* conflicts to be resolved manually before the merge operation is successful.</p>
|
|
3639
3639
|
*/
|
|
3640
|
-
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum
|
|
3640
|
+
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum;
|
|
3641
3641
|
/**
|
|
3642
3642
|
* @public
|
|
3643
3643
|
* <p>An enumeration token that, when provided in a request, returns the next batch of the
|
|
@@ -3712,7 +3712,7 @@ export interface DescribePullRequestEventsInput {
|
|
|
3712
3712
|
* @public
|
|
3713
3713
|
* <p>Optional. The pull request event type about which you want to return information.</p>
|
|
3714
3714
|
*/
|
|
3715
|
-
pullRequestEventType?: PullRequestEventType
|
|
3715
|
+
pullRequestEventType?: PullRequestEventType;
|
|
3716
3716
|
/**
|
|
3717
3717
|
* @public
|
|
3718
3718
|
* <p>The Amazon Resource Name (ARN) of the user whose actions resulted in the event.
|
|
@@ -3815,7 +3815,7 @@ export interface PullRequestStatusChangedEventMetadata {
|
|
|
3815
3815
|
* @public
|
|
3816
3816
|
* <p>The changed status of the pull request.</p>
|
|
3817
3817
|
*/
|
|
3818
|
-
pullRequestStatus?: PullRequestStatusEnum
|
|
3818
|
+
pullRequestStatus?: PullRequestStatusEnum;
|
|
3819
3819
|
}
|
|
3820
3820
|
/**
|
|
3821
3821
|
* @public
|
|
@@ -3838,7 +3838,7 @@ export interface PullRequestEvent {
|
|
|
3838
3838
|
* (PULL_REQUEST_STATUS_CHANGED) or update event
|
|
3839
3839
|
* (PULL_REQUEST_SOURCE_REFERENCE_UPDATED)).</p>
|
|
3840
3840
|
*/
|
|
3841
|
-
pullRequestEventType?: PullRequestEventType
|
|
3841
|
+
pullRequestEventType?: PullRequestEventType;
|
|
3842
3842
|
/**
|
|
3843
3843
|
* @public
|
|
3844
3844
|
* <p>The Amazon Resource Name (ARN) of the user whose actions resulted in the event.
|
|
@@ -4319,7 +4319,7 @@ export interface Location {
|
|
|
4319
4319
|
* <p>In a comparison of commits or a pull request, whether the change is in the before or
|
|
4320
4320
|
* after of that comparison.</p>
|
|
4321
4321
|
*/
|
|
4322
|
-
relativeFileVersion?: RelativeFileVersionEnum
|
|
4322
|
+
relativeFileVersion?: RelativeFileVersionEnum;
|
|
4323
4323
|
}
|
|
4324
4324
|
/**
|
|
4325
4325
|
* @public
|
|
@@ -4609,7 +4609,7 @@ export interface Difference {
|
|
|
4609
4609
|
* @public
|
|
4610
4610
|
* <p>Whether the change type of the difference is an addition (A), deletion (D), or modification (M).</p>
|
|
4611
4611
|
*/
|
|
4612
|
-
changeType?: ChangeTypeEnum
|
|
4612
|
+
changeType?: ChangeTypeEnum;
|
|
4613
4613
|
}
|
|
4614
4614
|
/**
|
|
4615
4615
|
* @public
|
|
@@ -4692,7 +4692,7 @@ export interface GetFileOutput {
|
|
|
4692
4692
|
* return values.</p>
|
|
4693
4693
|
* </note>
|
|
4694
4694
|
*/
|
|
4695
|
-
fileMode: FileModeTypeEnum |
|
|
4695
|
+
fileMode: FileModeTypeEnum | undefined;
|
|
4696
4696
|
/**
|
|
4697
4697
|
* @public
|
|
4698
4698
|
* <p>The size of the contents of the file, in bytes.</p>
|
|
@@ -4766,7 +4766,7 @@ export interface File {
|
|
|
4766
4766
|
* @public
|
|
4767
4767
|
* <p>The extrapolated file mode permissions for the file. Valid values include EXECUTABLE and NORMAL.</p>
|
|
4768
4768
|
*/
|
|
4769
|
-
fileMode?: FileModeTypeEnum
|
|
4769
|
+
fileMode?: FileModeTypeEnum;
|
|
4770
4770
|
}
|
|
4771
4771
|
/**
|
|
4772
4772
|
* @public
|
|
@@ -4834,7 +4834,7 @@ export interface SymbolicLink {
|
|
|
4834
4834
|
* @public
|
|
4835
4835
|
* <p>The file mode permissions of the blob that cotains information about the symbolic link.</p>
|
|
4836
4836
|
*/
|
|
4837
|
-
fileMode?: FileModeTypeEnum
|
|
4837
|
+
fileMode?: FileModeTypeEnum;
|
|
4838
4838
|
}
|
|
4839
4839
|
/**
|
|
4840
4840
|
* @public
|
|
@@ -4906,14 +4906,14 @@ export interface GetMergeCommitInput {
|
|
|
4906
4906
|
* If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in
|
|
4907
4907
|
* both branches has differences on the same line.</p>
|
|
4908
4908
|
*/
|
|
4909
|
-
conflictDetailLevel?: ConflictDetailLevelTypeEnum
|
|
4909
|
+
conflictDetailLevel?: ConflictDetailLevelTypeEnum;
|
|
4910
4910
|
/**
|
|
4911
4911
|
* @public
|
|
4912
4912
|
* <p>Specifies which branch to use when resolving conflicts, or whether to attempt
|
|
4913
4913
|
* automatically merging two versions of a file. The default is NONE, which requires any
|
|
4914
4914
|
* conflicts to be resolved manually before the merge operation is successful.</p>
|
|
4915
4915
|
*/
|
|
4916
|
-
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum
|
|
4916
|
+
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum;
|
|
4917
4917
|
}
|
|
4918
4918
|
/**
|
|
4919
4919
|
* @public
|
|
@@ -4967,7 +4967,7 @@ export interface GetMergeConflictsInput {
|
|
|
4967
4967
|
* @public
|
|
4968
4968
|
* <p>The merge option or strategy you want to use to merge the code. </p>
|
|
4969
4969
|
*/
|
|
4970
|
-
mergeOption: MergeOptionTypeEnum |
|
|
4970
|
+
mergeOption: MergeOptionTypeEnum | undefined;
|
|
4971
4971
|
/**
|
|
4972
4972
|
* @public
|
|
4973
4973
|
* <p>The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used,
|
|
@@ -4975,7 +4975,7 @@ export interface GetMergeConflictsInput {
|
|
|
4975
4975
|
* If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in
|
|
4976
4976
|
* both branches has differences on the same line.</p>
|
|
4977
4977
|
*/
|
|
4978
|
-
conflictDetailLevel?: ConflictDetailLevelTypeEnum
|
|
4978
|
+
conflictDetailLevel?: ConflictDetailLevelTypeEnum;
|
|
4979
4979
|
/**
|
|
4980
4980
|
* @public
|
|
4981
4981
|
* <p>The maximum number of files to include in the output.</p>
|
|
@@ -4987,7 +4987,7 @@ export interface GetMergeConflictsInput {
|
|
|
4987
4987
|
* automatically merging two versions of a file. The default is NONE, which requires any
|
|
4988
4988
|
* conflicts to be resolved manually before the merge operation is successful.</p>
|
|
4989
4989
|
*/
|
|
4990
|
-
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum
|
|
4990
|
+
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum;
|
|
4991
4991
|
/**
|
|
4992
4992
|
* @public
|
|
4993
4993
|
* <p>An enumeration token that, when provided in a request, returns the next batch of the
|
|
@@ -5083,14 +5083,14 @@ export interface GetMergeOptionsInput {
|
|
|
5083
5083
|
* If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in
|
|
5084
5084
|
* both branches has differences on the same line.</p>
|
|
5085
5085
|
*/
|
|
5086
|
-
conflictDetailLevel?: ConflictDetailLevelTypeEnum
|
|
5086
|
+
conflictDetailLevel?: ConflictDetailLevelTypeEnum;
|
|
5087
5087
|
/**
|
|
5088
5088
|
* @public
|
|
5089
5089
|
* <p>Specifies which branch to use when resolving conflicts, or whether to attempt
|
|
5090
5090
|
* automatically merging two versions of a file. The default is NONE, which requires any
|
|
5091
5091
|
* conflicts to be resolved manually before the merge operation is successful.</p>
|
|
5092
5092
|
*/
|
|
5093
|
-
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum
|
|
5093
|
+
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum;
|
|
5094
5094
|
}
|
|
5095
5095
|
/**
|
|
5096
5096
|
* @public
|
|
@@ -5100,7 +5100,7 @@ export interface GetMergeOptionsOutput {
|
|
|
5100
5100
|
* @public
|
|
5101
5101
|
* <p>The merge option or strategy used to merge the code.</p>
|
|
5102
5102
|
*/
|
|
5103
|
-
mergeOptions:
|
|
5103
|
+
mergeOptions: MergeOptionTypeEnum[] | undefined;
|
|
5104
5104
|
/**
|
|
5105
5105
|
* @public
|
|
5106
5106
|
* <p>The commit ID of the source commit specifier that was used in the merge evaluation.</p>
|
|
@@ -5287,7 +5287,7 @@ export interface RepositoryTrigger {
|
|
|
5287
5287
|
* <p>The valid value "all" cannot be used with any other values.</p>
|
|
5288
5288
|
* </note>
|
|
5289
5289
|
*/
|
|
5290
|
-
events:
|
|
5290
|
+
events: RepositoryTriggerEventEnum[] | undefined;
|
|
5291
5291
|
}
|
|
5292
5292
|
/**
|
|
5293
5293
|
* @public
|
|
@@ -5521,7 +5521,7 @@ export interface ListPullRequestsInput {
|
|
|
5521
5521
|
* @public
|
|
5522
5522
|
* <p>Optional. The status of the pull request. If used, this refines the results to the pull requests that match the specified status.</p>
|
|
5523
5523
|
*/
|
|
5524
|
-
pullRequestStatus?: PullRequestStatusEnum
|
|
5524
|
+
pullRequestStatus?: PullRequestStatusEnum;
|
|
5525
5525
|
/**
|
|
5526
5526
|
* @public
|
|
5527
5527
|
* <p>An enumeration token that, when provided in a request, returns the next batch of the
|
|
@@ -80,12 +80,12 @@ export interface ListRepositoriesInput {
|
|
|
80
80
|
* @public
|
|
81
81
|
* <p>The criteria used to sort the results of a list repositories operation.</p>
|
|
82
82
|
*/
|
|
83
|
-
sortBy?: SortByEnum
|
|
83
|
+
sortBy?: SortByEnum;
|
|
84
84
|
/**
|
|
85
85
|
* @public
|
|
86
86
|
* <p>The order in which to sort the results of a list repositories operation.</p>
|
|
87
87
|
*/
|
|
88
|
-
order?: OrderEnum
|
|
88
|
+
order?: OrderEnum;
|
|
89
89
|
}
|
|
90
90
|
/**
|
|
91
91
|
* @public
|
|
@@ -304,14 +304,14 @@ export interface MergeBranchesBySquashInput {
|
|
|
304
304
|
* If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in
|
|
305
305
|
* both branches has differences on the same line.</p>
|
|
306
306
|
*/
|
|
307
|
-
conflictDetailLevel?: ConflictDetailLevelTypeEnum
|
|
307
|
+
conflictDetailLevel?: ConflictDetailLevelTypeEnum;
|
|
308
308
|
/**
|
|
309
309
|
* @public
|
|
310
310
|
* <p>Specifies which branch to use when resolving conflicts, or whether to attempt
|
|
311
311
|
* automatically merging two versions of a file. The default is NONE, which requires any
|
|
312
312
|
* conflicts to be resolved manually before the merge operation is successful.</p>
|
|
313
313
|
*/
|
|
314
|
-
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum
|
|
314
|
+
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum;
|
|
315
315
|
/**
|
|
316
316
|
* @public
|
|
317
317
|
* <p>The name of the author who created the commit. This information is used as both the
|
|
@@ -391,14 +391,14 @@ export interface MergeBranchesByThreeWayInput {
|
|
|
391
391
|
* If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in
|
|
392
392
|
* both branches has differences on the same line.</p>
|
|
393
393
|
*/
|
|
394
|
-
conflictDetailLevel?: ConflictDetailLevelTypeEnum
|
|
394
|
+
conflictDetailLevel?: ConflictDetailLevelTypeEnum;
|
|
395
395
|
/**
|
|
396
396
|
* @public
|
|
397
397
|
* <p>Specifies which branch to use when resolving conflicts, or whether to attempt
|
|
398
398
|
* automatically merging two versions of a file. The default is NONE, which requires any
|
|
399
399
|
* conflicts to be resolved manually before the merge operation is successful.</p>
|
|
400
400
|
*/
|
|
401
|
-
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum
|
|
401
|
+
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum;
|
|
402
402
|
/**
|
|
403
403
|
* @public
|
|
404
404
|
* <p>The name of the author who created the commit. This information is used as both the
|
|
@@ -528,14 +528,14 @@ export interface MergePullRequestBySquashInput {
|
|
|
528
528
|
* If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in
|
|
529
529
|
* both branches has differences on the same line.</p>
|
|
530
530
|
*/
|
|
531
|
-
conflictDetailLevel?: ConflictDetailLevelTypeEnum
|
|
531
|
+
conflictDetailLevel?: ConflictDetailLevelTypeEnum;
|
|
532
532
|
/**
|
|
533
533
|
* @public
|
|
534
534
|
* <p>Specifies which branch to use when resolving conflicts, or whether to attempt
|
|
535
535
|
* automatically merging two versions of a file. The default is NONE, which requires any
|
|
536
536
|
* conflicts to be resolved manually before the merge operation is successful.</p>
|
|
537
537
|
*/
|
|
538
|
-
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum
|
|
538
|
+
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum;
|
|
539
539
|
/**
|
|
540
540
|
* @public
|
|
541
541
|
* <p>The commit message to include in the commit information for the merge.</p>
|
|
@@ -604,14 +604,14 @@ export interface MergePullRequestByThreeWayInput {
|
|
|
604
604
|
* If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in
|
|
605
605
|
* both branches has differences on the same line.</p>
|
|
606
606
|
*/
|
|
607
|
-
conflictDetailLevel?: ConflictDetailLevelTypeEnum
|
|
607
|
+
conflictDetailLevel?: ConflictDetailLevelTypeEnum;
|
|
608
608
|
/**
|
|
609
609
|
* @public
|
|
610
610
|
* <p>Specifies which branch to use when resolving conflicts, or whether to attempt
|
|
611
611
|
* automatically merging two versions of a file. The default is NONE, which requires any
|
|
612
612
|
* conflicts to be resolved manually before the merge operation is successful.</p>
|
|
613
613
|
*/
|
|
614
|
-
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum
|
|
614
|
+
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum;
|
|
615
615
|
/**
|
|
616
616
|
* @public
|
|
617
617
|
* <p>The commit message to include in the commit information for the merge.</p>
|
|
@@ -699,7 +699,7 @@ export interface OverridePullRequestApprovalRulesInput {
|
|
|
699
699
|
* <p>Whether you want to set aside approval rule requirements for the pull request (OVERRIDE) or revoke a previous override and apply
|
|
700
700
|
* approval rule requirements (REVOKE). REVOKE status is not stored.</p>
|
|
701
701
|
*/
|
|
702
|
-
overrideStatus: OverrideStatus |
|
|
702
|
+
overrideStatus: OverrideStatus | undefined;
|
|
703
703
|
}
|
|
704
704
|
/**
|
|
705
705
|
* @public
|
|
@@ -1079,7 +1079,7 @@ export interface PutFileInput {
|
|
|
1079
1079
|
* <p>The file mode permissions of the blob. Valid file mode permissions are listed
|
|
1080
1080
|
* here.</p>
|
|
1081
1081
|
*/
|
|
1082
|
-
fileMode?: FileModeTypeEnum
|
|
1082
|
+
fileMode?: FileModeTypeEnum;
|
|
1083
1083
|
/**
|
|
1084
1084
|
* @public
|
|
1085
1085
|
* <p>The full commit ID of the head commit in the branch where you want to add or update the file. If this is an empty repository,
|
|
@@ -1721,7 +1721,7 @@ export interface UpdatePullRequestApprovalStateInput {
|
|
|
1721
1721
|
* @public
|
|
1722
1722
|
* <p>The approval state to associate with the user on the pull request.</p>
|
|
1723
1723
|
*/
|
|
1724
|
-
approvalState: ApprovalState |
|
|
1724
|
+
approvalState: ApprovalState | undefined;
|
|
1725
1725
|
}
|
|
1726
1726
|
/**
|
|
1727
1727
|
* @public
|
|
@@ -1788,7 +1788,7 @@ export interface UpdatePullRequestStatusInput {
|
|
|
1788
1788
|
* from <code>OPEN</code> to <code>OPEN</code>, <code>OPEN</code> to <code>CLOSED</code> or
|
|
1789
1789
|
* from <code>CLOSED</code> to <code>CLOSED</code>.</p>
|
|
1790
1790
|
*/
|
|
1791
|
-
pullRequestStatus: PullRequestStatusEnum |
|
|
1791
|
+
pullRequestStatus: PullRequestStatusEnum | undefined;
|
|
1792
1792
|
}
|
|
1793
1793
|
/**
|
|
1794
1794
|
* @public
|
|
@@ -14,7 +14,7 @@ export declare const ApprovalState: {
|
|
|
14
14
|
export type ApprovalState = (typeof ApprovalState)[keyof typeof ApprovalState];
|
|
15
15
|
export interface Approval {
|
|
16
16
|
userArn?: string;
|
|
17
|
-
approvalState?: ApprovalState
|
|
17
|
+
approvalState?: ApprovalState;
|
|
18
18
|
}
|
|
19
19
|
export interface OriginApprovalRuleTemplate {
|
|
20
20
|
approvalRuleTemplateId?: string;
|
|
@@ -83,7 +83,7 @@ export type OverrideStatus =
|
|
|
83
83
|
(typeof OverrideStatus)[keyof typeof OverrideStatus];
|
|
84
84
|
export interface ApprovalRuleOverriddenEventMetadata {
|
|
85
85
|
revisionId?: string;
|
|
86
|
-
overrideStatus?: OverrideStatus
|
|
86
|
+
overrideStatus?: OverrideStatus;
|
|
87
87
|
}
|
|
88
88
|
export interface ApprovalRuleTemplate {
|
|
89
89
|
approvalRuleTemplateId?: string;
|
|
@@ -147,7 +147,7 @@ export declare class ApprovalRuleTemplateNameRequiredException extends __BaseExc
|
|
|
147
147
|
}
|
|
148
148
|
export interface ApprovalStateChangedEventMetadata {
|
|
149
149
|
revisionId?: string;
|
|
150
|
-
approvalStatus?: ApprovalState
|
|
150
|
+
approvalStatus?: ApprovalState;
|
|
151
151
|
}
|
|
152
152
|
export declare class ApprovalStateRequiredException extends __BaseException {
|
|
153
153
|
readonly name: "ApprovalStateRequiredException";
|
|
@@ -316,12 +316,12 @@ export interface BatchDescribeMergeConflictsInput {
|
|
|
316
316
|
repositoryName: string | undefined;
|
|
317
317
|
destinationCommitSpecifier: string | undefined;
|
|
318
318
|
sourceCommitSpecifier: string | undefined;
|
|
319
|
-
mergeOption: MergeOptionTypeEnum |
|
|
319
|
+
mergeOption: MergeOptionTypeEnum | undefined;
|
|
320
320
|
maxMergeHunks?: number;
|
|
321
321
|
maxConflictFiles?: number;
|
|
322
322
|
filePaths?: string[];
|
|
323
|
-
conflictDetailLevel?: ConflictDetailLevelTypeEnum
|
|
324
|
-
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum
|
|
323
|
+
conflictDetailLevel?: ConflictDetailLevelTypeEnum;
|
|
324
|
+
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum;
|
|
325
325
|
nextToken?: string;
|
|
326
326
|
}
|
|
327
327
|
export declare const FileModeTypeEnum: {
|
|
@@ -332,9 +332,9 @@ export declare const FileModeTypeEnum: {
|
|
|
332
332
|
export type FileModeTypeEnum =
|
|
333
333
|
(typeof FileModeTypeEnum)[keyof typeof FileModeTypeEnum];
|
|
334
334
|
export interface FileModes {
|
|
335
|
-
source?: FileModeTypeEnum
|
|
336
|
-
destination?: FileModeTypeEnum
|
|
337
|
-
base?: FileModeTypeEnum
|
|
335
|
+
source?: FileModeTypeEnum;
|
|
336
|
+
destination?: FileModeTypeEnum;
|
|
337
|
+
base?: FileModeTypeEnum;
|
|
338
338
|
}
|
|
339
339
|
export interface FileSizes {
|
|
340
340
|
source?: number;
|
|
@@ -354,8 +354,8 @@ export declare const ChangeTypeEnum: {
|
|
|
354
354
|
export type ChangeTypeEnum =
|
|
355
355
|
(typeof ChangeTypeEnum)[keyof typeof ChangeTypeEnum];
|
|
356
356
|
export interface MergeOperations {
|
|
357
|
-
source?: ChangeTypeEnum
|
|
358
|
-
destination?: ChangeTypeEnum
|
|
357
|
+
source?: ChangeTypeEnum;
|
|
358
|
+
destination?: ChangeTypeEnum;
|
|
359
359
|
}
|
|
360
360
|
export declare const ObjectTypeEnum: {
|
|
361
361
|
readonly DIRECTORY: "DIRECTORY";
|
|
@@ -366,9 +366,9 @@ export declare const ObjectTypeEnum: {
|
|
|
366
366
|
export type ObjectTypeEnum =
|
|
367
367
|
(typeof ObjectTypeEnum)[keyof typeof ObjectTypeEnum];
|
|
368
368
|
export interface ObjectTypes {
|
|
369
|
-
source?: ObjectTypeEnum
|
|
370
|
-
destination?: ObjectTypeEnum
|
|
371
|
-
base?: ObjectTypeEnum
|
|
369
|
+
source?: ObjectTypeEnum;
|
|
370
|
+
destination?: ObjectTypeEnum;
|
|
371
|
+
base?: ObjectTypeEnum;
|
|
372
372
|
}
|
|
373
373
|
export interface ConflictMetadata {
|
|
374
374
|
filePath?: string;
|
|
@@ -774,13 +774,13 @@ export interface SourceFileSpecifier {
|
|
|
774
774
|
}
|
|
775
775
|
export interface PutFileEntry {
|
|
776
776
|
filePath: string | undefined;
|
|
777
|
-
fileMode?: FileModeTypeEnum
|
|
777
|
+
fileMode?: FileModeTypeEnum;
|
|
778
778
|
fileContent?: Uint8Array;
|
|
779
779
|
sourceFile?: SourceFileSpecifier;
|
|
780
780
|
}
|
|
781
781
|
export interface SetFileModeEntry {
|
|
782
782
|
filePath: string | undefined;
|
|
783
|
-
fileMode: FileModeTypeEnum |
|
|
783
|
+
fileMode: FileModeTypeEnum | undefined;
|
|
784
784
|
}
|
|
785
785
|
export interface CreateCommitInput {
|
|
786
786
|
repositoryName: string | undefined;
|
|
@@ -797,7 +797,7 @@ export interface CreateCommitInput {
|
|
|
797
797
|
export interface FileMetadata {
|
|
798
798
|
absolutePath?: string;
|
|
799
799
|
blobId?: string;
|
|
800
|
-
fileMode?: FileModeTypeEnum
|
|
800
|
+
fileMode?: FileModeTypeEnum;
|
|
801
801
|
}
|
|
802
802
|
export interface CreateCommitOutput {
|
|
803
803
|
commitId?: string;
|
|
@@ -1036,7 +1036,7 @@ export interface MergeMetadata {
|
|
|
1036
1036
|
isMerged?: boolean;
|
|
1037
1037
|
mergedBy?: string;
|
|
1038
1038
|
mergeCommitId?: string;
|
|
1039
|
-
mergeOption?: MergeOptionTypeEnum
|
|
1039
|
+
mergeOption?: MergeOptionTypeEnum;
|
|
1040
1040
|
}
|
|
1041
1041
|
export interface PullRequestTarget {
|
|
1042
1042
|
repositoryName?: string;
|
|
@@ -1053,7 +1053,7 @@ export interface PullRequest {
|
|
|
1053
1053
|
description?: string;
|
|
1054
1054
|
lastActivityDate?: Date;
|
|
1055
1055
|
creationDate?: Date;
|
|
1056
|
-
pullRequestStatus?: PullRequestStatusEnum
|
|
1056
|
+
pullRequestStatus?: PullRequestStatusEnum;
|
|
1057
1057
|
authorArn?: string;
|
|
1058
1058
|
pullRequestTargets?: PullRequestTarget[];
|
|
1059
1059
|
clientRequestToken?: string;
|
|
@@ -1343,9 +1343,9 @@ export type ReplacementTypeEnum =
|
|
|
1343
1343
|
(typeof ReplacementTypeEnum)[keyof typeof ReplacementTypeEnum];
|
|
1344
1344
|
export interface ReplaceContentEntry {
|
|
1345
1345
|
filePath: string | undefined;
|
|
1346
|
-
replacementType: ReplacementTypeEnum |
|
|
1346
|
+
replacementType: ReplacementTypeEnum | undefined;
|
|
1347
1347
|
content?: Uint8Array;
|
|
1348
|
-
fileMode?: FileModeTypeEnum
|
|
1348
|
+
fileMode?: FileModeTypeEnum;
|
|
1349
1349
|
}
|
|
1350
1350
|
export interface ConflictResolution {
|
|
1351
1351
|
replaceContents?: ReplaceContentEntry[];
|
|
@@ -1356,9 +1356,9 @@ export interface CreateUnreferencedMergeCommitInput {
|
|
|
1356
1356
|
repositoryName: string | undefined;
|
|
1357
1357
|
sourceCommitSpecifier: string | undefined;
|
|
1358
1358
|
destinationCommitSpecifier: string | undefined;
|
|
1359
|
-
mergeOption: MergeOptionTypeEnum |
|
|
1360
|
-
conflictDetailLevel?: ConflictDetailLevelTypeEnum
|
|
1361
|
-
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum
|
|
1359
|
+
mergeOption: MergeOptionTypeEnum | undefined;
|
|
1360
|
+
conflictDetailLevel?: ConflictDetailLevelTypeEnum;
|
|
1361
|
+
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum;
|
|
1362
1362
|
authorName?: string;
|
|
1363
1363
|
email?: string;
|
|
1364
1364
|
commitMessage?: string;
|
|
@@ -1548,11 +1548,11 @@ export interface DescribeMergeConflictsInput {
|
|
|
1548
1548
|
repositoryName: string | undefined;
|
|
1549
1549
|
destinationCommitSpecifier: string | undefined;
|
|
1550
1550
|
sourceCommitSpecifier: string | undefined;
|
|
1551
|
-
mergeOption: MergeOptionTypeEnum |
|
|
1551
|
+
mergeOption: MergeOptionTypeEnum | undefined;
|
|
1552
1552
|
maxMergeHunks?: number;
|
|
1553
1553
|
filePath: string | undefined;
|
|
1554
|
-
conflictDetailLevel?: ConflictDetailLevelTypeEnum
|
|
1555
|
-
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum
|
|
1554
|
+
conflictDetailLevel?: ConflictDetailLevelTypeEnum;
|
|
1555
|
+
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum;
|
|
1556
1556
|
nextToken?: string;
|
|
1557
1557
|
}
|
|
1558
1558
|
export interface DescribeMergeConflictsOutput {
|
|
@@ -1578,7 +1578,7 @@ export type PullRequestEventType =
|
|
|
1578
1578
|
(typeof PullRequestEventType)[keyof typeof PullRequestEventType];
|
|
1579
1579
|
export interface DescribePullRequestEventsInput {
|
|
1580
1580
|
pullRequestId: string | undefined;
|
|
1581
|
-
pullRequestEventType?: PullRequestEventType
|
|
1581
|
+
pullRequestEventType?: PullRequestEventType;
|
|
1582
1582
|
actorArn?: string;
|
|
1583
1583
|
nextToken?: string;
|
|
1584
1584
|
maxResults?: number;
|
|
@@ -1601,12 +1601,12 @@ export interface PullRequestSourceReferenceUpdatedEventMetadata {
|
|
|
1601
1601
|
mergeBase?: string;
|
|
1602
1602
|
}
|
|
1603
1603
|
export interface PullRequestStatusChangedEventMetadata {
|
|
1604
|
-
pullRequestStatus?: PullRequestStatusEnum
|
|
1604
|
+
pullRequestStatus?: PullRequestStatusEnum;
|
|
1605
1605
|
}
|
|
1606
1606
|
export interface PullRequestEvent {
|
|
1607
1607
|
pullRequestId?: string;
|
|
1608
1608
|
eventDate?: Date;
|
|
1609
|
-
pullRequestEventType?: PullRequestEventType
|
|
1609
|
+
pullRequestEventType?: PullRequestEventType;
|
|
1610
1610
|
actorArn?: string;
|
|
1611
1611
|
pullRequestCreatedEventMetadata?: PullRequestCreatedEventMetadata;
|
|
1612
1612
|
pullRequestStatusChangedEventMetadata?: PullRequestStatusChangedEventMetadata;
|
|
@@ -1768,7 +1768,7 @@ export type RelativeFileVersionEnum =
|
|
|
1768
1768
|
export interface Location {
|
|
1769
1769
|
filePath?: string;
|
|
1770
1770
|
filePosition?: number;
|
|
1771
|
-
relativeFileVersion?: RelativeFileVersionEnum
|
|
1771
|
+
relativeFileVersion?: RelativeFileVersionEnum;
|
|
1772
1772
|
}
|
|
1773
1773
|
export interface CommentsForComparedCommit {
|
|
1774
1774
|
repositoryName?: string;
|
|
@@ -1841,7 +1841,7 @@ export interface GetDifferencesInput {
|
|
|
1841
1841
|
export interface Difference {
|
|
1842
1842
|
beforeBlob?: BlobMetadata;
|
|
1843
1843
|
afterBlob?: BlobMetadata;
|
|
1844
|
-
changeType?: ChangeTypeEnum
|
|
1844
|
+
changeType?: ChangeTypeEnum;
|
|
1845
1845
|
}
|
|
1846
1846
|
export interface GetDifferencesOutput {
|
|
1847
1847
|
differences?: Difference[];
|
|
@@ -1863,7 +1863,7 @@ export interface GetFileOutput {
|
|
|
1863
1863
|
commitId: string | undefined;
|
|
1864
1864
|
blobId: string | undefined;
|
|
1865
1865
|
filePath: string | undefined;
|
|
1866
|
-
fileMode: FileModeTypeEnum |
|
|
1866
|
+
fileMode: FileModeTypeEnum | undefined;
|
|
1867
1867
|
fileSize: number | undefined;
|
|
1868
1868
|
fileContent: Uint8Array | undefined;
|
|
1869
1869
|
}
|
|
@@ -1883,7 +1883,7 @@ export interface File {
|
|
|
1883
1883
|
blobId?: string;
|
|
1884
1884
|
absolutePath?: string;
|
|
1885
1885
|
relativePath?: string;
|
|
1886
|
-
fileMode?: FileModeTypeEnum
|
|
1886
|
+
fileMode?: FileModeTypeEnum;
|
|
1887
1887
|
}
|
|
1888
1888
|
export interface Folder {
|
|
1889
1889
|
treeId?: string;
|
|
@@ -1899,7 +1899,7 @@ export interface SymbolicLink {
|
|
|
1899
1899
|
blobId?: string;
|
|
1900
1900
|
absolutePath?: string;
|
|
1901
1901
|
relativePath?: string;
|
|
1902
|
-
fileMode?: FileModeTypeEnum
|
|
1902
|
+
fileMode?: FileModeTypeEnum;
|
|
1903
1903
|
}
|
|
1904
1904
|
export interface GetFolderOutput {
|
|
1905
1905
|
commitId: string | undefined;
|
|
@@ -1914,8 +1914,8 @@ export interface GetMergeCommitInput {
|
|
|
1914
1914
|
repositoryName: string | undefined;
|
|
1915
1915
|
sourceCommitSpecifier: string | undefined;
|
|
1916
1916
|
destinationCommitSpecifier: string | undefined;
|
|
1917
|
-
conflictDetailLevel?: ConflictDetailLevelTypeEnum
|
|
1918
|
-
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum
|
|
1917
|
+
conflictDetailLevel?: ConflictDetailLevelTypeEnum;
|
|
1918
|
+
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum;
|
|
1919
1919
|
}
|
|
1920
1920
|
export interface GetMergeCommitOutput {
|
|
1921
1921
|
sourceCommitId?: string;
|
|
@@ -1927,10 +1927,10 @@ export interface GetMergeConflictsInput {
|
|
|
1927
1927
|
repositoryName: string | undefined;
|
|
1928
1928
|
destinationCommitSpecifier: string | undefined;
|
|
1929
1929
|
sourceCommitSpecifier: string | undefined;
|
|
1930
|
-
mergeOption: MergeOptionTypeEnum |
|
|
1931
|
-
conflictDetailLevel?: ConflictDetailLevelTypeEnum
|
|
1930
|
+
mergeOption: MergeOptionTypeEnum | undefined;
|
|
1931
|
+
conflictDetailLevel?: ConflictDetailLevelTypeEnum;
|
|
1932
1932
|
maxConflictFiles?: number;
|
|
1933
|
-
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum
|
|
1933
|
+
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum;
|
|
1934
1934
|
nextToken?: string;
|
|
1935
1935
|
}
|
|
1936
1936
|
export interface GetMergeConflictsOutput {
|
|
@@ -1965,11 +1965,11 @@ export interface GetMergeOptionsInput {
|
|
|
1965
1965
|
repositoryName: string | undefined;
|
|
1966
1966
|
sourceCommitSpecifier: string | undefined;
|
|
1967
1967
|
destinationCommitSpecifier: string | undefined;
|
|
1968
|
-
conflictDetailLevel?: ConflictDetailLevelTypeEnum
|
|
1969
|
-
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum
|
|
1968
|
+
conflictDetailLevel?: ConflictDetailLevelTypeEnum;
|
|
1969
|
+
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum;
|
|
1970
1970
|
}
|
|
1971
1971
|
export interface GetMergeOptionsOutput {
|
|
1972
|
-
mergeOptions:
|
|
1972
|
+
mergeOptions: MergeOptionTypeEnum[] | undefined;
|
|
1973
1973
|
sourceCommitId: string | undefined;
|
|
1974
1974
|
destinationCommitId: string | undefined;
|
|
1975
1975
|
baseCommitId: string | undefined;
|
|
@@ -2017,7 +2017,7 @@ export interface RepositoryTrigger {
|
|
|
2017
2017
|
destinationArn: string | undefined;
|
|
2018
2018
|
customData?: string;
|
|
2019
2019
|
branches?: string[];
|
|
2020
|
-
events:
|
|
2020
|
+
events: RepositoryTriggerEventEnum[] | undefined;
|
|
2021
2021
|
}
|
|
2022
2022
|
export interface GetRepositoryTriggersOutput {
|
|
2023
2023
|
configurationId?: string;
|
|
@@ -2085,7 +2085,7 @@ export declare class InvalidPullRequestStatusException extends __BaseException {
|
|
|
2085
2085
|
export interface ListPullRequestsInput {
|
|
2086
2086
|
repositoryName: string | undefined;
|
|
2087
2087
|
authorArn?: string;
|
|
2088
|
-
pullRequestStatus?: PullRequestStatusEnum
|
|
2088
|
+
pullRequestStatus?: PullRequestStatusEnum;
|
|
2089
2089
|
nextToken?: string;
|
|
2090
2090
|
maxResults?: number;
|
|
2091
2091
|
}
|
|
@@ -45,8 +45,8 @@ export declare const SortByEnum: {
|
|
|
45
45
|
export type SortByEnum = (typeof SortByEnum)[keyof typeof SortByEnum];
|
|
46
46
|
export interface ListRepositoriesInput {
|
|
47
47
|
nextToken?: string;
|
|
48
|
-
sortBy?: SortByEnum
|
|
49
|
-
order?: OrderEnum
|
|
48
|
+
sortBy?: SortByEnum;
|
|
49
|
+
order?: OrderEnum;
|
|
50
50
|
}
|
|
51
51
|
export interface RepositoryNameIdPair {
|
|
52
52
|
repositoryName?: string;
|
|
@@ -109,8 +109,8 @@ export interface MergeBranchesBySquashInput {
|
|
|
109
109
|
sourceCommitSpecifier: string | undefined;
|
|
110
110
|
destinationCommitSpecifier: string | undefined;
|
|
111
111
|
targetBranch?: string;
|
|
112
|
-
conflictDetailLevel?: ConflictDetailLevelTypeEnum
|
|
113
|
-
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum
|
|
112
|
+
conflictDetailLevel?: ConflictDetailLevelTypeEnum;
|
|
113
|
+
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum;
|
|
114
114
|
authorName?: string;
|
|
115
115
|
email?: string;
|
|
116
116
|
commitMessage?: string;
|
|
@@ -126,8 +126,8 @@ export interface MergeBranchesByThreeWayInput {
|
|
|
126
126
|
sourceCommitSpecifier: string | undefined;
|
|
127
127
|
destinationCommitSpecifier: string | undefined;
|
|
128
128
|
targetBranch?: string;
|
|
129
|
-
conflictDetailLevel?: ConflictDetailLevelTypeEnum
|
|
130
|
-
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum
|
|
129
|
+
conflictDetailLevel?: ConflictDetailLevelTypeEnum;
|
|
130
|
+
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum;
|
|
131
131
|
authorName?: string;
|
|
132
132
|
email?: string;
|
|
133
133
|
commitMessage?: string;
|
|
@@ -170,8 +170,8 @@ export interface MergePullRequestBySquashInput {
|
|
|
170
170
|
pullRequestId: string | undefined;
|
|
171
171
|
repositoryName: string | undefined;
|
|
172
172
|
sourceCommitId?: string;
|
|
173
|
-
conflictDetailLevel?: ConflictDetailLevelTypeEnum
|
|
174
|
-
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum
|
|
173
|
+
conflictDetailLevel?: ConflictDetailLevelTypeEnum;
|
|
174
|
+
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum;
|
|
175
175
|
commitMessage?: string;
|
|
176
176
|
authorName?: string;
|
|
177
177
|
email?: string;
|
|
@@ -185,8 +185,8 @@ export interface MergePullRequestByThreeWayInput {
|
|
|
185
185
|
pullRequestId: string | undefined;
|
|
186
186
|
repositoryName: string | undefined;
|
|
187
187
|
sourceCommitId?: string;
|
|
188
|
-
conflictDetailLevel?: ConflictDetailLevelTypeEnum
|
|
189
|
-
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum
|
|
188
|
+
conflictDetailLevel?: ConflictDetailLevelTypeEnum;
|
|
189
|
+
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum;
|
|
190
190
|
commitMessage?: string;
|
|
191
191
|
authorName?: string;
|
|
192
192
|
email?: string;
|
|
@@ -213,7 +213,7 @@ export declare class OverrideAlreadySetException extends __BaseException {
|
|
|
213
213
|
export interface OverridePullRequestApprovalRulesInput {
|
|
214
214
|
pullRequestId: string | undefined;
|
|
215
215
|
revisionId: string | undefined;
|
|
216
|
-
overrideStatus: OverrideStatus |
|
|
216
|
+
overrideStatus: OverrideStatus | undefined;
|
|
217
217
|
}
|
|
218
218
|
export declare class OverrideStatusRequiredException extends __BaseException {
|
|
219
219
|
readonly name: "OverrideStatusRequiredException";
|
|
@@ -350,7 +350,7 @@ export interface PutFileInput {
|
|
|
350
350
|
branchName: string | undefined;
|
|
351
351
|
fileContent: Uint8Array | undefined;
|
|
352
352
|
filePath: string | undefined;
|
|
353
|
-
fileMode?: FileModeTypeEnum
|
|
353
|
+
fileMode?: FileModeTypeEnum;
|
|
354
354
|
parentCommitId?: string;
|
|
355
355
|
commitMessage?: string;
|
|
356
356
|
name?: string;
|
|
@@ -638,7 +638,7 @@ export declare class PullRequestCannotBeApprovedByAuthorException extends __Base
|
|
|
638
638
|
export interface UpdatePullRequestApprovalStateInput {
|
|
639
639
|
pullRequestId: string | undefined;
|
|
640
640
|
revisionId: string | undefined;
|
|
641
|
-
approvalState: ApprovalState |
|
|
641
|
+
approvalState: ApprovalState | undefined;
|
|
642
642
|
}
|
|
643
643
|
export interface UpdatePullRequestDescriptionInput {
|
|
644
644
|
pullRequestId: string | undefined;
|
|
@@ -669,7 +669,7 @@ export declare class PullRequestStatusRequiredException extends __BaseException
|
|
|
669
669
|
}
|
|
670
670
|
export interface UpdatePullRequestStatusInput {
|
|
671
671
|
pullRequestId: string | undefined;
|
|
672
|
-
pullRequestStatus: PullRequestStatusEnum |
|
|
672
|
+
pullRequestStatus: PullRequestStatusEnum | undefined;
|
|
673
673
|
}
|
|
674
674
|
export interface UpdatePullRequestStatusOutput {
|
|
675
675
|
pullRequest: PullRequest | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codecommit",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codecommit Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|