-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
compatibility updates for api rest [email protected] (#227)
* #204 added preferences for admin area to cache stream connection information * #204 refactored some admin stream conf properties, added new admin prefs * #204 minor admin prefs refactoring * #204 * #204 added path/method props back in from 204.2 * #204 added getServerInfoMetadata method to admin service * #204 updates for changes in [email protected] * #226 rest-api-client-ng updated to 2.3.0 * #226 rest-api-client-ng updated to 2.3.0
- Loading branch information
1 parent
201a04d
commit 3ed74b6
Showing
11 changed files
with
195 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | |
[markdownlint](https://dlaa.me/markdownlint/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [2.2.4] - 2021-08-04 | ||
|
||
- [API Client package](https://github.com/Senzing/rest-api-client-ng/releases) updated to version [2.3.0](https://github.com/Senzing/rest-api-client-ng/releases/tag/2.3.0) | ||
- Compatibility updates for [Senzing OAS 2.7.0](https://github.com/Senzing/senzing-rest-api-specification/blob/master/CHANGELOG.md#270---2021-07-22) specification | ||
- Compatibility updates for [Senzing Rest [email protected]](https://github.com/Senzing/senzing-api-server/blob/master/CHANGELOG.md#270---2021-07-22) | ||
- Preferences has several models added to facilitate stateful storage of **Stream Loading** features found in the [POC Server] extensions: | ||
- `AdminStreamConnProperties`, `AdminStreamAnalysisConfig`, `AdminStreamLoadConfig`, `AdminStreamUploadRates` in src/lib/models/data-admin.ts | ||
- `SzAdminPrefs` added to `src/lib/services/sz-prefs.service.ts` | ||
|
||
relevant tickets: #204 #226 | ||
|
||
## [2.2.3] - 2021-06-14 | ||
|
||
- Passing additional or custom headers are necessary in certain operation scenario's, ie: passing `X-Amz-Security-Token` to a [Cognito](https://aws.amazon.com/cognito/) enabled [API Gateway](https://aws.amazon.com/api-gateway/) address after user authentication. | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
export interface AdminStreamConnProperties { | ||
connected: boolean; | ||
clientId?: string; | ||
hostname: string; | ||
port?: number; | ||
secure?: boolean; | ||
connectionTest: boolean; | ||
reconnectOnClose: boolean; | ||
reconnectConsecutiveAttemptLimit: number; | ||
path: string; | ||
method?: string; | ||
} | ||
|
||
export interface AdminStreamAnalysisConfig { | ||
sampleSize: number; | ||
uploadRate: number; | ||
} | ||
export interface AdminStreamLoadConfig { | ||
autoCreateMissingDataSources: boolean | undefined; | ||
assignMissingDataSourceRecordsToStaticTarget?: string | undefined | boolean; | ||
uploadRate: number; | ||
} | ||
export const AdminStreamUploadRates = { | ||
unlimited: -1, | ||
100: 100, | ||
1000: 1000, | ||
5000: 5000, | ||
10000: 10000, | ||
20000: 20000, | ||
50000: 50000 | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.