Skip to content

Commit c1ee5db

Browse files
author
LaunchDarklyCI
committed
Version 2.0.15 automatically generated from ld-openapi@b22dd76.
1 parent fdd7b43 commit c1ee5db

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

api.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -500,6 +500,14 @@ export class Environment {
500500
* An array of tags for this environment.
501501
*/
502502
'tags'?: Array<string>;
503+
/**
504+
* Determines if this environment requires comments for flag and segment changes.
505+
*/
506+
'requireComments'?: boolean;
507+
/**
508+
* Determines if this environment requires confirmation for flag and segment changes.
509+
*/
510+
'confirmChanges'?: boolean;
503511

504512
static discriminator: string | undefined = undefined;
505513

@@ -558,6 +566,16 @@ export class Environment {
558566
"name": "tags",
559567
"baseName": "tags",
560568
"type": "Array<string>"
569+
},
570+
{
571+
"name": "requireComments",
572+
"baseName": "requireComments",
573+
"type": "boolean"
574+
},
575+
{
576+
"name": "confirmChanges",
577+
"baseName": "confirmChanges",
578+
"type": "boolean"
561579
} ];
562580

563581
static getAttributeTypeMap() {

openapi.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1350,6 +1350,18 @@ definitions:
13501350
items:
13511351
type: string
13521352
description: An array of tags for this environment.
1353+
requireComments:
1354+
type: boolean
1355+
example: false
1356+
description: >-
1357+
Determines if this environment requires comments for flag and segment
1358+
changes.
1359+
confirmChanges:
1360+
type: boolean
1361+
example: false
1362+
description: >-
1363+
Determines if this environment requires confirmation for flag and
1364+
segment changes.
13531365
EnvironmentPost:
13541366
type: object
13551367
properties:

0 commit comments

Comments
 (0)