@emilgroup/partner-sdk 1.3.1-beta.0 → 1.3.1-beta.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.
Files changed (45) hide show
  1. package/README.md +2 -2
  2. package/api/partner-relations-api.ts +8 -8
  3. package/api/partner-tags-api.ts +8 -8
  4. package/api/partner-types-api.ts +4 -4
  5. package/api/partner-version-api.ts +4 -4
  6. package/api/partners-api.ts +8 -8
  7. package/dist/api/partner-relations-api.d.ts +8 -8
  8. package/dist/api/partner-relations-api.js +6 -6
  9. package/dist/api/partner-tags-api.d.ts +8 -8
  10. package/dist/api/partner-tags-api.js +7 -7
  11. package/dist/api/partner-types-api.d.ts +4 -4
  12. package/dist/api/partner-types-api.js +4 -4
  13. package/dist/api/partner-version-api.d.ts +4 -4
  14. package/dist/api/partner-version-api.js +3 -3
  15. package/dist/api/partners-api.d.ts +8 -8
  16. package/dist/api/partners-api.js +7 -7
  17. package/dist/models/create-partner-type-response-class.d.ts +1 -1
  18. package/dist/models/get-partner-type-response-class.d.ts +1 -1
  19. package/dist/models/get-partner-version-response-class.d.ts +3 -3
  20. package/dist/models/list-partner-relation-class.d.ts +1 -1
  21. package/dist/models/list-partner-relation-types-class.d.ts +1 -1
  22. package/dist/models/list-partner-types-response-class.d.ts +1 -1
  23. package/dist/models/list-partner-versions-response-class.d.ts +7 -1
  24. package/dist/models/list-partners-response-class.d.ts +1 -1
  25. package/dist/models/partner-class.d.ts +12 -6
  26. package/dist/models/partner-relation-class.d.ts +12 -0
  27. package/dist/models/partner-relation-type-class.d.ts +12 -0
  28. package/dist/models/partner-type-class.d.ts +12 -0
  29. package/dist/models/tag-class.d.ts +12 -0
  30. package/dist/models/update-partner-type-response-class.d.ts +1 -1
  31. package/models/create-partner-type-response-class.ts +1 -1
  32. package/models/get-partner-type-response-class.ts +1 -1
  33. package/models/get-partner-version-response-class.ts +3 -3
  34. package/models/list-partner-relation-class.ts +1 -1
  35. package/models/list-partner-relation-types-class.ts +1 -1
  36. package/models/list-partner-types-response-class.ts +1 -1
  37. package/models/list-partner-versions-response-class.ts +7 -1
  38. package/models/list-partners-response-class.ts +1 -1
  39. package/models/partner-class.ts +12 -6
  40. package/models/partner-relation-class.ts +12 -0
  41. package/models/partner-relation-type-class.ts +12 -0
  42. package/models/partner-type-class.ts +12 -0
  43. package/models/tag-class.ts +12 -0
  44. package/models/update-partner-type-response-class.ts +1 -1
  45. package/package.json +1 -1
@@ -22,10 +22,10 @@ import { PartnerClass } from './partner-class';
22
22
  */
23
23
  export interface GetPartnerVersionResponseClass {
24
24
  /**
25
- * The list of partners.
26
- * @type {Array<PartnerClass>}
25
+ * The partner response.
26
+ * @type {PartnerClass}
27
27
  * @memberof GetPartnerVersionResponseClass
28
28
  */
29
- 'partnerVersion': Array<PartnerClass>;
29
+ 'partnerVersion': PartnerClass;
30
30
  }
31
31
 
@@ -28,7 +28,7 @@ export interface ListPartnerRelationClass {
28
28
  */
29
29
  'items': Array<PartnerRelationClass>;
30
30
  /**
31
- * Next page token
31
+ * Next page token.
32
32
  * @type {string}
33
33
  * @memberof ListPartnerRelationClass
34
34
  */
@@ -28,7 +28,7 @@ export interface ListPartnerRelationTypesClass {
28
28
  */
29
29
  'items': Array<PartnerRelationTypeClass>;
30
30
  /**
31
- * Next page token
31
+ * Next page token.
32
32
  * @type {string}
33
33
  * @memberof ListPartnerRelationTypesClass
34
34
  */
@@ -22,7 +22,7 @@ import { PartnerTypeClass } from './partner-type-class';
22
22
  */
23
23
  export interface ListPartnerTypesResponseClass {
24
24
  /**
25
- * The list of partnerTypes.
25
+ * The list of partner typess.
26
26
  * @type {Array<PartnerTypeClass>}
27
27
  * @memberof ListPartnerTypesResponseClass
28
28
  */
@@ -22,10 +22,16 @@ import { PartnerClass } from './partner-class';
22
22
  */
23
23
  export interface ListPartnerVersionsResponseClass {
24
24
  /**
25
- * The list of Partnerss.
25
+ * The list of partnerss.
26
26
  * @type {Array<PartnerClass>}
27
27
  * @memberof ListPartnerVersionsResponseClass
28
28
  */
29
29
  'items': Array<PartnerClass>;
30
+ /**
31
+ * Next page token.
32
+ * @type {string}
33
+ * @memberof ListPartnerVersionsResponseClass
34
+ */
35
+ 'nextPageToken': string;
30
36
  }
31
37
 
@@ -22,7 +22,7 @@ import { PartnerClass } from './partner-class';
22
22
  */
23
23
  export interface ListPartnersResponseClass {
24
24
  /**
25
- * The list of Partnerss.
25
+ * The list of partnerss.
26
26
  * @type {Array<PartnerClass>}
27
27
  * @memberof ListPartnersResponseClass
28
28
  */
@@ -69,12 +69,6 @@ export interface PartnerClass {
69
69
  * @memberof PartnerClass
70
70
  */
71
71
  'updatedAt': string;
72
- /**
73
- * Last user who updated the entity
74
- * @type {string}
75
- * @memberof PartnerClass
76
- */
77
- 'updatedBy': string;
78
72
  /**
79
73
  * The version number of the partner
80
74
  * @type {number}
@@ -87,5 +81,17 @@ export interface PartnerClass {
87
81
  * @memberof PartnerClass
88
82
  */
89
83
  'tags': Array<string>;
84
+ /**
85
+ * Identifier of the user who created the record.
86
+ * @type {string}
87
+ * @memberof PartnerClass
88
+ */
89
+ 'createdBy': string;
90
+ /**
91
+ * Identifier of the user who last updated the record.
92
+ * @type {string}
93
+ * @memberof PartnerClass
94
+ */
95
+ 'updatedBy': string;
90
96
  }
91
97
 
@@ -74,5 +74,17 @@ export interface PartnerRelationClass {
74
74
  * @memberof PartnerRelationClass
75
75
  */
76
76
  'updatedAt': string;
77
+ /**
78
+ * Identifier of the user who created the record.
79
+ * @type {string}
80
+ * @memberof PartnerRelationClass
81
+ */
82
+ 'createdBy': string;
83
+ /**
84
+ * Identifier of the user who last updated the record.
85
+ * @type {string}
86
+ * @memberof PartnerRelationClass
87
+ */
88
+ 'updatedBy': string;
77
89
  }
78
90
 
@@ -68,5 +68,17 @@ export interface PartnerRelationTypeClass {
68
68
  * @memberof PartnerRelationTypeClass
69
69
  */
70
70
  'updatedAt': string;
71
+ /**
72
+ * Identifier of the user who created the record.
73
+ * @type {string}
74
+ * @memberof PartnerRelationTypeClass
75
+ */
76
+ 'createdBy': string;
77
+ /**
78
+ * Identifier of the user who last updated the record.
79
+ * @type {string}
80
+ * @memberof PartnerRelationTypeClass
81
+ */
82
+ 'updatedBy': string;
71
83
  }
72
84
 
@@ -68,6 +68,18 @@ export interface PartnerTypeClass {
68
68
  * @memberof PartnerTypeClass
69
69
  */
70
70
  'updatedAt': string;
71
+ /**
72
+ * Identifier of the user who created the record.
73
+ * @type {string}
74
+ * @memberof PartnerTypeClass
75
+ */
76
+ 'createdBy': string;
77
+ /**
78
+ * Identifier of the user who last updated the record.
79
+ * @type {string}
80
+ * @memberof PartnerTypeClass
81
+ */
82
+ 'updatedBy': string;
71
83
  }
72
84
 
73
85
  export const PartnerTypeClassSlugEnum = {
@@ -56,5 +56,17 @@ export interface TagClass {
56
56
  * @memberof TagClass
57
57
  */
58
58
  'updatedAt': string;
59
+ /**
60
+ * Identifier of the user who created the record.
61
+ * @type {string}
62
+ * @memberof TagClass
63
+ */
64
+ 'createdBy': string;
65
+ /**
66
+ * Identifier of the user who last updated the record.
67
+ * @type {string}
68
+ * @memberof TagClass
69
+ */
70
+ 'updatedBy': string;
59
71
  }
60
72
 
@@ -22,7 +22,7 @@ import { PartnerTypeClass } from './partner-type-class';
22
22
  */
23
23
  export interface UpdatePartnerTypeResponseClass {
24
24
  /**
25
- * The partnerType response.
25
+ * The partner type response.
26
26
  * @type {PartnerTypeClass}
27
27
  * @memberof UpdatePartnerTypeResponseClass
28
28
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/partner-sdk",
3
- "version": "1.3.1-beta.0",
3
+ "version": "1.3.1-beta.1",
4
4
  "description": "OpenAPI client for @emilgroup/partner-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [