@edifice.io/edifice-ent-client 6.8.0-develop-b2school.1760360527214 → 6.8.0-zookeeper.1763112353055
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
|
@@ -241,10 +241,10 @@ export interface RegisterNotificationBatchRequestDTO {
|
|
|
241
241
|
}
|
|
242
242
|
export interface RegisterNotificationRequestDTO {
|
|
243
243
|
appAddress?: string;
|
|
244
|
-
defaultFrequency?:
|
|
244
|
+
defaultFrequency?: 'NEVER' | 'IMMEDIATE' | 'DAILY' | 'WEEKLY';
|
|
245
245
|
eventType?: string;
|
|
246
246
|
pushNotif?: boolean;
|
|
247
|
-
restriction?:
|
|
247
|
+
restriction?: 'INTERNAL' | 'EXTERNAL' | 'NONE' | 'HIDDEN';
|
|
248
248
|
template?: string;
|
|
249
249
|
type?: string;
|
|
250
250
|
}
|
|
@@ -350,7 +350,7 @@ export interface SessionDto {
|
|
|
350
350
|
}
|
|
351
351
|
export interface SharesResponseDTO {
|
|
352
352
|
id?: string;
|
|
353
|
-
kind?:
|
|
353
|
+
kind?: 'Group' | 'User';
|
|
354
354
|
permissions?: string[];
|
|
355
355
|
}
|
|
356
356
|
export interface StructureDto {
|
package/package.json
CHANGED