Skip to content

Commit 360c05c

Browse files
authored
Merge pull request #5 from intuit/develop
Develop
2 parents 2b16465 + ebd1e65 commit 360c05c

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

docs/user-guide.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Step 2: Get Authorization URL
2222

2323
Get authorization url by specifying list of `intuitlib.enums.Scopes` ::
2424

25-
url = auth_client.get_authorization_url([Scopes.Accounting])
25+
url = auth_client.get_authorization_url([Scopes.ACCOUNTING])
2626

2727
After user connects to the app, the callback URL has params for `state`, `auth_code` and `realm_id` (`realm_id` for Accounting and Payments scopes only)
2828

intuitlib/enums.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,6 @@ class Scopes(Enum):
3434
PAYROLL_TIMETRACKING = 'com.intuit.quickbooks.payroll.timetracking'
3535
PAROLL_BENEFITS = 'com.intuit.quickbooks.payroll.benefits'
3636

37-
37+
# For migrated apps only
38+
# To not see consent page they should pass the following scopes - openid intuit_name email
39+
INTUIT_NAME = 'intuit_name'

intuitlib/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = '1.1.1'
15+
__version__ = '1.2.0'
1616

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@ python-coveralls>=2.9.0
88
pytest>=3.8.0
99
pytest-cov==2.5.0
1010
six>=1.10.0
11-
enum34>=1.1.5
11+
enum-compat
12+
1213

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
'pytest>=3.8.0',
4141
'pytest-cov==2.5.0',
4242
'six>=1.10.0',
43-
'enum34>=1.1.5',
43+
'enum-compat',
4444
],
4545
license='Apache 2.0',
4646
keywords='intuit quickbooks oauth auth openid client'

0 commit comments

Comments
 (0)