ccs-digitalmarketplace-frameworks 3.13.19 → 3.13.21
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.
- package/frameworks/digital-outcomes-and-specialists-7/questions/declaration/subcontractorPostalAddressTownandCity.yml +3 -3
- package/frameworks/digital-outcomes-and-specialists-7/questions/services/insuranceRequirementDCDPInsurances.yml +1 -1
- package/package.json +1 -1
- package/requirements-dev.in +0 -1
- package/requirements-dev.txt +2 -4
- package/tests/test_clone_latest_framework.py +1 -1
- package/tests/test_content.py +1 -1
- package/tests/test_generate_validation_schema.py +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
name: Town
|
|
1
|
+
name: Town or city
|
|
2
2
|
question: |
|
|
3
3
|
<p class="govuk-label--m">
|
|
4
|
-
Town
|
|
4
|
+
Town or city
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
type: text
|
|
8
8
|
|
|
9
9
|
validations:
|
|
10
10
|
- name: answer_required
|
|
11
|
-
message: You must enter subcontractor town
|
|
11
|
+
message: You must enter subcontractor town or city
|
|
@@ -26,7 +26,7 @@ depends:
|
|
|
26
26
|
options:
|
|
27
27
|
- label: Yes, your organisation (and if applicable, your consortium members) has, or will have in place, public liability insurance and professional indemnity insurance of at least £5 million each, and you will provide evidence of the required levels of insurance cover before the framework is awarded
|
|
28
28
|
value: 'yes'
|
|
29
|
-
- label: No, your organisation (and if applicable, your consortium members) does not
|
|
29
|
+
- label: No, your organisation (and if applicable, your consortium members) does not have, and will not have in place, public liability insurance and professional indemnity insurance of at least £5 million each before the framework is awarded
|
|
30
30
|
value: 'no'
|
|
31
31
|
|
|
32
32
|
validations:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccs-digitalmarketplace-frameworks",
|
|
3
|
-
"version": "3.13.
|
|
3
|
+
"version": "3.13.21",
|
|
4
4
|
"description": "Data files for Digital Marketplace’s procurement frameworks",
|
|
5
5
|
"repository": "git@github.com:Crown-Commercial-Service/ccs-digitalmarketplace-frameworks",
|
|
6
6
|
"author": "enquiries@digitalmarketplace.service.gov.uk"
|
package/requirements-dev.in
CHANGED
package/requirements-dev.txt
CHANGED
|
@@ -64,8 +64,8 @@ cryptography==44.0.1
|
|
|
64
64
|
# ccs-digitalmarketplace-utils
|
|
65
65
|
deepmerge==2.0
|
|
66
66
|
# via
|
|
67
|
-
# -r requirements-dev.in
|
|
68
67
|
# -r requirements.txt
|
|
68
|
+
# -r requirements-dev.in
|
|
69
69
|
defusedxml==0.7.1
|
|
70
70
|
# via
|
|
71
71
|
# -r requirements.txt
|
|
@@ -162,8 +162,6 @@ markupsafe==2.1.5
|
|
|
162
162
|
# wtforms
|
|
163
163
|
mccabe==0.7.0
|
|
164
164
|
# via flake8
|
|
165
|
-
mock==5.2.0
|
|
166
|
-
# via -r requirements-dev.in
|
|
167
165
|
nodeenv==1.9.1
|
|
168
166
|
# via pre-commit
|
|
169
167
|
notifications-python-client==8.2.0
|
|
@@ -212,8 +210,8 @@ pytz==2024.1
|
|
|
212
210
|
# ccs-digitalmarketplace-utils
|
|
213
211
|
pyyaml==6.0.2
|
|
214
212
|
# via
|
|
215
|
-
# -r requirements-dev.in
|
|
216
213
|
# -r requirements.txt
|
|
214
|
+
# -r requirements-dev.in
|
|
217
215
|
# ccs-digitalmarketplace-content-loader
|
|
218
216
|
# pre-commit
|
|
219
217
|
redis==5.0.7
|
package/tests/test_content.py
CHANGED