files.com 1.1.656 → 1.1.658

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: ab9caae756791b0d09fb3abd9ee85944fca0eaae4140c6e5241724bdf0e9afca
4
- data.tar.gz: d68feeda7246097efddb2533b563c6c68feaa6f6a7f47e098da2cfd2fa1e4d82
3
+ metadata.gz: 817a3ee68b975896e3d38bc5d9fe93e895f2dec303a81c4bfd03efcf4a9fb47b
4
+ data.tar.gz: 5fd6014863c9a27513bf993f040301afb3c7fd49cca2090099cc043ffb093009
5
5
  SHA512:
6
- metadata.gz: e2b59e4e6919dd21cd298f93a6d437a1766a10affb37a587148f611dc7d8eed2c964964e46e65831b420299d366077a044066c5b8b9ee48607c7c9daf224b06a
7
- data.tar.gz: 3eb2160db560b9997c49782643b632af8aa97d60bbde0f42b2aaeaea22053f1a06892b4eeb9ceb7ac0047ca13bd22ef3573e0c7f5d5da8e7b392354f94766b69
6
+ metadata.gz: 50c38a117388f27629f90559750f6a935bfe4c5c73be92ddb98fed204449982f1e97a4148689a4e728462bacd53a191895585aa20af4aafd0fdca6d49855dc68
7
+ data.tar.gz: e5e103105b5ecefdfe7bbfc331cba66a1ceee61f7258c967092bd86d12b235893fc433c78a3cf65cd72d5f82a85aedf21100d1daf9232db094eef3d652cb6f49
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.656
1
+ 1.1.658
data/docs/chat_session.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  ```
6
6
  {
7
- "id": 1,
7
+ "id": "example",
8
8
  "user_id": 1,
9
9
  "workspace_id": 1,
10
10
  "last_active_at": "2000-01-01T01:00:00Z",
@@ -20,7 +20,7 @@
20
20
  }
21
21
  ```
22
22
 
23
- * `id` (int64): Chat Session ID.
23
+ * `id` (string): Chat Session ID.
24
24
  * `user_id` (int64): User ID.
25
25
  * `workspace_id` (int64): Workspace ID. `0` means the default workspace.
26
26
  * `last_active_at` (date-time): Most recent chat activity date/time.
@@ -52,4 +52,4 @@ Files::ChatSession.find(id)
52
52
 
53
53
  ### Parameters
54
54
 
55
- * `id` (int64): Required - Chat Session ID.
55
+ * `id` (string): Required - Chat Session ID.
data/docs/site.md CHANGED
@@ -423,7 +423,7 @@
423
423
  * `disable_password_reset` (boolean): Is password reset disabled?
424
424
  * `domain` (string): Custom domain
425
425
  * `domain_hsts_header` (boolean): Send HSTS (HTTP Strict Transport Security) header when visitors access the site via a custom domain?
426
- * `domain_letsencrypt_chain` (string): Letsencrypt chain to use when registering SSL Certificate for domain.
426
+ * `domain_letsencrypt_chain` (string): Letsencrypt chain to use when registering SSL Certificate for domain. No longer used as of 2026.
427
427
  * `email` (email): Main email for this site
428
428
  * `ftp_enabled` (boolean): Is FTP enabled?
429
429
  * `reply_to_email` (email): Reply-to email for this site
@@ -747,7 +747,7 @@ Files::Site.update(
747
747
  * `subdomain` (string): Site subdomain
748
748
  * `domain` (string): Custom domain
749
749
  * `domain_hsts_header` (boolean): Send HSTS (HTTP Strict Transport Security) header when visitors access the site via a custom domain?
750
- * `domain_letsencrypt_chain` (string): Letsencrypt chain to use when registering SSL Certificate for domain.
750
+ * `domain_letsencrypt_chain` (string): Letsencrypt chain to use when registering SSL Certificate for domain. No longer used as of 2026.
751
751
  * `email` (string): Main email for this site
752
752
  * `reply_to_email` (string): Reply-to email for this site
753
753
  * `allow_bundle_names` (boolean): Are manual Bundle names allowed?
@@ -9,7 +9,7 @@ module Files
9
9
  @options = options || {}
10
10
  end
11
11
 
12
- # int64 - Chat Session ID.
12
+ # string - Chat Session ID.
13
13
  def id
14
14
  @attributes[:id]
15
15
  end
@@ -56,11 +56,11 @@ module Files
56
56
  end
57
57
 
58
58
  # Parameters:
59
- # id (required) - int64 - Chat Session ID.
59
+ # id (required) - string - Chat Session ID.
60
60
  def self.find(id, params = {}, options = {})
61
61
  params ||= {}
62
62
  params[:id] = id
63
- raise InvalidParameterError.new("Bad parameter: id must be an Integer") if params[:id] and !params[:id].is_a?(Integer)
63
+ raise InvalidParameterError.new("Bad parameter: id must be an String") if params[:id] and !params[:id].is_a?(String)
64
64
  raise MissingParameterError.new("Parameter missing: id") unless params[:id]
65
65
 
66
66
  response, options = Api.send_request("/chat_sessions/#{params[:id]}", :get, params, options)
@@ -371,7 +371,7 @@ module Files
371
371
  @attributes[:domain_hsts_header]
372
372
  end
373
373
 
374
- # string - Letsencrypt chain to use when registering SSL Certificate for domain.
374
+ # string - Letsencrypt chain to use when registering SSL Certificate for domain. No longer used as of 2026.
375
375
  def domain_letsencrypt_chain
376
376
  @attributes[:domain_letsencrypt_chain]
377
377
  end
@@ -974,7 +974,7 @@ module Files
974
974
  # subdomain - string - Site subdomain
975
975
  # domain - string - Custom domain
976
976
  # domain_hsts_header - boolean - Send HSTS (HTTP Strict Transport Security) header when visitors access the site via a custom domain?
977
- # domain_letsencrypt_chain - string - Letsencrypt chain to use when registering SSL Certificate for domain.
977
+ # domain_letsencrypt_chain - string - Letsencrypt chain to use when registering SSL Certificate for domain. No longer used as of 2026.
978
978
  # email - string - Main email for this site
979
979
  # reply_to_email - string - Reply-to email for this site
980
980
  # allow_bundle_names - boolean - Are manual Bundle names allowed?
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.656"
4
+ VERSION = "1.1.658"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.656
4
+ version: 1.1.658
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-06-23 00:00:00.000000000 Z
11
+ date: 2026-06-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable