rankvectors 1.0.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/Gemfile +9 -0
- data/README.md +191 -0
- data/Rakefile +10 -0
- data/docs/AddCredits200Response.md +22 -0
- data/docs/AddCreditsRequest.md +20 -0
- data/docs/AutoRechargeSettings.md +22 -0
- data/docs/ChangeResult.md +24 -0
- data/docs/ContentVerification.md +22 -0
- data/docs/ContentVerificationApi.md +81 -0
- data/docs/Crawl.md +30 -0
- data/docs/CrawlingApi.md +155 -0
- data/docs/CreateProjectRequest.md +60 -0
- data/docs/CreditBalance.md +30 -0
- data/docs/CreditBalanceInfo.md +26 -0
- data/docs/CreditsApi.md +161 -0
- data/docs/CustomCredentials.md +20 -0
- data/docs/DeleteProject200Response.md +20 -0
- data/docs/Error.md +24 -0
- data/docs/GenerateSuggestions200Response.md +22 -0
- data/docs/GenerateSuggestionsRequest.md +18 -0
- data/docs/GetImplementation200Response.md +20 -0
- data/docs/Implementation.md +36 -0
- data/docs/ImplementationInstructions.md +28 -0
- data/docs/ImplementationRequest.md +26 -0
- data/docs/ImplementationResponse.md +22 -0
- data/docs/ImplementationResult.md +24 -0
- data/docs/ImplementationSummary.md +24 -0
- data/docs/ImplementationsApi.md +313 -0
- data/docs/LinkOpportunity.md +28 -0
- data/docs/ListImplementations200Response.md +24 -0
- data/docs/PageInfo.md +24 -0
- data/docs/PageLimitStatus.md +22 -0
- data/docs/PeriodCharges.md +22 -0
- data/docs/Project.md +70 -0
- data/docs/ProjectCount.md +20 -0
- data/docs/ProjectsApi.md +292 -0
- data/docs/ReportImplementationStatus200Response.md +20 -0
- data/docs/ReportImplementationStatusRequest.md +22 -0
- data/docs/Rollback.md +24 -0
- data/docs/RollbackImplementation200Response.md +22 -0
- data/docs/RollbackImplementationRequest.md +20 -0
- data/docs/SpendingLimitStatus.md +24 -0
- data/docs/StartCrawlRequest.md +18 -0
- data/docs/StepByStepInstructions.md +20 -0
- data/docs/Suggestion.md +38 -0
- data/docs/SuggestionsApi.md +235 -0
- data/docs/UpdateSuggestionRequest.md +18 -0
- data/docs/UsageHistoryItem.md +26 -0
- data/docs/VerifyContent200Response.md +20 -0
- data/docs/VerifyContentRequest.md +20 -0
- data/docs/WebhooksApi.md +151 -0
- data/git_push.sh +57 -0
- data/lib/openapi_client/api/content_verification_api.rb +96 -0
- data/lib/openapi_client/api/crawling_api.rb +155 -0
- data/lib/openapi_client/api/credits_api.rb +168 -0
- data/lib/openapi_client/api/implementations_api.rb +332 -0
- data/lib/openapi_client/api/projects_api.rb +273 -0
- data/lib/openapi_client/api/suggestions_api.rb +242 -0
- data/lib/openapi_client/api/webhooks_api.rb +154 -0
- data/lib/openapi_client/api_client.rb +393 -0
- data/lib/openapi_client/api_error.rb +58 -0
- data/lib/openapi_client/configuration.rb +316 -0
- data/lib/openapi_client/models/add_credits200_response.rb +238 -0
- data/lib/openapi_client/models/add_credits_request.rb +259 -0
- data/lib/openapi_client/models/auto_recharge_settings.rb +292 -0
- data/lib/openapi_client/models/change_result.rb +328 -0
- data/lib/openapi_client/models/content_verification.rb +274 -0
- data/lib/openapi_client/models/crawl.rb +373 -0
- data/lib/openapi_client/models/create_project_request.rb +541 -0
- data/lib/openapi_client/models/credit_balance.rb +379 -0
- data/lib/openapi_client/models/credit_balance_info.rb +329 -0
- data/lib/openapi_client/models/custom_credentials.rb +265 -0
- data/lib/openapi_client/models/delete_project200_response.rb +229 -0
- data/lib/openapi_client/models/error.rb +268 -0
- data/lib/openapi_client/models/generate_suggestions200_response.rb +261 -0
- data/lib/openapi_client/models/generate_suggestions_request.rb +249 -0
- data/lib/openapi_client/models/get_implementation200_response.rb +229 -0
- data/lib/openapi_client/models/implementation.rb +454 -0
- data/lib/openapi_client/models/implementation_instructions.rb +372 -0
- data/lib/openapi_client/models/implementation_request.rb +362 -0
- data/lib/openapi_client/models/implementation_response.rb +293 -0
- data/lib/openapi_client/models/implementation_result.rb +268 -0
- data/lib/openapi_client/models/implementation_summary.rb +319 -0
- data/lib/openapi_client/models/link_opportunity.rb +355 -0
- data/lib/openapi_client/models/list_implementations200_response.rb +251 -0
- data/lib/openapi_client/models/page_info.rb +285 -0
- data/lib/openapi_client/models/page_limit_status.rb +292 -0
- data/lib/openapi_client/models/period_charges.rb +292 -0
- data/lib/openapi_client/models/project.rb +634 -0
- data/lib/openapi_client/models/project_count.rb +230 -0
- data/lib/openapi_client/models/report_implementation_status200_response.rb +229 -0
- data/lib/openapi_client/models/report_implementation_status_request.rb +316 -0
- data/lib/openapi_client/models/rollback.rb +302 -0
- data/lib/openapi_client/models/rollback_implementation200_response.rb +239 -0
- data/lib/openapi_client/models/rollback_implementation_request.rb +247 -0
- data/lib/openapi_client/models/spending_limit_status.rb +319 -0
- data/lib/openapi_client/models/start_crawl_request.rb +249 -0
- data/lib/openapi_client/models/step_by_step_instructions.rb +267 -0
- data/lib/openapi_client/models/suggestion.rb +497 -0
- data/lib/openapi_client/models/update_suggestion_request.rb +262 -0
- data/lib/openapi_client/models/usage_history_item.rb +331 -0
- data/lib/openapi_client/models/verify_content200_response.rb +229 -0
- data/lib/openapi_client/models/verify_content_request.rb +265 -0
- data/lib/openapi_client/version.rb +15 -0
- data/lib/openapi_client.rb +87 -0
- data/openapi_client.gemspec +39 -0
- data/spec/api/content_verification_api_spec.rb +48 -0
- data/spec/api/crawling_api_spec.rb +60 -0
- data/spec/api/credits_api_spec.rb +63 -0
- data/spec/api/implementations_api_spec.rb +91 -0
- data/spec/api/projects_api_spec.rb +82 -0
- data/spec/api/suggestions_api_spec.rb +75 -0
- data/spec/api/webhooks_api_spec.rb +59 -0
- data/spec/models/add_credits200_response_spec.rb +48 -0
- data/spec/models/add_credits_request_spec.rb +42 -0
- data/spec/models/auto_recharge_settings_spec.rb +48 -0
- data/spec/models/change_result_spec.rb +62 -0
- data/spec/models/content_verification_spec.rb +48 -0
- data/spec/models/crawl_spec.rb +76 -0
- data/spec/models/create_project_request_spec.rb +170 -0
- data/spec/models/credit_balance_info_spec.rb +60 -0
- data/spec/models/credit_balance_spec.rb +72 -0
- data/spec/models/custom_credentials_spec.rb +42 -0
- data/spec/models/delete_project200_response_spec.rb +42 -0
- data/spec/models/error_spec.rb +54 -0
- data/spec/models/generate_suggestions200_response_spec.rb +48 -0
- data/spec/models/generate_suggestions_request_spec.rb +36 -0
- data/spec/models/get_implementation200_response_spec.rb +42 -0
- data/spec/models/implementation_instructions_spec.rb +66 -0
- data/spec/models/implementation_request_spec.rb +68 -0
- data/spec/models/implementation_response_spec.rb +48 -0
- data/spec/models/implementation_result_spec.rb +54 -0
- data/spec/models/implementation_spec.rb +102 -0
- data/spec/models/implementation_summary_spec.rb +54 -0
- data/spec/models/link_opportunity_spec.rb +66 -0
- data/spec/models/list_implementations200_response_spec.rb +54 -0
- data/spec/models/page_info_spec.rb +54 -0
- data/spec/models/page_limit_status_spec.rb +48 -0
- data/spec/models/period_charges_spec.rb +48 -0
- data/spec/models/project_count_spec.rb +42 -0
- data/spec/models/project_spec.rb +200 -0
- data/spec/models/report_implementation_status200_response_spec.rb +42 -0
- data/spec/models/report_implementation_status_request_spec.rb +52 -0
- data/spec/models/rollback_implementation200_response_spec.rb +48 -0
- data/spec/models/rollback_implementation_request_spec.rb +42 -0
- data/spec/models/rollback_spec.rb +54 -0
- data/spec/models/spending_limit_status_spec.rb +54 -0
- data/spec/models/start_crawl_request_spec.rb +36 -0
- data/spec/models/step_by_step_instructions_spec.rb +42 -0
- data/spec/models/suggestion_spec.rb +100 -0
- data/spec/models/update_suggestion_request_spec.rb +40 -0
- data/spec/models/usage_history_item_spec.rb +60 -0
- data/spec/models/verify_content200_response_spec.rb +42 -0
- data/spec/models/verify_content_request_spec.rb +42 -0
- data/spec/spec_helper.rb +111 -0
- metadata +288 -0
metadata
ADDED
|
@@ -0,0 +1,288 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: rankvectors
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- RankVectors
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2025-10-26 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: typhoeus
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.0'
|
|
20
|
+
- - ">="
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: 1.0.1
|
|
23
|
+
type: :runtime
|
|
24
|
+
prerelease: false
|
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
+
requirements:
|
|
27
|
+
- - "~>"
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '1.0'
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 1.0.1
|
|
33
|
+
- !ruby/object:Gem::Dependency
|
|
34
|
+
name: rspec
|
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: 3.6.0
|
|
40
|
+
- - "~>"
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: '3.6'
|
|
43
|
+
type: :development
|
|
44
|
+
prerelease: false
|
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
46
|
+
requirements:
|
|
47
|
+
- - ">="
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
version: 3.6.0
|
|
50
|
+
- - "~>"
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: '3.6'
|
|
53
|
+
description: Official RankVectors API SDK for Ruby - Intelligent internal linking
|
|
54
|
+
optimization using AI
|
|
55
|
+
email:
|
|
56
|
+
- support@rankvectors.com
|
|
57
|
+
executables: []
|
|
58
|
+
extensions: []
|
|
59
|
+
extra_rdoc_files: []
|
|
60
|
+
files:
|
|
61
|
+
- Gemfile
|
|
62
|
+
- README.md
|
|
63
|
+
- Rakefile
|
|
64
|
+
- docs/AddCredits200Response.md
|
|
65
|
+
- docs/AddCreditsRequest.md
|
|
66
|
+
- docs/AutoRechargeSettings.md
|
|
67
|
+
- docs/ChangeResult.md
|
|
68
|
+
- docs/ContentVerification.md
|
|
69
|
+
- docs/ContentVerificationApi.md
|
|
70
|
+
- docs/Crawl.md
|
|
71
|
+
- docs/CrawlingApi.md
|
|
72
|
+
- docs/CreateProjectRequest.md
|
|
73
|
+
- docs/CreditBalance.md
|
|
74
|
+
- docs/CreditBalanceInfo.md
|
|
75
|
+
- docs/CreditsApi.md
|
|
76
|
+
- docs/CustomCredentials.md
|
|
77
|
+
- docs/DeleteProject200Response.md
|
|
78
|
+
- docs/Error.md
|
|
79
|
+
- docs/GenerateSuggestions200Response.md
|
|
80
|
+
- docs/GenerateSuggestionsRequest.md
|
|
81
|
+
- docs/GetImplementation200Response.md
|
|
82
|
+
- docs/Implementation.md
|
|
83
|
+
- docs/ImplementationInstructions.md
|
|
84
|
+
- docs/ImplementationRequest.md
|
|
85
|
+
- docs/ImplementationResponse.md
|
|
86
|
+
- docs/ImplementationResult.md
|
|
87
|
+
- docs/ImplementationSummary.md
|
|
88
|
+
- docs/ImplementationsApi.md
|
|
89
|
+
- docs/LinkOpportunity.md
|
|
90
|
+
- docs/ListImplementations200Response.md
|
|
91
|
+
- docs/PageInfo.md
|
|
92
|
+
- docs/PageLimitStatus.md
|
|
93
|
+
- docs/PeriodCharges.md
|
|
94
|
+
- docs/Project.md
|
|
95
|
+
- docs/ProjectCount.md
|
|
96
|
+
- docs/ProjectsApi.md
|
|
97
|
+
- docs/ReportImplementationStatus200Response.md
|
|
98
|
+
- docs/ReportImplementationStatusRequest.md
|
|
99
|
+
- docs/Rollback.md
|
|
100
|
+
- docs/RollbackImplementation200Response.md
|
|
101
|
+
- docs/RollbackImplementationRequest.md
|
|
102
|
+
- docs/SpendingLimitStatus.md
|
|
103
|
+
- docs/StartCrawlRequest.md
|
|
104
|
+
- docs/StepByStepInstructions.md
|
|
105
|
+
- docs/Suggestion.md
|
|
106
|
+
- docs/SuggestionsApi.md
|
|
107
|
+
- docs/UpdateSuggestionRequest.md
|
|
108
|
+
- docs/UsageHistoryItem.md
|
|
109
|
+
- docs/VerifyContent200Response.md
|
|
110
|
+
- docs/VerifyContentRequest.md
|
|
111
|
+
- docs/WebhooksApi.md
|
|
112
|
+
- git_push.sh
|
|
113
|
+
- lib/openapi_client.rb
|
|
114
|
+
- lib/openapi_client/api/content_verification_api.rb
|
|
115
|
+
- lib/openapi_client/api/crawling_api.rb
|
|
116
|
+
- lib/openapi_client/api/credits_api.rb
|
|
117
|
+
- lib/openapi_client/api/implementations_api.rb
|
|
118
|
+
- lib/openapi_client/api/projects_api.rb
|
|
119
|
+
- lib/openapi_client/api/suggestions_api.rb
|
|
120
|
+
- lib/openapi_client/api/webhooks_api.rb
|
|
121
|
+
- lib/openapi_client/api_client.rb
|
|
122
|
+
- lib/openapi_client/api_error.rb
|
|
123
|
+
- lib/openapi_client/configuration.rb
|
|
124
|
+
- lib/openapi_client/models/add_credits200_response.rb
|
|
125
|
+
- lib/openapi_client/models/add_credits_request.rb
|
|
126
|
+
- lib/openapi_client/models/auto_recharge_settings.rb
|
|
127
|
+
- lib/openapi_client/models/change_result.rb
|
|
128
|
+
- lib/openapi_client/models/content_verification.rb
|
|
129
|
+
- lib/openapi_client/models/crawl.rb
|
|
130
|
+
- lib/openapi_client/models/create_project_request.rb
|
|
131
|
+
- lib/openapi_client/models/credit_balance.rb
|
|
132
|
+
- lib/openapi_client/models/credit_balance_info.rb
|
|
133
|
+
- lib/openapi_client/models/custom_credentials.rb
|
|
134
|
+
- lib/openapi_client/models/delete_project200_response.rb
|
|
135
|
+
- lib/openapi_client/models/error.rb
|
|
136
|
+
- lib/openapi_client/models/generate_suggestions200_response.rb
|
|
137
|
+
- lib/openapi_client/models/generate_suggestions_request.rb
|
|
138
|
+
- lib/openapi_client/models/get_implementation200_response.rb
|
|
139
|
+
- lib/openapi_client/models/implementation.rb
|
|
140
|
+
- lib/openapi_client/models/implementation_instructions.rb
|
|
141
|
+
- lib/openapi_client/models/implementation_request.rb
|
|
142
|
+
- lib/openapi_client/models/implementation_response.rb
|
|
143
|
+
- lib/openapi_client/models/implementation_result.rb
|
|
144
|
+
- lib/openapi_client/models/implementation_summary.rb
|
|
145
|
+
- lib/openapi_client/models/link_opportunity.rb
|
|
146
|
+
- lib/openapi_client/models/list_implementations200_response.rb
|
|
147
|
+
- lib/openapi_client/models/page_info.rb
|
|
148
|
+
- lib/openapi_client/models/page_limit_status.rb
|
|
149
|
+
- lib/openapi_client/models/period_charges.rb
|
|
150
|
+
- lib/openapi_client/models/project.rb
|
|
151
|
+
- lib/openapi_client/models/project_count.rb
|
|
152
|
+
- lib/openapi_client/models/report_implementation_status200_response.rb
|
|
153
|
+
- lib/openapi_client/models/report_implementation_status_request.rb
|
|
154
|
+
- lib/openapi_client/models/rollback.rb
|
|
155
|
+
- lib/openapi_client/models/rollback_implementation200_response.rb
|
|
156
|
+
- lib/openapi_client/models/rollback_implementation_request.rb
|
|
157
|
+
- lib/openapi_client/models/spending_limit_status.rb
|
|
158
|
+
- lib/openapi_client/models/start_crawl_request.rb
|
|
159
|
+
- lib/openapi_client/models/step_by_step_instructions.rb
|
|
160
|
+
- lib/openapi_client/models/suggestion.rb
|
|
161
|
+
- lib/openapi_client/models/update_suggestion_request.rb
|
|
162
|
+
- lib/openapi_client/models/usage_history_item.rb
|
|
163
|
+
- lib/openapi_client/models/verify_content200_response.rb
|
|
164
|
+
- lib/openapi_client/models/verify_content_request.rb
|
|
165
|
+
- lib/openapi_client/version.rb
|
|
166
|
+
- openapi_client.gemspec
|
|
167
|
+
- spec/api/content_verification_api_spec.rb
|
|
168
|
+
- spec/api/crawling_api_spec.rb
|
|
169
|
+
- spec/api/credits_api_spec.rb
|
|
170
|
+
- spec/api/implementations_api_spec.rb
|
|
171
|
+
- spec/api/projects_api_spec.rb
|
|
172
|
+
- spec/api/suggestions_api_spec.rb
|
|
173
|
+
- spec/api/webhooks_api_spec.rb
|
|
174
|
+
- spec/models/add_credits200_response_spec.rb
|
|
175
|
+
- spec/models/add_credits_request_spec.rb
|
|
176
|
+
- spec/models/auto_recharge_settings_spec.rb
|
|
177
|
+
- spec/models/change_result_spec.rb
|
|
178
|
+
- spec/models/content_verification_spec.rb
|
|
179
|
+
- spec/models/crawl_spec.rb
|
|
180
|
+
- spec/models/create_project_request_spec.rb
|
|
181
|
+
- spec/models/credit_balance_info_spec.rb
|
|
182
|
+
- spec/models/credit_balance_spec.rb
|
|
183
|
+
- spec/models/custom_credentials_spec.rb
|
|
184
|
+
- spec/models/delete_project200_response_spec.rb
|
|
185
|
+
- spec/models/error_spec.rb
|
|
186
|
+
- spec/models/generate_suggestions200_response_spec.rb
|
|
187
|
+
- spec/models/generate_suggestions_request_spec.rb
|
|
188
|
+
- spec/models/get_implementation200_response_spec.rb
|
|
189
|
+
- spec/models/implementation_instructions_spec.rb
|
|
190
|
+
- spec/models/implementation_request_spec.rb
|
|
191
|
+
- spec/models/implementation_response_spec.rb
|
|
192
|
+
- spec/models/implementation_result_spec.rb
|
|
193
|
+
- spec/models/implementation_spec.rb
|
|
194
|
+
- spec/models/implementation_summary_spec.rb
|
|
195
|
+
- spec/models/link_opportunity_spec.rb
|
|
196
|
+
- spec/models/list_implementations200_response_spec.rb
|
|
197
|
+
- spec/models/page_info_spec.rb
|
|
198
|
+
- spec/models/page_limit_status_spec.rb
|
|
199
|
+
- spec/models/period_charges_spec.rb
|
|
200
|
+
- spec/models/project_count_spec.rb
|
|
201
|
+
- spec/models/project_spec.rb
|
|
202
|
+
- spec/models/report_implementation_status200_response_spec.rb
|
|
203
|
+
- spec/models/report_implementation_status_request_spec.rb
|
|
204
|
+
- spec/models/rollback_implementation200_response_spec.rb
|
|
205
|
+
- spec/models/rollback_implementation_request_spec.rb
|
|
206
|
+
- spec/models/rollback_spec.rb
|
|
207
|
+
- spec/models/spending_limit_status_spec.rb
|
|
208
|
+
- spec/models/start_crawl_request_spec.rb
|
|
209
|
+
- spec/models/step_by_step_instructions_spec.rb
|
|
210
|
+
- spec/models/suggestion_spec.rb
|
|
211
|
+
- spec/models/update_suggestion_request_spec.rb
|
|
212
|
+
- spec/models/usage_history_item_spec.rb
|
|
213
|
+
- spec/models/verify_content200_response_spec.rb
|
|
214
|
+
- spec/models/verify_content_request_spec.rb
|
|
215
|
+
- spec/spec_helper.rb
|
|
216
|
+
homepage: https://github.com/RankVectors/ruby-sdk
|
|
217
|
+
licenses:
|
|
218
|
+
- MIT
|
|
219
|
+
metadata: {}
|
|
220
|
+
post_install_message:
|
|
221
|
+
rdoc_options: []
|
|
222
|
+
require_paths:
|
|
223
|
+
- lib
|
|
224
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
225
|
+
requirements:
|
|
226
|
+
- - ">="
|
|
227
|
+
- !ruby/object:Gem::Version
|
|
228
|
+
version: '2.7'
|
|
229
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
230
|
+
requirements:
|
|
231
|
+
- - ">="
|
|
232
|
+
- !ruby/object:Gem::Version
|
|
233
|
+
version: '0'
|
|
234
|
+
requirements: []
|
|
235
|
+
rubygems_version: 3.0.3.1
|
|
236
|
+
signing_key:
|
|
237
|
+
specification_version: 4
|
|
238
|
+
summary: Official RankVectors API SDK for Ruby
|
|
239
|
+
test_files:
|
|
240
|
+
- spec/api/crawling_api_spec.rb
|
|
241
|
+
- spec/api/content_verification_api_spec.rb
|
|
242
|
+
- spec/api/implementations_api_spec.rb
|
|
243
|
+
- spec/api/webhooks_api_spec.rb
|
|
244
|
+
- spec/api/projects_api_spec.rb
|
|
245
|
+
- spec/api/suggestions_api_spec.rb
|
|
246
|
+
- spec/api/credits_api_spec.rb
|
|
247
|
+
- spec/models/error_spec.rb
|
|
248
|
+
- spec/models/implementation_response_spec.rb
|
|
249
|
+
- spec/models/step_by_step_instructions_spec.rb
|
|
250
|
+
- spec/models/add_credits200_response_spec.rb
|
|
251
|
+
- spec/models/spending_limit_status_spec.rb
|
|
252
|
+
- spec/models/generate_suggestions_request_spec.rb
|
|
253
|
+
- spec/models/project_spec.rb
|
|
254
|
+
- spec/models/add_credits_request_spec.rb
|
|
255
|
+
- spec/models/project_count_spec.rb
|
|
256
|
+
- spec/models/implementation_instructions_spec.rb
|
|
257
|
+
- spec/models/crawl_spec.rb
|
|
258
|
+
- spec/models/rollback_spec.rb
|
|
259
|
+
- spec/models/change_result_spec.rb
|
|
260
|
+
- spec/models/implementation_request_spec.rb
|
|
261
|
+
- spec/models/start_crawl_request_spec.rb
|
|
262
|
+
- spec/models/rollback_implementation200_response_spec.rb
|
|
263
|
+
- spec/models/page_limit_status_spec.rb
|
|
264
|
+
- spec/models/report_implementation_status200_response_spec.rb
|
|
265
|
+
- spec/models/usage_history_item_spec.rb
|
|
266
|
+
- spec/models/credit_balance_spec.rb
|
|
267
|
+
- spec/models/get_implementation200_response_spec.rb
|
|
268
|
+
- spec/models/suggestion_spec.rb
|
|
269
|
+
- spec/models/create_project_request_spec.rb
|
|
270
|
+
- spec/models/update_suggestion_request_spec.rb
|
|
271
|
+
- spec/models/auto_recharge_settings_spec.rb
|
|
272
|
+
- spec/models/custom_credentials_spec.rb
|
|
273
|
+
- spec/models/content_verification_spec.rb
|
|
274
|
+
- spec/models/delete_project200_response_spec.rb
|
|
275
|
+
- spec/models/rollback_implementation_request_spec.rb
|
|
276
|
+
- spec/models/generate_suggestions200_response_spec.rb
|
|
277
|
+
- spec/models/link_opportunity_spec.rb
|
|
278
|
+
- spec/models/implementation_spec.rb
|
|
279
|
+
- spec/models/report_implementation_status_request_spec.rb
|
|
280
|
+
- spec/models/implementation_summary_spec.rb
|
|
281
|
+
- spec/models/implementation_result_spec.rb
|
|
282
|
+
- spec/models/page_info_spec.rb
|
|
283
|
+
- spec/models/verify_content200_response_spec.rb
|
|
284
|
+
- spec/models/period_charges_spec.rb
|
|
285
|
+
- spec/models/list_implementations200_response_spec.rb
|
|
286
|
+
- spec/models/credit_balance_info_spec.rb
|
|
287
|
+
- spec/models/verify_content_request_spec.rb
|
|
288
|
+
- spec/spec_helper.rb
|