@or-sdk/idw-public 1.4.14 → 1.5.0
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/CHANGELOG.md +9 -0
- package/dist/cjs/IdwPublic.js +150 -29
- package/dist/cjs/IdwPublic.js.map +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/schemas/IDWPublicConstructorParams.js +27 -0
- package/dist/cjs/schemas/IDWPublicConstructorParams.js.map +1 -0
- package/dist/cjs/schemas/IdwPublicChannel.js +16 -0
- package/dist/cjs/schemas/IdwPublicChannel.js.map +1 -0
- package/dist/cjs/schemas/IdwPublicInfoWithStatistic.js +37 -0
- package/dist/cjs/schemas/IdwPublicInfoWithStatistic.js.map +1 -0
- package/dist/cjs/schemas/IdwPublicParams.js +8 -0
- package/dist/cjs/schemas/IdwPublicParams.js.map +1 -0
- package/dist/cjs/schemas/IdwPublicSkill.js +27 -0
- package/dist/cjs/schemas/IdwPublicSkill.js.map +1 -0
- package/dist/cjs/{types → schemas}/index.js +5 -2
- package/dist/cjs/schemas/index.js.map +1 -0
- package/dist/cjs/types.js +2 -0
- package/dist/cjs/types.js.map +1 -0
- package/dist/esm/IdwPublic.js +60 -28
- package/dist/esm/IdwPublic.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/schemas/IDWPublicConstructorParams.js +24 -0
- package/dist/esm/schemas/IDWPublicConstructorParams.js.map +1 -0
- package/dist/esm/schemas/IdwPublicChannel.js +13 -0
- package/dist/esm/schemas/IdwPublicChannel.js.map +1 -0
- package/dist/esm/schemas/IdwPublicInfoWithStatistic.js +34 -0
- package/dist/esm/schemas/IdwPublicInfoWithStatistic.js.map +1 -0
- package/dist/esm/schemas/IdwPublicParams.js +5 -0
- package/dist/esm/schemas/IdwPublicParams.js.map +1 -0
- package/dist/esm/schemas/IdwPublicSkill.js +24 -0
- package/dist/esm/schemas/IdwPublicSkill.js.map +1 -0
- package/dist/esm/schemas/index.js +6 -0
- package/dist/esm/schemas/index.js.map +1 -0
- package/dist/esm/types.js +2 -0
- package/dist/esm/types.js.map +1 -0
- package/dist/types/IdwPublic.d.ts +7 -5
- package/dist/types/IdwPublic.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/schemas/IDWPublicConstructorParams.d.ts +49 -0
- package/dist/types/schemas/IDWPublicConstructorParams.d.ts.map +1 -0
- package/dist/types/schemas/IdwPublicChannel.d.ts +72 -0
- package/dist/types/schemas/IdwPublicChannel.d.ts.map +1 -0
- package/dist/types/schemas/IdwPublicInfoWithStatistic.d.ts +116 -0
- package/dist/types/schemas/IdwPublicInfoWithStatistic.d.ts.map +1 -0
- package/dist/types/schemas/IdwPublicParams.d.ts +30 -0
- package/dist/types/schemas/IdwPublicParams.d.ts.map +1 -0
- package/dist/types/schemas/IdwPublicSkill.d.ts +181 -0
- package/dist/types/schemas/IdwPublicSkill.d.ts.map +1 -0
- package/dist/types/schemas/index.d.ts +6 -0
- package/dist/types/schemas/index.d.ts.map +1 -0
- package/dist/types/types.d.ts +1 -0
- package/dist/types/types.d.ts.map +1 -0
- package/package.json +4 -3
- package/src/IdwPublic.ts +170 -48
- package/src/index.ts +1 -1
- package/src/schemas/IDWPublicConstructorParams.ts +44 -0
- package/src/schemas/IdwPublicChannel.ts +16 -0
- package/src/schemas/IdwPublicInfoWithStatistic.ts +41 -0
- package/src/schemas/IdwPublicParams.ts +6 -0
- package/src/schemas/IdwPublicSkill.ts +31 -0
- package/src/schemas/index.ts +5 -0
- package/src/types.ts +0 -0
- package/dist/cjs/types/config.js +0 -3
- package/dist/cjs/types/config.js.map +0 -1
- package/dist/cjs/types/idwPublic.js +0 -10
- package/dist/cjs/types/idwPublic.js.map +0 -1
- package/dist/cjs/types/index.js.map +0 -1
- package/dist/esm/types/config.js +0 -2
- package/dist/esm/types/config.js.map +0 -1
- package/dist/esm/types/idwPublic.js +0 -7
- package/dist/esm/types/idwPublic.js.map +0 -1
- package/dist/esm/types/index.js +0 -3
- package/dist/esm/types/index.js.map +0 -1
- package/dist/types/types/config.d.ts +0 -7
- package/dist/types/types/config.d.ts.map +0 -1
- package/dist/types/types/idwPublic.d.ts +0 -73
- package/dist/types/types/idwPublic.d.ts.map +0 -1
- package/dist/types/types/index.d.ts +0 -3
- package/dist/types/types/index.d.ts.map +0 -1
- package/src/types/config.ts +0 -18
- package/src/types/idwPublic.ts +0 -79
- package/src/types/index.ts +0 -2
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export const ActiveFlowTotalCounter = z.object({
|
|
3
|
+
activeFlowTotal: z.number().int().min(0),
|
|
4
|
+
});
|
|
5
|
+
export const TotalStepsCounter = z.object({
|
|
6
|
+
totalSteps: z.number().int().min(0),
|
|
7
|
+
});
|
|
8
|
+
const IdwPublicBaseInfo = z.object({
|
|
9
|
+
slug: z.string(),
|
|
10
|
+
name: z.string(),
|
|
11
|
+
publicPageLink: z.string().url(),
|
|
12
|
+
thumbnail: z.string().url(),
|
|
13
|
+
role: z.string(),
|
|
14
|
+
description: z.string(),
|
|
15
|
+
avatar: z.string().url(),
|
|
16
|
+
appId: z.string().optional(),
|
|
17
|
+
initializationStatus: z.enum(['IN_PROGRESS', 'COMPLETED', 'CANCELED']).optional(),
|
|
18
|
+
});
|
|
19
|
+
export const IdwPublicInfoWithStatistic = IdwPublicBaseInfo
|
|
20
|
+
.merge(ActiveFlowTotalCounter)
|
|
21
|
+
.merge(TotalStepsCounter)
|
|
22
|
+
.merge(z.object({
|
|
23
|
+
channels: z.number().int().min(0),
|
|
24
|
+
memory: z.number().int().min(0),
|
|
25
|
+
wisdom: z.number().int().min(0),
|
|
26
|
+
skills: z.number().int().min(0),
|
|
27
|
+
lastActivationTime: z.number().int().min(0).nullable(),
|
|
28
|
+
isOnline: z.boolean(),
|
|
29
|
+
totalSteps: z.number().int().min(0),
|
|
30
|
+
totalSkillSteps: z.number().int().min(0),
|
|
31
|
+
totalChannelSteps: z.number().int().min(0),
|
|
32
|
+
domain: z.number().int().min(0),
|
|
33
|
+
}));
|
|
34
|
+
//# sourceMappingURL=IdwPublicInfoWithStatistic.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IdwPublicInfoWithStatistic.js","sourceRoot":"","sources":["../../../src/schemas/IdwPublicInfoWithStatistic.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC7C,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;CACzC,CAAC,CAAC;AAGH,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,CAAC,MAAM,CAAC;IACxC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;CACpC,CAAC,CAAC;AAGH,MAAM,iBAAiB,GAAG,CAAC,CAAC,MAAM,CAAC;IACjC,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IAChC,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IAC3B,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;IACvB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACxB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,oBAAoB,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,aAAa,EAAE,WAAW,EAAE,UAAU,CAAC,CAAC,CAAC,QAAQ,EAAE;CAClF,CAAC,CAAC;AAGH,MAAM,CAAC,MAAM,0BAA0B,GAAG,iBAAiB;KACxD,KAAK,CAAC,sBAAsB,CAAC;KAC7B,KAAK,CAAC,iBAAiB,CAAC;KACxB,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC;IACd,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IACjC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC/B,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC/B,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC/B,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IACtD,QAAQ,EAAE,CAAC,CAAC,OAAO,EAAE;IACrB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IACnC,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IACxC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC1C,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;CAChC,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export const IdwSlugParam = z.object({ idwSlug: z.string() }).strict();
|
|
3
|
+
export const AccountIdParam = z.object({ accountId: z.string().uuid() }).strict();
|
|
4
|
+
export const IdwPublicParams = z.union([IdwSlugParam, AccountIdParam]);
|
|
5
|
+
//# sourceMappingURL=IdwPublicParams.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IdwPublicParams.js","sourceRoot":"","sources":["../../../src/schemas/IdwPublicParams.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC;AACvE,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC,EAAE,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC;AAClF,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,CAAC,YAAY,EAAE,cAAc,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export const Tag = z.object({
|
|
3
|
+
id: z.string(),
|
|
4
|
+
name: z.string(),
|
|
5
|
+
description: z.string().optional(),
|
|
6
|
+
uid: z.string(),
|
|
7
|
+
});
|
|
8
|
+
export const Domain = z.object({
|
|
9
|
+
id: z.string(),
|
|
10
|
+
name: z.string(),
|
|
11
|
+
abbreviation: z.string(),
|
|
12
|
+
});
|
|
13
|
+
export const IdwPublicSkill = z.object({
|
|
14
|
+
id: z.string(),
|
|
15
|
+
name: z.string(),
|
|
16
|
+
createdAt: z.number().int().positive(),
|
|
17
|
+
description: z.string().optional(),
|
|
18
|
+
isNew: z.boolean(),
|
|
19
|
+
abbreviation: z.string(),
|
|
20
|
+
domains: z.array(Domain),
|
|
21
|
+
tags: z.array(Tag),
|
|
22
|
+
});
|
|
23
|
+
export const IdwPublicSkillList = z.array(IdwPublicSkill);
|
|
24
|
+
//# sourceMappingURL=IdwPublicSkill.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IdwPublicSkill.js","sourceRoot":"","sources":["../../../src/schemas/IdwPublicSkill.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,MAAM,CAAC,MAAM,GAAG,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1B,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE;CAChB,CAAC,CAAC;AAGH,MAAM,CAAC,MAAM,MAAM,GAAG,CAAC,CAAC,MAAM,CAAC;IAC7B,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;CACzB,CAAC,CAAC;AAGH,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACtC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,KAAK,EAAE,CAAC,CAAC,OAAO,EAAE;IAClB,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC;IACxB,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/schemas/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":""}
|
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
import { IDWPublicConfig,
|
|
1
|
+
import { IDWPublicConfig, IdwPublicParams, IdwPublicInfoWithStatistic, IdwPublicChannelList, IdwPublicSkillList } from './schemas';
|
|
2
2
|
export declare class IdwPublic {
|
|
3
3
|
private readonly provider;
|
|
4
4
|
private readonly idwProviderNameSpace;
|
|
5
|
-
|
|
5
|
+
private readonly validate;
|
|
6
|
+
constructor(params: IDWPublicConfig);
|
|
6
7
|
getIdwInfoWithStatistic(params: IdwPublicParams): Promise<IdwPublicInfoWithStatistic>;
|
|
7
|
-
getActiveChannels(params: IdwPublicParams): Promise<
|
|
8
|
-
getAllChannels(params: IdwPublicParams): Promise<
|
|
9
|
-
getSkills(params: IdwPublicParams): Promise<
|
|
8
|
+
getActiveChannels(params: IdwPublicParams): Promise<IdwPublicChannelList>;
|
|
9
|
+
getAllChannels(params: IdwPublicParams): Promise<IdwPublicChannelList>;
|
|
10
|
+
getSkills(params: IdwPublicParams): Promise<IdwPublicSkillList>;
|
|
10
11
|
getIdwVcf(params: IdwPublicParams): Promise<string>;
|
|
12
|
+
private requestWithValidation;
|
|
11
13
|
private buildRoute;
|
|
12
14
|
}
|
|
13
15
|
//# sourceMappingURL=IdwPublic.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IdwPublic.d.ts","sourceRoot":"","sources":["../../src/IdwPublic.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,eAAe,EACf,
|
|
1
|
+
{"version":3,"file":"IdwPublic.d.ts","sourceRoot":"","sources":["../../src/IdwPublic.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,eAAe,EACf,eAAe,EACf,0BAA0B,EAC1B,oBAAoB,EACpB,kBAAkB,EACnB,MAAM,WAAW,CAAC;AAQnB,qBAAa,SAAS;IACpB,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAY;IACrC,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAAS;IAC9C,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAU;gBAEvB,MAAM,EAAE,eAAe;IAkCtB,uBAAuB,CAAC,MAAM,EAAE,eAAe,GAAG,OAAO,CAAC,0BAA0B,CAAC;IAgCrF,iBAAiB,CAAC,MAAM,EAAE,eAAe,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAgCzE,cAAc,CAAC,MAAM,EAAE,eAAe,GAAG,OAAO,CAAC,oBAAoB,CAAC;IA+BtE,SAAS,CAAC,MAAM,EAAE,eAAe,GAAG,OAAO,CAAC,kBAAkB,CAAC;IA+B/D,SAAS,CAAC,MAAM,EAAE,eAAe,GAAG,OAAO,CAAC,MAAM,CAAC;YAelD,qBAAqB;IAenC,OAAO,CAAC,UAAU;CAGnB"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,cAAc,WAAW,CAAC"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const IDWPublicConfig: z.ZodIntersection<z.ZodObject<{
|
|
3
|
+
emUrl: z.ZodOptional<z.ZodString>;
|
|
4
|
+
serviceDiscoveryUrl: z.ZodOptional<z.ZodString>;
|
|
5
|
+
providerAccountId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"provider">]>>;
|
|
6
|
+
idwProviderNameSpace: z.ZodOptional<z.ZodString>;
|
|
7
|
+
validate: z.ZodOptional<z.ZodBoolean>;
|
|
8
|
+
}, "strip", z.ZodTypeAny, {
|
|
9
|
+
emUrl?: string | undefined;
|
|
10
|
+
serviceDiscoveryUrl?: string | undefined;
|
|
11
|
+
providerAccountId?: string | undefined;
|
|
12
|
+
idwProviderNameSpace?: string | undefined;
|
|
13
|
+
validate?: boolean | undefined;
|
|
14
|
+
}, {
|
|
15
|
+
emUrl?: string | undefined;
|
|
16
|
+
serviceDiscoveryUrl?: string | undefined;
|
|
17
|
+
providerAccountId?: string | undefined;
|
|
18
|
+
idwProviderNameSpace?: string | undefined;
|
|
19
|
+
validate?: boolean | undefined;
|
|
20
|
+
}>, z.ZodUnion<[z.ZodObject<{
|
|
21
|
+
emUrl: z.ZodUndefined;
|
|
22
|
+
serviceDiscoveryUrl: z.ZodString;
|
|
23
|
+
}, "strip", z.ZodTypeAny, {
|
|
24
|
+
serviceDiscoveryUrl: string;
|
|
25
|
+
emUrl?: undefined;
|
|
26
|
+
}, {
|
|
27
|
+
serviceDiscoveryUrl: string;
|
|
28
|
+
emUrl?: undefined;
|
|
29
|
+
}>, z.ZodObject<{
|
|
30
|
+
emUrl: z.ZodString;
|
|
31
|
+
serviceDiscoveryUrl: z.ZodUndefined;
|
|
32
|
+
}, "strip", z.ZodTypeAny, {
|
|
33
|
+
emUrl: string;
|
|
34
|
+
serviceDiscoveryUrl?: undefined;
|
|
35
|
+
}, {
|
|
36
|
+
emUrl: string;
|
|
37
|
+
serviceDiscoveryUrl?: undefined;
|
|
38
|
+
}>, z.ZodObject<{
|
|
39
|
+
emUrl: z.ZodString;
|
|
40
|
+
serviceDiscoveryUrl: z.ZodString;
|
|
41
|
+
}, "strip", z.ZodTypeAny, {
|
|
42
|
+
emUrl: string;
|
|
43
|
+
serviceDiscoveryUrl: string;
|
|
44
|
+
}, {
|
|
45
|
+
emUrl: string;
|
|
46
|
+
serviceDiscoveryUrl: string;
|
|
47
|
+
}>]>>;
|
|
48
|
+
export type IDWPublicConfig = z.infer<typeof IDWPublicConfig>;
|
|
49
|
+
//# sourceMappingURL=IDWPublicConstructorParams.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IDWPublicConstructorParams.d.ts","sourceRoot":"","sources":["../../../src/schemas/IDWPublicConstructorParams.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAwCqE,CAAC;AAClG,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC"}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const IdwPublicChannel: z.ZodObject<{
|
|
3
|
+
id: z.ZodString;
|
|
4
|
+
name: z.ZodString;
|
|
5
|
+
icon: z.ZodOptional<z.ZodObject<{
|
|
6
|
+
light: z.ZodString;
|
|
7
|
+
dark: z.ZodString;
|
|
8
|
+
}, "strict", z.ZodTypeAny, {
|
|
9
|
+
light: string;
|
|
10
|
+
dark: string;
|
|
11
|
+
}, {
|
|
12
|
+
light: string;
|
|
13
|
+
dark: string;
|
|
14
|
+
}>>;
|
|
15
|
+
active: z.ZodBoolean;
|
|
16
|
+
url: z.ZodOptional<z.ZodString>;
|
|
17
|
+
}, "strip", z.ZodTypeAny, {
|
|
18
|
+
id: string;
|
|
19
|
+
name: string;
|
|
20
|
+
active: boolean;
|
|
21
|
+
icon?: {
|
|
22
|
+
light: string;
|
|
23
|
+
dark: string;
|
|
24
|
+
} | undefined;
|
|
25
|
+
url?: string | undefined;
|
|
26
|
+
}, {
|
|
27
|
+
id: string;
|
|
28
|
+
name: string;
|
|
29
|
+
active: boolean;
|
|
30
|
+
icon?: {
|
|
31
|
+
light: string;
|
|
32
|
+
dark: string;
|
|
33
|
+
} | undefined;
|
|
34
|
+
url?: string | undefined;
|
|
35
|
+
}>;
|
|
36
|
+
export type IdwPublicChannel = z.infer<typeof IdwPublicChannel>;
|
|
37
|
+
export declare const IdwPublicChannelList: z.ZodArray<z.ZodObject<{
|
|
38
|
+
id: z.ZodString;
|
|
39
|
+
name: z.ZodString;
|
|
40
|
+
icon: z.ZodOptional<z.ZodObject<{
|
|
41
|
+
light: z.ZodString;
|
|
42
|
+
dark: z.ZodString;
|
|
43
|
+
}, "strict", z.ZodTypeAny, {
|
|
44
|
+
light: string;
|
|
45
|
+
dark: string;
|
|
46
|
+
}, {
|
|
47
|
+
light: string;
|
|
48
|
+
dark: string;
|
|
49
|
+
}>>;
|
|
50
|
+
active: z.ZodBoolean;
|
|
51
|
+
url: z.ZodOptional<z.ZodString>;
|
|
52
|
+
}, "strip", z.ZodTypeAny, {
|
|
53
|
+
id: string;
|
|
54
|
+
name: string;
|
|
55
|
+
active: boolean;
|
|
56
|
+
icon?: {
|
|
57
|
+
light: string;
|
|
58
|
+
dark: string;
|
|
59
|
+
} | undefined;
|
|
60
|
+
url?: string | undefined;
|
|
61
|
+
}, {
|
|
62
|
+
id: string;
|
|
63
|
+
name: string;
|
|
64
|
+
active: boolean;
|
|
65
|
+
icon?: {
|
|
66
|
+
light: string;
|
|
67
|
+
dark: string;
|
|
68
|
+
} | undefined;
|
|
69
|
+
url?: string | undefined;
|
|
70
|
+
}>, "many">;
|
|
71
|
+
export type IdwPublicChannelList = z.infer<typeof IdwPublicChannelList>;
|
|
72
|
+
//# sourceMappingURL=IdwPublicChannel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IdwPublicChannel.d.ts","sourceRoot":"","sources":["../../../src/schemas/IdwPublicChannel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAS3B,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAA4B,CAAC;AAC9D,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC"}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const ActiveFlowTotalCounter: z.ZodObject<{
|
|
3
|
+
activeFlowTotal: z.ZodNumber;
|
|
4
|
+
}, "strip", z.ZodTypeAny, {
|
|
5
|
+
activeFlowTotal: number;
|
|
6
|
+
}, {
|
|
7
|
+
activeFlowTotal: number;
|
|
8
|
+
}>;
|
|
9
|
+
export type ActiveFlowTotalCounter = z.infer<typeof ActiveFlowTotalCounter>;
|
|
10
|
+
export declare const TotalStepsCounter: z.ZodObject<{
|
|
11
|
+
totalSteps: z.ZodNumber;
|
|
12
|
+
}, "strip", z.ZodTypeAny, {
|
|
13
|
+
totalSteps: number;
|
|
14
|
+
}, {
|
|
15
|
+
totalSteps: number;
|
|
16
|
+
}>;
|
|
17
|
+
export type TotalStepsCounter = z.infer<typeof TotalStepsCounter>;
|
|
18
|
+
declare const IdwPublicBaseInfo: z.ZodObject<{
|
|
19
|
+
slug: z.ZodString;
|
|
20
|
+
name: z.ZodString;
|
|
21
|
+
publicPageLink: z.ZodString;
|
|
22
|
+
thumbnail: z.ZodString;
|
|
23
|
+
role: z.ZodString;
|
|
24
|
+
description: z.ZodString;
|
|
25
|
+
avatar: z.ZodString;
|
|
26
|
+
appId: z.ZodOptional<z.ZodString>;
|
|
27
|
+
initializationStatus: z.ZodOptional<z.ZodEnum<["IN_PROGRESS", "COMPLETED", "CANCELED"]>>;
|
|
28
|
+
}, "strip", z.ZodTypeAny, {
|
|
29
|
+
name: string;
|
|
30
|
+
slug: string;
|
|
31
|
+
publicPageLink: string;
|
|
32
|
+
thumbnail: string;
|
|
33
|
+
role: string;
|
|
34
|
+
description: string;
|
|
35
|
+
avatar: string;
|
|
36
|
+
appId?: string | undefined;
|
|
37
|
+
initializationStatus?: "IN_PROGRESS" | "COMPLETED" | "CANCELED" | undefined;
|
|
38
|
+
}, {
|
|
39
|
+
name: string;
|
|
40
|
+
slug: string;
|
|
41
|
+
publicPageLink: string;
|
|
42
|
+
thumbnail: string;
|
|
43
|
+
role: string;
|
|
44
|
+
description: string;
|
|
45
|
+
avatar: string;
|
|
46
|
+
appId?: string | undefined;
|
|
47
|
+
initializationStatus?: "IN_PROGRESS" | "COMPLETED" | "CANCELED" | undefined;
|
|
48
|
+
}>;
|
|
49
|
+
export type IdwPublicBaseInfo = z.infer<typeof IdwPublicBaseInfo>;
|
|
50
|
+
export declare const IdwPublicInfoWithStatistic: z.ZodObject<{
|
|
51
|
+
name: z.ZodString;
|
|
52
|
+
activeFlowTotal: z.ZodNumber;
|
|
53
|
+
slug: z.ZodString;
|
|
54
|
+
publicPageLink: z.ZodString;
|
|
55
|
+
thumbnail: z.ZodString;
|
|
56
|
+
role: z.ZodString;
|
|
57
|
+
description: z.ZodString;
|
|
58
|
+
avatar: z.ZodString;
|
|
59
|
+
appId: z.ZodOptional<z.ZodString>;
|
|
60
|
+
initializationStatus: z.ZodOptional<z.ZodEnum<["IN_PROGRESS", "COMPLETED", "CANCELED"]>>;
|
|
61
|
+
channels: z.ZodNumber;
|
|
62
|
+
memory: z.ZodNumber;
|
|
63
|
+
wisdom: z.ZodNumber;
|
|
64
|
+
skills: z.ZodNumber;
|
|
65
|
+
lastActivationTime: z.ZodNullable<z.ZodNumber>;
|
|
66
|
+
isOnline: z.ZodBoolean;
|
|
67
|
+
totalSteps: z.ZodNumber;
|
|
68
|
+
totalSkillSteps: z.ZodNumber;
|
|
69
|
+
totalChannelSteps: z.ZodNumber;
|
|
70
|
+
domain: z.ZodNumber;
|
|
71
|
+
}, "strip", z.ZodTypeAny, {
|
|
72
|
+
name: string;
|
|
73
|
+
activeFlowTotal: number;
|
|
74
|
+
totalSteps: number;
|
|
75
|
+
slug: string;
|
|
76
|
+
publicPageLink: string;
|
|
77
|
+
thumbnail: string;
|
|
78
|
+
role: string;
|
|
79
|
+
description: string;
|
|
80
|
+
avatar: string;
|
|
81
|
+
channels: number;
|
|
82
|
+
memory: number;
|
|
83
|
+
wisdom: number;
|
|
84
|
+
skills: number;
|
|
85
|
+
lastActivationTime: number | null;
|
|
86
|
+
isOnline: boolean;
|
|
87
|
+
totalSkillSteps: number;
|
|
88
|
+
totalChannelSteps: number;
|
|
89
|
+
domain: number;
|
|
90
|
+
appId?: string | undefined;
|
|
91
|
+
initializationStatus?: "IN_PROGRESS" | "COMPLETED" | "CANCELED" | undefined;
|
|
92
|
+
}, {
|
|
93
|
+
name: string;
|
|
94
|
+
activeFlowTotal: number;
|
|
95
|
+
totalSteps: number;
|
|
96
|
+
slug: string;
|
|
97
|
+
publicPageLink: string;
|
|
98
|
+
thumbnail: string;
|
|
99
|
+
role: string;
|
|
100
|
+
description: string;
|
|
101
|
+
avatar: string;
|
|
102
|
+
channels: number;
|
|
103
|
+
memory: number;
|
|
104
|
+
wisdom: number;
|
|
105
|
+
skills: number;
|
|
106
|
+
lastActivationTime: number | null;
|
|
107
|
+
isOnline: boolean;
|
|
108
|
+
totalSkillSteps: number;
|
|
109
|
+
totalChannelSteps: number;
|
|
110
|
+
domain: number;
|
|
111
|
+
appId?: string | undefined;
|
|
112
|
+
initializationStatus?: "IN_PROGRESS" | "COMPLETED" | "CANCELED" | undefined;
|
|
113
|
+
}>;
|
|
114
|
+
export type IdwPublicInfoWithStatistic = z.infer<typeof IdwPublicInfoWithStatistic>;
|
|
115
|
+
export {};
|
|
116
|
+
//# sourceMappingURL=IdwPublicInfoWithStatistic.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IdwPublicInfoWithStatistic.d.ts","sourceRoot":"","sources":["../../../src/schemas/IdwPublicInfoWithStatistic.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,sBAAsB;;;;;;EAEjC,CAAC;AACH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAE5E,eAAO,MAAM,iBAAiB;;;;;;EAE5B,CAAC;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAElE,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUrB,CAAC;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAElE,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAclC,CAAC;AACN,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const IdwSlugParam: z.ZodObject<{
|
|
3
|
+
idwSlug: z.ZodString;
|
|
4
|
+
}, "strict", z.ZodTypeAny, {
|
|
5
|
+
idwSlug: string;
|
|
6
|
+
}, {
|
|
7
|
+
idwSlug: string;
|
|
8
|
+
}>;
|
|
9
|
+
export declare const AccountIdParam: z.ZodObject<{
|
|
10
|
+
accountId: z.ZodString;
|
|
11
|
+
}, "strict", z.ZodTypeAny, {
|
|
12
|
+
accountId: string;
|
|
13
|
+
}, {
|
|
14
|
+
accountId: string;
|
|
15
|
+
}>;
|
|
16
|
+
export declare const IdwPublicParams: z.ZodUnion<[z.ZodObject<{
|
|
17
|
+
idwSlug: z.ZodString;
|
|
18
|
+
}, "strict", z.ZodTypeAny, {
|
|
19
|
+
idwSlug: string;
|
|
20
|
+
}, {
|
|
21
|
+
idwSlug: string;
|
|
22
|
+
}>, z.ZodObject<{
|
|
23
|
+
accountId: z.ZodString;
|
|
24
|
+
}, "strict", z.ZodTypeAny, {
|
|
25
|
+
accountId: string;
|
|
26
|
+
}, {
|
|
27
|
+
accountId: string;
|
|
28
|
+
}>]>;
|
|
29
|
+
export type IdwPublicParams = z.infer<typeof IdwPublicParams>;
|
|
30
|
+
//# sourceMappingURL=IdwPublicParams.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IdwPublicParams.d.ts","sourceRoot":"","sources":["../../../src/schemas/IdwPublicParams.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,YAAY;;;;;;EAA6C,CAAC;AACvE,eAAO,MAAM,cAAc;;;;;;EAAsD,CAAC;AAClF,eAAO,MAAM,eAAe;;;;;;;;;;;;IAA0C,CAAC;AACvE,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC"}
|
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const Tag: z.ZodObject<{
|
|
3
|
+
id: z.ZodString;
|
|
4
|
+
name: z.ZodString;
|
|
5
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6
|
+
uid: z.ZodString;
|
|
7
|
+
}, "strip", z.ZodTypeAny, {
|
|
8
|
+
id: string;
|
|
9
|
+
name: string;
|
|
10
|
+
uid: string;
|
|
11
|
+
description?: string | undefined;
|
|
12
|
+
}, {
|
|
13
|
+
id: string;
|
|
14
|
+
name: string;
|
|
15
|
+
uid: string;
|
|
16
|
+
description?: string | undefined;
|
|
17
|
+
}>;
|
|
18
|
+
export type Tag = z.infer<typeof Tag>;
|
|
19
|
+
export declare const Domain: z.ZodObject<{
|
|
20
|
+
id: z.ZodString;
|
|
21
|
+
name: z.ZodString;
|
|
22
|
+
abbreviation: z.ZodString;
|
|
23
|
+
}, "strip", z.ZodTypeAny, {
|
|
24
|
+
id: string;
|
|
25
|
+
name: string;
|
|
26
|
+
abbreviation: string;
|
|
27
|
+
}, {
|
|
28
|
+
id: string;
|
|
29
|
+
name: string;
|
|
30
|
+
abbreviation: string;
|
|
31
|
+
}>;
|
|
32
|
+
export type Domain = z.infer<typeof Domain>;
|
|
33
|
+
export declare const IdwPublicSkill: z.ZodObject<{
|
|
34
|
+
id: z.ZodString;
|
|
35
|
+
name: z.ZodString;
|
|
36
|
+
createdAt: z.ZodNumber;
|
|
37
|
+
description: z.ZodOptional<z.ZodString>;
|
|
38
|
+
isNew: z.ZodBoolean;
|
|
39
|
+
abbreviation: z.ZodString;
|
|
40
|
+
domains: z.ZodArray<z.ZodObject<{
|
|
41
|
+
id: z.ZodString;
|
|
42
|
+
name: z.ZodString;
|
|
43
|
+
abbreviation: z.ZodString;
|
|
44
|
+
}, "strip", z.ZodTypeAny, {
|
|
45
|
+
id: string;
|
|
46
|
+
name: string;
|
|
47
|
+
abbreviation: string;
|
|
48
|
+
}, {
|
|
49
|
+
id: string;
|
|
50
|
+
name: string;
|
|
51
|
+
abbreviation: string;
|
|
52
|
+
}>, "many">;
|
|
53
|
+
tags: z.ZodArray<z.ZodObject<{
|
|
54
|
+
id: z.ZodString;
|
|
55
|
+
name: z.ZodString;
|
|
56
|
+
description: z.ZodOptional<z.ZodString>;
|
|
57
|
+
uid: z.ZodString;
|
|
58
|
+
}, "strip", z.ZodTypeAny, {
|
|
59
|
+
id: string;
|
|
60
|
+
name: string;
|
|
61
|
+
uid: string;
|
|
62
|
+
description?: string | undefined;
|
|
63
|
+
}, {
|
|
64
|
+
id: string;
|
|
65
|
+
name: string;
|
|
66
|
+
uid: string;
|
|
67
|
+
description?: string | undefined;
|
|
68
|
+
}>, "many">;
|
|
69
|
+
}, "strip", z.ZodTypeAny, {
|
|
70
|
+
id: string;
|
|
71
|
+
name: string;
|
|
72
|
+
abbreviation: string;
|
|
73
|
+
createdAt: number;
|
|
74
|
+
isNew: boolean;
|
|
75
|
+
domains: {
|
|
76
|
+
id: string;
|
|
77
|
+
name: string;
|
|
78
|
+
abbreviation: string;
|
|
79
|
+
}[];
|
|
80
|
+
tags: {
|
|
81
|
+
id: string;
|
|
82
|
+
name: string;
|
|
83
|
+
uid: string;
|
|
84
|
+
description?: string | undefined;
|
|
85
|
+
}[];
|
|
86
|
+
description?: string | undefined;
|
|
87
|
+
}, {
|
|
88
|
+
id: string;
|
|
89
|
+
name: string;
|
|
90
|
+
abbreviation: string;
|
|
91
|
+
createdAt: number;
|
|
92
|
+
isNew: boolean;
|
|
93
|
+
domains: {
|
|
94
|
+
id: string;
|
|
95
|
+
name: string;
|
|
96
|
+
abbreviation: string;
|
|
97
|
+
}[];
|
|
98
|
+
tags: {
|
|
99
|
+
id: string;
|
|
100
|
+
name: string;
|
|
101
|
+
uid: string;
|
|
102
|
+
description?: string | undefined;
|
|
103
|
+
}[];
|
|
104
|
+
description?: string | undefined;
|
|
105
|
+
}>;
|
|
106
|
+
export type IdwPublicSkill = z.infer<typeof IdwPublicSkill>;
|
|
107
|
+
export declare const IdwPublicSkillList: z.ZodArray<z.ZodObject<{
|
|
108
|
+
id: z.ZodString;
|
|
109
|
+
name: z.ZodString;
|
|
110
|
+
createdAt: z.ZodNumber;
|
|
111
|
+
description: z.ZodOptional<z.ZodString>;
|
|
112
|
+
isNew: z.ZodBoolean;
|
|
113
|
+
abbreviation: z.ZodString;
|
|
114
|
+
domains: z.ZodArray<z.ZodObject<{
|
|
115
|
+
id: z.ZodString;
|
|
116
|
+
name: z.ZodString;
|
|
117
|
+
abbreviation: z.ZodString;
|
|
118
|
+
}, "strip", z.ZodTypeAny, {
|
|
119
|
+
id: string;
|
|
120
|
+
name: string;
|
|
121
|
+
abbreviation: string;
|
|
122
|
+
}, {
|
|
123
|
+
id: string;
|
|
124
|
+
name: string;
|
|
125
|
+
abbreviation: string;
|
|
126
|
+
}>, "many">;
|
|
127
|
+
tags: z.ZodArray<z.ZodObject<{
|
|
128
|
+
id: z.ZodString;
|
|
129
|
+
name: z.ZodString;
|
|
130
|
+
description: z.ZodOptional<z.ZodString>;
|
|
131
|
+
uid: z.ZodString;
|
|
132
|
+
}, "strip", z.ZodTypeAny, {
|
|
133
|
+
id: string;
|
|
134
|
+
name: string;
|
|
135
|
+
uid: string;
|
|
136
|
+
description?: string | undefined;
|
|
137
|
+
}, {
|
|
138
|
+
id: string;
|
|
139
|
+
name: string;
|
|
140
|
+
uid: string;
|
|
141
|
+
description?: string | undefined;
|
|
142
|
+
}>, "many">;
|
|
143
|
+
}, "strip", z.ZodTypeAny, {
|
|
144
|
+
id: string;
|
|
145
|
+
name: string;
|
|
146
|
+
abbreviation: string;
|
|
147
|
+
createdAt: number;
|
|
148
|
+
isNew: boolean;
|
|
149
|
+
domains: {
|
|
150
|
+
id: string;
|
|
151
|
+
name: string;
|
|
152
|
+
abbreviation: string;
|
|
153
|
+
}[];
|
|
154
|
+
tags: {
|
|
155
|
+
id: string;
|
|
156
|
+
name: string;
|
|
157
|
+
uid: string;
|
|
158
|
+
description?: string | undefined;
|
|
159
|
+
}[];
|
|
160
|
+
description?: string | undefined;
|
|
161
|
+
}, {
|
|
162
|
+
id: string;
|
|
163
|
+
name: string;
|
|
164
|
+
abbreviation: string;
|
|
165
|
+
createdAt: number;
|
|
166
|
+
isNew: boolean;
|
|
167
|
+
domains: {
|
|
168
|
+
id: string;
|
|
169
|
+
name: string;
|
|
170
|
+
abbreviation: string;
|
|
171
|
+
}[];
|
|
172
|
+
tags: {
|
|
173
|
+
id: string;
|
|
174
|
+
name: string;
|
|
175
|
+
uid: string;
|
|
176
|
+
description?: string | undefined;
|
|
177
|
+
}[];
|
|
178
|
+
description?: string | undefined;
|
|
179
|
+
}>, "many">;
|
|
180
|
+
export type IdwPublicSkillList = z.infer<typeof IdwPublicSkillList>;
|
|
181
|
+
//# sourceMappingURL=IdwPublicSkill.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IdwPublicSkill.d.ts","sourceRoot":"","sources":["../../../src/schemas/IdwPublicSkill.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,GAAG;;;;;;;;;;;;;;;EAKd,CAAC;AACH,MAAM,MAAM,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,GAAG,CAAC,CAAC;AAEtC,eAAO,MAAM,MAAM;;;;;;;;;;;;EAIjB,CAAC;AACH,MAAM,MAAM,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,MAAM,CAAC,CAAC;AAE5C,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASzB,CAAC;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAA0B,CAAC;AAC1D,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/schemas/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":""}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
2
|
+
"version": "1.5.0",
|
|
3
3
|
"name": "@or-sdk/idw-public",
|
|
4
4
|
"main": "dist/cjs/index.js",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
@@ -24,7 +24,8 @@
|
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@or-sdk/providers": "^0.2.16"
|
|
27
|
+
"@or-sdk/providers": "^0.2.16",
|
|
28
|
+
"zod": "^3.22.4"
|
|
28
29
|
},
|
|
29
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "0454bb6bb14fc84c826c8534cd419da08725eced"
|
|
30
31
|
}
|