Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🚧 Implement 2 to master (v0.2.0) #63

Closed
wants to merge 59 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
59 commits
Select commit Hold shift + click to select a range
4aefc07
Add Config
schettn Aug 5, 2020
b0f1796
Exchange hard coded credentials with config credentials
schettn Aug 5, 2020
1a88e6b
Update SnekSession Begin Return Value
schettn Aug 5, 2020
84d6469
Merge pull request #60 from snek-at/improve-tasks-aa1
schettn Aug 5, 2020
78d234c
Update Registration Mutation
schettn Aug 5, 2020
4468f0f
Update GitlabServer Query
schettn Aug 5, 2020
6966921
Add AllUserPageUrls Query
schettn Aug 5, 2020
6a84565
Update Profile Query
schettn Aug 5, 2020
3ff6097
Update GitlabServerData Interface
schettn Aug 5, 2020
f11310c
Update AllPageUrlData Interface
schettn Aug 5, 2020
eb570ee
Improve Code Quality
schettn Aug 5, 2020
ce78e5a
Add AllUserPageUrls Task and Interface
schettn Aug 5, 2020
9b2351c
Fix Syntax Error in AllUserPageUrls
schettn Aug 5, 2020
2cfd5da
Update Default SnekClient URL
schettn Aug 5, 2020
b1b4eeb
Update TokenAuth Mutation
schettn Aug 5, 2020
c311e6c
Update Whoami Query
schettn Aug 5, 2020
6aec1dd
Update AllUserPageUrls Query
schettn Aug 5, 2020
11d43fc
Update Profile Task
schettn Aug 5, 2020
2dbf638
Update Default SnekClient URL
schettn Aug 5, 2020
250d5fb
Merge pull request #61 from snek-at/update-snekset-aa1
schettn Aug 5, 2020
628d8f6
Bump to v0.2.0
schettn Aug 5, 2020
eb2b7e7
Update registration mutation
schettn Aug 12, 2020
2a740a5
Update cache mutation
schettn Aug 12, 2020
b9402d6
Update gitlabserver query
schettn Aug 12, 2020
f126002
Update alluserpages query
schettn Aug 12, 2020
8a28068
Update profile query
schettn Aug 12, 2020
c73ba3a
Update profile task
schettn Aug 12, 2020
eacfd7f
Add type declaration
schettn Aug 12, 2020
733a509
Update token aliveness
schettn Aug 12, 2020
115b57e
Merge pull request #65 from snek-at/improve-errorhandling-aa1
schettn Aug 24, 2020
37b77da
Update profile query and task
schettn Aug 24, 2020
f077450
Improve profile task
schettn Aug 26, 2020
214ca59
Update cache mutation and task
schettn Aug 26, 2020
f5aa706
Merge pull request #66 from snek-at/update-snekset-ba1
schettn Sep 1, 2020
48ff645
Add instagram session
schettn Sep 4, 2020
a8a23d3
Rename instagram uri to path
schettn Sep 5, 2020
6b75033
Optimise tasks and clients
schettn Sep 5, 2020
018556c
Merge branch 'add-instagram-aa1' into update-client-aa1
schettn Sep 6, 2020
71a865b
Merge branch 'improve-templates-aa1' into update-client-aa1
schettn Sep 6, 2020
4de7dcc
Support more HTTP methods
schettn Sep 6, 2020
89eb6fe
Merge branch 'improve-scraper-aa2' into update-client-aa1
schettn Sep 6, 2020
9d800f2
Fix invalid up to date token
schettn Sep 6, 2020
c4ee278
Merge branch 'improve-templates-ba1' into update-client-aa1
schettn Sep 6, 2020
cee2d68
Improve snek session begin return type
schettn Sep 6, 2020
d81b62c
Improve instagram client defaults
schettn Sep 6, 2020
d45a405
Fix task run error loop
schettn Sep 9, 2020
21f7fd9
Add cookie options
schettn Sep 9, 2020
7edb688
Add support for uploading files
schettn Sep 10, 2020
8e3103d
Fix token refresh issue with invalid refresh token
schettn Sep 10, 2020
a03b509
Cleanup
schettn Nov 7, 2020
b5dfd3b
Update package.json
schettn Nov 7, 2020
18acb6c
Implement codacy suggestions
schettn Nov 7, 2020
b85fc7b
Apply suggestions from code review
schettn Nov 9, 2020
4521d9c
Improve regions and comments
schettn Nov 9, 2020
5659b23
Apply suggestions from code review
schettn Nov 10, 2020
a7814ec
Improve comments
schettn Nov 10, 2020
27699b6
Merge pull request #67 from snek-at/update-client-aa1
schettn Nov 11, 2020
2e5a67d
Hotfix: Change compiler to babel
schettn Nov 26, 2020
b7f7b86
Add support for NodeJS
schettn Nov 27, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Default SnekClient URL
The default API URL has been
updated due to CSRF protection
errors.
  • Loading branch information
schettn committed Aug 5, 2020
commit 2dbf63829cc06abf03e79b3c7477df6860a5a468
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class SnekClient extends Client {
* @param type A type description to differ between multiple instances
*/
constructor(
url: string = "https://engine.snek.at/graphiql",
url: string = "https://engine.snek.at/graphql",
headers: object = {},
type: string = "graphql"
) {
Expand Down