@plentymarkets/shop-api 0.175.0 → 0.175.1

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.
@@ -16,7 +16,7 @@ import { PlentysystemsIntegrationContext } from '../../types/context';
16
16
  * const { data } = await sdk.plentysystems.doSubmitCancellation({
17
17
  * email: 'customer@example.com',
18
18
  * name: 'John Doe',
19
- * orderId: 12345,
19
+ * orderId: '12345',
20
20
  * reason: 'Changed my mind',
21
21
  * });
22
22
  * ```
package/lib/index.cjs.js CHANGED
@@ -4006,7 +4006,7 @@ const patchMergeTranslations = async (context, params) => {
4006
4006
  * const { data } = await sdk.plentysystems.doSubmitCancellation({
4007
4007
  * email: 'customer@example.com',
4008
4008
  * name: 'John Doe',
4009
- * orderId: 12345,
4009
+ * orderId: '12345',
4010
4010
  * reason: 'Changed my mind',
4011
4011
  * });
4012
4012
  * ```
package/lib/index.es.js CHANGED
@@ -4002,7 +4002,7 @@ const patchMergeTranslations = async (context, params) => {
4002
4002
  * const { data } = await sdk.plentysystems.doSubmitCancellation({
4003
4003
  * email: 'customer@example.com',
4004
4004
  * name: 'John Doe',
4005
- * orderId: 12345,
4005
+ * orderId: '12345',
4006
4006
  * reason: 'Changed my mind',
4007
4007
  * });
4008
4008
  * ```
@@ -2,7 +2,7 @@ import { RecaptchaPayload } from './recaptcha';
2
2
  export interface CancellationFormParams extends RecaptchaPayload {
3
3
  email: string;
4
4
  name: string;
5
- orderId: number;
5
+ orderId: string;
6
6
  reason?: string;
7
7
  }
8
8
  export interface CancellationFormResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plentymarkets/shop-api",
3
- "version": "0.175.0",
3
+ "version": "0.175.1",
4
4
  "sideEffects": false,
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -47,5 +47,5 @@
47
47
  "lib/**/*",
48
48
  "server/**/*"
49
49
  ],
50
- "gitHead": "348ffde6a873fa77cd9ce74d624da576f21eb5c4"
50
+ "gitHead": "d7fe0eeb108cf0c9f17bc465eca3ee2ddd6733bf"
51
51
  }
@@ -16,7 +16,7 @@ import { PlentysystemsIntegrationContext } from '../../types/context';
16
16
  * const { data } = await sdk.plentysystems.doSubmitCancellation({
17
17
  * email: 'customer@example.com',
18
18
  * name: 'John Doe',
19
- * orderId: 12345,
19
+ * orderId: '12345',
20
20
  * reason: 'Changed my mind',
21
21
  * });
22
22
  * ```
package/server/index.js CHANGED
@@ -4117,7 +4117,7 @@ const patchMergeTranslations = async (context, params) => {
4117
4117
  * const { data } = await sdk.plentysystems.doSubmitCancellation({
4118
4118
  * email: 'customer@example.com',
4119
4119
  * name: 'John Doe',
4120
- * orderId: 12345,
4120
+ * orderId: '12345',
4121
4121
  * reason: 'Changed my mind',
4122
4122
  * });
4123
4123
  * ```
@@ -2,7 +2,7 @@ import { RecaptchaPayload } from './recaptcha';
2
2
  export interface CancellationFormParams extends RecaptchaPayload {
3
3
  email: string;
4
4
  name: string;
5
- orderId: number;
5
+ orderId: string;
6
6
  reason?: string;
7
7
  }
8
8
  export interface CancellationFormResponse {