File tree Expand file tree Collapse file tree 6 files changed +4
-89
lines changed Expand file tree Collapse file tree 6 files changed +4
-89
lines changed Original file line number Diff line number Diff line change
1
+ - Fix issue where v2 TS users couldn't compile their code because of unexported types. (#1033 )
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ import {
37
37
durationFromSeconds ,
38
38
serviceAccountFromShorthand ,
39
39
} from './common/encoding' ;
40
- import { ManifestEndpoint , ManifestRequiredAPI } from './common /manifest' ;
40
+ import { ManifestEndpoint , ManifestRequiredAPI } from './runtime /manifest' ;
41
41
42
42
/** @hidden */
43
43
const WILDCARD_REGEX = new RegExp ( '{[^/{}]*}' , 'g' ) ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ import {
33
33
convertInvoker ,
34
34
copyIfPresent ,
35
35
} from '../common/encoding' ;
36
- import { ManifestEndpoint , ManifestRequiredAPI } from '../common /manifest' ;
36
+ import { ManifestEndpoint , ManifestRequiredAPI } from '../runtime /manifest' ;
37
37
import {
38
38
CallableContext ,
39
39
FunctionsErrorCode ,
Original file line number Diff line number Diff line change 20
20
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
21
// SOFTWARE.
22
22
/**
23
- * @internal
24
23
* An definition of a function as appears in the Manifest.
25
24
*/
26
25
export interface ManifestEndpoint {
@@ -68,14 +67,12 @@ export interface ManifestEndpoint {
68
67
} ;
69
68
}
70
69
71
- /* @internal */
72
70
export interface ManifestRequiredAPI {
73
71
api : string ;
74
72
reason : string ;
75
73
}
76
74
77
75
/**
78
- * @internal
79
76
* An definition of a function deployment as appears in the Manifest.
80
77
**/
81
78
export interface ManifestStack {
Original file line number Diff line number Diff line change 1
- import { ManifestEndpoint } from '../../../common /manifest' ;
1
+ import { ManifestEndpoint } from '../../../runtime /manifest' ;
2
2
import { CloudEvent , CloudFunction } from '../../core' ;
3
3
import * as options from '../../options' ;
4
4
You can’t perform that action at this time.
0 commit comments