@emilgroup/partner-sdk 1.16.1-beta.0 → 1.16.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.
- package/README.md +2 -2
- package/dist/models/create-partner-type-request-dto.d.ts +6 -0
- package/dist/models/partner-type-class.d.ts +6 -0
- package/dist/models/update-partner-type-request-dto.d.ts +6 -0
- package/models/create-partner-type-request-dto.ts +6 -0
- package/models/partner-type-class.ts +6 -0
- package/models/update-partner-type-request-dto.ts +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/partner-sdk@1.16.1-beta.
|
|
20
|
+
npm install @emilgroup/partner-sdk@1.16.1-beta.1 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/partner-sdk@1.16.1-beta.
|
|
24
|
+
yarn add @emilgroup/partner-sdk@1.16.1-beta.1
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PartnersApi`.
|
|
@@ -34,6 +34,12 @@ export interface CreatePartnerTypeRequestDto {
|
|
|
34
34
|
* @memberof CreatePartnerTypeRequestDto
|
|
35
35
|
*/
|
|
36
36
|
'schemas': Array<PartnerTypeCustomSchemaDto>;
|
|
37
|
+
/**
|
|
38
|
+
* The partner number slug.
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof CreatePartnerTypeRequestDto
|
|
41
|
+
*/
|
|
42
|
+
'partnerNumberSlug'?: string;
|
|
37
43
|
}
|
|
38
44
|
export declare const CreatePartnerTypeRequestDtoSlugEnum: {
|
|
39
45
|
readonly Person: "person";
|
|
@@ -39,6 +39,12 @@ export interface PartnerTypeClass {
|
|
|
39
39
|
* @memberof PartnerTypeClass
|
|
40
40
|
*/
|
|
41
41
|
'slug': PartnerTypeClassSlugEnum;
|
|
42
|
+
/**
|
|
43
|
+
* The slug of the partner type for partner number.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof PartnerTypeClass
|
|
46
|
+
*/
|
|
47
|
+
'partnerNumberSlug': string;
|
|
42
48
|
/**
|
|
43
49
|
* The partner type schema object based on json schema.
|
|
44
50
|
* @type {object}
|
|
@@ -34,6 +34,12 @@ export interface UpdatePartnerTypeRequestDto {
|
|
|
34
34
|
* @memberof UpdatePartnerTypeRequestDto
|
|
35
35
|
*/
|
|
36
36
|
'schemas': Array<PartnerTypeCustomSchemaDto>;
|
|
37
|
+
/**
|
|
38
|
+
* The partner number slug.
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof UpdatePartnerTypeRequestDto
|
|
41
|
+
*/
|
|
42
|
+
'partnerNumberSlug'?: string;
|
|
37
43
|
}
|
|
38
44
|
export declare const UpdatePartnerTypeRequestDtoSlugEnum: {
|
|
39
45
|
readonly Person: "person";
|
|
@@ -39,6 +39,12 @@ export interface CreatePartnerTypeRequestDto {
|
|
|
39
39
|
* @memberof CreatePartnerTypeRequestDto
|
|
40
40
|
*/
|
|
41
41
|
'schemas': Array<PartnerTypeCustomSchemaDto>;
|
|
42
|
+
/**
|
|
43
|
+
* The partner number slug.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CreatePartnerTypeRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'partnerNumberSlug'?: string;
|
|
42
48
|
}
|
|
43
49
|
|
|
44
50
|
export const CreatePartnerTypeRequestDtoSlugEnum = {
|
|
@@ -44,6 +44,12 @@ export interface PartnerTypeClass {
|
|
|
44
44
|
* @memberof PartnerTypeClass
|
|
45
45
|
*/
|
|
46
46
|
'slug': PartnerTypeClassSlugEnum;
|
|
47
|
+
/**
|
|
48
|
+
* The slug of the partner type for partner number.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof PartnerTypeClass
|
|
51
|
+
*/
|
|
52
|
+
'partnerNumberSlug': string;
|
|
47
53
|
/**
|
|
48
54
|
* The partner type schema object based on json schema.
|
|
49
55
|
* @type {object}
|
|
@@ -39,6 +39,12 @@ export interface UpdatePartnerTypeRequestDto {
|
|
|
39
39
|
* @memberof UpdatePartnerTypeRequestDto
|
|
40
40
|
*/
|
|
41
41
|
'schemas': Array<PartnerTypeCustomSchemaDto>;
|
|
42
|
+
/**
|
|
43
|
+
* The partner number slug.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof UpdatePartnerTypeRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'partnerNumberSlug'?: string;
|
|
42
48
|
}
|
|
43
49
|
|
|
44
50
|
export const UpdatePartnerTypeRequestDtoSlugEnum = {
|