File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/google_identity_services_web Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 3131 * ` enable_granular_consent ` to ` OverridableTokenClientConfig ` .
3232 * ` message ` to ` GoogleIdentityServicesError ` .
3333 * Fixes:
34- * Assert that ` CodeClientConfig. scope` is not empty when creating an instance.
35- * ` TokenClientConfig.scope ` is no longer ` required ` .
34+ * Assert that ` scope ` is not empty when used to create ` CodeClientConfig ` ,
35+ ` TokenClientConfig ` , and ` OverridableTokenClientConfig ` instances .
3636 * Deprecated ` enable_serial_consent ` .
3737
3838## 0.2.2
Original file line number Diff line number Diff line change @@ -250,7 +250,7 @@ abstract class TokenClientConfig {
250250 return TokenClientConfig ._toJS (
251251 client_id: client_id.toJS,
252252 callback: callback.toJS,
253- scope: scope? .join (' ' ).toJS,
253+ scope: scope.join (' ' ).toJS,
254254 include_granted_scopes: include_granted_scopes? .toJS,
255255 prompt: prompt? .toJS,
256256 enable_granular_consent: enable_granular_consent? .toJS,
You can’t perform that action at this time.
0 commit comments