@emilgroup/partner-sdk 1.4.0 → 1.5.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.
- package/README.md +2 -2
- package/api/partner-relations-api.ts +8 -8
- package/api/partner-tags-api.ts +8 -8
- package/api/partner-types-api.ts +4 -4
- package/api/partner-version-api.ts +4 -4
- package/api/partners-api.ts +8 -8
- package/base.ts +3 -3
- package/dist/api/partner-relations-api.d.ts +8 -8
- package/dist/api/partner-relations-api.js +6 -6
- package/dist/api/partner-tags-api.d.ts +8 -8
- package/dist/api/partner-tags-api.js +7 -7
- package/dist/api/partner-types-api.d.ts +4 -4
- package/dist/api/partner-types-api.js +4 -4
- package/dist/api/partner-version-api.d.ts +4 -4
- package/dist/api/partner-version-api.js +3 -3
- package/dist/api/partners-api.d.ts +8 -8
- package/dist/api/partners-api.js +7 -7
- package/dist/base.d.ts +2 -2
- package/dist/base.js +1 -2
- package/dist/models/create-partner-type-response-class.d.ts +1 -1
- package/dist/models/get-partner-type-response-class.d.ts +1 -1
- package/dist/models/get-partner-version-response-class.d.ts +3 -3
- package/dist/models/list-partner-relation-class.d.ts +1 -1
- package/dist/models/list-partner-relation-types-class.d.ts +1 -1
- package/dist/models/list-partner-types-response-class.d.ts +1 -1
- package/dist/models/list-partner-versions-response-class.d.ts +7 -1
- package/dist/models/list-partners-response-class.d.ts +1 -1
- package/dist/models/partner-class.d.ts +12 -6
- package/dist/models/partner-relation-class.d.ts +12 -0
- package/dist/models/partner-relation-type-class.d.ts +12 -0
- package/dist/models/partner-type-class.d.ts +12 -0
- package/dist/models/tag-class.d.ts +12 -0
- package/dist/models/update-partner-type-response-class.d.ts +1 -1
- package/models/create-partner-type-response-class.ts +1 -1
- package/models/get-partner-type-response-class.ts +1 -1
- package/models/get-partner-version-response-class.ts +3 -3
- package/models/list-partner-relation-class.ts +1 -1
- package/models/list-partner-relation-types-class.ts +1 -1
- package/models/list-partner-types-response-class.ts +1 -1
- package/models/list-partner-versions-response-class.ts +7 -1
- package/models/list-partners-response-class.ts +1 -1
- package/models/partner-class.ts +12 -6
- package/models/partner-relation-class.ts +12 -0
- package/models/partner-relation-type-class.ts +12 -0
- package/models/partner-type-class.ts +12 -0
- package/models/tag-class.ts +12 -0
- package/models/update-partner-type-response-class.ts +1 -1
- package/package.json +1 -1
|
@@ -64,12 +64,6 @@ export interface PartnerClass {
|
|
|
64
64
|
* @memberof PartnerClass
|
|
65
65
|
*/
|
|
66
66
|
'updatedAt': string;
|
|
67
|
-
/**
|
|
68
|
-
* Last user who updated the entity
|
|
69
|
-
* @type {string}
|
|
70
|
-
* @memberof PartnerClass
|
|
71
|
-
*/
|
|
72
|
-
'updatedBy': string;
|
|
73
67
|
/**
|
|
74
68
|
* The version number of the partner
|
|
75
69
|
* @type {number}
|
|
@@ -82,4 +76,16 @@ export interface PartnerClass {
|
|
|
82
76
|
* @memberof PartnerClass
|
|
83
77
|
*/
|
|
84
78
|
'tags': Array<string>;
|
|
79
|
+
/**
|
|
80
|
+
* Identifier of the user who created the record.
|
|
81
|
+
* @type {string}
|
|
82
|
+
* @memberof PartnerClass
|
|
83
|
+
*/
|
|
84
|
+
'createdBy': string;
|
|
85
|
+
/**
|
|
86
|
+
* Identifier of the user who last updated the record.
|
|
87
|
+
* @type {string}
|
|
88
|
+
* @memberof PartnerClass
|
|
89
|
+
*/
|
|
90
|
+
'updatedBy': string;
|
|
85
91
|
}
|
|
@@ -69,4 +69,16 @@ export interface PartnerRelationClass {
|
|
|
69
69
|
* @memberof PartnerRelationClass
|
|
70
70
|
*/
|
|
71
71
|
'updatedAt': string;
|
|
72
|
+
/**
|
|
73
|
+
* Identifier of the user who created the record.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof PartnerRelationClass
|
|
76
|
+
*/
|
|
77
|
+
'createdBy': string;
|
|
78
|
+
/**
|
|
79
|
+
* Identifier of the user who last updated the record.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof PartnerRelationClass
|
|
82
|
+
*/
|
|
83
|
+
'updatedBy': string;
|
|
72
84
|
}
|
|
@@ -63,4 +63,16 @@ export interface PartnerRelationTypeClass {
|
|
|
63
63
|
* @memberof PartnerRelationTypeClass
|
|
64
64
|
*/
|
|
65
65
|
'updatedAt': string;
|
|
66
|
+
/**
|
|
67
|
+
* Identifier of the user who created the record.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof PartnerRelationTypeClass
|
|
70
|
+
*/
|
|
71
|
+
'createdBy': string;
|
|
72
|
+
/**
|
|
73
|
+
* Identifier of the user who last updated the record.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof PartnerRelationTypeClass
|
|
76
|
+
*/
|
|
77
|
+
'updatedBy': string;
|
|
66
78
|
}
|
|
@@ -63,6 +63,18 @@ export interface PartnerTypeClass {
|
|
|
63
63
|
* @memberof PartnerTypeClass
|
|
64
64
|
*/
|
|
65
65
|
'updatedAt': string;
|
|
66
|
+
/**
|
|
67
|
+
* Identifier of the user who created the record.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof PartnerTypeClass
|
|
70
|
+
*/
|
|
71
|
+
'createdBy': string;
|
|
72
|
+
/**
|
|
73
|
+
* Identifier of the user who last updated the record.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof PartnerTypeClass
|
|
76
|
+
*/
|
|
77
|
+
'updatedBy': string;
|
|
66
78
|
}
|
|
67
79
|
export declare const PartnerTypeClassSlugEnum: {
|
|
68
80
|
readonly Person: "person";
|
|
@@ -51,4 +51,16 @@ export interface TagClass {
|
|
|
51
51
|
* @memberof TagClass
|
|
52
52
|
*/
|
|
53
53
|
'updatedAt': string;
|
|
54
|
+
/**
|
|
55
|
+
* Identifier of the user who created the record.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof TagClass
|
|
58
|
+
*/
|
|
59
|
+
'createdBy': string;
|
|
60
|
+
/**
|
|
61
|
+
* Identifier of the user who last updated the record.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof TagClass
|
|
64
|
+
*/
|
|
65
|
+
'updatedBy': string;
|
|
54
66
|
}
|
|
@@ -17,7 +17,7 @@ import { PartnerTypeClass } from './partner-type-class';
|
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdatePartnerTypeResponseClass {
|
|
19
19
|
/**
|
|
20
|
-
* The
|
|
20
|
+
* The partner type response.
|
|
21
21
|
* @type {PartnerTypeClass}
|
|
22
22
|
* @memberof UpdatePartnerTypeResponseClass
|
|
23
23
|
*/
|
|
@@ -22,7 +22,7 @@ import { PartnerTypeClass } from './partner-type-class';
|
|
|
22
22
|
*/
|
|
23
23
|
export interface CreatePartnerTypeResponseClass {
|
|
24
24
|
/**
|
|
25
|
-
* The
|
|
25
|
+
* The partner type response.
|
|
26
26
|
* @type {PartnerTypeClass}
|
|
27
27
|
* @memberof CreatePartnerTypeResponseClass
|
|
28
28
|
*/
|
|
@@ -22,7 +22,7 @@ import { PartnerTypeClass } from './partner-type-class';
|
|
|
22
22
|
*/
|
|
23
23
|
export interface GetPartnerTypeResponseClass {
|
|
24
24
|
/**
|
|
25
|
-
* The
|
|
25
|
+
* The partner type response.
|
|
26
26
|
* @type {PartnerTypeClass}
|
|
27
27
|
* @memberof GetPartnerTypeResponseClass
|
|
28
28
|
*/
|
|
@@ -22,10 +22,10 @@ import { PartnerClass } from './partner-class';
|
|
|
22
22
|
*/
|
|
23
23
|
export interface GetPartnerVersionResponseClass {
|
|
24
24
|
/**
|
|
25
|
-
* The
|
|
26
|
-
* @type {
|
|
25
|
+
* The partner response.
|
|
26
|
+
* @type {PartnerClass}
|
|
27
27
|
* @memberof GetPartnerVersionResponseClass
|
|
28
28
|
*/
|
|
29
|
-
'partnerVersion':
|
|
29
|
+
'partnerVersion': PartnerClass;
|
|
30
30
|
}
|
|
31
31
|
|
|
@@ -22,7 +22,7 @@ import { PartnerTypeClass } from './partner-type-class';
|
|
|
22
22
|
*/
|
|
23
23
|
export interface ListPartnerTypesResponseClass {
|
|
24
24
|
/**
|
|
25
|
-
* The list of
|
|
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
|
|
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
|
|
package/models/partner-class.ts
CHANGED
|
@@ -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 = {
|
package/models/tag-class.ts
CHANGED
|
@@ -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
|
|
25
|
+
* The partner type response.
|
|
26
26
|
* @type {PartnerTypeClass}
|
|
27
27
|
* @memberof UpdatePartnerTypeResponseClass
|
|
28
28
|
*/
|