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 {
3737 durationFromSeconds ,
3838 serviceAccountFromShorthand ,
3939} from './common/encoding' ;
40- import { ManifestEndpoint , ManifestRequiredAPI } from './common /manifest' ;
40+ import { ManifestEndpoint , ManifestRequiredAPI } from './runtime /manifest' ;
4141
4242/** @hidden */
4343const 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 {
3333 convertInvoker ,
3434 copyIfPresent ,
3535} from '../common/encoding' ;
36- import { ManifestEndpoint , ManifestRequiredAPI } from '../common /manifest' ;
36+ import { ManifestEndpoint , ManifestRequiredAPI } from '../runtime /manifest' ;
3737import {
3838 CallableContext ,
3939 FunctionsErrorCode ,
Original file line number Diff line number Diff line change 2020// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121// SOFTWARE.
2222/**
23- * @internal
2423 * An definition of a function as appears in the Manifest.
2524 */
2625export interface ManifestEndpoint {
@@ -68,14 +67,12 @@ export interface ManifestEndpoint {
6867 } ;
6968}
7069
71- /* @internal */
7270export interface ManifestRequiredAPI {
7371 api : string ;
7472 reason : string ;
7573}
7674
7775/**
78- * @internal
7976 * An definition of a function deployment as appears in the Manifest.
8077 **/
8178export interface ManifestStack {
Original file line number Diff line number Diff line change 1- import { ManifestEndpoint } from '../../../common /manifest' ;
1+ import { ManifestEndpoint } from '../../../runtime /manifest' ;
22import { CloudEvent , CloudFunction } from '../../core' ;
33import * as options from '../../options' ;
44
You can’t perform that action at this time.
0 commit comments