c2-desafiox 1.0.106
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/dist/index.d.ts +7 -0
- package/dist/index.js +23 -0
- package/dist/models/Access.d.ts +55 -0
- package/dist/models/Access.js +18 -0
- package/dist/models/Account.d.ts +29 -0
- package/dist/models/Account.js +28 -0
- package/dist/models/AccountDeletionRequest.d.ts +31 -0
- package/dist/models/AccountDeletionRequest.js +35 -0
- package/dist/models/AccountNotification.d.ts +110 -0
- package/dist/models/AccountNotification.js +25 -0
- package/dist/models/AdminComunication.d.ts +102 -0
- package/dist/models/AdminComunication.js +23 -0
- package/dist/models/AdminEventComunication.d.ts +236 -0
- package/dist/models/AdminEventComunication.js +54 -0
- package/dist/models/AdminNotification.d.ts +86 -0
- package/dist/models/AdminNotification.js +26 -0
- package/dist/models/AdminTemplateEmail.d.ts +40 -0
- package/dist/models/AdminTemplateEmail.js +19 -0
- package/dist/models/AdminTemplatePush.d.ts +68 -0
- package/dist/models/AdminTemplatePush.js +23 -0
- package/dist/models/Challenge.d.ts +40 -0
- package/dist/models/Challenge.js +38 -0
- package/dist/models/ChallengeRound.d.ts +41 -0
- package/dist/models/ChallengeRound.js +24 -0
- package/dist/models/Championship.d.ts +23 -0
- package/dist/models/Championship.js +20 -0
- package/dist/models/ChampionshipClassification.d.ts +31 -0
- package/dist/models/ChampionshipClassification.js +26 -0
- package/dist/models/ChampionshipMatch.d.ts +33 -0
- package/dist/models/ChampionshipMatch.js +32 -0
- package/dist/models/ChampionshipPhase.d.ts +101 -0
- package/dist/models/ChampionshipPhase.js +55 -0
- package/dist/models/ChampionshipRound.d.ts +26 -0
- package/dist/models/ChampionshipRound.js +31 -0
- package/dist/models/File.d.ts +33 -0
- package/dist/models/File.js +12 -0
- package/dist/models/Team.d.ts +23 -0
- package/dist/models/Team.js +21 -0
- package/dist/models/Ticket.d.ts +34 -0
- package/dist/models/Ticket.js +33 -0
- package/dist/models/TicketGuess.d.ts +33 -0
- package/dist/models/TicketGuess.js +31 -0
- package/dist/models/TicketOrder.d.ts +54 -0
- package/dist/models/TicketOrder.js +45 -0
- package/dist/models/WalletMoviment.d.ts +67 -0
- package/dist/models/WalletMoviment.js +71 -0
- package/dist/models/index.d.ts +20 -0
- package/dist/models/index.js +36 -0
- package/dist/types/ChallengeRoundStatus.d.ts +14 -0
- package/dist/types/ChallengeRoundStatus.js +18 -0
- package/dist/types/ChallengeStatus.d.ts +6 -0
- package/dist/types/ChallengeStatus.js +10 -0
- package/dist/types/GroupMatchMode.d.ts +9 -0
- package/dist/types/GroupMatchMode.js +13 -0
- package/dist/types/MatchStatus.d.ts +11 -0
- package/dist/types/MatchStatus.js +15 -0
- package/dist/types/Modality.d.ts +15 -0
- package/dist/types/Modality.js +19 -0
- package/dist/types/PhaseType.d.ts +8 -0
- package/dist/types/PhaseType.js +12 -0
- package/dist/types/QualificationMode.d.ts +10 -0
- package/dist/types/QualificationMode.js +14 -0
- package/dist/types/RoundStatus.d.ts +12 -0
- package/dist/types/RoundStatus.js +16 -0
- package/dist/types/index.d.ts +8 -0
- package/dist/types/index.js +19 -0
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.js +17 -0
- package/dist/utils/utils.d.ts +5 -0
- package/dist/utils/utils.js +59 -0
- package/package.json +36 -0
package/package.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "c2-desafiox",
|
|
3
|
+
"version": "1.0.106",
|
|
4
|
+
"description": "Modelagem TypeScript/Mongoose para o jogo Escalada X (times, campeonatos, fases, rodadas, confrontos, desafios)",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "tsc --skipLibCheck",
|
|
9
|
+
"preversion": "tsc --skipLibCheck",
|
|
10
|
+
"postversion": "git push && git push --tags && npm publish",
|
|
11
|
+
"publish-patch": "npm version patch --force",
|
|
12
|
+
"publish-minor": "npm version minor",
|
|
13
|
+
"publish-major": "npm version major"
|
|
14
|
+
},
|
|
15
|
+
"peerDependencies": {
|
|
16
|
+
"mongoose": ">=9.0.0"
|
|
17
|
+
},
|
|
18
|
+
"devDependencies": {
|
|
19
|
+
"@types/node": "^20.12.11",
|
|
20
|
+
"mongoose": "8.16.1",
|
|
21
|
+
"typescript": "^5.4.5"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"dist"
|
|
25
|
+
],
|
|
26
|
+
"keywords": [
|
|
27
|
+
"desafiox",
|
|
28
|
+
"mongoose",
|
|
29
|
+
"championship",
|
|
30
|
+
"challenge"
|
|
31
|
+
],
|
|
32
|
+
"license": "MIT",
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"crypto": "^1.0.1"
|
|
35
|
+
}
|
|
36
|
+
}
|