@periskope/types 0.6.130 → 0.6.132

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/types.d.ts CHANGED
@@ -321,6 +321,9 @@ export type TicketInfoType = {
321
321
  assigned_by: string;
322
322
  ticket_labels: string;
323
323
  quoted_message_id: string;
324
+ ticket_custom_properties: {
325
+ [key: string]: string;
326
+ } | null;
324
327
  };
325
328
  };
326
329
  export declare enum IntegrationLogType {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.130",
3
+ "version": "0.6.132",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/types.ts CHANGED
@@ -437,6 +437,7 @@ export type TicketInfoType = {
437
437
  assigned_by: string;
438
438
  ticket_labels: string;
439
439
  quoted_message_id: string;
440
+ ticket_custom_properties: { [key: string]: string } | null;
440
441
  };
441
442
  };
442
443