-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathconfig.json.example
86 lines (86 loc) · 2.62 KB
/
config.json.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"logging": {
"version": 1,
"handlers": {
"gotifyHandler": {
"class": "gotify_handler.GotifyHandler",
"level": "INFO",
"app_token": "",
"server_url": "https://gotify.example.com",
"extras": {
"client::display": {
"contentType": "text/markdown"
}
}
}
},
"loggers": {
"shopgoodwill_alert_on_new_query_results": {
"handlers": ["gotifyHandler"],
"level": "INFO"
},
"shopgoodwill_bid_sniper": {
"handlers": ["gotifyHandler"],
"level": "INFO"
}
}
},
"auth_info": {
"access_token": "",
"encrypted_username": "",
"encrypted_password": "",
"username": "",
"password": ""
},
"bid_sniper": {
"refresh_seconds": 300,
"bid_snipe_time_delta": "30 seconds",
"favorites_max_cache_seconds": 60,
"friend_list": [],
"alert_time_deltas": [
"1 hour",
"30 minutes",
"10 minutes",
"5 minutes",
"1 minute",
"30 seconds"
],
"favorite_default_note": "{\"max_bid\": 0.99}"
},
"seen_listings_filename": "seen_listings.json",
"saved_queries": {
"tuscon_pick_up_only": {
"isSize": false,
"isWeddingCatagory": "false",
"isMultipleCategoryIds": false,
"isFromHeaderMenuTab": false,
"layout": "",
"searchText": "",
"selectedGroup": "",
"selectedCategoryIds": "",
"selectedSellerIds": "148",
"lowPrice": "0",
"highPrice": "999999",
"searchBuyNowOnly": "",
"searchPickupOnly": "true",
"searchNoPickupOnly": "false",
"searchOneCentShippingOnly": "false",
"searchDescriptions": "false",
"searchClosedAuctions": "false",
"closedAuctionEndingDate": "2/13/2022",
"closedAuctionDaysBack": "7",
"searchCanadaShipping": "false",
"searchInternationalShippingOnly": "false",
"sortColumn": "1",
"sortDescending": "false",
"savedSearchId": 0,
"useBuyerPrefs": "true",
"searchUSOnlyShipping": "false",
"categoryLevelNo": "1",
"categoryLevel": 1,
"categoryId": 0,
"partNumber": "",
"catIds": ""
}
}
}