@edifice.io/edifice-ent-client 6.10.0-develop-b2school.1763565744124 → 6.10.0-zookeeper.1764586783449
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/index.d.ts.map +1 -1
- package/dist/nats/types.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAkBA,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC"}
|
package/dist/nats/types.d.ts
CHANGED
|
@@ -253,10 +253,10 @@ export interface RegisterNotificationBatchRequestDTO {
|
|
|
253
253
|
}
|
|
254
254
|
export interface RegisterNotificationRequestDTO {
|
|
255
255
|
appAddress?: string;
|
|
256
|
-
defaultFrequency?:
|
|
256
|
+
defaultFrequency?: 'NEVER' | 'IMMEDIATE' | 'DAILY' | 'WEEKLY';
|
|
257
257
|
eventType?: string;
|
|
258
258
|
pushNotif?: boolean;
|
|
259
|
-
restriction?:
|
|
259
|
+
restriction?: 'INTERNAL' | 'EXTERNAL' | 'NONE' | 'HIDDEN';
|
|
260
260
|
template?: string;
|
|
261
261
|
type?: string;
|
|
262
262
|
}
|
|
@@ -362,7 +362,7 @@ export interface SessionDto {
|
|
|
362
362
|
}
|
|
363
363
|
export interface SharesResponseDTO {
|
|
364
364
|
id?: string;
|
|
365
|
-
kind?:
|
|
365
|
+
kind?: 'Group' | 'User';
|
|
366
366
|
permissions?: string[];
|
|
367
367
|
}
|
|
368
368
|
export interface StructureDto {
|
package/package.json
CHANGED