@emilgroup/partner-sdk 1.14.1-beta.0 → 1.14.1-beta.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.
@@ -0,0 +1,30 @@
1
+ /**
2
+ * EMIL PartnerService
3
+ * The EMIL PartnerService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface CreateOrUpdatePartnerFromAccountRequestDto
16
+ */
17
+ export interface CreateOrUpdatePartnerFromAccountRequestDto {
18
+ /**
19
+ * Unique identifier of the account that this object belongs to.
20
+ * @type {string}
21
+ * @memberof CreateOrUpdatePartnerFromAccountRequestDto
22
+ */
23
+ 'accountCode'?: string;
24
+ /**
25
+ * Unique identifier of the partner that this object belongs to.
26
+ * @type {string}
27
+ * @memberof CreateOrUpdatePartnerFromAccountRequestDto
28
+ */
29
+ 'partnerCode'?: string;
30
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerService
6
+ * The EMIL PartnerService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
1
+ /**
2
+ * EMIL PartnerService
3
+ * The EMIL PartnerService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { PartnerClass } from './partner-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CreateOrUpdatePartnerFromAccountResponseClass
17
+ */
18
+ export interface CreateOrUpdatePartnerFromAccountResponseClass {
19
+ /**
20
+ * The partner response.
21
+ * @type {PartnerClass}
22
+ * @memberof CreateOrUpdatePartnerFromAccountResponseClass
23
+ */
24
+ 'partner': PartnerClass;
25
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL PartnerService
6
+ * The EMIL PartnerService API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,3 +1,5 @@
1
+ export * from './create-or-update-partner-from-account-request-dto';
2
+ export * from './create-or-update-partner-from-account-response-class';
1
3
  export * from './create-partner-relation-request-dto-rest';
2
4
  export * from './create-partner-relation-response-class';
3
5
  export * from './create-partner-request-dto';
@@ -14,6 +14,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./create-or-update-partner-from-account-request-dto"), exports);
18
+ __exportStar(require("./create-or-update-partner-from-account-response-class"), exports);
17
19
  __exportStar(require("./create-partner-relation-request-dto-rest"), exports);
18
20
  __exportStar(require("./create-partner-relation-response-class"), exports);
19
21
  __exportStar(require("./create-partner-request-dto"), exports);
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import { PartnerTypeClass } from './partner-type-class';
13
+ import { TagClass } from './tag-class';
13
14
  /**
14
15
  *
15
16
  * @export
@@ -72,10 +73,10 @@ export interface PartnerClass {
72
73
  'version': number;
73
74
  /**
74
75
  * Tags that the partner is associated with
75
- * @type {Array<string>}
76
+ * @type {Array<TagClass>}
76
77
  * @memberof PartnerClass
77
78
  */
78
- 'tags': Array<string>;
79
+ 'tags': Array<TagClass>;
79
80
  /**
80
81
  * The user code of the partner
81
82
  * @type {string}
@@ -0,0 +1,36 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL PartnerService
5
+ * The EMIL PartnerService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface CreateOrUpdatePartnerFromAccountRequestDto
21
+ */
22
+ export interface CreateOrUpdatePartnerFromAccountRequestDto {
23
+ /**
24
+ * Unique identifier of the account that this object belongs to.
25
+ * @type {string}
26
+ * @memberof CreateOrUpdatePartnerFromAccountRequestDto
27
+ */
28
+ 'accountCode'?: string;
29
+ /**
30
+ * Unique identifier of the partner that this object belongs to.
31
+ * @type {string}
32
+ * @memberof CreateOrUpdatePartnerFromAccountRequestDto
33
+ */
34
+ 'partnerCode'?: string;
35
+ }
36
+
@@ -0,0 +1,31 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL PartnerService
5
+ * The EMIL PartnerService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { PartnerClass } from './partner-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface CreateOrUpdatePartnerFromAccountResponseClass
22
+ */
23
+ export interface CreateOrUpdatePartnerFromAccountResponseClass {
24
+ /**
25
+ * The partner response.
26
+ * @type {PartnerClass}
27
+ * @memberof CreateOrUpdatePartnerFromAccountResponseClass
28
+ */
29
+ 'partner': PartnerClass;
30
+ }
31
+
package/models/index.ts CHANGED
@@ -1,3 +1,5 @@
1
+ export * from './create-or-update-partner-from-account-request-dto';
2
+ export * from './create-or-update-partner-from-account-response-class';
1
3
  export * from './create-partner-relation-request-dto-rest';
2
4
  export * from './create-partner-relation-response-class';
3
5
  export * from './create-partner-request-dto';
@@ -14,6 +14,7 @@
14
14
 
15
15
 
16
16
  import { PartnerTypeClass } from './partner-type-class';
17
+ import { TagClass } from './tag-class';
17
18
 
18
19
  /**
19
20
  *
@@ -77,10 +78,10 @@ export interface PartnerClass {
77
78
  'version': number;
78
79
  /**
79
80
  * Tags that the partner is associated with
80
- * @type {Array<string>}
81
+ * @type {Array<TagClass>}
81
82
  * @memberof PartnerClass
82
83
  */
83
- 'tags': Array<string>;
84
+ 'tags': Array<TagClass>;
84
85
  /**
85
86
  * The user code of the partner
86
87
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/partner-sdk",
3
- "version": "1.14.1-beta.0",
3
+ "version": "1.14.1-beta.2",
4
4
  "description": "OpenAPI client for @emilgroup/partner-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
@@ -18,9 +18,9 @@
18
18
  "prepare": "npm run build"
19
19
  },
20
20
  "dependencies": {
21
- "axios": "^0.27.2"
21
+ "axios": "^1.9.0"
22
22
  },
23
23
  "devDependencies": {
24
- "typescript": "^4.0"
24
+ "typescript": "^5.8"
25
25
  }
26
26
  }