File tree 5 files changed +8
-18
lines changed 5 files changed +8
-18
lines changed Original file line number Diff line number Diff line change @@ -426,17 +426,3 @@ export class BooleanParam extends Param<boolean> {
426
426
return new TernaryExpression ( this , ifTrue , ifFalse ) ;
427
427
}
428
428
}
429
-
430
- /** @hidden */
431
- export class ListParam extends Param < string [ ] > {
432
- static type : ParamValueType = "list" ;
433
-
434
- /** @internal */
435
- runtimeValue ( ) : string [ ] {
436
- throw new Error ( "Not implemented" ) ;
437
- }
438
-
439
- toSpec ( ) : WireParamSpec < string [ ] > {
440
- throw new Error ( "Not implemented" ) ;
441
- }
442
- }
Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ import { WireParamSpec } from "../params/types";
26
26
27
27
/**
28
28
* An definition of a function as appears in the Manifest.
29
+ *
30
+ * @internal
29
31
*/
30
32
export interface ManifestEndpoint {
31
33
entryPoint ?: string ;
@@ -100,13 +102,15 @@ export interface ManifestEndpoint {
100
102
} ;
101
103
}
102
104
105
+ /** @internal */
103
106
export interface ManifestRequiredAPI {
104
107
api : string ;
105
108
reason : string ;
106
109
}
107
110
108
111
/**
109
112
* An definition of a function deployment as appears in the Manifest.
113
+ * @internal
110
114
*/
111
115
export interface ManifestStack {
112
116
specVersion : "v1alpha1" ;
Original file line number Diff line number Diff line change @@ -65,10 +65,10 @@ export interface TaskQueueOptions {
65
65
export interface TaskQueueFunction {
66
66
( req : Request , res : express . Response ) : Promise < void > ;
67
67
68
- /** @alpha */
68
+ /** @internal */
69
69
__endpoint : ManifestEndpoint ;
70
70
71
- /** @alpha */
71
+ /** @internal */
72
72
__requiredAPIs ?: ManifestRequiredAPI [ ] ;
73
73
74
74
/**
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ export interface CloudEvent<T> {
70
70
export interface CloudFunction < EventType extends CloudEvent < unknown > > {
71
71
( raw : CloudEvent < unknown > ) : any | Promise < any > ;
72
72
73
- /** @alpha */
73
+ /** @internal */
74
74
__endpoint : ManifestEndpoint ;
75
75
76
76
/**
Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ export type HttpsFunction = ((
173
173
/** An Express response object, for this function to respond to callers. */
174
174
res : express . Response
175
175
) => void | Promise < void > ) & {
176
- /** @alpha */
176
+ /** @internal */
177
177
__endpoint : ManifestEndpoint ;
178
178
} ;
179
179
You can’t perform that action at this time.
0 commit comments