epb_view_models 1.0.12 → 1.0.15

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. checksums.yaml +4 -4
  2. data/.ruby-version +1 -1
  3. data/Gemfile +10 -10
  4. data/Gemfile.lock +32 -39
  5. data/api/schemas/data/orchestrate.json +4 -0
  6. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/ExternalDefinitions.xml +1352 -0
  7. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/ExternalDefinitions.xsd +236 -0
  8. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/Templates/AssessorManagement.xsd +207 -0
  9. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/Templates/EPC-Certificate.xsd +476 -0
  10. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/Templates/ExceptionList.xsd +18 -0
  11. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/Templates/Property.xsd +71 -0
  12. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/Templates/ReportList.xsd +25 -0
  13. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/Templates/SAP-CollectedData.xsd +1793 -0
  14. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/Templates/SAP-Compliance-Report.xsd +36 -0
  15. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/Templates/SAP-Report.xsd +196 -0
  16. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/UDT/EPC-Domains.xsd +558 -0
  17. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/UDT/SAP-Domains.xsd +3127 -0
  18. data/lib/epb_view_models.rb +1 -1
  19. data/lib/presenter/ac_cert/export_configuration.rb +7 -0
  20. data/lib/presenter/ac_report/export_configuration.rb +7 -0
  21. data/lib/presenter/cepc/export_configuration.rb +7 -0
  22. data/lib/presenter/cepc_rr/export_configuration.rb +7 -0
  23. data/lib/presenter/dec/export_configuration.rb +7 -0
  24. data/lib/presenter/dec_rr/export_configuration.rb +7 -0
  25. data/lib/presenter/export/statistics.rb +18 -0
  26. data/lib/presenter/rd_sap/export_configuration.rb +57 -0
  27. data/lib/presenter/sap/export_configuration.rb +7 -0
  28. data/lib/presenter/to_warehouse/base_configuration.rb +23 -0
  29. data/lib/presenter/xml/parser.rb +226 -0
  30. data/lib/view_model/factory.rb +1 -0
  31. data/lib/view_model/sap_schema_1900/common_schema.rb +587 -0
  32. data/lib/view_model/sap_wrapper.rb +2 -0
  33. data/lib/view_model_gateway/xsd_files_gateway.rb +4 -3
  34. metadata +26 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1aa9014f126ebe6df35a45f9be7898fe71ebf4253739d537c62ab133f976480a
4
- data.tar.gz: 9de075f8be11ba4626d771128e75f72917edfb3797eeee2f4bac4c6252df32d7
3
+ metadata.gz: 44ac3c497106cfad05b3f659f0f67c680bec0d68bf129dba9ee85f4b84c92ea1
4
+ data.tar.gz: f4a5b74aa6b3fe31dd79d3b6b0e3895c33c6652faccfd59fe7ef580a077599a8
5
5
  SHA512:
6
- metadata.gz: 3ea8139966fc1c55555be100e3ecb63a19364eb6e027c631aa1865a753af2577abee1c00ab53edb78436754fdd89db0aa331a42518cdf1bea5b03b242be48023
7
- data.tar.gz: cefc2119116d4aab5c1299dd71f609df481e4ca2327a17a8bca256d83a92eeefed2e17127650e3d24d86fdd39445306d8456439947c55db20119168414ce50c7
6
+ metadata.gz: e991f69ff3f8990512da92df7aaeb1b2a2c0b0014e925d8da0ffbbc4560e09b39446e1731a76a8b0aa87dbdd48d101ae79dda7746cba426c53b9e8146d8c5a32
7
+ data.tar.gz: 36600d67398158417c478bb42366d7d7dea759ea75a746d5864ba4b1e24c7c55e3b4d164fdd949018e8b0c0954ddc73c606112e5d7ba70c5dca2bf33c2878648
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.7.3
1
+ 2.7.5
data/Gemfile CHANGED
@@ -2,14 +2,14 @@
2
2
 
3
3
  ruby "~> 2.7"
4
4
 
5
- source "https://rubygems.org" do
6
- group :test do
7
- gem "rake", "~> 13.0.6"
8
- gem "rspec", "~> 3.0"
9
- gem "rubocop-govuk", "~> 4.0.0", require: false
10
- end
11
-
12
- gem "nokogiri", "~> 1.11"
13
- gem "rexml", "~> 3.2", ">= 3.2.5"
14
- gem "zeitwerk", "~> 2.4.2"
5
+ source "https://rubygems.org"
6
+
7
+ group :test do
8
+ gem "rake", "~> 13.0.6"
9
+ gem "rspec", "~> 3.0"
10
+ gem "rubocop-govuk", "~> 4.0.0", require: false
15
11
  end
12
+
13
+ gem "nokogiri", "~> 1.11"
14
+ gem "rexml", "~> 3.2", ">= 3.2.5"
15
+ gem "zeitwerk", "~> 2.4.2"
data/Gemfile.lock CHANGED
@@ -1,49 +1,43 @@
1
- GEM
2
- specs:
3
-
4
1
  GEM
5
2
  remote: https://rubygems.org/
6
3
  specs:
7
- activesupport (6.1.4)
4
+ activesupport (7.0.2.3)
8
5
  concurrent-ruby (~> 1.0, >= 1.0.2)
9
6
  i18n (>= 1.6, < 2)
10
7
  minitest (>= 5.1)
11
8
  tzinfo (~> 2.0)
12
- zeitwerk (~> 2.3)
13
9
  ast (2.4.2)
14
10
  concurrent-ruby (1.1.9)
15
- diff-lcs (1.4.4)
16
- i18n (1.8.10)
11
+ diff-lcs (1.5.0)
12
+ i18n (1.10.0)
17
13
  concurrent-ruby (~> 1.0)
18
- mini_portile2 (2.5.3)
19
- minitest (5.14.4)
20
- nokogiri (1.11.7)
21
- mini_portile2 (~> 2.5.0)
22
- racc (~> 1.4)
23
- nokogiri (1.11.7-x86_64-darwin)
14
+ mini_portile2 (2.8.0)
15
+ minitest (5.15.0)
16
+ nokogiri (1.13.3)
17
+ mini_portile2 (~> 2.8.0)
24
18
  racc (~> 1.4)
25
- parallel (1.20.1)
26
- parser (3.0.2.0)
19
+ parallel (1.21.0)
20
+ parser (3.1.1.0)
27
21
  ast (~> 2.4.1)
28
- racc (1.5.2)
22
+ racc (1.6.0)
29
23
  rack (2.2.3)
30
- rainbow (3.0.0)
24
+ rainbow (3.1.1)
31
25
  rake (13.0.6)
32
- regexp_parser (2.1.1)
26
+ regexp_parser (2.2.1)
33
27
  rexml (3.2.5)
34
- rspec (3.10.0)
35
- rspec-core (~> 3.10.0)
36
- rspec-expectations (~> 3.10.0)
37
- rspec-mocks (~> 3.10.0)
38
- rspec-core (3.10.1)
39
- rspec-support (~> 3.10.0)
40
- rspec-expectations (3.10.1)
28
+ rspec (3.11.0)
29
+ rspec-core (~> 3.11.0)
30
+ rspec-expectations (~> 3.11.0)
31
+ rspec-mocks (~> 3.11.0)
32
+ rspec-core (3.11.0)
33
+ rspec-support (~> 3.11.0)
34
+ rspec-expectations (3.11.0)
41
35
  diff-lcs (>= 1.2.0, < 2.0)
42
- rspec-support (~> 3.10.0)
43
- rspec-mocks (3.10.2)
36
+ rspec-support (~> 3.11.0)
37
+ rspec-mocks (3.11.0)
44
38
  diff-lcs (>= 1.2.0, < 2.0)
45
- rspec-support (~> 3.10.0)
46
- rspec-support (3.10.2)
39
+ rspec-support (~> 3.11.0)
40
+ rspec-support (3.11.0)
47
41
  rubocop (1.15.0)
48
42
  parallel (~> 1.10)
49
43
  parser (>= 3.0.0.0)
@@ -73,23 +67,22 @@ GEM
73
67
  ruby-progressbar (1.11.0)
74
68
  tzinfo (2.0.4)
75
69
  concurrent-ruby (~> 1.0)
76
- unicode-display_width (2.0.0)
70
+ unicode-display_width (2.1.0)
77
71
  zeitwerk (2.4.2)
78
72
 
79
73
  PLATFORMS
80
74
  ruby
81
- x86_64-darwin-20
82
75
 
83
76
  DEPENDENCIES
84
- nokogiri (~> 1.11)!
85
- rake (~> 13.0.6)!
86
- rexml (~> 3.2, >= 3.2.5)!
87
- rspec (~> 3.0)!
88
- rubocop-govuk (~> 4.0.0)!
89
- zeitwerk (~> 2.4.2)!
77
+ nokogiri (~> 1.11)
78
+ rake (~> 13.0.6)
79
+ rexml (~> 3.2, >= 3.2.5)
80
+ rspec (~> 3.0)
81
+ rubocop-govuk (~> 4.0.0)
82
+ zeitwerk (~> 2.4.2)
90
83
 
91
84
  RUBY VERSION
92
- ruby 2.7.3p183
85
+ ruby 2.7.5p203
93
86
 
94
87
  BUNDLED WITH
95
- 2.2.21
88
+ 2.2.32
@@ -1,4 +1,8 @@
1
1
  {
2
+ "SAP-Schema-19.0.0": {
3
+ "schema_path":
4
+ "api/schemas/xml/SAP-Schema-19.0.0/SAP/Templates/SAP-Report.xsd"
5
+ },
2
6
  "SAP-Schema-17.1": {
3
7
  "schema_path":
4
8
  "api/schemas/xml/SAP-Schema-17.1/SAP/Templates/SAP-Report.xsd"