Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save waxidiotic/01be6faff9355b073d3ed723bc273185 to your computer and use it in GitHub Desktop.
Save waxidiotic/01be6faff9355b073d3ed723bc273185 to your computer and use it in GitHub Desktop.
prisma_ext_output
[Trace - 8:21:07 PM] Sending notification 'textDocument/didChange'.
Params: {
"textDocument": {
"uri": "file:///Users/alexbussey/Repos/personal/show-grind/prisma/schema.prisma",
"version": 23
},
"contentChanges": [
{
"range": {
"start": {
"line": 293,
"character": 2
},
"end": {
"line": 293,
"character": 2
}
},
"rangeLength": 0,
"text": "t"
}
]
}
[Trace - 8:21:07 PM] Received notification 'window/logMessage'.
Params: {
"type": 4,
"message": "running lint() from prisma-schema-wasm"
}
running lint() from prisma-schema-wasm
[Trace - 8:21:07 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {
"uri": "file:///Users/alexbussey/Repos/personal/show-grind/prisma/schema.prisma",
"diagnostics": [
{
"range": {
"start": {
"line": 293,
"character": 2
},
"end": {
"line": 294,
"character": 0
}
},
"message": "Error validating model \"card_set\": This field declaration is invalid. It is either missing a name or a type.",
"source": "",
"severity": 1
}
]
}
[Trace - 8:21:07 PM] Sending request 'textDocument/completion - (64)'.
Params: {
"textDocument": {
"uri": "file:///Users/alexbussey/Repos/personal/show-grind/prisma/schema.prisma"
},
"position": {
"line": 293,
"character": 3
},
"context": {
"triggerKind": 1
}
}
[Trace - 8:21:07 PM] Received response 'textDocument/completion - (64)' in 3ms.
Result: {
"items": [
{
"label": "@@map",
"kind": 10,
"insertText": "@@map(\"$0\")",
"insertTextFormat": 2,
"insertTextMode": 2,
"documentation": {
"kind": "markdown",
"value": "```prisma\n@@map(_ name: String)\n```\n___\nMaps a model name from the Prisma schema to a different table name.\n\n_@param_ name The name of the target database table."
}
},
{
"label": "@@unique",
"kind": 10,
"insertText": "@@unique([$0])",
"insertTextFormat": 2,
"insertTextMode": 2,
"documentation": {
"kind": "markdown",
"value": "```prisma\n@@unique(_ fields: FieldReference[], name: String?, map: String?)\n```\n___\nDefines a compound unique constraint for the specified fields.\n\n_@param_ fields A list of references.\n\n_@param_ name Defines the name in your Prisma Client API.\n\n_@param_ map Defines a custom constraint name in the database."
}
},
{
"label": "@@index",
"kind": 10,
"insertText": "@@index([$0])",
"insertTextFormat": 2,
"insertTextMode": 2,
"documentation": {
"kind": "markdown",
"value": "```prisma\n@@index(_ fields: FieldReference[], map: String?)\n```\n___\nDefines an index on the model.\n\n_@param_ fields A list of references.\n\n_@param_ map Defines a custom index name in the database."
}
},
{
"label": "@@ignore",
"kind": 10,
"insertTextFormat": 2,
"documentation": {
"kind": "markdown",
"value": "```prisma\n@@ignore\n```\n___\nA model with an `@@ignore` attribute can be kept in sync with the database schema using Prisma Migrate and Introspection, but won't be exposed in Prisma Client."
}
},
{
"label": "@@schema",
"kind": 10,
"insertText": "@@schema($0)",
"insertTextFormat": 2,
"insertTextMode": 2,
"documentation": {
"kind": "markdown",
"value": "```prisma\n@@schema(_: String)\n```\n___\nDesignate which schema this belongs to. [Learn more](https://pris.ly/d/multi-schema-configuration)"
}
}
],
"isIncomplete": false
}
[Trace - 8:21:07 PM] Sending notification 'textDocument/didChange'.
Params: {
"textDocument": {
"uri": "file:///Users/alexbussey/Repos/personal/show-grind/prisma/schema.prisma",
"version": 24
},
"contentChanges": [
{
"range": {
"start": {
"line": 293,
"character": 3
},
"end": {
"line": 293,
"character": 3
}
},
"rangeLength": 0,
"text": "e"
}
]
}
[Trace - 8:21:07 PM] Received notification 'window/logMessage'.
Params: {
"type": 4,
"message": "running lint() from prisma-schema-wasm"
}
running lint() from prisma-schema-wasm
[Trace - 8:21:07 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {
"uri": "file:///Users/alexbussey/Repos/personal/show-grind/prisma/schema.prisma",
"diagnostics": [
{
"range": {
"start": {
"line": 293,
"character": 2
},
"end": {
"line": 294,
"character": 0
}
},
"message": "Error validating model \"card_set\": This field declaration is invalid. It is either missing a name or a type.",
"source": "",
"severity": 1
}
]
}
[Trace - 8:21:07 PM] Sending request 'textDocument/completion - (65)'.
Params: {
"textDocument": {
"uri": "file:///Users/alexbussey/Repos/personal/show-grind/prisma/schema.prisma"
},
"position": {
"line": 293,
"character": 4
},
"context": {
"triggerKind": 1
}
}
[Trace - 8:21:07 PM] Received response 'textDocument/completion - (65)' in 2ms.
Result: {
"items": [
{
"label": "@@map",
"kind": 10,
"insertText": "@@map(\"$0\")",
"insertTextFormat": 2,
"insertTextMode": 2,
"documentation": {
"kind": "markdown",
"value": "```prisma\n@@map(_ name: String)\n```\n___\nMaps a model name from the Prisma schema to a different table name.\n\n_@param_ name The name of the target database table."
}
},
{
"label": "@@unique",
"kind": 10,
"insertText": "@@unique([$0])",
"insertTextFormat": 2,
"insertTextMode": 2,
"documentation": {
"kind": "markdown",
"value": "```prisma\n@@unique(_ fields: FieldReference[], name: String?, map: String?)\n```\n___\nDefines a compound unique constraint for the specified fields.\n\n_@param_ fields A list of references.\n\n_@param_ name Defines the name in your Prisma Client API.\n\n_@param_ map Defines a custom constraint name in the database."
}
},
{
"label": "@@index",
"kind": 10,
"insertText": "@@index([$0])",
"insertTextFormat": 2,
"insertTextMode": 2,
"documentation": {
"kind": "markdown",
"value": "```prisma\n@@index(_ fields: FieldReference[], map: String?)\n```\n___\nDefines an index on the model.\n\n_@param_ fields A list of references.\n\n_@param_ map Defines a custom index name in the database."
}
},
{
"label": "@@ignore",
"kind": 10,
"insertTextFormat": 2,
"documentation": {
"kind": "markdown",
"value": "```prisma\n@@ignore\n```\n___\nA model with an `@@ignore` attribute can be kept in sync with the database schema using Prisma Migrate and Introspection, but won't be exposed in Prisma Client."
}
},
{
"label": "@@schema",
"kind": 10,
"insertText": "@@schema($0)",
"insertTextFormat": 2,
"insertTextMode": 2,
"documentation": {
"kind": "markdown",
"value": "```prisma\n@@schema(_: String)\n```\n___\nDesignate which schema this belongs to. [Learn more](https://pris.ly/d/multi-schema-configuration)"
}
}
],
"isIncomplete": false
}
[Trace - 8:21:07 PM] Sending notification 'textDocument/didChange'.
Params: {
"textDocument": {
"uri": "file:///Users/alexbussey/Repos/personal/show-grind/prisma/schema.prisma",
"version": 25
},
"contentChanges": [
{
"range": {
"start": {
"line": 293,
"character": 4
},
"end": {
"line": 293,
"character": 4
}
},
"rangeLength": 0,
"text": "s"
}
]
}
[Trace - 8:21:07 PM] Received notification 'window/logMessage'.
Params: {
"type": 4,
"message": "running lint() from prisma-schema-wasm"
}
running lint() from prisma-schema-wasm
[Trace - 8:21:07 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {
"uri": "file:///Users/alexbussey/Repos/personal/show-grind/prisma/schema.prisma",
"diagnostics": [
{
"range": {
"start": {
"line": 293,
"character": 2
},
"end": {
"line": 294,
"character": 0
}
},
"message": "Error validating model \"card_set\": This field declaration is invalid. It is either missing a name or a type.",
"source": "",
"severity": 1
}
]
}
[Trace - 8:21:07 PM] Sending request 'textDocument/completion - (66)'.
Params: {
"textDocument": {
"uri": "file:///Users/alexbussey/Repos/personal/show-grind/prisma/schema.prisma"
},
"position": {
"line": 293,
"character": 5
},
"context": {
"triggerKind": 1
}
}
[Trace - 8:21:07 PM] Received response 'textDocument/completion - (66)' in 2ms.
Result: {
"items": [
{
"label": "@@map",
"kind": 10,
"insertText": "@@map(\"$0\")",
"insertTextFormat": 2,
"insertTextMode": 2,
"documentation": {
"kind": "markdown",
"value": "```prisma\n@@map(_ name: String)\n```\n___\nMaps a model name from the Prisma schema to a different table name.\n\n_@param_ name The name of the target database table."
}
},
{
"label": "@@unique",
"kind": 10,
"insertText": "@@unique([$0])",
"insertTextFormat": 2,
"insertTextMode": 2,
"documentation": {
"kind": "markdown",
"value": "```prisma\n@@unique(_ fields: FieldReference[], name: String?, map: String?)\n```\n___\nDefines a compound unique constraint for the specified fields.\n\n_@param_ fields A list of references.\n\n_@param_ name Defines the name in your Prisma Client API.\n\n_@param_ map Defines a custom constraint name in the database."
}
},
{
"label": "@@index",
"kind": 10,
"insertText": "@@index([$0])",
"insertTextFormat": 2,
"insertTextMode": 2,
"documentation": {
"kind": "markdown",
"value": "```prisma\n@@index(_ fields: FieldReference[], map: String?)\n```\n___\nDefines an index on the model.\n\n_@param_ fields A list of references.\n\n_@param_ map Defines a custom index name in the database."
}
},
{
"label": "@@ignore",
"kind": 10,
"insertTextFormat": 2,
"documentation": {
"kind": "markdown",
"value": "```prisma\n@@ignore\n```\n___\nA model with an `@@ignore` attribute can be kept in sync with the database schema using Prisma Migrate and Introspection, but won't be exposed in Prisma Client."
}
},
{
"label": "@@schema",
"kind": 10,
"insertText": "@@schema($0)",
"insertTextFormat": 2,
"insertTextMode": 2,
"documentation": {
"kind": "markdown",
"value": "```prisma\n@@schema(_: String)\n```\n___\nDesignate which schema this belongs to. [Learn more](https://pris.ly/d/multi-schema-configuration)"
}
}
],
"isIncomplete": false
}
[Trace - 8:21:07 PM] Sending notification 'textDocument/didChange'.
Params: {
"textDocument": {
"uri": "file:///Users/alexbussey/Repos/personal/show-grind/prisma/schema.prisma",
"version": 26
},
"contentChanges": [
{
"range": {
"start": {
"line": 293,
"character": 5
},
"end": {
"line": 293,
"character": 5
}
},
"rangeLength": 0,
"text": "t"
}
]
}
[Trace - 8:21:07 PM] Received notification 'window/logMessage'.
Params: {
"type": 4,
"message": "running lint() from prisma-schema-wasm"
}
running lint() from prisma-schema-wasm
[Trace - 8:21:07 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {
"uri": "file:///Users/alexbussey/Repos/personal/show-grind/prisma/schema.prisma",
"diagnostics": [
{
"range": {
"start": {
"line": 293,
"character": 2
},
"end": {
"line": 294,
"character": 0
}
},
"message": "Error validating model \"card_set\": This field declaration is invalid. It is either missing a name or a type.",
"source": "",
"severity": 1
}
]
}
[Trace - 8:21:07 PM] Sending request 'textDocument/completion - (67)'.
Params: {
"textDocument": {
"uri": "file:///Users/alexbussey/Repos/personal/show-grind/prisma/schema.prisma"
},
"position": {
"line": 293,
"character": 6
},
"context": {
"triggerKind": 1
}
}
[Trace - 8:21:07 PM] Received response 'textDocument/completion - (67)' in 1ms.
Result: {
"items": [
{
"label": "@@map",
"kind": 10,
"insertText": "@@map(\"$0\")",
"insertTextFormat": 2,
"insertTextMode": 2,
"documentation": {
"kind": "markdown",
"value": "```prisma\n@@map(_ name: String)\n```\n___\nMaps a model name from the Prisma schema to a different table name.\n\n_@param_ name The name of the target database table."
}
},
{
"label": "@@unique",
"kind": 10,
"insertText": "@@unique([$0])",
"insertTextFormat": 2,
"insertTextMode": 2,
"documentation": {
"kind": "markdown",
"value": "```prisma\n@@unique(_ fields: FieldReference[], name: String?, map: String?)\n```\n___\nDefines a compound unique constraint for the specified fields.\n\n_@param_ fields A list of references.\n\n_@param_ name Defines the name in your Prisma Client API.\n\n_@param_ map Defines a custom constraint name in the database."
}
},
{
"label": "@@index",
"kind": 10,
"insertText": "@@index([$0])",
"insertTextFormat": 2,
"insertTextMode": 2,
"documentation": {
"kind": "markdown",
"value": "```prisma\n@@index(_ fields: FieldReference[], map: String?)\n```\n___\nDefines an index on the model.\n\n_@param_ fields A list of references.\n\n_@param_ map Defines a custom index name in the database."
}
},
{
"label": "@@ignore",
"kind": 10,
"insertTextFormat": 2,
"documentation": {
"kind": "markdown",
"value": "```prisma\n@@ignore\n```\n___\nA model with an `@@ignore` attribute can be kept in sync with the database schema using Prisma Migrate and Introspection, but won't be exposed in Prisma Client."
}
},
{
"label": "@@schema",
"kind": 10,
"insertText": "@@schema($0)",
"insertTextFormat": 2,
"insertTextMode": 2,
"documentation": {
"kind": "markdown",
"value": "```prisma\n@@schema(_: String)\n```\n___\nDesignate which schema this belongs to. [Learn more](https://pris.ly/d/multi-schema-configuration)"
}
}
],
"isIncomplete": false
}
[Trace - 8:21:07 PM] Sending request 'textDocument/codeAction - (68)'.
Params: {
"textDocument": {
"uri": "file:///Users/alexbussey/Repos/personal/show-grind/prisma/schema.prisma"
},
"range": {
"start": {
"line": 293,
"character": 6
},
"end": {
"line": 293,
"character": 6
}
},
"context": {
"diagnostics": [
{
"range": {
"start": {
"line": 293,
"character": 2
},
"end": {
"line": 294,
"character": 0
}
},
"message": "Error validating model \"card_set\": This field declaration is invalid. It is either missing a name or a type.",
"severity": 1
}
]
}
}
[Trace - 8:21:07 PM] Received notification 'window/logMessage'.
Params: {
"type": 1,
"message": "prisma-schema-wasm errored when invoking code_actions. It resulted in a Wasm panic.\nRuntimeError: panicked at 'no entry found for key', psl/parser-database/src/walkers/model.rs:260:14"
}
[Error - 8:21:07 PM] prisma-schema-wasm errored when invoking code_actions. It resulted in a Wasm panic.
RuntimeError: panicked at 'no entry found for key', psl/parser-database/src/walkers/model.rs:260:14
[Trace - 8:21:07 PM] Received request 'window/showMessageRequest - (5)'.
Params: {
"type": 1,
"message": "prisma-schema-wasm errored. To get a more detailed output please see Prisma Language Server output. You can do this by going to View, then Output from the toolbar, and then select 'Prisma Language Server' in the drop-down menu.",
"actions": []
}
[Trace - 8:21:07 PM] Received response 'textDocument/codeAction - (68)' in 3ms.
Result: []
[Trace - 8:21:07 PM] Sending response 'window/showMessageRequest - (4)'. Processing request took 5754ms
No result returned.
[Trace - 8:21:07 PM] Sending request 'textDocument/documentSymbol - (69)'.
Params: {
"textDocument": {
"uri": "file:///Users/alexbussey/Repos/personal/show-grind/prisma/schema.prisma"
}
}
[Trace - 8:21:07 PM] Received response 'textDocument/documentSymbol - (69)' in 0ms.
Result: [
{
"kind": 12,
"name": "client",
"range": {
"start": {
"line": 0,
"character": 0
},
"end": {
"line": 3,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 0,
"character": 10
},
"end": {
"line": 0,
"character": 16
}
}
},
{
"kind": 23,
"name": "db",
"range": {
"start": {
"line": 5,
"character": 0
},
"end": {
"line": 9,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 5,
"character": 11
},
"end": {
"line": 5,
"character": 13
}
}
},
{
"kind": 5,
"name": "audit_log_entries",
"range": {
"start": {
"line": 12,
"character": 0
},
"end": {
"line": 21,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 12,
"character": 6
},
"end": {
"line": 12,
"character": 23
}
}
},
{
"kind": 5,
"name": "flow_state",
"range": {
"start": {
"line": 24,
"character": 0
},
"end": {
"line": 41,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 24,
"character": 6
},
"end": {
"line": 24,
"character": 16
}
}
},
{
"kind": 5,
"name": "identities",
"range": {
"start": {
"line": 44,
"character": 0
},
"end": {
"line": 59,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 44,
"character": 6
},
"end": {
"line": 44,
"character": 16
}
}
},
{
"kind": 5,
"name": "instances",
"range": {
"start": {
"line": 62,
"character": 0
},
"end": {
"line": 70,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 62,
"character": 6
},
"end": {
"line": 62,
"character": 15
}
}
},
{
"kind": 5,
"name": "mfa_amr_claims",
"range": {
"start": {
"line": 73,
"character": 0
},
"end": {
"line": 83,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 73,
"character": 6
},
"end": {
"line": 73,
"character": 20
}
}
},
{
"kind": 5,
"name": "mfa_challenges",
"range": {
"start": {
"line": 86,
"character": 0
},
"end": {
"line": 96,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 86,
"character": 6
},
"end": {
"line": 86,
"character": 20
}
}
},
{
"kind": 5,
"name": "mfa_factors",
"range": {
"start": {
"line": 99,
"character": 0
},
"end": {
"line": 113,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 99,
"character": 6
},
"end": {
"line": 99,
"character": 17
}
}
},
{
"kind": 5,
"name": "refresh_tokens",
"range": {
"start": {
"line": 116,
"character": 0
},
"end": {
"line": 134,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 116,
"character": 6
},
"end": {
"line": 116,
"character": 20
}
}
},
{
"kind": 5,
"name": "saml_providers",
"range": {
"start": {
"line": 138,
"character": 0
},
"end": {
"line": 151,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 138,
"character": 6
},
"end": {
"line": 138,
"character": 20
}
}
},
{
"kind": 5,
"name": "saml_relay_states",
"range": {
"start": {
"line": 155,
"character": 0
},
"end": {
"line": 170,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 155,
"character": 6
},
"end": {
"line": 155,
"character": 23
}
}
},
{
"kind": 5,
"name": "schema_migrations",
"range": {
"start": {
"line": 173,
"character": 0
},
"end": {
"line": 177,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 173,
"character": 6
},
"end": {
"line": 173,
"character": 23
}
}
},
{
"kind": 5,
"name": "sessions",
"range": {
"start": {
"line": 180,
"character": 0
},
"end": {
"line": 196,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 180,
"character": 6
},
"end": {
"line": 180,
"character": 14
}
}
},
{
"kind": 5,
"name": "sso_domains",
"range": {
"start": {
"line": 201,
"character": 0
},
"end": {
"line": 211,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 201,
"character": 6
},
"end": {
"line": 201,
"character": 17
}
}
},
{
"kind": 5,
"name": "sso_providers",
"range": {
"start": {
"line": 216,
"character": 0
},
"end": {
"line": 226,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 216,
"character": 6
},
"end": {
"line": 216,
"character": 19
}
}
},
{
"kind": 5,
"name": "users",
"range": {
"start": {
"line": 231,
"character": 0
},
"end": {
"line": 273,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 231,
"character": 6
},
"end": {
"line": 231,
"character": 11
}
}
},
{
"kind": 5,
"name": "profiles",
"range": {
"start": {
"line": 277,
"character": 0
},
"end": {
"line": 287,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 277,
"character": 6
},
"end": {
"line": 277,
"character": 14
}
}
},
{
"kind": 5,
"name": "card_set",
"range": {
"start": {
"line": 289,
"character": 0
},
"end": {
"line": 296,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 289,
"character": 6
},
"end": {
"line": 289,
"character": 14
}
}
},
{
"kind": 10,
"name": "aal_level",
"range": {
"start": {
"line": 298,
"character": 0
},
"end": {
"line": 304,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 298,
"character": 5
},
"end": {
"line": 298,
"character": 14
}
}
},
{
"kind": 10,
"name": "code_challenge_method",
"range": {
"start": {
"line": 306,
"character": 0
},
"end": {
"line": 311,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 306,
"character": 5
},
"end": {
"line": 306,
"character": 26
}
}
},
{
"kind": 10,
"name": "factor_status",
"range": {
"start": {
"line": 313,
"character": 0
},
"end": {
"line": 318,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 313,
"character": 5
},
"end": {
"line": 313,
"character": 18
}
}
},
{
"kind": 10,
"name": "factor_type",
"range": {
"start": {
"line": 320,
"character": 0
},
"end": {
"line": 325,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 320,
"character": 5
},
"end": {
"line": 320,
"character": 16
}
}
}
]
[Trace - 8:21:07 PM] Sending request 'textDocument/documentSymbol - (70)'.
Params: {
"textDocument": {
"uri": "file:///Users/alexbussey/Repos/personal/show-grind/prisma/schema.prisma"
}
}
[Trace - 8:21:07 PM] Received response 'textDocument/documentSymbol - (70)' in 1ms.
Result: [
{
"kind": 12,
"name": "client",
"range": {
"start": {
"line": 0,
"character": 0
},
"end": {
"line": 3,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 0,
"character": 10
},
"end": {
"line": 0,
"character": 16
}
}
},
{
"kind": 23,
"name": "db",
"range": {
"start": {
"line": 5,
"character": 0
},
"end": {
"line": 9,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 5,
"character": 11
},
"end": {
"line": 5,
"character": 13
}
}
},
{
"kind": 5,
"name": "audit_log_entries",
"range": {
"start": {
"line": 12,
"character": 0
},
"end": {
"line": 21,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 12,
"character": 6
},
"end": {
"line": 12,
"character": 23
}
}
},
{
"kind": 5,
"name": "flow_state",
"range": {
"start": {
"line": 24,
"character": 0
},
"end": {
"line": 41,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 24,
"character": 6
},
"end": {
"line": 24,
"character": 16
}
}
},
{
"kind": 5,
"name": "identities",
"range": {
"start": {
"line": 44,
"character": 0
},
"end": {
"line": 59,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 44,
"character": 6
},
"end": {
"line": 44,
"character": 16
}
}
},
{
"kind": 5,
"name": "instances",
"range": {
"start": {
"line": 62,
"character": 0
},
"end": {
"line": 70,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 62,
"character": 6
},
"end": {
"line": 62,
"character": 15
}
}
},
{
"kind": 5,
"name": "mfa_amr_claims",
"range": {
"start": {
"line": 73,
"character": 0
},
"end": {
"line": 83,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 73,
"character": 6
},
"end": {
"line": 73,
"character": 20
}
}
},
{
"kind": 5,
"name": "mfa_challenges",
"range": {
"start": {
"line": 86,
"character": 0
},
"end": {
"line": 96,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 86,
"character": 6
},
"end": {
"line": 86,
"character": 20
}
}
},
{
"kind": 5,
"name": "mfa_factors",
"range": {
"start": {
"line": 99,
"character": 0
},
"end": {
"line": 113,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 99,
"character": 6
},
"end": {
"line": 99,
"character": 17
}
}
},
{
"kind": 5,
"name": "refresh_tokens",
"range": {
"start": {
"line": 116,
"character": 0
},
"end": {
"line": 134,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 116,
"character": 6
},
"end": {
"line": 116,
"character": 20
}
}
},
{
"kind": 5,
"name": "saml_providers",
"range": {
"start": {
"line": 138,
"character": 0
},
"end": {
"line": 151,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 138,
"character": 6
},
"end": {
"line": 138,
"character": 20
}
}
},
{
"kind": 5,
"name": "saml_relay_states",
"range": {
"start": {
"line": 155,
"character": 0
},
"end": {
"line": 170,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 155,
"character": 6
},
"end": {
"line": 155,
"character": 23
}
}
},
{
"kind": 5,
"name": "schema_migrations",
"range": {
"start": {
"line": 173,
"character": 0
},
"end": {
"line": 177,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 173,
"character": 6
},
"end": {
"line": 173,
"character": 23
}
}
},
{
"kind": 5,
"name": "sessions",
"range": {
"start": {
"line": 180,
"character": 0
},
"end": {
"line": 196,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 180,
"character": 6
},
"end": {
"line": 180,
"character": 14
}
}
},
{
"kind": 5,
"name": "sso_domains",
"range": {
"start": {
"line": 201,
"character": 0
},
"end": {
"line": 211,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 201,
"character": 6
},
"end": {
"line": 201,
"character": 17
}
}
},
{
"kind": 5,
"name": "sso_providers",
"range": {
"start": {
"line": 216,
"character": 0
},
"end": {
"line": 226,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 216,
"character": 6
},
"end": {
"line": 216,
"character": 19
}
}
},
{
"kind": 5,
"name": "users",
"range": {
"start": {
"line": 231,
"character": 0
},
"end": {
"line": 273,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 231,
"character": 6
},
"end": {
"line": 231,
"character": 11
}
}
},
{
"kind": 5,
"name": "profiles",
"range": {
"start": {
"line": 277,
"character": 0
},
"end": {
"line": 287,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 277,
"character": 6
},
"end": {
"line": 277,
"character": 14
}
}
},
{
"kind": 5,
"name": "card_set",
"range": {
"start": {
"line": 289,
"character": 0
},
"end": {
"line": 296,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 289,
"character": 6
},
"end": {
"line": 289,
"character": 14
}
}
},
{
"kind": 10,
"name": "aal_level",
"range": {
"start": {
"line": 298,
"character": 0
},
"end": {
"line": 304,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 298,
"character": 5
},
"end": {
"line": 298,
"character": 14
}
}
},
{
"kind": 10,
"name": "code_challenge_method",
"range": {
"start": {
"line": 306,
"character": 0
},
"end": {
"line": 311,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 306,
"character": 5
},
"end": {
"line": 306,
"character": 26
}
}
},
{
"kind": 10,
"name": "factor_status",
"range": {
"start": {
"line": 313,
"character": 0
},
"end": {
"line": 318,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 313,
"character": 5
},
"end": {
"line": 313,
"character": 18
}
}
},
{
"kind": 10,
"name": "factor_type",
"range": {
"start": {
"line": 320,
"character": 0
},
"end": {
"line": 325,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 320,
"character": 5
},
"end": {
"line": 320,
"character": 16
}
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment