@devopness/sdk-js 2.125.0 → 2.126.0

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.
@@ -9,6 +9,8 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { SourceProviderDisplayableName } from './source-provider-displayable-name';
13
+ import { SourceProviderName } from './source-provider-name';
12
14
  /**
13
15
  *
14
16
  * @export
@@ -16,17 +18,17 @@
16
18
  */
17
19
  export interface SourceProviderOptionsRelation {
18
20
  /**
19
- * Name of source provider
20
- * @type {string}
21
+ *
22
+ * @type {SourceProviderName}
21
23
  * @memberof SourceProviderOptionsRelation
22
24
  */
23
- provider_name: string;
25
+ provider_name: SourceProviderName;
24
26
  /**
25
- * Human readable version of the provider name
26
- * @type {string}
27
+ *
28
+ * @type {SourceProviderDisplayableName}
27
29
  * @memberof SourceProviderOptionsRelation
28
30
  */
29
- provider_name_human_readable: string;
31
+ provider_name_human_readable: SourceProviderDisplayableName;
30
32
  /**
31
33
  * URL of the connection
32
34
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.125.0",
3
+ "version": "2.126.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },