You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 3, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: _client.sh
+20-3
Original file line number
Diff line number
Diff line change
@@ -330,6 +330,7 @@ case $state in
330
330
"getProjects[Returns a list of all projects in the account.]" \
331
331
"patchProject[Modify a project by ID.]" \
332
332
"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]" \
333
334
"getMember[Get a single team member by ID.]" \
334
335
"getMembers[Returns a list of all members in the account.]" \
335
336
"patchMember[Modify a team member by ID.]" \
@@ -563,7 +564,7 @@ case $state in
563
564
_op_arguments=(
564
565
"projectKey=:[PATH] The project key, used to tie the flags together under one project so they can be managed together."
565
566
"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."
"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."
600
601
"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."
601
602
"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."
602
603
"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."
603
604
"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."
604
610
"tag=:[QUERY] Filter by tag. A tag can be used to group flags across projects."
"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."
0 commit comments