google-apis-pagespeedonline_v5 0.1.0 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f694bb650edf0fa0dc1a11946efa5c271d156bd3144ef3296e0772965cfd24e0
4
- data.tar.gz: b72c47a1dad00de8f1e978165ad7d07dd15270f0aa2e5162d66291f4649d988e
3
+ metadata.gz: 29b33f6c02bf382cbaebe4acda594bf1ccd3975cfb38c7061935329c37cfd66d
4
+ data.tar.gz: ff8fb742392288bf5029ff72774af25b7240af29205bcc725bf9d87a770b7e2c
5
5
  SHA512:
6
- metadata.gz: 1af0d9ea0eff94491b989a0a5c71adc9e2404749c4f3fa9cb08861c48791599fff54c0c5626b9f156bd7b25b6a58c55f92dc9e3494dc514ef9c08b7940aec67f
7
- data.tar.gz: 56c8a2d150aa922823a05d79316a135cce12578333b5f33d9db81bc3fd4fd4211953c9f63ab73798171736b0895b4178ca01a3bce5e77813205458ed38f2e1ab
6
+ metadata.gz: '017868ff3323286946d67633fe70e436c3e981a26dcc01077f4d96180bd9a5c843eda3783746f1260b87792ae1d931c892326bf1324f56ba1d0d4194391a0cbf'
7
+ data.tar.gz: 1dbfb1f2401cc73a19d29c42726c1dfb13f8cf3ba1079b68c44d6b200bc88e1001bebea08456d80d52ecbf36fd7cd98028330339a625d63fe8eada692d3993f6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Release history for google-apis-pagespeedonline_v5
2
2
 
3
+ ### v0.6.0 (2021-06-24)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.5.0 (2021-06-05)
8
+
9
+ * Regenerated from discovery document revision 20210603
10
+ * Regenerated using generator version 0.3.0
11
+
12
+ ### v0.4.0 (2021-05-19)
13
+
14
+ * Regenerated using generator version 0.2.0
15
+
16
+ ### v0.3.0 (2021-03-04)
17
+
18
+ * Unspecified changes
19
+
20
+ ### v0.2.0 (2021-01-20)
21
+
22
+ * Regenerated from discovery document revision 20210119
23
+ * Regenerated using generator version 0.1.2
24
+
3
25
  ### v0.1.0 (2021-01-07)
4
26
 
5
27
  * Regenerated using generator version 0.1.1
@@ -27,6 +27,11 @@ module Google
27
27
  class AuditRefs
28
28
  include Google::Apis::Core::Hashable
29
29
 
30
+ # The conventional acronym for the audit/metric.
31
+ # Corresponds to the JSON property `acronym`
32
+ # @return [String]
33
+ attr_accessor :acronym
34
+
30
35
  # The category group that the audit belongs to (optional).
31
36
  # Corresponds to the JSON property `group`
32
37
  # @return [String]
@@ -37,6 +42,11 @@ module Google
37
42
  # @return [String]
38
43
  attr_accessor :id
39
44
 
45
+ # Any audit IDs closely relevant to this one.
46
+ # Corresponds to the JSON property `relevantAudits`
47
+ # @return [Array<String>]
48
+ attr_accessor :relevant_audits
49
+
40
50
  # The weight this audit's score has on the overall category score.
41
51
  # Corresponds to the JSON property `weight`
42
52
  # @return [Float]
@@ -48,8 +58,10 @@ module Google
48
58
 
49
59
  # Update properties of this object
50
60
  def update!(**args)
61
+ @acronym = args[:acronym] if args.key?(:acronym)
51
62
  @group = args[:group] if args.key?(:group)
52
63
  @id = args[:id] if args.key?(:id)
64
+ @relevant_audits = args[:relevant_audits] if args.key?(:relevant_audits)
53
65
  @weight = args[:weight] if args.key?(:weight)
54
66
  end
55
67
  end
@@ -163,11 +175,18 @@ module Google
163
175
  # @return [String]
164
176
  attr_accessor :channel
165
177
 
166
- # The form factor the emulation should use.
178
+ # The form factor the emulation should use. This field is deprecated,
179
+ # form_factor should be used instead.
167
180
  # Corresponds to the JSON property `emulatedFormFactor`
168
181
  # @return [String]
169
182
  attr_accessor :emulated_form_factor
170
183
 
184
+ # How Lighthouse should interpret this run in regards to scoring performance
185
+ # metrics and skipping mobile-only tests in desktop.
186
+ # Corresponds to the JSON property `formFactor`
187
+ # @return [String]
188
+ attr_accessor :form_factor
189
+
171
190
  # The locale setting.
172
191
  # Corresponds to the JSON property `locale`
173
192
  # @return [String]
@@ -186,6 +205,7 @@ module Google
186
205
  def update!(**args)
187
206
  @channel = args[:channel] if args.key?(:channel)
188
207
  @emulated_form_factor = args[:emulated_form_factor] if args.key?(:emulated_form_factor)
208
+ @form_factor = args[:form_factor] if args.key?(:form_factor)
189
209
  @locale = args[:locale] if args.key?(:locale)
190
210
  @only_categories = args[:only_categories] if args.key?(:only_categories)
191
211
  end
@@ -275,6 +295,12 @@ module Google
275
295
  # @return [String]
276
296
  attr_accessor :id
277
297
 
298
+ # The unit of the numeric_value field. Used to format the numeric value for
299
+ # display.
300
+ # Corresponds to the JSON property `numericUnit`
301
+ # @return [String]
302
+ attr_accessor :numeric_unit
303
+
278
304
  # A numeric value that has a meaning specific to the audit, e.g. the number of
279
305
  # nodes in the DOM or the timestamp of a specific load event. More information
280
306
  # can be found in the audit details, if present.
@@ -314,6 +340,7 @@ module Google
314
340
  @error_message = args[:error_message] if args.key?(:error_message)
315
341
  @explanation = args[:explanation] if args.key?(:explanation)
316
342
  @id = args[:id] if args.key?(:id)
343
+ @numeric_unit = args[:numeric_unit] if args.key?(:numeric_unit)
317
344
  @numeric_value = args[:numeric_value] if args.key?(:numeric_value)
318
345
  @score = args[:score] if args.key?(:score)
319
346
  @score_display_mode = args[:score_display_mode] if args.key?(:score_display_mode)
@@ -615,6 +642,13 @@ module Google
615
642
  # @return [String]
616
643
  attr_accessor :audit_group_expand_tooltip
617
644
 
645
+ # Text link pointing to the Lighthouse scoring calculator. This link immediately
646
+ # follows a sentence stating the performance score is calculated from the perf
647
+ # metrics.
648
+ # Corresponds to the JSON property `calculatorLink`
649
+ # @return [String]
650
+ attr_accessor :calculator_link
651
+
618
652
  # The label for the initial request in a critical request chain.
619
653
  # Corresponds to the JSON property `crcInitialNavigation`
620
654
  # @return [String]
@@ -625,6 +659,52 @@ module Google
625
659
  # @return [String]
626
660
  attr_accessor :crc_longest_duration_label
627
661
 
662
+ # Option in a dropdown menu that copies the Lighthouse JSON object to the system
663
+ # clipboard.
664
+ # Corresponds to the JSON property `dropdownCopyJSON`
665
+ # @return [String]
666
+ attr_accessor :dropdown_copy_json
667
+
668
+ # Option in a dropdown menu that toggles the themeing of the report between
669
+ # Light(default) and Dark themes.
670
+ # Corresponds to the JSON property `dropdownDarkTheme`
671
+ # @return [String]
672
+ attr_accessor :dropdown_dark_theme
673
+
674
+ # Option in a dropdown menu that opens a full Lighthouse report in a print
675
+ # dialog.
676
+ # Corresponds to the JSON property `dropdownPrintExpanded`
677
+ # @return [String]
678
+ attr_accessor :dropdown_print_expanded
679
+
680
+ # Option in a dropdown menu that opens a small, summary report in a print dialog.
681
+ # Corresponds to the JSON property `dropdownPrintSummary`
682
+ # @return [String]
683
+ attr_accessor :dropdown_print_summary
684
+
685
+ # Option in a dropdown menu that saves the current report as a new GitHub Gist.
686
+ # Corresponds to the JSON property `dropdownSaveGist`
687
+ # @return [String]
688
+ attr_accessor :dropdown_save_gist
689
+
690
+ # Option in a dropdown menu that saves the Lighthouse report HTML locally to the
691
+ # system as a '.html' file.
692
+ # Corresponds to the JSON property `dropdownSaveHTML`
693
+ # @return [String]
694
+ attr_accessor :dropdown_save_html
695
+
696
+ # Option in a dropdown menu that saves the Lighthouse JSON object to the local
697
+ # system as a '.json' file.
698
+ # Corresponds to the JSON property `dropdownSaveJSON`
699
+ # @return [String]
700
+ attr_accessor :dropdown_save_json
701
+
702
+ # Option in a dropdown menu that opens the current report in the Lighthouse
703
+ # Viewer Application.
704
+ # Corresponds to the JSON property `dropdownViewer`
705
+ # @return [String]
706
+ attr_accessor :dropdown_viewer
707
+
628
708
  # The label shown next to an audit or metric that has had an error.
629
709
  # Corresponds to the JSON property `errorLabel`
630
710
  # @return [String]
@@ -635,12 +715,17 @@ module Google
635
715
  # @return [String]
636
716
  attr_accessor :error_missing_audit_info
637
717
 
718
+ # Label for button to create an issue against the Lighthouse GitHub project.
719
+ # Corresponds to the JSON property `footerIssue`
720
+ # @return [String]
721
+ attr_accessor :footer_issue
722
+
638
723
  # The title of the lab data performance category.
639
724
  # Corresponds to the JSON property `labDataTitle`
640
725
  # @return [String]
641
726
  attr_accessor :lab_data_title
642
727
 
643
- # The disclaimer shown under performance explaning that the network can vary.
728
+ # The disclaimer shown under performance explaining that the network can vary.
644
729
  # Corresponds to the JSON property `lsPerformanceCategoryDescription`
645
730
  # @return [String]
646
731
  attr_accessor :ls_performance_category_description
@@ -670,11 +755,129 @@ module Google
670
755
  # @return [String]
671
756
  attr_accessor :passed_audits_group_title
672
757
 
758
+ # Descriptive explanation for emulation setting when emulating a generic desktop
759
+ # form factor, as opposed to a mobile-device like form factor.
760
+ # Corresponds to the JSON property `runtimeDesktopEmulation`
761
+ # @return [String]
762
+ attr_accessor :runtime_desktop_emulation
763
+
764
+ # Descriptive explanation for emulation setting when emulating a Nexus 5X mobile
765
+ # device.
766
+ # Corresponds to the JSON property `runtimeMobileEmulation`
767
+ # @return [String]
768
+ attr_accessor :runtime_mobile_emulation
769
+
770
+ # Descriptive explanation for emulation setting when no device emulation is set.
771
+ # Corresponds to the JSON property `runtimeNoEmulation`
772
+ # @return [String]
773
+ attr_accessor :runtime_no_emulation
774
+
775
+ # Label for a row in a table that shows the version of the Axe library used
776
+ # Corresponds to the JSON property `runtimeSettingsAxeVersion`
777
+ # @return [String]
778
+ attr_accessor :runtime_settings_axe_version
779
+
780
+ # Label for a row in a table that shows the estimated CPU power of the machine
781
+ # running Lighthouse. Example row values: 532, 1492, 783.
782
+ # Corresponds to the JSON property `runtimeSettingsBenchmark`
783
+ # @return [String]
784
+ attr_accessor :runtime_settings_benchmark
785
+
786
+ # Label for a row in a table that describes the CPU throttling conditions that
787
+ # were used during a Lighthouse run, if any.
788
+ # Corresponds to the JSON property `runtimeSettingsCPUThrottling`
789
+ # @return [String]
790
+ attr_accessor :runtime_settings_cpu_throttling
791
+
792
+ # Label for a row in a table that shows in what tool Lighthouse is being run (e.
793
+ # g. The lighthouse CLI, Chrome DevTools, Lightrider, WebPageTest, etc).
794
+ # Corresponds to the JSON property `runtimeSettingsChannel`
795
+ # @return [String]
796
+ attr_accessor :runtime_settings_channel
797
+
798
+ # Label for a row in a table that describes the kind of device that was emulated
799
+ # for the Lighthouse run. Example values for row elements: 'No Emulation', '
800
+ # Emulated Desktop', etc.
801
+ # Corresponds to the JSON property `runtimeSettingsDevice`
802
+ # @return [String]
803
+ attr_accessor :runtime_settings_device
804
+
805
+ # Label for a row in a table that shows the time at which a Lighthouse run was
806
+ # conducted; formatted as a timestamp, e.g. Jan 1, 1970 12:00 AM UTC.
807
+ # Corresponds to the JSON property `runtimeSettingsFetchTime`
808
+ # @return [String]
809
+ attr_accessor :runtime_settings_fetch_time
810
+
811
+ # Label for a row in a table that describes the network throttling conditions
812
+ # that were used during a Lighthouse run, if any.
813
+ # Corresponds to the JSON property `runtimeSettingsNetworkThrottling`
814
+ # @return [String]
815
+ attr_accessor :runtime_settings_network_throttling
816
+
817
+ # Title of the Runtime settings table in a Lighthouse report. Runtime settings
818
+ # are the environment configurations that a specific report used at auditing
819
+ # time.
820
+ # Corresponds to the JSON property `runtimeSettingsTitle`
821
+ # @return [String]
822
+ attr_accessor :runtime_settings_title
823
+
824
+ # Label for a row in a table that shows the User Agent that was detected on the
825
+ # Host machine that ran Lighthouse.
826
+ # Corresponds to the JSON property `runtimeSettingsUA`
827
+ # @return [String]
828
+ attr_accessor :runtime_settings_ua
829
+
830
+ # Label for a row in a table that shows the User Agent that was used to send out
831
+ # all network requests during the Lighthouse run.
832
+ # Corresponds to the JSON property `runtimeSettingsUANetwork`
833
+ # @return [String]
834
+ attr_accessor :runtime_settings_ua_network
835
+
836
+ # Label for a row in a table that shows the URL that was audited during a
837
+ # Lighthouse run.
838
+ # Corresponds to the JSON property `runtimeSettingsUrl`
839
+ # @return [String]
840
+ attr_accessor :runtime_settings_url
841
+
842
+ # Descriptive explanation for a runtime setting that is set to an unknown value.
843
+ # Corresponds to the JSON property `runtimeUnknown`
844
+ # @return [String]
845
+ attr_accessor :runtime_unknown
846
+
673
847
  # The label that explains the score gauges scale (0-49, 50-89, 90-100).
674
848
  # Corresponds to the JSON property `scorescaleLabel`
675
849
  # @return [String]
676
850
  attr_accessor :scorescale_label
677
851
 
852
+ # Label preceding a radio control for filtering the list of audits. The radio
853
+ # choices are various performance metrics (FCP, LCP, TBT), and if chosen, the
854
+ # audits in the report are hidden if they are not relevant to the selected
855
+ # metric.
856
+ # Corresponds to the JSON property `showRelevantAudits`
857
+ # @return [String]
858
+ attr_accessor :show_relevant_audits
859
+
860
+ # The label for the button to show only a few lines of a snippet
861
+ # Corresponds to the JSON property `snippetCollapseButtonLabel`
862
+ # @return [String]
863
+ attr_accessor :snippet_collapse_button_label
864
+
865
+ # The label for the button to show all lines of a snippet
866
+ # Corresponds to the JSON property `snippetExpandButtonLabel`
867
+ # @return [String]
868
+ attr_accessor :snippet_expand_button_label
869
+
870
+ # This label is for a filter checkbox above a table of items
871
+ # Corresponds to the JSON property `thirdPartyResourcesLabel`
872
+ # @return [String]
873
+ attr_accessor :third_party_resources_label
874
+
875
+ # Descriptive explanation for environment throttling that was provided by the
876
+ # runtime environment instead of provided by Lighthouse throttling.
877
+ # Corresponds to the JSON property `throttlingProvided`
878
+ # @return [String]
879
+ attr_accessor :throttling_provided
880
+
678
881
  # The label shown preceding important warnings that may have invalidated an
679
882
  # entire report.
680
883
  # Corresponds to the JSON property `toplevelWarningsMessage`
@@ -686,6 +889,16 @@ module Google
686
889
  # @return [String]
687
890
  attr_accessor :variance_disclaimer
688
891
 
892
+ # Label for a button that opens the Treemap App
893
+ # Corresponds to the JSON property `viewTreemapLabel`
894
+ # @return [String]
895
+ attr_accessor :view_treemap_label
896
+
897
+ # The heading that is shown above a list of audits that have warnings
898
+ # Corresponds to the JSON property `warningAuditsGroupTitle`
899
+ # @return [String]
900
+ attr_accessor :warning_audits_group_title
901
+
689
902
  # The label shown above a bulleted list of warnings.
690
903
  # Corresponds to the JSON property `warningHeader`
691
904
  # @return [String]
@@ -698,10 +911,20 @@ module Google
698
911
  # Update properties of this object
699
912
  def update!(**args)
700
913
  @audit_group_expand_tooltip = args[:audit_group_expand_tooltip] if args.key?(:audit_group_expand_tooltip)
914
+ @calculator_link = args[:calculator_link] if args.key?(:calculator_link)
701
915
  @crc_initial_navigation = args[:crc_initial_navigation] if args.key?(:crc_initial_navigation)
702
916
  @crc_longest_duration_label = args[:crc_longest_duration_label] if args.key?(:crc_longest_duration_label)
917
+ @dropdown_copy_json = args[:dropdown_copy_json] if args.key?(:dropdown_copy_json)
918
+ @dropdown_dark_theme = args[:dropdown_dark_theme] if args.key?(:dropdown_dark_theme)
919
+ @dropdown_print_expanded = args[:dropdown_print_expanded] if args.key?(:dropdown_print_expanded)
920
+ @dropdown_print_summary = args[:dropdown_print_summary] if args.key?(:dropdown_print_summary)
921
+ @dropdown_save_gist = args[:dropdown_save_gist] if args.key?(:dropdown_save_gist)
922
+ @dropdown_save_html = args[:dropdown_save_html] if args.key?(:dropdown_save_html)
923
+ @dropdown_save_json = args[:dropdown_save_json] if args.key?(:dropdown_save_json)
924
+ @dropdown_viewer = args[:dropdown_viewer] if args.key?(:dropdown_viewer)
703
925
  @error_label = args[:error_label] if args.key?(:error_label)
704
926
  @error_missing_audit_info = args[:error_missing_audit_info] if args.key?(:error_missing_audit_info)
927
+ @footer_issue = args[:footer_issue] if args.key?(:footer_issue)
705
928
  @lab_data_title = args[:lab_data_title] if args.key?(:lab_data_title)
706
929
  @ls_performance_category_description = args[:ls_performance_category_description] if args.key?(:ls_performance_category_description)
707
930
  @manual_audits_group_title = args[:manual_audits_group_title] if args.key?(:manual_audits_group_title)
@@ -709,9 +932,31 @@ module Google
709
932
  @opportunity_resource_column_label = args[:opportunity_resource_column_label] if args.key?(:opportunity_resource_column_label)
710
933
  @opportunity_savings_column_label = args[:opportunity_savings_column_label] if args.key?(:opportunity_savings_column_label)
711
934
  @passed_audits_group_title = args[:passed_audits_group_title] if args.key?(:passed_audits_group_title)
935
+ @runtime_desktop_emulation = args[:runtime_desktop_emulation] if args.key?(:runtime_desktop_emulation)
936
+ @runtime_mobile_emulation = args[:runtime_mobile_emulation] if args.key?(:runtime_mobile_emulation)
937
+ @runtime_no_emulation = args[:runtime_no_emulation] if args.key?(:runtime_no_emulation)
938
+ @runtime_settings_axe_version = args[:runtime_settings_axe_version] if args.key?(:runtime_settings_axe_version)
939
+ @runtime_settings_benchmark = args[:runtime_settings_benchmark] if args.key?(:runtime_settings_benchmark)
940
+ @runtime_settings_cpu_throttling = args[:runtime_settings_cpu_throttling] if args.key?(:runtime_settings_cpu_throttling)
941
+ @runtime_settings_channel = args[:runtime_settings_channel] if args.key?(:runtime_settings_channel)
942
+ @runtime_settings_device = args[:runtime_settings_device] if args.key?(:runtime_settings_device)
943
+ @runtime_settings_fetch_time = args[:runtime_settings_fetch_time] if args.key?(:runtime_settings_fetch_time)
944
+ @runtime_settings_network_throttling = args[:runtime_settings_network_throttling] if args.key?(:runtime_settings_network_throttling)
945
+ @runtime_settings_title = args[:runtime_settings_title] if args.key?(:runtime_settings_title)
946
+ @runtime_settings_ua = args[:runtime_settings_ua] if args.key?(:runtime_settings_ua)
947
+ @runtime_settings_ua_network = args[:runtime_settings_ua_network] if args.key?(:runtime_settings_ua_network)
948
+ @runtime_settings_url = args[:runtime_settings_url] if args.key?(:runtime_settings_url)
949
+ @runtime_unknown = args[:runtime_unknown] if args.key?(:runtime_unknown)
712
950
  @scorescale_label = args[:scorescale_label] if args.key?(:scorescale_label)
951
+ @show_relevant_audits = args[:show_relevant_audits] if args.key?(:show_relevant_audits)
952
+ @snippet_collapse_button_label = args[:snippet_collapse_button_label] if args.key?(:snippet_collapse_button_label)
953
+ @snippet_expand_button_label = args[:snippet_expand_button_label] if args.key?(:snippet_expand_button_label)
954
+ @third_party_resources_label = args[:third_party_resources_label] if args.key?(:third_party_resources_label)
955
+ @throttling_provided = args[:throttling_provided] if args.key?(:throttling_provided)
713
956
  @toplevel_warnings_message = args[:toplevel_warnings_message] if args.key?(:toplevel_warnings_message)
714
957
  @variance_disclaimer = args[:variance_disclaimer] if args.key?(:variance_disclaimer)
958
+ @view_treemap_label = args[:view_treemap_label] if args.key?(:view_treemap_label)
959
+ @warning_audits_group_title = args[:warning_audits_group_title] if args.key?(:warning_audits_group_title)
715
960
  @warning_header = args[:warning_header] if args.key?(:warning_header)
716
961
  end
717
962
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module PagespeedonlineV5
18
18
  # Version of the google-apis-pagespeedonline_v5 gem
19
- GEM_VERSION = "0.1.0"
19
+ GEM_VERSION = "0.6.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.1"
22
+ GENERATOR_VERSION = "0.3.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20201130"
25
+ REVISION = "20210603"
26
26
  end
27
27
  end
28
28
  end
@@ -133,8 +133,10 @@ module Google
133
133
  class AuditRefs
134
134
  # @private
135
135
  class Representation < Google::Apis::Core::JsonRepresentation
136
+ property :acronym, as: 'acronym'
136
137
  property :group, as: 'group'
137
138
  property :id, as: 'id'
139
+ collection :relevant_audits, as: 'relevantAudits'
138
140
  property :weight, as: 'weight'
139
141
  end
140
142
  end
@@ -177,6 +179,7 @@ module Google
177
179
  class Representation < Google::Apis::Core::JsonRepresentation
178
180
  property :channel, as: 'channel'
179
181
  property :emulated_form_factor, as: 'emulatedFormFactor'
182
+ property :form_factor, as: 'formFactor'
180
183
  property :locale, as: 'locale'
181
184
  property :only_categories, as: 'onlyCategories'
182
185
  end
@@ -208,6 +211,7 @@ module Google
208
211
  property :error_message, as: 'errorMessage'
209
212
  property :explanation, as: 'explanation'
210
213
  property :id, as: 'id'
214
+ property :numeric_unit, as: 'numericUnit'
211
215
  property :numeric_value, as: 'numericValue'
212
216
  property :score, as: 'score'
213
217
  property :score_display_mode, as: 'scoreDisplayMode'
@@ -301,10 +305,20 @@ module Google
301
305
  # @private
302
306
  class Representation < Google::Apis::Core::JsonRepresentation
303
307
  property :audit_group_expand_tooltip, as: 'auditGroupExpandTooltip'
308
+ property :calculator_link, as: 'calculatorLink'
304
309
  property :crc_initial_navigation, as: 'crcInitialNavigation'
305
310
  property :crc_longest_duration_label, as: 'crcLongestDurationLabel'
311
+ property :dropdown_copy_json, as: 'dropdownCopyJSON'
312
+ property :dropdown_dark_theme, as: 'dropdownDarkTheme'
313
+ property :dropdown_print_expanded, as: 'dropdownPrintExpanded'
314
+ property :dropdown_print_summary, as: 'dropdownPrintSummary'
315
+ property :dropdown_save_gist, as: 'dropdownSaveGist'
316
+ property :dropdown_save_html, as: 'dropdownSaveHTML'
317
+ property :dropdown_save_json, as: 'dropdownSaveJSON'
318
+ property :dropdown_viewer, as: 'dropdownViewer'
306
319
  property :error_label, as: 'errorLabel'
307
320
  property :error_missing_audit_info, as: 'errorMissingAuditInfo'
321
+ property :footer_issue, as: 'footerIssue'
308
322
  property :lab_data_title, as: 'labDataTitle'
309
323
  property :ls_performance_category_description, as: 'lsPerformanceCategoryDescription'
310
324
  property :manual_audits_group_title, as: 'manualAuditsGroupTitle'
@@ -312,9 +326,31 @@ module Google
312
326
  property :opportunity_resource_column_label, as: 'opportunityResourceColumnLabel'
313
327
  property :opportunity_savings_column_label, as: 'opportunitySavingsColumnLabel'
314
328
  property :passed_audits_group_title, as: 'passedAuditsGroupTitle'
329
+ property :runtime_desktop_emulation, as: 'runtimeDesktopEmulation'
330
+ property :runtime_mobile_emulation, as: 'runtimeMobileEmulation'
331
+ property :runtime_no_emulation, as: 'runtimeNoEmulation'
332
+ property :runtime_settings_axe_version, as: 'runtimeSettingsAxeVersion'
333
+ property :runtime_settings_benchmark, as: 'runtimeSettingsBenchmark'
334
+ property :runtime_settings_cpu_throttling, as: 'runtimeSettingsCPUThrottling'
335
+ property :runtime_settings_channel, as: 'runtimeSettingsChannel'
336
+ property :runtime_settings_device, as: 'runtimeSettingsDevice'
337
+ property :runtime_settings_fetch_time, as: 'runtimeSettingsFetchTime'
338
+ property :runtime_settings_network_throttling, as: 'runtimeSettingsNetworkThrottling'
339
+ property :runtime_settings_title, as: 'runtimeSettingsTitle'
340
+ property :runtime_settings_ua, as: 'runtimeSettingsUA'
341
+ property :runtime_settings_ua_network, as: 'runtimeSettingsUANetwork'
342
+ property :runtime_settings_url, as: 'runtimeSettingsUrl'
343
+ property :runtime_unknown, as: 'runtimeUnknown'
315
344
  property :scorescale_label, as: 'scorescaleLabel'
345
+ property :show_relevant_audits, as: 'showRelevantAudits'
346
+ property :snippet_collapse_button_label, as: 'snippetCollapseButtonLabel'
347
+ property :snippet_expand_button_label, as: 'snippetExpandButtonLabel'
348
+ property :third_party_resources_label, as: 'thirdPartyResourcesLabel'
349
+ property :throttling_provided, as: 'throttlingProvided'
316
350
  property :toplevel_warnings_message, as: 'toplevelWarningsMessage'
317
351
  property :variance_disclaimer, as: 'varianceDisclaimer'
352
+ property :view_treemap_label, as: 'viewTreemapLabel'
353
+ property :warning_audits_group_title, as: 'warningAuditsGroupTitle'
318
354
  property :warning_header, as: 'warningHeader'
319
355
  end
320
356
  end
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-pagespeedonline_v5
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-08 00:00:00.000000000 Z
11
+ date: 2021-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.1'
19
+ version: '0.3'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 2.a
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '0.3'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '0.1'
32
+ version: 2.a
27
33
  description: This is the simple REST client for PageSpeed Insights API V5. Simple
28
34
  REST clients are Ruby client libraries that provide access to Google services via
29
35
  their HTTP REST API endpoints. These libraries are generated and updated automatically
@@ -52,7 +58,7 @@ licenses:
52
58
  metadata:
53
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-pagespeedonline_v5/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-pagespeedonline_v5/v0.1.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-pagespeedonline_v5/v0.6.0
56
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-pagespeedonline_v5
57
63
  post_install_message:
58
64
  rdoc_options: []
@@ -62,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
62
68
  requirements:
63
69
  - - ">="
64
70
  - !ruby/object:Gem::Version
65
- version: '2.4'
71
+ version: '2.5'
66
72
  required_rubygems_version: !ruby/object:Gem::Requirement
67
73
  requirements:
68
74
  - - ">="
69
75
  - !ruby/object:Gem::Version
70
76
  version: '0'
71
77
  requirements: []
72
- rubygems_version: 3.1.4
78
+ rubygems_version: 3.2.17
73
79
  signing_key:
74
80
  specification_version: 4
75
81
  summary: Simple REST client for PageSpeed Insights API V5