@flit/cdk-pipeline 1.0.9 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +453 -104
- package/README.md +2 -183
- package/lib/artifact.js +1 -1
- package/lib/code-commit-source-segment.d.ts +34 -0
- package/lib/code-commit-source-segment.js +37 -0
- package/lib/git-hub-source-segment.d.ts +39 -0
- package/lib/git-hub-source-segment.js +38 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.js +4 -1
- package/lib/pipeline-segment.js +1 -1
- package/lib/pipeline.js +1 -1
- package/lib/publish-assets-action.js +1 -1
- package/lib/s3-source-segment.d.ts +36 -0
- package/lib/s3-source-segment.js +37 -0
- package/lib/segment.js +2 -2
- package/lib/source-segment.d.ts +1 -65
- package/lib/source-segment.js +4 -62
- package/lib/stack-segment.js +2 -2
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +12 -9
- package/src/artifact.ts +24 -0
- package/src/code-commit-source-segment.ts +62 -0
- package/src/git-hub-source-segment.ts +64 -0
- package/src/index.ts +10 -0
- package/src/pipeline-segment.ts +68 -0
- package/src/pipeline.ts +94 -0
- package/src/publish-assets-action.ts +126 -0
- package/src/s3-source-segment.ts +60 -0
- package/src/segment.ts +45 -0
- package/src/source-segment.ts +10 -0
- package/src/stack-segment.ts +195 -0
package/.jsii
CHANGED
|
@@ -4,11 +4,12 @@
|
|
|
4
4
|
"name": "Luis Vierroth",
|
|
5
5
|
"roles": [
|
|
6
6
|
"author"
|
|
7
|
-
]
|
|
7
|
+
],
|
|
8
|
+
"url": "https://github.com/p-mercury"
|
|
8
9
|
},
|
|
9
10
|
"dependencies": {
|
|
10
|
-
"aws-cdk-lib": "2.
|
|
11
|
-
"constructs": "10.1.
|
|
11
|
+
"aws-cdk-lib": "2.72.0",
|
|
12
|
+
"constructs": "10.1.296"
|
|
12
13
|
},
|
|
13
14
|
"dependencyClosure": {
|
|
14
15
|
"@aws-cdk/asset-awscli-v1": {
|
|
@@ -3434,7 +3435,7 @@
|
|
|
3434
3435
|
},
|
|
3435
3436
|
"name": "@flit/cdk-pipeline",
|
|
3436
3437
|
"readme": {
|
|
3437
|
-
"markdown": "
|
|
3438
|
+
"markdown": "This library exposes a highly customizable and extensible L3 pipeline construct intended as an alternative to the CDK native L3 [CodePipeline](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.pipelines.CodePipeline.html) construct which has some inherent limitations in capability and extensibility.\n\nThis library provides the tools and documentation to get your own pipeline up and running and build your own custom segments.\n\n# [Documentation](https://p-mercury.github.io/jumper-de/modules/_flit_cdk_pipeline)\n\n_**Warning:** This package is EXPERIMENTAL and might undergo breaking changes_\n"
|
|
3438
3439
|
},
|
|
3439
3440
|
"repository": {
|
|
3440
3441
|
"type": "git",
|
|
@@ -3579,8 +3580,8 @@
|
|
|
3579
3580
|
"stability": "stable"
|
|
3580
3581
|
},
|
|
3581
3582
|
"locationInModule": {
|
|
3582
|
-
"filename": "src/source-segment.ts",
|
|
3583
|
-
"line":
|
|
3583
|
+
"filename": "src/code-commit-source-segment.ts",
|
|
3584
|
+
"line": 25
|
|
3584
3585
|
},
|
|
3585
3586
|
"parameters": [
|
|
3586
3587
|
{
|
|
@@ -3593,8 +3594,8 @@
|
|
|
3593
3594
|
},
|
|
3594
3595
|
"kind": "class",
|
|
3595
3596
|
"locationInModule": {
|
|
3596
|
-
"filename": "src/source-segment.ts",
|
|
3597
|
-
"line":
|
|
3597
|
+
"filename": "src/code-commit-source-segment.ts",
|
|
3598
|
+
"line": 23
|
|
3598
3599
|
},
|
|
3599
3600
|
"methods": [
|
|
3600
3601
|
{
|
|
@@ -3602,8 +3603,8 @@
|
|
|
3602
3603
|
"stability": "stable"
|
|
3603
3604
|
},
|
|
3604
3605
|
"locationInModule": {
|
|
3605
|
-
"filename": "src/source-segment.ts",
|
|
3606
|
-
"line":
|
|
3606
|
+
"filename": "src/code-commit-source-segment.ts",
|
|
3607
|
+
"line": 29
|
|
3607
3608
|
},
|
|
3608
3609
|
"name": "construct",
|
|
3609
3610
|
"overrides": "@flit/cdk-pipeline.Segment",
|
|
@@ -3623,7 +3624,7 @@
|
|
|
3623
3624
|
}
|
|
3624
3625
|
],
|
|
3625
3626
|
"name": "CodeCommitSourceSegment",
|
|
3626
|
-
"symbolId": "src/source-segment:CodeCommitSourceSegment"
|
|
3627
|
+
"symbolId": "src/code-commit-source-segment:CodeCommitSourceSegment"
|
|
3627
3628
|
},
|
|
3628
3629
|
"@flit/cdk-pipeline.CodeCommitSourceSegmentConstructed": {
|
|
3629
3630
|
"assembly": "@flit/cdk-pipeline",
|
|
@@ -3637,8 +3638,8 @@
|
|
|
3637
3638
|
"stability": "stable"
|
|
3638
3639
|
},
|
|
3639
3640
|
"locationInModule": {
|
|
3640
|
-
"filename": "src/source-segment.ts",
|
|
3641
|
-
"line":
|
|
3641
|
+
"filename": "src/code-commit-source-segment.ts",
|
|
3642
|
+
"line": 53
|
|
3642
3643
|
},
|
|
3643
3644
|
"parameters": [
|
|
3644
3645
|
{
|
|
@@ -3663,8 +3664,8 @@
|
|
|
3663
3664
|
},
|
|
3664
3665
|
"kind": "class",
|
|
3665
3666
|
"locationInModule": {
|
|
3666
|
-
"filename": "src/source-segment.ts",
|
|
3667
|
-
"line":
|
|
3667
|
+
"filename": "src/code-commit-source-segment.ts",
|
|
3668
|
+
"line": 50
|
|
3668
3669
|
},
|
|
3669
3670
|
"name": "CodeCommitSourceSegmentConstructed",
|
|
3670
3671
|
"properties": [
|
|
@@ -3674,8 +3675,8 @@
|
|
|
3674
3675
|
},
|
|
3675
3676
|
"immutable": true,
|
|
3676
3677
|
"locationInModule": {
|
|
3677
|
-
"filename": "src/source-segment.ts",
|
|
3678
|
-
"line":
|
|
3678
|
+
"filename": "src/code-commit-source-segment.ts",
|
|
3679
|
+
"line": 52
|
|
3679
3680
|
},
|
|
3680
3681
|
"name": "actions",
|
|
3681
3682
|
"overrides": "@flit/cdk-pipeline.SegmentConstructed",
|
|
@@ -3694,8 +3695,8 @@
|
|
|
3694
3695
|
},
|
|
3695
3696
|
"immutable": true,
|
|
3696
3697
|
"locationInModule": {
|
|
3697
|
-
"filename": "src/source-segment.ts",
|
|
3698
|
-
"line":
|
|
3698
|
+
"filename": "src/code-commit-source-segment.ts",
|
|
3699
|
+
"line": 51
|
|
3699
3700
|
},
|
|
3700
3701
|
"name": "name",
|
|
3701
3702
|
"overrides": "@flit/cdk-pipeline.SegmentConstructed",
|
|
@@ -3704,7 +3705,7 @@
|
|
|
3704
3705
|
}
|
|
3705
3706
|
}
|
|
3706
3707
|
],
|
|
3707
|
-
"symbolId": "src/source-segment:CodeCommitSourceSegmentConstructed"
|
|
3708
|
+
"symbolId": "src/code-commit-source-segment:CodeCommitSourceSegmentConstructed"
|
|
3708
3709
|
},
|
|
3709
3710
|
"@flit/cdk-pipeline.CodeCommitSourceSegmentConstructedProps": {
|
|
3710
3711
|
"assembly": "@flit/cdk-pipeline",
|
|
@@ -3715,8 +3716,8 @@
|
|
|
3715
3716
|
"fqn": "@flit/cdk-pipeline.CodeCommitSourceSegmentConstructedProps",
|
|
3716
3717
|
"kind": "interface",
|
|
3717
3718
|
"locationInModule": {
|
|
3718
|
-
"filename": "src/source-segment.ts",
|
|
3719
|
-
"line":
|
|
3719
|
+
"filename": "src/code-commit-source-segment.ts",
|
|
3720
|
+
"line": 41
|
|
3720
3721
|
},
|
|
3721
3722
|
"name": "CodeCommitSourceSegmentConstructedProps",
|
|
3722
3723
|
"properties": [
|
|
@@ -3727,8 +3728,8 @@
|
|
|
3727
3728
|
},
|
|
3728
3729
|
"immutable": true,
|
|
3729
3730
|
"locationInModule": {
|
|
3730
|
-
"filename": "src/source-segment.ts",
|
|
3731
|
-
"line":
|
|
3731
|
+
"filename": "src/code-commit-source-segment.ts",
|
|
3732
|
+
"line": 43
|
|
3732
3733
|
},
|
|
3733
3734
|
"name": "actionName",
|
|
3734
3735
|
"type": {
|
|
@@ -3742,8 +3743,8 @@
|
|
|
3742
3743
|
},
|
|
3743
3744
|
"immutable": true,
|
|
3744
3745
|
"locationInModule": {
|
|
3745
|
-
"filename": "src/source-segment.ts",
|
|
3746
|
-
"line":
|
|
3746
|
+
"filename": "src/code-commit-source-segment.ts",
|
|
3747
|
+
"line": 42
|
|
3747
3748
|
},
|
|
3748
3749
|
"name": "output",
|
|
3749
3750
|
"type": {
|
|
@@ -3757,8 +3758,8 @@
|
|
|
3757
3758
|
},
|
|
3758
3759
|
"immutable": true,
|
|
3759
3760
|
"locationInModule": {
|
|
3760
|
-
"filename": "src/source-segment.ts",
|
|
3761
|
-
"line":
|
|
3761
|
+
"filename": "src/code-commit-source-segment.ts",
|
|
3762
|
+
"line": 44
|
|
3762
3763
|
},
|
|
3763
3764
|
"name": "repository",
|
|
3764
3765
|
"type": {
|
|
@@ -3772,8 +3773,8 @@
|
|
|
3772
3773
|
},
|
|
3773
3774
|
"immutable": true,
|
|
3774
3775
|
"locationInModule": {
|
|
3775
|
-
"filename": "src/source-segment.ts",
|
|
3776
|
-
"line":
|
|
3776
|
+
"filename": "src/code-commit-source-segment.ts",
|
|
3777
|
+
"line": 45
|
|
3777
3778
|
},
|
|
3778
3779
|
"name": "branch",
|
|
3779
3780
|
"optional": true,
|
|
@@ -3788,8 +3789,8 @@
|
|
|
3788
3789
|
},
|
|
3789
3790
|
"immutable": true,
|
|
3790
3791
|
"locationInModule": {
|
|
3791
|
-
"filename": "src/source-segment.ts",
|
|
3792
|
-
"line":
|
|
3792
|
+
"filename": "src/code-commit-source-segment.ts",
|
|
3793
|
+
"line": 46
|
|
3793
3794
|
},
|
|
3794
3795
|
"name": "trigger",
|
|
3795
3796
|
"optional": true,
|
|
@@ -3804,8 +3805,8 @@
|
|
|
3804
3805
|
},
|
|
3805
3806
|
"immutable": true,
|
|
3806
3807
|
"locationInModule": {
|
|
3807
|
-
"filename": "src/source-segment.ts",
|
|
3808
|
-
"line":
|
|
3808
|
+
"filename": "src/code-commit-source-segment.ts",
|
|
3809
|
+
"line": 47
|
|
3809
3810
|
},
|
|
3810
3811
|
"name": "variablesNamespace",
|
|
3811
3812
|
"optional": true,
|
|
@@ -3814,7 +3815,7 @@
|
|
|
3814
3815
|
}
|
|
3815
3816
|
}
|
|
3816
3817
|
],
|
|
3817
|
-
"symbolId": "src/source-segment:CodeCommitSourceSegmentConstructedProps"
|
|
3818
|
+
"symbolId": "src/code-commit-source-segment:CodeCommitSourceSegmentConstructedProps"
|
|
3818
3819
|
},
|
|
3819
3820
|
"@flit/cdk-pipeline.CodeCommitSourceSegmentProps": {
|
|
3820
3821
|
"assembly": "@flit/cdk-pipeline",
|
|
@@ -3828,8 +3829,8 @@
|
|
|
3828
3829
|
],
|
|
3829
3830
|
"kind": "interface",
|
|
3830
3831
|
"locationInModule": {
|
|
3831
|
-
"filename": "src/source-segment.ts",
|
|
3832
|
-
"line":
|
|
3832
|
+
"filename": "src/code-commit-source-segment.ts",
|
|
3833
|
+
"line": 13
|
|
3833
3834
|
},
|
|
3834
3835
|
"name": "CodeCommitSourceSegmentProps",
|
|
3835
3836
|
"properties": [
|
|
@@ -3840,8 +3841,8 @@
|
|
|
3840
3841
|
},
|
|
3841
3842
|
"immutable": true,
|
|
3842
3843
|
"locationInModule": {
|
|
3843
|
-
"filename": "src/source-segment.ts",
|
|
3844
|
-
"line":
|
|
3844
|
+
"filename": "src/code-commit-source-segment.ts",
|
|
3845
|
+
"line": 14
|
|
3845
3846
|
},
|
|
3846
3847
|
"name": "repository",
|
|
3847
3848
|
"type": {
|
|
@@ -3855,8 +3856,8 @@
|
|
|
3855
3856
|
},
|
|
3856
3857
|
"immutable": true,
|
|
3857
3858
|
"locationInModule": {
|
|
3858
|
-
"filename": "src/source-segment.ts",
|
|
3859
|
-
"line":
|
|
3859
|
+
"filename": "src/code-commit-source-segment.ts",
|
|
3860
|
+
"line": 15
|
|
3860
3861
|
},
|
|
3861
3862
|
"name": "branch",
|
|
3862
3863
|
"optional": true,
|
|
@@ -3871,8 +3872,8 @@
|
|
|
3871
3872
|
},
|
|
3872
3873
|
"immutable": true,
|
|
3873
3874
|
"locationInModule": {
|
|
3874
|
-
"filename": "src/source-segment.ts",
|
|
3875
|
-
"line":
|
|
3875
|
+
"filename": "src/code-commit-source-segment.ts",
|
|
3876
|
+
"line": 16
|
|
3876
3877
|
},
|
|
3877
3878
|
"name": "trigger",
|
|
3878
3879
|
"optional": true,
|
|
@@ -3887,8 +3888,8 @@
|
|
|
3887
3888
|
},
|
|
3888
3889
|
"immutable": true,
|
|
3889
3890
|
"locationInModule": {
|
|
3890
|
-
"filename": "src/source-segment.ts",
|
|
3891
|
-
"line":
|
|
3891
|
+
"filename": "src/code-commit-source-segment.ts",
|
|
3892
|
+
"line": 17
|
|
3892
3893
|
},
|
|
3893
3894
|
"name": "variablesNamespace",
|
|
3894
3895
|
"optional": true,
|
|
@@ -3897,7 +3898,7 @@
|
|
|
3897
3898
|
}
|
|
3898
3899
|
}
|
|
3899
3900
|
],
|
|
3900
|
-
"symbolId": "src/source-segment:CodeCommitSourceSegmentProps"
|
|
3901
|
+
"symbolId": "src/code-commit-source-segment:CodeCommitSourceSegmentProps"
|
|
3901
3902
|
},
|
|
3902
3903
|
"@flit/cdk-pipeline.GitHubSourceSegment": {
|
|
3903
3904
|
"assembly": "@flit/cdk-pipeline",
|
|
@@ -3914,8 +3915,8 @@
|
|
|
3914
3915
|
"stability": "stable"
|
|
3915
3916
|
},
|
|
3916
3917
|
"locationInModule": {
|
|
3917
|
-
"filename": "src/source-segment.ts",
|
|
3918
|
-
"line":
|
|
3918
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
3919
|
+
"line": 27
|
|
3919
3920
|
},
|
|
3920
3921
|
"parameters": [
|
|
3921
3922
|
{
|
|
@@ -3928,8 +3929,8 @@
|
|
|
3928
3929
|
},
|
|
3929
3930
|
"kind": "class",
|
|
3930
3931
|
"locationInModule": {
|
|
3931
|
-
"filename": "src/source-segment.ts",
|
|
3932
|
-
"line":
|
|
3932
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
3933
|
+
"line": 25
|
|
3933
3934
|
},
|
|
3934
3935
|
"methods": [
|
|
3935
3936
|
{
|
|
@@ -3937,8 +3938,8 @@
|
|
|
3937
3938
|
"stability": "stable"
|
|
3938
3939
|
},
|
|
3939
3940
|
"locationInModule": {
|
|
3940
|
-
"filename": "src/source-segment.ts",
|
|
3941
|
-
"line":
|
|
3941
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
3942
|
+
"line": 31
|
|
3942
3943
|
},
|
|
3943
3944
|
"name": "construct",
|
|
3944
3945
|
"overrides": "@flit/cdk-pipeline.Segment",
|
|
@@ -3958,7 +3959,7 @@
|
|
|
3958
3959
|
}
|
|
3959
3960
|
],
|
|
3960
3961
|
"name": "GitHubSourceSegment",
|
|
3961
|
-
"symbolId": "src/source-segment:GitHubSourceSegment"
|
|
3962
|
+
"symbolId": "src/git-hub-source-segment:GitHubSourceSegment"
|
|
3962
3963
|
},
|
|
3963
3964
|
"@flit/cdk-pipeline.GitHubSourceSegmentConstructed": {
|
|
3964
3965
|
"assembly": "@flit/cdk-pipeline",
|
|
@@ -3972,8 +3973,8 @@
|
|
|
3972
3973
|
"stability": "stable"
|
|
3973
3974
|
},
|
|
3974
3975
|
"locationInModule": {
|
|
3975
|
-
"filename": "src/source-segment.ts",
|
|
3976
|
-
"line":
|
|
3976
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
3977
|
+
"line": 55
|
|
3977
3978
|
},
|
|
3978
3979
|
"parameters": [
|
|
3979
3980
|
{
|
|
@@ -3998,8 +3999,8 @@
|
|
|
3998
3999
|
},
|
|
3999
4000
|
"kind": "class",
|
|
4000
4001
|
"locationInModule": {
|
|
4001
|
-
"filename": "src/source-segment.ts",
|
|
4002
|
-
"line":
|
|
4002
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
4003
|
+
"line": 52
|
|
4003
4004
|
},
|
|
4004
4005
|
"name": "GitHubSourceSegmentConstructed",
|
|
4005
4006
|
"properties": [
|
|
@@ -4009,8 +4010,8 @@
|
|
|
4009
4010
|
},
|
|
4010
4011
|
"immutable": true,
|
|
4011
4012
|
"locationInModule": {
|
|
4012
|
-
"filename": "src/source-segment.ts",
|
|
4013
|
-
"line":
|
|
4013
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
4014
|
+
"line": 54
|
|
4014
4015
|
},
|
|
4015
4016
|
"name": "actions",
|
|
4016
4017
|
"overrides": "@flit/cdk-pipeline.SegmentConstructed",
|
|
@@ -4029,8 +4030,8 @@
|
|
|
4029
4030
|
},
|
|
4030
4031
|
"immutable": true,
|
|
4031
4032
|
"locationInModule": {
|
|
4032
|
-
"filename": "src/source-segment.ts",
|
|
4033
|
-
"line":
|
|
4033
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
4034
|
+
"line": 53
|
|
4034
4035
|
},
|
|
4035
4036
|
"name": "name",
|
|
4036
4037
|
"overrides": "@flit/cdk-pipeline.SegmentConstructed",
|
|
@@ -4039,7 +4040,7 @@
|
|
|
4039
4040
|
}
|
|
4040
4041
|
}
|
|
4041
4042
|
],
|
|
4042
|
-
"symbolId": "src/source-segment:GitHubSourceSegmentConstructed"
|
|
4043
|
+
"symbolId": "src/git-hub-source-segment:GitHubSourceSegmentConstructed"
|
|
4043
4044
|
},
|
|
4044
4045
|
"@flit/cdk-pipeline.GitHubSourceSegmentConstructedProps": {
|
|
4045
4046
|
"assembly": "@flit/cdk-pipeline",
|
|
@@ -4050,8 +4051,8 @@
|
|
|
4050
4051
|
"fqn": "@flit/cdk-pipeline.GitHubSourceSegmentConstructedProps",
|
|
4051
4052
|
"kind": "interface",
|
|
4052
4053
|
"locationInModule": {
|
|
4053
|
-
"filename": "src/source-segment.ts",
|
|
4054
|
-
"line":
|
|
4054
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
4055
|
+
"line": 40
|
|
4055
4056
|
},
|
|
4056
4057
|
"name": "GitHubSourceSegmentConstructedProps",
|
|
4057
4058
|
"properties": [
|
|
@@ -4062,8 +4063,8 @@
|
|
|
4062
4063
|
},
|
|
4063
4064
|
"immutable": true,
|
|
4064
4065
|
"locationInModule": {
|
|
4065
|
-
"filename": "src/source-segment.ts",
|
|
4066
|
-
"line":
|
|
4066
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
4067
|
+
"line": 42
|
|
4067
4068
|
},
|
|
4068
4069
|
"name": "actionName",
|
|
4069
4070
|
"type": {
|
|
@@ -4077,8 +4078,8 @@
|
|
|
4077
4078
|
},
|
|
4078
4079
|
"immutable": true,
|
|
4079
4080
|
"locationInModule": {
|
|
4080
|
-
"filename": "src/source-segment.ts",
|
|
4081
|
-
"line":
|
|
4081
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
4082
|
+
"line": 43
|
|
4082
4083
|
},
|
|
4083
4084
|
"name": "oauthToken",
|
|
4084
4085
|
"type": {
|
|
@@ -4092,8 +4093,8 @@
|
|
|
4092
4093
|
},
|
|
4093
4094
|
"immutable": true,
|
|
4094
4095
|
"locationInModule": {
|
|
4095
|
-
"filename": "src/source-segment.ts",
|
|
4096
|
-
"line":
|
|
4096
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
4097
|
+
"line": 41
|
|
4097
4098
|
},
|
|
4098
4099
|
"name": "output",
|
|
4099
4100
|
"type": {
|
|
@@ -4107,8 +4108,8 @@
|
|
|
4107
4108
|
},
|
|
4108
4109
|
"immutable": true,
|
|
4109
4110
|
"locationInModule": {
|
|
4110
|
-
"filename": "src/source-segment.ts",
|
|
4111
|
-
"line":
|
|
4111
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
4112
|
+
"line": 44
|
|
4112
4113
|
},
|
|
4113
4114
|
"name": "owner",
|
|
4114
4115
|
"type": {
|
|
@@ -4122,8 +4123,8 @@
|
|
|
4122
4123
|
},
|
|
4123
4124
|
"immutable": true,
|
|
4124
4125
|
"locationInModule": {
|
|
4125
|
-
"filename": "src/source-segment.ts",
|
|
4126
|
-
"line":
|
|
4126
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
4127
|
+
"line": 45
|
|
4127
4128
|
},
|
|
4128
4129
|
"name": "repo",
|
|
4129
4130
|
"type": {
|
|
@@ -4137,8 +4138,8 @@
|
|
|
4137
4138
|
},
|
|
4138
4139
|
"immutable": true,
|
|
4139
4140
|
"locationInModule": {
|
|
4140
|
-
"filename": "src/source-segment.ts",
|
|
4141
|
-
"line":
|
|
4141
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
4142
|
+
"line": 46
|
|
4142
4143
|
},
|
|
4143
4144
|
"name": "branch",
|
|
4144
4145
|
"optional": true,
|
|
@@ -4153,8 +4154,8 @@
|
|
|
4153
4154
|
},
|
|
4154
4155
|
"immutable": true,
|
|
4155
4156
|
"locationInModule": {
|
|
4156
|
-
"filename": "src/source-segment.ts",
|
|
4157
|
-
"line":
|
|
4157
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
4158
|
+
"line": 47
|
|
4158
4159
|
},
|
|
4159
4160
|
"name": "runOrder",
|
|
4160
4161
|
"optional": true,
|
|
@@ -4169,8 +4170,8 @@
|
|
|
4169
4170
|
},
|
|
4170
4171
|
"immutable": true,
|
|
4171
4172
|
"locationInModule": {
|
|
4172
|
-
"filename": "src/source-segment.ts",
|
|
4173
|
-
"line":
|
|
4173
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
4174
|
+
"line": 48
|
|
4174
4175
|
},
|
|
4175
4176
|
"name": "trigger",
|
|
4176
4177
|
"optional": true,
|
|
@@ -4185,8 +4186,8 @@
|
|
|
4185
4186
|
},
|
|
4186
4187
|
"immutable": true,
|
|
4187
4188
|
"locationInModule": {
|
|
4188
|
-
"filename": "src/source-segment.ts",
|
|
4189
|
-
"line":
|
|
4189
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
4190
|
+
"line": 49
|
|
4190
4191
|
},
|
|
4191
4192
|
"name": "variablesNamespace",
|
|
4192
4193
|
"optional": true,
|
|
@@ -4195,7 +4196,7 @@
|
|
|
4195
4196
|
}
|
|
4196
4197
|
}
|
|
4197
4198
|
],
|
|
4198
|
-
"symbolId": "src/source-segment:GitHubSourceSegmentConstructedProps"
|
|
4199
|
+
"symbolId": "src/git-hub-source-segment:GitHubSourceSegmentConstructedProps"
|
|
4199
4200
|
},
|
|
4200
4201
|
"@flit/cdk-pipeline.GitHubSourceSegmentProps": {
|
|
4201
4202
|
"assembly": "@flit/cdk-pipeline",
|
|
@@ -4209,8 +4210,8 @@
|
|
|
4209
4210
|
],
|
|
4210
4211
|
"kind": "interface",
|
|
4211
4212
|
"locationInModule": {
|
|
4212
|
-
"filename": "src/source-segment.ts",
|
|
4213
|
-
"line":
|
|
4213
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
4214
|
+
"line": 13
|
|
4214
4215
|
},
|
|
4215
4216
|
"name": "GitHubSourceSegmentProps",
|
|
4216
4217
|
"properties": [
|
|
@@ -4221,8 +4222,8 @@
|
|
|
4221
4222
|
},
|
|
4222
4223
|
"immutable": true,
|
|
4223
4224
|
"locationInModule": {
|
|
4224
|
-
"filename": "src/source-segment.ts",
|
|
4225
|
-
"line":
|
|
4225
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
4226
|
+
"line": 14
|
|
4226
4227
|
},
|
|
4227
4228
|
"name": "oauthToken",
|
|
4228
4229
|
"type": {
|
|
@@ -4236,8 +4237,8 @@
|
|
|
4236
4237
|
},
|
|
4237
4238
|
"immutable": true,
|
|
4238
4239
|
"locationInModule": {
|
|
4239
|
-
"filename": "src/source-segment.ts",
|
|
4240
|
-
"line":
|
|
4240
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
4241
|
+
"line": 15
|
|
4241
4242
|
},
|
|
4242
4243
|
"name": "owner",
|
|
4243
4244
|
"type": {
|
|
@@ -4251,8 +4252,8 @@
|
|
|
4251
4252
|
},
|
|
4252
4253
|
"immutable": true,
|
|
4253
4254
|
"locationInModule": {
|
|
4254
|
-
"filename": "src/source-segment.ts",
|
|
4255
|
-
"line":
|
|
4255
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
4256
|
+
"line": 16
|
|
4256
4257
|
},
|
|
4257
4258
|
"name": "repository",
|
|
4258
4259
|
"type": {
|
|
@@ -4266,8 +4267,8 @@
|
|
|
4266
4267
|
},
|
|
4267
4268
|
"immutable": true,
|
|
4268
4269
|
"locationInModule": {
|
|
4269
|
-
"filename": "src/source-segment.ts",
|
|
4270
|
-
"line":
|
|
4270
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
4271
|
+
"line": 17
|
|
4271
4272
|
},
|
|
4272
4273
|
"name": "branch",
|
|
4273
4274
|
"optional": true,
|
|
@@ -4282,8 +4283,8 @@
|
|
|
4282
4283
|
},
|
|
4283
4284
|
"immutable": true,
|
|
4284
4285
|
"locationInModule": {
|
|
4285
|
-
"filename": "src/source-segment.ts",
|
|
4286
|
-
"line":
|
|
4286
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
4287
|
+
"line": 18
|
|
4287
4288
|
},
|
|
4288
4289
|
"name": "trigger",
|
|
4289
4290
|
"optional": true,
|
|
@@ -4298,8 +4299,8 @@
|
|
|
4298
4299
|
},
|
|
4299
4300
|
"immutable": true,
|
|
4300
4301
|
"locationInModule": {
|
|
4301
|
-
"filename": "src/source-segment.ts",
|
|
4302
|
-
"line":
|
|
4302
|
+
"filename": "src/git-hub-source-segment.ts",
|
|
4303
|
+
"line": 19
|
|
4303
4304
|
},
|
|
4304
4305
|
"name": "variablesNamespace",
|
|
4305
4306
|
"optional": true,
|
|
@@ -4308,7 +4309,7 @@
|
|
|
4308
4309
|
}
|
|
4309
4310
|
}
|
|
4310
4311
|
],
|
|
4311
|
-
"symbolId": "src/source-segment:GitHubSourceSegmentProps"
|
|
4312
|
+
"symbolId": "src/git-hub-source-segment:GitHubSourceSegmentProps"
|
|
4312
4313
|
},
|
|
4313
4314
|
"@flit/cdk-pipeline.Pipeline": {
|
|
4314
4315
|
"assembly": "@flit/cdk-pipeline",
|
|
@@ -5029,6 +5030,354 @@
|
|
|
5029
5030
|
],
|
|
5030
5031
|
"symbolId": "src/publish-assets-action:PublishAssetsActionProps"
|
|
5031
5032
|
},
|
|
5033
|
+
"@flit/cdk-pipeline.S3SourceSegment": {
|
|
5034
|
+
"assembly": "@flit/cdk-pipeline",
|
|
5035
|
+
"base": "@flit/cdk-pipeline.SourceSegment",
|
|
5036
|
+
"docs": {
|
|
5037
|
+
"custom": {
|
|
5038
|
+
"category": "Segments"
|
|
5039
|
+
},
|
|
5040
|
+
"stability": "stable"
|
|
5041
|
+
},
|
|
5042
|
+
"fqn": "@flit/cdk-pipeline.S3SourceSegment",
|
|
5043
|
+
"initializer": {
|
|
5044
|
+
"docs": {
|
|
5045
|
+
"stability": "stable"
|
|
5046
|
+
},
|
|
5047
|
+
"locationInModule": {
|
|
5048
|
+
"filename": "src/s3-source-segment.ts",
|
|
5049
|
+
"line": 27
|
|
5050
|
+
},
|
|
5051
|
+
"parameters": [
|
|
5052
|
+
{
|
|
5053
|
+
"name": "props",
|
|
5054
|
+
"type": {
|
|
5055
|
+
"fqn": "@flit/cdk-pipeline.S3SourceSegmentProps"
|
|
5056
|
+
}
|
|
5057
|
+
}
|
|
5058
|
+
]
|
|
5059
|
+
},
|
|
5060
|
+
"kind": "class",
|
|
5061
|
+
"locationInModule": {
|
|
5062
|
+
"filename": "src/s3-source-segment.ts",
|
|
5063
|
+
"line": 25
|
|
5064
|
+
},
|
|
5065
|
+
"methods": [
|
|
5066
|
+
{
|
|
5067
|
+
"docs": {
|
|
5068
|
+
"stability": "stable"
|
|
5069
|
+
},
|
|
5070
|
+
"locationInModule": {
|
|
5071
|
+
"filename": "src/s3-source-segment.ts",
|
|
5072
|
+
"line": 31
|
|
5073
|
+
},
|
|
5074
|
+
"name": "construct",
|
|
5075
|
+
"overrides": "@flit/cdk-pipeline.Segment",
|
|
5076
|
+
"parameters": [
|
|
5077
|
+
{
|
|
5078
|
+
"name": "scope",
|
|
5079
|
+
"type": {
|
|
5080
|
+
"fqn": "@flit/cdk-pipeline.Pipeline"
|
|
5081
|
+
}
|
|
5082
|
+
}
|
|
5083
|
+
],
|
|
5084
|
+
"returns": {
|
|
5085
|
+
"type": {
|
|
5086
|
+
"fqn": "@flit/cdk-pipeline.SegmentConstructed"
|
|
5087
|
+
}
|
|
5088
|
+
}
|
|
5089
|
+
}
|
|
5090
|
+
],
|
|
5091
|
+
"name": "S3SourceSegment",
|
|
5092
|
+
"symbolId": "src/s3-source-segment:S3SourceSegment"
|
|
5093
|
+
},
|
|
5094
|
+
"@flit/cdk-pipeline.S3SourceSegmentConstructed": {
|
|
5095
|
+
"assembly": "@flit/cdk-pipeline",
|
|
5096
|
+
"base": "@flit/cdk-pipeline.SegmentConstructed",
|
|
5097
|
+
"docs": {
|
|
5098
|
+
"stability": "stable"
|
|
5099
|
+
},
|
|
5100
|
+
"fqn": "@flit/cdk-pipeline.S3SourceSegmentConstructed",
|
|
5101
|
+
"initializer": {
|
|
5102
|
+
"docs": {
|
|
5103
|
+
"stability": "stable"
|
|
5104
|
+
},
|
|
5105
|
+
"locationInModule": {
|
|
5106
|
+
"filename": "src/s3-source-segment.ts",
|
|
5107
|
+
"line": 51
|
|
5108
|
+
},
|
|
5109
|
+
"parameters": [
|
|
5110
|
+
{
|
|
5111
|
+
"name": "scope",
|
|
5112
|
+
"type": {
|
|
5113
|
+
"fqn": "@flit/cdk-pipeline.Pipeline"
|
|
5114
|
+
}
|
|
5115
|
+
},
|
|
5116
|
+
{
|
|
5117
|
+
"name": "id",
|
|
5118
|
+
"type": {
|
|
5119
|
+
"primitive": "string"
|
|
5120
|
+
}
|
|
5121
|
+
},
|
|
5122
|
+
{
|
|
5123
|
+
"name": "props",
|
|
5124
|
+
"type": {
|
|
5125
|
+
"fqn": "@flit/cdk-pipeline.S3SourceSegmentConstructedProps"
|
|
5126
|
+
}
|
|
5127
|
+
}
|
|
5128
|
+
]
|
|
5129
|
+
},
|
|
5130
|
+
"kind": "class",
|
|
5131
|
+
"locationInModule": {
|
|
5132
|
+
"filename": "src/s3-source-segment.ts",
|
|
5133
|
+
"line": 48
|
|
5134
|
+
},
|
|
5135
|
+
"name": "S3SourceSegmentConstructed",
|
|
5136
|
+
"properties": [
|
|
5137
|
+
{
|
|
5138
|
+
"docs": {
|
|
5139
|
+
"stability": "stable"
|
|
5140
|
+
},
|
|
5141
|
+
"immutable": true,
|
|
5142
|
+
"locationInModule": {
|
|
5143
|
+
"filename": "src/s3-source-segment.ts",
|
|
5144
|
+
"line": 50
|
|
5145
|
+
},
|
|
5146
|
+
"name": "actions",
|
|
5147
|
+
"overrides": "@flit/cdk-pipeline.SegmentConstructed",
|
|
5148
|
+
"type": {
|
|
5149
|
+
"collection": {
|
|
5150
|
+
"elementtype": {
|
|
5151
|
+
"fqn": "aws-cdk-lib.aws_codepipeline.IAction"
|
|
5152
|
+
},
|
|
5153
|
+
"kind": "array"
|
|
5154
|
+
}
|
|
5155
|
+
}
|
|
5156
|
+
},
|
|
5157
|
+
{
|
|
5158
|
+
"docs": {
|
|
5159
|
+
"stability": "stable"
|
|
5160
|
+
},
|
|
5161
|
+
"immutable": true,
|
|
5162
|
+
"locationInModule": {
|
|
5163
|
+
"filename": "src/s3-source-segment.ts",
|
|
5164
|
+
"line": 49
|
|
5165
|
+
},
|
|
5166
|
+
"name": "name",
|
|
5167
|
+
"overrides": "@flit/cdk-pipeline.SegmentConstructed",
|
|
5168
|
+
"type": {
|
|
5169
|
+
"primitive": "string"
|
|
5170
|
+
}
|
|
5171
|
+
}
|
|
5172
|
+
],
|
|
5173
|
+
"symbolId": "src/s3-source-segment:S3SourceSegmentConstructed"
|
|
5174
|
+
},
|
|
5175
|
+
"@flit/cdk-pipeline.S3SourceSegmentConstructedProps": {
|
|
5176
|
+
"assembly": "@flit/cdk-pipeline",
|
|
5177
|
+
"datatype": true,
|
|
5178
|
+
"docs": {
|
|
5179
|
+
"stability": "stable"
|
|
5180
|
+
},
|
|
5181
|
+
"fqn": "@flit/cdk-pipeline.S3SourceSegmentConstructedProps",
|
|
5182
|
+
"kind": "interface",
|
|
5183
|
+
"locationInModule": {
|
|
5184
|
+
"filename": "src/s3-source-segment.ts",
|
|
5185
|
+
"line": 39
|
|
5186
|
+
},
|
|
5187
|
+
"name": "S3SourceSegmentConstructedProps",
|
|
5188
|
+
"properties": [
|
|
5189
|
+
{
|
|
5190
|
+
"abstract": true,
|
|
5191
|
+
"docs": {
|
|
5192
|
+
"stability": "stable"
|
|
5193
|
+
},
|
|
5194
|
+
"immutable": true,
|
|
5195
|
+
"locationInModule": {
|
|
5196
|
+
"filename": "src/s3-source-segment.ts",
|
|
5197
|
+
"line": 41
|
|
5198
|
+
},
|
|
5199
|
+
"name": "actionName",
|
|
5200
|
+
"type": {
|
|
5201
|
+
"primitive": "string"
|
|
5202
|
+
}
|
|
5203
|
+
},
|
|
5204
|
+
{
|
|
5205
|
+
"abstract": true,
|
|
5206
|
+
"docs": {
|
|
5207
|
+
"stability": "stable"
|
|
5208
|
+
},
|
|
5209
|
+
"immutable": true,
|
|
5210
|
+
"locationInModule": {
|
|
5211
|
+
"filename": "src/s3-source-segment.ts",
|
|
5212
|
+
"line": 42
|
|
5213
|
+
},
|
|
5214
|
+
"name": "bucket",
|
|
5215
|
+
"type": {
|
|
5216
|
+
"fqn": "aws-cdk-lib.aws_s3.IBucket"
|
|
5217
|
+
}
|
|
5218
|
+
},
|
|
5219
|
+
{
|
|
5220
|
+
"abstract": true,
|
|
5221
|
+
"docs": {
|
|
5222
|
+
"stability": "stable"
|
|
5223
|
+
},
|
|
5224
|
+
"immutable": true,
|
|
5225
|
+
"locationInModule": {
|
|
5226
|
+
"filename": "src/s3-source-segment.ts",
|
|
5227
|
+
"line": 43
|
|
5228
|
+
},
|
|
5229
|
+
"name": "bucketKey",
|
|
5230
|
+
"type": {
|
|
5231
|
+
"primitive": "string"
|
|
5232
|
+
}
|
|
5233
|
+
},
|
|
5234
|
+
{
|
|
5235
|
+
"abstract": true,
|
|
5236
|
+
"docs": {
|
|
5237
|
+
"stability": "stable"
|
|
5238
|
+
},
|
|
5239
|
+
"immutable": true,
|
|
5240
|
+
"locationInModule": {
|
|
5241
|
+
"filename": "src/s3-source-segment.ts",
|
|
5242
|
+
"line": 40
|
|
5243
|
+
},
|
|
5244
|
+
"name": "output",
|
|
5245
|
+
"type": {
|
|
5246
|
+
"fqn": "@flit/cdk-pipeline.Artifact"
|
|
5247
|
+
}
|
|
5248
|
+
},
|
|
5249
|
+
{
|
|
5250
|
+
"abstract": true,
|
|
5251
|
+
"docs": {
|
|
5252
|
+
"stability": "stable"
|
|
5253
|
+
},
|
|
5254
|
+
"immutable": true,
|
|
5255
|
+
"locationInModule": {
|
|
5256
|
+
"filename": "src/s3-source-segment.ts",
|
|
5257
|
+
"line": 44
|
|
5258
|
+
},
|
|
5259
|
+
"name": "trigger",
|
|
5260
|
+
"optional": true,
|
|
5261
|
+
"type": {
|
|
5262
|
+
"fqn": "aws-cdk-lib.aws_codepipeline_actions.S3Trigger"
|
|
5263
|
+
}
|
|
5264
|
+
},
|
|
5265
|
+
{
|
|
5266
|
+
"abstract": true,
|
|
5267
|
+
"docs": {
|
|
5268
|
+
"stability": "stable"
|
|
5269
|
+
},
|
|
5270
|
+
"immutable": true,
|
|
5271
|
+
"locationInModule": {
|
|
5272
|
+
"filename": "src/s3-source-segment.ts",
|
|
5273
|
+
"line": 45
|
|
5274
|
+
},
|
|
5275
|
+
"name": "variablesNamespace",
|
|
5276
|
+
"optional": true,
|
|
5277
|
+
"type": {
|
|
5278
|
+
"primitive": "string"
|
|
5279
|
+
}
|
|
5280
|
+
}
|
|
5281
|
+
],
|
|
5282
|
+
"symbolId": "src/s3-source-segment:S3SourceSegmentConstructedProps"
|
|
5283
|
+
},
|
|
5284
|
+
"@flit/cdk-pipeline.S3SourceSegmentProps": {
|
|
5285
|
+
"assembly": "@flit/cdk-pipeline",
|
|
5286
|
+
"datatype": true,
|
|
5287
|
+
"docs": {
|
|
5288
|
+
"stability": "stable"
|
|
5289
|
+
},
|
|
5290
|
+
"fqn": "@flit/cdk-pipeline.S3SourceSegmentProps",
|
|
5291
|
+
"interfaces": [
|
|
5292
|
+
"@flit/cdk-pipeline.SourceSegmentProps"
|
|
5293
|
+
],
|
|
5294
|
+
"kind": "interface",
|
|
5295
|
+
"locationInModule": {
|
|
5296
|
+
"filename": "src/s3-source-segment.ts",
|
|
5297
|
+
"line": 14
|
|
5298
|
+
},
|
|
5299
|
+
"name": "S3SourceSegmentProps",
|
|
5300
|
+
"properties": [
|
|
5301
|
+
{
|
|
5302
|
+
"abstract": true,
|
|
5303
|
+
"docs": {
|
|
5304
|
+
"stability": "stable"
|
|
5305
|
+
},
|
|
5306
|
+
"immutable": true,
|
|
5307
|
+
"locationInModule": {
|
|
5308
|
+
"filename": "src/s3-source-segment.ts",
|
|
5309
|
+
"line": 16
|
|
5310
|
+
},
|
|
5311
|
+
"name": "bucket",
|
|
5312
|
+
"type": {
|
|
5313
|
+
"fqn": "aws-cdk-lib.aws_s3.IBucket"
|
|
5314
|
+
}
|
|
5315
|
+
},
|
|
5316
|
+
{
|
|
5317
|
+
"abstract": true,
|
|
5318
|
+
"docs": {
|
|
5319
|
+
"stability": "stable"
|
|
5320
|
+
},
|
|
5321
|
+
"immutable": true,
|
|
5322
|
+
"locationInModule": {
|
|
5323
|
+
"filename": "src/s3-source-segment.ts",
|
|
5324
|
+
"line": 17
|
|
5325
|
+
},
|
|
5326
|
+
"name": "bucketKey",
|
|
5327
|
+
"type": {
|
|
5328
|
+
"primitive": "string"
|
|
5329
|
+
}
|
|
5330
|
+
},
|
|
5331
|
+
{
|
|
5332
|
+
"abstract": true,
|
|
5333
|
+
"docs": {
|
|
5334
|
+
"stability": "stable"
|
|
5335
|
+
},
|
|
5336
|
+
"immutable": true,
|
|
5337
|
+
"locationInModule": {
|
|
5338
|
+
"filename": "src/s3-source-segment.ts",
|
|
5339
|
+
"line": 15
|
|
5340
|
+
},
|
|
5341
|
+
"name": "oauthToken",
|
|
5342
|
+
"type": {
|
|
5343
|
+
"fqn": "aws-cdk-lib.SecretValue"
|
|
5344
|
+
}
|
|
5345
|
+
},
|
|
5346
|
+
{
|
|
5347
|
+
"abstract": true,
|
|
5348
|
+
"docs": {
|
|
5349
|
+
"stability": "stable"
|
|
5350
|
+
},
|
|
5351
|
+
"immutable": true,
|
|
5352
|
+
"locationInModule": {
|
|
5353
|
+
"filename": "src/s3-source-segment.ts",
|
|
5354
|
+
"line": 18
|
|
5355
|
+
},
|
|
5356
|
+
"name": "trigger",
|
|
5357
|
+
"optional": true,
|
|
5358
|
+
"type": {
|
|
5359
|
+
"fqn": "aws-cdk-lib.aws_codepipeline_actions.S3Trigger"
|
|
5360
|
+
}
|
|
5361
|
+
},
|
|
5362
|
+
{
|
|
5363
|
+
"abstract": true,
|
|
5364
|
+
"docs": {
|
|
5365
|
+
"stability": "stable"
|
|
5366
|
+
},
|
|
5367
|
+
"immutable": true,
|
|
5368
|
+
"locationInModule": {
|
|
5369
|
+
"filename": "src/s3-source-segment.ts",
|
|
5370
|
+
"line": 19
|
|
5371
|
+
},
|
|
5372
|
+
"name": "variablesNamespace",
|
|
5373
|
+
"optional": true,
|
|
5374
|
+
"type": {
|
|
5375
|
+
"primitive": "string"
|
|
5376
|
+
}
|
|
5377
|
+
}
|
|
5378
|
+
],
|
|
5379
|
+
"symbolId": "src/s3-source-segment:S3SourceSegmentProps"
|
|
5380
|
+
},
|
|
5032
5381
|
"@flit/cdk-pipeline.Segment": {
|
|
5033
5382
|
"abstract": true,
|
|
5034
5383
|
"assembly": "@flit/cdk-pipeline",
|
|
@@ -5362,7 +5711,7 @@
|
|
|
5362
5711
|
"kind": "class",
|
|
5363
5712
|
"locationInModule": {
|
|
5364
5713
|
"filename": "src/source-segment.ts",
|
|
5365
|
-
"line":
|
|
5714
|
+
"line": 8
|
|
5366
5715
|
},
|
|
5367
5716
|
"name": "SourceSegment",
|
|
5368
5717
|
"properties": [
|
|
@@ -5373,7 +5722,7 @@
|
|
|
5373
5722
|
"immutable": true,
|
|
5374
5723
|
"locationInModule": {
|
|
5375
5724
|
"filename": "src/source-segment.ts",
|
|
5376
|
-
"line":
|
|
5725
|
+
"line": 9
|
|
5377
5726
|
},
|
|
5378
5727
|
"name": "isSource",
|
|
5379
5728
|
"overrides": "@flit/cdk-pipeline.Segment",
|
|
@@ -5394,7 +5743,7 @@
|
|
|
5394
5743
|
"kind": "interface",
|
|
5395
5744
|
"locationInModule": {
|
|
5396
5745
|
"filename": "src/source-segment.ts",
|
|
5397
|
-
"line":
|
|
5746
|
+
"line": 4
|
|
5398
5747
|
},
|
|
5399
5748
|
"name": "SourceSegmentProps",
|
|
5400
5749
|
"properties": [
|
|
@@ -5406,7 +5755,7 @@
|
|
|
5406
5755
|
"immutable": true,
|
|
5407
5756
|
"locationInModule": {
|
|
5408
5757
|
"filename": "src/source-segment.ts",
|
|
5409
|
-
"line":
|
|
5758
|
+
"line": 5
|
|
5410
5759
|
},
|
|
5411
5760
|
"name": "output",
|
|
5412
5761
|
"type": {
|
|
@@ -5979,6 +6328,6 @@
|
|
|
5979
6328
|
"symbolId": "src/stack-segment:StackSegmentProps"
|
|
5980
6329
|
}
|
|
5981
6330
|
},
|
|
5982
|
-
"version": "1.0.
|
|
5983
|
-
"fingerprint": "
|
|
6331
|
+
"version": "1.0.11",
|
|
6332
|
+
"fingerprint": "f1FkfxqAORjrXJPiiIIUAc1Od6ePFq75KdOBw4bvk4Q="
|
|
5984
6333
|
}
|