fix: 微信登录补充保存username和role
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Agent
2026-04-04 07:35:21 +00:00
parent 756444ef2b
commit d12eea7693
10597 changed files with 817047 additions and 3 deletions

1
node_modules/yaml/browser/index.js generated vendored Normal file
View File

@@ -0,0 +1 @@
module.exports = require('./dist').YAML

2
node_modules/yaml/browser/map.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
module.exports = require('./dist/types').YAMLMap
require('./dist/legacy-exports').warnFileDeprecation(__filename)

2
node_modules/yaml/browser/pair.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
module.exports = require('./dist/types').Pair
require('./dist/legacy-exports').warnFileDeprecation(__filename)

1
node_modules/yaml/browser/parse-cst.js generated vendored Normal file
View File

@@ -0,0 +1 @@
module.exports = require('./dist/parse-cst').parse

2
node_modules/yaml/browser/scalar.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
module.exports = require('./dist/types').Scalar
require('./dist/legacy-exports').warnFileDeprecation(__filename)

9
node_modules/yaml/browser/schema.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
const types = require('./dist/types')
const util = require('./dist/util')
module.exports = types.Schema
module.exports.nullOptions = types.nullOptions
module.exports.strOptions = types.strOptions
module.exports.stringify = util.stringifyString
require('./dist/legacy-exports').warnFileDeprecation(__filename)

2
node_modules/yaml/browser/seq.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
module.exports = require('./dist/types').YAMLSeq
require('./dist/legacy-exports').warnFileDeprecation(__filename)

1
node_modules/yaml/browser/types.js generated vendored Normal file
View File

@@ -0,0 +1 @@
module.exports = require('./dist/types')

8
node_modules/yaml/browser/types/binary.js generated vendored Normal file
View File

@@ -0,0 +1,8 @@
'use strict'
Object.defineProperty(exports, '__esModule', { value: true })
const legacy = require('../dist/legacy-exports')
exports.binary = legacy.binary
exports.default = [exports.binary]
legacy.warnFileDeprecation(__filename)

3
node_modules/yaml/browser/types/omap.js generated vendored Normal file
View File

@@ -0,0 +1,3 @@
const legacy = require('../dist/legacy-exports')
module.exports = legacy.omap
legacy.warnFileDeprecation(__filename)

3
node_modules/yaml/browser/types/pairs.js generated vendored Normal file
View File

@@ -0,0 +1,3 @@
const legacy = require('../dist/legacy-exports')
module.exports = legacy.pairs
legacy.warnFileDeprecation(__filename)

3
node_modules/yaml/browser/types/set.js generated vendored Normal file
View File

@@ -0,0 +1,3 @@
const legacy = require('../dist/legacy-exports')
module.exports = legacy.set
legacy.warnFileDeprecation(__filename)

10
node_modules/yaml/browser/types/timestamp.js generated vendored Normal file
View File

@@ -0,0 +1,10 @@
'use strict'
Object.defineProperty(exports, '__esModule', { value: true })
const legacy = require('../dist/legacy-exports')
exports.default = [legacy.intTime, legacy.floatTime, legacy.timestamp]
exports.floatTime = legacy.floatTime
exports.intTime = legacy.intTime
exports.timestamp = legacy.timestamp
legacy.warnFileDeprecation(__filename)

1
node_modules/yaml/browser/util.js generated vendored Normal file
View File

@@ -0,0 +1 @@
module.exports = require('./dist/util')