@telos-dev-team/dealernode-permissions 1.1.10 → 1.1.11

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.
@@ -187,6 +187,8 @@ export declare const PERMISSIONS: {
187
187
  readonly OPERATIONS: {
188
188
  readonly VIEW: "deal.financed.operations.view";
189
189
  readonly VIEW_MY_DEALS: "deal.financed.operations.view_my_deals";
190
+ readonly UPSERT: "deal.financed.operations.upsert";
191
+ readonly FUND: "deal.financed.operations.fund";
190
192
  readonly MANAGE: "deal.financed.operations.manage";
191
193
  };
192
194
  };
@@ -194,6 +196,8 @@ export declare const PERMISSIONS: {
194
196
  readonly OPERATIONS: {
195
197
  readonly VIEW: "deal.spot.operations.view";
196
198
  readonly VIEW_MY_DEALS: "deal.spot.operations.view_my_deals";
199
+ readonly UPSERT: "deal.spot.operations.upsert";
200
+ readonly TRANSFORM: "deal.spot.operations.transform";
197
201
  readonly MANAGE: "deal.spot.operations.manage";
198
202
  };
199
203
  };
@@ -201,6 +205,7 @@ export declare const PERMISSIONS: {
201
205
  readonly OPERATIONS: {
202
206
  readonly VIEW: "deal.cash.operations.view";
203
207
  readonly VIEW_MY_DEALS: "deal.cash.operations.view_my_deals";
208
+ readonly UPSERT: "deal.cash.operations.upsert";
204
209
  readonly MANAGE: "deal.cash.operations.manage";
205
210
  };
206
211
  };
@@ -208,6 +213,7 @@ export declare const PERMISSIONS: {
208
213
  readonly OPERATIONS: {
209
214
  readonly VIEW: "deal.bhph.operations.view";
210
215
  readonly VIEW_MY_DEALS: "deal.bhph.operations.view_my_deals";
216
+ readonly UPSERT: "deal.bhph.operations.upsert";
211
217
  readonly MANAGE: "deal.bhph.operations.manage";
212
218
  };
213
219
  readonly PAYMENTS: {
@@ -220,6 +220,8 @@ exports.PERMISSIONS = {
220
220
  OPERATIONS: {
221
221
  VIEW: "deal.financed.operations.view",
222
222
  VIEW_MY_DEALS: "deal.financed.operations.view_my_deals",
223
+ UPSERT: "deal.financed.operations.upsert",
224
+ FUND: "deal.financed.operations.fund",
223
225
  MANAGE: "deal.financed.operations.manage",
224
226
  },
225
227
  },
@@ -227,6 +229,8 @@ exports.PERMISSIONS = {
227
229
  OPERATIONS: {
228
230
  VIEW: "deal.spot.operations.view",
229
231
  VIEW_MY_DEALS: "deal.spot.operations.view_my_deals",
232
+ UPSERT: "deal.spot.operations.upsert",
233
+ TRANSFORM: "deal.spot.operations.transform",
230
234
  MANAGE: "deal.spot.operations.manage",
231
235
  },
232
236
  },
@@ -234,6 +238,7 @@ exports.PERMISSIONS = {
234
238
  OPERATIONS: {
235
239
  VIEW: "deal.cash.operations.view",
236
240
  VIEW_MY_DEALS: "deal.cash.operations.view_my_deals",
241
+ UPSERT: "deal.cash.operations.upsert",
237
242
  MANAGE: "deal.cash.operations.manage",
238
243
  },
239
244
  },
@@ -241,6 +246,7 @@ exports.PERMISSIONS = {
241
246
  OPERATIONS: {
242
247
  VIEW: "deal.bhph.operations.view",
243
248
  VIEW_MY_DEALS: "deal.bhph.operations.view_my_deals",
249
+ UPSERT: "deal.bhph.operations.upsert",
244
250
  MANAGE: "deal.bhph.operations.manage",
245
251
  },
246
252
  PAYMENTS: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telos-dev-team/dealernode-permissions",
3
- "version": "1.1.10",
3
+ "version": "1.1.11",
4
4
  "description": "Shared permissions constants for dealernode projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -226,6 +226,8 @@ export const PERMISSIONS = {
226
226
  OPERATIONS: {
227
227
  VIEW: "deal.financed.operations.view",
228
228
  VIEW_MY_DEALS: "deal.financed.operations.view_my_deals",
229
+ UPSERT: "deal.financed.operations.upsert",
230
+ FUND: "deal.financed.operations.fund",
229
231
  MANAGE: "deal.financed.operations.manage",
230
232
  },
231
233
  },
@@ -233,6 +235,8 @@ export const PERMISSIONS = {
233
235
  OPERATIONS: {
234
236
  VIEW: "deal.spot.operations.view",
235
237
  VIEW_MY_DEALS: "deal.spot.operations.view_my_deals",
238
+ UPSERT: "deal.spot.operations.upsert",
239
+ TRANSFORM: "deal.spot.operations.transform",
236
240
  MANAGE: "deal.spot.operations.manage",
237
241
  },
238
242
  },
@@ -240,6 +244,7 @@ export const PERMISSIONS = {
240
244
  OPERATIONS: {
241
245
  VIEW: "deal.cash.operations.view",
242
246
  VIEW_MY_DEALS: "deal.cash.operations.view_my_deals",
247
+ UPSERT: "deal.cash.operations.upsert",
243
248
  MANAGE: "deal.cash.operations.manage",
244
249
  },
245
250
  },
@@ -247,6 +252,7 @@ export const PERMISSIONS = {
247
252
  OPERATIONS: {
248
253
  VIEW: "deal.bhph.operations.view",
249
254
  VIEW_MY_DEALS: "deal.bhph.operations.view_my_deals",
255
+ UPSERT: "deal.bhph.operations.upsert",
250
256
  MANAGE: "deal.bhph.operations.manage",
251
257
  },
252
258
  PAYMENTS: {