@go-mondo/identity-sdk 0.0.2-beta.4 → 0.0.2-beta.5
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/.release-please-manifest.json +1 -1
- package/.tsbuildinfo/cjs.json +1 -1
- package/.tsbuildinfo/esm.json +1 -1
- package/CHANGELOG.md +7 -0
- package/dist/cjs/activity/schema/base.d.ts +16 -0
- package/dist/cjs/activity/schema/base.d.ts.map +1 -1
- package/dist/cjs/activity/schema/base.js +16 -3
- package/dist/cjs/activity/schema/schema.d.ts +1 -16
- package/dist/cjs/activity/schema/schema.d.ts.map +1 -1
- package/dist/cjs/activity/schema/schema.js +8 -19
- package/dist/esm/activity/schema/base.d.ts +16 -0
- package/dist/esm/activity/schema/base.d.ts.map +1 -1
- package/dist/esm/activity/schema/base.js +14 -1
- package/dist/esm/activity/schema/schema.d.ts +1 -16
- package/dist/esm/activity/schema/schema.d.ts.map +1 -1
- package/dist/esm/activity/schema/schema.js +1 -14
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-beta.5](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.4...identity-sdk-v0.0.2-beta.5) (2025-05-02)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* Cannot access PerformerType before initialization ([d4c4c2c](https://github.com/go-mondo/identity-node-sdk/commit/d4c4c2cd9880e76efbe10af85b293d9da0c8abfb))
|
|
9
|
+
|
|
3
10
|
## [0.0.2-beta.4](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.3...identity-sdk-v0.0.2-beta.4) (2025-05-02)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
export declare const ActivityType: {
|
|
2
|
+
readonly UNKNOWN: "unknown";
|
|
3
|
+
readonly NOTE: "note";
|
|
4
|
+
readonly OPERATION: "operation";
|
|
5
|
+
readonly AUTHORIZATION: "authorization";
|
|
6
|
+
readonly AUTHENTICATION: "authentication";
|
|
7
|
+
};
|
|
8
|
+
export type AnyActivityType = (typeof ActivityType)[keyof typeof ActivityType];
|
|
9
|
+
export declare const PerformerType: {
|
|
10
|
+
readonly SYSTEM: "system";
|
|
11
|
+
readonly GUEST: "guest";
|
|
12
|
+
readonly IDENTITY: "identity";
|
|
13
|
+
readonly AUTOMATION: "automation";
|
|
14
|
+
readonly INTEGRATION: "integration";
|
|
15
|
+
};
|
|
16
|
+
export type AnyPerformerType = (typeof PerformerType)[keyof typeof PerformerType];
|
|
1
17
|
export declare const ActivityIdSchema: import("arktype/out/methods/string.js").StringType<string, {}>;
|
|
2
18
|
export type ActivityId = typeof ActivityIdSchema.inferOut;
|
|
3
19
|
export declare const ActivityIdPropertySchema: import("arktype/out/methods/object.js").ObjectType<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../../src/activity/schema/base.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../../src/activity/schema/base.ts"],"names":[],"mappings":"AAWA,eAAO,MAAM,YAAY;;;;;;CAMf,CAAC;AAEX,MAAM,MAAM,eAAe,GAAG,CAAC,OAAO,YAAY,CAAC,CAAC,MAAM,OAAO,YAAY,CAAC,CAAC;AAE/E,eAAO,MAAM,aAAa;;;;;;CAMhB,CAAC;AAEX,MAAM,MAAM,gBAAgB,GAC1B,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,OAAO,aAAa,CAAC,CAAC;AAErD,eAAO,MAAM,gBAAgB,gEAAc,CAAC;AAC5C,MAAM,MAAM,UAAU,GAAG,OAAO,gBAAgB,CAAC,QAAQ,CAAC;AAE1D,eAAO,MAAM,wBAAwB;;MAEnC,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,OAAO,wBAAwB,CAAC,QAAQ,CAAC;AAE1E,eAAO,MAAM,YAAY,gEAAiB,CAAC;AAE3C,eAAO,MAAM,iBAAiB;;;MAS5B,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,OAAO,iBAAiB,CAAC,QAAQ,CAAC;AAE5D,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;MASO,CAAC;AAEtC,eAAO,MAAM,uBAAuB;;;;;;;;;;;MAGO,CAAC;AAE5C,eAAO,MAAM,uBAAuB;;;;;;;;;;MAEO,CAAC"}
|
|
@@ -1,18 +1,31 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BaseUpdatePayloadSchema = exports.BaseInsertPayloadSchema = exports.BasePayloadSchema = exports.PerformedBySchema = exports.SourceSchema = exports.ActivityIdPropertySchema = exports.ActivityIdSchema = void 0;
|
|
3
|
+
exports.BaseUpdatePayloadSchema = exports.BaseInsertPayloadSchema = exports.BasePayloadSchema = exports.PerformedBySchema = exports.SourceSchema = exports.ActivityIdPropertySchema = exports.ActivityIdSchema = exports.PerformerType = exports.ActivityType = void 0;
|
|
4
4
|
const arktype_1 = require("arktype");
|
|
5
5
|
const index_js_1 = require("../../common/index.js");
|
|
6
6
|
const metadata_js_1 = require("../../common/schema/metadata.js");
|
|
7
|
-
const schema_js_1 = require("./schema.js");
|
|
8
7
|
const utils_js_1 = require("./utils.js");
|
|
8
|
+
exports.ActivityType = {
|
|
9
|
+
UNKNOWN: 'unknown',
|
|
10
|
+
NOTE: 'note',
|
|
11
|
+
OPERATION: 'operation',
|
|
12
|
+
AUTHORIZATION: 'authorization',
|
|
13
|
+
AUTHENTICATION: 'authentication',
|
|
14
|
+
};
|
|
15
|
+
exports.PerformerType = {
|
|
16
|
+
SYSTEM: 'system',
|
|
17
|
+
GUEST: 'guest',
|
|
18
|
+
IDENTITY: 'identity',
|
|
19
|
+
AUTOMATION: 'automation',
|
|
20
|
+
INTEGRATION: 'integration',
|
|
21
|
+
};
|
|
9
22
|
exports.ActivityIdSchema = arktype_1.type.string;
|
|
10
23
|
exports.ActivityIdPropertySchema = (0, arktype_1.type)({
|
|
11
24
|
id: exports.ActivityIdSchema,
|
|
12
25
|
});
|
|
13
26
|
exports.SourceSchema = (0, arktype_1.type)('string');
|
|
14
27
|
exports.PerformedBySchema = (0, arktype_1.type)({
|
|
15
|
-
type: arktype_1.type.enumerated(
|
|
28
|
+
type: arktype_1.type.enumerated(exports.PerformerType.SYSTEM, exports.PerformerType.GUEST, exports.PerformerType.IDENTITY, exports.PerformerType.AUTOMATION, exports.PerformerType.INTEGRATION),
|
|
16
29
|
identifier: (0, arktype_1.type)('string'),
|
|
17
30
|
});
|
|
18
31
|
exports.BasePayloadSchema = (0, arktype_1.type)({
|
|
@@ -1,19 +1,4 @@
|
|
|
1
|
-
export
|
|
2
|
-
readonly UNKNOWN: "unknown";
|
|
3
|
-
readonly NOTE: "note";
|
|
4
|
-
readonly OPERATION: "operation";
|
|
5
|
-
readonly AUTHORIZATION: "authorization";
|
|
6
|
-
readonly AUTHENTICATION: "authentication";
|
|
7
|
-
};
|
|
8
|
-
export type AnyActivityType = (typeof ActivityType)[keyof typeof ActivityType];
|
|
9
|
-
export declare const PerformerType: {
|
|
10
|
-
readonly SYSTEM: "system";
|
|
11
|
-
readonly GUEST: "guest";
|
|
12
|
-
readonly IDENTITY: "identity";
|
|
13
|
-
readonly AUTOMATION: "automation";
|
|
14
|
-
readonly INTEGRATION: "integration";
|
|
15
|
-
};
|
|
16
|
-
export type AnyPerformerType = (typeof PerformerType)[keyof typeof PerformerType];
|
|
1
|
+
export { ActivityType, type AnyActivityType, PerformerType, type AnyPerformerType, } from './base.js';
|
|
17
2
|
export declare const ActivityPayloadSchema: import("arktype/out/methods/object.js").ObjectType<{
|
|
18
3
|
id: string;
|
|
19
4
|
performedBy: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/activity/schema/schema.ts"],"names":[],"mappings":"AAUA,
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/activity/schema/schema.ts"],"names":[],"mappings":"AAUA,OAAO,EACL,YAAY,EACZ,KAAK,eAAe,EACpB,aAAa,EACb,KAAK,gBAAgB,GACtB,MAAM,WAAW,CAAC;AAEnB,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKC,CAAC;AACpC,MAAM,MAAM,eAAe,GAAG,OAAO,qBAAqB,CAAC,QAAQ,CAAC;AAEpE,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;MAAkC,CAAC;AAC3E,MAAM,MAAM,qBAAqB,GAAG,OAAO,2BAA2B,CAAC,QAAQ,CAAC;AAEhF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;MAAkC,CAAC;AAC3E,MAAM,MAAM,qBAAqB,GAAG,OAAO,2BAA2B,CAAC,QAAQ,CAAC;AAEhF,OAAO,EACL,wBAAwB,EACxB,gBAAgB,EAChB,iBAAiB,EACjB,YAAY,EACZ,KAAK,UAAU,EACf,KAAK,kBAAkB,EACvB,KAAK,WAAW,GACjB,MAAM,WAAW,CAAC;AACnB,cAAc,aAAa,CAAC;AAC5B,cAAc,2BAA2B,CAAC;AAC1C,cAAc,0BAA0B,CAAC;AACzC,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AAEnC,cAAc,YAAY,CAAC"}
|
|
@@ -20,31 +20,20 @@ const authorization_js_1 = require("./types/authorization.js");
|
|
|
20
20
|
const note_js_1 = require("./types/note.js");
|
|
21
21
|
const operation_js_1 = require("./types/operation.js");
|
|
22
22
|
const unknown_js_1 = require("./types/unknown.js");
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
OPERATION: 'operation',
|
|
27
|
-
AUTHORIZATION: 'authorization',
|
|
28
|
-
AUTHENTICATION: 'authentication',
|
|
29
|
-
};
|
|
30
|
-
exports.PerformerType = {
|
|
31
|
-
SYSTEM: 'system',
|
|
32
|
-
GUEST: 'guest',
|
|
33
|
-
IDENTITY: 'identity',
|
|
34
|
-
AUTOMATION: 'automation',
|
|
35
|
-
INTEGRATION: 'integration',
|
|
36
|
-
};
|
|
23
|
+
var base_js_1 = require("./base.js");
|
|
24
|
+
Object.defineProperty(exports, "ActivityType", { enumerable: true, get: function () { return base_js_1.ActivityType; } });
|
|
25
|
+
Object.defineProperty(exports, "PerformerType", { enumerable: true, get: function () { return base_js_1.PerformerType; } });
|
|
37
26
|
exports.ActivityPayloadSchema = note_js_1.NoteActivityPayloadSchema.or(authentication_js_1.AuthenticationActivityPayloadSchema)
|
|
38
27
|
.or(authorization_js_1.AuthorizationActivityPayloadSchema)
|
|
39
28
|
.or(operation_js_1.OperationActivityPayloadSchema)
|
|
40
29
|
.or(unknown_js_1.UnknownActivityPayloadSchema);
|
|
41
30
|
exports.InsertActivityPayloadSchema = note_js_1.InsertNoteActivityPayloadSchema;
|
|
42
31
|
exports.UpdateActivityPayloadSchema = note_js_1.UpdateNoteActivityPayloadSchema;
|
|
43
|
-
var
|
|
44
|
-
Object.defineProperty(exports, "ActivityIdPropertySchema", { enumerable: true, get: function () { return
|
|
45
|
-
Object.defineProperty(exports, "ActivityIdSchema", { enumerable: true, get: function () { return
|
|
46
|
-
Object.defineProperty(exports, "PerformedBySchema", { enumerable: true, get: function () { return
|
|
47
|
-
Object.defineProperty(exports, "SourceSchema", { enumerable: true, get: function () { return
|
|
32
|
+
var base_js_2 = require("./base.js");
|
|
33
|
+
Object.defineProperty(exports, "ActivityIdPropertySchema", { enumerable: true, get: function () { return base_js_2.ActivityIdPropertySchema; } });
|
|
34
|
+
Object.defineProperty(exports, "ActivityIdSchema", { enumerable: true, get: function () { return base_js_2.ActivityIdSchema; } });
|
|
35
|
+
Object.defineProperty(exports, "PerformedBySchema", { enumerable: true, get: function () { return base_js_2.PerformedBySchema; } });
|
|
36
|
+
Object.defineProperty(exports, "SourceSchema", { enumerable: true, get: function () { return base_js_2.SourceSchema; } });
|
|
48
37
|
__exportStar(require("./schema.js"), exports);
|
|
49
38
|
__exportStar(require("./types/authentication.js"), exports);
|
|
50
39
|
__exportStar(require("./types/authorization.js"), exports);
|
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
export declare const ActivityType: {
|
|
2
|
+
readonly UNKNOWN: "unknown";
|
|
3
|
+
readonly NOTE: "note";
|
|
4
|
+
readonly OPERATION: "operation";
|
|
5
|
+
readonly AUTHORIZATION: "authorization";
|
|
6
|
+
readonly AUTHENTICATION: "authentication";
|
|
7
|
+
};
|
|
8
|
+
export type AnyActivityType = (typeof ActivityType)[keyof typeof ActivityType];
|
|
9
|
+
export declare const PerformerType: {
|
|
10
|
+
readonly SYSTEM: "system";
|
|
11
|
+
readonly GUEST: "guest";
|
|
12
|
+
readonly IDENTITY: "identity";
|
|
13
|
+
readonly AUTOMATION: "automation";
|
|
14
|
+
readonly INTEGRATION: "integration";
|
|
15
|
+
};
|
|
16
|
+
export type AnyPerformerType = (typeof PerformerType)[keyof typeof PerformerType];
|
|
1
17
|
export declare const ActivityIdSchema: import("arktype/internal/methods/string.ts").StringType<string, {}>;
|
|
2
18
|
export type ActivityId = typeof ActivityIdSchema.inferOut;
|
|
3
19
|
export declare const ActivityIdPropertySchema: import("arktype/internal/methods/object.ts").ObjectType<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../../src/activity/schema/base.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../../src/activity/schema/base.ts"],"names":[],"mappings":"AAWA,eAAO,MAAM,YAAY;;;;;;CAMf,CAAC;AAEX,MAAM,MAAM,eAAe,GAAG,CAAC,OAAO,YAAY,CAAC,CAAC,MAAM,OAAO,YAAY,CAAC,CAAC;AAE/E,eAAO,MAAM,aAAa;;;;;;CAMhB,CAAC;AAEX,MAAM,MAAM,gBAAgB,GAC1B,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,OAAO,aAAa,CAAC,CAAC;AAErD,eAAO,MAAM,gBAAgB,qEAAc,CAAC;AAC5C,MAAM,MAAM,UAAU,GAAG,OAAO,gBAAgB,CAAC,QAAQ,CAAC;AAE1D,eAAO,MAAM,wBAAwB;;MAEnC,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,OAAO,wBAAwB,CAAC,QAAQ,CAAC;AAE1E,eAAO,MAAM,YAAY,qEAAiB,CAAC;AAE3C,eAAO,MAAM,iBAAiB;;;MAS5B,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,OAAO,iBAAiB,CAAC,QAAQ,CAAC;AAE5D,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;MASO,CAAC;AAEtC,eAAO,MAAM,uBAAuB;;;;;;;;;;;MAGO,CAAC;AAE5C,eAAO,MAAM,uBAAuB;;;;;;;;;;MAEO,CAAC"}
|
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
import { type } from 'arktype';
|
|
2
2
|
import { OptionalDatePayloadSchema, RequiredDatePayloadSchema, } from '../../common/index.js';
|
|
3
3
|
import { MetadataPayloadPropertySchema, UpsertMetadataPayloadPropertySchema, } from '../../common/schema/metadata.js';
|
|
4
|
-
import { PerformerType } from './schema.js';
|
|
5
4
|
import { generateActivityId } from './utils.js';
|
|
5
|
+
export const ActivityType = {
|
|
6
|
+
UNKNOWN: 'unknown',
|
|
7
|
+
NOTE: 'note',
|
|
8
|
+
OPERATION: 'operation',
|
|
9
|
+
AUTHORIZATION: 'authorization',
|
|
10
|
+
AUTHENTICATION: 'authentication',
|
|
11
|
+
};
|
|
12
|
+
export const PerformerType = {
|
|
13
|
+
SYSTEM: 'system',
|
|
14
|
+
GUEST: 'guest',
|
|
15
|
+
IDENTITY: 'identity',
|
|
16
|
+
AUTOMATION: 'automation',
|
|
17
|
+
INTEGRATION: 'integration',
|
|
18
|
+
};
|
|
6
19
|
export const ActivityIdSchema = type.string;
|
|
7
20
|
export const ActivityIdPropertySchema = type({
|
|
8
21
|
id: ActivityIdSchema,
|
|
@@ -1,19 +1,4 @@
|
|
|
1
|
-
export
|
|
2
|
-
readonly UNKNOWN: "unknown";
|
|
3
|
-
readonly NOTE: "note";
|
|
4
|
-
readonly OPERATION: "operation";
|
|
5
|
-
readonly AUTHORIZATION: "authorization";
|
|
6
|
-
readonly AUTHENTICATION: "authentication";
|
|
7
|
-
};
|
|
8
|
-
export type AnyActivityType = (typeof ActivityType)[keyof typeof ActivityType];
|
|
9
|
-
export declare const PerformerType: {
|
|
10
|
-
readonly SYSTEM: "system";
|
|
11
|
-
readonly GUEST: "guest";
|
|
12
|
-
readonly IDENTITY: "identity";
|
|
13
|
-
readonly AUTOMATION: "automation";
|
|
14
|
-
readonly INTEGRATION: "integration";
|
|
15
|
-
};
|
|
16
|
-
export type AnyPerformerType = (typeof PerformerType)[keyof typeof PerformerType];
|
|
1
|
+
export { ActivityType, type AnyActivityType, PerformerType, type AnyPerformerType, } from './base.js';
|
|
17
2
|
export declare const ActivityPayloadSchema: import("arktype/internal/methods/object.ts").ObjectType<{
|
|
18
3
|
id: string;
|
|
19
4
|
performedBy: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/activity/schema/schema.ts"],"names":[],"mappings":"AAUA,
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/activity/schema/schema.ts"],"names":[],"mappings":"AAUA,OAAO,EACL,YAAY,EACZ,KAAK,eAAe,EACpB,aAAa,EACb,KAAK,gBAAgB,GACtB,MAAM,WAAW,CAAC;AAEnB,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKC,CAAC;AACpC,MAAM,MAAM,eAAe,GAAG,OAAO,qBAAqB,CAAC,QAAQ,CAAC;AAEpE,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;MAAkC,CAAC;AAC3E,MAAM,MAAM,qBAAqB,GAAG,OAAO,2BAA2B,CAAC,QAAQ,CAAC;AAEhF,eAAO,MAAM,2BAA2B;;;;;;;;;;;;MAAkC,CAAC;AAC3E,MAAM,MAAM,qBAAqB,GAAG,OAAO,2BAA2B,CAAC,QAAQ,CAAC;AAEhF,OAAO,EACL,wBAAwB,EACxB,gBAAgB,EAChB,iBAAiB,EACjB,YAAY,EACZ,KAAK,UAAU,EACf,KAAK,kBAAkB,EACvB,KAAK,WAAW,GACjB,MAAM,WAAW,CAAC;AACnB,cAAc,aAAa,CAAC;AAC5B,cAAc,2BAA2B,CAAC;AAC1C,cAAc,0BAA0B,CAAC;AACzC,cAAc,iBAAiB,CAAC;AAChC,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AAEnC,cAAc,YAAY,CAAC"}
|
|
@@ -3,20 +3,7 @@ import { AuthorizationActivityPayloadSchema } from './types/authorization.js';
|
|
|
3
3
|
import { InsertNoteActivityPayloadSchema, NoteActivityPayloadSchema, UpdateNoteActivityPayloadSchema, } from './types/note.js';
|
|
4
4
|
import { OperationActivityPayloadSchema } from './types/operation.js';
|
|
5
5
|
import { UnknownActivityPayloadSchema } from './types/unknown.js';
|
|
6
|
-
export
|
|
7
|
-
UNKNOWN: 'unknown',
|
|
8
|
-
NOTE: 'note',
|
|
9
|
-
OPERATION: 'operation',
|
|
10
|
-
AUTHORIZATION: 'authorization',
|
|
11
|
-
AUTHENTICATION: 'authentication',
|
|
12
|
-
};
|
|
13
|
-
export const PerformerType = {
|
|
14
|
-
SYSTEM: 'system',
|
|
15
|
-
GUEST: 'guest',
|
|
16
|
-
IDENTITY: 'identity',
|
|
17
|
-
AUTOMATION: 'automation',
|
|
18
|
-
INTEGRATION: 'integration',
|
|
19
|
-
};
|
|
6
|
+
export { ActivityType, PerformerType, } from './base.js';
|
|
20
7
|
export const ActivityPayloadSchema = NoteActivityPayloadSchema.or(AuthenticationActivityPayloadSchema)
|
|
21
8
|
.or(AuthorizationActivityPayloadSchema)
|
|
22
9
|
.or(OperationActivityPayloadSchema)
|