mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-12 21:52:40 +01:00
⬆️ update dependencies
This commit is contained in:
parent
3eac3a05ec
commit
57bf4b0a2f
@ -25,47 +25,27 @@
|
|||||||
"operationId": "",
|
"operationId": "",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "user found",
|
"description": "User found",
|
||||||
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/UserPublic" } } }
|
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/UserPublic" } } }
|
||||||
},
|
},
|
||||||
"401": {
|
"404": {
|
||||||
"description": "Unauthorized",
|
"description": "User not found",
|
||||||
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/Error" } } }
|
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/Error" } } }
|
||||||
},
|
|
||||||
"429": {
|
|
||||||
"description": "Rate limit exceeded",
|
|
||||||
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/Error" } } },
|
|
||||||
"headers": {
|
|
||||||
"X-RateLimit-Bucket": {
|
|
||||||
"description": "A unique string denoting the rate limit being encountered (non-inclusive of major parameters in the route path)",
|
|
||||||
"schema": { "type": "string" }
|
|
||||||
},
|
|
||||||
"X-Rate-Limit-Limit": {
|
|
||||||
"description": "The number of allowed requests in the current period",
|
|
||||||
"schema": { "type": "integer" }
|
|
||||||
},
|
|
||||||
"X-Rate-Limit-Remaining": {
|
|
||||||
"description": "The number of remaining requests in the current period",
|
|
||||||
"schema": { "type": "integer" }
|
|
||||||
},
|
|
||||||
"X-Rate-Limit-Reset": {
|
|
||||||
"description": "Date when current period is over in seconds since the Unix epoch",
|
|
||||||
"schema": { "type": "integer" }
|
|
||||||
},
|
|
||||||
"X-Rate-Limit-Reset-After": {
|
|
||||||
"description": "Number of seconds when current period will reset (can have decimal)",
|
|
||||||
"schema": { "type": "number" }
|
|
||||||
},
|
|
||||||
"Retry-After": {
|
|
||||||
"description": "Same as X-Rate-Limit-Reset-After but an integer",
|
|
||||||
"schema": { "type": "integer" }
|
|
||||||
},
|
|
||||||
"X-RateLimit-Global": {
|
|
||||||
"description": "Indicates whether or not all requests from your ip are rate limited",
|
|
||||||
"schema": { "type": "boolean" }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"/users/@me": {
|
||||||
|
"get": {
|
||||||
|
"summary": "",
|
||||||
|
"description": "",
|
||||||
|
"parameters": [],
|
||||||
|
"operationId": "",
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "Authenticated user",
|
||||||
|
"content": { "application/json": { "schema": { "$ref": "#/components/schemas/UserPublic" } } }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -542,6 +522,7 @@
|
|||||||
"Member": {
|
"Member": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
"user_id": { "type": "string" },
|
||||||
"user": { "$ref": "#/components/schemas/User" },
|
"user": { "$ref": "#/components/schemas/User" },
|
||||||
"guild_id": { "type": "string" },
|
"guild_id": { "type": "string" },
|
||||||
"guild": { "$ref": "#/components/schemas/Guild" },
|
"guild": { "$ref": "#/components/schemas/Guild" },
|
||||||
@ -555,7 +536,7 @@
|
|||||||
"settings": { "$ref": "#/components/schemas/UserGuildSettings" },
|
"settings": { "$ref": "#/components/schemas/UserGuildSettings" },
|
||||||
"id": { "type": "string" }
|
"id": { "type": "string" }
|
||||||
},
|
},
|
||||||
"required": ["deaf", "guild", "guild_id", "id", "joined_at", "mute", "pending", "roles", "settings", "user"]
|
"required": ["deaf", "guild", "guild_id", "id", "joined_at", "mute", "pending", "roles", "settings", "user", "user_id"]
|
||||||
},
|
},
|
||||||
"Role": {
|
"Role": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
@ -1078,39 +1059,57 @@
|
|||||||
"bot": { "type": "boolean" }
|
"bot": { "type": "boolean" }
|
||||||
},
|
},
|
||||||
"required": ["bio", "bot", "discriminator", "id", "public_flags", "username"]
|
"required": ["bio", "bot", "discriminator", "id", "public_flags", "username"]
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"requestBodies": {
|
"UserPrivate": {
|
||||||
"BanCreateSchema": {
|
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": { "delete_message_days": { "type": "string" }, "reason": { "type": "string" } }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": ""
|
|
||||||
},
|
|
||||||
"DmChannelCreateSchema": {
|
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"name": { "type": "string" },
|
"locale": { "type": "string" },
|
||||||
"recipients": { "type": "array", "items": { "type": "string" } }
|
"disabled": { "type": "boolean" },
|
||||||
|
"username": { "type": "string" },
|
||||||
|
"discriminator": { "type": "string" },
|
||||||
|
"id": { "type": "string" },
|
||||||
|
"public_flags": { "type": "string" },
|
||||||
|
"avatar": { "type": "string" },
|
||||||
|
"accent_color": { "type": "integer" },
|
||||||
|
"banner": { "type": "string" },
|
||||||
|
"bio": { "type": "string" },
|
||||||
|
"bot": { "type": "boolean" },
|
||||||
|
"flags": { "type": "string" },
|
||||||
|
"mfa_enabled": { "type": "boolean" },
|
||||||
|
"email": { "type": "string" },
|
||||||
|
"phone": { "type": "string" },
|
||||||
|
"verified": { "type": "boolean" },
|
||||||
|
"nsfw_allowed": { "type": "boolean" },
|
||||||
|
"premium": { "type": "boolean" },
|
||||||
|
"premium_type": { "type": "integer" }
|
||||||
},
|
},
|
||||||
|
"required": [
|
||||||
|
"bio",
|
||||||
|
"bot",
|
||||||
|
"disabled",
|
||||||
|
"discriminator",
|
||||||
|
"flags",
|
||||||
|
"id",
|
||||||
|
"locale",
|
||||||
|
"mfa_enabled",
|
||||||
|
"nsfw_allowed",
|
||||||
|
"premium",
|
||||||
|
"premium_type",
|
||||||
|
"public_flags",
|
||||||
|
"username",
|
||||||
|
"verified"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"BanCreateSchema": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": { "delete_message_days": { "type": "string" }, "reason": { "type": "string" } }
|
||||||
|
},
|
||||||
|
"DmChannelCreateSchema": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": { "name": { "type": "string" }, "recipients": { "type": "array", "items": { "type": "string" } } },
|
||||||
"required": ["recipients"]
|
"required": ["recipients"]
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": ""
|
|
||||||
},
|
},
|
||||||
"ChannelModifySchema": {
|
"ChannelModifySchema": {
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"name": { "type": "string" },
|
"name": { "type": "string" },
|
||||||
@ -1141,15 +1140,8 @@
|
|||||||
"default_auto_archive_duration": { "type": "integer" }
|
"default_auto_archive_duration": { "type": "integer" }
|
||||||
},
|
},
|
||||||
"required": ["name", "type"]
|
"required": ["name", "type"]
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": ""
|
|
||||||
},
|
},
|
||||||
"ChannelGuildPositionUpdateSchema": {
|
"ChannelGuildPositionUpdateSchema": {
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
@ -1157,15 +1149,8 @@
|
|||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"required": ["id"]
|
"required": ["id"]
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": ""
|
|
||||||
},
|
},
|
||||||
"EmojiCreateSchema": {
|
"EmojiCreateSchema": {
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"name": { "type": "string" },
|
"name": { "type": "string" },
|
||||||
@ -1173,15 +1158,8 @@
|
|||||||
"roles": { "type": "array", "items": { "type": "string" } }
|
"roles": { "type": "array", "items": { "type": "string" } }
|
||||||
},
|
},
|
||||||
"required": ["image", "name"]
|
"required": ["image", "name"]
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": ""
|
|
||||||
},
|
},
|
||||||
"GuildCreateSchema": {
|
"GuildCreateSchema": {
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"name": { "type": "string" },
|
"name": { "type": "string" },
|
||||||
@ -1193,15 +1171,8 @@
|
|||||||
"rules_channel_id": { "type": "string" }
|
"rules_channel_id": { "type": "string" }
|
||||||
},
|
},
|
||||||
"required": ["name"]
|
"required": ["name"]
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": ""
|
|
||||||
},
|
},
|
||||||
"GuildUpdateSchema": {
|
"GuildUpdateSchema": {
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"banner": { "type": "string" },
|
"banner": { "type": "string" },
|
||||||
@ -1224,27 +1195,13 @@
|
|||||||
"rules_channel_id": { "type": "string" }
|
"rules_channel_id": { "type": "string" }
|
||||||
},
|
},
|
||||||
"required": ["name"]
|
"required": ["name"]
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": ""
|
|
||||||
},
|
},
|
||||||
"GuildTemplateCreateSchema": {
|
"GuildTemplateCreateSchema": {
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": { "name": { "type": "string" }, "avatar": { "type": "string" } },
|
"properties": { "name": { "type": "string" }, "avatar": { "type": "string" } },
|
||||||
"required": ["name"]
|
"required": ["name"]
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": ""
|
|
||||||
},
|
},
|
||||||
"GuildUpdateWelcomeScreenSchema": {
|
"GuildUpdateWelcomeScreenSchema": {
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"welcome_channels": {
|
"welcome_channels": {
|
||||||
@ -1264,17 +1221,8 @@
|
|||||||
"enabled": { "type": "boolean" },
|
"enabled": { "type": "boolean" },
|
||||||
"description": { "type": "string" }
|
"description": { "type": "string" }
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"description": ""
|
|
||||||
},
|
|
||||||
"Number": { "content": { "application/json": { "schema": { "type": "object" } } }, "description": "" },
|
|
||||||
"Boolean": { "content": { "application/json": { "schema": { "type": "object" } } }, "description": "" },
|
|
||||||
"InviteCreateSchema": {
|
"InviteCreateSchema": {
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"target_user_id": { "type": "string" },
|
"target_user_id": { "type": "string" },
|
||||||
@ -1287,15 +1235,8 @@
|
|||||||
"target_user": { "type": "string" },
|
"target_user": { "type": "string" },
|
||||||
"target_user_type": { "type": "integer" }
|
"target_user_type": { "type": "integer" }
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": ""
|
|
||||||
},
|
},
|
||||||
"MemberCreateSchema": {
|
"MemberCreateSchema": {
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"id": { "type": "string" },
|
"id": { "type": "string" },
|
||||||
@ -1304,53 +1245,10 @@
|
|||||||
"joined_at": { "type": "string", "format": "date-time" }
|
"joined_at": { "type": "string", "format": "date-time" }
|
||||||
},
|
},
|
||||||
"required": ["guild_id", "id", "joined_at", "nick"]
|
"required": ["guild_id", "id", "joined_at", "nick"]
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": ""
|
|
||||||
},
|
|
||||||
"MemberNickChangeSchema": {
|
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": { "type": "object", "properties": { "nick": { "type": "string" } }, "required": ["nick"] }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": ""
|
|
||||||
},
|
|
||||||
"MemberChangeSchema": {
|
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": { "type": "object", "properties": { "roles": { "type": "array", "items": { "type": "string" } } } }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": ""
|
|
||||||
},
|
|
||||||
"EmbedType": {
|
|
||||||
"content": {
|
|
||||||
"application/json": { "schema": { "enum": ["article", "gifv", "image", "link", "rich", "video"], "type": "string" } }
|
|
||||||
},
|
|
||||||
"description": ""
|
|
||||||
},
|
|
||||||
"EmbedImage": {
|
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"url": { "type": "string" },
|
|
||||||
"proxy_url": { "type": "string" },
|
|
||||||
"height": { "type": "integer" },
|
|
||||||
"width": { "type": "integer" }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": ""
|
|
||||||
},
|
},
|
||||||
|
"MemberNickChangeSchema": { "type": "object", "properties": { "nick": { "type": "string" } }, "required": ["nick"] },
|
||||||
|
"MemberChangeSchema": { "type": "object", "properties": { "roles": { "type": "array", "items": { "type": "string" } } } },
|
||||||
"MessageCreateSchema": {
|
"MessageCreateSchema": {
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"content": { "type": "string" },
|
"content": { "type": "string" },
|
||||||
@ -1434,15 +1332,8 @@
|
|||||||
"payload_json": { "type": "string" },
|
"payload_json": { "type": "string" },
|
||||||
"file": {}
|
"file": {}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": ""
|
|
||||||
},
|
},
|
||||||
"RoleModifySchema": {
|
"RoleModifySchema": {
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"name": { "type": "string" },
|
"name": { "type": "string" },
|
||||||
@ -1452,39 +1343,18 @@
|
|||||||
"mentionable": { "type": "boolean" },
|
"mentionable": { "type": "boolean" },
|
||||||
"position": { "type": "integer" }
|
"position": { "type": "integer" }
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": ""
|
|
||||||
},
|
},
|
||||||
"TemplateCreateSchema": {
|
"TemplateCreateSchema": {
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": { "name": { "type": "string" }, "description": { "type": "string" } },
|
"properties": { "name": { "type": "string" }, "description": { "type": "string" } },
|
||||||
"required": ["name"]
|
"required": ["name"]
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": ""
|
|
||||||
},
|
},
|
||||||
"TemplateModifySchema": {
|
"TemplateModifySchema": {
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": { "name": { "type": "string" }, "description": { "type": "string" } },
|
"properties": { "name": { "type": "string" }, "description": { "type": "string" } },
|
||||||
"required": ["name"]
|
"required": ["name"]
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": ""
|
|
||||||
},
|
},
|
||||||
"UserModifySchema": {
|
"UserModifySchema": {
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"username": { "type": "string" },
|
"username": { "type": "string" },
|
||||||
@ -1496,15 +1366,8 @@
|
|||||||
"new_password": { "type": "string" },
|
"new_password": { "type": "string" },
|
||||||
"code": { "type": "string" }
|
"code": { "type": "string" }
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": ""
|
|
||||||
},
|
},
|
||||||
"UserSettingsSchema": {
|
"UserSettingsSchema": {
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"afk_timeout": { "type": "integer" },
|
"afk_timeout": { "type": "integer" },
|
||||||
@ -1599,24 +1462,14 @@
|
|||||||
"theme",
|
"theme",
|
||||||
"timezone_offset"
|
"timezone_offset"
|
||||||
]
|
]
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": ""
|
|
||||||
},
|
},
|
||||||
"WidgetModifySchema": {
|
"WidgetModifySchema": {
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": { "enabled": { "type": "boolean" }, "channel_id": { "type": "string" } },
|
"properties": { "enabled": { "type": "boolean" }, "channel_id": { "type": "string" } },
|
||||||
"required": ["channel_id", "enabled"]
|
"required": ["channel_id", "enabled"]
|
||||||
}
|
}
|
||||||
}
|
|
||||||
},
|
|
||||||
"description": ""
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
"requestBodies": {},
|
||||||
"securitySchemes": {},
|
"securitySchemes": {},
|
||||||
"links": {},
|
"links": {},
|
||||||
"callbacks": {}
|
"callbacks": {}
|
||||||
|
19
api/package-lock.json
generated
19
api/package-lock.json
generated
@ -7,6 +7,7 @@
|
|||||||
"": {
|
"": {
|
||||||
"name": "@fosscord/api",
|
"name": "@fosscord/api",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
|
"hasInstallScript": true,
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fosscord/util": "file:../util",
|
"@fosscord/util": "file:../util",
|
||||||
@ -29,7 +30,7 @@
|
|||||||
"i18next-node-fs-backend": "^2.1.3",
|
"i18next-node-fs-backend": "^2.1.3",
|
||||||
"jsonwebtoken": "^8.5.1",
|
"jsonwebtoken": "^8.5.1",
|
||||||
"lambert-server": "^1.2.10",
|
"lambert-server": "^1.2.10",
|
||||||
"missing-native-js-functions": "^1.2.11",
|
"missing-native-js-functions": "^1.2.15",
|
||||||
"mongoose": "^5.12.3",
|
"mongoose": "^5.12.3",
|
||||||
"mongoose-autopopulate": "^0.12.3",
|
"mongoose-autopopulate": "^0.12.3",
|
||||||
"mongoose-long": "^0.3.2",
|
"mongoose-long": "^0.3.2",
|
||||||
@ -78,7 +79,7 @@
|
|||||||
"env-paths": "^2.2.1",
|
"env-paths": "^2.2.1",
|
||||||
"jsonwebtoken": "^8.5.1",
|
"jsonwebtoken": "^8.5.1",
|
||||||
"lambert-server": "^1.2.10",
|
"lambert-server": "^1.2.10",
|
||||||
"missing-native-js-functions": "^1.2.13",
|
"missing-native-js-functions": "^1.2.14",
|
||||||
"node-fetch": "^2.6.1",
|
"node-fetch": "^2.6.1",
|
||||||
"patch-package": "^6.4.7",
|
"patch-package": "^6.4.7",
|
||||||
"pg": "^8.7.1",
|
"pg": "^8.7.1",
|
||||||
@ -7421,9 +7422,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/missing-native-js-functions": {
|
"node_modules/missing-native-js-functions": {
|
||||||
"version": "1.2.11",
|
"version": "1.2.15",
|
||||||
"resolved": "https://registry.npmjs.org/missing-native-js-functions/-/missing-native-js-functions-1.2.11.tgz",
|
"resolved": "https://registry.npmjs.org/missing-native-js-functions/-/missing-native-js-functions-1.2.15.tgz",
|
||||||
"integrity": "sha512-U97IscNBL4Wg9adYjEBT46Hb0Ld5dPT8vbdwFX+TNzGrFQCc4WqoGAZouaLNFwUqxzzHZ9DVg59unwnQyeIIQg=="
|
"integrity": "sha512-NNsxPSHnG22xellXsdGkzmF/SSzYNRgZcWQt2OKG+I3Wv8p37kTax13trTMthVkEOhvNv8M2l4A4JwK1p42ZHg=="
|
||||||
},
|
},
|
||||||
"node_modules/mixin-deep": {
|
"node_modules/mixin-deep": {
|
||||||
"version": "1.3.2",
|
"version": "1.3.2",
|
||||||
@ -12976,7 +12977,7 @@
|
|||||||
"jest": "^27.0.6",
|
"jest": "^27.0.6",
|
||||||
"jsonwebtoken": "^8.5.1",
|
"jsonwebtoken": "^8.5.1",
|
||||||
"lambert-server": "^1.2.10",
|
"lambert-server": "^1.2.10",
|
||||||
"missing-native-js-functions": "^1.2.13",
|
"missing-native-js-functions": "^1.2.14",
|
||||||
"node-fetch": "^2.6.1",
|
"node-fetch": "^2.6.1",
|
||||||
"patch-package": "^6.4.7",
|
"patch-package": "^6.4.7",
|
||||||
"pg": "^8.7.1",
|
"pg": "^8.7.1",
|
||||||
@ -18555,9 +18556,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"missing-native-js-functions": {
|
"missing-native-js-functions": {
|
||||||
"version": "1.2.11",
|
"version": "1.2.15",
|
||||||
"resolved": "https://registry.npmjs.org/missing-native-js-functions/-/missing-native-js-functions-1.2.11.tgz",
|
"resolved": "https://registry.npmjs.org/missing-native-js-functions/-/missing-native-js-functions-1.2.15.tgz",
|
||||||
"integrity": "sha512-U97IscNBL4Wg9adYjEBT46Hb0Ld5dPT8vbdwFX+TNzGrFQCc4WqoGAZouaLNFwUqxzzHZ9DVg59unwnQyeIIQg=="
|
"integrity": "sha512-NNsxPSHnG22xellXsdGkzmF/SSzYNRgZcWQt2OKG+I3Wv8p37kTax13trTMthVkEOhvNv8M2l4A4JwK1p42ZHg=="
|
||||||
},
|
},
|
||||||
"mixin-deep": {
|
"mixin-deep": {
|
||||||
"version": "1.3.2",
|
"version": "1.3.2",
|
||||||
|
@ -78,7 +78,7 @@
|
|||||||
"i18next-node-fs-backend": "^2.1.3",
|
"i18next-node-fs-backend": "^2.1.3",
|
||||||
"jsonwebtoken": "^8.5.1",
|
"jsonwebtoken": "^8.5.1",
|
||||||
"lambert-server": "^1.2.10",
|
"lambert-server": "^1.2.10",
|
||||||
"missing-native-js-functions": "^1.2.11",
|
"missing-native-js-functions": "^1.2.15",
|
||||||
"mongoose": "^5.12.3",
|
"mongoose": "^5.12.3",
|
||||||
"mongoose-autopopulate": "^0.12.3",
|
"mongoose-autopopulate": "^0.12.3",
|
||||||
"mongoose-long": "^0.3.2",
|
"mongoose-long": "^0.3.2",
|
||||||
|
@ -19,41 +19,14 @@ const compilerOptions: TJS.CompilerOptions = {
|
|||||||
const openapiPath = path.join(__dirname, "..", "assets", "openapi.json");
|
const openapiPath = path.join(__dirname, "..", "assets", "openapi.json");
|
||||||
var specification = JSON.parse(fs.readFileSync(openapiPath, { encoding: "utf8" }));
|
var specification = JSON.parse(fs.readFileSync(openapiPath, { encoding: "utf8" }));
|
||||||
|
|
||||||
async function generateSchemas() {
|
async function utilSchemas() {
|
||||||
const program = TJS.getProgramFromFiles([path.join(__dirname, "..", "..", "util", "src", "index.ts")], compilerOptions);
|
const program = TJS.getProgramFromFiles([path.join(__dirname, "..", "..", "util", "src", "index.ts")], compilerOptions);
|
||||||
const generator = TJS.buildGenerator(program, settings);
|
const generator = TJS.buildGenerator(program, settings);
|
||||||
|
|
||||||
const schemas = [
|
const schemas = ["UserPublic", "UserPrivate", "PublicConnectedAccount"];
|
||||||
"Application",
|
|
||||||
"Attachment",
|
|
||||||
"Message",
|
|
||||||
"AuditLog",
|
|
||||||
"Ban",
|
|
||||||
"Channel",
|
|
||||||
"Emoji",
|
|
||||||
"Guild",
|
|
||||||
"Invite",
|
|
||||||
"ReadState",
|
|
||||||
"Recipient",
|
|
||||||
"Relationship",
|
|
||||||
"Role",
|
|
||||||
"Sticker",
|
|
||||||
"Team",
|
|
||||||
"TeamMember",
|
|
||||||
"Template",
|
|
||||||
"VoiceState",
|
|
||||||
"Webhook",
|
|
||||||
"User",
|
|
||||||
"UserPublic"
|
|
||||||
];
|
|
||||||
|
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
const definitions = combineSchemas({ schemas, generator, program });
|
combineSchemas({ schemas, generator, program });
|
||||||
|
|
||||||
for (const key in definitions) {
|
|
||||||
specification.components.schemas[key] = definitions[key];
|
|
||||||
delete definitions[key].additionalProperties;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function combineSchemas(opts: { program: TJS.Program; generator: TJS.JsonSchemaGenerator; schemas: string[] }) {
|
function combineSchemas(opts: { program: TJS.Program; generator: TJS.JsonSchemaGenerator; schemas: string[] }) {
|
||||||
@ -63,13 +36,19 @@ function combineSchemas(opts: { program: TJS.Program; generator: TJS.JsonSchemaG
|
|||||||
const part = TJS.generateSchema(opts.program, name, settings, [], opts.generator as TJS.JsonSchemaGenerator);
|
const part = TJS.generateSchema(opts.program, name, settings, [], opts.generator as TJS.JsonSchemaGenerator);
|
||||||
if (!part) continue;
|
if (!part) continue;
|
||||||
|
|
||||||
definitions = { ...definitions, ...part.definitions, [name]: { ...part, definitions: undefined, $schema: undefined } };
|
definitions = { ...definitions, [name]: { ...part, definitions: undefined, $schema: undefined } };
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const key in definitions) {
|
||||||
|
specification.components.schemas[key] = definitions[key];
|
||||||
|
delete definitions[key].additionalProperties;
|
||||||
|
delete definitions[key].$schema;
|
||||||
}
|
}
|
||||||
|
|
||||||
return definitions;
|
return definitions;
|
||||||
}
|
}
|
||||||
|
|
||||||
function generateBodies() {
|
function apiSchemas() {
|
||||||
const program = TJS.getProgramFromFiles([path.join(__dirname, "..", "src", "schema", "index.ts")], compilerOptions);
|
const program = TJS.getProgramFromFiles([path.join(__dirname, "..", "src", "schema", "index.ts")], compilerOptions);
|
||||||
const generator = TJS.buildGenerator(program, settings);
|
const generator = TJS.buildGenerator(program, settings);
|
||||||
|
|
||||||
@ -94,97 +73,26 @@ function generateBodies() {
|
|||||||
"TemplateModifySchema",
|
"TemplateModifySchema",
|
||||||
"UserModifySchema",
|
"UserModifySchema",
|
||||||
"UserSettingsSchema",
|
"UserSettingsSchema",
|
||||||
"WidgetModifySchema"
|
"WidgetModifySchema",
|
||||||
|
""
|
||||||
];
|
];
|
||||||
|
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
const definitions = combineSchemas({ schemas, generator, program });
|
combineSchemas({ schemas, generator, program });
|
||||||
|
|
||||||
for (const key in definitions) {
|
|
||||||
specification.components.requestBodies[key] = {
|
|
||||||
content: {
|
|
||||||
"application/json": { schema: definitions[key] }
|
|
||||||
},
|
|
||||||
description: ""
|
|
||||||
};
|
|
||||||
|
|
||||||
delete definitions[key].additionalProperties;
|
|
||||||
delete definitions[key].$schema;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function addDefaultResponses() {
|
function addDefaultResponses() {
|
||||||
Object.values(specification.paths).forEach((path: any) =>
|
Object.values(specification.paths).forEach((path: any) => Object.values(path).forEach((request: any) => {}));
|
||||||
Object.values(path).forEach((request: any) => {
|
|
||||||
if (!request.responses?.["401"]) {
|
|
||||||
request.responses["401"] = {
|
|
||||||
description: "Unauthorized",
|
|
||||||
content: { "application/json": { schema: { $ref: "#/components/schemas/Error" } } }
|
|
||||||
};
|
|
||||||
}
|
|
||||||
if (!request.responses?.["429"]) {
|
|
||||||
request.responses["429"] = {
|
|
||||||
description: "Rate limit exceeded",
|
|
||||||
content: { "application/json": { schema: { $ref: "#/components/schemas/Error" } } },
|
|
||||||
headers: {
|
|
||||||
"X-RateLimit-Bucket": {
|
|
||||||
description:
|
|
||||||
"A unique string denoting the rate limit being encountered (non-inclusive of major parameters in the route path)",
|
|
||||||
schema: { type: "string" }
|
|
||||||
},
|
|
||||||
"X-Rate-Limit-Limit": {
|
|
||||||
description: "The number of allowed requests in the current period",
|
|
||||||
schema: {
|
|
||||||
type: "integer"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"X-Rate-Limit-Remaining": {
|
|
||||||
description: "The number of remaining requests in the current period",
|
|
||||||
schema: {
|
|
||||||
type: "integer"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"X-Rate-Limit-Reset": {
|
|
||||||
description: "Date when current period is over in seconds since the Unix epoch",
|
|
||||||
schema: {
|
|
||||||
type: "integer"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"X-Rate-Limit-Reset-After": {
|
|
||||||
description: "Number of seconds when current period will reset (can have decimal)",
|
|
||||||
schema: {
|
|
||||||
type: "number"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Retry-After": {
|
|
||||||
description: "Same as X-Rate-Limit-Reset-After but an integer",
|
|
||||||
schema: {
|
|
||||||
type: "integer"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"X-RateLimit-Global": {
|
|
||||||
description: "Indicates whether or not all requests from your ip are rate limited",
|
|
||||||
schema: {
|
|
||||||
type: "boolean"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function main() {
|
function main() {
|
||||||
addDefaultResponses();
|
addDefaultResponses();
|
||||||
generateSchemas();
|
utilSchemas();
|
||||||
specification = JSON.parse(JSON.stringify(specification).replaceAll("#/definitions", "#/components/schemas"));
|
apiSchemas();
|
||||||
|
|
||||||
generateBodies();
|
|
||||||
|
|
||||||
fs.writeFileSync(
|
fs.writeFileSync(
|
||||||
openapiPath,
|
openapiPath,
|
||||||
JSON.stringify(specification, null, 4).replaceAll("#/definitions", "#/components/requestBodies").replaceAll("bigint", "number")
|
JSON.stringify(specification, null, 4).replaceAll("#/definitions", "#/components/schemas").replaceAll("bigint", "number")
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
1389
bundle/package-lock.json
generated
1389
bundle/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -51,7 +51,7 @@
|
|||||||
"@fosscord/util": "file:../util",
|
"@fosscord/util": "file:../util",
|
||||||
"async-exit-hook": "^2.0.1",
|
"async-exit-hook": "^2.0.1",
|
||||||
"express": "^4.17.1",
|
"express": "^4.17.1",
|
||||||
"missing-native-js-functions": "^1.2.13",
|
"missing-native-js-functions": "^1.2.15",
|
||||||
"node-os-utils": "^1.3.5"
|
"node-os-utils": "^1.3.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
18
cdn/package-lock.json
generated
18
cdn/package-lock.json
generated
@ -23,7 +23,7 @@
|
|||||||
"jest": "^27.0.6",
|
"jest": "^27.0.6",
|
||||||
"lambert-db": "^1.2.3",
|
"lambert-db": "^1.2.3",
|
||||||
"lambert-server": "^1.2.8",
|
"lambert-server": "^1.2.8",
|
||||||
"missing-native-js-functions": "^1.2.10",
|
"missing-native-js-functions": "^1.2.15",
|
||||||
"multer": "^1.4.2",
|
"multer": "^1.4.2",
|
||||||
"node-fetch": "^2.6.1",
|
"node-fetch": "^2.6.1",
|
||||||
"supertest": "^6.1.6",
|
"supertest": "^6.1.6",
|
||||||
@ -60,7 +60,7 @@
|
|||||||
"env-paths": "^2.2.1",
|
"env-paths": "^2.2.1",
|
||||||
"jsonwebtoken": "^8.5.1",
|
"jsonwebtoken": "^8.5.1",
|
||||||
"lambert-server": "^1.2.10",
|
"lambert-server": "^1.2.10",
|
||||||
"missing-native-js-functions": "^1.2.11",
|
"missing-native-js-functions": "^1.2.15",
|
||||||
"node-fetch": "^2.6.1",
|
"node-fetch": "^2.6.1",
|
||||||
"patch-package": "^6.4.7",
|
"patch-package": "^6.4.7",
|
||||||
"pg": "^8.7.1",
|
"pg": "^8.7.1",
|
||||||
@ -3977,9 +3977,9 @@
|
|||||||
"integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
|
"integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
|
||||||
},
|
},
|
||||||
"node_modules/missing-native-js-functions": {
|
"node_modules/missing-native-js-functions": {
|
||||||
"version": "1.2.10",
|
"version": "1.2.15",
|
||||||
"resolved": "https://registry.npmjs.org/missing-native-js-functions/-/missing-native-js-functions-1.2.10.tgz",
|
"resolved": "https://registry.npmjs.org/missing-native-js-functions/-/missing-native-js-functions-1.2.15.tgz",
|
||||||
"integrity": "sha512-sq+oAw/C3OtUyKopLNOf/+U85YNx7db6fy5nVfGVKlGdcV8tX24GjOSkcZeCAnAIjMEnlQBWTr17JXa3OJj22g=="
|
"integrity": "sha512-NNsxPSHnG22xellXsdGkzmF/SSzYNRgZcWQt2OKG+I3Wv8p37kTax13trTMthVkEOhvNv8M2l4A4JwK1p42ZHg=="
|
||||||
},
|
},
|
||||||
"node_modules/mkdirp": {
|
"node_modules/mkdirp": {
|
||||||
"version": "0.5.5",
|
"version": "0.5.5",
|
||||||
@ -5980,7 +5980,7 @@
|
|||||||
"jest": "^27.0.6",
|
"jest": "^27.0.6",
|
||||||
"jsonwebtoken": "^8.5.1",
|
"jsonwebtoken": "^8.5.1",
|
||||||
"lambert-server": "^1.2.10",
|
"lambert-server": "^1.2.10",
|
||||||
"missing-native-js-functions": "^1.2.11",
|
"missing-native-js-functions": "^1.2.15",
|
||||||
"node-fetch": "^2.6.1",
|
"node-fetch": "^2.6.1",
|
||||||
"patch-package": "^6.4.7",
|
"patch-package": "^6.4.7",
|
||||||
"pg": "^8.7.1",
|
"pg": "^8.7.1",
|
||||||
@ -8561,9 +8561,9 @@
|
|||||||
"integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
|
"integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
|
||||||
},
|
},
|
||||||
"missing-native-js-functions": {
|
"missing-native-js-functions": {
|
||||||
"version": "1.2.10",
|
"version": "1.2.15",
|
||||||
"resolved": "https://registry.npmjs.org/missing-native-js-functions/-/missing-native-js-functions-1.2.10.tgz",
|
"resolved": "https://registry.npmjs.org/missing-native-js-functions/-/missing-native-js-functions-1.2.15.tgz",
|
||||||
"integrity": "sha512-sq+oAw/C3OtUyKopLNOf/+U85YNx7db6fy5nVfGVKlGdcV8tX24GjOSkcZeCAnAIjMEnlQBWTr17JXa3OJj22g=="
|
"integrity": "sha512-NNsxPSHnG22xellXsdGkzmF/SSzYNRgZcWQt2OKG+I3Wv8p37kTax13trTMthVkEOhvNv8M2l4A4JwK1p42ZHg=="
|
||||||
},
|
},
|
||||||
"mkdirp": {
|
"mkdirp": {
|
||||||
"version": "0.5.5",
|
"version": "0.5.5",
|
||||||
|
@ -51,7 +51,7 @@
|
|||||||
"jest": "^27.0.6",
|
"jest": "^27.0.6",
|
||||||
"lambert-db": "^1.2.3",
|
"lambert-db": "^1.2.3",
|
||||||
"lambert-server": "^1.2.8",
|
"lambert-server": "^1.2.8",
|
||||||
"missing-native-js-functions": "^1.2.10",
|
"missing-native-js-functions": "^1.2.15",
|
||||||
"multer": "^1.4.2",
|
"multer": "^1.4.2",
|
||||||
"node-fetch": "^2.6.1",
|
"node-fetch": "^2.6.1",
|
||||||
"supertest": "^6.1.6",
|
"supertest": "^6.1.6",
|
||||||
|
18
gateway/package-lock.json
generated
18
gateway/package-lock.json
generated
@ -15,7 +15,7 @@
|
|||||||
"dotenv": "^8.2.0",
|
"dotenv": "^8.2.0",
|
||||||
"jsonwebtoken": "^8.5.1",
|
"jsonwebtoken": "^8.5.1",
|
||||||
"lambert-server": "^1.2.8",
|
"lambert-server": "^1.2.8",
|
||||||
"missing-native-js-functions": "^1.2.10",
|
"missing-native-js-functions": "^1.2.15",
|
||||||
"mongoose-autopopulate": "^0.12.3",
|
"mongoose-autopopulate": "^0.12.3",
|
||||||
"node-fetch": "^2.6.1",
|
"node-fetch": "^2.6.1",
|
||||||
"uuid": "^8.3.2",
|
"uuid": "^8.3.2",
|
||||||
@ -48,7 +48,7 @@
|
|||||||
"env-paths": "^2.2.1",
|
"env-paths": "^2.2.1",
|
||||||
"jsonwebtoken": "^8.5.1",
|
"jsonwebtoken": "^8.5.1",
|
||||||
"lambert-server": "^1.2.10",
|
"lambert-server": "^1.2.10",
|
||||||
"missing-native-js-functions": "^1.2.11",
|
"missing-native-js-functions": "^1.2.14",
|
||||||
"node-fetch": "^2.6.1",
|
"node-fetch": "^2.6.1",
|
||||||
"patch-package": "^6.4.7",
|
"patch-package": "^6.4.7",
|
||||||
"pg": "^8.7.1",
|
"pg": "^8.7.1",
|
||||||
@ -1144,9 +1144,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"node_modules/missing-native-js-functions": {
|
"node_modules/missing-native-js-functions": {
|
||||||
"version": "1.2.10",
|
"version": "1.2.15",
|
||||||
"resolved": "https://registry.npmjs.org/missing-native-js-functions/-/missing-native-js-functions-1.2.10.tgz",
|
"resolved": "https://registry.npmjs.org/missing-native-js-functions/-/missing-native-js-functions-1.2.15.tgz",
|
||||||
"integrity": "sha512-sq+oAw/C3OtUyKopLNOf/+U85YNx7db6fy5nVfGVKlGdcV8tX24GjOSkcZeCAnAIjMEnlQBWTr17JXa3OJj22g=="
|
"integrity": "sha512-NNsxPSHnG22xellXsdGkzmF/SSzYNRgZcWQt2OKG+I3Wv8p37kTax13trTMthVkEOhvNv8M2l4A4JwK1p42ZHg=="
|
||||||
},
|
},
|
||||||
"node_modules/mkdirp": {
|
"node_modules/mkdirp": {
|
||||||
"version": "1.0.4",
|
"version": "1.0.4",
|
||||||
@ -1942,7 +1942,7 @@
|
|||||||
"jest": "^27.0.6",
|
"jest": "^27.0.6",
|
||||||
"jsonwebtoken": "^8.5.1",
|
"jsonwebtoken": "^8.5.1",
|
||||||
"lambert-server": "^1.2.10",
|
"lambert-server": "^1.2.10",
|
||||||
"missing-native-js-functions": "^1.2.11",
|
"missing-native-js-functions": "^1.2.14",
|
||||||
"node-fetch": "^2.6.1",
|
"node-fetch": "^2.6.1",
|
||||||
"patch-package": "^6.4.7",
|
"patch-package": "^6.4.7",
|
||||||
"pg": "^8.7.1",
|
"pg": "^8.7.1",
|
||||||
@ -2858,9 +2858,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"missing-native-js-functions": {
|
"missing-native-js-functions": {
|
||||||
"version": "1.2.10",
|
"version": "1.2.15",
|
||||||
"resolved": "https://registry.npmjs.org/missing-native-js-functions/-/missing-native-js-functions-1.2.10.tgz",
|
"resolved": "https://registry.npmjs.org/missing-native-js-functions/-/missing-native-js-functions-1.2.15.tgz",
|
||||||
"integrity": "sha512-sq+oAw/C3OtUyKopLNOf/+U85YNx7db6fy5nVfGVKlGdcV8tX24GjOSkcZeCAnAIjMEnlQBWTr17JXa3OJj22g=="
|
"integrity": "sha512-NNsxPSHnG22xellXsdGkzmF/SSzYNRgZcWQt2OKG+I3Wv8p37kTax13trTMthVkEOhvNv8M2l4A4JwK1p42ZHg=="
|
||||||
},
|
},
|
||||||
"mkdirp": {
|
"mkdirp": {
|
||||||
"version": "1.0.4",
|
"version": "1.0.4",
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
"dotenv": "^8.2.0",
|
"dotenv": "^8.2.0",
|
||||||
"jsonwebtoken": "^8.5.1",
|
"jsonwebtoken": "^8.5.1",
|
||||||
"lambert-server": "^1.2.8",
|
"lambert-server": "^1.2.8",
|
||||||
"missing-native-js-functions": "^1.2.10",
|
"missing-native-js-functions": "^1.2.15",
|
||||||
"mongoose-autopopulate": "^0.12.3",
|
"mongoose-autopopulate": "^0.12.3",
|
||||||
"node-fetch": "^2.6.1",
|
"node-fetch": "^2.6.1",
|
||||||
"uuid": "^8.3.2",
|
"uuid": "^8.3.2",
|
||||||
|
14
util/package-lock.json
generated
14
util/package-lock.json
generated
@ -17,7 +17,7 @@
|
|||||||
"env-paths": "^2.2.1",
|
"env-paths": "^2.2.1",
|
||||||
"jsonwebtoken": "^8.5.1",
|
"jsonwebtoken": "^8.5.1",
|
||||||
"lambert-server": "^1.2.10",
|
"lambert-server": "^1.2.10",
|
||||||
"missing-native-js-functions": "^1.2.13",
|
"missing-native-js-functions": "^1.2.15",
|
||||||
"node-fetch": "^2.6.1",
|
"node-fetch": "^2.6.1",
|
||||||
"patch-package": "^6.4.7",
|
"patch-package": "^6.4.7",
|
||||||
"pg": "^8.7.1",
|
"pg": "^8.7.1",
|
||||||
@ -6338,9 +6338,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/missing-native-js-functions": {
|
"node_modules/missing-native-js-functions": {
|
||||||
"version": "1.2.13",
|
"version": "1.2.15",
|
||||||
"resolved": "https://registry.npmjs.org/missing-native-js-functions/-/missing-native-js-functions-1.2.13.tgz",
|
"resolved": "https://registry.npmjs.org/missing-native-js-functions/-/missing-native-js-functions-1.2.15.tgz",
|
||||||
"integrity": "sha512-1RAArfUkrGkj5N3xJVW251F2PvfP2ozAcxsLLDR6uiiAixTP5Abh8zzGMadepbqgiHC0FGlTSAUNbh9abN4Osg=="
|
"integrity": "sha512-NNsxPSHnG22xellXsdGkzmF/SSzYNRgZcWQt2OKG+I3Wv8p37kTax13trTMthVkEOhvNv8M2l4A4JwK1p42ZHg=="
|
||||||
},
|
},
|
||||||
"node_modules/mkdirp": {
|
"node_modules/mkdirp": {
|
||||||
"version": "1.0.4",
|
"version": "1.0.4",
|
||||||
@ -13735,9 +13735,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"missing-native-js-functions": {
|
"missing-native-js-functions": {
|
||||||
"version": "1.2.13",
|
"version": "1.2.15",
|
||||||
"resolved": "https://registry.npmjs.org/missing-native-js-functions/-/missing-native-js-functions-1.2.13.tgz",
|
"resolved": "https://registry.npmjs.org/missing-native-js-functions/-/missing-native-js-functions-1.2.15.tgz",
|
||||||
"integrity": "sha512-1RAArfUkrGkj5N3xJVW251F2PvfP2ozAcxsLLDR6uiiAixTP5Abh8zzGMadepbqgiHC0FGlTSAUNbh9abN4Osg=="
|
"integrity": "sha512-NNsxPSHnG22xellXsdGkzmF/SSzYNRgZcWQt2OKG+I3Wv8p37kTax13trTMthVkEOhvNv8M2l4A4JwK1p42ZHg=="
|
||||||
},
|
},
|
||||||
"mkdirp": {
|
"mkdirp": {
|
||||||
"version": "1.0.4",
|
"version": "1.0.4",
|
||||||
|
@ -44,7 +44,7 @@
|
|||||||
"env-paths": "^2.2.1",
|
"env-paths": "^2.2.1",
|
||||||
"jsonwebtoken": "^8.5.1",
|
"jsonwebtoken": "^8.5.1",
|
||||||
"lambert-server": "^1.2.10",
|
"lambert-server": "^1.2.10",
|
||||||
"missing-native-js-functions": "^1.2.13",
|
"missing-native-js-functions": "^1.2.15",
|
||||||
"node-fetch": "^2.6.1",
|
"node-fetch": "^2.6.1",
|
||||||
"patch-package": "^6.4.7",
|
"patch-package": "^6.4.7",
|
||||||
"pg": "^8.7.1",
|
"pg": "^8.7.1",
|
||||||
|
Loading…
Reference in New Issue
Block a user