weblate 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +5 -0
- data/COPYING +674 -0
- data/Gemfile +8 -0
- data/README.md +334 -0
- data/Rakefile +49 -0
- data/bin/console +11 -0
- data/bin/setup +8 -0
- data/bin/smoketest +14 -0
- data/bin/smoketest~ +0 -0
- data/docs/ActionEnum.md +15 -0
- data/docs/Addon.md +28 -0
- data/docs/AddonsApi.md +366 -0
- data/docs/AutoComponentList.md +20 -0
- data/docs/BasicUser.md +22 -0
- data/docs/BlankEnum.md +15 -0
- data/docs/CategoriesApi.md +520 -0
- data/docs/Category.md +30 -0
- data/docs/Change.md +42 -0
- data/docs/ChangesApi.md +163 -0
- data/docs/ColorEnum.md +15 -0
- data/docs/Component.md +146 -0
- data/docs/ComponentLanguageCodeStyle.md +49 -0
- data/docs/ComponentList.md +30 -0
- data/docs/ComponentListsApi.md +667 -0
- data/docs/ComponentsApi.md +1653 -0
- data/docs/ConflictsEnum.md +15 -0
- data/docs/DirectionEnum.md +15 -0
- data/docs/FileFormatEnum.md +15 -0
- data/docs/FrequencyEnum.md +15 -0
- data/docs/FuzzyEnum.md +15 -0
- data/docs/Group.md +40 -0
- data/docs/GroupsApi.md +1257 -0
- data/docs/Language.md +36 -0
- data/docs/LanguageCodeStyleEnum.md +15 -0
- data/docs/LanguagePlural.md +26 -0
- data/docs/LanguageSelectionEnum.md +15 -0
- data/docs/LanguagesApi.md +520 -0
- data/docs/LicenseEnum.md +15 -0
- data/docs/LockRequest.md +18 -0
- data/docs/Memory.md +34 -0
- data/docs/MemoryApi.md +448 -0
- data/docs/MergeStyleEnum.md +15 -0
- data/docs/MethodEnum.md +15 -0
- data/docs/Metrics.md +42 -0
- data/docs/MetricsApi.md +81 -0
- data/docs/NewLangEnum.md +15 -0
- data/docs/Notification.md +28 -0
- data/docs/NotificationEnum.md +15 -0
- data/docs/OperationEnum.md +15 -0
- data/docs/PaginatedAddonList.md +24 -0
- data/docs/PaginatedBasicUserList.md +24 -0
- data/docs/PaginatedCategoryList.md +24 -0
- data/docs/PaginatedChangeList.md +24 -0
- data/docs/PaginatedComponentList.md +24 -0
- data/docs/PaginatedComponentListList.md +24 -0
- data/docs/PaginatedGroupList.md +24 -0
- data/docs/PaginatedLanguageList.md +24 -0
- data/docs/PaginatedMemoryList.md +24 -0
- data/docs/PaginatedNotificationList.md +24 -0
- data/docs/PaginatedProjectList.md +24 -0
- data/docs/PaginatedRoleList.md +24 -0
- data/docs/PaginatedScreenshotList.md +24 -0
- data/docs/PaginatedTranslationList.md +24 -0
- data/docs/PaginatedUnitList.md +24 -0
- data/docs/PatchedAddon.md +28 -0
- data/docs/PatchedBasicUser.md +22 -0
- data/docs/PatchedCategory.md +30 -0
- data/docs/PatchedComponent.md +146 -0
- data/docs/PatchedComponentList.md +30 -0
- data/docs/PatchedGroup.md +40 -0
- data/docs/PatchedLanguage.md +36 -0
- data/docs/PatchedMemory.md +34 -0
- data/docs/PatchedNotification.md +28 -0
- data/docs/PatchedProject.md +58 -0
- data/docs/PatchedRole.md +24 -0
- data/docs/PatchedScreenshot.md +30 -0
- data/docs/PatchedUnitWrite.md +26 -0
- data/docs/PriorityEnum.md +15 -0
- data/docs/Project.md +58 -0
- data/docs/ProjectSelectionEnum.md +15 -0
- data/docs/ProjectsApi.md +1392 -0
- data/docs/RepoRequest.md +18 -0
- data/docs/Role.md +24 -0
- data/docs/RolesApi.md +448 -0
- data/docs/ScopeEnum.md +15 -0
- data/docs/Screenshot.md +30 -0
- data/docs/ScreenshotFile.md +18 -0
- data/docs/ScreenshotsApi.md +815 -0
- data/docs/SearchApi.md +75 -0
- data/docs/SourceEnum.md +15 -0
- data/docs/StateEnum.md +15 -0
- data/docs/TasksApi.md +145 -0
- data/docs/TextDirection.md +49 -0
- data/docs/Translation.md +80 -0
- data/docs/TranslationsApi.md +1028 -0
- data/docs/Unit.md +76 -0
- data/docs/UnitFlatLabels.md +24 -0
- data/docs/UnitLabels.md +24 -0
- data/docs/UnitWrite.md +26 -0
- data/docs/UnitsApi.md +376 -0
- data/docs/UploadRequest.md +28 -0
- data/docs/UploadRequestConflicts.md +49 -0
- data/docs/UploadRequestFuzzy.md +49 -0
- data/docs/UsersApi.md +1130 -0
- data/docs/VcsEnum.md +15 -0
- data/git_push.sh +57 -0
- data/lib/weblate/api/addons_api.rb +353 -0
- data/lib/weblate/api/categories_api.rb +495 -0
- data/lib/weblate/api/changes_api.rb +165 -0
- data/lib/weblate/api/component_lists_api.rb +642 -0
- data/lib/weblate/api/components_api.rb +1775 -0
- data/lib/weblate/api/groups_api.rb +1261 -0
- data/lib/weblate/api/languages_api.rb +495 -0
- data/lib/weblate/api/memory_api.rb +429 -0
- data/lib/weblate/api/metrics_api.rb +84 -0
- data/lib/weblate/api/projects_api.rb +1331 -0
- data/lib/weblate/api/roles_api.rb +429 -0
- data/lib/weblate/api/screenshots_api.rb +803 -0
- data/lib/weblate/api/search_api.rb +75 -0
- data/lib/weblate/api/tasks_api.rb +146 -0
- data/lib/weblate/api/translations_api.rb +1232 -0
- data/lib/weblate/api/units_api.rb +363 -0
- data/lib/weblate/api/users_api.rb +1104 -0
- data/lib/weblate/api_client.rb +437 -0
- data/lib/weblate/api_error.rb +58 -0
- data/lib/weblate/configuration.rb +392 -0
- data/lib/weblate/models/action_enum.rb +108 -0
- data/lib/weblate/models/addon.rb +314 -0
- data/lib/weblate/models/auto_component_list.rb +263 -0
- data/lib/weblate/models/basic_user.rb +292 -0
- data/lib/weblate/models/blank_enum.rb +39 -0
- data/lib/weblate/models/category.rb +361 -0
- data/lib/weblate/models/change.rb +408 -0
- data/lib/weblate/models/color_enum.rb +54 -0
- data/lib/weblate/models/component.rb +1377 -0
- data/lib/weblate/models/component_language_code_style.rb +106 -0
- data/lib/weblate/models/component_list.rb +366 -0
- data/lib/weblate/models/conflicts_enum.rb +41 -0
- data/lib/weblate/models/direction_enum.rb +40 -0
- data/lib/weblate/models/file_format_enum.rb +101 -0
- data/lib/weblate/models/frequency_enum.rb +43 -0
- data/lib/weblate/models/fuzzy_enum.rb +40 -0
- data/lib/weblate/models/group.rb +421 -0
- data/lib/weblate/models/language.rb +417 -0
- data/lib/weblate/models/language_code_style_enum.rb +51 -0
- data/lib/weblate/models/language_plural.rb +314 -0
- data/lib/weblate/models/language_selection_enum.rb +40 -0
- data/lib/weblate/models/license_enum.rb +677 -0
- data/lib/weblate/models/lock_request.rb +221 -0
- data/lib/weblate/models/memory.rb +329 -0
- data/lib/weblate/models/merge_style_enum.rb +41 -0
- data/lib/weblate/models/method_enum.rb +45 -0
- data/lib/weblate/models/metrics.rb +415 -0
- data/lib/weblate/models/new_lang_enum.rb +42 -0
- data/lib/weblate/models/notification.rb +323 -0
- data/lib/weblate/models/notification_enum.rb +60 -0
- data/lib/weblate/models/operation_enum.rb +43 -0
- data/lib/weblate/models/paginated_addon_list.rb +259 -0
- data/lib/weblate/models/paginated_basic_user_list.rb +259 -0
- data/lib/weblate/models/paginated_category_list.rb +259 -0
- data/lib/weblate/models/paginated_change_list.rb +259 -0
- data/lib/weblate/models/paginated_component_list.rb +259 -0
- data/lib/weblate/models/paginated_component_list_list.rb +259 -0
- data/lib/weblate/models/paginated_group_list.rb +259 -0
- data/lib/weblate/models/paginated_language_list.rb +259 -0
- data/lib/weblate/models/paginated_memory_list.rb +259 -0
- data/lib/weblate/models/paginated_notification_list.rb +259 -0
- data/lib/weblate/models/paginated_project_list.rb +259 -0
- data/lib/weblate/models/paginated_role_list.rb +259 -0
- data/lib/weblate/models/paginated_screenshot_list.rb +259 -0
- data/lib/weblate/models/paginated_translation_list.rb +259 -0
- data/lib/weblate/models/paginated_unit_list.rb +259 -0
- data/lib/weblate/models/patched_addon.rb +279 -0
- data/lib/weblate/models/patched_basic_user.rb +271 -0
- data/lib/weblate/models/patched_category.rb +319 -0
- data/lib/weblate/models/patched_component.rb +1242 -0
- data/lib/weblate/models/patched_component_list.rb +324 -0
- data/lib/weblate/models/patched_group.rb +365 -0
- data/lib/weblate/models/patched_language.rb +375 -0
- data/lib/weblate/models/patched_memory.rb +287 -0
- data/lib/weblate/models/patched_notification.rb +281 -0
- data/lib/weblate/models/patched_project.rb +472 -0
- data/lib/weblate/models/patched_role.rb +262 -0
- data/lib/weblate/models/patched_screenshot.rb +309 -0
- data/lib/weblate/models/patched_unit_write.rb +279 -0
- data/lib/weblate/models/priority_enum.rb +43 -0
- data/lib/weblate/models/project.rb +563 -0
- data/lib/weblate/models/project_selection_enum.rb +43 -0
- data/lib/weblate/models/repo_request.rb +243 -0
- data/lib/weblate/models/role.rb +290 -0
- data/lib/weblate/models/scope_enum.rb +43 -0
- data/lib/weblate/models/screenshot.rb +351 -0
- data/lib/weblate/models/screenshot_file.rb +221 -0
- data/lib/weblate/models/source_enum.rb +45 -0
- data/lib/weblate/models/state_enum.rb +43 -0
- data/lib/weblate/models/text_direction.rb +105 -0
- data/lib/weblate/models/translation.rb +760 -0
- data/lib/weblate/models/unit.rb +757 -0
- data/lib/weblate/models/unit_flat_labels.rb +315 -0
- data/lib/weblate/models/unit_labels.rb +315 -0
- data/lib/weblate/models/unit_write.rb +293 -0
- data/lib/weblate/models/upload_request.rb +307 -0
- data/lib/weblate/models/upload_request_conflicts.rb +105 -0
- data/lib/weblate/models/upload_request_fuzzy.rb +105 -0
- data/lib/weblate/models/vcs_enum.rb +46 -0
- data/lib/weblate/version.rb +15 -0
- data/lib/weblate.rb +135 -0
- data/manifest.scm +6 -0
- data/schema.patched.yaml +10113 -0
- data/schema.yaml +10116 -0
- data/sig/weblate.rbs +4 -0
- data/spec/api/addons_api_spec.rb +88 -0
- data/spec/api/categories_api_spec.rb +115 -0
- data/spec/api/changes_api_spec.rb +62 -0
- data/spec/api/component_lists_api_spec.rb +139 -0
- data/spec/api/components_api_spec.rb +307 -0
- data/spec/api/groups_api_spec.rb +236 -0
- data/spec/api/languages_api_spec.rb +115 -0
- data/spec/api/memory_api_spec.rb +104 -0
- data/spec/api/metrics_api_spec.rb +46 -0
- data/spec/api/projects_api_spec.rb +251 -0
- data/spec/api/roles_api_spec.rb +104 -0
- data/spec/api/screenshots_api_spec.rb +163 -0
- data/spec/api/search_api_spec.rb +45 -0
- data/spec/api/tasks_api_spec.rb +55 -0
- data/spec/api/translations_api_spec.rb +218 -0
- data/spec/api/units_api_spec.rb +93 -0
- data/spec/api/users_api_spec.rb +218 -0
- data/spec/models/action_enum_spec.rb +30 -0
- data/spec/models/addon_spec.rb +66 -0
- data/spec/models/auto_component_list_spec.rb +42 -0
- data/spec/models/basic_user_spec.rb +48 -0
- data/spec/models/blank_enum_spec.rb +30 -0
- data/spec/models/category_spec.rb +72 -0
- data/spec/models/change_spec.rb +108 -0
- data/spec/models/color_enum_spec.rb +30 -0
- data/spec/models/component_language_code_style_spec.rb +32 -0
- data/spec/models/component_list_spec.rb +72 -0
- data/spec/models/component_spec.rb +420 -0
- data/spec/models/conflicts_enum_spec.rb +30 -0
- data/spec/models/direction_enum_spec.rb +30 -0
- data/spec/models/file_format_enum_spec.rb +30 -0
- data/spec/models/frequency_enum_spec.rb +30 -0
- data/spec/models/fuzzy_enum_spec.rb +30 -0
- data/spec/models/group_spec.rb +102 -0
- data/spec/models/language_code_style_enum_spec.rb +30 -0
- data/spec/models/language_plural_spec.rb +60 -0
- data/spec/models/language_selection_enum_spec.rb +30 -0
- data/spec/models/language_spec.rb +90 -0
- data/spec/models/license_enum_spec.rb +30 -0
- data/spec/models/lock_request_spec.rb +36 -0
- data/spec/models/memory_spec.rb +84 -0
- data/spec/models/merge_style_enum_spec.rb +30 -0
- data/spec/models/method_enum_spec.rb +30 -0
- data/spec/models/metrics_spec.rb +108 -0
- data/spec/models/new_lang_enum_spec.rb +30 -0
- data/spec/models/notification_enum_spec.rb +30 -0
- data/spec/models/notification_spec.rb +66 -0
- data/spec/models/operation_enum_spec.rb +30 -0
- data/spec/models/paginated_addon_list_spec.rb +54 -0
- data/spec/models/paginated_basic_user_list_spec.rb +54 -0
- data/spec/models/paginated_category_list_spec.rb +54 -0
- data/spec/models/paginated_change_list_spec.rb +54 -0
- data/spec/models/paginated_component_list_list_spec.rb +54 -0
- data/spec/models/paginated_component_list_spec.rb +54 -0
- data/spec/models/paginated_group_list_spec.rb +54 -0
- data/spec/models/paginated_language_list_spec.rb +54 -0
- data/spec/models/paginated_memory_list_spec.rb +54 -0
- data/spec/models/paginated_notification_list_spec.rb +54 -0
- data/spec/models/paginated_project_list_spec.rb +54 -0
- data/spec/models/paginated_role_list_spec.rb +54 -0
- data/spec/models/paginated_screenshot_list_spec.rb +54 -0
- data/spec/models/paginated_translation_list_spec.rb +54 -0
- data/spec/models/paginated_unit_list_spec.rb +54 -0
- data/spec/models/patched_addon_spec.rb +66 -0
- data/spec/models/patched_basic_user_spec.rb +48 -0
- data/spec/models/patched_category_spec.rb +72 -0
- data/spec/models/patched_component_list_spec.rb +72 -0
- data/spec/models/patched_component_spec.rb +420 -0
- data/spec/models/patched_group_spec.rb +102 -0
- data/spec/models/patched_language_spec.rb +90 -0
- data/spec/models/patched_memory_spec.rb +84 -0
- data/spec/models/patched_notification_spec.rb +66 -0
- data/spec/models/patched_project_spec.rb +156 -0
- data/spec/models/patched_role_spec.rb +54 -0
- data/spec/models/patched_screenshot_spec.rb +72 -0
- data/spec/models/patched_unit_write_spec.rb +60 -0
- data/spec/models/priority_enum_spec.rb +30 -0
- data/spec/models/project_selection_enum_spec.rb +30 -0
- data/spec/models/project_spec.rb +156 -0
- data/spec/models/repo_request_spec.rb +36 -0
- data/spec/models/role_spec.rb +54 -0
- data/spec/models/scope_enum_spec.rb +30 -0
- data/spec/models/screenshot_file_spec.rb +36 -0
- data/spec/models/screenshot_spec.rb +72 -0
- data/spec/models/source_enum_spec.rb +30 -0
- data/spec/models/state_enum_spec.rb +30 -0
- data/spec/models/text_direction_spec.rb +32 -0
- data/spec/models/translation_spec.rb +222 -0
- data/spec/models/unit_flat_labels_spec.rb +54 -0
- data/spec/models/unit_labels_spec.rb +54 -0
- data/spec/models/unit_spec.rb +210 -0
- data/spec/models/unit_write_spec.rb +60 -0
- data/spec/models/upload_request_conflicts_spec.rb +32 -0
- data/spec/models/upload_request_fuzzy_spec.rb +32 -0
- data/spec/models/upload_request_spec.rb +66 -0
- data/spec/models/vcs_enum_spec.rb +30 -0
- data/spec/spec_helper.rb +111 -0
- data/weblate.gemspec +47 -0
- metadata +526 -0
|
@@ -0,0 +1,667 @@
|
|
|
1
|
+
# Weblate::ComponentListsApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *https://hosted.weblate.org*
|
|
4
|
+
|
|
5
|
+
| Method | HTTP request | Description |
|
|
6
|
+
| ------ | ------------ | ----------- |
|
|
7
|
+
| [**component_lists_components_create**](ComponentListsApi.md#component_lists_components_create) | **POST** /component-lists/{slug}/components/ | |
|
|
8
|
+
| [**component_lists_components_destroy**](ComponentListsApi.md#component_lists_components_destroy) | **DELETE** /component-lists/{slug}/components/{component_slug}/ | |
|
|
9
|
+
| [**component_lists_components_retrieve**](ComponentListsApi.md#component_lists_components_retrieve) | **GET** /component-lists/{slug}/components/ | |
|
|
10
|
+
| [**component_lists_create**](ComponentListsApi.md#component_lists_create) | **POST** /component-lists/ | |
|
|
11
|
+
| [**component_lists_destroy**](ComponentListsApi.md#component_lists_destroy) | **DELETE** /component-lists/{slug}/ | |
|
|
12
|
+
| [**component_lists_list**](ComponentListsApi.md#component_lists_list) | **GET** /component-lists/ | |
|
|
13
|
+
| [**component_lists_partial_update**](ComponentListsApi.md#component_lists_partial_update) | **PATCH** /component-lists/{slug}/ | |
|
|
14
|
+
| [**component_lists_retrieve**](ComponentListsApi.md#component_lists_retrieve) | **GET** /component-lists/{slug}/ | |
|
|
15
|
+
| [**component_lists_update**](ComponentListsApi.md#component_lists_update) | **PUT** /component-lists/{slug}/ | |
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## component_lists_components_create
|
|
19
|
+
|
|
20
|
+
> <ComponentList> component_lists_components_create(slug, component_list)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
Component lists API.
|
|
25
|
+
|
|
26
|
+
### Examples
|
|
27
|
+
|
|
28
|
+
```ruby
|
|
29
|
+
require 'time'
|
|
30
|
+
require 'weblate'
|
|
31
|
+
# setup authorization
|
|
32
|
+
Weblate.configure do |config|
|
|
33
|
+
# Configure API key authorization: tokenAuth
|
|
34
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
35
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
36
|
+
# config.api_key_prefix['Authorization'] = 'Bearer'
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
api_instance = Weblate::ComponentListsApi.new
|
|
40
|
+
slug = 'slug_example' # String |
|
|
41
|
+
component_list = Weblate::ComponentList.new({name: 'name_example', slug: 'slug_example', id: 37, components: ['components_example'], auto_assign: [Weblate::AutoComponentList.new], url: 'url_example'}) # ComponentList |
|
|
42
|
+
|
|
43
|
+
begin
|
|
44
|
+
|
|
45
|
+
result = api_instance.component_lists_components_create(slug, component_list)
|
|
46
|
+
p result
|
|
47
|
+
rescue Weblate::ApiError => e
|
|
48
|
+
puts "Error when calling ComponentListsApi->component_lists_components_create: #{e}"
|
|
49
|
+
end
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
#### Using the component_lists_components_create_with_http_info variant
|
|
53
|
+
|
|
54
|
+
This returns an Array which contains the response data, status code and headers.
|
|
55
|
+
|
|
56
|
+
> <Array(<ComponentList>, Integer, Hash)> component_lists_components_create_with_http_info(slug, component_list)
|
|
57
|
+
|
|
58
|
+
```ruby
|
|
59
|
+
begin
|
|
60
|
+
|
|
61
|
+
data, status_code, headers = api_instance.component_lists_components_create_with_http_info(slug, component_list)
|
|
62
|
+
p status_code # => 2xx
|
|
63
|
+
p headers # => { ... }
|
|
64
|
+
p data # => <ComponentList>
|
|
65
|
+
rescue Weblate::ApiError => e
|
|
66
|
+
puts "Error when calling ComponentListsApi->component_lists_components_create_with_http_info: #{e}"
|
|
67
|
+
end
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
### Parameters
|
|
71
|
+
|
|
72
|
+
| Name | Type | Description | Notes |
|
|
73
|
+
| ---- | ---- | ----------- | ----- |
|
|
74
|
+
| **slug** | **String** | | |
|
|
75
|
+
| **component_list** | [**ComponentList**](ComponentList.md) | | |
|
|
76
|
+
|
|
77
|
+
### Return type
|
|
78
|
+
|
|
79
|
+
[**ComponentList**](ComponentList.md)
|
|
80
|
+
|
|
81
|
+
### Authorization
|
|
82
|
+
|
|
83
|
+
[tokenAuth](../README.md#tokenAuth)
|
|
84
|
+
|
|
85
|
+
### HTTP request headers
|
|
86
|
+
|
|
87
|
+
- **Content-Type**: application/json, application/x-www-form-urlencoded, multipart/form-data
|
|
88
|
+
- **Accept**: application/json
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
## component_lists_components_destroy
|
|
92
|
+
|
|
93
|
+
> component_lists_components_destroy(component_slug, slug)
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
Component lists API.
|
|
98
|
+
|
|
99
|
+
### Examples
|
|
100
|
+
|
|
101
|
+
```ruby
|
|
102
|
+
require 'time'
|
|
103
|
+
require 'weblate'
|
|
104
|
+
# setup authorization
|
|
105
|
+
Weblate.configure do |config|
|
|
106
|
+
# Configure API key authorization: tokenAuth
|
|
107
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
108
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
109
|
+
# config.api_key_prefix['Authorization'] = 'Bearer'
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
api_instance = Weblate::ComponentListsApi.new
|
|
113
|
+
component_slug = 'component_slug_example' # String |
|
|
114
|
+
slug = 'slug_example' # String |
|
|
115
|
+
|
|
116
|
+
begin
|
|
117
|
+
|
|
118
|
+
api_instance.component_lists_components_destroy(component_slug, slug)
|
|
119
|
+
rescue Weblate::ApiError => e
|
|
120
|
+
puts "Error when calling ComponentListsApi->component_lists_components_destroy: #{e}"
|
|
121
|
+
end
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
#### Using the component_lists_components_destroy_with_http_info variant
|
|
125
|
+
|
|
126
|
+
This returns an Array which contains the response data (`nil` in this case), status code and headers.
|
|
127
|
+
|
|
128
|
+
> <Array(nil, Integer, Hash)> component_lists_components_destroy_with_http_info(component_slug, slug)
|
|
129
|
+
|
|
130
|
+
```ruby
|
|
131
|
+
begin
|
|
132
|
+
|
|
133
|
+
data, status_code, headers = api_instance.component_lists_components_destroy_with_http_info(component_slug, slug)
|
|
134
|
+
p status_code # => 2xx
|
|
135
|
+
p headers # => { ... }
|
|
136
|
+
p data # => nil
|
|
137
|
+
rescue Weblate::ApiError => e
|
|
138
|
+
puts "Error when calling ComponentListsApi->component_lists_components_destroy_with_http_info: #{e}"
|
|
139
|
+
end
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
### Parameters
|
|
143
|
+
|
|
144
|
+
| Name | Type | Description | Notes |
|
|
145
|
+
| ---- | ---- | ----------- | ----- |
|
|
146
|
+
| **component_slug** | **String** | | |
|
|
147
|
+
| **slug** | **String** | | |
|
|
148
|
+
|
|
149
|
+
### Return type
|
|
150
|
+
|
|
151
|
+
nil (empty response body)
|
|
152
|
+
|
|
153
|
+
### Authorization
|
|
154
|
+
|
|
155
|
+
[tokenAuth](../README.md#tokenAuth)
|
|
156
|
+
|
|
157
|
+
### HTTP request headers
|
|
158
|
+
|
|
159
|
+
- **Content-Type**: Not defined
|
|
160
|
+
- **Accept**: Not defined
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
## component_lists_components_retrieve
|
|
164
|
+
|
|
165
|
+
> <ComponentList> component_lists_components_retrieve(slug)
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
Component lists API.
|
|
170
|
+
|
|
171
|
+
### Examples
|
|
172
|
+
|
|
173
|
+
```ruby
|
|
174
|
+
require 'time'
|
|
175
|
+
require 'weblate'
|
|
176
|
+
# setup authorization
|
|
177
|
+
Weblate.configure do |config|
|
|
178
|
+
# Configure API key authorization: tokenAuth
|
|
179
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
180
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
181
|
+
# config.api_key_prefix['Authorization'] = 'Bearer'
|
|
182
|
+
end
|
|
183
|
+
|
|
184
|
+
api_instance = Weblate::ComponentListsApi.new
|
|
185
|
+
slug = 'slug_example' # String |
|
|
186
|
+
|
|
187
|
+
begin
|
|
188
|
+
|
|
189
|
+
result = api_instance.component_lists_components_retrieve(slug)
|
|
190
|
+
p result
|
|
191
|
+
rescue Weblate::ApiError => e
|
|
192
|
+
puts "Error when calling ComponentListsApi->component_lists_components_retrieve: #{e}"
|
|
193
|
+
end
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
#### Using the component_lists_components_retrieve_with_http_info variant
|
|
197
|
+
|
|
198
|
+
This returns an Array which contains the response data, status code and headers.
|
|
199
|
+
|
|
200
|
+
> <Array(<ComponentList>, Integer, Hash)> component_lists_components_retrieve_with_http_info(slug)
|
|
201
|
+
|
|
202
|
+
```ruby
|
|
203
|
+
begin
|
|
204
|
+
|
|
205
|
+
data, status_code, headers = api_instance.component_lists_components_retrieve_with_http_info(slug)
|
|
206
|
+
p status_code # => 2xx
|
|
207
|
+
p headers # => { ... }
|
|
208
|
+
p data # => <ComponentList>
|
|
209
|
+
rescue Weblate::ApiError => e
|
|
210
|
+
puts "Error when calling ComponentListsApi->component_lists_components_retrieve_with_http_info: #{e}"
|
|
211
|
+
end
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
### Parameters
|
|
215
|
+
|
|
216
|
+
| Name | Type | Description | Notes |
|
|
217
|
+
| ---- | ---- | ----------- | ----- |
|
|
218
|
+
| **slug** | **String** | | |
|
|
219
|
+
|
|
220
|
+
### Return type
|
|
221
|
+
|
|
222
|
+
[**ComponentList**](ComponentList.md)
|
|
223
|
+
|
|
224
|
+
### Authorization
|
|
225
|
+
|
|
226
|
+
[tokenAuth](../README.md#tokenAuth)
|
|
227
|
+
|
|
228
|
+
### HTTP request headers
|
|
229
|
+
|
|
230
|
+
- **Content-Type**: Not defined
|
|
231
|
+
- **Accept**: application/json
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
## component_lists_create
|
|
235
|
+
|
|
236
|
+
> <ComponentList> component_lists_create(component_list)
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
Component lists API.
|
|
241
|
+
|
|
242
|
+
### Examples
|
|
243
|
+
|
|
244
|
+
```ruby
|
|
245
|
+
require 'time'
|
|
246
|
+
require 'weblate'
|
|
247
|
+
# setup authorization
|
|
248
|
+
Weblate.configure do |config|
|
|
249
|
+
# Configure API key authorization: tokenAuth
|
|
250
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
251
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
252
|
+
# config.api_key_prefix['Authorization'] = 'Bearer'
|
|
253
|
+
end
|
|
254
|
+
|
|
255
|
+
api_instance = Weblate::ComponentListsApi.new
|
|
256
|
+
component_list = Weblate::ComponentList.new({name: 'name_example', slug: 'slug_example', id: 37, components: ['components_example'], auto_assign: [Weblate::AutoComponentList.new], url: 'url_example'}) # ComponentList |
|
|
257
|
+
|
|
258
|
+
begin
|
|
259
|
+
|
|
260
|
+
result = api_instance.component_lists_create(component_list)
|
|
261
|
+
p result
|
|
262
|
+
rescue Weblate::ApiError => e
|
|
263
|
+
puts "Error when calling ComponentListsApi->component_lists_create: #{e}"
|
|
264
|
+
end
|
|
265
|
+
```
|
|
266
|
+
|
|
267
|
+
#### Using the component_lists_create_with_http_info variant
|
|
268
|
+
|
|
269
|
+
This returns an Array which contains the response data, status code and headers.
|
|
270
|
+
|
|
271
|
+
> <Array(<ComponentList>, Integer, Hash)> component_lists_create_with_http_info(component_list)
|
|
272
|
+
|
|
273
|
+
```ruby
|
|
274
|
+
begin
|
|
275
|
+
|
|
276
|
+
data, status_code, headers = api_instance.component_lists_create_with_http_info(component_list)
|
|
277
|
+
p status_code # => 2xx
|
|
278
|
+
p headers # => { ... }
|
|
279
|
+
p data # => <ComponentList>
|
|
280
|
+
rescue Weblate::ApiError => e
|
|
281
|
+
puts "Error when calling ComponentListsApi->component_lists_create_with_http_info: #{e}"
|
|
282
|
+
end
|
|
283
|
+
```
|
|
284
|
+
|
|
285
|
+
### Parameters
|
|
286
|
+
|
|
287
|
+
| Name | Type | Description | Notes |
|
|
288
|
+
| ---- | ---- | ----------- | ----- |
|
|
289
|
+
| **component_list** | [**ComponentList**](ComponentList.md) | | |
|
|
290
|
+
|
|
291
|
+
### Return type
|
|
292
|
+
|
|
293
|
+
[**ComponentList**](ComponentList.md)
|
|
294
|
+
|
|
295
|
+
### Authorization
|
|
296
|
+
|
|
297
|
+
[tokenAuth](../README.md#tokenAuth)
|
|
298
|
+
|
|
299
|
+
### HTTP request headers
|
|
300
|
+
|
|
301
|
+
- **Content-Type**: application/json, application/x-www-form-urlencoded, multipart/form-data
|
|
302
|
+
- **Accept**: application/json
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
## component_lists_destroy
|
|
306
|
+
|
|
307
|
+
> component_lists_destroy(slug)
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
Component lists API.
|
|
312
|
+
|
|
313
|
+
### Examples
|
|
314
|
+
|
|
315
|
+
```ruby
|
|
316
|
+
require 'time'
|
|
317
|
+
require 'weblate'
|
|
318
|
+
# setup authorization
|
|
319
|
+
Weblate.configure do |config|
|
|
320
|
+
# Configure API key authorization: tokenAuth
|
|
321
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
322
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
323
|
+
# config.api_key_prefix['Authorization'] = 'Bearer'
|
|
324
|
+
end
|
|
325
|
+
|
|
326
|
+
api_instance = Weblate::ComponentListsApi.new
|
|
327
|
+
slug = 'slug_example' # String |
|
|
328
|
+
|
|
329
|
+
begin
|
|
330
|
+
|
|
331
|
+
api_instance.component_lists_destroy(slug)
|
|
332
|
+
rescue Weblate::ApiError => e
|
|
333
|
+
puts "Error when calling ComponentListsApi->component_lists_destroy: #{e}"
|
|
334
|
+
end
|
|
335
|
+
```
|
|
336
|
+
|
|
337
|
+
#### Using the component_lists_destroy_with_http_info variant
|
|
338
|
+
|
|
339
|
+
This returns an Array which contains the response data (`nil` in this case), status code and headers.
|
|
340
|
+
|
|
341
|
+
> <Array(nil, Integer, Hash)> component_lists_destroy_with_http_info(slug)
|
|
342
|
+
|
|
343
|
+
```ruby
|
|
344
|
+
begin
|
|
345
|
+
|
|
346
|
+
data, status_code, headers = api_instance.component_lists_destroy_with_http_info(slug)
|
|
347
|
+
p status_code # => 2xx
|
|
348
|
+
p headers # => { ... }
|
|
349
|
+
p data # => nil
|
|
350
|
+
rescue Weblate::ApiError => e
|
|
351
|
+
puts "Error when calling ComponentListsApi->component_lists_destroy_with_http_info: #{e}"
|
|
352
|
+
end
|
|
353
|
+
```
|
|
354
|
+
|
|
355
|
+
### Parameters
|
|
356
|
+
|
|
357
|
+
| Name | Type | Description | Notes |
|
|
358
|
+
| ---- | ---- | ----------- | ----- |
|
|
359
|
+
| **slug** | **String** | | |
|
|
360
|
+
|
|
361
|
+
### Return type
|
|
362
|
+
|
|
363
|
+
nil (empty response body)
|
|
364
|
+
|
|
365
|
+
### Authorization
|
|
366
|
+
|
|
367
|
+
[tokenAuth](../README.md#tokenAuth)
|
|
368
|
+
|
|
369
|
+
### HTTP request headers
|
|
370
|
+
|
|
371
|
+
- **Content-Type**: Not defined
|
|
372
|
+
- **Accept**: Not defined
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
## component_lists_list
|
|
376
|
+
|
|
377
|
+
> <PaginatedComponentListList> component_lists_list(opts)
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
Component lists API.
|
|
382
|
+
|
|
383
|
+
### Examples
|
|
384
|
+
|
|
385
|
+
```ruby
|
|
386
|
+
require 'time'
|
|
387
|
+
require 'weblate'
|
|
388
|
+
# setup authorization
|
|
389
|
+
Weblate.configure do |config|
|
|
390
|
+
# Configure API key authorization: tokenAuth
|
|
391
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
392
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
393
|
+
# config.api_key_prefix['Authorization'] = 'Bearer'
|
|
394
|
+
end
|
|
395
|
+
|
|
396
|
+
api_instance = Weblate::ComponentListsApi.new
|
|
397
|
+
opts = {
|
|
398
|
+
page: 56, # Integer | A page number within the paginated result set.
|
|
399
|
+
page_size: 56 # Integer | Number of results to return per page.
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
begin
|
|
403
|
+
|
|
404
|
+
result = api_instance.component_lists_list(opts)
|
|
405
|
+
p result
|
|
406
|
+
rescue Weblate::ApiError => e
|
|
407
|
+
puts "Error when calling ComponentListsApi->component_lists_list: #{e}"
|
|
408
|
+
end
|
|
409
|
+
```
|
|
410
|
+
|
|
411
|
+
#### Using the component_lists_list_with_http_info variant
|
|
412
|
+
|
|
413
|
+
This returns an Array which contains the response data, status code and headers.
|
|
414
|
+
|
|
415
|
+
> <Array(<PaginatedComponentListList>, Integer, Hash)> component_lists_list_with_http_info(opts)
|
|
416
|
+
|
|
417
|
+
```ruby
|
|
418
|
+
begin
|
|
419
|
+
|
|
420
|
+
data, status_code, headers = api_instance.component_lists_list_with_http_info(opts)
|
|
421
|
+
p status_code # => 2xx
|
|
422
|
+
p headers # => { ... }
|
|
423
|
+
p data # => <PaginatedComponentListList>
|
|
424
|
+
rescue Weblate::ApiError => e
|
|
425
|
+
puts "Error when calling ComponentListsApi->component_lists_list_with_http_info: #{e}"
|
|
426
|
+
end
|
|
427
|
+
```
|
|
428
|
+
|
|
429
|
+
### Parameters
|
|
430
|
+
|
|
431
|
+
| Name | Type | Description | Notes |
|
|
432
|
+
| ---- | ---- | ----------- | ----- |
|
|
433
|
+
| **page** | **Integer** | A page number within the paginated result set. | [optional] |
|
|
434
|
+
| **page_size** | **Integer** | Number of results to return per page. | [optional] |
|
|
435
|
+
|
|
436
|
+
### Return type
|
|
437
|
+
|
|
438
|
+
[**PaginatedComponentListList**](PaginatedComponentListList.md)
|
|
439
|
+
|
|
440
|
+
### Authorization
|
|
441
|
+
|
|
442
|
+
[tokenAuth](../README.md#tokenAuth)
|
|
443
|
+
|
|
444
|
+
### HTTP request headers
|
|
445
|
+
|
|
446
|
+
- **Content-Type**: Not defined
|
|
447
|
+
- **Accept**: application/json
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
## component_lists_partial_update
|
|
451
|
+
|
|
452
|
+
> <ComponentList> component_lists_partial_update(slug, opts)
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
Component lists API.
|
|
457
|
+
|
|
458
|
+
### Examples
|
|
459
|
+
|
|
460
|
+
```ruby
|
|
461
|
+
require 'time'
|
|
462
|
+
require 'weblate'
|
|
463
|
+
# setup authorization
|
|
464
|
+
Weblate.configure do |config|
|
|
465
|
+
# Configure API key authorization: tokenAuth
|
|
466
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
467
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
468
|
+
# config.api_key_prefix['Authorization'] = 'Bearer'
|
|
469
|
+
end
|
|
470
|
+
|
|
471
|
+
api_instance = Weblate::ComponentListsApi.new
|
|
472
|
+
slug = 'slug_example' # String |
|
|
473
|
+
opts = {
|
|
474
|
+
patched_component_list: Weblate::PatchedComponentList.new # PatchedComponentList |
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
begin
|
|
478
|
+
|
|
479
|
+
result = api_instance.component_lists_partial_update(slug, opts)
|
|
480
|
+
p result
|
|
481
|
+
rescue Weblate::ApiError => e
|
|
482
|
+
puts "Error when calling ComponentListsApi->component_lists_partial_update: #{e}"
|
|
483
|
+
end
|
|
484
|
+
```
|
|
485
|
+
|
|
486
|
+
#### Using the component_lists_partial_update_with_http_info variant
|
|
487
|
+
|
|
488
|
+
This returns an Array which contains the response data, status code and headers.
|
|
489
|
+
|
|
490
|
+
> <Array(<ComponentList>, Integer, Hash)> component_lists_partial_update_with_http_info(slug, opts)
|
|
491
|
+
|
|
492
|
+
```ruby
|
|
493
|
+
begin
|
|
494
|
+
|
|
495
|
+
data, status_code, headers = api_instance.component_lists_partial_update_with_http_info(slug, opts)
|
|
496
|
+
p status_code # => 2xx
|
|
497
|
+
p headers # => { ... }
|
|
498
|
+
p data # => <ComponentList>
|
|
499
|
+
rescue Weblate::ApiError => e
|
|
500
|
+
puts "Error when calling ComponentListsApi->component_lists_partial_update_with_http_info: #{e}"
|
|
501
|
+
end
|
|
502
|
+
```
|
|
503
|
+
|
|
504
|
+
### Parameters
|
|
505
|
+
|
|
506
|
+
| Name | Type | Description | Notes |
|
|
507
|
+
| ---- | ---- | ----------- | ----- |
|
|
508
|
+
| **slug** | **String** | | |
|
|
509
|
+
| **patched_component_list** | [**PatchedComponentList**](PatchedComponentList.md) | | [optional] |
|
|
510
|
+
|
|
511
|
+
### Return type
|
|
512
|
+
|
|
513
|
+
[**ComponentList**](ComponentList.md)
|
|
514
|
+
|
|
515
|
+
### Authorization
|
|
516
|
+
|
|
517
|
+
[tokenAuth](../README.md#tokenAuth)
|
|
518
|
+
|
|
519
|
+
### HTTP request headers
|
|
520
|
+
|
|
521
|
+
- **Content-Type**: application/json, application/x-www-form-urlencoded, multipart/form-data
|
|
522
|
+
- **Accept**: application/json
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
## component_lists_retrieve
|
|
526
|
+
|
|
527
|
+
> <ComponentList> component_lists_retrieve(slug)
|
|
528
|
+
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
Component lists API.
|
|
532
|
+
|
|
533
|
+
### Examples
|
|
534
|
+
|
|
535
|
+
```ruby
|
|
536
|
+
require 'time'
|
|
537
|
+
require 'weblate'
|
|
538
|
+
# setup authorization
|
|
539
|
+
Weblate.configure do |config|
|
|
540
|
+
# Configure API key authorization: tokenAuth
|
|
541
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
542
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
543
|
+
# config.api_key_prefix['Authorization'] = 'Bearer'
|
|
544
|
+
end
|
|
545
|
+
|
|
546
|
+
api_instance = Weblate::ComponentListsApi.new
|
|
547
|
+
slug = 'slug_example' # String |
|
|
548
|
+
|
|
549
|
+
begin
|
|
550
|
+
|
|
551
|
+
result = api_instance.component_lists_retrieve(slug)
|
|
552
|
+
p result
|
|
553
|
+
rescue Weblate::ApiError => e
|
|
554
|
+
puts "Error when calling ComponentListsApi->component_lists_retrieve: #{e}"
|
|
555
|
+
end
|
|
556
|
+
```
|
|
557
|
+
|
|
558
|
+
#### Using the component_lists_retrieve_with_http_info variant
|
|
559
|
+
|
|
560
|
+
This returns an Array which contains the response data, status code and headers.
|
|
561
|
+
|
|
562
|
+
> <Array(<ComponentList>, Integer, Hash)> component_lists_retrieve_with_http_info(slug)
|
|
563
|
+
|
|
564
|
+
```ruby
|
|
565
|
+
begin
|
|
566
|
+
|
|
567
|
+
data, status_code, headers = api_instance.component_lists_retrieve_with_http_info(slug)
|
|
568
|
+
p status_code # => 2xx
|
|
569
|
+
p headers # => { ... }
|
|
570
|
+
p data # => <ComponentList>
|
|
571
|
+
rescue Weblate::ApiError => e
|
|
572
|
+
puts "Error when calling ComponentListsApi->component_lists_retrieve_with_http_info: #{e}"
|
|
573
|
+
end
|
|
574
|
+
```
|
|
575
|
+
|
|
576
|
+
### Parameters
|
|
577
|
+
|
|
578
|
+
| Name | Type | Description | Notes |
|
|
579
|
+
| ---- | ---- | ----------- | ----- |
|
|
580
|
+
| **slug** | **String** | | |
|
|
581
|
+
|
|
582
|
+
### Return type
|
|
583
|
+
|
|
584
|
+
[**ComponentList**](ComponentList.md)
|
|
585
|
+
|
|
586
|
+
### Authorization
|
|
587
|
+
|
|
588
|
+
[tokenAuth](../README.md#tokenAuth)
|
|
589
|
+
|
|
590
|
+
### HTTP request headers
|
|
591
|
+
|
|
592
|
+
- **Content-Type**: Not defined
|
|
593
|
+
- **Accept**: application/json
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
## component_lists_update
|
|
597
|
+
|
|
598
|
+
> <ComponentList> component_lists_update(slug, component_list)
|
|
599
|
+
|
|
600
|
+
|
|
601
|
+
|
|
602
|
+
Component lists API.
|
|
603
|
+
|
|
604
|
+
### Examples
|
|
605
|
+
|
|
606
|
+
```ruby
|
|
607
|
+
require 'time'
|
|
608
|
+
require 'weblate'
|
|
609
|
+
# setup authorization
|
|
610
|
+
Weblate.configure do |config|
|
|
611
|
+
# Configure API key authorization: tokenAuth
|
|
612
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
613
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
614
|
+
# config.api_key_prefix['Authorization'] = 'Bearer'
|
|
615
|
+
end
|
|
616
|
+
|
|
617
|
+
api_instance = Weblate::ComponentListsApi.new
|
|
618
|
+
slug = 'slug_example' # String |
|
|
619
|
+
component_list = Weblate::ComponentList.new({name: 'name_example', slug: 'slug_example', id: 37, components: ['components_example'], auto_assign: [Weblate::AutoComponentList.new], url: 'url_example'}) # ComponentList |
|
|
620
|
+
|
|
621
|
+
begin
|
|
622
|
+
|
|
623
|
+
result = api_instance.component_lists_update(slug, component_list)
|
|
624
|
+
p result
|
|
625
|
+
rescue Weblate::ApiError => e
|
|
626
|
+
puts "Error when calling ComponentListsApi->component_lists_update: #{e}"
|
|
627
|
+
end
|
|
628
|
+
```
|
|
629
|
+
|
|
630
|
+
#### Using the component_lists_update_with_http_info variant
|
|
631
|
+
|
|
632
|
+
This returns an Array which contains the response data, status code and headers.
|
|
633
|
+
|
|
634
|
+
> <Array(<ComponentList>, Integer, Hash)> component_lists_update_with_http_info(slug, component_list)
|
|
635
|
+
|
|
636
|
+
```ruby
|
|
637
|
+
begin
|
|
638
|
+
|
|
639
|
+
data, status_code, headers = api_instance.component_lists_update_with_http_info(slug, component_list)
|
|
640
|
+
p status_code # => 2xx
|
|
641
|
+
p headers # => { ... }
|
|
642
|
+
p data # => <ComponentList>
|
|
643
|
+
rescue Weblate::ApiError => e
|
|
644
|
+
puts "Error when calling ComponentListsApi->component_lists_update_with_http_info: #{e}"
|
|
645
|
+
end
|
|
646
|
+
```
|
|
647
|
+
|
|
648
|
+
### Parameters
|
|
649
|
+
|
|
650
|
+
| Name | Type | Description | Notes |
|
|
651
|
+
| ---- | ---- | ----------- | ----- |
|
|
652
|
+
| **slug** | **String** | | |
|
|
653
|
+
| **component_list** | [**ComponentList**](ComponentList.md) | | |
|
|
654
|
+
|
|
655
|
+
### Return type
|
|
656
|
+
|
|
657
|
+
[**ComponentList**](ComponentList.md)
|
|
658
|
+
|
|
659
|
+
### Authorization
|
|
660
|
+
|
|
661
|
+
[tokenAuth](../README.md#tokenAuth)
|
|
662
|
+
|
|
663
|
+
### HTTP request headers
|
|
664
|
+
|
|
665
|
+
- **Content-Type**: application/json, application/x-www-form-urlencoded, multipart/form-data
|
|
666
|
+
- **Accept**: application/json
|
|
667
|
+
|