Skip to content
This repository was archived by the owner on Sep 3, 2021. It is now read-only.

Commit 5a65a04

Browse files
author
LaunchDarklyCI
committed
Version 3.0.0 automatically generated from ld-openapi@1bc6a0b.
1 parent e1f92a5 commit 5a65a04

10 files changed

+268
-24
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ Class | Method | HTTP request | Description
141141
*ProjectsApi* | [**postProject**](docs/ProjectsApi.md#postproject) | **POST** /projects | Create a new project with the given key and name.
142142
*RootApi* | [**getRoot**](docs/RootApi.md#getroot) | **GET** / |
143143
*TeamMembersApi* | [**deleteMember**](docs/TeamMembersApi.md#deletemember) | **DELETE** /members/{memberId} | Delete a team member by ID.
144+
*TeamMembersApi* | [**getMe**](docs/TeamMembersApi.md#getme) | **GET** /members/me | Get the current team member associated with the token
144145
*TeamMembersApi* | [**getMember**](docs/TeamMembersApi.md#getmember) | **GET** /members/{memberId} | Get a single team member by ID.
145146
*TeamMembersApi* | [**getMembers**](docs/TeamMembersApi.md#getmembers) | **GET** /members | Returns a list of all members in the account.
146147
*TeamMembersApi* | [**patchMember**](docs/TeamMembersApi.md#patchmember) | **PATCH** /members/{memberId} | Modify a team member by ID.

_client.sh

+20-3
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,7 @@ case $state in
330330
"getProjects[Returns a list of all projects in the account.]" \
331331
"patchProject[Modify a project by ID.]" \
332332
"postProject[Create a new project with the given key and name.]" "getRoot[]" "deleteMember[Delete a team member by ID.]" \
333+
"getMe[Get the current team member associated with the token]" \
333334
"getMember[Get a single team member by ID.]" \
334335
"getMembers[Returns a list of all members in the account.]" \
335336
"patchMember[Modify a team member by ID.]" \
@@ -563,7 +564,7 @@ case $state in
563564
_op_arguments=(
564565
"projectKey=:[PATH] The project key, used to tie the flags together under one project so they can be managed together."
565566
"featureFlagKey=:[PATH] The feature flag's key. The key identifies the flag in your code."
566-
"env=:[QUERY] By default, each feature will include configurations for each environment. You can filter environments with the env query parameter. For example, setting env=production will restrict the returned configurations to just your production environment."
567+
"env=:[QUERY] By default, each feature will include configurations for each environment. You can filter environments with the env query parameter. For example, setting env=[\"production\"] will restrict the returned configurations to just your production environment."
567568
)
568569
_describe -t actions 'operations' _op_arguments -S '' && ret=0
569570
;;
@@ -596,11 +597,16 @@ case $state in
596597
local -a _op_arguments
597598
_op_arguments=(
598599
"projectKey=:[PATH] The project key, used to tie the flags together under one project so they can be managed together."
599-
"env=:[QUERY] By default, each feature will include configurations for each environment. You can filter environments with the env query parameter. For example, setting env=production will restrict the returned configurations to just your production environment."
600+
"env=:[QUERY] By default, each feature will include configurations for each environment. You can filter environments with the env query parameter. For example, setting env=[\"production\"] will restrict the returned configurations to just your production environment."
600601
"summary=true:[QUERY] By default in api version >= 1, flags will _not_ include their list of prerequisites, targets or rules. Set summary=0 to include these fields for each flag returned."
601602
"summary=false:[QUERY] By default in api version >= 1, flags will _not_ include their list of prerequisites, targets or rules. Set summary=0 to include these fields for each flag returned."
602603
"archived=true:[QUERY] When set to 1, archived flags will be included in the list of flags returned. By default, archived flags are not included in the list of flags."
603604
"archived=false:[QUERY] When set to 1, archived flags will be included in the list of flags returned. By default, archived flags are not included in the list of flags."
605+
"limit=:[QUERY] The number of objects to return. Defaults to -1, which returns everything."
606+
"number=true:[QUERY] Where to start in the list. This is for use with pagination. For example, an offset of 10 would skip the first 10 items and then return the next limit items."
607+
"number=false:[QUERY] Where to start in the list. This is for use with pagination. For example, an offset of 10 would skip the first 10 items and then return the next limit items."
608+
"filter=:[QUERY] A comma-separated list of filters. Each filter is of the form field:value."
609+
"sort=:[QUERY] A comma-separated list of fields to sort by. A field prefixed by a - will be sorted in descending order."
604610
"tag=:[QUERY] Filter by tag. A tag can be used to group flags across projects."
605611
)
606612
_describe -t actions 'operations' _op_arguments -S '' && ret=0
@@ -667,6 +673,12 @@ case $state in
667673
)
668674
_describe -t actions 'operations' _op_arguments -S '' && ret=0
669675
;;
676+
getMe)
677+
local -a _op_arguments
678+
_op_arguments=(
679+
)
680+
_describe -t actions 'operations' _op_arguments -S '' && ret=0
681+
;;
670682
getMember)
671683
local -a _op_arguments
672684
_op_arguments=(
@@ -677,7 +689,12 @@ case $state in
677689
getMembers)
678690
local -a _op_arguments
679691
_op_arguments=(
680-
)
692+
"limit=:[QUERY] The number of objects to return. Defaults to -1, which returns everything."
693+
"number=true:[QUERY] Where to start in the list. This is for use with pagination. For example, an offset of 10 would skip the first 10 items and then return the next limit items."
694+
"number=false:[QUERY] Where to start in the list. This is for use with pagination. For example, an offset of 10 would skip the first 10 items and then return the next limit items."
695+
"filter=:[QUERY] A comma-separated list of filters. Each filter is of the form field:value."
696+
"sort=:[QUERY] A comma-separated list of fields to sort by. A field prefixed by a - will be sorted in descending order."
697+
)
681698
_describe -t actions 'operations' _op_arguments -S '' && ret=0
682699
;;
683700
patchMember)

0 commit comments

Comments
 (0)