File tree Expand file tree Collapse file tree 2 files changed +87
-0
lines changed Expand file tree Collapse file tree 2 files changed +87
-0
lines changed Original file line number Diff line number Diff line change 1780
1780
"name" : " Request_2" ,
1781
1781
"preserveMemberOrder" : false ,
1782
1782
"members" : [
1783
+ {
1784
+ "kind" : " PropertySignature" ,
1785
+ "canonicalReference" : " @google-cloud/functions-framework!Request_2#executionId:member" ,
1786
+ "docComment" : " " ,
1787
+ "excerptTokens" : [
1788
+ {
1789
+ "kind" : " Content" ,
1790
+ "text" : " executionId?: "
1791
+ },
1792
+ {
1793
+ "kind" : " Content" ,
1794
+ "text" : " string"
1795
+ },
1796
+ {
1797
+ "kind" : " Content" ,
1798
+ "text" : " ;"
1799
+ }
1800
+ ],
1801
+ "isReadonly" : false ,
1802
+ "isOptional" : true ,
1803
+ "releaseTag" : " Public" ,
1804
+ "name" : " executionId" ,
1805
+ "propertyTypeTokenRange" : {
1806
+ "startIndex" : 1 ,
1807
+ "endIndex" : 2
1808
+ }
1809
+ },
1783
1810
{
1784
1811
"kind" : " PropertySignature" ,
1785
1812
"canonicalReference" : " @google-cloud/functions-framework!Request_2#rawBody:member" ,
1807
1834
"startIndex" : 1 ,
1808
1835
"endIndex" : 2
1809
1836
}
1837
+ },
1838
+ {
1839
+ "kind" : " PropertySignature" ,
1840
+ "canonicalReference" : " @google-cloud/functions-framework!Request_2#spanId:member" ,
1841
+ "docComment" : " " ,
1842
+ "excerptTokens" : [
1843
+ {
1844
+ "kind" : " Content" ,
1845
+ "text" : " spanId?: "
1846
+ },
1847
+ {
1848
+ "kind" : " Content" ,
1849
+ "text" : " string"
1850
+ },
1851
+ {
1852
+ "kind" : " Content" ,
1853
+ "text" : " ;"
1854
+ }
1855
+ ],
1856
+ "isReadonly" : false ,
1857
+ "isOptional" : true ,
1858
+ "releaseTag" : " Public" ,
1859
+ "name" : " spanId" ,
1860
+ "propertyTypeTokenRange" : {
1861
+ "startIndex" : 1 ,
1862
+ "endIndex" : 2
1863
+ }
1864
+ },
1865
+ {
1866
+ "kind" : " PropertySignature" ,
1867
+ "canonicalReference" : " @google-cloud/functions-framework!Request_2#traceId:member" ,
1868
+ "docComment" : " " ,
1869
+ "excerptTokens" : [
1870
+ {
1871
+ "kind" : " Content" ,
1872
+ "text" : " traceId?: "
1873
+ },
1874
+ {
1875
+ "kind" : " Content" ,
1876
+ "text" : " string"
1877
+ },
1878
+ {
1879
+ "kind" : " Content" ,
1880
+ "text" : " ;"
1881
+ }
1882
+ ],
1883
+ "isReadonly" : false ,
1884
+ "isOptional" : true ,
1885
+ "releaseTag" : " Public" ,
1886
+ "name" : " traceId" ,
1887
+ "propertyTypeTokenRange" : {
1888
+ "startIndex" : 1 ,
1889
+ "endIndex" : 2
1890
+ }
1810
1891
}
1811
1892
],
1812
1893
"extendsTokenRanges" : [
Original file line number Diff line number Diff line change @@ -115,7 +115,13 @@ export interface LegacyEvent {
115
115
116
116
// @public (undocumented)
117
117
interface Request_2 extends Request_3 {
118
+ // (undocumented)
119
+ executionId? : string ;
118
120
rawBody? : Buffer ;
121
+ // (undocumented)
122
+ spanId? : string ;
123
+ // (undocumented)
124
+ traceId? : string ;
119
125
}
120
126
export { Request_2 as Request }
121
127
You can’t perform that action at this time.
0 commit comments