@azure/core-auth 1.3.3-alpha.20220104.5 → 1.3.3-alpha.20220112.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/core-auth",
3
- "version": "1.3.3-alpha.20220104.5",
3
+ "version": "1.3.3-alpha.20220112.1",
4
4
  "description": "Provides low-level interfaces and helper methods for authentication in Azure SDK",
5
5
  "sdk-type": "client",
6
6
  "main": "dist/index.js",
@@ -74,7 +74,7 @@
74
74
  "@types/node": "^12.0.0",
75
75
  "chai": "^4.2.0",
76
76
  "cross-env": "^7.0.2",
77
- "downlevel-dts": "~0.4.0",
77
+ "downlevel-dts": "^0.8.0",
78
78
  "eslint": "^7.15.0",
79
79
  "inherits": "^2.0.3",
80
80
  "mocha": "^7.1.1",
@@ -18,6 +18,9 @@ export declare interface AccessToken {
18
18
  */
19
19
  export declare class AzureKeyCredential implements KeyCredential {
20
20
  private _key;
21
+ /*
22
+ * The value of the key to be used in authentication
23
+ */
21
24
  readonly key: string;
22
25
  /**
23
26
  * Create an instance of an AzureKeyCredential for use
@@ -43,7 +46,13 @@ export declare class AzureKeyCredential implements KeyCredential {
43
46
  export declare class AzureNamedKeyCredential implements NamedKeyCredential {
44
47
  private _key;
45
48
  private _name;
49
+ /*
50
+ * The value of the key to be used in authentication.
51
+ */
46
52
  readonly key: string;
53
+ /*
54
+ * The value of the name to be used in authentication.
55
+ */
47
56
  readonly name: string;
48
57
  /**
49
58
  * Create an instance of an AzureNamedKeyCredential for use
@@ -70,6 +79,9 @@ export declare class AzureNamedKeyCredential implements NamedKeyCredential {
70
79
  */
71
80
  export declare class AzureSASCredential implements SASCredential {
72
81
  private _signature;
82
+ /*
83
+ * The value of the shared access signature to be used in authentication
84
+ */
73
85
  readonly signature: string;
74
86
  /**
75
87
  * Create an instance of an AzureSASCredential for use