@drttix/drt-sdk 0.3.1 → 0.3.11

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/README.md CHANGED
@@ -52,3 +52,8 @@ DRT_API_BASE_URL=http://localhost:8080 npx tsx test.ts
52
52
  ```
53
53
 
54
54
  ---
55
+
56
+ Npm run generate
57
+ Npm login
58
+ Increment package.lock version
59
+ Npm publish
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.OpenAPI = void 0;
4
4
  exports.OpenAPI = {
5
5
  BASE: '',
6
- VERSION: '20260224.2',
6
+ VERSION: '20260225.1',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
@@ -1,5 +1,6 @@
1
1
  export type OrderEmailBuyersRequestDto = {
2
2
  orderIds: Array<number>;
3
+ cc: string;
3
4
  subject: string;
4
5
  body: string;
5
6
  bodyType: string;
@@ -1,6 +1,6 @@
1
1
  export const OpenAPI = {
2
2
  BASE: '',
3
- VERSION: '20260224.2',
3
+ VERSION: '20260225.1',
4
4
  WITH_CREDENTIALS: false,
5
5
  CREDENTIALS: 'include',
6
6
  TOKEN: undefined,
@@ -1,5 +1,6 @@
1
1
  export type OrderEmailBuyersRequestDto = {
2
2
  orderIds: Array<number>;
3
+ cc: string;
3
4
  subject: string;
4
5
  body: string;
5
6
  bodyType: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@drttix/drt-sdk",
3
3
  "description": "DRT SDK",
4
- "version": "0.3.01",
4
+ "version": "0.3.11",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
7
7
  "types": "dist/esm/index.d.ts",
@@ -21,7 +21,7 @@ export type OpenAPIConfig = {
21
21
 
22
22
  export const OpenAPI: OpenAPIConfig = {
23
23
  BASE: '',
24
- VERSION: '20260224.2',
24
+ VERSION: '20260225.1',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -4,6 +4,7 @@
4
4
  /* eslint-disable */
5
5
  export type OrderEmailBuyersRequestDto = {
6
6
  orderIds: Array<number>;
7
+ cc: string;
7
8
  subject: string;
8
9
  body: string;
9
10
  bodyType: string;