ragie_ruby_sdk 1.0.11 → 1.0.13

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.
Files changed (206) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +31 -4
  3. data/docs/AgentHoppsModelsModelsUsage.md +18 -0
  4. data/docs/Answer.md +20 -0
  5. data/docs/AnswerStep.md +26 -0
  6. data/docs/CodeInterpreterEvidence.md +26 -0
  7. data/docs/CodeStep.md +28 -0
  8. data/docs/EvaluatedAnswerStep.md +30 -0
  9. data/docs/FinalAnswer.md +24 -0
  10. data/docs/FinalAnswerEvidenceInner.md +40 -0
  11. data/docs/FinalAnswerStepsInner.md +42 -0
  12. data/docs/InputTokenDetails.md +18 -0
  13. data/docs/IntercomData.md +3 -1
  14. data/docs/ModelUsage.md +22 -0
  15. data/docs/OutputTokenDetails.md +18 -0
  16. data/docs/PlanStep.md +24 -0
  17. data/docs/RagieApiSchemaResponseUsage.md +26 -0
  18. data/docs/RagieEvidence.md +34 -0
  19. data/docs/Reasoning.md +20 -0
  20. data/docs/Request.md +28 -0
  21. data/docs/Response.md +62 -0
  22. data/docs/ResponseContent.md +22 -0
  23. data/docs/ResponseOutput.md +24 -0
  24. data/docs/ResponsesApi.md +147 -0
  25. data/docs/Search.md +18 -0
  26. data/docs/SearchResultLink.md +20 -0
  27. data/docs/SearchStep.md +24 -0
  28. data/docs/SurrenderStep.md +24 -0
  29. data/docs/Tool.md +20 -0
  30. data/lib/ragie_ruby_sdk/api/responses_api.rb +153 -0
  31. data/lib/ragie_ruby_sdk/models/agent_hopps_models_models_usage.rb +222 -0
  32. data/lib/ragie_ruby_sdk/models/answer.rb +265 -0
  33. data/lib/ragie_ruby_sdk/models/answer_step.rb +346 -0
  34. data/lib/ragie_ruby_sdk/models/code_interpreter_evidence.rb +360 -0
  35. data/lib/ragie_ruby_sdk/models/code_step.rb +359 -0
  36. data/lib/ragie_ruby_sdk/models/evaluated_answer_step.rb +398 -0
  37. data/lib/ragie_ruby_sdk/models/final_answer.rb +319 -0
  38. data/lib/ragie_ruby_sdk/models/final_answer_evidence_inner.rb +103 -0
  39. data/lib/ragie_ruby_sdk/models/final_answer_steps_inner.rb +107 -0
  40. data/lib/ragie_ruby_sdk/models/input_token_details.rb +222 -0
  41. data/lib/ragie_ruby_sdk/models/intercom_data.rb +14 -4
  42. data/lib/ragie_ruby_sdk/models/model_usage.rb +289 -0
  43. data/lib/ragie_ruby_sdk/models/output_token_details.rb +222 -0
  44. data/lib/ragie_ruby_sdk/models/plan_step.rb +336 -0
  45. data/lib/ragie_ruby_sdk/models/ragie_api_schema_response_usage.rb +307 -0
  46. data/lib/ragie_ruby_sdk/models/ragie_evidence.rb +419 -0
  47. data/lib/ragie_ruby_sdk/models/reasoning.rb +271 -0
  48. data/lib/ragie_ruby_sdk/models/request.rb +328 -0
  49. data/lib/ragie_ruby_sdk/models/response.rb +638 -0
  50. data/lib/ragie_ruby_sdk/models/response_content.rb +293 -0
  51. data/lib/ragie_ruby_sdk/models/response_output.rb +333 -0
  52. data/lib/ragie_ruby_sdk/models/search.rb +239 -0
  53. data/lib/ragie_ruby_sdk/models/search_result_link.rb +263 -0
  54. data/lib/ragie_ruby_sdk/models/search_step.rb +334 -0
  55. data/lib/ragie_ruby_sdk/models/surrender_step.rb +334 -0
  56. data/lib/ragie_ruby_sdk/models/tool.rb +289 -0
  57. data/lib/ragie_ruby_sdk/version.rb +1 -1
  58. data/lib/ragie_ruby_sdk.rb +26 -0
  59. data/spec/api/responses_api_spec.rb +59 -0
  60. data/spec/models/access_token_credentials_spec.rb +1 -1
  61. data/spec/models/agent_hopps_models_models_usage_spec.rb +36 -0
  62. data/spec/models/answer_spec.rb +42 -0
  63. data/spec/models/answer_step_spec.rb +64 -0
  64. data/spec/models/async_document_metadata_update_spec.rb +1 -1
  65. data/spec/models/audio_modality_data_spec.rb +1 -1
  66. data/spec/models/authenticator_confluence_connection_spec.rb +1 -1
  67. data/spec/models/authenticator_dropbox_connection_spec.rb +1 -1
  68. data/spec/models/authenticator_gmail_connection_spec.rb +1 -1
  69. data/spec/models/authenticator_google_drive_connection_spec.rb +1 -1
  70. data/spec/models/authenticator_hubspot_connection_spec.rb +1 -1
  71. data/spec/models/authenticator_jira_connection_spec.rb +1 -1
  72. data/spec/models/authenticator_list_spec.rb +1 -1
  73. data/spec/models/authenticator_notion_connection_spec.rb +1 -1
  74. data/spec/models/authenticator_onedrive_connection_spec.rb +1 -1
  75. data/spec/models/authenticator_salesforce_connection_spec.rb +1 -1
  76. data/spec/models/authenticator_sharepoint_connection_spec.rb +1 -1
  77. data/spec/models/authenticator_slack_connection_spec.rb +1 -1
  78. data/spec/models/backblaze_credentials_spec.rb +1 -1
  79. data/spec/models/base_get_authenticator_spec.rb +1 -1
  80. data/spec/models/body_create_document_spec.rb +1 -1
  81. data/spec/models/body_update_document_file_spec.rb +1 -1
  82. data/spec/models/bucket_data_spec.rb +1 -1
  83. data/spec/models/code_interpreter_evidence_spec.rb +64 -0
  84. data/spec/models/code_step_spec.rb +70 -0
  85. data/spec/models/confluence_data_spec.rb +1 -1
  86. data/spec/models/connection_base_spec.rb +1 -1
  87. data/spec/models/connection_limit_exceeded_webhook_payload_spec.rb +1 -1
  88. data/spec/models/connection_limit_exceeded_webhook_spec.rb +1 -1
  89. data/spec/models/connection_limit_params_spec.rb +1 -1
  90. data/spec/models/connection_list_spec.rb +1 -1
  91. data/spec/models/connection_spec.rb +1 -1
  92. data/spec/models/connection_stats_spec.rb +1 -1
  93. data/spec/models/connection_sync_finished_webhook_payload_spec.rb +1 -1
  94. data/spec/models/connection_sync_finished_webhook_spec.rb +1 -1
  95. data/spec/models/connection_sync_progress_webhook_payload_spec.rb +1 -1
  96. data/spec/models/connection_sync_progress_webhook_spec.rb +1 -1
  97. data/spec/models/connection_sync_started_webhook_payload_spec.rb +1 -1
  98. data/spec/models/connection_sync_started_webhook_spec.rb +1 -1
  99. data/spec/models/connector_source_spec.rb +1 -1
  100. data/spec/models/connector_source_type_info_spec.rb +1 -1
  101. data/spec/models/create_authenticator_connection_spec.rb +1 -1
  102. data/spec/models/create_document_from_url_params_spec.rb +1 -1
  103. data/spec/models/create_document_raw_params_spec.rb +1 -1
  104. data/spec/models/create_google_authenticator_spec.rb +1 -1
  105. data/spec/models/create_instruction_params_spec.rb +1 -1
  106. data/spec/models/create_partition_params_spec.rb +1 -1
  107. data/spec/models/delete_connection_payload_spec.rb +1 -1
  108. data/spec/models/document_chunk_detail_spec.rb +1 -1
  109. data/spec/models/document_chunk_list_spec.rb +1 -1
  110. data/spec/models/document_chunk_spec.rb +1 -1
  111. data/spec/models/document_delete_spec.rb +1 -1
  112. data/spec/models/document_delete_webhook_payload_spec.rb +1 -1
  113. data/spec/models/document_delete_webhook_spec.rb +1 -1
  114. data/spec/models/document_file_update_spec.rb +1 -1
  115. data/spec/models/document_get_spec.rb +1 -1
  116. data/spec/models/document_list_spec.rb +1 -1
  117. data/spec/models/document_metadata_update_spec.rb +1 -1
  118. data/spec/models/document_raw_update_spec.rb +1 -1
  119. data/spec/models/document_spec.rb +1 -1
  120. data/spec/models/document_summary_spec.rb +1 -1
  121. data/spec/models/document_update_webhook_payload_spec.rb +1 -1
  122. data/spec/models/document_update_webhook_spec.rb +1 -1
  123. data/spec/models/document_url_update_spec.rb +1 -1
  124. data/spec/models/document_with_content_spec.rb +1 -1
  125. data/spec/models/entity_extracted_webhook_payload_spec.rb +1 -1
  126. data/spec/models/entity_extracted_webhook_spec.rb +1 -1
  127. data/spec/models/entity_list_spec.rb +1 -1
  128. data/spec/models/entity_spec.rb +1 -1
  129. data/spec/models/error_message_spec.rb +1 -1
  130. data/spec/models/evaluated_answer_step_spec.rb +76 -0
  131. data/spec/models/final_answer_evidence_inner_spec.rb +21 -0
  132. data/spec/models/final_answer_spec.rb +54 -0
  133. data/spec/models/final_answer_steps_inner_spec.rb +21 -0
  134. data/spec/models/folder_data_spec.rb +1 -1
  135. data/spec/models/freshdesk_credentials_spec.rb +1 -1
  136. data/spec/models/freshdesk_data_spec.rb +1 -1
  137. data/spec/models/gmail_data_spec.rb +1 -1
  138. data/spec/models/google_folder_data_spec.rb +1 -1
  139. data/spec/models/http_validation_error_spec.rb +1 -1
  140. data/spec/models/hubspot_data_spec.rb +1 -1
  141. data/spec/models/input_token_details_spec.rb +36 -0
  142. data/spec/models/instruction_spec.rb +1 -1
  143. data/spec/models/intercom_credentials_spec.rb +1 -1
  144. data/spec/models/intercom_data_spec.rb +7 -1
  145. data/spec/models/link_spec.rb +1 -1
  146. data/spec/models/list_connector_source_type_info_spec.rb +1 -1
  147. data/spec/models/media_mode_param_spec.rb +1 -1
  148. data/spec/models/mode2_one_of_spec.rb +1 -1
  149. data/spec/models/model_usage_spec.rb +48 -0
  150. data/spec/models/o_auth_credentials_spec.rb +1 -1
  151. data/spec/models/o_auth_refresh_token_credentials_spec.rb +1 -1
  152. data/spec/models/o_auth_url_create_spec.rb +1 -1
  153. data/spec/models/o_auth_url_response_spec.rb +1 -1
  154. data/spec/models/onedrive_data_spec.rb +1 -1
  155. data/spec/models/output_token_details_spec.rb +36 -0
  156. data/spec/models/pagination_spec.rb +1 -1
  157. data/spec/models/partition_detail_spec.rb +1 -1
  158. data/spec/models/partition_limit_exceeded_webhook_payload_spec.rb +1 -1
  159. data/spec/models/partition_limit_exceeded_webhook_spec.rb +1 -1
  160. data/spec/models/partition_limit_params_spec.rb +1 -1
  161. data/spec/models/partition_limit_reset_webhook_payload_spec.rb +1 -1
  162. data/spec/models/partition_limit_reset_webhook_spec.rb +1 -1
  163. data/spec/models/partition_limits_spec.rb +1 -1
  164. data/spec/models/partition_list_spec.rb +1 -1
  165. data/spec/models/partition_spec.rb +1 -1
  166. data/spec/models/partition_stats_spec.rb +1 -1
  167. data/spec/models/patch_document_metadata_params_spec.rb +1 -1
  168. data/spec/models/plan_step_spec.rb +58 -0
  169. data/spec/models/public_backblaze_connection_spec.rb +1 -1
  170. data/spec/models/public_create_connection_spec.rb +1 -1
  171. data/spec/models/public_freshdesk_connection_spec.rb +1 -1
  172. data/spec/models/public_gcs_connection_spec.rb +1 -1
  173. data/spec/models/public_intercom_connection_spec.rb +1 -1
  174. data/spec/models/public_s3_compatible_connection_spec.rb +1 -1
  175. data/spec/models/public_zendesk_connection_spec.rb +1 -1
  176. data/spec/models/ragie_api_schema_response_usage_spec.rb +60 -0
  177. data/spec/models/ragie_evidence_spec.rb +88 -0
  178. data/spec/models/reasoning_spec.rb +46 -0
  179. data/spec/models/request_spec.rb +70 -0
  180. data/spec/models/response_content_spec.rb +52 -0
  181. data/spec/models/response_ok_spec.rb +1 -1
  182. data/spec/models/response_output_spec.rb +62 -0
  183. data/spec/models/response_spec.rb +188 -0
  184. data/spec/models/retrieval_spec.rb +1 -1
  185. data/spec/models/retrieve_params_spec.rb +1 -1
  186. data/spec/models/s3_compatible_credentials_spec.rb +1 -1
  187. data/spec/models/scored_chunk_spec.rb +1 -1
  188. data/spec/models/search_result_link_spec.rb +42 -0
  189. data/spec/models/search_spec.rb +36 -0
  190. data/spec/models/search_step_spec.rb +58 -0
  191. data/spec/models/set_connection_enabled_payload_spec.rb +1 -1
  192. data/spec/models/sharepoint_data_spec.rb +1 -1
  193. data/spec/models/sharepoint_file_data_spec.rb +1 -1
  194. data/spec/models/sharepoint_site_data_spec.rb +1 -1
  195. data/spec/models/slack_data_spec.rb +1 -1
  196. data/spec/models/surrender_step_spec.rb +58 -0
  197. data/spec/models/tool_spec.rb +46 -0
  198. data/spec/models/update_document_from_url_params_spec.rb +1 -1
  199. data/spec/models/update_document_raw_params_spec.rb +1 -1
  200. data/spec/models/update_instruction_params_spec.rb +1 -1
  201. data/spec/models/validation_error_spec.rb +1 -1
  202. data/spec/models/video_modality_data_spec.rb +1 -1
  203. data/spec/models/word_timestamp_spec.rb +1 -1
  204. data/spec/models/zendesk_credentials_spec.rb +1 -1
  205. data/spec/models/zendesk_data_spec.rb +1 -1
  206. metadata +105 -1
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::AuthenticatorJiraConnection do
21
- let(:instance) { RagieRubySdk::AuthenticatorJiraConnection.new }
21
+ #let(:instance) { RagieRubySdk::AuthenticatorJiraConnection.new }
22
22
 
23
23
  describe 'test an instance of AuthenticatorJiraConnection' do
24
24
  it 'should create an instance of AuthenticatorJiraConnection' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::AuthenticatorList do
21
- let(:instance) { RagieRubySdk::AuthenticatorList.new }
21
+ #let(:instance) { RagieRubySdk::AuthenticatorList.new }
22
22
 
23
23
  describe 'test an instance of AuthenticatorList' do
24
24
  it 'should create an instance of AuthenticatorList' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::AuthenticatorNotionConnection do
21
- let(:instance) { RagieRubySdk::AuthenticatorNotionConnection.new }
21
+ #let(:instance) { RagieRubySdk::AuthenticatorNotionConnection.new }
22
22
 
23
23
  describe 'test an instance of AuthenticatorNotionConnection' do
24
24
  it 'should create an instance of AuthenticatorNotionConnection' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::AuthenticatorOnedriveConnection do
21
- let(:instance) { RagieRubySdk::AuthenticatorOnedriveConnection.new }
21
+ #let(:instance) { RagieRubySdk::AuthenticatorOnedriveConnection.new }
22
22
 
23
23
  describe 'test an instance of AuthenticatorOnedriveConnection' do
24
24
  it 'should create an instance of AuthenticatorOnedriveConnection' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::AuthenticatorSalesforceConnection do
21
- let(:instance) { RagieRubySdk::AuthenticatorSalesforceConnection.new }
21
+ #let(:instance) { RagieRubySdk::AuthenticatorSalesforceConnection.new }
22
22
 
23
23
  describe 'test an instance of AuthenticatorSalesforceConnection' do
24
24
  it 'should create an instance of AuthenticatorSalesforceConnection' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::AuthenticatorSharepointConnection do
21
- let(:instance) { RagieRubySdk::AuthenticatorSharepointConnection.new }
21
+ #let(:instance) { RagieRubySdk::AuthenticatorSharepointConnection.new }
22
22
 
23
23
  describe 'test an instance of AuthenticatorSharepointConnection' do
24
24
  it 'should create an instance of AuthenticatorSharepointConnection' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::AuthenticatorSlackConnection do
21
- let(:instance) { RagieRubySdk::AuthenticatorSlackConnection.new }
21
+ #let(:instance) { RagieRubySdk::AuthenticatorSlackConnection.new }
22
22
 
23
23
  describe 'test an instance of AuthenticatorSlackConnection' do
24
24
  it 'should create an instance of AuthenticatorSlackConnection' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::BackblazeCredentials do
21
- let(:instance) { RagieRubySdk::BackblazeCredentials.new }
21
+ #let(:instance) { RagieRubySdk::BackblazeCredentials.new }
22
22
 
23
23
  describe 'test an instance of BackblazeCredentials' do
24
24
  it 'should create an instance of BackblazeCredentials' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::BaseGetAuthenticator do
21
- let(:instance) { RagieRubySdk::BaseGetAuthenticator.new }
21
+ #let(:instance) { RagieRubySdk::BaseGetAuthenticator.new }
22
22
 
23
23
  describe 'test an instance of BaseGetAuthenticator' do
24
24
  it 'should create an instance of BaseGetAuthenticator' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::BodyCreateDocument do
21
- let(:instance) { RagieRubySdk::BodyCreateDocument.new }
21
+ #let(:instance) { RagieRubySdk::BodyCreateDocument.new }
22
22
 
23
23
  describe 'test an instance of BodyCreateDocument' do
24
24
  it 'should create an instance of BodyCreateDocument' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::BodyUpdateDocumentFile do
21
- let(:instance) { RagieRubySdk::BodyUpdateDocumentFile.new }
21
+ #let(:instance) { RagieRubySdk::BodyUpdateDocumentFile.new }
22
22
 
23
23
  describe 'test an instance of BodyUpdateDocumentFile' do
24
24
  it 'should create an instance of BodyUpdateDocumentFile' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::BucketData do
21
- let(:instance) { RagieRubySdk::BucketData.new }
21
+ #let(:instance) { RagieRubySdk::BucketData.new }
22
22
 
23
23
  describe 'test an instance of BucketData' do
24
24
  it 'should create an instance of BucketData' do
@@ -0,0 +1,64 @@
1
+ =begin
2
+ #Ragie API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.16.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for RagieRubySdk::CodeInterpreterEvidence
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe RagieRubySdk::CodeInterpreterEvidence do
21
+ #let(:instance) { RagieRubySdk::CodeInterpreterEvidence.new }
22
+
23
+ describe 'test an instance of CodeInterpreterEvidence' do
24
+ it 'should create an instance of CodeInterpreterEvidence' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(RagieRubySdk::CodeInterpreterEvidence)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "type"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["code_interpreter"])
34
+ # validator.allowable_values.each do |value|
35
+ # expect { instance.type = value }.not_to raise_error
36
+ # end
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "text"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "code"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "code_issue"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "code_result"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
61
+ end
62
+ end
63
+
64
+ end
@@ -0,0 +1,70 @@
1
+ =begin
2
+ #Ragie API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.16.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for RagieRubySdk::CodeStep
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe RagieRubySdk::CodeStep do
21
+ #let(:instance) { RagieRubySdk::CodeStep.new }
22
+
23
+ describe 'test an instance of CodeStep' do
24
+ it 'should create an instance of CodeStep' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(RagieRubySdk::CodeStep)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "type"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["code"])
34
+ # validator.allowable_values.each do |value|
35
+ # expect { instance.type = value }.not_to raise_error
36
+ # end
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "think"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "current_question"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "code_issue"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "code"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
61
+ end
62
+ end
63
+
64
+ describe 'test attribute "code_result"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
67
+ end
68
+ end
69
+
70
+ end
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::ConfluenceData do
21
- let(:instance) { RagieRubySdk::ConfluenceData.new }
21
+ #let(:instance) { RagieRubySdk::ConfluenceData.new }
22
22
 
23
23
  describe 'test an instance of ConfluenceData' do
24
24
  it 'should create an instance of ConfluenceData' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::ConnectionBase do
21
- let(:instance) { RagieRubySdk::ConnectionBase.new }
21
+ #let(:instance) { RagieRubySdk::ConnectionBase.new }
22
22
 
23
23
  describe 'test an instance of ConnectionBase' do
24
24
  it 'should create an instance of ConnectionBase' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::ConnectionLimitExceededWebhookPayload do
21
- let(:instance) { RagieRubySdk::ConnectionLimitExceededWebhookPayload.new }
21
+ #let(:instance) { RagieRubySdk::ConnectionLimitExceededWebhookPayload.new }
22
22
 
23
23
  describe 'test an instance of ConnectionLimitExceededWebhookPayload' do
24
24
  it 'should create an instance of ConnectionLimitExceededWebhookPayload' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::ConnectionLimitExceededWebhook do
21
- let(:instance) { RagieRubySdk::ConnectionLimitExceededWebhook.new }
21
+ #let(:instance) { RagieRubySdk::ConnectionLimitExceededWebhook.new }
22
22
 
23
23
  describe 'test an instance of ConnectionLimitExceededWebhook' do
24
24
  it 'should create an instance of ConnectionLimitExceededWebhook' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::ConnectionLimitParams do
21
- let(:instance) { RagieRubySdk::ConnectionLimitParams.new }
21
+ #let(:instance) { RagieRubySdk::ConnectionLimitParams.new }
22
22
 
23
23
  describe 'test an instance of ConnectionLimitParams' do
24
24
  it 'should create an instance of ConnectionLimitParams' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::ConnectionList do
21
- let(:instance) { RagieRubySdk::ConnectionList.new }
21
+ #let(:instance) { RagieRubySdk::ConnectionList.new }
22
22
 
23
23
  describe 'test an instance of ConnectionList' do
24
24
  it 'should create an instance of ConnectionList' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::Connection do
21
- let(:instance) { RagieRubySdk::Connection.new }
21
+ #let(:instance) { RagieRubySdk::Connection.new }
22
22
 
23
23
  describe 'test an instance of Connection' do
24
24
  it 'should create an instance of Connection' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::ConnectionStats do
21
- let(:instance) { RagieRubySdk::ConnectionStats.new }
21
+ #let(:instance) { RagieRubySdk::ConnectionStats.new }
22
22
 
23
23
  describe 'test an instance of ConnectionStats' do
24
24
  it 'should create an instance of ConnectionStats' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::ConnectionSyncFinishedWebhookPayload do
21
- let(:instance) { RagieRubySdk::ConnectionSyncFinishedWebhookPayload.new }
21
+ #let(:instance) { RagieRubySdk::ConnectionSyncFinishedWebhookPayload.new }
22
22
 
23
23
  describe 'test an instance of ConnectionSyncFinishedWebhookPayload' do
24
24
  it 'should create an instance of ConnectionSyncFinishedWebhookPayload' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::ConnectionSyncFinishedWebhook do
21
- let(:instance) { RagieRubySdk::ConnectionSyncFinishedWebhook.new }
21
+ #let(:instance) { RagieRubySdk::ConnectionSyncFinishedWebhook.new }
22
22
 
23
23
  describe 'test an instance of ConnectionSyncFinishedWebhook' do
24
24
  it 'should create an instance of ConnectionSyncFinishedWebhook' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::ConnectionSyncProgressWebhookPayload do
21
- let(:instance) { RagieRubySdk::ConnectionSyncProgressWebhookPayload.new }
21
+ #let(:instance) { RagieRubySdk::ConnectionSyncProgressWebhookPayload.new }
22
22
 
23
23
  describe 'test an instance of ConnectionSyncProgressWebhookPayload' do
24
24
  it 'should create an instance of ConnectionSyncProgressWebhookPayload' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::ConnectionSyncProgressWebhook do
21
- let(:instance) { RagieRubySdk::ConnectionSyncProgressWebhook.new }
21
+ #let(:instance) { RagieRubySdk::ConnectionSyncProgressWebhook.new }
22
22
 
23
23
  describe 'test an instance of ConnectionSyncProgressWebhook' do
24
24
  it 'should create an instance of ConnectionSyncProgressWebhook' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::ConnectionSyncStartedWebhookPayload do
21
- let(:instance) { RagieRubySdk::ConnectionSyncStartedWebhookPayload.new }
21
+ #let(:instance) { RagieRubySdk::ConnectionSyncStartedWebhookPayload.new }
22
22
 
23
23
  describe 'test an instance of ConnectionSyncStartedWebhookPayload' do
24
24
  it 'should create an instance of ConnectionSyncStartedWebhookPayload' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::ConnectionSyncStartedWebhook do
21
- let(:instance) { RagieRubySdk::ConnectionSyncStartedWebhook.new }
21
+ #let(:instance) { RagieRubySdk::ConnectionSyncStartedWebhook.new }
22
22
 
23
23
  describe 'test an instance of ConnectionSyncStartedWebhook' do
24
24
  it 'should create an instance of ConnectionSyncStartedWebhook' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::ConnectorSource do
21
- let(:instance) { RagieRubySdk::ConnectorSource.new }
21
+ #let(:instance) { RagieRubySdk::ConnectorSource.new }
22
22
 
23
23
  describe 'test an instance of ConnectorSource' do
24
24
  it 'should create an instance of ConnectorSource' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::ConnectorSourceTypeInfo do
21
- let(:instance) { RagieRubySdk::ConnectorSourceTypeInfo.new }
21
+ #let(:instance) { RagieRubySdk::ConnectorSourceTypeInfo.new }
22
22
 
23
23
  describe 'test an instance of ConnectorSourceTypeInfo' do
24
24
  it 'should create an instance of ConnectorSourceTypeInfo' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::CreateAuthenticatorConnection do
21
- let(:instance) { RagieRubySdk::CreateAuthenticatorConnection.new }
21
+ #let(:instance) { RagieRubySdk::CreateAuthenticatorConnection.new }
22
22
 
23
23
  describe 'test an instance of CreateAuthenticatorConnection' do
24
24
  it 'should create an instance of CreateAuthenticatorConnection' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::CreateDocumentFromUrlParams do
21
- let(:instance) { RagieRubySdk::CreateDocumentFromUrlParams.new }
21
+ #let(:instance) { RagieRubySdk::CreateDocumentFromUrlParams.new }
22
22
 
23
23
  describe 'test an instance of CreateDocumentFromUrlParams' do
24
24
  it 'should create an instance of CreateDocumentFromUrlParams' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::CreateDocumentRawParams do
21
- let(:instance) { RagieRubySdk::CreateDocumentRawParams.new }
21
+ #let(:instance) { RagieRubySdk::CreateDocumentRawParams.new }
22
22
 
23
23
  describe 'test an instance of CreateDocumentRawParams' do
24
24
  it 'should create an instance of CreateDocumentRawParams' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::CreateGoogleAuthenticator do
21
- let(:instance) { RagieRubySdk::CreateGoogleAuthenticator.new }
21
+ #let(:instance) { RagieRubySdk::CreateGoogleAuthenticator.new }
22
22
 
23
23
  describe 'test an instance of CreateGoogleAuthenticator' do
24
24
  it 'should create an instance of CreateGoogleAuthenticator' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::CreateInstructionParams do
21
- let(:instance) { RagieRubySdk::CreateInstructionParams.new }
21
+ #let(:instance) { RagieRubySdk::CreateInstructionParams.new }
22
22
 
23
23
  describe 'test an instance of CreateInstructionParams' do
24
24
  it 'should create an instance of CreateInstructionParams' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::CreatePartitionParams do
21
- let(:instance) { RagieRubySdk::CreatePartitionParams.new }
21
+ #let(:instance) { RagieRubySdk::CreatePartitionParams.new }
22
22
 
23
23
  describe 'test an instance of CreatePartitionParams' do
24
24
  it 'should create an instance of CreatePartitionParams' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::DeleteConnectionPayload do
21
- let(:instance) { RagieRubySdk::DeleteConnectionPayload.new }
21
+ #let(:instance) { RagieRubySdk::DeleteConnectionPayload.new }
22
22
 
23
23
  describe 'test an instance of DeleteConnectionPayload' do
24
24
  it 'should create an instance of DeleteConnectionPayload' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::DocumentChunkDetail do
21
- let(:instance) { RagieRubySdk::DocumentChunkDetail.new }
21
+ #let(:instance) { RagieRubySdk::DocumentChunkDetail.new }
22
22
 
23
23
  describe 'test an instance of DocumentChunkDetail' do
24
24
  it 'should create an instance of DocumentChunkDetail' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::DocumentChunkList do
21
- let(:instance) { RagieRubySdk::DocumentChunkList.new }
21
+ #let(:instance) { RagieRubySdk::DocumentChunkList.new }
22
22
 
23
23
  describe 'test an instance of DocumentChunkList' do
24
24
  it 'should create an instance of DocumentChunkList' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::DocumentChunk do
21
- let(:instance) { RagieRubySdk::DocumentChunk.new }
21
+ #let(:instance) { RagieRubySdk::DocumentChunk.new }
22
22
 
23
23
  describe 'test an instance of DocumentChunk' do
24
24
  it 'should create an instance of DocumentChunk' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::DocumentDelete do
21
- let(:instance) { RagieRubySdk::DocumentDelete.new }
21
+ #let(:instance) { RagieRubySdk::DocumentDelete.new }
22
22
 
23
23
  describe 'test an instance of DocumentDelete' do
24
24
  it 'should create an instance of DocumentDelete' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::DocumentDeleteWebhookPayload do
21
- let(:instance) { RagieRubySdk::DocumentDeleteWebhookPayload.new }
21
+ #let(:instance) { RagieRubySdk::DocumentDeleteWebhookPayload.new }
22
22
 
23
23
  describe 'test an instance of DocumentDeleteWebhookPayload' do
24
24
  it 'should create an instance of DocumentDeleteWebhookPayload' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::DocumentDeleteWebhook do
21
- let(:instance) { RagieRubySdk::DocumentDeleteWebhook.new }
21
+ #let(:instance) { RagieRubySdk::DocumentDeleteWebhook.new }
22
22
 
23
23
  describe 'test an instance of DocumentDeleteWebhook' do
24
24
  it 'should create an instance of DocumentDeleteWebhook' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::DocumentFileUpdate do
21
- let(:instance) { RagieRubySdk::DocumentFileUpdate.new }
21
+ #let(:instance) { RagieRubySdk::DocumentFileUpdate.new }
22
22
 
23
23
  describe 'test an instance of DocumentFileUpdate' do
24
24
  it 'should create an instance of DocumentFileUpdate' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::DocumentGet do
21
- let(:instance) { RagieRubySdk::DocumentGet.new }
21
+ #let(:instance) { RagieRubySdk::DocumentGet.new }
22
22
 
23
23
  describe 'test an instance of DocumentGet' do
24
24
  it 'should create an instance of DocumentGet' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::DocumentList do
21
- let(:instance) { RagieRubySdk::DocumentList.new }
21
+ #let(:instance) { RagieRubySdk::DocumentList.new }
22
22
 
23
23
  describe 'test an instance of DocumentList' do
24
24
  it 'should create an instance of DocumentList' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::DocumentMetadataUpdate do
21
- let(:instance) { RagieRubySdk::DocumentMetadataUpdate.new }
21
+ #let(:instance) { RagieRubySdk::DocumentMetadataUpdate.new }
22
22
 
23
23
  describe 'test an instance of DocumentMetadataUpdate' do
24
24
  it 'should create an instance of DocumentMetadataUpdate' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::DocumentRawUpdate do
21
- let(:instance) { RagieRubySdk::DocumentRawUpdate.new }
21
+ #let(:instance) { RagieRubySdk::DocumentRawUpdate.new }
22
22
 
23
23
  describe 'test an instance of DocumentRawUpdate' do
24
24
  it 'should create an instance of DocumentRawUpdate' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::Document do
21
- let(:instance) { RagieRubySdk::Document.new }
21
+ #let(:instance) { RagieRubySdk::Document.new }
22
22
 
23
23
  describe 'test an instance of Document' do
24
24
  it 'should create an instance of Document' do
@@ -18,7 +18,7 @@ require 'date'
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
20
  describe RagieRubySdk::DocumentSummary do
21
- let(:instance) { RagieRubySdk::DocumentSummary.new }
21
+ #let(:instance) { RagieRubySdk::DocumentSummary.new }
22
22
 
23
23
  describe 'test an instance of DocumentSummary' do
24
24
  it 'should create an instance of DocumentSummary' do