@dynamic-labs/sdk-api 0.0.1114 → 0.0.1115
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/package.json +1 -1
- package/src/apis/SDKApi.cjs +3 -0
- package/src/apis/SDKApi.d.ts +1 -0
- package/src/apis/SDKApi.js +3 -0
package/package.json
CHANGED
package/src/apis/SDKApi.cjs
CHANGED
|
@@ -9110,6 +9110,9 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
9110
9110
|
throw new runtime.RequiredError('environmentId', 'Required parameter requestParameters.environmentId was null or undefined when calling sdkListBusinessAccounts.');
|
|
9111
9111
|
}
|
|
9112
9112
|
const queryParameters = {};
|
|
9113
|
+
if (requestParameters.externalRef) {
|
|
9114
|
+
queryParameters['externalRef'] = requestParameters.externalRef;
|
|
9115
|
+
}
|
|
9113
9116
|
const headerParameters = {};
|
|
9114
9117
|
if (this.configuration && this.configuration.accessToken) {
|
|
9115
9118
|
const token = this.configuration.accessToken;
|
package/src/apis/SDKApi.d.ts
CHANGED
|
@@ -1159,6 +1159,7 @@ export interface SdkLinkBusinessAccountWalletRequest {
|
|
|
1159
1159
|
}
|
|
1160
1160
|
export interface SdkListBusinessAccountsRequest {
|
|
1161
1161
|
environmentId: string;
|
|
1162
|
+
externalRef?: Array<string>;
|
|
1162
1163
|
}
|
|
1163
1164
|
export interface SdkRemoveBusinessAccountMemberRequest {
|
|
1164
1165
|
environmentId: string;
|
package/src/apis/SDKApi.js
CHANGED
|
@@ -9106,6 +9106,9 @@ class SDKApi extends BaseAPI {
|
|
|
9106
9106
|
throw new RequiredError('environmentId', 'Required parameter requestParameters.environmentId was null or undefined when calling sdkListBusinessAccounts.');
|
|
9107
9107
|
}
|
|
9108
9108
|
const queryParameters = {};
|
|
9109
|
+
if (requestParameters.externalRef) {
|
|
9110
|
+
queryParameters['externalRef'] = requestParameters.externalRef;
|
|
9111
|
+
}
|
|
9109
9112
|
const headerParameters = {};
|
|
9110
9113
|
if (this.configuration && this.configuration.accessToken) {
|
|
9111
9114
|
const token = this.configuration.accessToken;
|