@wevion/cli 1.0.3696 → 1.0.3702
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 +44 -81
- package/package.json +1 -1
package/openapi.json
CHANGED
|
@@ -162175,6 +162175,13 @@
|
|
|
162175
162175
|
"minLength": 2,
|
|
162176
162176
|
"type": "string"
|
|
162177
162177
|
},
|
|
162178
|
+
"preferred_language": {
|
|
162179
|
+
"description": "Lingua dell’interfaccia al momento dell’invio (ISO 639-1). Se assente o sconosciuta si usa l’inglese.",
|
|
162180
|
+
"maxLength": 5,
|
|
162181
|
+
"minLength": 2,
|
|
162182
|
+
"pattern": "^[a-z]{2}(-[A-Za-z]{2})?$",
|
|
162183
|
+
"type": "string"
|
|
162184
|
+
},
|
|
162178
162185
|
"branch_answers": {
|
|
162179
162186
|
"description": "Ramo della corsia dichiarata. `kind` deve coincidere con `lane`: se non coincide la richiesta è 400, perché inviare i dati di una corsia diversa da quella scelta è un errore del client, non una scelta.",
|
|
162180
162187
|
"anyOf": [
|
|
@@ -162591,18 +162598,42 @@
|
|
|
162591
162598
|
"security": [],
|
|
162592
162599
|
"responses": {
|
|
162593
162600
|
"202": {
|
|
162594
|
-
"description": "Ricevuta della candidatura.
|
|
162601
|
+
"description": "Ricevuta della candidatura. Dichiara l’esito in `outcome` (decisione di Sal del 06/09/2026): chi e’ appena entrato e chi era gia’ nel programma leggono due schermate diverse, invece di una ricevuta che ipotizza un esame. Restano fuori dall’osservabile lo stato della pratica, il nome e ogni data.",
|
|
162595
162602
|
"content": {
|
|
162596
162603
|
"application/json": {
|
|
162597
162604
|
"schema": {
|
|
162598
162605
|
"additionalProperties": false,
|
|
162599
|
-
"description": "Ricevuta della candidatura.
|
|
162606
|
+
"description": "Ricevuta della candidatura. Dichiara l’esito in `outcome` (decisione di Sal del 06/09/2026): chi e’ appena entrato e chi era gia’ nel programma leggono due schermate diverse, invece di una ricevuta che ipotizza un esame. Restano fuori dall’osservabile lo stato della pratica, il nome e ogni data.",
|
|
162600
162607
|
"type": "object",
|
|
162601
162608
|
"required": [
|
|
162609
|
+
"outcome",
|
|
162602
162610
|
"queue_paused",
|
|
162603
162611
|
"status"
|
|
162604
162612
|
],
|
|
162605
162613
|
"properties": {
|
|
162614
|
+
"outcome": {
|
|
162615
|
+
"description": "`entered`: l’account partner e’ nato in questa richiesta. `already_partner`: l’indirizzo e’ gia’ nel programma, non c’e’ niente da inviare di nuovo. `pending`: c’e’ una candidatura da seguire dall’email — ed e’ anche il valore di ogni percorso che non dice altro, cosi’ gli scarti silenziosi non diventano un oracolo.",
|
|
162616
|
+
"anyOf": [
|
|
162617
|
+
{
|
|
162618
|
+
"type": "string",
|
|
162619
|
+
"enum": [
|
|
162620
|
+
"already_partner"
|
|
162621
|
+
]
|
|
162622
|
+
},
|
|
162623
|
+
{
|
|
162624
|
+
"type": "string",
|
|
162625
|
+
"enum": [
|
|
162626
|
+
"entered"
|
|
162627
|
+
]
|
|
162628
|
+
},
|
|
162629
|
+
{
|
|
162630
|
+
"type": "string",
|
|
162631
|
+
"enum": [
|
|
162632
|
+
"pending"
|
|
162633
|
+
]
|
|
162634
|
+
}
|
|
162635
|
+
]
|
|
162636
|
+
},
|
|
162606
162637
|
"queue_paused": {
|
|
162607
162638
|
"description": "La coda ha superato la soglia di §7.2 M4 e il reclutamento è sospeso. Il lead è comunque registrato: non si perde mai un contatto. Non dipende dall’email inviata, quindi non è un oracolo.",
|
|
162608
162639
|
"type": "boolean"
|
|
@@ -170581,12 +170612,22 @@
|
|
|
170581
170612
|
"additionalProperties": false,
|
|
170582
170613
|
"type": "object",
|
|
170583
170614
|
"required": [
|
|
170584
|
-
"available"
|
|
170615
|
+
"available",
|
|
170616
|
+
"tc_document_id",
|
|
170617
|
+
"tc_version"
|
|
170585
170618
|
],
|
|
170586
170619
|
"properties": {
|
|
170587
170620
|
"available": {
|
|
170588
170621
|
"description": "Sempre `true` quando la risposta è 200: il 204 dice il resto.",
|
|
170589
170622
|
"type": "boolean"
|
|
170623
|
+
},
|
|
170624
|
+
"tc_document_id": {
|
|
170625
|
+
"description": "Il documento da accettare. Oggi sempre `referralTerms`.",
|
|
170626
|
+
"type": "string"
|
|
170627
|
+
},
|
|
170628
|
+
"tc_version": {
|
|
170629
|
+
"description": "La versione proposta: è quella che va rimandata all’accettazione.",
|
|
170630
|
+
"type": "string"
|
|
170590
170631
|
}
|
|
170591
170632
|
}
|
|
170592
170633
|
}
|
|
@@ -253448,84 +253489,6 @@
|
|
|
253448
253489
|
}
|
|
253449
253490
|
}
|
|
253450
253491
|
},
|
|
253451
|
-
"/api/v1/support/pylon-identity": {
|
|
253452
|
-
"get": {
|
|
253453
|
-
"operationId": "getApiV1SupportPylonIdentity",
|
|
253454
|
-
"summary": "Pylon identity-verification hash",
|
|
253455
|
-
"tags": [
|
|
253456
|
-
"support"
|
|
253457
|
-
],
|
|
253458
|
-
"description": "Return the Pylon identity-verification email hash (HMAC-SHA256 of the authenticated user email) used to load the support chat widget with a verified identity. Returns null when PYLON_IDENTITY_SECRET is not configured.",
|
|
253459
|
-
"security": [
|
|
253460
|
-
{
|
|
253461
|
-
"bearerAuth": []
|
|
253462
|
-
}
|
|
253463
|
-
],
|
|
253464
|
-
"responses": {
|
|
253465
|
-
"200": {
|
|
253466
|
-
"description": "Successful response",
|
|
253467
|
-
"content": {
|
|
253468
|
-
"application/json": {
|
|
253469
|
-
"schema": {
|
|
253470
|
-
"type": "object",
|
|
253471
|
-
"required": [
|
|
253472
|
-
"emailHash"
|
|
253473
|
-
],
|
|
253474
|
-
"properties": {
|
|
253475
|
-
"emailHash": {
|
|
253476
|
-
"anyOf": [
|
|
253477
|
-
{
|
|
253478
|
-
"type": "string"
|
|
253479
|
-
},
|
|
253480
|
-
{
|
|
253481
|
-
"type": "null"
|
|
253482
|
-
}
|
|
253483
|
-
]
|
|
253484
|
-
}
|
|
253485
|
-
}
|
|
253486
|
-
}
|
|
253487
|
-
}
|
|
253488
|
-
}
|
|
253489
|
-
},
|
|
253490
|
-
"401": {
|
|
253491
|
-
"description": "Unauthorized - missing or invalid bearer token",
|
|
253492
|
-
"content": {
|
|
253493
|
-
"application/json": {
|
|
253494
|
-
"schema": {
|
|
253495
|
-
"$ref": "#/components/schemas/ErrorResponse"
|
|
253496
|
-
}
|
|
253497
|
-
}
|
|
253498
|
-
}
|
|
253499
|
-
},
|
|
253500
|
-
"500": {
|
|
253501
|
-
"description": "Internal server error",
|
|
253502
|
-
"content": {
|
|
253503
|
-
"application/json": {
|
|
253504
|
-
"schema": {
|
|
253505
|
-
"type": "object",
|
|
253506
|
-
"required": [
|
|
253507
|
-
"error",
|
|
253508
|
-
"message",
|
|
253509
|
-
"statusCode"
|
|
253510
|
-
],
|
|
253511
|
-
"properties": {
|
|
253512
|
-
"error": {
|
|
253513
|
-
"type": "string"
|
|
253514
|
-
},
|
|
253515
|
-
"message": {
|
|
253516
|
-
"type": "string"
|
|
253517
|
-
},
|
|
253518
|
-
"statusCode": {
|
|
253519
|
-
"type": "number"
|
|
253520
|
-
}
|
|
253521
|
-
}
|
|
253522
|
-
}
|
|
253523
|
-
}
|
|
253524
|
-
}
|
|
253525
|
-
}
|
|
253526
|
-
}
|
|
253527
|
-
}
|
|
253528
|
-
},
|
|
253529
253492
|
"/api/v1/support/chat-entitlements": {
|
|
253530
253493
|
"get": {
|
|
253531
253494
|
"operationId": "getApiV1SupportChatEntitlements",
|