@dynamic-labs/sdk-api-core 0.0.533 → 0.0.535
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
CHANGED
package/src/apis/SDKApi.cjs
CHANGED
|
@@ -4158,7 +4158,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4158
4158
|
headerParameters['Content-Type'] = 'application/json';
|
|
4159
4159
|
const response = yield this.request({
|
|
4160
4160
|
path: `/sdk/{environmentId}/checkTelegramAuth`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))),
|
|
4161
|
-
method: '
|
|
4161
|
+
method: 'POST',
|
|
4162
4162
|
headers: headerParameters,
|
|
4163
4163
|
query: queryParameters,
|
|
4164
4164
|
body: OauthResultRequest.OauthResultRequestToJSON(requestParameters.oauthResultRequest),
|
package/src/apis/SDKApi.js
CHANGED
|
@@ -4154,7 +4154,7 @@ class SDKApi extends BaseAPI {
|
|
|
4154
4154
|
headerParameters['Content-Type'] = 'application/json';
|
|
4155
4155
|
const response = yield this.request({
|
|
4156
4156
|
path: `/sdk/{environmentId}/checkTelegramAuth`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))),
|
|
4157
|
-
method: '
|
|
4157
|
+
method: 'POST',
|
|
4158
4158
|
headers: headerParameters,
|
|
4159
4159
|
query: queryParameters,
|
|
4160
4160
|
body: OauthResultRequestToJSON(requestParameters.oauthResultRequest),
|
|
@@ -15,6 +15,7 @@ function ProjectSettingsSdkWalletConnectFromJSONTyped(json, ignoreDiscriminator)
|
|
|
15
15
|
return {
|
|
16
16
|
'projectId': !runtime.exists(json, 'projectId') ? undefined : json['projectId'],
|
|
17
17
|
'v2Enabled': !runtime.exists(json, 'v2Enabled') ? undefined : json['v2Enabled'],
|
|
18
|
+
'walletProjectId': !runtime.exists(json, 'walletProjectId') ? undefined : json['walletProjectId'],
|
|
18
19
|
};
|
|
19
20
|
}
|
|
20
21
|
function ProjectSettingsSdkWalletConnectToJSON(value) {
|
|
@@ -27,6 +28,7 @@ function ProjectSettingsSdkWalletConnectToJSON(value) {
|
|
|
27
28
|
return {
|
|
28
29
|
'projectId': value.projectId,
|
|
29
30
|
'v2Enabled': value.v2Enabled,
|
|
31
|
+
'walletProjectId': value.walletProjectId,
|
|
30
32
|
};
|
|
31
33
|
}
|
|
32
34
|
|
|
@@ -27,6 +27,12 @@ export interface ProjectSettingsSdkWalletConnect {
|
|
|
27
27
|
* @memberof ProjectSettingsSdkWalletConnect
|
|
28
28
|
*/
|
|
29
29
|
v2Enabled?: boolean;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ProjectSettingsSdkWalletConnect
|
|
34
|
+
*/
|
|
35
|
+
walletProjectId?: string;
|
|
30
36
|
}
|
|
31
37
|
export declare function ProjectSettingsSdkWalletConnectFromJSON(json: any): ProjectSettingsSdkWalletConnect;
|
|
32
38
|
export declare function ProjectSettingsSdkWalletConnectFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectSettingsSdkWalletConnect;
|
|
@@ -11,6 +11,7 @@ function ProjectSettingsSdkWalletConnectFromJSONTyped(json, ignoreDiscriminator)
|
|
|
11
11
|
return {
|
|
12
12
|
'projectId': !exists(json, 'projectId') ? undefined : json['projectId'],
|
|
13
13
|
'v2Enabled': !exists(json, 'v2Enabled') ? undefined : json['v2Enabled'],
|
|
14
|
+
'walletProjectId': !exists(json, 'walletProjectId') ? undefined : json['walletProjectId'],
|
|
14
15
|
};
|
|
15
16
|
}
|
|
16
17
|
function ProjectSettingsSdkWalletConnectToJSON(value) {
|
|
@@ -23,6 +24,7 @@ function ProjectSettingsSdkWalletConnectToJSON(value) {
|
|
|
23
24
|
return {
|
|
24
25
|
'projectId': value.projectId,
|
|
25
26
|
'v2Enabled': value.v2Enabled,
|
|
27
|
+
'walletProjectId': value.walletProjectId,
|
|
26
28
|
};
|
|
27
29
|
}
|
|
28
30
|
|