@emilgroup/partner-sdk 1.4.0 → 1.5.1-beta.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.
Files changed (75) hide show
  1. package/.openapi-generator/FILES +10 -4
  2. package/README.md +2 -2
  3. package/api/{partners-api.ts → partner-api.ts} +90 -90
  4. package/api/partner-invitation-api.ts +165 -0
  5. package/api/{partner-relations-api.ts → partner-relation-api.ts} +95 -95
  6. package/api/{partner-tags-api.ts → partner-tag-api.ts} +70 -70
  7. package/api/{partner-types-api.ts → partner-type-api.ts} +68 -68
  8. package/api/partner-version-api.ts +4 -4
  9. package/api.ts +10 -8
  10. package/base.ts +3 -3
  11. package/dist/api/{partners-api.d.ts → partner-api.d.ts} +82 -82
  12. package/dist/api/{partners-api.js → partner-api.js} +56 -56
  13. package/dist/api/partner-invitation-api.d.ts +97 -0
  14. package/dist/api/partner-invitation-api.js +224 -0
  15. package/dist/api/{partner-relations-api.d.ts → partner-relation-api.d.ts} +86 -86
  16. package/dist/api/{partner-relations-api.js → partner-relation-api.js} +53 -53
  17. package/dist/api/{partner-tags-api.d.ts → partner-tag-api.d.ts} +63 -63
  18. package/dist/api/{partner-tags-api.js → partner-tag-api.js} +46 -46
  19. package/dist/api/{partner-types-api.d.ts → partner-type-api.d.ts} +61 -61
  20. package/dist/api/{partner-types-api.js → partner-type-api.js} +43 -43
  21. package/dist/api/partner-version-api.d.ts +4 -4
  22. package/dist/api/partner-version-api.js +3 -3
  23. package/dist/api.d.ts +5 -4
  24. package/dist/api.js +5 -4
  25. package/dist/base.d.ts +2 -2
  26. package/dist/base.js +1 -2
  27. package/dist/models/create-partner-response-class.d.ts +7 -0
  28. package/dist/models/create-partner-type-response-class.d.ts +1 -1
  29. package/dist/models/get-partner-type-response-class.d.ts +1 -1
  30. package/dist/models/get-partner-version-response-class.d.ts +3 -3
  31. package/dist/models/index.d.ts +5 -0
  32. package/dist/models/index.js +5 -0
  33. package/dist/models/invite-class.d.ts +79 -0
  34. package/dist/models/invite-class.js +15 -0
  35. package/dist/models/invite-partner-to-eis-response-class.d.ts +25 -0
  36. package/dist/models/invite-partner-to-eis-response-class.js +15 -0
  37. package/dist/models/invite-partner-to-eisrequest-dto.d.ts +42 -0
  38. package/dist/models/invite-partner-to-eisrequest-dto.js +15 -0
  39. package/dist/models/list-partner-relation-class.d.ts +1 -1
  40. package/dist/models/list-partner-relation-types-class.d.ts +1 -1
  41. package/dist/models/list-partner-types-response-class.d.ts +1 -1
  42. package/dist/models/list-partner-versions-response-class.d.ts +7 -1
  43. package/dist/models/list-partners-response-class.d.ts +1 -1
  44. package/dist/models/partner-class.d.ts +24 -6
  45. package/dist/models/partner-relation-class.d.ts +12 -0
  46. package/dist/models/partner-relation-type-class.d.ts +12 -0
  47. package/dist/models/partner-type-class.d.ts +12 -0
  48. package/dist/models/permission-class.d.ts +72 -0
  49. package/dist/models/permission-class.js +15 -0
  50. package/dist/models/role-class.d.ts +73 -0
  51. package/dist/models/role-class.js +15 -0
  52. package/dist/models/tag-class.d.ts +12 -0
  53. package/dist/models/update-partner-type-response-class.d.ts +1 -1
  54. package/models/create-partner-response-class.ts +7 -0
  55. package/models/create-partner-type-response-class.ts +1 -1
  56. package/models/get-partner-type-response-class.ts +1 -1
  57. package/models/get-partner-version-response-class.ts +3 -3
  58. package/models/index.ts +5 -0
  59. package/models/invite-class.ts +85 -0
  60. package/models/invite-partner-to-eis-response-class.ts +31 -0
  61. package/models/invite-partner-to-eisrequest-dto.ts +48 -0
  62. package/models/list-partner-relation-class.ts +1 -1
  63. package/models/list-partner-relation-types-class.ts +1 -1
  64. package/models/list-partner-types-response-class.ts +1 -1
  65. package/models/list-partner-versions-response-class.ts +7 -1
  66. package/models/list-partners-response-class.ts +1 -1
  67. package/models/partner-class.ts +24 -6
  68. package/models/partner-relation-class.ts +12 -0
  69. package/models/partner-relation-type-class.ts +12 -0
  70. package/models/partner-type-class.ts +12 -0
  71. package/models/permission-class.ts +78 -0
  72. package/models/role-class.ts +79 -0
  73. package/models/tag-class.ts +12 -0
  74. package/models/update-partner-type-response-class.ts +1 -1
  75. package/package.json +1 -1
@@ -23,7 +23,7 @@ export interface ListPartnerRelationTypesClass {
23
23
  */
24
24
  'items': Array<PartnerRelationTypeClass>;
25
25
  /**
26
- * Next page token
26
+ * Next page token.
27
27
  * @type {string}
28
28
  * @memberof ListPartnerRelationTypesClass
29
29
  */
@@ -17,7 +17,7 @@ import { PartnerTypeClass } from './partner-type-class';
17
17
  */
18
18
  export interface ListPartnerTypesResponseClass {
19
19
  /**
20
- * The list of partnerTypes.
20
+ * The list of partner typess.
21
21
  * @type {Array<PartnerTypeClass>}
22
22
  * @memberof ListPartnerTypesResponseClass
23
23
  */
@@ -17,9 +17,15 @@ import { PartnerClass } from './partner-class';
17
17
  */
18
18
  export interface ListPartnerVersionsResponseClass {
19
19
  /**
20
- * The list of Partnerss.
20
+ * The list of partnerss.
21
21
  * @type {Array<PartnerClass>}
22
22
  * @memberof ListPartnerVersionsResponseClass
23
23
  */
24
24
  'items': Array<PartnerClass>;
25
+ /**
26
+ * Next page token.
27
+ * @type {string}
28
+ * @memberof ListPartnerVersionsResponseClass
29
+ */
30
+ 'nextPageToken': string;
25
31
  }
@@ -17,7 +17,7 @@ import { PartnerClass } from './partner-class';
17
17
  */
18
18
  export interface ListPartnersResponseClass {
19
19
  /**
20
- * The list of Partnerss.
20
+ * The list of partnerss.
21
21
  * @type {Array<PartnerClass>}
22
22
  * @memberof ListPartnersResponseClass
23
23
  */
@@ -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,28 @@ export interface PartnerClass {
82
76
  * @memberof PartnerClass
83
77
  */
84
78
  'tags': Array<string>;
79
+ /**
80
+ * The user code of the partner
81
+ * @type {string}
82
+ * @memberof PartnerClass
83
+ */
84
+ 'tenantUserCode'?: string;
85
+ /**
86
+ * Identifier of the user who created the record.
87
+ * @type {string}
88
+ * @memberof PartnerClass
89
+ */
90
+ 'createdBy': string;
91
+ /**
92
+ * Identifier of the user who last updated the record.
93
+ * @type {string}
94
+ * @memberof PartnerClass
95
+ */
96
+ 'updatedBy': string;
97
+ /**
98
+ * Emil Resources Names (ERN) identifies the most specific owner of a resource.
99
+ * @type {string}
100
+ * @memberof PartnerClass
101
+ */
102
+ 'ern': string;
85
103
  }
@@ -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";
@@ -0,0 +1,72 @@
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 PermissionClass
16
+ */
17
+ export interface PermissionClass {
18
+ /**
19
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
20
+ * @type {number}
21
+ * @memberof PermissionClass
22
+ */
23
+ 'id': number;
24
+ /**
25
+ * Unique identifier for the object.
26
+ * @type {string}
27
+ * @memberof PermissionClass
28
+ */
29
+ 'code': string;
30
+ /**
31
+ * Permission module.
32
+ * @type {string}
33
+ * @memberof PermissionClass
34
+ */
35
+ 'module': string;
36
+ /**
37
+ * Permission entity.
38
+ * @type {string}
39
+ * @memberof PermissionClass
40
+ */
41
+ 'entity': string;
42
+ /**
43
+ * Permission action.
44
+ * @type {string}
45
+ * @memberof PermissionClass
46
+ */
47
+ 'action': string;
48
+ /**
49
+ * Time at which the object was created.
50
+ * @type {string}
51
+ * @memberof PermissionClass
52
+ */
53
+ 'createdAt': string;
54
+ /**
55
+ * Time at which the object was updated.
56
+ * @type {string}
57
+ * @memberof PermissionClass
58
+ */
59
+ 'updatedAt': string;
60
+ /**
61
+ * Identifier of the user who created the record.
62
+ * @type {string}
63
+ * @memberof PermissionClass
64
+ */
65
+ 'createdBy': string;
66
+ /**
67
+ * Identifier of the user who last updated the record.
68
+ * @type {string}
69
+ * @memberof PermissionClass
70
+ */
71
+ 'updatedBy': string;
72
+ }
@@ -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,73 @@
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 { PermissionClass } from './permission-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface RoleClass
17
+ */
18
+ export interface RoleClass {
19
+ /**
20
+ * Unique identifier for the object.
21
+ * @type {string}
22
+ * @memberof RoleClass
23
+ */
24
+ 'code': string;
25
+ /**
26
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
27
+ * @type {number}
28
+ * @memberof RoleClass
29
+ */
30
+ 'id': number;
31
+ /**
32
+ * Short description of the role.
33
+ * @type {string}
34
+ * @memberof RoleClass
35
+ */
36
+ 'description': string;
37
+ /**
38
+ * Role label.
39
+ * @type {string}
40
+ * @memberof RoleClass
41
+ */
42
+ 'label': string;
43
+ /**
44
+ * Permissions associated with the role.
45
+ * @type {Array<PermissionClass>}
46
+ * @memberof RoleClass
47
+ */
48
+ 'permissions': Array<PermissionClass>;
49
+ /**
50
+ * Time at which the object was created.
51
+ * @type {string}
52
+ * @memberof RoleClass
53
+ */
54
+ 'createdAt': string;
55
+ /**
56
+ * Time at which the object was updated.
57
+ * @type {string}
58
+ * @memberof RoleClass
59
+ */
60
+ 'updatedAt': string;
61
+ /**
62
+ * Identifier of the user who created the record.
63
+ * @type {string}
64
+ * @memberof RoleClass
65
+ */
66
+ 'createdBy': string;
67
+ /**
68
+ * Identifier of the user who last updated the record.
69
+ * @type {string}
70
+ * @memberof RoleClass
71
+ */
72
+ 'updatedBy': string;
73
+ }
@@ -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 });
@@ -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 partnerType response.
20
+ * The partner type response.
21
21
  * @type {PartnerTypeClass}
22
22
  * @memberof UpdatePartnerTypeResponseClass
23
23
  */
@@ -13,6 +13,7 @@
13
13
  */
14
14
 
15
15
 
16
+ import { InviteClass } from './invite-class';
16
17
  import { PartnerClass } from './partner-class';
17
18
 
18
19
  /**
@@ -27,5 +28,11 @@ export interface CreatePartnerResponseClass {
27
28
  * @memberof CreatePartnerResponseClass
28
29
  */
29
30
  'partner': PartnerClass;
31
+ /**
32
+ * The invite response.
33
+ * @type {InviteClass}
34
+ * @memberof CreatePartnerResponseClass
35
+ */
36
+ 'invite': InviteClass;
30
37
  }
31
38
 
@@ -22,7 +22,7 @@ import { PartnerTypeClass } from './partner-type-class';
22
22
  */
23
23
  export interface CreatePartnerTypeResponseClass {
24
24
  /**
25
- * The partnerType response.
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 partnerType response.
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 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
 
package/models/index.ts CHANGED
@@ -15,6 +15,9 @@ export * from './get-partner-version-response-class';
15
15
  export * from './get-tag-response-class';
16
16
  export * from './inline-response200';
17
17
  export * from './inline-response503';
18
+ export * from './invite-class';
19
+ export * from './invite-partner-to-eisrequest-dto';
20
+ export * from './invite-partner-to-eis-response-class';
18
21
  export * from './list-partner-relation-class';
19
22
  export * from './list-partner-relation-types-class';
20
23
  export * from './list-partner-types-response-class';
@@ -25,6 +28,8 @@ export * from './partner-class';
25
28
  export * from './partner-relation-class';
26
29
  export * from './partner-relation-type-class';
27
30
  export * from './partner-type-class';
31
+ export * from './permission-class';
32
+ export * from './role-class';
28
33
  export * from './tag-class';
29
34
  export * from './tag-partner-request-dto-rest';
30
35
  export * from './update-partner-relation-request-dto-rest';
@@ -0,0 +1,85 @@
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 { RoleClass } from './role-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface InviteClass
22
+ */
23
+ export interface InviteClass {
24
+ /**
25
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
26
+ * @type {number}
27
+ * @memberof InviteClass
28
+ */
29
+ 'id': number;
30
+ /**
31
+ * User email address.
32
+ * @type {string}
33
+ * @memberof InviteClass
34
+ */
35
+ 'email': string;
36
+ /**
37
+ * Roles associated with the invite.
38
+ * @type {Array<RoleClass>}
39
+ * @memberof InviteClass
40
+ */
41
+ 'roles': Array<RoleClass>;
42
+ /**
43
+ * Expiry date of invitation email.
44
+ * @type {string}
45
+ * @memberof InviteClass
46
+ */
47
+ 'expiresOn': string;
48
+ /**
49
+ * Time at which the object was created.
50
+ * @type {string}
51
+ * @memberof InviteClass
52
+ */
53
+ 'createdAt': string;
54
+ /**
55
+ * Time at which the object was updated.
56
+ * @type {string}
57
+ * @memberof InviteClass
58
+ */
59
+ 'updatedAt': string;
60
+ /**
61
+ * Identifier of the user who created the record.
62
+ * @type {string}
63
+ * @memberof InviteClass
64
+ */
65
+ 'createdBy': string;
66
+ /**
67
+ * Identifier of the user who last updated the record.
68
+ * @type {string}
69
+ * @memberof InviteClass
70
+ */
71
+ 'updatedBy': string;
72
+ /**
73
+ * Emil Resources Names (ERN) identifies the most specific owner of a resource.
74
+ * @type {string}
75
+ * @memberof InviteClass
76
+ */
77
+ 'ern': string;
78
+ /**
79
+ * Optional metadata associated with the invite - useful for passing data to the front end for custom logic.
80
+ * @type {object}
81
+ * @memberof InviteClass
82
+ */
83
+ 'metadata': object;
84
+ }
85
+
@@ -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 { InviteClass } from './invite-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface InvitePartnerToEisResponseClass
22
+ */
23
+ export interface InvitePartnerToEisResponseClass {
24
+ /**
25
+ * The invite response.
26
+ * @type {InviteClass}
27
+ * @memberof InvitePartnerToEisResponseClass
28
+ */
29
+ 'invite': InviteClass;
30
+ }
31
+
@@ -0,0 +1,48 @@
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 InvitePartnerToEISRequestDto
21
+ */
22
+ export interface InvitePartnerToEISRequestDto {
23
+ /**
24
+ * The code of the partner that will be invited to EIS .
25
+ * @type {string}
26
+ * @memberof InvitePartnerToEISRequestDto
27
+ */
28
+ 'partnerCode': string;
29
+ /**
30
+ * The email address of the partner to be invited to the EIS platform.This email address will be used to send the invitation link to the partner.
31
+ * @type {string}
32
+ * @memberof InvitePartnerToEISRequestDto
33
+ */
34
+ 'signupEmail': string;
35
+ /**
36
+ * The partner will be invited to the given organization id in the EIS platform.
37
+ * @type {number}
38
+ * @memberof InvitePartnerToEISRequestDto
39
+ */
40
+ 'organizationId': number;
41
+ /**
42
+ * After signing up the invited partner will have the provided roles.
43
+ * @type {Array<number>}
44
+ * @memberof InvitePartnerToEISRequestDto
45
+ */
46
+ 'roleIds': Array<number>;
47
+ }
48
+
@@ -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
  */