files.com 1.1.17 → 1.1.19
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/_VERSION +1 -1
- package/docs/Errors.md +1 -0
- package/docs/models/PublicKey.md +4 -1
- package/lib/Errors.js +752 -739
- package/lib/Files.js +1 -1
- package/lib/models/PublicKey.js +8 -1
- package/package.json +1 -1
- package/src/Errors.js +1 -0
- package/src/Files.js +1 -1
- package/src/models/PublicKey.js +8 -1
package/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.19
|
package/docs/Errors.md
CHANGED
@@ -62,6 +62,7 @@ These errors are derived from the error groups listed above.
|
|
62
62
|
### BadRequest_InvalidFilterCombinationError
|
63
63
|
### BadRequest_InvalidFilterFieldError
|
64
64
|
### BadRequest_InvalidFilterParamError
|
65
|
+
### BadRequest_InvalidFilterParamValueError
|
65
66
|
### BadRequest_InvalidInputEncodingError
|
66
67
|
### BadRequest_InvalidInterfaceError
|
67
68
|
### BadRequest_InvalidOauthProviderError
|
package/docs/models/PublicKey.md
CHANGED
@@ -8,6 +8,7 @@
|
|
8
8
|
"title": "My public key",
|
9
9
|
"created_at": "2000-01-01T01:00:00Z",
|
10
10
|
"fingerprint": "43:51:43:a1:b5:fc:8b:b7:0a:3a:a9:b1:0f:66:73:a8",
|
11
|
+
"fingerprint_sha256": "V5Q5t/ghT3R8Tol5GX9385bzmpygWVRnLuI9EXNrjCX",
|
11
12
|
"username": "User",
|
12
13
|
"user_id": 1
|
13
14
|
}
|
@@ -16,7 +17,8 @@
|
|
16
17
|
* `id` (int64): Public key ID
|
17
18
|
* `title` (string): Public key title
|
18
19
|
* `created_at` (date-time): Public key created at date/time
|
19
|
-
* `fingerprint` (string): Public key fingerprint
|
20
|
+
* `fingerprint` (string): Public key fingerprint (MD5)
|
21
|
+
* `fingerprint_sha256` (string): Public key fingerprint (SHA256)
|
20
22
|
* `username` (string): Username of the user this public key is associated with
|
21
23
|
* `user_id` (int64): User ID this public key is associated with
|
22
24
|
* `public_key` (string): Actual contents of SSH key.
|
@@ -96,6 +98,7 @@ await public_key.update({
|
|
96
98
|
"title": "My public key",
|
97
99
|
"created_at": "2000-01-01T01:00:00Z",
|
98
100
|
"fingerprint": "43:51:43:a1:b5:fc:8b:b7:0a:3a:a9:b1:0f:66:73:a8",
|
101
|
+
"fingerprint_sha256": "V5Q5t/ghT3R8Tol5GX9385bzmpygWVRnLuI9EXNrjCX",
|
99
102
|
"username": "User",
|
100
103
|
"user_id": 1
|
101
104
|
}
|