@dynamic-labs/sdk-api 0.0.797 → 0.0.798

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.797",
3
+ "version": "0.0.798",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -15,6 +15,7 @@ function OauthInitAuthRequestFromJSONTyped(json, ignoreDiscriminator) {
15
15
  return {
16
16
  'state': json['state'],
17
17
  'redirectUrl': !runtime.exists(json, 'redirectUrl') ? undefined : json['redirectUrl'],
18
+ 'ssoProviderId': !runtime.exists(json, 'ssoProviderId') ? undefined : json['ssoProviderId'],
18
19
  };
19
20
  }
20
21
  function OauthInitAuthRequestToJSON(value) {
@@ -27,6 +28,7 @@ function OauthInitAuthRequestToJSON(value) {
27
28
  return {
28
29
  'state': value.state,
29
30
  'redirectUrl': value.redirectUrl,
31
+ 'ssoProviderId': value.ssoProviderId,
30
32
  };
31
33
  }
32
34
 
@@ -27,6 +27,12 @@ export interface OauthInitAuthRequest {
27
27
  * @memberof OauthInitAuthRequest
28
28
  */
29
29
  redirectUrl?: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof OauthInitAuthRequest
34
+ */
35
+ ssoProviderId?: string;
30
36
  }
31
37
  export declare function OauthInitAuthRequestFromJSON(json: any): OauthInitAuthRequest;
32
38
  export declare function OauthInitAuthRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): OauthInitAuthRequest;
@@ -11,6 +11,7 @@ function OauthInitAuthRequestFromJSONTyped(json, ignoreDiscriminator) {
11
11
  return {
12
12
  'state': json['state'],
13
13
  'redirectUrl': !exists(json, 'redirectUrl') ? undefined : json['redirectUrl'],
14
+ 'ssoProviderId': !exists(json, 'ssoProviderId') ? undefined : json['ssoProviderId'],
14
15
  };
15
16
  }
16
17
  function OauthInitAuthRequestToJSON(value) {
@@ -23,6 +24,7 @@ function OauthInitAuthRequestToJSON(value) {
23
24
  return {
24
25
  'state': value.state,
25
26
  'redirectUrl': value.redirectUrl,
27
+ 'ssoProviderId': value.ssoProviderId,
26
28
  };
27
29
  }
28
30
 
@@ -18,6 +18,7 @@ function OauthRequestFromJSONTyped(json, ignoreDiscriminator) {
18
18
  'state': json['state'],
19
19
  'captchaToken': !runtime.exists(json, 'captchaToken') ? undefined : json['captchaToken'],
20
20
  'sessionPublicKey': !runtime.exists(json, 'sessionPublicKey') ? undefined : json['sessionPublicKey'],
21
+ 'ssoProviderId': !runtime.exists(json, 'ssoProviderId') ? undefined : json['ssoProviderId'],
21
22
  };
22
23
  }
23
24
  function OauthRequestToJSON(value) {
@@ -33,6 +34,7 @@ function OauthRequestToJSON(value) {
33
34
  'state': value.state,
34
35
  'captchaToken': value.captchaToken,
35
36
  'sessionPublicKey': value.sessionPublicKey,
37
+ 'ssoProviderId': value.ssoProviderId,
36
38
  };
37
39
  }
38
40
 
@@ -45,6 +45,12 @@ export interface OauthRequest {
45
45
  * @memberof OauthRequest
46
46
  */
47
47
  sessionPublicKey?: string;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof OauthRequest
52
+ */
53
+ ssoProviderId?: string;
48
54
  }
49
55
  export declare function OauthRequestFromJSON(json: any): OauthRequest;
50
56
  export declare function OauthRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): OauthRequest;
@@ -14,6 +14,7 @@ function OauthRequestFromJSONTyped(json, ignoreDiscriminator) {
14
14
  'state': json['state'],
15
15
  'captchaToken': !exists(json, 'captchaToken') ? undefined : json['captchaToken'],
16
16
  'sessionPublicKey': !exists(json, 'sessionPublicKey') ? undefined : json['sessionPublicKey'],
17
+ 'ssoProviderId': !exists(json, 'ssoProviderId') ? undefined : json['ssoProviderId'],
17
18
  };
18
19
  }
19
20
  function OauthRequestToJSON(value) {
@@ -29,6 +30,7 @@ function OauthRequestToJSON(value) {
29
30
  'state': value.state,
30
31
  'captchaToken': value.captchaToken,
31
32
  'sessionPublicKey': value.sessionPublicKey,
33
+ 'ssoProviderId': value.ssoProviderId,
32
34
  };
33
35
  }
34
36