@randock/nameshift-api-client 0.0.366 → 0.0.368

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 (103) hide show
  1. package/.openapi-generator/FILES +29 -1
  2. package/README.md +3 -3
  3. package/dist/apis/AdminApi.d.ts +45 -1
  4. package/dist/apis/AdminApi.js +211 -0
  5. package/dist/models/AccountNameshiftCommissionBySubtypeDto.d.ts +55 -0
  6. package/dist/models/AccountNameshiftCommissionBySubtypeDto.js +70 -0
  7. package/dist/models/AccountNameshiftCommissionByTypeDto.d.ts +33 -0
  8. package/dist/models/AccountNameshiftCommissionByTypeDto.js +52 -0
  9. package/dist/models/AdminListAccountDto.d.ts +137 -0
  10. package/dist/models/{IntersectionListAccountDtoWithAccountCommissionDto.js → AdminListAccountDto.js} +17 -25
  11. package/dist/models/BulkCommissionActionsInput.d.ts +33 -0
  12. package/dist/models/BulkCommissionActionsInput.js +52 -0
  13. package/dist/models/BulkCommissionActionsInputActionsInner.d.ts +29 -0
  14. package/dist/models/BulkCommissionActionsInputActionsInner.js +58 -0
  15. package/dist/models/CommissionAccountDto.d.ts +44 -0
  16. package/dist/models/CommissionAccountDto.js +59 -0
  17. package/dist/models/CommissionAction.d.ts +26 -0
  18. package/dist/models/CommissionAction.js +52 -0
  19. package/dist/models/CommissionAddUpdateActionInput.d.ts +40 -0
  20. package/dist/models/CommissionAddUpdateActionInput.js +57 -0
  21. package/dist/models/CommissionConfigurationDto.d.ts +33 -0
  22. package/dist/models/CommissionConfigurationDto.js +52 -0
  23. package/dist/models/CommissionConfigurationDtoPayload.d.ts +27 -0
  24. package/dist/models/CommissionConfigurationDtoPayload.js +54 -0
  25. package/dist/models/CommissionConfigurationInput.d.ts +39 -0
  26. package/dist/models/CommissionConfigurationInput.js +56 -0
  27. package/dist/models/CommissionDeleteActionInput.d.ts +40 -0
  28. package/dist/models/CommissionDeleteActionInput.js +57 -0
  29. package/dist/models/CommissionDto.d.ts +112 -0
  30. package/dist/models/CommissionDto.js +110 -0
  31. package/dist/models/CommissionFactor.d.ts +25 -0
  32. package/dist/models/CommissionFactor.js +51 -0
  33. package/dist/models/CommissionListDto.d.ts +33 -0
  34. package/dist/models/CommissionListDto.js +52 -0
  35. package/dist/models/CommissionPayloadIdInput.d.ts +32 -0
  36. package/dist/models/CommissionPayloadIdInput.js +51 -0
  37. package/dist/models/CommissionPayloadInput.d.ts +99 -0
  38. package/dist/models/CommissionPayloadInput.js +101 -0
  39. package/dist/models/CommissionPercentageRangeDto.d.ts +44 -0
  40. package/dist/models/CommissionPercentageRangeDto.js +59 -0
  41. package/dist/models/CommissionPercentageRangeInput.d.ts +44 -0
  42. package/dist/models/CommissionPercentageRangeInput.js +59 -0
  43. package/dist/models/CommissionReasonConfigDto.d.ts +47 -0
  44. package/dist/models/CommissionReasonConfigDto.js +64 -0
  45. package/dist/models/CommissionReasonConfigDtoPayload.d.ts +27 -0
  46. package/dist/models/CommissionReasonConfigDtoPayload.js +54 -0
  47. package/dist/models/CommissionReasonDto.d.ts +112 -0
  48. package/dist/models/CommissionReasonDto.js +88 -0
  49. package/dist/models/FixedCommissionPayloadDto.d.ts +39 -0
  50. package/dist/models/FixedCommissionPayloadDto.js +56 -0
  51. package/dist/models/FixedCommissionPayloadInput.d.ts +32 -0
  52. package/dist/models/FixedCommissionPayloadInput.js +51 -0
  53. package/dist/models/FixedCommissionReasonPayloadDto.d.ts +39 -0
  54. package/dist/models/FixedCommissionReasonPayloadDto.js +56 -0
  55. package/dist/models/LedgerMutationAttachmentDto.d.ts +38 -0
  56. package/dist/models/LedgerMutationAttachmentDto.js +55 -0
  57. package/dist/models/LedgerMutationDto.d.ts +7 -0
  58. package/dist/models/LedgerMutationDto.js +5 -0
  59. package/dist/models/ListAccounts200Response.d.ts +3 -3
  60. package/dist/models/ListAccounts200Response.js +3 -3
  61. package/dist/models/SalesCountCommissionPayloadDto.d.ts +40 -0
  62. package/dist/models/SalesCountCommissionPayloadDto.js +57 -0
  63. package/dist/models/SalesCountCommissionPayloadInput.d.ts +33 -0
  64. package/dist/models/SalesCountCommissionPayloadInput.js +52 -0
  65. package/dist/models/SalesCountCommissionReasonPayloadDto.d.ts +40 -0
  66. package/dist/models/SalesCountCommissionReasonPayloadDto.js +57 -0
  67. package/dist/models/index.d.ts +29 -1
  68. package/dist/models/index.js +29 -1
  69. package/package.json +1 -1
  70. package/src/apis/AdminApi.ts +187 -0
  71. package/src/models/AccountNameshiftCommissionBySubtypeDto.ts +105 -0
  72. package/src/models/AccountNameshiftCommissionByTypeDto.ts +74 -0
  73. package/src/models/{IntersectionListAccountDtoWithAccountCommissionDto.ts → AdminListAccountDto.ts} +33 -51
  74. package/src/models/BulkCommissionActionsInput.ts +74 -0
  75. package/src/models/BulkCommissionActionsInputActionsInner.ts +77 -0
  76. package/src/models/CommissionAccountDto.ts +84 -0
  77. package/src/models/CommissionAction.ts +54 -0
  78. package/src/models/CommissionAddUpdateActionInput.ts +92 -0
  79. package/src/models/CommissionConfigurationDto.ts +74 -0
  80. package/src/models/CommissionConfigurationDtoPayload.ts +73 -0
  81. package/src/models/CommissionConfigurationInput.ts +85 -0
  82. package/src/models/CommissionDeleteActionInput.ts +92 -0
  83. package/src/models/CommissionDto.ts +193 -0
  84. package/src/models/CommissionFactor.ts +53 -0
  85. package/src/models/CommissionListDto.ts +74 -0
  86. package/src/models/CommissionPayloadIdInput.ts +66 -0
  87. package/src/models/CommissionPayloadInput.ts +168 -0
  88. package/src/models/CommissionPercentageRangeDto.ts +84 -0
  89. package/src/models/CommissionPercentageRangeInput.ts +84 -0
  90. package/src/models/CommissionReasonConfigDto.ts +94 -0
  91. package/src/models/CommissionReasonConfigDtoPayload.ts +73 -0
  92. package/src/models/CommissionReasonDto.ts +182 -0
  93. package/src/models/FixedCommissionPayloadDto.ts +85 -0
  94. package/src/models/FixedCommissionPayloadInput.ts +66 -0
  95. package/src/models/FixedCommissionReasonPayloadDto.ts +85 -0
  96. package/src/models/LedgerMutationAttachmentDto.ts +75 -0
  97. package/src/models/LedgerMutationDto.ts +17 -0
  98. package/src/models/ListAccounts200Response.ts +10 -10
  99. package/src/models/SalesCountCommissionPayloadDto.ts +92 -0
  100. package/src/models/SalesCountCommissionPayloadInput.ts +74 -0
  101. package/src/models/SalesCountCommissionReasonPayloadDto.ts +92 -0
  102. package/src/models/index.ts +29 -1
  103. package/dist/models/IntersectionListAccountDtoWithAccountCommissionDto.d.ts +0 -149
@@ -0,0 +1,85 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Nameshift
5
+ * Nameshift API
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
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
+ import { mapValues } from '../runtime';
16
+ import type { CommissionFactor } from './CommissionFactor';
17
+ import {
18
+ CommissionFactorFromJSON,
19
+ CommissionFactorFromJSONTyped,
20
+ CommissionFactorToJSON,
21
+ CommissionFactorToJSONTyped,
22
+ } from './CommissionFactor';
23
+
24
+ /**
25
+ *
26
+ * @export
27
+ * @interface FixedCommissionReasonPayloadDto
28
+ */
29
+ export interface FixedCommissionReasonPayloadDto {
30
+ /**
31
+ *
32
+ * @type {CommissionFactor}
33
+ * @memberof FixedCommissionReasonPayloadDto
34
+ */
35
+ factor: CommissionFactor;
36
+ /**
37
+ *
38
+ * @type {number}
39
+ * @memberof FixedCommissionReasonPayloadDto
40
+ */
41
+ value: number;
42
+ }
43
+
44
+
45
+
46
+ /**
47
+ * Check if a given object implements the FixedCommissionReasonPayloadDto interface.
48
+ */
49
+ export function instanceOfFixedCommissionReasonPayloadDto(value: object): value is FixedCommissionReasonPayloadDto {
50
+ if (!('factor' in value) || value['factor'] === undefined) return false;
51
+ if (!('value' in value) || value['value'] === undefined) return false;
52
+ return true;
53
+ }
54
+
55
+ export function FixedCommissionReasonPayloadDtoFromJSON(json: any): FixedCommissionReasonPayloadDto {
56
+ return FixedCommissionReasonPayloadDtoFromJSONTyped(json, false);
57
+ }
58
+
59
+ export function FixedCommissionReasonPayloadDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): FixedCommissionReasonPayloadDto {
60
+ if (json == null) {
61
+ return json;
62
+ }
63
+ return {
64
+
65
+ 'factor': CommissionFactorFromJSON(json['factor']),
66
+ 'value': json['value'],
67
+ };
68
+ }
69
+
70
+ export function FixedCommissionReasonPayloadDtoToJSON(json: any): FixedCommissionReasonPayloadDto {
71
+ return FixedCommissionReasonPayloadDtoToJSONTyped(json, false);
72
+ }
73
+
74
+ export function FixedCommissionReasonPayloadDtoToJSONTyped(value?: FixedCommissionReasonPayloadDto | null, ignoreDiscriminator: boolean = false): any {
75
+ if (value == null) {
76
+ return value;
77
+ }
78
+
79
+ return {
80
+
81
+ 'factor': CommissionFactorToJSON(value['factor']),
82
+ 'value': value['value'],
83
+ };
84
+ }
85
+
@@ -0,0 +1,75 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Nameshift
5
+ * Nameshift API
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
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
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface LedgerMutationAttachmentDto
20
+ */
21
+ export interface LedgerMutationAttachmentDto {
22
+ /**
23
+ *
24
+ * @type {string}
25
+ * @memberof LedgerMutationAttachmentDto
26
+ */
27
+ id: string;
28
+ /**
29
+ *
30
+ * @type {string}
31
+ * @memberof LedgerMutationAttachmentDto
32
+ */
33
+ filename: string;
34
+ }
35
+
36
+ /**
37
+ * Check if a given object implements the LedgerMutationAttachmentDto interface.
38
+ */
39
+ export function instanceOfLedgerMutationAttachmentDto(value: object): value is LedgerMutationAttachmentDto {
40
+ if (!('id' in value) || value['id'] === undefined) return false;
41
+ if (!('filename' in value) || value['filename'] === undefined) return false;
42
+ return true;
43
+ }
44
+
45
+ export function LedgerMutationAttachmentDtoFromJSON(json: any): LedgerMutationAttachmentDto {
46
+ return LedgerMutationAttachmentDtoFromJSONTyped(json, false);
47
+ }
48
+
49
+ export function LedgerMutationAttachmentDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): LedgerMutationAttachmentDto {
50
+ if (json == null) {
51
+ return json;
52
+ }
53
+ return {
54
+
55
+ 'id': json['id'],
56
+ 'filename': json['filename'],
57
+ };
58
+ }
59
+
60
+ export function LedgerMutationAttachmentDtoToJSON(json: any): LedgerMutationAttachmentDto {
61
+ return LedgerMutationAttachmentDtoToJSONTyped(json, false);
62
+ }
63
+
64
+ export function LedgerMutationAttachmentDtoToJSONTyped(value?: LedgerMutationAttachmentDto | null, ignoreDiscriminator: boolean = false): any {
65
+ if (value == null) {
66
+ return value;
67
+ }
68
+
69
+ return {
70
+
71
+ 'id': value['id'],
72
+ 'filename': value['filename'],
73
+ };
74
+ }
75
+
@@ -13,6 +13,14 @@
13
13
  */
14
14
 
15
15
  import { mapValues } from '../runtime';
16
+ import type { LedgerMutationAttachmentDto } from './LedgerMutationAttachmentDto';
17
+ import {
18
+ LedgerMutationAttachmentDtoFromJSON,
19
+ LedgerMutationAttachmentDtoFromJSONTyped,
20
+ LedgerMutationAttachmentDtoToJSON,
21
+ LedgerMutationAttachmentDtoToJSONTyped,
22
+ } from './LedgerMutationAttachmentDto';
23
+
16
24
  /**
17
25
  *
18
26
  * @export
@@ -55,6 +63,12 @@ export interface LedgerMutationDto {
55
63
  * @memberof LedgerMutationDto
56
64
  */
57
65
  date: Date;
66
+ /**
67
+ *
68
+ * @type {Array<LedgerMutationAttachmentDto>}
69
+ * @memberof LedgerMutationDto
70
+ */
71
+ attachments: Array<LedgerMutationAttachmentDto>;
58
72
  }
59
73
 
60
74
  /**
@@ -67,6 +81,7 @@ export function instanceOfLedgerMutationDto(value: object): value is LedgerMutat
67
81
  if (!('credit' in value) || value['credit'] === undefined) return false;
68
82
  if (!('description' in value) || value['description'] === undefined) return false;
69
83
  if (!('date' in value) || value['date'] === undefined) return false;
84
+ if (!('attachments' in value) || value['attachments'] === undefined) return false;
70
85
  return true;
71
86
  }
72
87
 
@@ -86,6 +101,7 @@ export function LedgerMutationDtoFromJSONTyped(json: any, ignoreDiscriminator: b
86
101
  'credit': json['credit'],
87
102
  'description': json['description'],
88
103
  'date': (new Date(json['date'])),
104
+ 'attachments': ((json['attachments'] as Array<any>).map(LedgerMutationAttachmentDtoFromJSON)),
89
105
  };
90
106
  }
91
107
 
@@ -106,6 +122,7 @@ export function LedgerMutationDtoToJSONTyped(value?: LedgerMutationDto | null, i
106
122
  'credit': value['credit'],
107
123
  'description': value['description'],
108
124
  'date': ((value['date']).toISOString()),
125
+ 'attachments': ((value['attachments'] as Array<any>).map(LedgerMutationAttachmentDtoToJSON)),
109
126
  };
110
127
  }
111
128
 
@@ -20,13 +20,13 @@ import {
20
20
  PaginateResponseLinksToJSON,
21
21
  PaginateResponseLinksToJSONTyped,
22
22
  } from './PaginateResponseLinks';
23
- import type { IntersectionListAccountDtoWithAccountCommissionDto } from './IntersectionListAccountDtoWithAccountCommissionDto';
23
+ import type { AdminListAccountDto } from './AdminListAccountDto';
24
24
  import {
25
- IntersectionListAccountDtoWithAccountCommissionDtoFromJSON,
26
- IntersectionListAccountDtoWithAccountCommissionDtoFromJSONTyped,
27
- IntersectionListAccountDtoWithAccountCommissionDtoToJSON,
28
- IntersectionListAccountDtoWithAccountCommissionDtoToJSONTyped,
29
- } from './IntersectionListAccountDtoWithAccountCommissionDto';
25
+ AdminListAccountDtoFromJSON,
26
+ AdminListAccountDtoFromJSONTyped,
27
+ AdminListAccountDtoToJSON,
28
+ AdminListAccountDtoToJSONTyped,
29
+ } from './AdminListAccountDto';
30
30
  import type { PaginateResponseMeta } from './PaginateResponseMeta';
31
31
  import {
32
32
  PaginateResponseMetaFromJSON,
@@ -43,10 +43,10 @@ import {
43
43
  export interface ListAccounts200Response {
44
44
  /**
45
45
  *
46
- * @type {Array<IntersectionListAccountDtoWithAccountCommissionDto>}
46
+ * @type {Array<AdminListAccountDto>}
47
47
  * @memberof ListAccounts200Response
48
48
  */
49
- data: Array<IntersectionListAccountDtoWithAccountCommissionDto>;
49
+ data: Array<AdminListAccountDto>;
50
50
  /**
51
51
  *
52
52
  * @type {PaginateResponseMeta}
@@ -81,7 +81,7 @@ export function ListAccounts200ResponseFromJSONTyped(json: any, ignoreDiscrimina
81
81
  }
82
82
  return {
83
83
 
84
- 'data': ((json['data'] as Array<any>).map(IntersectionListAccountDtoWithAccountCommissionDtoFromJSON)),
84
+ 'data': ((json['data'] as Array<any>).map(AdminListAccountDtoFromJSON)),
85
85
  'meta': PaginateResponseMetaFromJSON(json['meta']),
86
86
  'links': PaginateResponseLinksFromJSON(json['links']),
87
87
  };
@@ -98,7 +98,7 @@ export function ListAccounts200ResponseToJSONTyped(value?: ListAccounts200Respon
98
98
 
99
99
  return {
100
100
 
101
- 'data': ((value['data'] as Array<any>).map(IntersectionListAccountDtoWithAccountCommissionDtoToJSON)),
101
+ 'data': ((value['data'] as Array<any>).map(AdminListAccountDtoToJSON)),
102
102
  'meta': PaginateResponseMetaToJSON(value['meta']),
103
103
  'links': PaginateResponseLinksToJSON(value['links']),
104
104
  };
@@ -0,0 +1,92 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Nameshift
5
+ * Nameshift API
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
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
+ import { mapValues } from '../runtime';
16
+ import type { CommissionFactor } from './CommissionFactor';
17
+ import {
18
+ CommissionFactorFromJSON,
19
+ CommissionFactorFromJSONTyped,
20
+ CommissionFactorToJSON,
21
+ CommissionFactorToJSONTyped,
22
+ } from './CommissionFactor';
23
+ import type { CommissionPercentageRangeDto } from './CommissionPercentageRangeDto';
24
+ import {
25
+ CommissionPercentageRangeDtoFromJSON,
26
+ CommissionPercentageRangeDtoFromJSONTyped,
27
+ CommissionPercentageRangeDtoToJSON,
28
+ CommissionPercentageRangeDtoToJSONTyped,
29
+ } from './CommissionPercentageRangeDto';
30
+
31
+ /**
32
+ *
33
+ * @export
34
+ * @interface SalesCountCommissionPayloadDto
35
+ */
36
+ export interface SalesCountCommissionPayloadDto {
37
+ /**
38
+ *
39
+ * @type {CommissionFactor}
40
+ * @memberof SalesCountCommissionPayloadDto
41
+ */
42
+ factor: CommissionFactor;
43
+ /**
44
+ *
45
+ * @type {Array<CommissionPercentageRangeDto>}
46
+ * @memberof SalesCountCommissionPayloadDto
47
+ */
48
+ value: Array<CommissionPercentageRangeDto>;
49
+ }
50
+
51
+
52
+
53
+ /**
54
+ * Check if a given object implements the SalesCountCommissionPayloadDto interface.
55
+ */
56
+ export function instanceOfSalesCountCommissionPayloadDto(value: object): value is SalesCountCommissionPayloadDto {
57
+ if (!('factor' in value) || value['factor'] === undefined) return false;
58
+ if (!('value' in value) || value['value'] === undefined) return false;
59
+ return true;
60
+ }
61
+
62
+ export function SalesCountCommissionPayloadDtoFromJSON(json: any): SalesCountCommissionPayloadDto {
63
+ return SalesCountCommissionPayloadDtoFromJSONTyped(json, false);
64
+ }
65
+
66
+ export function SalesCountCommissionPayloadDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): SalesCountCommissionPayloadDto {
67
+ if (json == null) {
68
+ return json;
69
+ }
70
+ return {
71
+
72
+ 'factor': CommissionFactorFromJSON(json['factor']),
73
+ 'value': ((json['value'] as Array<any>).map(CommissionPercentageRangeDtoFromJSON)),
74
+ };
75
+ }
76
+
77
+ export function SalesCountCommissionPayloadDtoToJSON(json: any): SalesCountCommissionPayloadDto {
78
+ return SalesCountCommissionPayloadDtoToJSONTyped(json, false);
79
+ }
80
+
81
+ export function SalesCountCommissionPayloadDtoToJSONTyped(value?: SalesCountCommissionPayloadDto | null, ignoreDiscriminator: boolean = false): any {
82
+ if (value == null) {
83
+ return value;
84
+ }
85
+
86
+ return {
87
+
88
+ 'factor': CommissionFactorToJSON(value['factor']),
89
+ 'value': ((value['value'] as Array<any>).map(CommissionPercentageRangeDtoToJSON)),
90
+ };
91
+ }
92
+
@@ -0,0 +1,74 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Nameshift
5
+ * Nameshift API
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
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
+ import { mapValues } from '../runtime';
16
+ import type { CommissionPercentageRangeInput } from './CommissionPercentageRangeInput';
17
+ import {
18
+ CommissionPercentageRangeInputFromJSON,
19
+ CommissionPercentageRangeInputFromJSONTyped,
20
+ CommissionPercentageRangeInputToJSON,
21
+ CommissionPercentageRangeInputToJSONTyped,
22
+ } from './CommissionPercentageRangeInput';
23
+
24
+ /**
25
+ *
26
+ * @export
27
+ * @interface SalesCountCommissionPayloadInput
28
+ */
29
+ export interface SalesCountCommissionPayloadInput {
30
+ /**
31
+ *
32
+ * @type {Array<CommissionPercentageRangeInput>}
33
+ * @memberof SalesCountCommissionPayloadInput
34
+ */
35
+ value: Array<CommissionPercentageRangeInput>;
36
+ }
37
+
38
+ /**
39
+ * Check if a given object implements the SalesCountCommissionPayloadInput interface.
40
+ */
41
+ export function instanceOfSalesCountCommissionPayloadInput(value: object): value is SalesCountCommissionPayloadInput {
42
+ if (!('value' in value) || value['value'] === undefined) return false;
43
+ return true;
44
+ }
45
+
46
+ export function SalesCountCommissionPayloadInputFromJSON(json: any): SalesCountCommissionPayloadInput {
47
+ return SalesCountCommissionPayloadInputFromJSONTyped(json, false);
48
+ }
49
+
50
+ export function SalesCountCommissionPayloadInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): SalesCountCommissionPayloadInput {
51
+ if (json == null) {
52
+ return json;
53
+ }
54
+ return {
55
+
56
+ 'value': ((json['value'] as Array<any>).map(CommissionPercentageRangeInputFromJSON)),
57
+ };
58
+ }
59
+
60
+ export function SalesCountCommissionPayloadInputToJSON(json: any): SalesCountCommissionPayloadInput {
61
+ return SalesCountCommissionPayloadInputToJSONTyped(json, false);
62
+ }
63
+
64
+ export function SalesCountCommissionPayloadInputToJSONTyped(value?: SalesCountCommissionPayloadInput | null, ignoreDiscriminator: boolean = false): any {
65
+ if (value == null) {
66
+ return value;
67
+ }
68
+
69
+ return {
70
+
71
+ 'value': ((value['value'] as Array<any>).map(CommissionPercentageRangeInputToJSON)),
72
+ };
73
+ }
74
+
@@ -0,0 +1,92 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Nameshift
5
+ * Nameshift API
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
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
+ import { mapValues } from '../runtime';
16
+ import type { CommissionFactor } from './CommissionFactor';
17
+ import {
18
+ CommissionFactorFromJSON,
19
+ CommissionFactorFromJSONTyped,
20
+ CommissionFactorToJSON,
21
+ CommissionFactorToJSONTyped,
22
+ } from './CommissionFactor';
23
+ import type { CommissionPercentageRangeDto } from './CommissionPercentageRangeDto';
24
+ import {
25
+ CommissionPercentageRangeDtoFromJSON,
26
+ CommissionPercentageRangeDtoFromJSONTyped,
27
+ CommissionPercentageRangeDtoToJSON,
28
+ CommissionPercentageRangeDtoToJSONTyped,
29
+ } from './CommissionPercentageRangeDto';
30
+
31
+ /**
32
+ *
33
+ * @export
34
+ * @interface SalesCountCommissionReasonPayloadDto
35
+ */
36
+ export interface SalesCountCommissionReasonPayloadDto {
37
+ /**
38
+ *
39
+ * @type {CommissionFactor}
40
+ * @memberof SalesCountCommissionReasonPayloadDto
41
+ */
42
+ factor: CommissionFactor;
43
+ /**
44
+ *
45
+ * @type {Array<CommissionPercentageRangeDto>}
46
+ * @memberof SalesCountCommissionReasonPayloadDto
47
+ */
48
+ value: Array<CommissionPercentageRangeDto>;
49
+ }
50
+
51
+
52
+
53
+ /**
54
+ * Check if a given object implements the SalesCountCommissionReasonPayloadDto interface.
55
+ */
56
+ export function instanceOfSalesCountCommissionReasonPayloadDto(value: object): value is SalesCountCommissionReasonPayloadDto {
57
+ if (!('factor' in value) || value['factor'] === undefined) return false;
58
+ if (!('value' in value) || value['value'] === undefined) return false;
59
+ return true;
60
+ }
61
+
62
+ export function SalesCountCommissionReasonPayloadDtoFromJSON(json: any): SalesCountCommissionReasonPayloadDto {
63
+ return SalesCountCommissionReasonPayloadDtoFromJSONTyped(json, false);
64
+ }
65
+
66
+ export function SalesCountCommissionReasonPayloadDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): SalesCountCommissionReasonPayloadDto {
67
+ if (json == null) {
68
+ return json;
69
+ }
70
+ return {
71
+
72
+ 'factor': CommissionFactorFromJSON(json['factor']),
73
+ 'value': ((json['value'] as Array<any>).map(CommissionPercentageRangeDtoFromJSON)),
74
+ };
75
+ }
76
+
77
+ export function SalesCountCommissionReasonPayloadDtoToJSON(json: any): SalesCountCommissionReasonPayloadDto {
78
+ return SalesCountCommissionReasonPayloadDtoToJSONTyped(json, false);
79
+ }
80
+
81
+ export function SalesCountCommissionReasonPayloadDtoToJSONTyped(value?: SalesCountCommissionReasonPayloadDto | null, ignoreDiscriminator: boolean = false): any {
82
+ if (value == null) {
83
+ return value;
84
+ }
85
+
86
+ return {
87
+
88
+ 'factor': CommissionFactorToJSON(value['factor']),
89
+ 'value': ((value['value'] as Array<any>).map(CommissionPercentageRangeDtoToJSON)),
90
+ };
91
+ }
92
+
@@ -7,6 +7,8 @@ export * from './AccountBankAccountDtoDetails';
7
7
  export * from './AccountCommissionByDateRangeDto';
8
8
  export * from './AccountDto';
9
9
  export * from './AccountMetricsDto';
10
+ export * from './AccountNameshiftCommissionBySubtypeDto';
11
+ export * from './AccountNameshiftCommissionByTypeDto';
10
12
  export * from './AccountNotificationDto';
11
13
  export * from './AccountNotificationReadStatusDto';
12
14
  export * from './AccountOnboardingDto';
@@ -37,6 +39,7 @@ export * from './AdminBankAccountDto';
37
39
  export * from './AdminCompanyStatsDto';
38
40
  export * from './AdminCompanyStatsLedger';
39
41
  export * from './AdminGetAllDomainTransfers200Response';
42
+ export * from './AdminListAccountDto';
40
43
  export * from './AdminVerificationDepositDto';
41
44
  export * from './AggregatedPaginationResponse';
42
45
  export * from './AirwallexBankAccountDetailsDto';
@@ -66,6 +69,8 @@ export * from './BatchReadSellerLeadMessageInput';
66
69
  export * from './BatchUpdateDomainsInput';
67
70
  export * from './BatchVerifyBuyerLeadsInput';
68
71
  export * from './BillingInformationDto';
72
+ export * from './BulkCommissionActionsInput';
73
+ export * from './BulkCommissionActionsInputActionsInner';
69
74
  export * from './BulkDownloadInvoicesInput';
70
75
  export * from './BulkMarkBuyerNotificationsAsReadInputDto';
71
76
  export * from './BulkMarkNotificationsAsReadInputDto';
@@ -98,6 +103,23 @@ export * from './CaBankAccountDetails';
98
103
  export * from './ChangeOrderStatusInput';
99
104
  export * from './ChangeSubscriptionStatusInput';
100
105
  export * from './ChartDataPoint';
106
+ export * from './CommissionAccountDto';
107
+ export * from './CommissionAction';
108
+ export * from './CommissionAddUpdateActionInput';
109
+ export * from './CommissionConfigurationDto';
110
+ export * from './CommissionConfigurationDtoPayload';
111
+ export * from './CommissionConfigurationInput';
112
+ export * from './CommissionDeleteActionInput';
113
+ export * from './CommissionDto';
114
+ export * from './CommissionFactor';
115
+ export * from './CommissionListDto';
116
+ export * from './CommissionPayloadIdInput';
117
+ export * from './CommissionPayloadInput';
118
+ export * from './CommissionPercentageRangeDto';
119
+ export * from './CommissionPercentageRangeInput';
120
+ export * from './CommissionReasonConfigDto';
121
+ export * from './CommissionReasonConfigDtoPayload';
122
+ export * from './CommissionReasonDto';
101
123
  export * from './CompanyInformationDto';
102
124
  export * from './CompanyTaxIdDto';
103
125
  export * from './ConcreteDomainTransferTaskData';
@@ -155,6 +177,9 @@ export * from './DomainTransferTldInformationResultDto';
155
177
  export * from './DomainTransferWorkflowDto';
156
178
  export * from './DomainUrlDto';
157
179
  export * from './EppBatchUpdateInput';
180
+ export * from './FixedCommissionPayloadDto';
181
+ export * from './FixedCommissionPayloadInput';
182
+ export * from './FixedCommissionReasonPayloadDto';
158
183
  export * from './ForgotPasswordRequestInput';
159
184
  export * from './GetAllAffiliateCommissions200Response';
160
185
  export * from './GetAllAuctions200Response';
@@ -180,7 +205,6 @@ export * from './IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto';
180
205
  export * from './IntersectionDomainDtoWithHijackerDtoWithAccountDto';
181
206
  export * from './IntersectionDomainDtoWithSeoMetricsDto';
182
207
  export * from './IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsDto';
183
- export * from './IntersectionListAccountDtoWithAccountCommissionDto';
184
208
  export * from './IntersectionTaskListTaskDto';
185
209
  export * from './InvoiceDomainDto';
186
210
  export * from './InvoiceDto';
@@ -210,6 +234,7 @@ export * from './LeaseToOwnConfigurationDto';
210
234
  export * from './LeaseToOwnConfigurationInput';
211
235
  export * from './LeaseToOwnConfigurationPresetsDto';
212
236
  export * from './LeaseToOwnDto';
237
+ export * from './LedgerMutationAttachmentDto';
213
238
  export * from './LedgerMutationDto';
214
239
  export * from './LedgerMutationsDto';
215
240
  export * from './List200Response';
@@ -287,6 +312,9 @@ export * from './RentConfigurationPresetsDto';
287
312
  export * from './RentDto';
288
313
  export * from './RequestAccessTokenInput';
289
314
  export * from './RequestEmailOtpInput';
315
+ export * from './SalesCountCommissionPayloadDto';
316
+ export * from './SalesCountCommissionPayloadInput';
317
+ export * from './SalesCountCommissionReasonPayloadDto';
290
318
  export * from './SellerAccountReferralListItemDto';
291
319
  export * from './SellerAffiliateCommissionDto';
292
320
  export * from './SellerAuctionListItemDto';