@dainprotocol/service-sdk 2.0.6 → 2.0.8
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/client/client-auth.d.ts +8 -0
- package/dist/client/client-auth.js +23 -0
- package/dist/client/client-auth.js.map +1 -1
- package/dist/client/types.d.ts +3 -0
- package/dist/client/types.js +1 -0
- package/dist/client/types.js.map +1 -1
- package/dist/service/types.d.ts +1 -0
- package/package.json +1 -1
- package/dist/__tests__/api-sdk.test.d.ts +0 -1
- package/dist/__tests__/api-sdk.test.js +0 -102
- package/dist/__tests__/api-sdk.test.js.map +0 -1
- package/dist/__tests__/auth.test.d.ts +0 -1
- package/dist/__tests__/auth.test.js +0 -110
- package/dist/__tests__/auth.test.js.map +0 -1
- package/dist/__tests__/citations-plugin.test.d.ts +0 -1
- package/dist/__tests__/citations-plugin.test.js +0 -491
- package/dist/__tests__/citations-plugin.test.js.map +0 -1
- package/dist/__tests__/context-behavior.test.d.ts +0 -1
- package/dist/__tests__/context-behavior.test.js +0 -290
- package/dist/__tests__/context-behavior.test.js.map +0 -1
- package/dist/__tests__/convertToVercelTool.test.d.ts +0 -1
- package/dist/__tests__/convertToVercelTool.test.js +0 -527
- package/dist/__tests__/convertToVercelTool.test.js.map +0 -1
- package/dist/__tests__/core.test.d.ts +0 -1
- package/dist/__tests__/core.test.js +0 -154
- package/dist/__tests__/core.test.js.map +0 -1
- package/dist/__tests__/crypto-plugin.test.d.ts +0 -1
- package/dist/__tests__/crypto-plugin.test.js +0 -694
- package/dist/__tests__/crypto-plugin.test.js.map +0 -1
- package/dist/__tests__/humanActions.test.d.ts +0 -1
- package/dist/__tests__/humanActions.test.js +0 -221
- package/dist/__tests__/humanActions.test.js.map +0 -1
- package/dist/__tests__/integration.test.d.ts +0 -1
- package/dist/__tests__/integration.test.js +0 -1573
- package/dist/__tests__/integration.test.js.map +0 -1
- package/dist/__tests__/mealMeSchemas.test.d.ts +0 -576
- package/dist/__tests__/mealMeSchemas.test.js +0 -627
- package/dist/__tests__/mealMeSchemas.test.js.map +0 -1
- package/dist/__tests__/oauth.test.d.ts +0 -1
- package/dist/__tests__/oauth.test.js +0 -378
- package/dist/__tests__/oauth.test.js.map +0 -1
- package/dist/__tests__/oauth2-client-integration.test.d.ts +0 -1
- package/dist/__tests__/oauth2-client-integration.test.js +0 -182
- package/dist/__tests__/oauth2-client-integration.test.js.map +0 -1
- package/dist/__tests__/oauth2-context.test.d.ts +0 -1
- package/dist/__tests__/oauth2-context.test.js +0 -201
- package/dist/__tests__/oauth2-context.test.js.map +0 -1
- package/dist/__tests__/oauth2-datasource.test.d.ts +0 -1
- package/dist/__tests__/oauth2-datasource.test.js +0 -251
- package/dist/__tests__/oauth2-datasource.test.js.map +0 -1
- package/dist/__tests__/plugin.test.d.ts +0 -1
- package/dist/__tests__/plugin.test.js +0 -900
- package/dist/__tests__/plugin.test.js.map +0 -1
- package/dist/__tests__/processes.test.d.ts +0 -1
- package/dist/__tests__/processes.test.js +0 -239
- package/dist/__tests__/processes.test.js.map +0 -1
- package/dist/__tests__/streaming.test.d.ts +0 -1
- package/dist/__tests__/streaming.test.js +0 -592
- package/dist/__tests__/streaming.test.js.map +0 -1
- package/dist/__tests__/testEnums.d.ts +0 -1
- package/dist/__tests__/testEnums.js +0 -73
- package/dist/__tests__/testEnums.js.map +0 -1
- package/dist/__tests__/testOptionals.test.d.ts +0 -1
- package/dist/__tests__/testOptionals.test.js +0 -83
- package/dist/__tests__/testOptionals.test.js.map +0 -1
- package/dist/__tests__/types.test.d.ts +0 -1
- package/dist/__tests__/types.test.js +0 -98
- package/dist/__tests__/types.test.js.map +0 -1
- package/dist/client/service-auth.d.ts +0 -61
- package/dist/client/service-auth.js +0 -93
- package/dist/client/service-auth.js.map +0 -1
- package/dist/client/user-auth.d.ts +0 -74
- package/dist/client/user-auth.js +0 -137
- package/dist/client/user-auth.js.map +0 -1
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const zod_1 = require("zod");
|
|
4
|
-
const schemaStructure_1 = require("../lib/schemaStructure");
|
|
5
|
-
const convertToVercelTool_1 = require("../lib/convertToVercelTool");
|
|
6
|
-
describe('Enum types conversion', () => {
|
|
7
|
-
it('should correctly convert enum types to Vercel AI Tool parameters', () => {
|
|
8
|
-
// Define a schema with enum fields
|
|
9
|
-
const testSchema = zod_1.z.object({
|
|
10
|
-
simpleEnum: zod_1.z.enum(['A', 'B', 'C']),
|
|
11
|
-
optionalEnum: zod_1.z.enum(['X', 'Y', 'Z']).optional(),
|
|
12
|
-
nestedEnum: zod_1.z.object({
|
|
13
|
-
innerEnum: zod_1.z.enum(['inner1', 'inner2', 'inner3'])
|
|
14
|
-
})
|
|
15
|
-
});
|
|
16
|
-
// Create a mock HTTP tool
|
|
17
|
-
const httpTool = {
|
|
18
|
-
id: 'test-enum-tool',
|
|
19
|
-
name: 'Test Enum Tool',
|
|
20
|
-
description: 'A tool to test enum field conversion',
|
|
21
|
-
inputSchema: (0, schemaStructure_1.getDetailedSchemaStructure)(testSchema),
|
|
22
|
-
outputSchema: { type: 'ZodAny' }
|
|
23
|
-
};
|
|
24
|
-
// Convert the HTTP tool to a Vercel AI Tool
|
|
25
|
-
const vercelAITool = (0, convertToVercelTool_1.convertHttpToolToVercelAITool)(httpTool);
|
|
26
|
-
// Check if the conversion was successful
|
|
27
|
-
expect(vercelAITool.name).toBe('test-enum-tool');
|
|
28
|
-
expect(vercelAITool.description).toBe('A tool to test enum field conversion');
|
|
29
|
-
expect(vercelAITool.parameters).toBeInstanceOf(zod_1.z.ZodObject);
|
|
30
|
-
// Check if the fields are correctly converted
|
|
31
|
-
const schemaShape = vercelAITool.parameters._def.shape();
|
|
32
|
-
expect(schemaShape.simpleEnum).toBeInstanceOf(zod_1.z.ZodEnum);
|
|
33
|
-
expect(schemaShape.optionalEnum).toBeInstanceOf(zod_1.z.ZodOptional);
|
|
34
|
-
expect(schemaShape.optionalEnum._def.innerType).toBeInstanceOf(zod_1.z.ZodEnum);
|
|
35
|
-
expect(schemaShape.nestedEnum).toBeInstanceOf(zod_1.z.ZodObject);
|
|
36
|
-
expect(schemaShape.nestedEnum._def.shape().innerEnum).toBeInstanceOf(zod_1.z.ZodEnum);
|
|
37
|
-
// Test parsing with the converted schema
|
|
38
|
-
const validInput = {
|
|
39
|
-
simpleEnum: 'B',
|
|
40
|
-
optionalEnum: 'Y',
|
|
41
|
-
numberEnum: 2,
|
|
42
|
-
mixedEnum: 'one',
|
|
43
|
-
nestedEnum: {
|
|
44
|
-
innerEnum: 'inner2'
|
|
45
|
-
}
|
|
46
|
-
};
|
|
47
|
-
const parseResult = vercelAITool.parameters.safeParse(validInput);
|
|
48
|
-
expect(parseResult.success).toBe(true);
|
|
49
|
-
// Test parsing with invalid enum values
|
|
50
|
-
const invalidInput = {
|
|
51
|
-
simpleEnum: 'D',
|
|
52
|
-
numberEnum: 4,
|
|
53
|
-
mixedEnum: false,
|
|
54
|
-
nestedEnum: {
|
|
55
|
-
innerEnum: 'inner4'
|
|
56
|
-
}
|
|
57
|
-
};
|
|
58
|
-
const invalidParseResult = vercelAITool.parameters.safeParse(invalidInput);
|
|
59
|
-
expect(invalidParseResult.success).toBe(false);
|
|
60
|
-
// Test parsing with missing optional enum
|
|
61
|
-
const minimalInput = {
|
|
62
|
-
simpleEnum: 'A',
|
|
63
|
-
numberEnum: 1,
|
|
64
|
-
mixedEnum: true,
|
|
65
|
-
nestedEnum: {
|
|
66
|
-
innerEnum: 'inner1'
|
|
67
|
-
}
|
|
68
|
-
};
|
|
69
|
-
const minimalParseResult = vercelAITool.parameters.safeParse(minimalInput);
|
|
70
|
-
expect(minimalParseResult.success).toBe(true);
|
|
71
|
-
});
|
|
72
|
-
});
|
|
73
|
-
//# sourceMappingURL=testEnums.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"testEnums.js","sourceRoot":"","sources":["../../src/__tests__/testEnums.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const zod_1 = require("zod");
|
|
4
|
-
const schemaStructure_1 = require("../lib/schemaStructure");
|
|
5
|
-
const convertToVercelTool_1 = require("../lib/convertToVercelTool");
|
|
6
|
-
describe('Optional and default types conversion', () => {
|
|
7
|
-
it('should correctly convert optional and default types to Vercel AI Tool parameters', () => {
|
|
8
|
-
// Define a schema with optional fields and default values
|
|
9
|
-
const testSchema = zod_1.z.object({
|
|
10
|
-
requiredField: zod_1.z.string(),
|
|
11
|
-
optionalString: zod_1.z.string().optional(),
|
|
12
|
-
optionalNumberWithDefault: zod_1.z.number().optional().default(42),
|
|
13
|
-
optionalBoolean: zod_1.z.boolean().optional(),
|
|
14
|
-
defaultString: zod_1.z.string().default('default value'),
|
|
15
|
-
nestedOptional: zod_1.z.object({
|
|
16
|
-
innerOptional: zod_1.z.string().optional(),
|
|
17
|
-
innerDefault: zod_1.z.number().default(10)
|
|
18
|
-
}).optional()
|
|
19
|
-
});
|
|
20
|
-
// Create a mock HTTP tool
|
|
21
|
-
const httpTool = {
|
|
22
|
-
id: 'test-optional-default-tool',
|
|
23
|
-
name: 'Test Optional and Default Tool',
|
|
24
|
-
description: 'A tool to test optional and default field conversion',
|
|
25
|
-
inputSchema: (0, schemaStructure_1.getDetailedSchemaStructure)(testSchema),
|
|
26
|
-
outputSchema: { type: 'ZodAny' }
|
|
27
|
-
};
|
|
28
|
-
// Convert the HTTP tool to a Vercel AI Tool
|
|
29
|
-
const vercelAITool = (0, convertToVercelTool_1.convertHttpToolToVercelAITool)(httpTool);
|
|
30
|
-
// Check if the conversion was successful
|
|
31
|
-
expect(vercelAITool.name).toBe('test-optional-default-tool');
|
|
32
|
-
expect(vercelAITool.description).toBe('A tool to test optional and default field conversion');
|
|
33
|
-
expect(vercelAITool.parameters).toBeInstanceOf(zod_1.z.ZodObject);
|
|
34
|
-
// Check if the fields are correctly converted
|
|
35
|
-
const schemaShape = vercelAITool.parameters._def.shape();
|
|
36
|
-
expect(schemaShape.requiredField).toBeInstanceOf(zod_1.z.ZodString);
|
|
37
|
-
expect(schemaShape.optionalString).toBeInstanceOf(zod_1.z.ZodOptional);
|
|
38
|
-
expect(schemaShape.optionalBoolean).toBeInstanceOf(zod_1.z.ZodOptional);
|
|
39
|
-
// Update for fields with default values
|
|
40
|
-
expect(schemaShape.optionalNumberWithDefault).toBeInstanceOf(zod_1.z.ZodDefault);
|
|
41
|
-
expect(schemaShape.optionalNumberWithDefault._def.innerType).toBeInstanceOf(zod_1.z.ZodOptional);
|
|
42
|
-
expect(schemaShape.optionalNumberWithDefault._def.innerType._def.innerType).toBeInstanceOf(zod_1.z.ZodNumber);
|
|
43
|
-
expect(schemaShape.defaultString).toBeInstanceOf(zod_1.z.ZodDefault);
|
|
44
|
-
expect(schemaShape.defaultString._def.innerType).toBeInstanceOf(zod_1.z.ZodString);
|
|
45
|
-
expect(schemaShape.nestedOptional).toBeInstanceOf(zod_1.z.ZodOptional);
|
|
46
|
-
// Check nested fields
|
|
47
|
-
const nestedShape = schemaShape.nestedOptional._def.innerType._def.shape();
|
|
48
|
-
expect(nestedShape.innerOptional).toBeInstanceOf(zod_1.z.ZodOptional);
|
|
49
|
-
expect(nestedShape.innerDefault).toBeInstanceOf(zod_1.z.ZodDefault);
|
|
50
|
-
expect(nestedShape.innerDefault._def.innerType).toBeInstanceOf(zod_1.z.ZodNumber);
|
|
51
|
-
// Test parsing with the converted schema
|
|
52
|
-
const validInput = {
|
|
53
|
-
requiredField: 'test',
|
|
54
|
-
optionalString: 'optional',
|
|
55
|
-
nestedOptional: {
|
|
56
|
-
innerOptional: 'nested'
|
|
57
|
-
}
|
|
58
|
-
};
|
|
59
|
-
const parseResult = vercelAITool.parameters.safeParse(validInput);
|
|
60
|
-
expect(parseResult.success).toBe(true);
|
|
61
|
-
// Test parsing with missing optional fields and check default values
|
|
62
|
-
const minimalInput = {
|
|
63
|
-
requiredField: 'test'
|
|
64
|
-
};
|
|
65
|
-
const minimalParseResult = vercelAITool.parameters.safeParse(minimalInput);
|
|
66
|
-
expect(minimalParseResult.success).toBe(true);
|
|
67
|
-
if (minimalParseResult.success) {
|
|
68
|
-
expect(minimalParseResult.data.optionalNumberWithDefault).toBe(42);
|
|
69
|
-
expect(minimalParseResult.data.defaultString).toBe('default value');
|
|
70
|
-
}
|
|
71
|
-
// Test nested default values
|
|
72
|
-
const nestedInput = {
|
|
73
|
-
requiredField: 'test',
|
|
74
|
-
nestedOptional: {}
|
|
75
|
-
};
|
|
76
|
-
const nestedParseResult = vercelAITool.parameters.safeParse(nestedInput);
|
|
77
|
-
expect(nestedParseResult.success).toBe(true);
|
|
78
|
-
if (nestedParseResult.success) {
|
|
79
|
-
expect(nestedParseResult.data.nestedOptional?.innerDefault).toBe(10);
|
|
80
|
-
}
|
|
81
|
-
});
|
|
82
|
-
});
|
|
83
|
-
//# sourceMappingURL=testOptionals.test.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"testOptionals.test.js","sourceRoot":"","sources":["../../src/__tests__/testOptionals.test.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// File: src/__tests__/types.test.ts
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
const zod_1 = require("zod");
|
|
5
|
-
describe("DAIN Framework Types", () => {
|
|
6
|
-
test("AgentInfo type is correctly defined", () => {
|
|
7
|
-
const agentInfo = {
|
|
8
|
-
agentId: "test-agent",
|
|
9
|
-
address: "0x1234567890123456789012345678901234567890",
|
|
10
|
-
smartAccountPDA: "1234567890123456789012345678901234567890",
|
|
11
|
-
id: "dain_id_1234567890123456789012345678901234567890",
|
|
12
|
-
};
|
|
13
|
-
expect(agentInfo.agentId).toBe("test-agent");
|
|
14
|
-
expect(agentInfo.address).toBe("0x1234567890123456789012345678901234567890");
|
|
15
|
-
});
|
|
16
|
-
test("PricingInfo type is correctly defined", () => {
|
|
17
|
-
const pricingInfo = {
|
|
18
|
-
pricePerUse: 0.01,
|
|
19
|
-
currency: "USD",
|
|
20
|
-
};
|
|
21
|
-
expect(pricingInfo.pricePerUse).toBe(0.01);
|
|
22
|
-
expect(pricingInfo.currency).toBe("USD");
|
|
23
|
-
});
|
|
24
|
-
test("ToolConfig type is correctly defined", () => {
|
|
25
|
-
const toolConfig = {
|
|
26
|
-
id: "get-weather",
|
|
27
|
-
name: "Get Weather",
|
|
28
|
-
description: "Fetches weather for a city",
|
|
29
|
-
input: zod_1.z.object({ city: zod_1.z.string() }),
|
|
30
|
-
output: zod_1.z.object({ temperature: zod_1.z.number() }),
|
|
31
|
-
pricing: { pricePerUse: 0.01, currency: "USD" },
|
|
32
|
-
handler: async (input, agentInfo) => ({
|
|
33
|
-
text: `The temperature is 25°C`,
|
|
34
|
-
data: { temperature: 25 },
|
|
35
|
-
ui: null
|
|
36
|
-
}),
|
|
37
|
-
};
|
|
38
|
-
expect(toolConfig.id).toBe("get-weather");
|
|
39
|
-
expect(toolConfig.input.shape.city).toBeInstanceOf(zod_1.z.ZodString);
|
|
40
|
-
expect(toolConfig.output.shape.temperature).toBeInstanceOf(zod_1.z.ZodNumber);
|
|
41
|
-
});
|
|
42
|
-
test("ServiceConfig type is correctly defined", () => {
|
|
43
|
-
const serviceConfig = {
|
|
44
|
-
id: "weather-service",
|
|
45
|
-
name: "Weather Service",
|
|
46
|
-
description: "Provides weather information",
|
|
47
|
-
metadata: {
|
|
48
|
-
capabilities: ["current-weather", "forecast"],
|
|
49
|
-
languages: ["en", "es"],
|
|
50
|
-
},
|
|
51
|
-
recommendedPrompt: "Ask about the weather",
|
|
52
|
-
recommendedTools: ["get-weather", "get-forecast"],
|
|
53
|
-
};
|
|
54
|
-
expect(serviceConfig.id).toBe("weather-service");
|
|
55
|
-
expect(serviceConfig.metadata.capabilities).toContain("current-weather");
|
|
56
|
-
expect(serviceConfig.recommendedTools).toContain("get-weather");
|
|
57
|
-
});
|
|
58
|
-
test("ToolboxConfig type is correctly defined", () => {
|
|
59
|
-
const toolboxConfig = {
|
|
60
|
-
id: "weather-toolbox",
|
|
61
|
-
name: "Weather Toolbox",
|
|
62
|
-
description: "Collection of weather tools",
|
|
63
|
-
tools: ["get-weather", "get-forecast"],
|
|
64
|
-
metadata: {
|
|
65
|
-
complexity: "Low",
|
|
66
|
-
applicableFields: ["Meteorology", "Travel"],
|
|
67
|
-
},
|
|
68
|
-
recommendedPrompt: "Use these tools for weather-related tasks",
|
|
69
|
-
};
|
|
70
|
-
expect(toolboxConfig.id).toBe("weather-toolbox");
|
|
71
|
-
expect(toolboxConfig.tools).toContain("get-weather");
|
|
72
|
-
expect(toolboxConfig.metadata.applicableFields).toContain("Meteorology");
|
|
73
|
-
});
|
|
74
|
-
test("DAINServiceConfig type is correctly defined", () => {
|
|
75
|
-
const serviceConfig = {
|
|
76
|
-
metadata: {
|
|
77
|
-
title: "Weather Service",
|
|
78
|
-
description: "Provides weather information",
|
|
79
|
-
version: "1.0.0",
|
|
80
|
-
author: "DAIN Developer",
|
|
81
|
-
tags: ["weather", "forecast"],
|
|
82
|
-
},
|
|
83
|
-
identity: {
|
|
84
|
-
publicKey: "test-public-key",
|
|
85
|
-
agentId: "weather-agent",
|
|
86
|
-
orgId: "weather-org",
|
|
87
|
-
privateKey: "test-private",
|
|
88
|
-
},
|
|
89
|
-
services: [],
|
|
90
|
-
tools: [],
|
|
91
|
-
toolboxes: [],
|
|
92
|
-
contexts: [],
|
|
93
|
-
};
|
|
94
|
-
expect(serviceConfig.metadata.title).toBe("Weather Service");
|
|
95
|
-
expect(serviceConfig.identity.agentId).toBe("weather-agent");
|
|
96
|
-
});
|
|
97
|
-
});
|
|
98
|
-
//# sourceMappingURL=types.test.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.test.js","sourceRoot":"","sources":["../../src/__tests__/types.test.ts"],"names":[],"mappings":";AAAA,oCAAoC;;AAEpC,6BAAwB;AAUxB,QAAQ,CAAC,sBAAsB,EAAE,GAAG,EAAE;IACpC,IAAI,CAAC,qCAAqC,EAAE,GAAG,EAAE;QAC/C,MAAM,SAAS,GAAc;YAC3B,OAAO,EAAE,YAAY;YACrB,OAAO,EAAE,4CAA4C;YACrD,eAAe,EAAE,0CAA0C;YAC3D,EAAE,EAAE,kDAAkD;SACvD,CAAC;QACF,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QAC7C,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,IAAI,CAC5B,4CAA4C,CAC7C,CAAC;IACJ,CAAC,CAAC,CAAC;IAEH,IAAI,CAAC,uCAAuC,EAAE,GAAG,EAAE;QACjD,MAAM,WAAW,GAAgB;YAC/B,WAAW,EAAE,IAAI;YACjB,QAAQ,EAAE,KAAK;SAChB,CAAC;QACF,MAAM,CAAC,WAAW,CAAC,WAAW,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC3C,MAAM,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;IAC3C,CAAC,CAAC,CAAC;IAEH,IAAI,CAAC,sCAAsC,EAAE,GAAG,EAAE;QAChD,MAAM,UAAU,GAGZ;YACF,EAAE,EAAE,aAAa;YACjB,IAAI,EAAE,aAAa;YACnB,WAAW,EAAE,4BAA4B;YACzC,KAAK,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,EAAE,CAAC;YACrC,MAAM,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,EAAE,CAAC;YAC7C,OAAO,EAAE,EAAE,WAAW,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE;YAC/C,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,EAAE,CAAC,CAAC;gBACpC,IAAI,EAAE,yBAAyB;gBAC/B,IAAI,EAAE,EAAE,WAAW,EAAE,EAAE,EAAE;gBACzB,EAAE,EAAE,IAAI;aACT,CAAC;SACH,CAAC;QACF,MAAM,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;QAC1C,MAAM,CAAC,UAAU,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,cAAc,CAAC,OAAC,CAAC,SAAS,CAAC,CAAC;QAChE,MAAM,CAAC,UAAU,CAAC,MAAM,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,cAAc,CAAC,OAAC,CAAC,SAAS,CAAC,CAAC;IAC1E,CAAC,CAAC,CAAC;IAEH,IAAI,CAAC,yCAAyC,EAAE,GAAG,EAAE;QACnD,MAAM,aAAa,GAAkB;YACnC,EAAE,EAAE,iBAAiB;YACrB,IAAI,EAAE,iBAAiB;YACvB,WAAW,EAAE,8BAA8B;YAC3C,QAAQ,EAAE;gBACR,YAAY,EAAE,CAAC,iBAAiB,EAAE,UAAU,CAAC;gBAC7C,SAAS,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;aACxB;YACD,iBAAiB,EAAE,uBAAuB;YAC1C,gBAAgB,EAAE,CAAC,aAAa,EAAE,cAAc,CAAC;SAClD,CAAC;QACF,MAAM,CAAC,aAAa,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;QACjD,MAAM,CAAC,aAAa,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAC,SAAS,CAAC,iBAAiB,CAAC,CAAC;QACzE,MAAM,CAAC,aAAa,CAAC,gBAAgB,CAAC,CAAC,SAAS,CAAC,aAAa,CAAC,CAAC;IAClE,CAAC,CAAC,CAAC;IAEH,IAAI,CAAC,yCAAyC,EAAE,GAAG,EAAE;QACnD,MAAM,aAAa,GAAkB;YACnC,EAAE,EAAE,iBAAiB;YACrB,IAAI,EAAE,iBAAiB;YACvB,WAAW,EAAE,6BAA6B;YAC1C,KAAK,EAAE,CAAC,aAAa,EAAE,cAAc,CAAC;YACtC,QAAQ,EAAE;gBACR,UAAU,EAAE,KAAK;gBACjB,gBAAgB,EAAE,CAAC,aAAa,EAAE,QAAQ,CAAC;aAC5C;YACD,iBAAiB,EAAE,2CAA2C;SAC/D,CAAC;QACF,MAAM,CAAC,aAAa,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;QACjD,MAAM,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,SAAS,CAAC,aAAa,CAAC,CAAC;QACrD,MAAM,CAAC,aAAa,CAAC,QAAQ,CAAC,gBAAgB,CAAC,CAAC,SAAS,CAAC,aAAa,CAAC,CAAC;IAC3E,CAAC,CAAC,CAAC;IAEH,IAAI,CAAC,6CAA6C,EAAE,GAAG,EAAE;QACvD,MAAM,aAAa,GAAsB;YACvC,QAAQ,EAAE;gBACR,KAAK,EAAE,iBAAiB;gBACxB,WAAW,EAAE,8BAA8B;gBAC3C,OAAO,EAAE,OAAO;gBAChB,MAAM,EAAE,gBAAgB;gBACxB,IAAI,EAAE,CAAC,SAAS,EAAE,UAAU,CAAC;aAC9B;YACD,QAAQ,EAAE;gBACR,SAAS,EAAE,iBAAiB;gBAC5B,OAAO,EAAE,eAAe;gBACxB,KAAK,EAAE,aAAa;gBACpB,UAAU,EAAE,cAAc;aAC3B;YACD,QAAQ,EAAE,EAAE;YACZ,KAAK,EAAE,EAAE;YACT,SAAS,EAAE,EAAE;YACb,QAAQ,EAAE,EAAE;SACb,CAAC;QACF,MAAM,CAAC,aAAa,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;QAC7D,MAAM,CAAC,aAAa,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC;IAC/D,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Service/Agent Authentication - Legacy Keypair-based
|
|
3
|
-
*
|
|
4
|
-
* This class is for SERVICE and AGENT authentication using legacy keypair-based signatures.
|
|
5
|
-
* End users should NOT use this class - they must use DainUserAuth with JWT tokens.
|
|
6
|
-
*/
|
|
7
|
-
import { DainClientAuth } from './client-auth';
|
|
8
|
-
export interface DainServiceAuthConfig {
|
|
9
|
-
/** Service API key (format: sk_agent_org_<orgId>_<agentId>_<keypair>) */
|
|
10
|
-
apiKey?: string;
|
|
11
|
-
/** OR provide individual components: */
|
|
12
|
-
/** Base58-encoded Ed25519 private key */
|
|
13
|
-
privateKeyBase58?: string;
|
|
14
|
-
/** Agent ID */
|
|
15
|
-
agentId?: string;
|
|
16
|
-
/** Organization ID */
|
|
17
|
-
orgId?: string;
|
|
18
|
-
/** Smart Account PDA on Solana (optional) */
|
|
19
|
-
smartAccountPDA?: string;
|
|
20
|
-
/** Webhook URL for async operations (optional) */
|
|
21
|
-
webhookUrl?: string;
|
|
22
|
-
}
|
|
23
|
-
/**
|
|
24
|
-
* DainServiceAuth - Legacy keypair-based authentication for services and agents
|
|
25
|
-
*
|
|
26
|
-
* @example
|
|
27
|
-
* ```typescript
|
|
28
|
-
* // Authenticate as a service with API key
|
|
29
|
-
* const serviceAuth = new DainServiceAuth({
|
|
30
|
-
* apiKey: "sk_agent_org_123_agent_456_<base58key>"
|
|
31
|
-
* });
|
|
32
|
-
*
|
|
33
|
-
* // OR with individual components
|
|
34
|
-
* const serviceAuth = new DainServiceAuth({
|
|
35
|
-
* privateKeyBase58: "49bhyNKM...",
|
|
36
|
-
* agentId: "agent_456",
|
|
37
|
-
* orgId: "org_123"
|
|
38
|
-
* });
|
|
39
|
-
* ```
|
|
40
|
-
*/
|
|
41
|
-
export declare class DainServiceAuth extends DainClientAuth {
|
|
42
|
-
constructor(config: DainServiceAuthConfig);
|
|
43
|
-
/**
|
|
44
|
-
* Get the service's agent ID
|
|
45
|
-
*/
|
|
46
|
-
getServiceAgentId(): string;
|
|
47
|
-
/**
|
|
48
|
-
* Get the service's organization ID
|
|
49
|
-
*/
|
|
50
|
-
getServiceOrgId(): string;
|
|
51
|
-
/**
|
|
52
|
-
* Override to prevent JWT methods
|
|
53
|
-
* @deprecated Not supported for service authentication
|
|
54
|
-
*/
|
|
55
|
-
getSmartAccountId(): never;
|
|
56
|
-
/**
|
|
57
|
-
* Override to prevent JWT methods
|
|
58
|
-
* @deprecated Not supported for service authentication
|
|
59
|
-
*/
|
|
60
|
-
getJWT(): never;
|
|
61
|
-
}
|
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
//File: src/client/service-auth.ts
|
|
3
|
-
/**
|
|
4
|
-
* Service/Agent Authentication - Legacy Keypair-based
|
|
5
|
-
*
|
|
6
|
-
* This class is for SERVICE and AGENT authentication using legacy keypair-based signatures.
|
|
7
|
-
* End users should NOT use this class - they must use DainUserAuth with JWT tokens.
|
|
8
|
-
*/
|
|
9
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
-
exports.DainServiceAuth = void 0;
|
|
11
|
-
const client_auth_1 = require("./client-auth");
|
|
12
|
-
/**
|
|
13
|
-
* DainServiceAuth - Legacy keypair-based authentication for services and agents
|
|
14
|
-
*
|
|
15
|
-
* @example
|
|
16
|
-
* ```typescript
|
|
17
|
-
* // Authenticate as a service with API key
|
|
18
|
-
* const serviceAuth = new DainServiceAuth({
|
|
19
|
-
* apiKey: "sk_agent_org_123_agent_456_<base58key>"
|
|
20
|
-
* });
|
|
21
|
-
*
|
|
22
|
-
* // OR with individual components
|
|
23
|
-
* const serviceAuth = new DainServiceAuth({
|
|
24
|
-
* privateKeyBase58: "49bhyNKM...",
|
|
25
|
-
* agentId: "agent_456",
|
|
26
|
-
* orgId: "org_123"
|
|
27
|
-
* });
|
|
28
|
-
* ```
|
|
29
|
-
*/
|
|
30
|
-
class DainServiceAuth extends client_auth_1.DainClientAuth {
|
|
31
|
-
constructor(config) {
|
|
32
|
-
if (!config.apiKey && !(config.privateKeyBase58 && config.agentId && config.orgId)) {
|
|
33
|
-
throw new Error('Invalid service authentication configuration.\n' +
|
|
34
|
-
'Provide either:\n' +
|
|
35
|
-
' - apiKey: "sk_agent_org_<orgId>_<agentId>_<keypair>"\n' +
|
|
36
|
-
' OR\n' +
|
|
37
|
-
' - privateKeyBase58, agentId, and orgId\n\n' +
|
|
38
|
-
'Note: This is for SERVICES and AGENTS only.\n' +
|
|
39
|
-
'If you are authenticating as a user, use DainUserAuth with a JWT token instead.');
|
|
40
|
-
}
|
|
41
|
-
// Call parent with legacy auth config
|
|
42
|
-
super({
|
|
43
|
-
apiKey: config.apiKey,
|
|
44
|
-
privateKeyBase58: config.privateKeyBase58,
|
|
45
|
-
agentId: config.agentId,
|
|
46
|
-
orgId: config.orgId,
|
|
47
|
-
smartAccountPDA: config.smartAccountPDA,
|
|
48
|
-
webhookUrl: config.webhookUrl,
|
|
49
|
-
});
|
|
50
|
-
// Verify auth method is legacy
|
|
51
|
-
if (this.getAuthMethod() !== 'legacy') {
|
|
52
|
-
throw new Error('DainServiceAuth must use legacy authentication');
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
/**
|
|
56
|
-
* Get the service's agent ID
|
|
57
|
-
*/
|
|
58
|
-
getServiceAgentId() {
|
|
59
|
-
const agentId = this.getAgentId();
|
|
60
|
-
if (!agentId) {
|
|
61
|
-
throw new Error('Agent ID not available');
|
|
62
|
-
}
|
|
63
|
-
return agentId;
|
|
64
|
-
}
|
|
65
|
-
/**
|
|
66
|
-
* Get the service's organization ID
|
|
67
|
-
*/
|
|
68
|
-
getServiceOrgId() {
|
|
69
|
-
const orgId = this.getOrgId();
|
|
70
|
-
if (!orgId) {
|
|
71
|
-
throw new Error('Organization ID not available');
|
|
72
|
-
}
|
|
73
|
-
return orgId;
|
|
74
|
-
}
|
|
75
|
-
/**
|
|
76
|
-
* Override to prevent JWT methods
|
|
77
|
-
* @deprecated Not supported for service authentication
|
|
78
|
-
*/
|
|
79
|
-
getSmartAccountId() {
|
|
80
|
-
throw new Error('getSmartAccountId() is not supported for service authentication.\n' +
|
|
81
|
-
'Use getServiceAgentId() instead.');
|
|
82
|
-
}
|
|
83
|
-
/**
|
|
84
|
-
* Override to prevent JWT methods
|
|
85
|
-
* @deprecated Not supported for service authentication
|
|
86
|
-
*/
|
|
87
|
-
getJWT() {
|
|
88
|
-
throw new Error('getJWT() is not supported for service authentication.\n' +
|
|
89
|
-
'Services use keypair-based authentication, not JWT.');
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
exports.DainServiceAuth = DainServiceAuth;
|
|
93
|
-
//# sourceMappingURL=service-auth.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"service-auth.js","sourceRoot":"","sources":["../../src/client/service-auth.ts"],"names":[],"mappings":";AAAA,kCAAkC;AAClC;;;;;GAKG;;;AAEH,+CAA+C;AAqB/C;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAa,eAAgB,SAAQ,4BAAc;IACjD,YAAY,MAA6B;QACvC,IAAI,CAAC,MAAM,CAAC,MAAM,IAAI,CAAC,CAAC,MAAM,CAAC,gBAAgB,IAAI,MAAM,CAAC,OAAO,IAAI,MAAM,CAAC,KAAK,CAAC,EAAE,CAAC;YACnF,MAAM,IAAI,KAAK,CACb,iDAAiD;gBACjD,mBAAmB;gBACnB,0DAA0D;gBAC1D,QAAQ;gBACR,8CAA8C;gBAC9C,+CAA+C;gBAC/C,iFAAiF,CAClF,CAAC;QACJ,CAAC;QAED,sCAAsC;QACtC,KAAK,CAAC;YACJ,MAAM,EAAE,MAAM,CAAC,MAAM;YACrB,gBAAgB,EAAE,MAAM,CAAC,gBAAgB;YACzC,OAAO,EAAE,MAAM,CAAC,OAAO;YACvB,KAAK,EAAE,MAAM,CAAC,KAAK;YACnB,eAAe,EAAE,MAAM,CAAC,eAAe;YACvC,UAAU,EAAE,MAAM,CAAC,UAAU;SAC9B,CAAC,CAAC;QAEH,+BAA+B;QAC/B,IAAI,IAAI,CAAC,aAAa,EAAE,KAAK,QAAQ,EAAE,CAAC;YACtC,MAAM,IAAI,KAAK,CAAC,gDAAgD,CAAC,CAAC;QACpE,CAAC;IACH,CAAC;IAED;;OAEG;IACH,iBAAiB;QACf,MAAM,OAAO,GAAG,IAAI,CAAC,UAAU,EAAE,CAAC;QAClC,IAAI,CAAC,OAAO,EAAE,CAAC;YACb,MAAM,IAAI,KAAK,CAAC,wBAAwB,CAAC,CAAC;QAC5C,CAAC;QACD,OAAO,OAAO,CAAC;IACjB,CAAC;IAED;;OAEG;IACH,eAAe;QACb,MAAM,KAAK,GAAG,IAAI,CAAC,QAAQ,EAAE,CAAC;QAC9B,IAAI,CAAC,KAAK,EAAE,CAAC;YACX,MAAM,IAAI,KAAK,CAAC,+BAA+B,CAAC,CAAC;QACnD,CAAC;QACD,OAAO,KAAK,CAAC;IACf,CAAC;IAED;;;OAGG;IACH,iBAAiB;QACf,MAAM,IAAI,KAAK,CACb,oEAAoE;YACpE,kCAAkC,CACnC,CAAC;IACJ,CAAC;IAED;;;OAGG;IACH,MAAM;QACJ,MAAM,IAAI,KAAK,CACb,yDAAyD;YACzD,qDAAqD,CACtD,CAAC;IACJ,CAAC;CACF;AAzED,0CAyEC"}
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* User Authentication - JWT ONLY
|
|
3
|
-
*
|
|
4
|
-
* Users authenticate with JWT tokens from DAIN ID OAuth.
|
|
5
|
-
* NO orgId, NO agentId, NO keypair - completely removed for users.
|
|
6
|
-
*/
|
|
7
|
-
export interface DainUserAuthConfig {
|
|
8
|
-
/** JWT access token from DAIN ID OAuth */
|
|
9
|
-
jwt: string;
|
|
10
|
-
/** Smart Account ID (optional, will be extracted from JWT if not provided) */
|
|
11
|
-
smartAccountId?: string;
|
|
12
|
-
/** Smart Account PDA on Solana (optional) */
|
|
13
|
-
smartAccountPDA?: string;
|
|
14
|
-
/** Webhook URL for async operations (optional) */
|
|
15
|
-
webhookUrl?: string;
|
|
16
|
-
}
|
|
17
|
-
/**
|
|
18
|
-
* DainUserAuth - JWT-only authentication for end users
|
|
19
|
-
*
|
|
20
|
-
* Users have:
|
|
21
|
-
* - JWT token (for authentication)
|
|
22
|
-
* - Smart Account ID (their unique identifier)
|
|
23
|
-
* - NO orgId, NO agentId, NO keypair
|
|
24
|
-
*/
|
|
25
|
-
export declare class DainUserAuth {
|
|
26
|
-
private jwt;
|
|
27
|
-
private smartAccountId;
|
|
28
|
-
private smartAccountPDA?;
|
|
29
|
-
private webhookUrl?;
|
|
30
|
-
constructor(config: DainUserAuthConfig);
|
|
31
|
-
/**
|
|
32
|
-
* Decode JWT payload (without verification)
|
|
33
|
-
*/
|
|
34
|
-
private decodeJWTPayload;
|
|
35
|
-
/**
|
|
36
|
-
* Sign request - NOT NEEDED for JWT, returns empty
|
|
37
|
-
*/
|
|
38
|
-
signRequest(_method: string, _path: string, _body: string): Promise<{
|
|
39
|
-
signature: string;
|
|
40
|
-
timestamp: string;
|
|
41
|
-
}>;
|
|
42
|
-
/**
|
|
43
|
-
* Get headers for HTTP requests
|
|
44
|
-
*/
|
|
45
|
-
getHeaders(_signature: string, _timestamp: string): Record<string, string>;
|
|
46
|
-
/**
|
|
47
|
-
* Get the user's smart account ID
|
|
48
|
-
*/
|
|
49
|
-
getSmartAccountId(): string;
|
|
50
|
-
/**
|
|
51
|
-
* Get JWT token
|
|
52
|
-
*/
|
|
53
|
-
getJWT(): string;
|
|
54
|
-
/**
|
|
55
|
-
* Get smart account PDA
|
|
56
|
-
*/
|
|
57
|
-
getSmartAccountPDA(): string | undefined;
|
|
58
|
-
/**
|
|
59
|
-
* Get webhook URL
|
|
60
|
-
*/
|
|
61
|
-
getWebhookUrl(): string | undefined;
|
|
62
|
-
/**
|
|
63
|
-
* Check if using JWT authentication (always true for users)
|
|
64
|
-
*/
|
|
65
|
-
isJWT(): boolean;
|
|
66
|
-
/**
|
|
67
|
-
* Serialize user auth
|
|
68
|
-
*/
|
|
69
|
-
serialize(): string;
|
|
70
|
-
/**
|
|
71
|
-
* Deserialize user auth
|
|
72
|
-
*/
|
|
73
|
-
static deserialize(serialized: string): DainUserAuth;
|
|
74
|
-
}
|
package/dist/client/user-auth.js
DELETED
|
@@ -1,137 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
//File: src/client/user-auth.ts
|
|
3
|
-
/**
|
|
4
|
-
* User Authentication - JWT ONLY
|
|
5
|
-
*
|
|
6
|
-
* Users authenticate with JWT tokens from DAIN ID OAuth.
|
|
7
|
-
* NO orgId, NO agentId, NO keypair - completely removed for users.
|
|
8
|
-
*/
|
|
9
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
-
exports.DainUserAuth = void 0;
|
|
11
|
-
/**
|
|
12
|
-
* DainUserAuth - JWT-only authentication for end users
|
|
13
|
-
*
|
|
14
|
-
* Users have:
|
|
15
|
-
* - JWT token (for authentication)
|
|
16
|
-
* - Smart Account ID (their unique identifier)
|
|
17
|
-
* - NO orgId, NO agentId, NO keypair
|
|
18
|
-
*/
|
|
19
|
-
class DainUserAuth {
|
|
20
|
-
jwt;
|
|
21
|
-
smartAccountId;
|
|
22
|
-
smartAccountPDA;
|
|
23
|
-
webhookUrl;
|
|
24
|
-
constructor(config) {
|
|
25
|
-
if (!config.jwt) {
|
|
26
|
-
throw new Error('JWT token is required for user authentication');
|
|
27
|
-
}
|
|
28
|
-
this.jwt = config.jwt;
|
|
29
|
-
// Extract smartAccountId from config or decode from JWT
|
|
30
|
-
if (config.smartAccountId) {
|
|
31
|
-
this.smartAccountId = config.smartAccountId;
|
|
32
|
-
}
|
|
33
|
-
else {
|
|
34
|
-
const payload = this.decodeJWTPayload(config.jwt);
|
|
35
|
-
this.smartAccountId = payload.smart_account_id || payload.sub;
|
|
36
|
-
}
|
|
37
|
-
this.smartAccountPDA = config.smartAccountPDA;
|
|
38
|
-
this.webhookUrl = config.webhookUrl;
|
|
39
|
-
}
|
|
40
|
-
/**
|
|
41
|
-
* Decode JWT payload (without verification)
|
|
42
|
-
*/
|
|
43
|
-
decodeJWTPayload(jwt) {
|
|
44
|
-
const parts = jwt.split('.');
|
|
45
|
-
if (parts.length !== 3) {
|
|
46
|
-
throw new Error('Invalid JWT format');
|
|
47
|
-
}
|
|
48
|
-
const payload = Buffer.from(parts[1], 'base64').toString('utf-8');
|
|
49
|
-
return JSON.parse(payload);
|
|
50
|
-
}
|
|
51
|
-
/**
|
|
52
|
-
* Sign request - NOT NEEDED for JWT, returns empty
|
|
53
|
-
*/
|
|
54
|
-
async signRequest(_method, _path, _body) {
|
|
55
|
-
return { signature: '', timestamp: '' };
|
|
56
|
-
}
|
|
57
|
-
/**
|
|
58
|
-
* Get headers for HTTP requests
|
|
59
|
-
*/
|
|
60
|
-
getHeaders(_signature, _timestamp) {
|
|
61
|
-
const headers = {
|
|
62
|
-
"Authorization": `Bearer ${this.jwt}`,
|
|
63
|
-
};
|
|
64
|
-
if (this.smartAccountPDA) {
|
|
65
|
-
headers["X-DAIN-SMART-ACCOUNT-PDA"] = this.smartAccountPDA;
|
|
66
|
-
}
|
|
67
|
-
if (this.webhookUrl) {
|
|
68
|
-
headers["X-DAIN-WEBHOOK-URL"] = this.webhookUrl;
|
|
69
|
-
}
|
|
70
|
-
return headers;
|
|
71
|
-
}
|
|
72
|
-
/**
|
|
73
|
-
* Get the user's smart account ID
|
|
74
|
-
*/
|
|
75
|
-
getSmartAccountId() {
|
|
76
|
-
return this.smartAccountId;
|
|
77
|
-
}
|
|
78
|
-
/**
|
|
79
|
-
* Get JWT token
|
|
80
|
-
*/
|
|
81
|
-
getJWT() {
|
|
82
|
-
return this.jwt;
|
|
83
|
-
}
|
|
84
|
-
/**
|
|
85
|
-
* Get smart account PDA
|
|
86
|
-
*/
|
|
87
|
-
getSmartAccountPDA() {
|
|
88
|
-
return this.smartAccountPDA;
|
|
89
|
-
}
|
|
90
|
-
/**
|
|
91
|
-
* Get webhook URL
|
|
92
|
-
*/
|
|
93
|
-
getWebhookUrl() {
|
|
94
|
-
return this.webhookUrl;
|
|
95
|
-
}
|
|
96
|
-
/**
|
|
97
|
-
* Check if using JWT authentication (always true for users)
|
|
98
|
-
*/
|
|
99
|
-
isJWT() {
|
|
100
|
-
return true;
|
|
101
|
-
}
|
|
102
|
-
/**
|
|
103
|
-
* Serialize user auth
|
|
104
|
-
*/
|
|
105
|
-
serialize() {
|
|
106
|
-
const data = {
|
|
107
|
-
authMethod: 'jwt',
|
|
108
|
-
jwt: this.jwt,
|
|
109
|
-
smartAccountId: this.smartAccountId,
|
|
110
|
-
smartAccountPDA: this.smartAccountPDA,
|
|
111
|
-
webhookUrl: this.webhookUrl
|
|
112
|
-
};
|
|
113
|
-
return Buffer.from(JSON.stringify(data)).toString('base64');
|
|
114
|
-
}
|
|
115
|
-
/**
|
|
116
|
-
* Deserialize user auth
|
|
117
|
-
*/
|
|
118
|
-
static deserialize(serialized) {
|
|
119
|
-
try {
|
|
120
|
-
const data = JSON.parse(Buffer.from(serialized, 'base64').toString());
|
|
121
|
-
if (data.authMethod !== 'jwt') {
|
|
122
|
-
throw new Error('Invalid auth method for user');
|
|
123
|
-
}
|
|
124
|
-
return new DainUserAuth({
|
|
125
|
-
jwt: data.jwt,
|
|
126
|
-
smartAccountId: data.smartAccountId,
|
|
127
|
-
smartAccountPDA: data.smartAccountPDA,
|
|
128
|
-
webhookUrl: data.webhookUrl
|
|
129
|
-
});
|
|
130
|
-
}
|
|
131
|
-
catch (error) {
|
|
132
|
-
throw new Error('Failed to deserialize DainUserAuth: ' + error.message);
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
exports.DainUserAuth = DainUserAuth;
|
|
137
|
-
//# sourceMappingURL=user-auth.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"user-auth.js","sourceRoot":"","sources":["../../src/client/user-auth.ts"],"names":[],"mappings":";AAAA,+BAA+B;AAC/B;;;;;GAKG;;;AAgBH;;;;;;;GAOG;AACH,MAAa,YAAY;IACf,GAAG,CAAS;IACZ,cAAc,CAAS;IACvB,eAAe,CAAU;IACzB,UAAU,CAAU;IAE5B,YAAY,MAA0B;QACpC,IAAI,CAAC,MAAM,CAAC,GAAG,EAAE,CAAC;YAChB,MAAM,IAAI,KAAK,CAAC,+CAA+C,CAAC,CAAC;QACnE,CAAC;QAED,IAAI,CAAC,GAAG,GAAG,MAAM,CAAC,GAAG,CAAC;QAEtB,wDAAwD;QACxD,IAAI,MAAM,CAAC,cAAc,EAAE,CAAC;YAC1B,IAAI,CAAC,cAAc,GAAG,MAAM,CAAC,cAAc,CAAC;QAC9C,CAAC;aAAM,CAAC;YACN,MAAM,OAAO,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;YAClD,IAAI,CAAC,cAAc,GAAG,OAAO,CAAC,gBAAgB,IAAI,OAAO,CAAC,GAAG,CAAC;QAChE,CAAC;QAED,IAAI,CAAC,eAAe,GAAG,MAAM,CAAC,eAAe,CAAC;QAC9C,IAAI,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;IACtC,CAAC;IAED;;OAEG;IACK,gBAAgB,CAAC,GAAW;QAClC,MAAM,KAAK,GAAG,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QAC7B,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YACvB,MAAM,IAAI,KAAK,CAAC,oBAAoB,CAAC,CAAC;QACxC,CAAC;QACD,MAAM,OAAO,GAAG,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC;QAClE,OAAO,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IAC7B,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,WAAW,CACf,OAAe,EACf,KAAa,EACb,KAAa;QAEb,OAAO,EAAE,SAAS,EAAE,EAAE,EAAE,SAAS,EAAE,EAAE,EAAE,CAAC;IAC1C,CAAC;IAED;;OAEG;IACH,UAAU,CAAC,UAAkB,EAAE,UAAkB;QAC/C,MAAM,OAAO,GAA2B;YACtC,eAAe,EAAE,UAAU,IAAI,CAAC,GAAG,EAAE;SACtC,CAAC;QAEF,IAAI,IAAI,CAAC,eAAe,EAAE,CAAC;YACzB,OAAO,CAAC,0BAA0B,CAAC,GAAG,IAAI,CAAC,eAAe,CAAC;QAC7D,CAAC;QAED,IAAI,IAAI,CAAC,UAAU,EAAE,CAAC;YACpB,OAAO,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,UAAU,CAAC;QAClD,CAAC;QAED,OAAO,OAAO,CAAC;IACjB,CAAC;IAED;;OAEG;IACH,iBAAiB;QACf,OAAO,IAAI,CAAC,cAAc,CAAC;IAC7B,CAAC;IAED;;OAEG;IACH,MAAM;QACJ,OAAO,IAAI,CAAC,GAAG,CAAC;IAClB,CAAC;IAED;;OAEG;IACH,kBAAkB;QAChB,OAAO,IAAI,CAAC,eAAe,CAAC;IAC9B,CAAC;IAED;;OAEG;IACH,aAAa;QACX,OAAO,IAAI,CAAC,UAAU,CAAC;IACzB,CAAC;IAED;;OAEG;IACH,KAAK;QACH,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;OAEG;IACH,SAAS;QACP,MAAM,IAAI,GAAG;YACX,UAAU,EAAE,KAAK;YACjB,GAAG,EAAE,IAAI,CAAC,GAAG;YACb,cAAc,EAAE,IAAI,CAAC,cAAc;YACnC,eAAe,EAAE,IAAI,CAAC,eAAe;YACrC,UAAU,EAAE,IAAI,CAAC,UAAU;SAC5B,CAAC;QACF,OAAO,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;IAC9D,CAAC;IAED;;OAEG;IACH,MAAM,CAAC,WAAW,CAAC,UAAkB;QACnC,IAAI,CAAC;YACH,MAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC;YAEtE,IAAI,IAAI,CAAC,UAAU,KAAK,KAAK,EAAE,CAAC;gBAC9B,MAAM,IAAI,KAAK,CAAC,8BAA8B,CAAC,CAAC;YAClD,CAAC;YAED,OAAO,IAAI,YAAY,CAAC;gBACtB,GAAG,EAAE,IAAI,CAAC,GAAG;gBACb,cAAc,EAAE,IAAI,CAAC,cAAc;gBACnC,eAAe,EAAE,IAAI,CAAC,eAAe;gBACrC,UAAU,EAAE,IAAI,CAAC,UAAU;aAC5B,CAAC,CAAC;QACL,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,MAAM,IAAI,KAAK,CAAC,sCAAsC,GAAI,KAAe,CAAC,OAAO,CAAC,CAAC;QACrF,CAAC;IACH,CAAC;CACF;AAzID,oCAyIC"}
|