@nerdjs/sales-kit 3.0.13 → 3.0.15
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/entities/example/example.d.ts +21 -0
- package/dist/entities/example/example.js +33 -0
- package/dist/entities/example/example.js.map +1 -0
- package/dist/entities/example/helper.d.ts +5 -0
- package/dist/entities/example/helper.js +16 -0
- package/dist/entities/example/helper.js.map +1 -0
- package/dist/entities/example/index.d.ts +2 -0
- package/dist/entities/example/index.js +3 -0
- package/dist/entities/example/index.js.map +1 -0
- package/dist/entities/index.d.ts +1 -0
- package/dist/entities/index.js +1 -0
- package/dist/entities/index.js.map +1 -1
- package/dist/entities/prompt/helper.d.ts +5 -0
- package/dist/entities/prompt/helper.js +16 -0
- package/dist/entities/prompt/helper.js.map +1 -0
- package/dist/entities/prompt/index.d.ts +2 -0
- package/dist/entities/prompt/index.js +3 -0
- package/dist/entities/prompt/index.js.map +1 -0
- package/dist/entities/prompt/prompt.d.ts +18 -0
- package/dist/entities/prompt/prompt.js +29 -0
- package/dist/entities/prompt/prompt.js.map +1 -0
- package/dist/hooks/archerIntelligence/archerIntelligence.js +61 -253
- package/dist/hooks/archerIntelligence/archerIntelligence.js.map +1 -1
- package/dist/hooks/lep/lepLoadLocation.js +94 -9
- package/dist/hooks/lep/lepLoadLocation.js.map +1 -1
- package/dist/hooks/load/loadLastLocation.d.ts +1 -0
- package/dist/hooks/load/loadLastLocation.js +1 -1
- package/dist/hooks/load/loadLastLocation.js.map +1 -1
- package/dist/redux/api/robinaiApi.d.ts +1 -1
- package/dist/redux/api/robinaiApi.js +1 -1
- package/dist/redux/api/robinaiApi.js.map +1 -1
- package/dist/redux/document/documentEndpoints.d.ts +3 -3
- package/dist/redux/{goldenExample/goldenExampleEndpoints.d.ts → example/exampleEndpoints.d.ts} +119 -103
- package/dist/redux/example/exampleEndpoints.js +77 -0
- package/dist/redux/example/exampleEndpoints.js.map +1 -0
- package/dist/redux/example/index.d.ts +1 -0
- package/dist/redux/example/index.js +2 -0
- package/dist/redux/example/index.js.map +1 -0
- package/dist/redux/index.d.ts +2 -0
- package/dist/redux/index.js +2 -0
- package/dist/redux/index.js.map +1 -1
- package/dist/redux/processPDF/processPDFEndpoints.d.ts +3 -3
- package/dist/redux/prompt/index.d.ts +1 -0
- package/dist/redux/prompt/index.js +2 -0
- package/dist/redux/prompt/index.js.map +1 -0
- package/dist/redux/prompt/promptEndpoints.d.ts +1145 -0
- package/dist/redux/prompt/promptEndpoints.js +80 -0
- package/dist/redux/prompt/promptEndpoints.js.map +1 -0
- package/package.json +1 -1
- package/dist/entities/goldenExample/goldenExample.d.ts +0 -14
- package/dist/entities/goldenExample/goldenExample.js +0 -53
- package/dist/entities/goldenExample/goldenExample.js.map +0 -1
- package/dist/entities/goldenExample/helper.d.ts +0 -5
- package/dist/entities/goldenExample/helper.js +0 -16
- package/dist/entities/goldenExample/helper.js.map +0 -1
- package/dist/entities/goldenExample/index.d.ts +0 -2
- package/dist/entities/goldenExample/index.js +0 -3
- package/dist/entities/goldenExample/index.js.map +0 -1
- package/dist/redux/goldenExample/goldenExampleEndpoints.js +0 -66
- package/dist/redux/goldenExample/goldenExampleEndpoints.js.map +0 -1
- package/dist/redux/goldenExample/index.d.ts +0 -1
- package/dist/redux/goldenExample/index.js +0 -2
- package/dist/redux/goldenExample/index.js.map +0 -1
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { createEntityAdapter } from "@reduxjs/toolkit";
|
|
2
|
+
import { robinaiApi } from "../api/robinaiApi";
|
|
3
|
+
const promptsAdapter = createEntityAdapter();
|
|
4
|
+
const promptsInitialState = promptsAdapter.getInitialState();
|
|
5
|
+
export const promptEndpoints = robinaiApi.injectEndpoints({
|
|
6
|
+
endpoints: (build) => ({
|
|
7
|
+
getPrompts: build.query({
|
|
8
|
+
query: (args) => {
|
|
9
|
+
return {
|
|
10
|
+
url: `prompts`,
|
|
11
|
+
params: args,
|
|
12
|
+
routePrefix: "/v3",
|
|
13
|
+
};
|
|
14
|
+
},
|
|
15
|
+
transformResponse: (responseData) => {
|
|
16
|
+
return promptsAdapter.setAll(promptsInitialState, responseData);
|
|
17
|
+
},
|
|
18
|
+
providesTags: ["prompts"],
|
|
19
|
+
}),
|
|
20
|
+
getPrompt: build.query({
|
|
21
|
+
query: (id) => ({ url: `prompts/${id}`, routePrefix: "/v3" }),
|
|
22
|
+
providesTags: (_result, _error, id) => [{ type: "prompts", id }],
|
|
23
|
+
}),
|
|
24
|
+
createPrompt: build.mutation({
|
|
25
|
+
query: (args) => {
|
|
26
|
+
const body = new FormData();
|
|
27
|
+
body.append("name", args.name ?? "");
|
|
28
|
+
body.append("content", args.content ?? "");
|
|
29
|
+
body.append("author", args.author ?? "");
|
|
30
|
+
body.append("comments", args.comments ?? "");
|
|
31
|
+
body.append("file_type", args.file_type ?? "");
|
|
32
|
+
body.append("is_default", args.is_default ? "true" : "false");
|
|
33
|
+
return {
|
|
34
|
+
body,
|
|
35
|
+
method: "POST",
|
|
36
|
+
routePrefix: "/v3",
|
|
37
|
+
url: `prompts`,
|
|
38
|
+
headers: {
|
|
39
|
+
"Content-Type": "multipart/form-data",
|
|
40
|
+
},
|
|
41
|
+
};
|
|
42
|
+
},
|
|
43
|
+
invalidatesTags: ["prompts"],
|
|
44
|
+
}),
|
|
45
|
+
updatePrompt: build.mutation({
|
|
46
|
+
query: (args) => {
|
|
47
|
+
const body = new FormData();
|
|
48
|
+
body.append("name", args.body.name ?? "");
|
|
49
|
+
body.append("content", args.body.content ?? "");
|
|
50
|
+
body.append("comments", args.body.comments ?? "");
|
|
51
|
+
body.append("file_type", args.body.file_type ?? "");
|
|
52
|
+
body.append("is_default", args.body.is_default ? "true" : "false");
|
|
53
|
+
return {
|
|
54
|
+
method: "PUT",
|
|
55
|
+
body: body,
|
|
56
|
+
url: `prompts/${args.id}`,
|
|
57
|
+
routePrefix: "/v3",
|
|
58
|
+
headers: {
|
|
59
|
+
"Content-Type": "multipart/form-data",
|
|
60
|
+
},
|
|
61
|
+
};
|
|
62
|
+
},
|
|
63
|
+
invalidatesTags: (_result, _error, { id }) => [
|
|
64
|
+
{ type: "prompts", id },
|
|
65
|
+
"prompts",
|
|
66
|
+
],
|
|
67
|
+
}),
|
|
68
|
+
deletePrompt: build.mutation({
|
|
69
|
+
query: (id) => ({
|
|
70
|
+
method: "DELETE",
|
|
71
|
+
url: `prompts/${id}`,
|
|
72
|
+
routePrefix: "/v3",
|
|
73
|
+
}),
|
|
74
|
+
invalidatesTags: ["prompts"],
|
|
75
|
+
}),
|
|
76
|
+
}),
|
|
77
|
+
});
|
|
78
|
+
export const { useGetPromptQuery, useGetPromptsQuery, useLazyGetPromptsQuery, useLazyGetPromptQuery, useCreatePromptMutation, useDeletePromptMutation, useUpdatePromptMutation, } = promptEndpoints;
|
|
79
|
+
export default promptEndpoints;
|
|
80
|
+
//# sourceMappingURL=promptEndpoints.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"promptEndpoints.js","sourceRoot":"","sources":["../../../src/redux/prompt/promptEndpoints.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Docai_Load } from "../document/document";
|
|
2
|
-
export default class GoldenExample_Entity {
|
|
3
|
-
static requiredFields: string[];
|
|
4
|
-
constructor(goldenExampleJson: unknown);
|
|
5
|
-
id: number;
|
|
6
|
-
file_type: string;
|
|
7
|
-
cloud_file_id: string;
|
|
8
|
-
file_id: number;
|
|
9
|
-
json_content: Docai_Load;
|
|
10
|
-
load: any;
|
|
11
|
-
file: any;
|
|
12
|
-
created_at: string;
|
|
13
|
-
updated_at: string;
|
|
14
|
-
}
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* GoldenExample_Entity type guard.
|
|
3
|
-
*
|
|
4
|
-
* @param {any} goldenExampleJson GoldenExample object from API
|
|
5
|
-
* @returns {boolean} Return true if type is GoldenExample_Entity
|
|
6
|
-
*/
|
|
7
|
-
function validator(goldenExampleJson) {
|
|
8
|
-
if (typeof goldenExampleJson === "object" && goldenExampleJson != null) {
|
|
9
|
-
GoldenExample_Entity.requiredFields.forEach((element) => {
|
|
10
|
-
if (!Object.keys(goldenExampleJson).includes(element))
|
|
11
|
-
throw new Error("Field ${element} is null or undefined");
|
|
12
|
-
});
|
|
13
|
-
}
|
|
14
|
-
return true;
|
|
15
|
-
}
|
|
16
|
-
export default class GoldenExample_Entity {
|
|
17
|
-
static requiredFields = [
|
|
18
|
-
"id",
|
|
19
|
-
"file_type",
|
|
20
|
-
"cloud_file_id",
|
|
21
|
-
"file_id",
|
|
22
|
-
"load",
|
|
23
|
-
"file",
|
|
24
|
-
"created_at",
|
|
25
|
-
"updated_at",
|
|
26
|
-
];
|
|
27
|
-
constructor(goldenExampleJson) {
|
|
28
|
-
if (validator(goldenExampleJson)) {
|
|
29
|
-
this.id = goldenExampleJson.id;
|
|
30
|
-
this.file_type = goldenExampleJson.file_type;
|
|
31
|
-
this.cloud_file_id = goldenExampleJson.cloud_file_id;
|
|
32
|
-
this.file_id = goldenExampleJson.file_id;
|
|
33
|
-
this.load = goldenExampleJson.load;
|
|
34
|
-
this.json_content = goldenExampleJson.json_content;
|
|
35
|
-
this.file = goldenExampleJson.file;
|
|
36
|
-
this.created_at = goldenExampleJson.created_at;
|
|
37
|
-
this.updated_at = goldenExampleJson.updated_at;
|
|
38
|
-
}
|
|
39
|
-
else {
|
|
40
|
-
throw new Error("Failed to create new instance of ${ GoldenExample_Entity.name }: ${e}");
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
id;
|
|
44
|
-
file_type;
|
|
45
|
-
cloud_file_id;
|
|
46
|
-
file_id;
|
|
47
|
-
json_content;
|
|
48
|
-
load;
|
|
49
|
-
file;
|
|
50
|
-
created_at;
|
|
51
|
-
updated_at;
|
|
52
|
-
}
|
|
53
|
-
//# sourceMappingURL=goldenExample.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"goldenExample.js","sourceRoot":"","sources":["../../../src/entities/goldenExample/goldenExample.ts"],"names":[],"mappings":"AAEA;;;;;GAKG;AACH,SAAS,SAAS,CAChB,iBAA0B;IAE1B,IAAI,OAAO,iBAAiB,KAAK,QAAQ,IAAI,iBAAiB,IAAI,IAAI,EAAE;QACtE,oBAAoB,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE;YACtD,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC;gBACnD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;QAC7D,CAAC,CAAC,CAAC;KACJ;IACD,OAAO,IAAI,CAAC;AACd,CAAC;AAED,MAAM,CAAC,OAAO,OAAO,oBAAoB;IACvC,MAAM,CAAC,cAAc,GAAG;QACtB,IAAI;QACJ,WAAW;QACX,eAAe;QACf,SAAS;QACT,MAAM;QACN,MAAM;QACN,YAAY;QACZ,YAAY;KACb,CAAC;IAEF,YAAY,iBAA0B;QACpC,IAAI,SAAS,CAAC,iBAAiB,CAAC,EAAE;YAChC,IAAI,CAAC,EAAE,GAAG,iBAAiB,CAAC,EAAE,CAAC;YAC/B,IAAI,CAAC,SAAS,GAAG,iBAAiB,CAAC,SAAS,CAAC;YAC7C,IAAI,CAAC,aAAa,GAAG,iBAAiB,CAAC,aAAa,CAAC;YACrD,IAAI,CAAC,OAAO,GAAG,iBAAiB,CAAC,OAAO,CAAC;YACzC,IAAI,CAAC,IAAI,GAAG,iBAAiB,CAAC,IAAI,CAAC;YACnC,IAAI,CAAC,YAAY,GAAG,iBAAiB,CAAC,YAAY,CAAC;YACnD,IAAI,CAAC,IAAI,GAAG,iBAAiB,CAAC,IAAI,CAAC;YACnC,IAAI,CAAC,UAAU,GAAG,iBAAiB,CAAC,UAAU,CAAC;YAC/C,IAAI,CAAC,UAAU,GAAG,iBAAiB,CAAC,UAAU,CAAC;SAChD;aAAM;YACL,MAAM,IAAI,KAAK,CACb,uEAAuE,CACxE,CAAC;SACH;IACH,CAAC;IAED,EAAE,CAAS;IACX,SAAS,CAAS;IAClB,aAAa,CAAS;IACtB,OAAO,CAAS;IAChB,YAAY,CAAa;IACzB,IAAI,CAAM;IACV,IAAI,CAAM;IACV,UAAU,CAAS;IACnB,UAAU,CAAS"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import GoldenExample_Entity from "./goldenExample";
|
|
2
|
-
export default class GoldenExample extends GoldenExample_Entity {
|
|
3
|
-
static fromList(goldenExamplesJSON) {
|
|
4
|
-
const goldenExamples = [];
|
|
5
|
-
if (goldenExamplesJSON)
|
|
6
|
-
Array.isArray(goldenExamplesJSON) &&
|
|
7
|
-
goldenExamplesJSON.forEach((goldenExampleJSON) => {
|
|
8
|
-
goldenExamples.push(new GoldenExample(goldenExampleJSON));
|
|
9
|
-
});
|
|
10
|
-
return goldenExamples;
|
|
11
|
-
}
|
|
12
|
-
toJson() {
|
|
13
|
-
return JSON.stringify(this);
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
//# sourceMappingURL=helper.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"helper.js","sourceRoot":"","sources":["../../../src/entities/goldenExample/helper.ts"],"names":[],"mappings":"AAAA,OAAO,oBAAoB,MAAM,iBAAiB,CAAC;AACnD,MAAM,CAAC,OAAO,OAAO,aAAc,SAAQ,oBAAoB;IAC7D,MAAM,CAAC,QAAQ,CAAC,kBAA2B;QACzC,MAAM,cAAc,GAAoB,EAAE,CAAC;QAC3C,IAAI,kBAAkB;YACpB,KAAK,CAAC,OAAO,CAAC,kBAAkB,CAAC;gBAC/B,kBAAkB,CAAC,OAAO,CAAC,CAAC,iBAAiB,EAAE,EAAE;oBAC/C,cAAc,CAAC,IAAI,CAAC,IAAI,aAAa,CAAC,iBAAiB,CAAC,CAAC,CAAC;gBAC5D,CAAC,CAAC,CAAC;QACP,OAAO,cAAc,CAAC;IACxB,CAAC;IAED,MAAM;QACJ,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;IAC9B,CAAC;CACF"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/entities/goldenExample/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,UAAU,CAAC;AACpD,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
import { createEntityAdapter } from "@reduxjs/toolkit";
|
|
2
|
-
import { robinaiApi } from "../api/robinaiApi";
|
|
3
|
-
const goldenExamplesAdapter = createEntityAdapter();
|
|
4
|
-
const goldenExamplesInitialState = goldenExamplesAdapter.getInitialState();
|
|
5
|
-
export const goldenExampleEndpoints = robinaiApi.injectEndpoints({
|
|
6
|
-
endpoints: (build) => ({
|
|
7
|
-
getGoldenExamples: build.query({
|
|
8
|
-
query: (args) => {
|
|
9
|
-
return {
|
|
10
|
-
url: `goldenExamples`,
|
|
11
|
-
params: args,
|
|
12
|
-
routePrefix: "/v3",
|
|
13
|
-
};
|
|
14
|
-
},
|
|
15
|
-
transformResponse: (responseData) => {
|
|
16
|
-
return goldenExamplesAdapter.setAll(goldenExamplesInitialState, responseData);
|
|
17
|
-
},
|
|
18
|
-
providesTags: ["goldenExamples"],
|
|
19
|
-
}),
|
|
20
|
-
getGoldenExample: build.query({
|
|
21
|
-
query: (id) => ({ url: `goldenExamples/${id}`, routePrefix: "/v3" }),
|
|
22
|
-
providesTags: (_result, _error, id) => [{ type: "goldenExamples", id }],
|
|
23
|
-
}),
|
|
24
|
-
createGoldenExample: build.mutation({
|
|
25
|
-
query: (args) => {
|
|
26
|
-
const body = new FormData();
|
|
27
|
-
body.append("json_content", JSON.stringify(args.payload));
|
|
28
|
-
body.append("file_type", args.file_type ?? "");
|
|
29
|
-
body.append("file", args.file);
|
|
30
|
-
return {
|
|
31
|
-
body,
|
|
32
|
-
method: "POST",
|
|
33
|
-
routePrefix: "/v3",
|
|
34
|
-
url: `goldenExamples`,
|
|
35
|
-
headers: {
|
|
36
|
-
"Content-Type": "multipart/form-data",
|
|
37
|
-
},
|
|
38
|
-
};
|
|
39
|
-
},
|
|
40
|
-
invalidatesTags: ["goldenExamples"],
|
|
41
|
-
}),
|
|
42
|
-
updateGoldenExample: build.mutation({
|
|
43
|
-
query: (args) => ({
|
|
44
|
-
method: "PUT",
|
|
45
|
-
body: args.body,
|
|
46
|
-
url: `goldenExamples/${args.id}`,
|
|
47
|
-
routePrefix: "/v3",
|
|
48
|
-
}),
|
|
49
|
-
invalidatesTags: (_result, _error, { id }) => [
|
|
50
|
-
{ type: "goldenExamples", id },
|
|
51
|
-
"goldenExamples",
|
|
52
|
-
],
|
|
53
|
-
}),
|
|
54
|
-
deleteGoldenExample: build.mutation({
|
|
55
|
-
query: (id) => ({
|
|
56
|
-
method: "DELETE",
|
|
57
|
-
url: `goldenExamples/${id}`,
|
|
58
|
-
routePrefix: "/v3",
|
|
59
|
-
}),
|
|
60
|
-
invalidatesTags: ["goldenExamples"],
|
|
61
|
-
}),
|
|
62
|
-
}),
|
|
63
|
-
});
|
|
64
|
-
export const { useGetGoldenExampleQuery, useGetGoldenExamplesQuery, useLazyGetGoldenExamplesQuery, useLazyGetGoldenExampleQuery, useCreateGoldenExampleMutation, useDeleteGoldenExampleMutation, useUpdateGoldenExampleMutation, } = goldenExampleEndpoints;
|
|
65
|
-
export default goldenExampleEndpoints;
|
|
66
|
-
//# sourceMappingURL=goldenExampleEndpoints.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"goldenExampleEndpoints.js","sourceRoot":"","sources":["../../../src/redux/goldenExample/goldenExampleEndpoints.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./goldenExampleEndpoints";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/redux/goldenExample/index.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAC"}
|