@epilot/pricing-client 3.6.0 → 3.7.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.
- package/dist/definition.js +1 -1
- package/dist/openapi.d.ts +330 -37
- package/dist/openapi.json +4781 -4381
- package/package.json +2 -2
- package/dist/openapi-runtime.json +0 -117
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epilot/pricing-client",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.0",
|
|
4
4
|
"description": "Client for epilot Pricing APIs",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"jest": "^26.6.3",
|
|
63
63
|
"json-loader": "^0.5.7",
|
|
64
64
|
"openapi-client-axios-typegen": "^6.0.0",
|
|
65
|
-
"openapicmd": "^1.
|
|
65
|
+
"openapicmd": "^1.6.2",
|
|
66
66
|
"ts-jest": "^26.5.0",
|
|
67
67
|
"ts-loader": "^8.0.14",
|
|
68
68
|
"ts-node": "^9.1.1",
|
|
@@ -1,117 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"openapi": "3.0.3",
|
|
3
|
-
"info": {
|
|
4
|
-
"title": "",
|
|
5
|
-
"version": ""
|
|
6
|
-
},
|
|
7
|
-
"servers": [
|
|
8
|
-
{
|
|
9
|
-
"url": "https://pricing-api.sls.epilot.io"
|
|
10
|
-
}
|
|
11
|
-
],
|
|
12
|
-
"paths": {
|
|
13
|
-
"/v1/order": {
|
|
14
|
-
"post": {
|
|
15
|
-
"operationId": "createOrder",
|
|
16
|
-
"requestBody": {
|
|
17
|
-
"required": true,
|
|
18
|
-
"content": {
|
|
19
|
-
"application/json": {}
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"/v1/order/{id}": {
|
|
25
|
-
"put": {
|
|
26
|
-
"operationId": "putOrder",
|
|
27
|
-
"parameters": [
|
|
28
|
-
{
|
|
29
|
-
"in": "path",
|
|
30
|
-
"name": "id",
|
|
31
|
-
"required": true
|
|
32
|
-
}
|
|
33
|
-
],
|
|
34
|
-
"requestBody": {
|
|
35
|
-
"required": true,
|
|
36
|
-
"content": {
|
|
37
|
-
"application/json": {}
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
"/v1/public/cart:checkout": {
|
|
43
|
-
"post": {
|
|
44
|
-
"operationId": "$checkoutCart",
|
|
45
|
-
"parameters": [
|
|
46
|
-
{
|
|
47
|
-
"in": "header",
|
|
48
|
-
"name": "X-Ivy-Org-ID",
|
|
49
|
-
"required": true
|
|
50
|
-
}
|
|
51
|
-
],
|
|
52
|
-
"requestBody": {
|
|
53
|
-
"required": true,
|
|
54
|
-
"content": {
|
|
55
|
-
"application/json": {}
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
},
|
|
60
|
-
"/v1/public/catalog": {
|
|
61
|
-
"post": {
|
|
62
|
-
"operationId": "$searchCatalog",
|
|
63
|
-
"parameters": [
|
|
64
|
-
{
|
|
65
|
-
"in": "header",
|
|
66
|
-
"name": "X-Ivy-Org-ID",
|
|
67
|
-
"required": true
|
|
68
|
-
}
|
|
69
|
-
],
|
|
70
|
-
"requestBody": {
|
|
71
|
-
"required": true,
|
|
72
|
-
"content": {
|
|
73
|
-
"application/json": {}
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
},
|
|
78
|
-
"/v1/public/availability:check": {
|
|
79
|
-
"post": {
|
|
80
|
-
"operationId": "$availabilityCheck",
|
|
81
|
-
"parameters": [
|
|
82
|
-
{
|
|
83
|
-
"in": "header",
|
|
84
|
-
"name": "X-Ivy-Org-ID",
|
|
85
|
-
"required": true
|
|
86
|
-
}
|
|
87
|
-
],
|
|
88
|
-
"requestBody": {
|
|
89
|
-
"required": true,
|
|
90
|
-
"content": {
|
|
91
|
-
"application/json": {}
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
},
|
|
96
|
-
"/v1/public/opportunity": {
|
|
97
|
-
"post": {
|
|
98
|
-
"deprecated": true,
|
|
99
|
-
"operationId": "$createOpportunity",
|
|
100
|
-
"parameters": [
|
|
101
|
-
{
|
|
102
|
-
"in": "header",
|
|
103
|
-
"name": "X-Ivy-Org-ID",
|
|
104
|
-
"required": true
|
|
105
|
-
}
|
|
106
|
-
],
|
|
107
|
-
"requestBody": {
|
|
108
|
-
"required": true,
|
|
109
|
-
"content": {
|
|
110
|
-
"application/json": {}
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
},
|
|
116
|
-
"components": {}
|
|
117
|
-
}
|