@azure/core-client 1.7.0 → 1.7.1-alpha.20230110.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4 -3
- package/dist/index.js.map +1 -1
- package/dist-esm/src/deserializationPolicy.js +1 -1
- package/dist-esm/src/deserializationPolicy.js.map +1 -1
- package/dist-esm/src/interfaces.js.map +1 -1
- package/dist-esm/src/serializer.js +3 -2
- package/dist-esm/src/serializer.js.map +1 -1
- package/package.json +3 -3
- package/types/3.1/core-client.d.ts +5 -0
- package/types/latest/core-client.d.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/core-client",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.1-alpha.20230110.2",
|
|
4
4
|
"description": "Core library for interfacing with AutoRest generated code",
|
|
5
5
|
"sdk-type": "client",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -83,8 +83,8 @@
|
|
|
83
83
|
"@types/mocha": "^7.0.2",
|
|
84
84
|
"@types/node": "^14.0.0",
|
|
85
85
|
"@types/sinon": "^9.0.4",
|
|
86
|
-
"@azure/eslint-plugin-azure-sdk": "
|
|
87
|
-
"@azure/dev-tool": "
|
|
86
|
+
"@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
|
|
87
|
+
"@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
|
|
88
88
|
"chai": "^4.2.0",
|
|
89
89
|
"downlevel-dts": "^0.10.0",
|
|
90
90
|
"cross-env": "^7.0.2",
|
|
@@ -766,6 +766,11 @@ export declare interface SerializerOptions {
|
|
|
766
766
|
* Options to configure xml parser/builder behavior.
|
|
767
767
|
*/
|
|
768
768
|
xml: XmlOptions;
|
|
769
|
+
/**
|
|
770
|
+
* Normally additional properties are included in the result object, even if there is no mapper for them.
|
|
771
|
+
* This flag disables this behavior when true. It is used when parsing headers to avoid polluting the result object.
|
|
772
|
+
*/
|
|
773
|
+
ignoreUnknownProperties?: boolean;
|
|
769
774
|
}
|
|
770
775
|
/**
|
|
771
776
|
* Initializes a new instance of the ServiceClient.
|
|
@@ -810,6 +810,11 @@ export declare interface SerializerOptions {
|
|
|
810
810
|
* Options to configure xml parser/builder behavior.
|
|
811
811
|
*/
|
|
812
812
|
xml: XmlOptions;
|
|
813
|
+
/**
|
|
814
|
+
* Normally additional properties are included in the result object, even if there is no mapper for them.
|
|
815
|
+
* This flag disables this behavior when true. It is used when parsing headers to avoid polluting the result object.
|
|
816
|
+
*/
|
|
817
|
+
ignoreUnknownProperties?: boolean;
|
|
813
818
|
}
|
|
814
819
|
|
|
815
820
|
/**
|