@dynamic-labs/sdk-api 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
|
@@ -4225,7 +4225,7 @@ class SDKApi extends runtime.BaseAPI {
|
|
|
4225
4225
|
headerParameters['Content-Type'] = 'application/json';
|
|
4226
4226
|
const response = yield this.request({
|
|
4227
4227
|
path: `/sdk/{environmentId}/checkTelegramAuth`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))),
|
|
4228
|
-
method: '
|
|
4228
|
+
method: 'POST',
|
|
4229
4229
|
headers: headerParameters,
|
|
4230
4230
|
query: queryParameters,
|
|
4231
4231
|
body: OauthResultRequest.OauthResultRequestToJSON(requestParameters.oauthResultRequest),
|
package/src/apis/SDKApi.js
CHANGED
|
@@ -4221,7 +4221,7 @@ class SDKApi extends BaseAPI {
|
|
|
4221
4221
|
headerParameters['Content-Type'] = 'application/json';
|
|
4222
4222
|
const response = yield this.request({
|
|
4223
4223
|
path: `/sdk/{environmentId}/checkTelegramAuth`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))),
|
|
4224
|
-
method: '
|
|
4224
|
+
method: 'POST',
|
|
4225
4225
|
headers: headerParameters,
|
|
4226
4226
|
query: queryParameters,
|
|
4227
4227
|
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
|
|