@epilot/message-client 1.3.2 → 1.4.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-runtime.json +18 -0
- package/dist/openapi.d.ts +49 -0
- package/dist/openapi.json +54 -1
- package/package.json +5 -5
- package/CHANGELOG.md +0 -253
- package/package-lock.json +0 -19718
package/dist/definition.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
(()=>{"use strict";var e={914:function(e,a,r){var s=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(a,"__esModule",{value:!0});var t=s(r(240));a.default=t.default},240:e=>{e.exports=JSON.parse('{"openapi":"3.0.2","info":{"title":"","version":""},"paths":{"/v1/message/messages":{"post":{"operationId":"sendMessage","parameters":[{"in":"query","name":"do_not_create_entities"}],"requestBody":{"content":{"application/json":{}}}},"put":{"operationId":"updateMessage"}},"/v1/message/messages/{id}":{"get":{"operationId":"getMessage","parameters":[{"name":"id","in":"path","required":true}]},"delete":{"operationId":"deleteMessage","parameters":[{"name":"id","in":"path","required":true}]}},"/v1/message/messages/{id}/trash":{"post":{"operationId":"trashMessage","parameters":[{"name":"id","in":"path","required":true}]}},"/v1/message/messages/{id}/untrash":{"post":{"operationId":"untrashMessage","parameters":[{"name":"id","in":"path","required":true}]}},"/v1/message/messages/{id}/read":{"post":{"operationId":"markReadMessage","parameters":[{"name":"id","in":"path","required":true}]}},"/v1/message/messages/{id}/unread":{"post":{"operationId":"markUnreadMessage","parameters":[{"name":"id","in":"path","required":true}]}},"/v1/message/threads:search":{"post":{"operationId":"searchThreads","requestBody":{"content":{"application/json":{}}}}},"/v1/message/threads":{"put":{"operationId":"updateThread"}},"/v1/message/threads/{id}":{"delete":{"operationId":"deleteThread","parameters":[{"name":"id","in":"path","required":true}]}},"/v1/message/threads/{id}/trash":{"post":{"operationId":"trashThread","parameters":[{"name":"id","in":"path","required":true}]}},"/v1/message/threads/{id}/untrash":{"post":{"operationId":"untrashThread","parameters":[{"name":"id","in":"path","required":true}]}},"/v1/message/threads/{id}/read":{"post":{"operationId":"markReadThread","parameters":[{"name":"id","in":"path","required":true}]}},"/v1/message/threads/{id}/unread":{"post":{"operationId":"markUnreadThread","parameters":[{"name":"id","in":"path","required":true}]}},"/v1/message/threads/{id}/assign":{"post":{"operationId":"assignThread","parameters":[{"name":"id","in":"path","required":true}],"requestBody":{"required":true,"content":{"application/json":{}}}}},"/v1/message/threads/{id}/assign:users":{"post":{"operationId":"assignUsers","parameters":[{"name":"id","in":"path","required":true}],"requestBody":{"required":true,"content":{"application/json":{}}}}},"/v1/message/drafts":{"post":{"operationId":"createDraft","requestBody":{"content":{"application/json":{}}}}},"/v1/message/drafts:send":{"post":{"operationId":"sendDraft"}}},"components":{},"servers":[{"url":"https://message.sls.epilot.io"}]}')}},a={},r=function r(s){var t=a[s];if(void 0!==t)return t.exports;var d=a[s]={exports:{}};return e[s].call(d.exports,d,d.exports,r),d.exports}(914),s=exports;for(var t in r)s[t]=r[t];r.__esModule&&Object.defineProperty(s,"__esModule",{value:!0})})();
|
|
@@ -187,6 +187,24 @@
|
|
|
187
187
|
}
|
|
188
188
|
}
|
|
189
189
|
},
|
|
190
|
+
"/v1/message/threads/{id}/assign:users": {
|
|
191
|
+
"post": {
|
|
192
|
+
"operationId": "assignUsers",
|
|
193
|
+
"parameters": [
|
|
194
|
+
{
|
|
195
|
+
"name": "id",
|
|
196
|
+
"in": "path",
|
|
197
|
+
"required": true
|
|
198
|
+
}
|
|
199
|
+
],
|
|
200
|
+
"requestBody": {
|
|
201
|
+
"required": true,
|
|
202
|
+
"content": {
|
|
203
|
+
"application/json": {}
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
},
|
|
190
208
|
"/v1/message/drafts": {
|
|
191
209
|
"post": {
|
|
192
210
|
"operationId": "createDraft",
|
package/dist/openapi.d.ts
CHANGED
|
@@ -353,6 +353,29 @@ declare namespace Paths {
|
|
|
353
353
|
}
|
|
354
354
|
}
|
|
355
355
|
}
|
|
356
|
+
namespace AssignUsers {
|
|
357
|
+
namespace Parameters {
|
|
358
|
+
export type Id = string;
|
|
359
|
+
}
|
|
360
|
+
export interface PathParameters {
|
|
361
|
+
id: Parameters.Id;
|
|
362
|
+
}
|
|
363
|
+
/**
|
|
364
|
+
* User IDs of users assigned to thread
|
|
365
|
+
*/
|
|
366
|
+
export interface RequestBody {
|
|
367
|
+
/**
|
|
368
|
+
* IDs of users assigned to thread
|
|
369
|
+
*/
|
|
370
|
+
assigned_to?: string[];
|
|
371
|
+
}
|
|
372
|
+
namespace Responses {
|
|
373
|
+
export interface $204 {
|
|
374
|
+
}
|
|
375
|
+
export interface $403 {
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
}
|
|
356
379
|
namespace CreateDraft {
|
|
357
380
|
export type RequestBody = Components.Schemas.MessageRequestParams;
|
|
358
381
|
namespace Responses {
|
|
@@ -1474,6 +1497,18 @@ export interface OperationMethods {
|
|
|
1474
1497
|
data?: Paths.AssignThread.RequestBody,
|
|
1475
1498
|
config?: AxiosRequestConfig
|
|
1476
1499
|
): OperationResponse<Paths.AssignThread.Responses.$204>
|
|
1500
|
+
/**
|
|
1501
|
+
* assignUsers - assignUsers
|
|
1502
|
+
*
|
|
1503
|
+
* Assign users to thread for receiving notifications.
|
|
1504
|
+
* The operation replaces all existing assigned users in thread.
|
|
1505
|
+
*
|
|
1506
|
+
*/
|
|
1507
|
+
'assignUsers'(
|
|
1508
|
+
parameters?: Parameters<Paths.AssignUsers.PathParameters> | null,
|
|
1509
|
+
data?: Paths.AssignUsers.RequestBody,
|
|
1510
|
+
config?: AxiosRequestConfig
|
|
1511
|
+
): OperationResponse<Paths.AssignUsers.Responses.$204>
|
|
1477
1512
|
/**
|
|
1478
1513
|
* createDraft - createDraft
|
|
1479
1514
|
*
|
|
@@ -1690,6 +1725,20 @@ export interface PathsDictionary {
|
|
|
1690
1725
|
config?: AxiosRequestConfig
|
|
1691
1726
|
): OperationResponse<Paths.AssignThread.Responses.$204>
|
|
1692
1727
|
}
|
|
1728
|
+
['/v1/message/threads/{id}/assign:users']: {
|
|
1729
|
+
/**
|
|
1730
|
+
* assignUsers - assignUsers
|
|
1731
|
+
*
|
|
1732
|
+
* Assign users to thread for receiving notifications.
|
|
1733
|
+
* The operation replaces all existing assigned users in thread.
|
|
1734
|
+
*
|
|
1735
|
+
*/
|
|
1736
|
+
'post'(
|
|
1737
|
+
parameters?: Parameters<Paths.AssignUsers.PathParameters> | null,
|
|
1738
|
+
data?: Paths.AssignUsers.RequestBody,
|
|
1739
|
+
config?: AxiosRequestConfig
|
|
1740
|
+
): OperationResponse<Paths.AssignUsers.Responses.$204>
|
|
1741
|
+
}
|
|
1693
1742
|
['/v1/message/drafts']: {
|
|
1694
1743
|
/**
|
|
1695
1744
|
* createDraft - createDraft
|
package/dist/openapi.json
CHANGED
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
{
|
|
36
36
|
"in": "query",
|
|
37
37
|
"name": "do_not_create_entities",
|
|
38
|
-
"description": "When true, this flag lets the caller to send only the message and by-pass creating the entities.",
|
|
38
|
+
"description": "When true, this flag lets the caller to send only the message and by-pass creating the thread & message entities.",
|
|
39
39
|
"schema": {
|
|
40
40
|
"default": false,
|
|
41
41
|
"type": "boolean"
|
|
@@ -587,6 +587,56 @@
|
|
|
587
587
|
}
|
|
588
588
|
}
|
|
589
589
|
},
|
|
590
|
+
"/v1/message/threads/{id}/assign:users": {
|
|
591
|
+
"post": {
|
|
592
|
+
"operationId": "assignUsers",
|
|
593
|
+
"summary": "assignUsers",
|
|
594
|
+
"description": "Assign users to thread for receiving notifications. \nThe operation replaces all existing assigned users in thread.\n",
|
|
595
|
+
"tags": [
|
|
596
|
+
"Threads"
|
|
597
|
+
],
|
|
598
|
+
"parameters": [
|
|
599
|
+
{
|
|
600
|
+
"name": "id",
|
|
601
|
+
"description": "Thread ID",
|
|
602
|
+
"in": "path",
|
|
603
|
+
"required": true,
|
|
604
|
+
"schema": {
|
|
605
|
+
"type": "string"
|
|
606
|
+
}
|
|
607
|
+
}
|
|
608
|
+
],
|
|
609
|
+
"requestBody": {
|
|
610
|
+
"required": true,
|
|
611
|
+
"content": {
|
|
612
|
+
"application/json": {
|
|
613
|
+
"schema": {
|
|
614
|
+
"description": "User IDs of users assigned to thread",
|
|
615
|
+
"type": "object",
|
|
616
|
+
"properties": {
|
|
617
|
+
"assigned_to": {
|
|
618
|
+
"type": "array",
|
|
619
|
+
"description": "IDs of users assigned to thread",
|
|
620
|
+
"items": {
|
|
621
|
+
"type": "string",
|
|
622
|
+
"example": "206801"
|
|
623
|
+
}
|
|
624
|
+
}
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
},
|
|
630
|
+
"responses": {
|
|
631
|
+
"204": {
|
|
632
|
+
"description": "Success"
|
|
633
|
+
},
|
|
634
|
+
"403": {
|
|
635
|
+
"description": "Forbidden"
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
},
|
|
590
640
|
"/v1/message/drafts": {
|
|
591
641
|
"post": {
|
|
592
642
|
"operationId": "createDraft",
|
|
@@ -1092,6 +1142,9 @@
|
|
|
1092
1142
|
}
|
|
1093
1143
|
},
|
|
1094
1144
|
"servers": [
|
|
1145
|
+
{
|
|
1146
|
+
"url": "https://message.sls.epilot.io"
|
|
1147
|
+
},
|
|
1095
1148
|
{
|
|
1096
1149
|
"url": "https://message.sls.epilot.io"
|
|
1097
1150
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epilot/message-client",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "API Client for epilot Message API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"@dazn/lambda-powertools-correlation-ids": "^1.28.1",
|
|
52
52
|
"buffer": "^6.0.3",
|
|
53
53
|
"https-browserify": "^1.0.0",
|
|
54
|
-
"openapi-client-axios": "^
|
|
54
|
+
"openapi-client-axios": "^7.1.3",
|
|
55
55
|
"stream-http": "^3.1.1",
|
|
56
56
|
"url": "^0.11.0",
|
|
57
57
|
"util": "^0.12.3"
|
|
@@ -62,14 +62,14 @@
|
|
|
62
62
|
"copy-webpack-plugin": "^7.0.0",
|
|
63
63
|
"jest": "^26.6.3",
|
|
64
64
|
"json-loader": "^0.5.7",
|
|
65
|
-
"openapi-client-axios-typegen": "^7.
|
|
65
|
+
"openapi-client-axios-typegen": "^7.4.1",
|
|
66
66
|
"openapicmd": "^1.16.2",
|
|
67
67
|
"ts-jest": "^26.5.0",
|
|
68
68
|
"ts-loader": "^8.0.14",
|
|
69
69
|
"ts-node": "^10.9.1",
|
|
70
70
|
"typescript": "^4.1.3",
|
|
71
|
-
"webpack": "
|
|
71
|
+
"webpack": "^5.18.0",
|
|
72
72
|
"webpack-cli": "^4.4.0"
|
|
73
73
|
},
|
|
74
74
|
"gitHead": "39426e86cfb320fa3227dc03f60ee6a10848e7c7"
|
|
75
|
-
}
|
|
75
|
+
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,253 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
## [1.12.3](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.12.2...@epilot/pricing-client@1.12.3) (2022-05-11)
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
## [1.12.2](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.12.2-alpha.0...@epilot/pricing-client@1.12.2) (2022-05-03)
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
### Reverts
|
|
18
|
-
|
|
19
|
-
* Revert "chore(release): publish" ([79a1d35](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/commit/79a1d359edd3d0bd3442a9dd3da293b40017d363))
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
## [1.12.1](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.10.0...@epilot/pricing-client@1.12.1) (2022-04-28)
|
|
26
|
-
|
|
27
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
# [1.10.0](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.9.0...@epilot/pricing-client@1.10.0) (2022-04-25)
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
### Features
|
|
37
|
-
|
|
38
|
-
* prod availability ([ca41cc0](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/commit/ca41cc0f87823ffbc6936b3f8b1fe143e512a446))
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
# [1.9.0](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.8.0...@epilot/pricing-client@1.9.0) (2022-04-22)
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
### Features
|
|
48
|
-
|
|
49
|
-
* support additional addresses for orders ([4db6f30](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/commit/4db6f30428ed57233ceccb6d697288354d7b02db))
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
# [1.8.0](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.7.0...@epilot/pricing-client@1.8.0) (2022-04-08)
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
### Features
|
|
59
|
-
|
|
60
|
-
* tracing for staging ([2182fed](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/commit/2182fed2fec3fa108004dceef35ff3f2440bc816))
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
# [1.7.0](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.6.5...@epilot/pricing-client@1.7.0) (2022-04-07)
|
|
67
|
-
|
|
68
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
## [1.6.6-alpha.0](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.6.5...@epilot/pricing-client@1.6.6-alpha.0) (2022-04-07)
|
|
75
|
-
|
|
76
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
## [1.6.5](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.6.4...@epilot/pricing-client@1.6.5) (2022-04-04)
|
|
83
|
-
|
|
84
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
## [1.6.4](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.6.3...@epilot/pricing-client@1.6.4) (2022-04-04)
|
|
91
|
-
|
|
92
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
## [1.6.3](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.6.2...@epilot/pricing-client@1.6.3) (2022-03-29)
|
|
99
|
-
|
|
100
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
## [1.6.2](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.5.4...@epilot/pricing-client@1.6.2) (2022-03-25)
|
|
107
|
-
|
|
108
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
## [1.6.1](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.5.7-alpha.0...@epilot/pricing-client@1.6.1) (2022-03-18)
|
|
115
|
-
|
|
116
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
## [1.5.7-alpha.0](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.5.4...@epilot/pricing-client@1.5.7-alpha.0) (2022-03-16)
|
|
123
|
-
|
|
124
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
## [1.5.6](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.5.4...@epilot/pricing-client@1.5.6) (2022-03-12)
|
|
131
|
-
|
|
132
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
## [1.5.5](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.5.4...@epilot/pricing-client@1.5.5) (2022-03-11)
|
|
139
|
-
|
|
140
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
## [1.5.4](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.5.2...@epilot/pricing-client@1.5.4) (2022-02-11)
|
|
147
|
-
|
|
148
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
## [1.5.2](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.5.1...@epilot/pricing-client@1.5.2) (2022-01-19)
|
|
155
|
-
|
|
156
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
## [1.5.1](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.5.0...@epilot/pricing-client@1.5.1) (2022-01-19)
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
### Bug Fixes
|
|
166
|
-
|
|
167
|
-
* create opportunity api spec ([c1480fa](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/commit/c1480fa810fb018e451773f1805988cad371b669))
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
# [1.5.0](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.3.1...@epilot/pricing-client@1.5.0) (2022-01-19)
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
### Bug Fixes
|
|
177
|
-
|
|
178
|
-
* lock files ([cf87d25](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/commit/cf87d25cb8de79b92e5d9da5904fd9e4ac612099))
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
### Features
|
|
182
|
-
|
|
183
|
-
* adds opportunity support ([d9cd33f](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/commit/d9cd33fca52e62ae198a64b3fbb4479d41b24be4))
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
## [1.3.1](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.3.0...@epilot/pricing-client@1.3.1) (2022-01-19)
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
### Bug Fixes
|
|
193
|
-
|
|
194
|
-
* bug generating orders and updates types with opportunity ([b8c6e64](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/commit/b8c6e64d414edeb0d9f5b66f7554dea4c56539d9))
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
# [1.3.0](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.2.15...@epilot/pricing-client@1.3.0) (2022-01-03)
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
### Features
|
|
204
|
-
|
|
205
|
-
* adds support for files ([709e89f](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/commit/709e89f98064646d6111f76c2cde255490e5ed79))
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
## [1.2.15](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.2.14...@epilot/pricing-client@1.2.15) (2021-12-22)
|
|
212
|
-
|
|
213
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
## [1.2.14](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.2.13...@epilot/pricing-client@1.2.14) (2021-12-22)
|
|
220
|
-
|
|
221
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
## [1.2.13](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.2.12...@epilot/pricing-client@1.2.13) (2021-12-16)
|
|
228
|
-
|
|
229
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
## [1.2.12](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.2.11...@epilot/pricing-client@1.2.12) (2021-12-16)
|
|
236
|
-
|
|
237
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
## [1.2.11](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.2.10...@epilot/pricing-client@1.2.11) (2021-12-16)
|
|
244
|
-
|
|
245
|
-
**Note:** Version bump only for package @epilot/pricing-client
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
## [1.2.10](https://gitlab.com/e-pilot/product/checkout-and-pricing/pricing-api/compare/@epilot/pricing-client@1.2.9...@epilot/pricing-client@1.2.10) (2021-12-16)
|
|
252
|
-
|
|
253
|
-
**Note:** Version bump only for package @epilot/pricing-client
|