addedOutput schema / definitions / DebuggerSnapshotOutput
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "breakpoints": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "column": {
+ "anyOf": [
+ {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "id": {
+ "maxLength": 500,
+ "type": "string"
+ },
+ "line": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "sourceUrl": {
+ "maxLength": 2560,
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "sourceUrl",
+ "line",
+ "column"
+ ],
+ "type": "object"
+ },
+ "maxItems": 100,
+ "type": "array"
+ },
+ "callFrames": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "column": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "functionName": {
+ "maxLength": 500,
+ "type": "string"
+ },
+ "line": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "locals": {
+ "additionalProperties": {
+ "$ref": "#/definitions/JsonValue"
+ },
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+ },
+ "scopeNames": {
+ "items": {
+ "maxLength": 100,
+ "type": "string"
+ },
+ "maxItems": 50,
+ "type": "array"
+ },
+ "url": {
+ "maxLength": 2560,
+ "type": "string"
+ }
+ },
+ "required": [
+ "functionName",
+ "url",
+ "line",
+ "column",
+ "scopeNames",
+ "locals"
+ ],
+ "type": "object"
+ },
+ "maxItems": 50,
+ "type": "array"
+ },
+ "paused": {
+ "type": "boolean"
+ },
+ "reason": {
+ "anyOf": [
+ {
+ "maxLength": 500,
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "paused",
+ "reason",
+ "callFrames",
+ "breakpoints"
+ ],
+ "type": "object"
+}
addedOutput schema / definitions / JsonValue
Added value: +{
+ "allOf": [
+ {
+ "$ref": "#/definitions/__schema0"
+ }
+ ]
+}
changedOutput schema / definitions / __schema0 / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "type": "number"
- },
- {
- "type": "boolean"
- },
- {
- "type": "null"
- },
- {
- "items": {
- "$ref": "#/definitions/__schema0"
- },
- "type": "array"
- },
- {
- "additionalProperties": {
- "$ref": "#/definitions/__schema0"
- },
- "propertyNames": {
- "type": "string"
- },
- "type": "object"
- }
-]New value: +[
+ {
+ "type": "string"
+ },
+ {
+ "type": "number"
+ },
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ },
+ {
+ "items": {
+ "allOf": [
+ {
+ "$ref": "#/definitions/__schema0"
+ }
+ ]
+ },
+ "type": "array"
+ },
+ {
+ "additionalProperties": {
+ "allOf": [
+ {
+ "$ref": "#/definitions/__schema0"
+ }
+ ]
+ },
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+ }
+]
removedOutput schema / properties / data / additionalProperties
Removed value: -false
addedOutput schema / properties / data / allOf
Added value: +[
+ {
+ "$ref": "#/definitions/DebuggerSnapshotOutput"
+ }
+]
removedOutput schema / properties / data / properties
Removed value: -{
- "breakpoints": {
- "items": {
- "additionalProperties": false,
- "properties": {
- "column": {
- "anyOf": [
- {
- "maximum": 9007199254740991,
- "minimum": -9007199254740991,
- "type": "integer"
- },
- {
- "type": "null"
- }
- ]
- },
- "id": {
- "maxLength": 500,
- "type": "string"
- },
- "line": {
- "maximum": 9007199254740991,
- "minimum": -9007199254740991,
- "type": "integer"
- },
- "sourceUrl": {
- "maxLength": 2560,
- "type": "string"
- }
- },
- "required": [
- "id",
- "sourceUrl",
- "line",
- "column"
- ],
- "type": "object"
- },
- "maxItems": 100,
- "type": "array"
- },
- "callFrames": {
- "items": {
- "additionalProperties": false,
- "properties": {
- "column": {
- "maximum": 9007199254740991,
- "minimum": -9007199254740991,
- "type": "integer"
- },
- "functionName": {
- "maxLength": 500,
- "type": "string"
- },
- "line": {
- "maximum": 9007199254740991,
- "minimum": -9007199254740991,
- "type": "integer"
- },
- "locals": {
- "additionalProperties": {
- "$ref": "#/definitions/__schema0"
- },
- "propertyNames": {
- "type": "string"
- },
- "type": "object"
- },
- "scopeNames": {
- "items": {
- "maxLength": 100,
- "type": "string"
- },
- "maxItems": 50,
- "type": "array"
- },
- "url": {
- "maxLength": 2560,
- "type": "string"
- }
- },
- "required": [
- "functionName",
- "url",
- "line",
- "column",
- "scopeNames",
- "locals"
- ],
- "type": "object"
- },
- "maxItems": 50,
- "type": "array"
- },
- "paused": {
- "type": "boolean"
- },
- "reason": {
- "anyOf": [
- {
- "maxLength": 500,
- "type": "string"
- },
- {
- "type": "null"
- }
- ]
- }
-}
removedOutput schema / properties / data / required
Removed value: -[
- "paused",
- "reason",
- "callFrames",
- "breakpoints"
-]
removedOutput schema / properties / data / type
Removed value: -"object"