@agenus-io/webhook-centralizer 1.0.8 → 1.0.10
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.
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { webhookCentralizerOrderStatus, webhookCentralizerPlatform } from './../types';
|
|
2
2
|
import { webhookCentralizerDispatchType } from '../types';
|
|
3
|
-
import { JsonValue } from 'aws-sdk/clients/appmesh';
|
|
4
3
|
interface ICreatePlatformDTO {
|
|
5
4
|
title: string;
|
|
6
5
|
platformToken?: string;
|
|
@@ -118,7 +117,7 @@ export declare namespace IGetPlatformByTitleDTO {
|
|
|
118
117
|
platformSettingId: string;
|
|
119
118
|
appId: string;
|
|
120
119
|
workSpaceId: string;
|
|
121
|
-
meta:
|
|
120
|
+
meta: Record<string, any> | null;
|
|
122
121
|
createdAt: Date;
|
|
123
122
|
updatedAt: Date;
|
|
124
123
|
isDeleted: boolean;
|
|
@@ -142,7 +141,7 @@ export declare namespace IGetPlatformByIdDTO {
|
|
|
142
141
|
platformSettingId: string;
|
|
143
142
|
appId: string;
|
|
144
143
|
workSpaceId: string;
|
|
145
|
-
meta:
|
|
144
|
+
meta: Record<string, any> | null;
|
|
146
145
|
createdAt: Date;
|
|
147
146
|
updatedAt: Date;
|
|
148
147
|
isDeleted: boolean;
|
package/package.json
CHANGED