cecon-interfaces 1.7.35 → 1.7.37
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/esm2022/natipay/payload/entities/payload-info.entity.mjs +3 -3
- package/dist/esm2022/natipay/payload/interfaces/i-payload-info.mjs +1 -1
- package/dist/esm2022/payio/chef-config/entities/chef-config-webhook.entity.mjs +1 -1
- package/dist/esm2022/payio/chef-config/interfaces/i-chef-config-webhook.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +2 -2
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/natipay/payload/entities/payload-info.entity.d.ts +3 -3
- package/dist/natipay/payload/entities/payload-info.entity.js +2 -2
- package/dist/natipay/payload/interfaces/i-payload-info.d.ts +3 -3
- package/dist/package.json +1 -1
- package/dist/payio/chef-config/entities/chef-config-webhook.entity.d.ts +1 -1
- package/dist/payio/chef-config/interfaces/i-chef-config-webhook.d.ts +1 -1
- package/package.json +1 -1
@@ -1,8 +1,8 @@
|
|
1
1
|
import { INatipayJwtPayloadInfo } from '../interfaces/i-payload-info';
|
2
2
|
export declare class NatipayJwtPayloadInfoEntity implements INatipayJwtPayloadInfo {
|
3
|
-
companyId: string;
|
4
|
-
companyName
|
3
|
+
companyId: string | null;
|
4
|
+
companyName?: string | null;
|
5
5
|
containerId: string | null;
|
6
|
-
containerName
|
6
|
+
containerName?: string | null;
|
7
7
|
constructor(data?: Partial<NatipayJwtPayloadInfoEntity>);
|
8
8
|
}
|
@@ -6,8 +6,8 @@ var NatipayJwtPayloadInfoEntity = /** @class */ (function () {
|
|
6
6
|
// #region Constructors (1)
|
7
7
|
function NatipayJwtPayloadInfoEntity(data) {
|
8
8
|
// #region Properties (4)
|
9
|
-
this.companyId =
|
10
|
-
this.companyName =
|
9
|
+
this.companyId = null;
|
10
|
+
this.companyName = null;
|
11
11
|
this.containerId = null;
|
12
12
|
this.containerName = null;
|
13
13
|
if (data) {
|
package/dist/package.json
CHANGED
@@ -6,7 +6,7 @@ export declare class PayioChefConfigWebhookEntity implements IPayioChefConfigWeb
|
|
6
6
|
method: 'GET' | 'POST' | 'PUT' | 'DELETE';
|
7
7
|
response: string | null;
|
8
8
|
secret: string | null;
|
9
|
-
type: 'PING' | 'GET_PRODUCT' | 'SEND_ORDER' | 'GET_ORDER' | 'CANCEL_ORDER' | 'GET_ORDER_STATUS';
|
9
|
+
type: 'PING' | 'GET_PRODUCT' | 'SEND_ORDER' | 'GET_ORDER' | 'CANCEL_ORDER' | 'GET_ORDER_STATUS' | 'VISION_GET' | 'VISION_POST';
|
10
10
|
url: string;
|
11
11
|
constructor(data?: Partial<PayioChefConfigWebhookEntity>);
|
12
12
|
}
|
@@ -4,7 +4,7 @@ export interface IPayioChefConfigWebhook {
|
|
4
4
|
authToken: string | null;
|
5
5
|
secret: string | null;
|
6
6
|
url: string;
|
7
|
-
type: 'PING' | 'GET_PRODUCT' | 'SEND_ORDER' | 'GET_ORDER' | 'CANCEL_ORDER' | 'GET_ORDER_STATUS';
|
7
|
+
type: 'PING' | 'GET_PRODUCT' | 'SEND_ORDER' | 'GET_ORDER' | 'CANCEL_ORDER' | 'GET_ORDER_STATUS' | 'VISION_GET' | 'VISION_POST';
|
8
8
|
response: string | null;
|
9
9
|
locked: boolean;
|
10
10
|
}
|