trinsic_api 0.5.0 → 0.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 34a5b600bde2ba2e966b8e401db84d5b00501066d33bb58ca3abb379b5fba845
4
- data.tar.gz: d15874e46bb2c134f1cf20a49cb283ef057d4887daf99c0631a0d082546a61f4
3
+ metadata.gz: 34403d2de5b8f55130404770738ba7592e49062feb323a1c9ecc5237e2aee744
4
+ data.tar.gz: 01eca6c432dcfc58d7bb494d4d19e27b9e0ee878f73a450899a4d6f87d125d7e
5
5
  SHA512:
6
- metadata.gz: 99e8f32ab4a43df68f2d74eaa18d22426d5cd42f12104ea8cae95f8f51aeb6f2a8aaddb2f1ea66ea9f743832ca0a96ada9353abd91d19df2c1712ea9983da079
7
- data.tar.gz: c141552cbe4cd3ee70d872791356f88d15db77cba031f13b55df54c46570c2a797cad508cb92283703177162e5a9d65073c69ed3b69adf661fa40147a986c4b5
6
+ metadata.gz: 1dda9f46e2b2ac2bc0bc11da71b670a0df214ad90bb78b41c94730d2245da0e36056aa6421be844dfcb29621815ae015fa7f6ec0e096a8bf7df03cc58687c6c2
7
+ data.tar.gz: 75cf8982a0b4497b8c37870a68b70a53a296c85180ca8622044d9ff63850b60c1c294c2bd8e9c8f3fbb9883ab7a75011d848e8eaeaef01f39f5bb181cc55c3ee
data/README.md CHANGED
@@ -1,137 +1,55 @@
1
- # trinsic_api
1
+ # Trinsic API Ruby Library
2
2
 
3
- TrinsicApi - the Ruby gem for the Connect API
3
+ ![Version](https://img.shields.io/gem/v/trinsic_api)
4
+ [![Build Status](https://github.com/trinsic-id/sdk/actions/workflows/api-ruby-release.yml/badge.svg)](https://github.com/trinsic-id/sdk/actions?query=branch%main)
4
5
 
5
- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ The Trinsic API Ruby library provides convenient access to the Trinsic API from
7
+ applications written in Ruby.
6
8
 
7
- This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
9
+ ## Documentation
8
10
 
9
- - API version: v1
10
- - Package version: 0.5.0
11
- - Generator version: 7.8.0
12
- - Build package: org.openapitools.codegen.languages.RubyClientCodegen
11
+ See the [Trinsic docs](https://connect.docs.trinsic.id/docs/) for more detailed information on how to start integrating with our identity acceptance network.
13
12
 
14
13
  ## Installation
15
14
 
16
- ### Build a gem
15
+ Install the package with:
17
16
 
18
- To build the Ruby code into a gem:
19
-
20
- ```shell
21
- gem build trinsic_api.gemspec
17
+ ```sh
18
+ gem install trinsic_api
22
19
  ```
23
20
 
24
- Then either install the gem locally:
21
+ or add it to your `Gemfile`
25
22
 
26
- ```shell
27
- gem install ./trinsic_api-0.5.0.gem
23
+ ```
24
+ gem 'trinsic_api'
28
25
  ```
29
26
 
30
- (for development, run `gem install --dev ./trinsic_api-0.5.0.gem` to install the development dependencies)
31
-
32
- or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
33
-
34
- Finally add this to the Gemfile:
35
-
36
- gem 'trinsic_api', '~> 0.5.0'
37
-
38
- ### Install from Git
39
-
40
- If the Ruby gem is hosted at a git repository: https://github.com/GIT_USER_ID/GIT_REPO_ID, then add the following in the Gemfile:
27
+ ## Usage
41
28
 
42
- gem 'trinsic_api', :git => 'https://github.com/GIT_USER_ID/GIT_REPO_ID.git'
29
+ The package needs to be configured with your app's access token, which is
30
+ available in the [Trinsic Dashboard](https://dashboard.trinsic.id).
43
31
 
44
- ### Include the Ruby code directly
32
+ <!-- TODO: add simple usage here -->
45
33
 
46
- Include the Ruby code directly using `-I` as follows:
34
+ ```rb
47
35
 
48
- ```shell
49
- ruby -Ilib script.rb
50
36
  ```
51
37
 
52
- ## Getting Started
38
+ You can find a full Ruby server example in the [samples](https://github.com/trinsic-id/sdk/tree/main/api-ruby/samples) folder.
53
39
 
54
- Please follow the [installation](#installation) procedure and then run the following code:
40
+ ## SDK Versioning
55
41
 
56
- ```ruby
57
- # Load the gem
58
- require 'trinsic_api'
42
+ Trinsic follows a Semantic Versioning (SemVer) process where all releases will have a version X.Y.Z (like 1.0.0) pattern wherein Z would be a bug fix (e.g., 1.0.1), Y would be a minor release (1.1.0) and X would be a major release (2.0.0). We permit any breaking changes to only be released in major versions and strongly recommend reading changelogs before making any major version upgrades.
59
43
 
60
- # Setup authorization
61
- TrinsicApi.configure do |config|
62
- # Configure Bearer authorization: Bearer
63
- config.access_token = 'YOUR_BEARER_TOKEN'
64
- # Configure a proc to get access tokens in lieu of the static access_token configuration
65
- config.access_token_getter = -> { 'YOUR TOKEN GETTER PROC' }
66
- end
44
+ ## Support
67
45
 
68
- api_instance = TrinsicApi::AttachmentsApi.new
69
- opts = {
70
- get_attachment_request: TrinsicApi::GetAttachmentRequest.new({attachment_access_key: 'attachment_access_key_example'}) # GetAttachmentRequest |
71
- }
46
+ New features and bug fixes are released on the latest major version of the `trinsic_api` package. If you are on an older major version, we recommend that you upgrade to the latest in order to use the new features and bug fixes including those for security vulnerabilities. Older major versions of the package will continue to be available for use, but will not be receiving any updates.
72
47
 
73
- begin
74
- #Get Attachment
75
- api_instance.get_attachment(opts)
76
- rescue TrinsicApi::ApiError => e
77
- puts "Exception when calling AttachmentsApi->get_attachment: #{e}"
78
- end
79
-
80
- ```
48
+ Any issues, inquiries, and feature requests can be sent to [support@trinsic.id](mailto:support@trinsic.id), or feel free to open a GitHub issue [here](https://github.com/trinsic-id/sdk/issues).
81
49
 
82
- ## Documentation for API Endpoints
83
-
84
- All URIs are relative to *https://api.trinsic.id*
85
-
86
- Class | Method | HTTP request | Description
87
- ------------ | ------------- | ------------- | -------------
88
- *TrinsicApi::AttachmentsApi* | [**get_attachment**](docs/AttachmentsApi.md#get_attachment) | **POST** /api/v1/attachments/attachment | Get Attachment
89
- *TrinsicApi::NetworkApi* | [**identity_lookup**](docs/NetworkApi.md#identity_lookup) | **GET** /api/v1/network/identities/{phoneNumber} | Lookup Identity
90
- *TrinsicApi::NetworkApi* | [**list_providers**](docs/NetworkApi.md#list_providers) | **GET** /api/v1/network/providers | List Identity Providers
91
- *TrinsicApi::SessionsApi* | [**cancel_session**](docs/SessionsApi.md#cancel_session) | **POST** /api/v1/sessions/{sessionId}/cancel | Cancel Session
92
- *TrinsicApi::SessionsApi* | [**create_session**](docs/SessionsApi.md#create_session) | **POST** /api/v1/sessions | Create Session
93
- *TrinsicApi::SessionsApi* | [**get_session**](docs/SessionsApi.md#get_session) | **GET** /api/v1/sessions/{sessionId} | Get Session
94
- *TrinsicApi::SessionsApi* | [**get_session_result**](docs/SessionsApi.md#get_session_result) | **POST** /api/v1/sessions/{sessionId}/results | Get Session Results
95
- *TrinsicApi::SessionsApi* | [**list_sessions**](docs/SessionsApi.md#list_sessions) | **GET** /api/v1/sessions | List Sessions
96
- *TrinsicApi::SessionsApi* | [**redact_session**](docs/SessionsApi.md#redact_session) | **POST** /api/v1/sessions/{sessionId}/redact | Redact Session
97
-
98
-
99
- ## Documentation for Models
100
-
101
- - [TrinsicApi::Address](docs/Address.md)
102
- - [TrinsicApi::Attachments](docs/Attachments.md)
103
- - [TrinsicApi::CancelSessionResponse](docs/CancelSessionResponse.md)
104
- - [TrinsicApi::CreateSessionRequest](docs/CreateSessionRequest.md)
105
- - [TrinsicApi::CreateSessionResponse](docs/CreateSessionResponse.md)
106
- - [TrinsicApi::DisclosedFields](docs/DisclosedFields.md)
107
- - [TrinsicApi::DisclosedFieldsRequest](docs/DisclosedFieldsRequest.md)
108
- - [TrinsicApi::DocumentData](docs/DocumentData.md)
109
- - [TrinsicApi::FailureMessage](docs/FailureMessage.md)
110
- - [TrinsicApi::GetAttachmentRequest](docs/GetAttachmentRequest.md)
111
- - [TrinsicApi::GetSessionResponse](docs/GetSessionResponse.md)
112
- - [TrinsicApi::GetSessionResultRequest](docs/GetSessionResultRequest.md)
113
- - [TrinsicApi::GetSessionResultResponse](docs/GetSessionResultResponse.md)
114
- - [TrinsicApi::IdentityData](docs/IdentityData.md)
115
- - [TrinsicApi::IdentityLookupResponse](docs/IdentityLookupResponse.md)
116
- - [TrinsicApi::ListProvidersResponse](docs/ListProvidersResponse.md)
117
- - [TrinsicApi::ListSessionsResponse](docs/ListSessionsResponse.md)
118
- - [TrinsicApi::OrderDirection](docs/OrderDirection.md)
119
- - [TrinsicApi::PersonData](docs/PersonData.md)
120
- - [TrinsicApi::ProviderInfo](docs/ProviderInfo.md)
121
- - [TrinsicApi::Session](docs/Session.md)
122
- - [TrinsicApi::SessionFailCode](docs/SessionFailCode.md)
123
- - [TrinsicApi::SessionOrdering](docs/SessionOrdering.md)
124
- - [TrinsicApi::SessionState](docs/SessionState.md)
125
- - [TrinsicApi::ValidationResult](docs/ValidationResult.md)
126
- - [TrinsicApi::Verification](docs/Verification.md)
127
- - [TrinsicApi::VerificationFailCode](docs/VerificationFailCode.md)
128
-
129
-
130
- ## Documentation for Authorization
131
-
132
-
133
- Authentication schemes defined for the API:
134
- ### Bearer
135
-
136
- - **Type**: Bearer authentication
50
+ ## More Information
137
51
 
52
+ - [API Reference](https://connect.docs.trinsic.id/reference)
53
+ - [Developer Guide](https://github.com/stripe/stripe-node/wiki/Passing-Options)
54
+ - [Our Blog](https://trinsic.id/blog/)
55
+ - [Schedule a demo](https://trinsic.id/contact/)
@@ -4,7 +4,7 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **launch_method_directly** | **Boolean** | Whether to immediately launch the identity provider, without invoking the Trinsic Connect Widget UI. Users will not be shown the Connect Widget; therefore, reuse of Connect credentials, selection of an identity provider, and saving a verification for future reuse are not available to the end user in this mode. Sessions created with this option enabled must be created with a &#x60;RedirectUrl&#x60; specified, and cannot be invoked using the frontend SDK at this time. | [optional] |
7
+ | **launch_provider_directly** | **Boolean** | Whether to immediately launch the identity provider, without invoking the Trinsic Widget UI. Users will not be shown the Widget; therefore, reuse of credentials, selection of an identity provider, and saving a verification for future reuse are not available to the end user in this mode. Sessions created with this option enabled must be created with a &#x60;RedirectUrl&#x60; specified, and cannot be invoked using the frontend SDK at this time. | [optional] |
8
8
  | **providers** | **Array&lt;String&gt;** | The list of allowed identity providers. If not specified, all available providers will be allowed. If &#x60;LaunchMethodDirectly&#x60; is &#x60;true&#x60;, this field must be set, and must have only a single entry. If &#x60;LaunchMethodDirectly&#x60; is not specified or is &#x60;false&#x60;, this field may have any number of entries. | [optional] |
9
9
  | **disclosed_fields** | [**DisclosedFieldsRequest**](DisclosedFieldsRequest.md) | Specific identity attributes to request. If not provided, all available attributes will be requested. | [optional] |
10
10
 
@@ -14,7 +14,7 @@
14
14
  require 'trinsic_api'
15
15
 
16
16
  instance = TrinsicApi::CreateSessionRequest.new(
17
- launch_method_directly: null,
17
+ launch_provider_directly: null,
18
18
  providers: null,
19
19
  disclosed_fields: null
20
20
  )
@@ -5,7 +5,7 @@
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **session** | [**Session**](Session.md) | The created Acceptance Session | |
8
- | **launch_url** | **String** | The URL that should be used to invoke the Acceptance Session on your user&#39;s device. If the Session was created with &#x60;LaunchMethodDirectly&#x60; set to &#x60;true&#x60;, you should redirect your user&#39;s browser to this URL. The frontend SDK cannot presently be used to invoke these Sessions. Otherwise, you should pass this URL to your user&#39;s frontend and use the frontend SDK to invoke the Session. This URL is sensitive and as such can only be obtained once. If you need to obtain it again, you will need to create a new Acceptance Session. | [optional] |
8
+ | **launch_url** | **String** | The URL that should be used to invoke the Acceptance Session on your user&#39;s device. You can use our frontend SDKs to launch the user into the Acceptance Session, or you can redirect the user&#39;s browser to this URL. If the Session was created with &#x60;LaunchProviderDirectly&#x60; set to &#x60;true&#x60;, you can&#39;t use the iFrame mode. This URL is sensitive and as such can only be obtained once. If you need to obtain it again, you will need to create a new Acceptance Session. | [optional] |
9
9
 
10
10
  ## Example
11
11
 
data/docs/SessionsApi.md CHANGED
@@ -375,7 +375,7 @@ end
375
375
 
376
376
  Redact Session
377
377
 
378
- Redact a Session, removing all identity data from Trinsic's servers. Identity data that a user has chosen to save in their passkey-protected wallet will not be deleted.
378
+ Redact a Session, removing all identity data from Trinsic's servers. Every application has a redaction period that dictates how long we will hold on to your users' PII data. Once a session falls outside the redaction cutoff date, all PII will automatically be removed from that session. You can utilize this endpoint to redact a session immediately. Identity data that a user has chosen to save in their passkey-protected wallet will not be deleted.
379
379
 
380
380
  ### Examples
381
381
 
@@ -363,7 +363,7 @@ module TrinsicApi
363
363
  end
364
364
 
365
365
  # Redact Session
366
- # Redact a Session, removing all identity data from Trinsic's servers. Identity data that a user has chosen to save in their passkey-protected wallet will not be deleted.
366
+ # Redact a Session, removing all identity data from Trinsic's servers. Every application has a redaction period that dictates how long we will hold on to your users' PII data. Once a session falls outside the redaction cutoff date, all PII will automatically be removed from that session. You can utilize this endpoint to redact a session immediately. Identity data that a user has chosen to save in their passkey-protected wallet will not be deleted.
367
367
  # @param session_id [String]
368
368
  # @param [Hash] opts the optional parameters
369
369
  # @return [nil]
@@ -373,7 +373,7 @@ module TrinsicApi
373
373
  end
374
374
 
375
375
  # Redact Session
376
- # Redact a Session, removing all identity data from Trinsic&#39;s servers. Identity data that a user has chosen to save in their passkey-protected wallet will not be deleted.
376
+ # Redact a Session, removing all identity data from Trinsic&#39;s servers. Every application has a redaction period that dictates how long we will hold on to your users&#39; PII data. Once a session falls outside the redaction cutoff date, all PII will automatically be removed from that session. You can utilize this endpoint to redact a session immediately. Identity data that a user has chosen to save in their passkey-protected wallet will not be deleted.
377
377
  # @param session_id [String]
378
378
  # @param [Hash] opts the optional parameters
379
379
  # @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
@@ -15,8 +15,8 @@ require 'time'
15
15
 
16
16
  module TrinsicApi
17
17
  class CreateSessionRequest
18
- # Whether to immediately launch the identity provider, without invoking the Trinsic Connect Widget UI. Users will not be shown the Connect Widget; therefore, reuse of Connect credentials, selection of an identity provider, and saving a verification for future reuse are not available to the end user in this mode. Sessions created with this option enabled must be created with a `RedirectUrl` specified, and cannot be invoked using the frontend SDK at this time.
19
- attr_accessor :launch_method_directly
18
+ # Whether to immediately launch the identity provider, without invoking the Trinsic Widget UI. Users will not be shown the Widget; therefore, reuse of credentials, selection of an identity provider, and saving a verification for future reuse are not available to the end user in this mode. Sessions created with this option enabled must be created with a `RedirectUrl` specified, and cannot be invoked using the frontend SDK at this time.
19
+ attr_accessor :launch_provider_directly
20
20
 
21
21
  # The list of allowed identity providers. If not specified, all available providers will be allowed. If `LaunchMethodDirectly` is `true`, this field must be set, and must have only a single entry. If `LaunchMethodDirectly` is not specified or is `false`, this field may have any number of entries.
22
22
  attr_accessor :providers
@@ -27,7 +27,7 @@ module TrinsicApi
27
27
  # Attribute mapping from ruby-style variable name to JSON key.
28
28
  def self.attribute_map
29
29
  {
30
- :'launch_method_directly' => :'launchMethodDirectly',
30
+ :'launch_provider_directly' => :'launchProviderDirectly',
31
31
  :'providers' => :'providers',
32
32
  :'disclosed_fields' => :'disclosedFields'
33
33
  }
@@ -41,7 +41,7 @@ module TrinsicApi
41
41
  # Attribute type mapping.
42
42
  def self.openapi_types
43
43
  {
44
- :'launch_method_directly' => :'Boolean',
44
+ :'launch_provider_directly' => :'Boolean',
45
45
  :'providers' => :'Array<String>',
46
46
  :'disclosed_fields' => :'DisclosedFieldsRequest'
47
47
  }
@@ -68,8 +68,8 @@ module TrinsicApi
68
68
  h[k.to_sym] = v
69
69
  }
70
70
 
71
- if attributes.key?(:'launch_method_directly')
72
- self.launch_method_directly = attributes[:'launch_method_directly']
71
+ if attributes.key?(:'launch_provider_directly')
72
+ self.launch_provider_directly = attributes[:'launch_provider_directly']
73
73
  end
74
74
 
75
75
  if attributes.key?(:'providers')
@@ -103,7 +103,7 @@ module TrinsicApi
103
103
  def ==(o)
104
104
  return true if self.equal?(o)
105
105
  self.class == o.class &&
106
- launch_method_directly == o.launch_method_directly &&
106
+ launch_provider_directly == o.launch_provider_directly &&
107
107
  providers == o.providers &&
108
108
  disclosed_fields == o.disclosed_fields
109
109
  end
@@ -117,7 +117,7 @@ module TrinsicApi
117
117
  # Calculates hash code according to all attributes.
118
118
  # @return [Integer] Hash code
119
119
  def hash
120
- [launch_method_directly, providers, disclosed_fields].hash
120
+ [launch_provider_directly, providers, disclosed_fields].hash
121
121
  end
122
122
 
123
123
  # Builds the object from hash
@@ -18,7 +18,7 @@ module TrinsicApi
18
18
  # The created Acceptance Session
19
19
  attr_accessor :session
20
20
 
21
- # The URL that should be used to invoke the Acceptance Session on your user's device. If the Session was created with `LaunchMethodDirectly` set to `true`, you should redirect your user's browser to this URL. The frontend SDK cannot presently be used to invoke these Sessions. Otherwise, you should pass this URL to your user's frontend and use the frontend SDK to invoke the Session. This URL is sensitive and as such can only be obtained once. If you need to obtain it again, you will need to create a new Acceptance Session.
21
+ # The URL that should be used to invoke the Acceptance Session on your user's device. You can use our frontend SDKs to launch the user into the Acceptance Session, or you can redirect the user's browser to this URL. If the Session was created with `LaunchProviderDirectly` set to `true`, you can't use the iFrame mode. This URL is sensitive and as such can only be obtained once. If you need to obtain it again, you will need to create a new Acceptance Session.
22
22
  attr_accessor :launch_url
23
23
 
24
24
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -11,5 +11,5 @@ Generator version: 7.8.0
11
11
  =end
12
12
 
13
13
  module TrinsicApi
14
- VERSION = '0.5.0'
14
+ VERSION = '0.6.0'
15
15
  end
@@ -97,7 +97,7 @@ describe 'SessionsApi' do
97
97
 
98
98
  # unit tests for redact_session
99
99
  # Redact Session
100
- # Redact a Session, removing all identity data from Trinsic&#39;s servers. Identity data that a user has chosen to save in their passkey-protected wallet will not be deleted.
100
+ # Redact a Session, removing all identity data from Trinsic&#39;s servers. Every application has a redaction period that dictates how long we will hold on to your users&#39; PII data. Once a session falls outside the redaction cutoff date, all PII will automatically be removed from that session. You can utilize this endpoint to redact a session immediately. Identity data that a user has chosen to save in their passkey-protected wallet will not be deleted.
101
101
  # @param session_id
102
102
  # @param [Hash] opts the optional parameters
103
103
  # @return [nil]
@@ -27,7 +27,7 @@ describe TrinsicApi::CreateSessionRequest do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "launch_method_directly"' do
30
+ describe 'test attribute "launch_provider_directly"' do
31
31
  it 'should work' do
32
32
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
33
  end
data/trinsic_api.gemspec CHANGED
@@ -22,9 +22,9 @@ Gem::Specification.new do |s|
22
22
  s.authors = ["Trinsic"]
23
23
  s.email = ["support@trinsic.id"]
24
24
  s.homepage = "https://trinsic.id"
25
- s.summary = "Trinsic Api SDK"
26
- s.description = "Trinsic Api SDK to assist you in integrating with Trinsic"
27
- s.license = "Unlicense"
25
+ s.summary = "Trinsic API Ruby Library"
26
+ s.description = "This library is an SDK to interact with Trinsic's APIs."
27
+ s.license = "MIT"
28
28
  s.required_ruby_version = ">= 2.7"
29
29
  s.metadata = {}
30
30
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trinsic_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Trinsic
@@ -50,7 +50,7 @@ dependencies:
50
50
  - - ">="
51
51
  - !ruby/object:Gem::Version
52
52
  version: 3.6.0
53
- description: Trinsic Api SDK to assist you in integrating with Trinsic
53
+ description: This library is an SDK to interact with Trinsic's APIs.
54
54
  email:
55
55
  - support@trinsic.id
56
56
  executables: []
@@ -161,7 +161,7 @@ files:
161
161
  - trinsic_api.gemspec
162
162
  homepage: https://trinsic.id
163
163
  licenses:
164
- - Unlicense
164
+ - MIT
165
165
  metadata: {}
166
166
  post_install_message:
167
167
  rdoc_options: []
@@ -181,7 +181,7 @@ requirements: []
181
181
  rubygems_version: 3.3.5
182
182
  signing_key:
183
183
  specification_version: 4
184
- summary: Trinsic Api SDK
184
+ summary: Trinsic API Ruby Library
185
185
  test_files:
186
186
  - spec/api/attachments_api_spec.rb
187
187
  - spec/api/network_api_spec.rb