@shopware/api-client 1.2.1 → 1.3.0

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.
@@ -455,6 +455,19 @@
455
455
  "enum": ["sales_channel_context"]
456
456
  }
457
457
  }
458
+ },
459
+ {
460
+ "required": ["languageInfo"],
461
+ "properties": {
462
+ "languageInfo": {
463
+ "type": "object",
464
+ "required": ["localeCode", "name"],
465
+ "properties": {
466
+ "name": { "type": "string" },
467
+ "localeCode": { "type": "string" }
468
+ }
469
+ }
470
+ }
458
471
  }
459
472
  ],
460
473
  "Quote": [{ "required": ["price"] }, { "required": ["stateMachineState"] }],
@@ -893,33 +906,6 @@
893
906
  }
894
907
  ]
895
908
  },
896
- "/employee/{id}": {
897
- "get": {
898
- "operationId": "readB2bEmployee",
899
- "parameters": [
900
- {
901
- "name": "id",
902
- "in": "path",
903
- "description": "Identifier of the employee to be read",
904
- "required": true,
905
- "schema": {
906
- "type": "string",
907
- "format": "uuid"
908
- }
909
- }
910
- ],
911
- "responses": {
912
- "200": {
913
- "description": "Employee",
914
- "content": {
915
- "application/json": {
916
- "schema": { "$ref": "#/components/schemas/B2bEmployee" }
917
- }
918
- }
919
- }
920
- }
921
- }
922
- },
923
909
  "/quote/detail/{id}": {
924
910
  "post": [
925
911
  {