@emilgroup/partner-sdk-node 1.14.1-beta.6 → 1.15.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.
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-node@1.14.1-beta.6 --save
20
+ npm install @emilgroup/partner-sdk-node@1.15.1-beta.0 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/partner-sdk-node@1.14.1-beta.6
24
+ yarn add @emilgroup/partner-sdk-node@1.15.1-beta.0
25
25
  ```
26
26
 
27
27
  And then you can import `PartnersApi`.
@@ -57,19 +57,15 @@ export const PartnersApiAxiosParamCreator = function (configuration?: Configurat
57
57
  /**
58
58
  * Creates or updates a partner from an account. Resolves the account by partner code if not provided. **Required Permissions** \"partner-management.partners.create\"
59
59
  * @summary Retrieve the create or update partner from account
60
- * @param {any} code Unique identifier for the object.
61
60
  * @param {CreateOrUpdatePartnerFromAccountRequestDto} createOrUpdatePartnerFromAccountRequestDto
62
61
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
63
62
  * @param {*} [options] Override http request option.
64
63
  * @throws {RequiredError}
65
64
  */
66
- createOrUpdatePartnerFromAccount: async (code: any, createOrUpdatePartnerFromAccountRequestDto: CreateOrUpdatePartnerFromAccountRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
67
- // verify required parameter 'code' is not null or undefined
68
- assertParamExists('createOrUpdatePartnerFromAccount', 'code', code)
65
+ createOrUpdatePartnerFromAccount: async (createOrUpdatePartnerFromAccountRequestDto: CreateOrUpdatePartnerFromAccountRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
69
66
  // verify required parameter 'createOrUpdatePartnerFromAccountRequestDto' is not null or undefined
70
67
  assertParamExists('createOrUpdatePartnerFromAccount', 'createOrUpdatePartnerFromAccountRequestDto', createOrUpdatePartnerFromAccountRequestDto)
71
- const localVarPath = `/partnerservice/v1/partners/create-or-update-partner-from-account`
72
- .replace(`{${"code"}}`, encodeURIComponent(String(code)));
68
+ const localVarPath = `/partnerservice/v1/partners/create-or-update-partner-from-account`;
73
69
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
74
70
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
75
71
  let baseOptions;
@@ -563,14 +559,13 @@ export const PartnersApiFp = function(configuration?: Configuration) {
563
559
  /**
564
560
  * Creates or updates a partner from an account. Resolves the account by partner code if not provided. **Required Permissions** \"partner-management.partners.create\"
565
561
  * @summary Retrieve the create or update partner from account
566
- * @param {any} code Unique identifier for the object.
567
562
  * @param {CreateOrUpdatePartnerFromAccountRequestDto} createOrUpdatePartnerFromAccountRequestDto
568
563
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
569
564
  * @param {*} [options] Override http request option.
570
565
  * @throws {RequiredError}
571
566
  */
572
- async createOrUpdatePartnerFromAccount(code: any, createOrUpdatePartnerFromAccountRequestDto: CreateOrUpdatePartnerFromAccountRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateOrUpdatePartnerFromAccountResponseClass>> {
573
- const localVarAxiosArgs = await localVarAxiosParamCreator.createOrUpdatePartnerFromAccount(code, createOrUpdatePartnerFromAccountRequestDto, authorization, options);
567
+ async createOrUpdatePartnerFromAccount(createOrUpdatePartnerFromAccountRequestDto: CreateOrUpdatePartnerFromAccountRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateOrUpdatePartnerFromAccountResponseClass>> {
568
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createOrUpdatePartnerFromAccount(createOrUpdatePartnerFromAccountRequestDto, authorization, options);
574
569
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
575
570
  },
576
571
  /**
@@ -698,14 +693,13 @@ export const PartnersApiFactory = function (configuration?: Configuration, baseP
698
693
  /**
699
694
  * Creates or updates a partner from an account. Resolves the account by partner code if not provided. **Required Permissions** \"partner-management.partners.create\"
700
695
  * @summary Retrieve the create or update partner from account
701
- * @param {any} code Unique identifier for the object.
702
696
  * @param {CreateOrUpdatePartnerFromAccountRequestDto} createOrUpdatePartnerFromAccountRequestDto
703
697
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
704
698
  * @param {*} [options] Override http request option.
705
699
  * @throws {RequiredError}
706
700
  */
707
- createOrUpdatePartnerFromAccount(code: any, createOrUpdatePartnerFromAccountRequestDto: CreateOrUpdatePartnerFromAccountRequestDto, authorization?: string, options?: any): AxiosPromise<CreateOrUpdatePartnerFromAccountResponseClass> {
708
- return localVarFp.createOrUpdatePartnerFromAccount(code, createOrUpdatePartnerFromAccountRequestDto, authorization, options).then((request) => request(axios, basePath));
701
+ createOrUpdatePartnerFromAccount(createOrUpdatePartnerFromAccountRequestDto: CreateOrUpdatePartnerFromAccountRequestDto, authorization?: string, options?: any): AxiosPromise<CreateOrUpdatePartnerFromAccountResponseClass> {
702
+ return localVarFp.createOrUpdatePartnerFromAccount(createOrUpdatePartnerFromAccountRequestDto, authorization, options).then((request) => request(axios, basePath));
709
703
  },
710
704
  /**
711
705
  * This will create a partner. **Required Permissions** \"partner-management.partners.create\"
@@ -820,13 +814,6 @@ export const PartnersApiFactory = function (configuration?: Configuration, baseP
820
814
  * @interface PartnersApiCreateOrUpdatePartnerFromAccountRequest
821
815
  */
822
816
  export interface PartnersApiCreateOrUpdatePartnerFromAccountRequest {
823
- /**
824
- * Unique identifier for the object.
825
- * @type {any}
826
- * @memberof PartnersApiCreateOrUpdatePartnerFromAccount
827
- */
828
- readonly code: any
829
-
830
817
  /**
831
818
  *
832
819
  * @type {CreateOrUpdatePartnerFromAccountRequestDto}
@@ -1138,7 +1125,7 @@ export class PartnersApi extends BaseAPI {
1138
1125
  * @memberof PartnersApi
1139
1126
  */
1140
1127
  public createOrUpdatePartnerFromAccount(requestParameters: PartnersApiCreateOrUpdatePartnerFromAccountRequest, options?: AxiosRequestConfig) {
1141
- return PartnersApiFp(this.configuration).createOrUpdatePartnerFromAccount(requestParameters.code, requestParameters.createOrUpdatePartnerFromAccountRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
1128
+ return PartnersApiFp(this.configuration).createOrUpdatePartnerFromAccount(requestParameters.createOrUpdatePartnerFromAccountRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
1142
1129
  }
1143
1130
 
1144
1131
  /**
@@ -32,13 +32,12 @@ export declare const PartnersApiAxiosParamCreator: (configuration?: Configuratio
32
32
  /**
33
33
  * Creates or updates a partner from an account. Resolves the account by partner code if not provided. **Required Permissions** \"partner-management.partners.create\"
34
34
  * @summary Retrieve the create or update partner from account
35
- * @param {any} code Unique identifier for the object.
36
35
  * @param {CreateOrUpdatePartnerFromAccountRequestDto} createOrUpdatePartnerFromAccountRequestDto
37
36
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
38
37
  * @param {*} [options] Override http request option.
39
38
  * @throws {RequiredError}
40
39
  */
41
- createOrUpdatePartnerFromAccount: (code: any, createOrUpdatePartnerFromAccountRequestDto: CreateOrUpdatePartnerFromAccountRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
40
+ createOrUpdatePartnerFromAccount: (createOrUpdatePartnerFromAccountRequestDto: CreateOrUpdatePartnerFromAccountRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
42
41
  /**
43
42
  * This will create a partner. **Required Permissions** \"partner-management.partners.create\"
44
43
  * @summary Create the partner
@@ -136,13 +135,12 @@ export declare const PartnersApiFp: (configuration?: Configuration) => {
136
135
  /**
137
136
  * Creates or updates a partner from an account. Resolves the account by partner code if not provided. **Required Permissions** \"partner-management.partners.create\"
138
137
  * @summary Retrieve the create or update partner from account
139
- * @param {any} code Unique identifier for the object.
140
138
  * @param {CreateOrUpdatePartnerFromAccountRequestDto} createOrUpdatePartnerFromAccountRequestDto
141
139
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
142
140
  * @param {*} [options] Override http request option.
143
141
  * @throws {RequiredError}
144
142
  */
145
- createOrUpdatePartnerFromAccount(code: any, createOrUpdatePartnerFromAccountRequestDto: CreateOrUpdatePartnerFromAccountRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateOrUpdatePartnerFromAccountResponseClass>>;
143
+ createOrUpdatePartnerFromAccount(createOrUpdatePartnerFromAccountRequestDto: CreateOrUpdatePartnerFromAccountRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateOrUpdatePartnerFromAccountResponseClass>>;
146
144
  /**
147
145
  * This will create a partner. **Required Permissions** \"partner-management.partners.create\"
148
146
  * @summary Create the partner
@@ -240,13 +238,12 @@ export declare const PartnersApiFactory: (configuration?: Configuration, basePat
240
238
  /**
241
239
  * Creates or updates a partner from an account. Resolves the account by partner code if not provided. **Required Permissions** \"partner-management.partners.create\"
242
240
  * @summary Retrieve the create or update partner from account
243
- * @param {any} code Unique identifier for the object.
244
241
  * @param {CreateOrUpdatePartnerFromAccountRequestDto} createOrUpdatePartnerFromAccountRequestDto
245
242
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
246
243
  * @param {*} [options] Override http request option.
247
244
  * @throws {RequiredError}
248
245
  */
249
- createOrUpdatePartnerFromAccount(code: any, createOrUpdatePartnerFromAccountRequestDto: CreateOrUpdatePartnerFromAccountRequestDto, authorization?: string, options?: any): AxiosPromise<CreateOrUpdatePartnerFromAccountResponseClass>;
246
+ createOrUpdatePartnerFromAccount(createOrUpdatePartnerFromAccountRequestDto: CreateOrUpdatePartnerFromAccountRequestDto, authorization?: string, options?: any): AxiosPromise<CreateOrUpdatePartnerFromAccountResponseClass>;
250
247
  /**
251
248
  * This will create a partner. **Required Permissions** \"partner-management.partners.create\"
252
249
  * @summary Create the partner
@@ -342,12 +339,6 @@ export declare const PartnersApiFactory: (configuration?: Configuration, basePat
342
339
  * @interface PartnersApiCreateOrUpdatePartnerFromAccountRequest
343
340
  */
344
341
  export interface PartnersApiCreateOrUpdatePartnerFromAccountRequest {
345
- /**
346
- * Unique identifier for the object.
347
- * @type {any}
348
- * @memberof PartnersApiCreateOrUpdatePartnerFromAccount
349
- */
350
- readonly code: any;
351
342
  /**
352
343
  *
353
344
  * @type {CreateOrUpdatePartnerFromAccountRequestDto}
@@ -99,25 +99,21 @@ var PartnersApiAxiosParamCreator = function (configuration) {
99
99
  /**
100
100
  * Creates or updates a partner from an account. Resolves the account by partner code if not provided. **Required Permissions** \"partner-management.partners.create\"
101
101
  * @summary Retrieve the create or update partner from account
102
- * @param {any} code Unique identifier for the object.
103
102
  * @param {CreateOrUpdatePartnerFromAccountRequestDto} createOrUpdatePartnerFromAccountRequestDto
104
103
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
105
104
  * @param {*} [options] Override http request option.
106
105
  * @throws {RequiredError}
107
106
  */
108
- createOrUpdatePartnerFromAccount: function (code, createOrUpdatePartnerFromAccountRequestDto, authorization, options) {
107
+ createOrUpdatePartnerFromAccount: function (createOrUpdatePartnerFromAccountRequestDto, authorization, options) {
109
108
  if (options === void 0) { options = {}; }
110
109
  return __awaiter(_this, void 0, void 0, function () {
111
110
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
112
111
  return __generator(this, function (_a) {
113
112
  switch (_a.label) {
114
113
  case 0:
115
- // verify required parameter 'code' is not null or undefined
116
- (0, common_1.assertParamExists)('createOrUpdatePartnerFromAccount', 'code', code);
117
114
  // verify required parameter 'createOrUpdatePartnerFromAccountRequestDto' is not null or undefined
118
115
  (0, common_1.assertParamExists)('createOrUpdatePartnerFromAccount', 'createOrUpdatePartnerFromAccountRequestDto', createOrUpdatePartnerFromAccountRequestDto);
119
- localVarPath = "/partnerservice/v1/partners/create-or-update-partner-from-account"
120
- .replace("{".concat("code", "}"), encodeURIComponent(String(code)));
116
+ localVarPath = "/partnerservice/v1/partners/create-or-update-partner-from-account";
121
117
  localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
122
118
  if (configuration) {
123
119
  baseOptions = configuration.baseOptions;
@@ -613,18 +609,17 @@ var PartnersApiFp = function (configuration) {
613
609
  /**
614
610
  * Creates or updates a partner from an account. Resolves the account by partner code if not provided. **Required Permissions** \"partner-management.partners.create\"
615
611
  * @summary Retrieve the create or update partner from account
616
- * @param {any} code Unique identifier for the object.
617
612
  * @param {CreateOrUpdatePartnerFromAccountRequestDto} createOrUpdatePartnerFromAccountRequestDto
618
613
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
619
614
  * @param {*} [options] Override http request option.
620
615
  * @throws {RequiredError}
621
616
  */
622
- createOrUpdatePartnerFromAccount: function (code, createOrUpdatePartnerFromAccountRequestDto, authorization, options) {
617
+ createOrUpdatePartnerFromAccount: function (createOrUpdatePartnerFromAccountRequestDto, authorization, options) {
623
618
  return __awaiter(this, void 0, void 0, function () {
624
619
  var localVarAxiosArgs;
625
620
  return __generator(this, function (_a) {
626
621
  switch (_a.label) {
627
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.createOrUpdatePartnerFromAccount(code, createOrUpdatePartnerFromAccountRequestDto, authorization, options)];
622
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.createOrUpdatePartnerFromAccount(createOrUpdatePartnerFromAccountRequestDto, authorization, options)];
628
623
  case 1:
629
624
  localVarAxiosArgs = _a.sent();
630
625
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -829,14 +824,13 @@ var PartnersApiFactory = function (configuration, basePath, axios) {
829
824
  /**
830
825
  * Creates or updates a partner from an account. Resolves the account by partner code if not provided. **Required Permissions** \"partner-management.partners.create\"
831
826
  * @summary Retrieve the create or update partner from account
832
- * @param {any} code Unique identifier for the object.
833
827
  * @param {CreateOrUpdatePartnerFromAccountRequestDto} createOrUpdatePartnerFromAccountRequestDto
834
828
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
835
829
  * @param {*} [options] Override http request option.
836
830
  * @throws {RequiredError}
837
831
  */
838
- createOrUpdatePartnerFromAccount: function (code, createOrUpdatePartnerFromAccountRequestDto, authorization, options) {
839
- return localVarFp.createOrUpdatePartnerFromAccount(code, createOrUpdatePartnerFromAccountRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
832
+ createOrUpdatePartnerFromAccount: function (createOrUpdatePartnerFromAccountRequestDto, authorization, options) {
833
+ return localVarFp.createOrUpdatePartnerFromAccount(createOrUpdatePartnerFromAccountRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
840
834
  },
841
835
  /**
842
836
  * This will create a partner. **Required Permissions** \"partner-management.partners.create\"
@@ -966,7 +960,7 @@ var PartnersApi = /** @class */ (function (_super) {
966
960
  */
967
961
  PartnersApi.prototype.createOrUpdatePartnerFromAccount = function (requestParameters, options) {
968
962
  var _this = this;
969
- return (0, exports.PartnersApiFp)(this.configuration).createOrUpdatePartnerFromAccount(requestParameters.code, requestParameters.createOrUpdatePartnerFromAccountRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
963
+ return (0, exports.PartnersApiFp)(this.configuration).createOrUpdatePartnerFromAccount(requestParameters.createOrUpdatePartnerFromAccountRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
970
964
  };
971
965
  /**
972
966
  * This will create a partner. **Required Permissions** \"partner-management.partners.create\"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/partner-sdk-node",
3
- "version": "1.14.1-beta.6",
3
+ "version": "1.15.1-beta.0",
4
4
  "description": "OpenAPI client for @emilgroup/partner-sdk-node",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [