@exclusive-website/types 2.7.5 → 2.7.6

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
@@ -121,6 +121,7 @@ export interface ModelShortPreviewClientReadDto {
121
121
  toppedSubscription: SubscriptionReadDto;
122
122
  toppedHomeSubscription: SubscriptionReadDto;
123
123
  publishedSubscription: SubscriptionReadDto;
124
+ transactionId?: number;
124
125
  }
125
126
  export interface SubscriptionReadDto {
126
127
  isActive: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.7.5",
3
+ "version": "2.7.6",
4
4
  "description": "A collection of shared types (DTOs and DBEs) for the organization",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/types.ts CHANGED
@@ -155,6 +155,7 @@ export interface ModelShortPreviewClientReadDto {
155
155
  toppedSubscription: SubscriptionReadDto;
156
156
  toppedHomeSubscription: SubscriptionReadDto;
157
157
  publishedSubscription: SubscriptionReadDto;
158
+ transactionId? : number;
158
159
  }
159
160
 
160
161
  export interface SubscriptionReadDto {