ultracart_api 4.1.144 → 4.1.145

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: 13b9d39d06ac6b0264998815c54095b46e5f2937017216b655170327a16c8fec
4
- data.tar.gz: e6dc9b0d31c8b1406bb234d666668b21ab36ec5ea897ff32df8a845784e62af6
3
+ metadata.gz: 7f1235fdf756a9c04d861c9fd8359c00b55a7c1f54d77928a4f1b27f9ca59039
4
+ data.tar.gz: 831f4dac9980275b50aa94608545629d32d6987e1033ba9a3e89204fec4192b6
5
5
  SHA512:
6
- metadata.gz: 7898973f5918fa512d645190944553db8e00efddab71b7ad128647e234decdb4f1cb40604f7844ca92e02d28bfd2ade4b3cae38e12c9696a6fb915142f5042b1
7
- data.tar.gz: 2dcfdb984be83191ad63ba1e1d0f7e79155cb7ddaa7bc16e918a9ec77395b93636153c8e82b98e6682c186d36717ba5de9ad22f8bcdb290045c55e3195353c7c
6
+ metadata.gz: fe9e072122730406bbbcbc219ff801730856aca407f8e6635a9e1632db873f4cb9ee884bea4d95626aba678ef4e13bef4e9a21cd1e7587a81accd18864a22e48
7
+ data.tar.gz: c77353896854a354eb94be2bbf5562c61a3156eca719855080f45e5cdd70e1ec608dbb439c79a02467ffd4bbd956e3b99df05b50f3d5c3613f8164c7eb4c7215
data/README.md CHANGED
@@ -7,7 +7,7 @@ Note: Every method has a sample for every language. See https://github.com/Ultr
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
9
  - API version: 2.0.0
10
- - Package version: 4.1.144
10
+ - Package version: 4.1.145
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  - For more information, please visit [http://www.ultracart.com/api/](http://www.ultracart.com/api/)
13
13
 
@@ -16,7 +16,7 @@ This SDK is automatically generated by the [OpenAPI Generator](https://openapi-g
16
16
  gemfile:
17
17
 
18
18
  ```shell
19
- gem 'ultracart_api', '4.1.144'
19
+ gem 'ultracart_api', '4.1.145'
20
20
  ```
21
21
 
22
22
  install:
@@ -1927,6 +1927,7 @@ Not every change is committed to every SDK.
1927
1927
 
1928
1928
  | Version | Date | Comments |
1929
1929
  | --: | :-: | --- |
1930
+ | 4.1.145 | 09/02/2026 | sfvb - internal testing |
1930
1931
  | 4.1.144 | 09/02/2026 | sfvb - internal testing |
1931
1932
  | 4.1.143 | 09/02/2026 | sfvb - internal development |
1932
1933
  | 4.1.142 | 08/26/2026 | sfvb - internal test |
data/docs/SfvbApi.md CHANGED
@@ -752,6 +752,8 @@ end
752
752
 
753
753
  URL that renders a preview session
754
754
 
755
+ Refuses a session that does not exist, so a URL you receive is for a session that was really there. expires_in_seconds is the time actually remaining, not the configured lifetime. Needs a token that resolves to a user, because a preview session belongs to the person who created it.
756
+
755
757
 
756
758
  ### Examples
757
759
 
@@ -9,7 +9,7 @@
9
9
  | **preview_session_id** | **String** | The preview session id used. | [optional] |
10
10
  | **preview_url** | **String** | URL that renders the storefront page with the preview session's containers substituted for the stored ones. | [optional] |
11
11
  | **requires_browser_session** | **Boolean** | Always true. The preview only applies to a request carrying the UltraCart admin session cookie of the user who authorised this token. Fetched without it, the URL returns the LIVE page with a 200 and no error, so a successful fetch is not evidence the preview was applied. Present this URL for a human to open; do not fetch it. | [optional] |
12
- | **shareable** | **Boolean** | Always false. The session is keyed by individual login, so anyone else opening this URL sees the live page rather than the preview. | [optional] |
12
+ | **shareable** | **Boolean** | The session is keyed by individual login, so anyone else opening this URL sees the live page rather than the preview. This is false in every response, which means it is absent from the JSON - false booleans are omitted across this API, so a generated client sees undefined rather than false. Do not test it for equality with false. usage_note carries the same warning as a string and does survive. | [optional] |
13
13
  | **usage_note** | **String** | Plain language restatement of the two flags above, safe to show a user. | [optional] |
14
14
 
15
15
  ## Example
@@ -955,6 +955,7 @@ module UltracartClient
955
955
  end
956
956
 
957
957
  # URL that renders a preview session
958
+ # Refuses a session that does not exist, so a URL you receive is for a session that was really there. expires_in_seconds is the time actually remaining, not the configured lifetime. Needs a token that resolves to a user, because a preview session belongs to the person who created it.
958
959
  # @param storefront_oid [Integer]
959
960
  # @param preview_session_id [String]
960
961
  # @param [Hash] opts the optional parameters
@@ -966,6 +967,7 @@ module UltracartClient
966
967
  end
967
968
 
968
969
  # URL that renders a preview session
970
+ # Refuses a session that does not exist, so a URL you receive is for a session that was really there. expires_in_seconds is the time actually remaining, not the configured lifetime. Needs a token that resolves to a user, because a preview session belongs to the person who created it.
969
971
  # @param storefront_oid [Integer]
970
972
  # @param preview_session_id [String]
971
973
  # @param [Hash] opts the optional parameters
@@ -30,7 +30,7 @@ module UltracartClient
30
30
  # Always true. The preview only applies to a request carrying the UltraCart admin session cookie of the user who authorised this token. Fetched without it, the URL returns the LIVE page with a 200 and no error, so a successful fetch is not evidence the preview was applied. Present this URL for a human to open; do not fetch it.
31
31
  attr_accessor :requires_browser_session
32
32
 
33
- # Always false. The session is keyed by individual login, so anyone else opening this URL sees the live page rather than the preview.
33
+ # The session is keyed by individual login, so anyone else opening this URL sees the live page rather than the preview. This is false in every response, which means it is absent from the JSON - false booleans are omitted across this API, so a generated client sees undefined rather than false. Do not test it for equality with false. usage_note carries the same warning as a string and does survive.
34
34
  attr_accessor :shareable
35
35
 
36
36
  # Plain language restatement of the two flags above, safe to show a user.
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.1.144'
14
+ VERSION = '4.1.145'
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultracart_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.144
4
+ version: 4.1.145
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart