File tree 11 files changed +37
-37
lines changed
11 files changed +37
-37
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @microsoft/kiota-abstractions" ,
3
- "version" : " 1.0.0-preview.49 " ,
3
+ "version" : " 1.0.0-preview.50 " ,
4
4
"description" : " Core abstractions for kiota generated libraries in TypeScript and JavaScript" ,
5
5
"main" : " dist/cjs/src/index.js" ,
6
6
"module" : " dist/es/src/index.js" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @microsoft/kiota-authentication-azure" ,
3
- "version" : " 1.0.0-preview.44 " ,
3
+ "version" : " 1.0.0-preview.45 " ,
4
4
"description" : " Authentication provider for Kiota using Azure Identity" ,
5
5
"main" : " dist/cjs/src/index.js" ,
6
6
"module" : " dist/es/src/index.js" ,
30
30
"homepage" : " https://github.com/microsoft/kiota-typescript#readme" ,
31
31
"dependencies" : {
32
32
"@azure/core-auth" : " ^1.5.0" ,
33
- "@microsoft/kiota-abstractions" : " ^1.0.0-preview.49 " ,
33
+ "@microsoft/kiota-abstractions" : " ^1.0.0-preview.50 " ,
34
34
"@opentelemetry/api" : " ^1.7.0" ,
35
35
"tslib" : " ^2.6.2"
36
36
},
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @microsoft/kiota-authentication-spfx" ,
3
- "version" : " 1.0.0-preview.39 " ,
3
+ "version" : " 1.0.0-preview.40 " ,
4
4
"description" : " Authentication provider for using Kiota in SPFx solutions" ,
5
5
"main" : " dist/cjs/src/index.js" ,
6
6
"module" : " dist/es/src/index.js" ,
39
39
},
40
40
"homepage" : " https://github.com/microsoft/kiota-typescript#readme" ,
41
41
"dependencies" : {
42
- "@microsoft/kiota-abstractions" : " ^1.0.0-preview.49 " ,
42
+ "@microsoft/kiota-abstractions" : " ^1.0.0-preview.50 " ,
43
43
"@microsoft/sp-http" : " ^1.15.2" ,
44
44
"@opentelemetry/api" : " ^1.7.0" ,
45
45
"tslib" : " ^2.6.2"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @microsoft/kiota-http-fetchlibrary" ,
3
- "version" : " 1.0.0-preview.48 " ,
3
+ "version" : " 1.0.0-preview.49 " ,
4
4
"description" : " Kiota request adapter implementation with fetch" ,
5
5
"keywords" : [
6
6
" Kiota" ,
38
38
"test:cjs" : " mocha 'dist/cjs/test/common/**/*.js' && mocha 'dist/cjs/test/node/**/*.js'"
39
39
},
40
40
"dependencies" : {
41
- "@microsoft/kiota-abstractions" : " ^1.0.0-preview.49 " ,
41
+ "@microsoft/kiota-abstractions" : " ^1.0.0-preview.50 " ,
42
42
"@opentelemetry/api" : " ^1.7.0" ,
43
43
"guid-typescript" : " ^1.0.9" ,
44
44
"tslib" : " ^2.6.2"
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export class MiddlewareFactory {
16
16
* Returns the default middleware chain an array with the middleware handlers
17
17
* @returns an array of the middleware handlers of the default middleware chain
18
18
*/
19
- public static getDefaultMiddlewares ( customFetch : ( request : string , init : RequestInit ) => Promise < Response > = fetch as any ) : Middleware [ ] {
19
+ public static getDefaultMiddlewares ( customFetch : ( request : string , init : RequestInit ) => Promise < Response > = ( ... args ) => fetch ( ... args ) as any ) : Middleware [ ] {
20
20
// Browsers handles redirection automatically and do not require the redirectionHandler
21
21
return [
22
22
new RetryHandler ( ) ,
Original file line number Diff line number Diff line change @@ -17,14 +17,14 @@ export class MiddlewareFactory {
17
17
* Returns the default middleware chain an array with the middleware handlers
18
18
* @returns an array of the middleware handlers of the default middleware chain
19
19
*/
20
- public static getDefaultMiddlewares ( customFetch : ( request : string , init : RequestInit ) => Promise < Response > = fetch as any ) : Middleware [ ] {
20
+ public static getDefaultMiddlewares ( customFetch : ( request : string , init : RequestInit ) => Promise < Response > = ( ... args ) => fetch ( ... args ) as any ) : Middleware [ ] {
21
21
return [
22
- new RetryHandler ( ) ,
23
- new RedirectHandler ( ) ,
24
- new ParametersNameDecodingHandler ( ) ,
25
- new UserAgentHandler ( ) ,
26
- new HeadersInspectionHandler ( ) ,
27
- new CustomFetchHandler ( customFetch )
28
- ] ;
22
+ new RetryHandler ( ) ,
23
+ new RedirectHandler ( ) ,
24
+ new ParametersNameDecodingHandler ( ) ,
25
+ new UserAgentHandler ( ) ,
26
+ new HeadersInspectionHandler ( ) ,
27
+ new CustomFetchHandler ( customFetch )
28
+ ] ;
29
29
}
30
30
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @microsoft/kiota-serialization-form" ,
3
- "version" : " 1.0.0-preview.38 " ,
3
+ "version" : " 1.0.0-preview.39 " ,
4
4
"description" : " Implementation of Kiota Serialization interfaces for URI from encoded" ,
5
5
"main" : " dist/cjs/src/index.js" ,
6
6
"browser" : {
39
39
},
40
40
"homepage" : " https://github.com/microsoft/kiota-typescript#readme" ,
41
41
"dependencies" : {
42
- "@microsoft/kiota-abstractions" : " ^1.0.0-preview.49 " ,
42
+ "@microsoft/kiota-abstractions" : " ^1.0.0-preview.50 " ,
43
43
"guid-typescript" : " ^1.0.9" ,
44
44
"tslib" : " ^2.6.2"
45
45
},
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @microsoft/kiota-serialization-json" ,
3
- "version" : " 1.0.0-preview.49 " ,
3
+ "version" : " 1.0.0-preview.50 " ,
4
4
"description" : " Implementation of Kiota Serialization interfaces for JSON" ,
5
5
"main" : " dist/cjs/src/index.js" ,
6
6
"browser" : {
39
39
},
40
40
"homepage" : " https://github.com/microsoft/kiota-typescript#readme" ,
41
41
"dependencies" : {
42
- "@microsoft/kiota-abstractions" : " ^1.0.0-preview.49 " ,
42
+ "@microsoft/kiota-abstractions" : " ^1.0.0-preview.50 " ,
43
43
"guid-typescript" : " ^1.0.9" ,
44
44
"tslib" : " ^2.6.2"
45
45
},
Original file line number Diff line number Diff line change 35
35
},
36
36
"homepage" : " https://github.com/microsoft/kiota-typescript#readme" ,
37
37
"dependencies" : {
38
- "@microsoft/kiota-abstractions" : " ^1.0.0-preview.49 " ,
38
+ "@microsoft/kiota-abstractions" : " ^1.0.0-preview.50 " ,
39
39
"guid-typescript" : " ^1.0.9" ,
40
40
"tslib" : " ^2.6.2"
41
41
},
42
42
"devDependencies" : {
43
- "@microsoft/kiota-serialization-json" : " ^1.0.0-preview.49 "
43
+ "@microsoft/kiota-serialization-json" : " ^1.0.0-preview.50 "
44
44
},
45
45
"publishConfig" : {
46
46
"access" : " public"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @microsoft/kiota-serialization-text" ,
3
- "version" : " 1.0.0-preview.46 " ,
3
+ "version" : " 1.0.0-preview.47 " ,
4
4
"description" : " Implementation of Kiota Serialization interfaces for text" ,
5
5
"main" : " dist/cjs/src/index.js" ,
6
6
"browser" : {
39
39
},
40
40
"homepage" : " https://github.com/microsoft/kiota-typescript#readme" ,
41
41
"dependencies" : {
42
- "@microsoft/kiota-abstractions" : " ^1.0.0-preview.49 " ,
42
+ "@microsoft/kiota-abstractions" : " ^1.0.0-preview.50 " ,
43
43
"guid-typescript" : " ^1.0.9" ,
44
44
"tslib" : " ^2.6.2"
45
45
},
You can’t perform that action at this time.
0 commit comments