google-apis-forms_v1 0.14.0 → 0.15.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/forms_v1/classes.rb +7 -0
- data/lib/google/apis/forms_v1/gem_version.rb +3 -3
- data/lib/google/apis/forms_v1/representations.rb +1 -0
- data/lib/google/apis/forms_v1/service.rb +1 -1
- data/lib/google/apis/forms_v1.rb +1 -1
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cf06fafae873ad37ab089f59f60bf97821f4f8a435c29ccdaef2cfba3b0eaf7e
|
4
|
+
data.tar.gz: 507d9c8f35fad518f79ff8d8b228f6f5f6b1e405e5e5e60b1b566abc10ba84d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd6eba39a99add31569ca82c605fb7baee17096cff9f39f05e2f47a637a983503f6e5cc99ee9764a39a18036ca3f3baca58c50e192117413a84dcccb888f2199
|
7
|
+
data.tar.gz: bfb359d935abfd3d4547510a2081413c65fdb0d3c12db0a01df362ee05c262530e04ff9bddb1850ff91f2a9e53d0e34e30c2c24f871dcbc770f9ffd73a148bb7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-forms_v1
|
2
2
|
|
3
|
+
### v0.15.0 (2025-02-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250218
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
3
8
|
### v0.14.0 (2024-11-24)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20241112
|
data/OVERVIEW.md
CHANGED
@@ -79,7 +79,7 @@ Gem names for modern clients are often of the form `google-cloud-<service_name>`
|
|
79
79
|
|
80
80
|
**For most users, we recommend the modern client, if one is available.** Compared with simple clients, modern clients are generally much easier to use and more Ruby-like, support more advanced features such as streaming and long-running operations, and often provide much better performance. You may consider using a simple client instead, if a modern client is not yet available for the service you want to use, or if you are not able to use gRPC on your infrastructure.
|
81
81
|
|
82
|
-
The [product documentation](https://developers.google.com/forms/api) may provide guidance regarding the preferred client library to use.
|
82
|
+
The [product documentation](https://developers.google.com/workspace/forms/api) may provide guidance regarding the preferred client library to use.
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
@@ -645,6 +645,12 @@ module Google
|
|
645
645
|
class FormSettings
|
646
646
|
include Google::Apis::Core::Hashable
|
647
647
|
|
648
|
+
# Optional. The setting that determines whether the form collects email
|
649
|
+
# addresses from respondents.
|
650
|
+
# Corresponds to the JSON property `emailCollectionType`
|
651
|
+
# @return [String]
|
652
|
+
attr_accessor :email_collection_type
|
653
|
+
|
648
654
|
# Settings related to quiz forms and grading. These must be updated with the
|
649
655
|
# UpdateSettingsRequest.
|
650
656
|
# Corresponds to the JSON property `quizSettings`
|
@@ -657,6 +663,7 @@ module Google
|
|
657
663
|
|
658
664
|
# Update properties of this object
|
659
665
|
def update!(**args)
|
666
|
+
@email_collection_type = args[:email_collection_type] if args.key?(:email_collection_type)
|
660
667
|
@quiz_settings = args[:quiz_settings] if args.key?(:quiz_settings)
|
661
668
|
end
|
662
669
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module FormsV1
|
18
18
|
# Version of the google-apis-forms_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.15.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250218"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -578,6 +578,7 @@ module Google
|
|
578
578
|
class FormSettings
|
579
579
|
# @private
|
580
580
|
class Representation < Google::Apis::Core::JsonRepresentation
|
581
|
+
property :email_collection_type, as: 'emailCollectionType'
|
581
582
|
property :quiz_settings, as: 'quizSettings', class: Google::Apis::FormsV1::QuizSettings, decorator: Google::Apis::FormsV1::QuizSettings::Representation
|
582
583
|
|
583
584
|
end
|
@@ -30,7 +30,7 @@ module Google
|
|
30
30
|
# Forms = Google::Apis::FormsV1 # Alias the module
|
31
31
|
# service = Forms::FormsService.new
|
32
32
|
#
|
33
|
-
# @see https://developers.google.com/forms/api
|
33
|
+
# @see https://developers.google.com/workspace/forms/api
|
34
34
|
class FormsService < Google::Apis::Core::BaseService
|
35
35
|
DEFAULT_ENDPOINT_TEMPLATE = "https://forms.$UNIVERSE_DOMAIN$/"
|
36
36
|
|
data/lib/google/apis/forms_v1.rb
CHANGED
@@ -23,7 +23,7 @@ module Google
|
|
23
23
|
#
|
24
24
|
# Reads and writes Google Forms and responses.
|
25
25
|
#
|
26
|
-
# @see https://developers.google.com/forms/api
|
26
|
+
# @see https://developers.google.com/workspace/forms/api
|
27
27
|
module FormsV1
|
28
28
|
# Version of the Google Forms API this client connects to.
|
29
29
|
# This is NOT the gem version.
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-forms_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.15.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-forms_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-forms_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-forms_v1/v0.15.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-forms_v1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Google Forms API V1
|
82
79
|
test_files: []
|