google-apis-script_v1 0.28.0 → 0.29.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: 9168cd046cc8dedff98a3959969f7a65bd3e76dbe755a34deada24e83045ae19
4
- data.tar.gz: 74c3a1f6a0cb26416dc383bf9e4be27bd6f2a74dc52173c0ec42b17340ffd23f
3
+ metadata.gz: b4386d424a20125fe16f34b43ac86f3cdac071d24d981380976459ab41a3c5eb
4
+ data.tar.gz: b77909220de3c062fe3c417cccd5a8f89419075bbb46d6afefee780fd6dd0bd8
5
5
  SHA512:
6
- metadata.gz: 0ae1b3ab32da954f15476c21d0f2e954b22fef249006f641c607652185eb7e5ddc535af4ff1c11127e953dc82d90a72203b92df6f64014fd7db6eacecac3e575
7
- data.tar.gz: 9d9415eb1daae9e3d5ab0c9637b383f15812d44d5903e352544fa518077a38f4336470764e50d569b4a6dd3207eb73ff25e9e2b282aabfdf645ad14a3f710fcf
6
+ metadata.gz: 217633ab57ba80a7bb83890f6128cecf2dfee04441afd5b3d45127652e2bc388fc043546716f25218ca4bce576e013c2788e959411a9d194a2661455f6aa4d2d
7
+ data.tar.gz: 9dcd1fdc84ea9694e5b1db6b161b40ebb992b71371b7321cd1c85aed35ce31b6e28a1516a25fcfa9bfed57572f8147517877d9e2a6bc996cfc94d0c843a9e8de
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-script_v1
2
2
 
3
+ ### v0.29.0 (2025-06-01)
4
+
5
+ * Regenerated from discovery document revision 20250526
6
+ * Regenerated using generator version 0.18.0
7
+
3
8
  ### v0.28.0 (2025-05-04)
4
9
 
5
10
  * Regenerated using generator version 0.17.0
@@ -203,25 +203,6 @@ module Google
203
203
  end
204
204
  end
205
205
 
206
- # The response for executing or debugging a function in an Apps Script project.
207
- class ExecuteStreamResponse
208
- include Google::Apis::Core::Hashable
209
-
210
- # The result of an execution.
211
- # Corresponds to the JSON property `result`
212
- # @return [Google::Apis::ScriptV1::ScriptExecutionResult]
213
- attr_accessor :result
214
-
215
- def initialize(**args)
216
- update!(**args)
217
- end
218
-
219
- # Update properties of this object
220
- def update!(**args)
221
- @result = args[:result] if args.key?(:result)
222
- end
223
- end
224
-
225
206
  # An object that provides information about the nature of an error resulting
226
207
  # from an attempted execution of a script function using the Apps Script API. If
227
208
  # a run call succeeds but the script function (or Apps Script itself) throws an
@@ -761,25 +742,6 @@ module Google
761
742
  end
762
743
  end
763
744
 
764
- # `ListValue` is a wrapper around a repeated field of values.
765
- class ListValue
766
- include Google::Apis::Core::Hashable
767
-
768
- # Repeated field of dynamically typed values.
769
- # Corresponds to the JSON property `values`
770
- # @return [Array<Google::Apis::ScriptV1::Value>]
771
- attr_accessor :values
772
-
773
- def initialize(**args)
774
- update!(**args)
775
- end
776
-
777
- # Update properties of this object
778
- def update!(**args)
779
- @values = args[:values] if args.key?(:values)
780
- end
781
- end
782
-
783
745
  # Response with the list of the versions for the specified script project.
784
746
  class ListVersionsResponse
785
747
  include Google::Apis::Core::Hashable
@@ -978,26 +940,6 @@ module Google
978
940
  end
979
941
  end
980
942
 
981
- # The result of an execution.
982
- class ScriptExecutionResult
983
- include Google::Apis::Core::Hashable
984
-
985
- # `Value` represents a dynamically typed value which is the outcome of an
986
- # executed script.
987
- # Corresponds to the JSON property `returnValue`
988
- # @return [Google::Apis::ScriptV1::Value]
989
- attr_accessor :return_value
990
-
991
- def initialize(**args)
992
- update!(**args)
993
- end
994
-
995
- # Update properties of this object
996
- def update!(**args)
997
- @return_value = args[:return_value] if args.key?(:return_value)
998
- end
999
- end
1000
-
1001
943
  # A stack trace through the script that shows where the execution failed.
1002
944
  class ScriptStackTraceElement
1003
945
  include Google::Apis::Core::Hashable
@@ -1060,26 +1002,6 @@ module Google
1060
1002
  end
1061
1003
  end
1062
1004
 
1063
- # `Struct` represents a structured data value, consisting of fields which map to
1064
- # dynamically typed values.
1065
- class Struct
1066
- include Google::Apis::Core::Hashable
1067
-
1068
- # Unordered map of dynamically typed values.
1069
- # Corresponds to the JSON property `fields`
1070
- # @return [Hash<String,Google::Apis::ScriptV1::Value>]
1071
- attr_accessor :fields
1072
-
1073
- def initialize(**args)
1074
- update!(**args)
1075
- end
1076
-
1077
- # Update properties of this object
1078
- def update!(**args)
1079
- @fields = args[:fields] if args.key?(:fields)
1080
- end
1081
- end
1082
-
1083
1005
  # Request with deployment information to update an existing deployment.
1084
1006
  class UpdateDeploymentRequest
1085
1007
  include Google::Apis::Core::Hashable
@@ -1099,77 +1021,6 @@ module Google
1099
1021
  end
1100
1022
  end
1101
1023
 
1102
- # `Value` represents a dynamically typed value which is the outcome of an
1103
- # executed script.
1104
- class Value
1105
- include Google::Apis::Core::Hashable
1106
-
1107
- # Represents a boolean value.
1108
- # Corresponds to the JSON property `boolValue`
1109
- # @return [Boolean]
1110
- attr_accessor :bool_value
1111
- alias_method :bool_value?, :bool_value
1112
-
1113
- # Represents raw byte values.
1114
- # Corresponds to the JSON property `bytesValue`
1115
- # NOTE: Values are automatically base64 encoded/decoded in the client library.
1116
- # @return [String]
1117
- attr_accessor :bytes_value
1118
-
1119
- # Represents a date in ms since the epoch.
1120
- # Corresponds to the JSON property `dateValue`
1121
- # @return [Fixnum]
1122
- attr_accessor :date_value
1123
-
1124
- # `ListValue` is a wrapper around a repeated field of values.
1125
- # Corresponds to the JSON property `listValue`
1126
- # @return [Google::Apis::ScriptV1::ListValue]
1127
- attr_accessor :list_value
1128
-
1129
- # Represents a null value.
1130
- # Corresponds to the JSON property `nullValue`
1131
- # @return [String]
1132
- attr_accessor :null_value
1133
-
1134
- # Represents a double value.
1135
- # Corresponds to the JSON property `numberValue`
1136
- # @return [Float]
1137
- attr_accessor :number_value
1138
-
1139
- # Represents a structured proto value.
1140
- # Corresponds to the JSON property `protoValue`
1141
- # @return [Hash<String,Object>]
1142
- attr_accessor :proto_value
1143
-
1144
- # Represents a string value.
1145
- # Corresponds to the JSON property `stringValue`
1146
- # @return [String]
1147
- attr_accessor :string_value
1148
-
1149
- # `Struct` represents a structured data value, consisting of fields which map to
1150
- # dynamically typed values.
1151
- # Corresponds to the JSON property `structValue`
1152
- # @return [Google::Apis::ScriptV1::Struct]
1153
- attr_accessor :struct_value
1154
-
1155
- def initialize(**args)
1156
- update!(**args)
1157
- end
1158
-
1159
- # Update properties of this object
1160
- def update!(**args)
1161
- @bool_value = args[:bool_value] if args.key?(:bool_value)
1162
- @bytes_value = args[:bytes_value] if args.key?(:bytes_value)
1163
- @date_value = args[:date_value] if args.key?(:date_value)
1164
- @list_value = args[:list_value] if args.key?(:list_value)
1165
- @null_value = args[:null_value] if args.key?(:null_value)
1166
- @number_value = args[:number_value] if args.key?(:number_value)
1167
- @proto_value = args[:proto_value] if args.key?(:proto_value)
1168
- @string_value = args[:string_value] if args.key?(:string_value)
1169
- @struct_value = args[:struct_value] if args.key?(:struct_value)
1170
- end
1171
- end
1172
-
1173
1024
  # A resource representing a script project version. A version is a "snapshot" of
1174
1025
  # a script project and is similar to a read-only branched release. When creating
1175
1026
  # deployments, the version to use must be specified.
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ScriptV1
18
18
  # Version of the google-apis-script_v1 gem
19
- GEM_VERSION = "0.28.0"
19
+ GEM_VERSION = "0.29.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250406"
25
+ REVISION = "20250526"
26
26
  end
27
27
  end
28
28
  end
@@ -58,12 +58,6 @@ module Google
58
58
  include Google::Apis::Core::JsonObjectSupport
59
59
  end
60
60
 
61
- class ExecuteStreamResponse
62
- class Representation < Google::Apis::Core::JsonRepresentation; end
63
-
64
- include Google::Apis::Core::JsonObjectSupport
65
- end
66
-
67
61
  class ExecutionError
68
62
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
63
 
@@ -160,12 +154,6 @@ module Google
160
154
  include Google::Apis::Core::JsonObjectSupport
161
155
  end
162
156
 
163
- class ListValue
164
- class Representation < Google::Apis::Core::JsonRepresentation; end
165
-
166
- include Google::Apis::Core::JsonObjectSupport
167
- end
168
-
169
157
  class ListVersionsResponse
170
158
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
159
 
@@ -196,12 +184,6 @@ module Google
196
184
  include Google::Apis::Core::JsonObjectSupport
197
185
  end
198
186
 
199
- class ScriptExecutionResult
200
- class Representation < Google::Apis::Core::JsonRepresentation; end
201
-
202
- include Google::Apis::Core::JsonObjectSupport
203
- end
204
-
205
187
  class ScriptStackTraceElement
206
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
207
189
 
@@ -214,24 +196,12 @@ module Google
214
196
  include Google::Apis::Core::JsonObjectSupport
215
197
  end
216
198
 
217
- class Struct
218
- class Representation < Google::Apis::Core::JsonRepresentation; end
219
-
220
- include Google::Apis::Core::JsonObjectSupport
221
- end
222
-
223
199
  class UpdateDeploymentRequest
224
200
  class Representation < Google::Apis::Core::JsonRepresentation; end
225
201
 
226
202
  include Google::Apis::Core::JsonObjectSupport
227
203
  end
228
204
 
229
- class Value
230
- class Representation < Google::Apis::Core::JsonRepresentation; end
231
-
232
- include Google::Apis::Core::JsonObjectSupport
233
- end
234
-
235
205
  class Version
236
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
207
 
@@ -296,14 +266,6 @@ module Google
296
266
  end
297
267
  end
298
268
 
299
- class ExecuteStreamResponse
300
- # @private
301
- class Representation < Google::Apis::Core::JsonRepresentation
302
- property :result, as: 'result', class: Google::Apis::ScriptV1::ScriptExecutionResult, decorator: Google::Apis::ScriptV1::ScriptExecutionResult::Representation
303
-
304
- end
305
- end
306
-
307
269
  class ExecutionError
308
270
  # @private
309
271
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -457,14 +419,6 @@ module Google
457
419
  end
458
420
  end
459
421
 
460
- class ListValue
461
- # @private
462
- class Representation < Google::Apis::Core::JsonRepresentation
463
- collection :values, as: 'values', class: Google::Apis::ScriptV1::Value, decorator: Google::Apis::ScriptV1::Value::Representation
464
-
465
- end
466
- end
467
-
468
422
  class ListVersionsResponse
469
423
  # @private
470
424
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -520,14 +474,6 @@ module Google
520
474
  end
521
475
  end
522
476
 
523
- class ScriptExecutionResult
524
- # @private
525
- class Representation < Google::Apis::Core::JsonRepresentation
526
- property :return_value, as: 'returnValue', class: Google::Apis::ScriptV1::Value, decorator: Google::Apis::ScriptV1::Value::Representation
527
-
528
- end
529
- end
530
-
531
477
  class ScriptStackTraceElement
532
478
  # @private
533
479
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -545,14 +491,6 @@ module Google
545
491
  end
546
492
  end
547
493
 
548
- class Struct
549
- # @private
550
- class Representation < Google::Apis::Core::JsonRepresentation
551
- hash :fields, as: 'fields', class: Google::Apis::ScriptV1::Value, decorator: Google::Apis::ScriptV1::Value::Representation
552
-
553
- end
554
- end
555
-
556
494
  class UpdateDeploymentRequest
557
495
  # @private
558
496
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -561,23 +499,6 @@ module Google
561
499
  end
562
500
  end
563
501
 
564
- class Value
565
- # @private
566
- class Representation < Google::Apis::Core::JsonRepresentation
567
- property :bool_value, as: 'boolValue'
568
- property :bytes_value, :base64 => true, as: 'bytesValue'
569
- property :date_value, :numeric_string => true, as: 'dateValue'
570
- property :list_value, as: 'listValue', class: Google::Apis::ScriptV1::ListValue, decorator: Google::Apis::ScriptV1::ListValue::Representation
571
-
572
- property :null_value, as: 'nullValue'
573
- property :number_value, as: 'numberValue'
574
- hash :proto_value, as: 'protoValue'
575
- property :string_value, as: 'stringValue'
576
- property :struct_value, as: 'structValue', class: Google::Apis::ScriptV1::Struct, decorator: Google::Apis::ScriptV1::Struct::Representation
577
-
578
- end
579
- end
580
-
581
502
  class Version
582
503
  # @private
583
504
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-script_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.28.0
4
+ version: 0.29.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-script_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-script_v1/v0.28.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-script_v1/v0.29.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-script_v1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Apps Script API V1
79
79
  test_files: []