@dynamic-labs/sdk-api 0.0.542 → 0.0.543

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.542",
3
+ "version": "0.0.543",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -93,11 +93,11 @@ export interface Provider {
93
93
  */
94
94
  termsAcceptedByUser?: ProviderAgreement;
95
95
  /**
96
- * Optional custom list of Oauth scopes for the social provider
97
- * @type {Array<string>}
96
+ * Optional custom space-delimited list of Oauth scopes for the social provider
97
+ * @type {string}
98
98
  * @memberof Provider
99
99
  */
100
- scopes?: Array<string>;
100
+ scopes?: string;
101
101
  /**
102
102
  * Key ID required for Apple Oauth2 applications. This is the identifier for a private key.
103
103
  * @type {string}
@@ -73,11 +73,11 @@ export interface ProviderCreateRequest {
73
73
  */
74
74
  useDynamicCredentials?: boolean;
75
75
  /**
76
- * Optional custom list of Oauth scopes for the social provider
77
- * @type {Array<string>}
76
+ * Optional custom space-delimited list of Oauth scopes for the social provider
77
+ * @type {string}
78
78
  * @memberof ProviderCreateRequest
79
79
  */
80
- scopes?: Array<string>;
80
+ scopes?: string;
81
81
  /**
82
82
  * Key ID required for Apple Oauth2 applications. This is the identifier for a private key.
83
83
  * @type {string}
@@ -60,11 +60,11 @@ export interface ProviderUpdateRequest {
60
60
  */
61
61
  useDynamicCredentials?: boolean;
62
62
  /**
63
- * Optional custom list of Oauth scopes for the social provider
64
- * @type {Array<string>}
63
+ * Optional custom space-delimited list of Oauth scopes for the social provider
64
+ * @type {string}
65
65
  * @memberof ProviderUpdateRequest
66
66
  */
67
- scopes?: Array<string>;
67
+ scopes?: string;
68
68
  /**
69
69
  * Key ID required for Apple Oauth2 applications. This is the identifier for a private key.
70
70
  * @type {string}