docs/SpacesApi.md in phrase-2.12.0 vs docs/SpacesApi.md in phrase-2.13.0

- old
+ new

@@ -7,13 +7,13 @@ [**space_create**](SpacesApi.md#space_create) | **POST** /accounts/{account_id}/spaces | Create a Space [**space_delete**](SpacesApi.md#space_delete) | **DELETE** /accounts/{account_id}/spaces/{id} | Delete Space [**space_show**](SpacesApi.md#space_show) | **GET** /accounts/{account_id}/spaces/{id} | Get Space [**space_update**](SpacesApi.md#space_update) | **PATCH** /accounts/{account_id}/spaces/{id} | Update Space [**spaces_list**](SpacesApi.md#spaces_list) | **GET** /accounts/{account_id}/spaces | List Spaces -[**spaces_projects_create**](SpacesApi.md#spaces_projects_create) | **POST** /accounts/{account_id}/spaces/{space_id}/projects | Add Project -[**spaces_projects_delete**](SpacesApi.md#spaces_projects_delete) | **DELETE** /accounts/{account_id}/spaces/{space_id}/projects/{id} | Remove Project -[**spaces_projects_list**](SpacesApi.md#spaces_projects_list) | **GET** /accounts/{account_id}/spaces/{space_id}/projects | List Projects +[**spaces_projects_create**](SpacesApi.md#spaces_projects_create) | **POST** /accounts/{account_id}/spaces/{space_id}/projects | Add Project to Space +[**spaces_projects_delete**](SpacesApi.md#spaces_projects_delete) | **DELETE** /accounts/{account_id}/spaces/{space_id}/projects/{id} | Remove Project from Space +[**spaces_projects_list**](SpacesApi.md#spaces_projects_list) | **GET** /accounts/{account_id}/spaces/{space_id}/projects | List Projects in Space ## space_create @@ -335,11 +335,11 @@ ## spaces_projects_create > spaces_projects_create(account_id, space_id, spaces_projects_create_parameters, opts) -Add Project +Add Project to Space Adds an existing project to the space. ### Example @@ -364,11 +364,11 @@ opts = { x_phrase_app_otp: 'x_phrase_app_otp_example' # String | Two-Factor-Authentication token (optional) } begin - #Add Project + #Add Project to Space api_instance.spaces_projects_create(account_id, space_id, spaces_projects_create_parameters, opts) rescue Phrase::ApiError => e puts "Exception when calling SpacesApi->spaces_projects_create: #{e}" end ``` @@ -399,11 +399,11 @@ ## spaces_projects_delete > spaces_projects_delete(account_id, space_id, id, opts) -Remove Project +Remove Project from Space Removes a specified project from the specified space. ### Example @@ -428,11 +428,11 @@ opts = { x_phrase_app_otp: 'x_phrase_app_otp_example' # String | Two-Factor-Authentication token (optional) } begin - #Remove Project + #Remove Project from Space api_instance.spaces_projects_delete(account_id, space_id, id, opts) rescue Phrase::ApiError => e puts "Exception when calling SpacesApi->spaces_projects_delete: #{e}" end ``` @@ -463,11 +463,11 @@ ## spaces_projects_list > Array<Project> spaces_projects_list(account_id, space_id, opts) -List Projects +List Projects in Space List all projects for the specified Space. ### Example @@ -493,10 +493,10 @@ page: 1, # Integer | Page number per_page: 25 # Integer | Limit on the number of objects to be returned, between 1 and 100. 25 by default } begin - #List Projects + #List Projects in Space result = api_instance.spaces_projects_list(account_id, space_id, opts) pp result rescue Phrase::ApiError => e puts "Exception when calling SpacesApi->spaces_projects_list: #{e}" end