api.fluff4.me 1.0.1012 → 1.0.1014

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/index.d.ts CHANGED
@@ -180,6 +180,7 @@ export interface AuthServices {
180
180
  github: AuthService
181
181
  patreon: AuthService
182
182
  google: AuthService
183
+ twitch: AuthService
183
184
  }
184
185
 
185
186
  export interface AuthService {
@@ -899,6 +900,7 @@ export interface Fundraiser {
899
900
  funds_raised: number
900
901
  id: string
901
902
  monthly_income: number
903
+ monthly_goal: number
902
904
  }
903
905
 
904
906
  export interface WorkCensorBody {
package/openapi.json CHANGED
@@ -947,13 +947,17 @@
947
947
  },
948
948
  "google": {
949
949
  "$ref": "#/components/schema/AuthService"
950
+ },
951
+ "twitch": {
952
+ "$ref": "#/components/schema/AuthService"
950
953
  }
951
954
  },
952
955
  "required": [
953
956
  "discord",
954
957
  "github",
955
958
  "patreon",
956
- "google"
959
+ "google",
960
+ "twitch"
957
961
  ]
958
962
  },
959
963
  "AuthService": {
@@ -5116,6 +5120,9 @@
5116
5120
  },
5117
5121
  "monthly_income": {
5118
5122
  "type": "number"
5123
+ },
5124
+ "monthly_goal": {
5125
+ "type": "number"
5119
5126
  }
5120
5127
  },
5121
5128
  "required": [
@@ -5123,7 +5130,8 @@
5123
5130
  "threshold_descriptions",
5124
5131
  "funds_raised",
5125
5132
  "id",
5126
- "monthly_income"
5133
+ "monthly_income",
5134
+ "monthly_goal"
5127
5135
  ]
5128
5136
  },
5129
5137
  "WorkCensorBody": {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.1012",
3
+ "version": "1.0.1014",
4
4
  "types": "index.d.ts"
5
5
  }