@wevion/cli 1.0.3545 → 1.0.3554
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/openapi.json +24 -0
- package/package.json +1 -1
package/openapi.json
CHANGED
|
@@ -165378,14 +165378,38 @@
|
|
|
165378
165378
|
"additionalProperties": false,
|
|
165379
165379
|
"type": "object",
|
|
165380
165380
|
"required": [
|
|
165381
|
+
"cap_minor",
|
|
165381
165382
|
"code",
|
|
165383
|
+
"discount_bp",
|
|
165382
165384
|
"discount_label"
|
|
165383
165385
|
],
|
|
165384
165386
|
"properties": {
|
|
165387
|
+
"cap_minor": {
|
|
165388
|
+
"description": "Tetto assoluto dello sconto in minor units (stringa), nella valuta del referito; `null` se il livello non ha un tetto interpolabile. Per il livello referee vale 15000 (= 150,00 in valuta locale).",
|
|
165389
|
+
"anyOf": [
|
|
165390
|
+
{
|
|
165391
|
+
"type": "string"
|
|
165392
|
+
},
|
|
165393
|
+
{
|
|
165394
|
+
"type": "null"
|
|
165395
|
+
}
|
|
165396
|
+
]
|
|
165397
|
+
},
|
|
165385
165398
|
"code": {
|
|
165386
165399
|
"description": "Codice coupon personale, co-primario col link.",
|
|
165387
165400
|
"type": "string"
|
|
165388
165401
|
},
|
|
165402
|
+
"discount_bp": {
|
|
165403
|
+
"description": "Percentuale di sconto in basis point (3000 = 30%); `null` se il livello non è una percentuale interpolabile. Il FE lo interpola invece di cablarlo (M12).",
|
|
165404
|
+
"anyOf": [
|
|
165405
|
+
{
|
|
165406
|
+
"type": "integer"
|
|
165407
|
+
},
|
|
165408
|
+
{
|
|
165409
|
+
"type": "null"
|
|
165410
|
+
}
|
|
165411
|
+
]
|
|
165412
|
+
},
|
|
165389
165413
|
"discount_label": {
|
|
165390
165414
|
"description": "Livello di catalogo dello sconto applicato.",
|
|
165391
165415
|
"type": "string"
|