mirror of
https://github.com/Unleash/unleash.git
synced 2025-08-04 13:48:56 +02:00
Fix: Update snapshot
This commit is contained in:
parent
c6fa6b6a0f
commit
e6eb9267de
@ -553,7 +553,6 @@ Object {
|
|||||||
"type": "array",
|
"type": "array",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
"required": Array [],
|
|
||||||
"type": "object",
|
"type": "object",
|
||||||
},
|
},
|
||||||
"clientFeaturesSchema": Object {
|
"clientFeaturesSchema": Object {
|
||||||
@ -1018,32 +1017,6 @@ Object {
|
|||||||
],
|
],
|
||||||
"type": "object",
|
"type": "object",
|
||||||
},
|
},
|
||||||
"exportParametersSchema": Object {
|
|
||||||
"properties": Object {
|
|
||||||
"download": Object {
|
|
||||||
"type": "boolean",
|
|
||||||
},
|
|
||||||
"environments": Object {
|
|
||||||
"type": "boolean",
|
|
||||||
},
|
|
||||||
"featureToggles": Object {
|
|
||||||
"type": "boolean",
|
|
||||||
},
|
|
||||||
"format": Object {
|
|
||||||
"type": "string",
|
|
||||||
},
|
|
||||||
"projects": Object {
|
|
||||||
"type": "boolean",
|
|
||||||
},
|
|
||||||
"strategies": Object {
|
|
||||||
"type": "boolean",
|
|
||||||
},
|
|
||||||
"tags": Object {
|
|
||||||
"type": "boolean",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"type": "object",
|
|
||||||
},
|
|
||||||
"featureEnvironmentMetricsSchema": Object {
|
"featureEnvironmentMetricsSchema": Object {
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"properties": Object {
|
"properties": Object {
|
||||||
@ -1465,7 +1438,6 @@ Object {
|
|||||||
"type": "number",
|
"type": "number",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
"required": Array [],
|
|
||||||
"type": "object",
|
"type": "object",
|
||||||
},
|
},
|
||||||
"healthCheckSchema": Object {
|
"healthCheckSchema": Object {
|
||||||
@ -1763,28 +1735,23 @@ Object {
|
|||||||
"description": "A simplified feature toggle model intended for the Unleash playground.",
|
"description": "A simplified feature toggle model intended for the Unleash playground.",
|
||||||
"properties": Object {
|
"properties": Object {
|
||||||
"isEnabled": Object {
|
"isEnabled": Object {
|
||||||
"examples": Array [
|
"example": true,
|
||||||
true,
|
|
||||||
],
|
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
},
|
},
|
||||||
"name": Object {
|
"name": Object {
|
||||||
"examples": Array [
|
"example": "my-feature",
|
||||||
"my-feature",
|
|
||||||
],
|
|
||||||
"type": "string",
|
"type": "string",
|
||||||
},
|
},
|
||||||
"projectId": Object {
|
"projectId": Object {
|
||||||
"examples": Array [
|
"example": "my-project",
|
||||||
"my-project",
|
|
||||||
],
|
|
||||||
"type": "string",
|
"type": "string",
|
||||||
},
|
},
|
||||||
"variant": Object {
|
"variant": Object {
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"examples": Array [
|
"example": Object {
|
||||||
"green",
|
"enabled": true,
|
||||||
],
|
"name": "green",
|
||||||
|
},
|
||||||
"nullable": true,
|
"nullable": true,
|
||||||
"properties": Object {
|
"properties": Object {
|
||||||
"enabled": Object {
|
"enabled": Object {
|
||||||
@ -1844,18 +1811,15 @@ Object {
|
|||||||
"$ref": "#/components/schemas/sdkContextSchema",
|
"$ref": "#/components/schemas/sdkContextSchema",
|
||||||
},
|
},
|
||||||
"environment": Object {
|
"environment": Object {
|
||||||
"examples": Array [
|
"example": "development",
|
||||||
"development",
|
|
||||||
],
|
|
||||||
"type": "string",
|
"type": "string",
|
||||||
},
|
},
|
||||||
"projects": Object {
|
"projects": Object {
|
||||||
"oneOf": Array [
|
"oneOf": Array [
|
||||||
Object {
|
Object {
|
||||||
"description": "A list of projects to check for toggles in.",
|
"description": "A list of projects to check for toggles in.",
|
||||||
"examples": Array [
|
"example": Array [
|
||||||
"my-project",
|
"my-project",
|
||||||
"my-other-project",
|
|
||||||
],
|
],
|
||||||
"items": Object {
|
"items": Object {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
@ -2003,24 +1967,18 @@ Object {
|
|||||||
},
|
},
|
||||||
"sdkContextSchema": Object {
|
"sdkContextSchema": Object {
|
||||||
"additionalProperties": Object {
|
"additionalProperties": Object {
|
||||||
"examples": Array [
|
"example": "top-level custom context value",
|
||||||
"top-level custom context value",
|
|
||||||
],
|
|
||||||
"type": "string",
|
"type": "string",
|
||||||
},
|
},
|
||||||
"description": "The Unleash context as modeled in client SDKs",
|
"description": "The Unleash context as modeled in client SDKs",
|
||||||
"properties": Object {
|
"properties": Object {
|
||||||
"appName": Object {
|
"appName": Object {
|
||||||
"examples": Array [
|
"example": "My cool application.",
|
||||||
"My cool application.",
|
|
||||||
],
|
|
||||||
"minLength": 1,
|
"minLength": 1,
|
||||||
"type": "string",
|
"type": "string",
|
||||||
},
|
},
|
||||||
"currentTime": Object {
|
"currentTime": Object {
|
||||||
"examples": Array [
|
"example": "2022-07-05T12:56:41+02:00",
|
||||||
"2022-07-05T12:56:41+02:00",
|
|
||||||
],
|
|
||||||
"format": "date-time",
|
"format": "date-time",
|
||||||
"type": "string",
|
"type": "string",
|
||||||
},
|
},
|
||||||
@ -2032,30 +1990,22 @@ Object {
|
|||||||
"additionalProperties": Object {
|
"additionalProperties": Object {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
},
|
},
|
||||||
"examples": Array [
|
"example": Object {
|
||||||
Object {
|
|
||||||
"customContextField": "this is one!",
|
"customContextField": "this is one!",
|
||||||
"otherCustomField": 3,
|
"otherCustomField": "3",
|
||||||
},
|
},
|
||||||
],
|
|
||||||
"type": "object",
|
"type": "object",
|
||||||
},
|
},
|
||||||
"remoteAddress": Object {
|
"remoteAddress": Object {
|
||||||
"examples": Array [
|
"example": "192.168.1.1",
|
||||||
"192.168.1.1",
|
|
||||||
],
|
|
||||||
"type": "string",
|
"type": "string",
|
||||||
},
|
},
|
||||||
"sessionId": Object {
|
"sessionId": Object {
|
||||||
"examples": Array [
|
"example": "b65e7b23-fec0-4814-a129-0e9861ef18fc",
|
||||||
"b65e7b23-fec0-4814-a129-0e9861ef18fc",
|
|
||||||
],
|
|
||||||
"type": "string",
|
"type": "string",
|
||||||
},
|
},
|
||||||
"userId": Object {
|
"userId": Object {
|
||||||
"examples": Array [
|
"example": "username@provider.com",
|
||||||
"username@provider.com",
|
|
||||||
],
|
|
||||||
"type": "string",
|
"type": "string",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@ -5010,7 +4960,71 @@ If the provided project does not exist, the list of events will be empty.",
|
|||||||
"operationId": "export",
|
"operationId": "export",
|
||||||
"parameters": Array [
|
"parameters": Array [
|
||||||
Object {
|
Object {
|
||||||
"$ref": "#/components/schema/exportParametersSchema",
|
"description": "Desired export format. Must be either \`json\` or \`yaml\`.",
|
||||||
|
"in": "query",
|
||||||
|
"name": "format",
|
||||||
|
"schema": Object {
|
||||||
|
"default": "json",
|
||||||
|
"enum": Array [
|
||||||
|
"json",
|
||||||
|
"yaml",
|
||||||
|
],
|
||||||
|
"type": "string",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Object {
|
||||||
|
"description": "Whether exported data should be downloaded as a file.",
|
||||||
|
"in": "query",
|
||||||
|
"name": "download",
|
||||||
|
"schema": Object {
|
||||||
|
"default": false,
|
||||||
|
"type": "boolean",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Object {
|
||||||
|
"description": "Whether strategies should be included in the exported data.",
|
||||||
|
"in": "query",
|
||||||
|
"name": "strategies",
|
||||||
|
"schema": Object {
|
||||||
|
"default": true,
|
||||||
|
"type": "boolean",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Object {
|
||||||
|
"description": "Whether feature toggles should be included in the exported data.",
|
||||||
|
"in": "query",
|
||||||
|
"name": "featureToggles",
|
||||||
|
"schema": Object {
|
||||||
|
"default": true,
|
||||||
|
"type": "boolean",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Object {
|
||||||
|
"description": "Whether projects should be included in the exported data.",
|
||||||
|
"in": "query",
|
||||||
|
"name": "projects",
|
||||||
|
"schema": Object {
|
||||||
|
"default": true,
|
||||||
|
"type": "boolean",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Object {
|
||||||
|
"description": "Whether tag types, tags, and feature_tags should be included in the exported data.",
|
||||||
|
"in": "query",
|
||||||
|
"name": "tags",
|
||||||
|
"schema": Object {
|
||||||
|
"default": true,
|
||||||
|
"type": "boolean",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Object {
|
||||||
|
"description": "Whether environments should be included in the exported data.",
|
||||||
|
"in": "query",
|
||||||
|
"name": "environments",
|
||||||
|
"schema": Object {
|
||||||
|
"default": true,
|
||||||
|
"type": "boolean",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
"responses": Object {
|
"responses": Object {
|
||||||
|
Loading…
Reference in New Issue
Block a user