@dynamic-labs/sdk-api 0.0.727 → 0.0.729

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/sdk-api",
3
- "version": "0.0.727",
3
+ "version": "0.0.729",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -140,7 +140,7 @@ class WaasApi extends runtime.BaseAPI {
140
140
  const headerParameters = {};
141
141
  headerParameters['Content-Type'] = 'application/json';
142
142
  const response = yield this.request({
143
- path: `/environments/{environmentId}/waas/delegated/signMessage`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))).replace(`{${"walletId"}}`, encodeURIComponent(String(requestParameters.walletId))),
143
+ path: `/environments/{environmentId}/waas/{walletId}/delegated/signMessage`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))).replace(`{${"walletId"}}`, encodeURIComponent(String(requestParameters.walletId))),
144
144
  method: 'POST',
145
145
  headers: headerParameters,
146
146
  query: queryParameters,
@@ -136,7 +136,7 @@ class WaasApi extends BaseAPI {
136
136
  const headerParameters = {};
137
137
  headerParameters['Content-Type'] = 'application/json';
138
138
  const response = yield this.request({
139
- path: `/environments/{environmentId}/waas/delegated/signMessage`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))).replace(`{${"walletId"}}`, encodeURIComponent(String(requestParameters.walletId))),
139
+ path: `/environments/{environmentId}/waas/{walletId}/delegated/signMessage`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))).replace(`{${"walletId"}}`, encodeURIComponent(String(requestParameters.walletId))),
140
140
  method: 'POST',
141
141
  headers: headerParameters,
142
142
  query: queryParameters,
@@ -27,6 +27,7 @@ exports.UserIdentifierTypeEnum = void 0;
27
27
  UserIdentifierTypeEnum["ExternalUserId"] = "externalUserId";
28
28
  UserIdentifierTypeEnum["PhoneNumber"] = "phoneNumber";
29
29
  UserIdentifierTypeEnum["SocialUsername"] = "socialUsername";
30
+ UserIdentifierTypeEnum["SocialAccountId"] = "socialAccountId";
30
31
  })(exports.UserIdentifierTypeEnum || (exports.UserIdentifierTypeEnum = {}));
31
32
  function UserIdentifierTypeEnumFromJSON(json) {
32
33
  return UserIdentifierTypeEnumFromJSONTyped(json);
@@ -19,7 +19,8 @@ export declare enum UserIdentifierTypeEnum {
19
19
  Id = "id",
20
20
  ExternalUserId = "externalUserId",
21
21
  PhoneNumber = "phoneNumber",
22
- SocialUsername = "socialUsername"
22
+ SocialUsername = "socialUsername",
23
+ SocialAccountId = "socialAccountId"
23
24
  }
24
25
  export declare function UserIdentifierTypeEnumFromJSON(json: any): UserIdentifierTypeEnum;
25
26
  export declare function UserIdentifierTypeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserIdentifierTypeEnum;
@@ -23,6 +23,7 @@ var UserIdentifierTypeEnum;
23
23
  UserIdentifierTypeEnum["ExternalUserId"] = "externalUserId";
24
24
  UserIdentifierTypeEnum["PhoneNumber"] = "phoneNumber";
25
25
  UserIdentifierTypeEnum["SocialUsername"] = "socialUsername";
26
+ UserIdentifierTypeEnum["SocialAccountId"] = "socialAccountId";
26
27
  })(UserIdentifierTypeEnum || (UserIdentifierTypeEnum = {}));
27
28
  function UserIdentifierTypeEnumFromJSON(json) {
28
29
  return UserIdentifierTypeEnumFromJSONTyped(json);