@alexrockshouts/miri-sdk 1.0.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.

Potentially problematic release.


This version of @alexrockshouts/miri-sdk might be problematic. Click here for more details.

@@ -0,0 +1,42 @@
1
+ /**
2
+ * Miri Autonomous Agent API
3
+ * API for interacting with the Miri autonomous agent service.
4
+ *
5
+ * The version of the OpenAPI document: 1.1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { Configuration } from './configuration';
13
+ import type { AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
+ export declare const BASE_PATH: string;
15
+ export declare const COLLECTION_FORMATS: {
16
+ csv: string;
17
+ ssv: string;
18
+ tsv: string;
19
+ pipes: string;
20
+ };
21
+ export interface RequestArgs {
22
+ url: string;
23
+ options: RawAxiosRequestConfig;
24
+ }
25
+ export declare class BaseAPI {
26
+ protected basePath: string;
27
+ protected axios: AxiosInstance;
28
+ protected configuration: Configuration | undefined;
29
+ constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
30
+ }
31
+ export declare class RequiredError extends Error {
32
+ field: string;
33
+ constructor(field: string, msg?: string);
34
+ }
35
+ interface ServerMap {
36
+ [key: string]: {
37
+ url: string;
38
+ description: string;
39
+ }[];
40
+ }
41
+ export declare const operationServerMap: ServerMap;
42
+ export {};
@@ -0,0 +1,44 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Miri Autonomous Agent API
5
+ * API for interacting with the Miri autonomous agent service.
6
+ *
7
+ * The version of the OpenAPI document: 1.1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ import globalAxios from 'axios';
15
+ export const BASE_PATH = "http://localhost:8080".replace(/\/+$/, "");
16
+ export const COLLECTION_FORMATS = {
17
+ csv: ",",
18
+ ssv: " ",
19
+ tsv: "\t",
20
+ pipes: "|",
21
+ };
22
+ export class BaseAPI {
23
+ basePath;
24
+ axios;
25
+ configuration;
26
+ constructor(configuration, basePath = BASE_PATH, axios = globalAxios) {
27
+ this.basePath = basePath;
28
+ this.axios = axios;
29
+ if (configuration) {
30
+ this.configuration = configuration;
31
+ this.basePath = configuration.basePath ?? basePath;
32
+ }
33
+ }
34
+ }
35
+ ;
36
+ export class RequiredError extends Error {
37
+ field;
38
+ constructor(field, msg) {
39
+ super(msg);
40
+ this.field = field;
41
+ this.name = "RequiredError";
42
+ }
43
+ }
44
+ export const operationServerMap = {};
@@ -0,0 +1,34 @@
1
+ /**
2
+ * Miri Autonomous Agent API
3
+ * API for interacting with the Miri autonomous agent service.
4
+ *
5
+ * The version of the OpenAPI document: 1.1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { Configuration } from "./configuration";
13
+ import type { RequestArgs } from "./base";
14
+ import type { AxiosInstance, AxiosResponse } from 'axios';
15
+ export declare const DUMMY_BASE_URL = "https://example.com";
16
+ /**
17
+ *
18
+ * @throws {RequiredError}
19
+ */
20
+ export declare const assertParamExists: (functionName: string, paramName: string, paramValue: unknown) => void;
21
+ export declare const setApiKeyToObject: (object: any, keyParamName: string, configuration?: Configuration) => Promise<void>;
22
+ export declare const setBasicAuthToObject: (object: any, configuration?: Configuration) => void;
23
+ export declare const setBearerAuthToObject: (object: any, configuration?: Configuration) => Promise<void>;
24
+ export declare const setOAuthToObject: (object: any, name: string, scopes: string[], configuration?: Configuration) => Promise<void>;
25
+ export declare const setSearchParams: (url: URL, ...objects: any[]) => void;
26
+ /**
27
+ * JSON serialization helper function which replaces instances of unserializable types with serializable ones.
28
+ * This function will run for every key-value pair encountered by JSON.stringify while traversing an object.
29
+ * Converting a set to a string will return an empty object, so an intermediate conversion to an array is required.
30
+ */
31
+ export declare const replaceWithSerializableTypeIfNeeded: (key: string, value: any) => any;
32
+ export declare const serializeDataIfNeeded: (value: any, requestOptions: any, configuration?: Configuration) => any;
33
+ export declare const toPathString: (url: URL) => string;
34
+ export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T>>(axios?: AxiosInstance, basePath?: string) => Promise<R>;
@@ -0,0 +1,110 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Miri Autonomous Agent API
5
+ * API for interacting with the Miri autonomous agent service.
6
+ *
7
+ * The version of the OpenAPI document: 1.1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ import { RequiredError } from "./base";
15
+ export const DUMMY_BASE_URL = 'https://example.com';
16
+ /**
17
+ *
18
+ * @throws {RequiredError}
19
+ */
20
+ export const assertParamExists = function (functionName, paramName, paramValue) {
21
+ if (paramValue === null || paramValue === undefined) {
22
+ throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);
23
+ }
24
+ };
25
+ export const setApiKeyToObject = async function (object, keyParamName, configuration) {
26
+ if (configuration && configuration.apiKey) {
27
+ const localVarApiKeyValue = typeof configuration.apiKey === 'function'
28
+ ? await configuration.apiKey(keyParamName)
29
+ : await configuration.apiKey;
30
+ object[keyParamName] = localVarApiKeyValue;
31
+ }
32
+ };
33
+ export const setBasicAuthToObject = function (object, configuration) {
34
+ if (configuration && (configuration.username || configuration.password)) {
35
+ object["auth"] = { username: configuration.username, password: configuration.password };
36
+ }
37
+ };
38
+ export const setBearerAuthToObject = async function (object, configuration) {
39
+ if (configuration && configuration.accessToken) {
40
+ const accessToken = typeof configuration.accessToken === 'function'
41
+ ? await configuration.accessToken()
42
+ : await configuration.accessToken;
43
+ object["Authorization"] = "Bearer " + accessToken;
44
+ }
45
+ };
46
+ export const setOAuthToObject = async function (object, name, scopes, configuration) {
47
+ if (configuration && configuration.accessToken) {
48
+ const localVarAccessTokenValue = typeof configuration.accessToken === 'function'
49
+ ? await configuration.accessToken(name, scopes)
50
+ : await configuration.accessToken;
51
+ object["Authorization"] = "Bearer " + localVarAccessTokenValue;
52
+ }
53
+ };
54
+ function setFlattenedQueryParams(urlSearchParams, parameter, key = "") {
55
+ if (parameter == null)
56
+ return;
57
+ if (typeof parameter === "object") {
58
+ if (Array.isArray(parameter) || parameter instanceof Set) {
59
+ parameter.forEach(item => setFlattenedQueryParams(urlSearchParams, item, key));
60
+ }
61
+ else {
62
+ Object.keys(parameter).forEach(currentKey => setFlattenedQueryParams(urlSearchParams, parameter[currentKey], `${key}${key !== '' ? '.' : ''}${currentKey}`));
63
+ }
64
+ }
65
+ else {
66
+ if (urlSearchParams.has(key)) {
67
+ urlSearchParams.append(key, parameter);
68
+ }
69
+ else {
70
+ urlSearchParams.set(key, parameter);
71
+ }
72
+ }
73
+ }
74
+ export const setSearchParams = function (url, ...objects) {
75
+ const searchParams = new URLSearchParams(url.search);
76
+ setFlattenedQueryParams(searchParams, objects);
77
+ url.search = searchParams.toString();
78
+ };
79
+ /**
80
+ * JSON serialization helper function which replaces instances of unserializable types with serializable ones.
81
+ * This function will run for every key-value pair encountered by JSON.stringify while traversing an object.
82
+ * Converting a set to a string will return an empty object, so an intermediate conversion to an array is required.
83
+ */
84
+ // @ts-ignore
85
+ export const replaceWithSerializableTypeIfNeeded = function (key, value) {
86
+ if (value instanceof Set) {
87
+ return Array.from(value);
88
+ }
89
+ else {
90
+ return value;
91
+ }
92
+ };
93
+ export const serializeDataIfNeeded = function (value, requestOptions, configuration) {
94
+ const nonString = typeof value !== 'string';
95
+ const needsSerialization = nonString && configuration && configuration.isJsonMime
96
+ ? configuration.isJsonMime(requestOptions.headers['Content-Type'])
97
+ : nonString;
98
+ return needsSerialization
99
+ ? JSON.stringify(value !== undefined ? value : {}, replaceWithSerializableTypeIfNeeded)
100
+ : (value || "");
101
+ };
102
+ export const toPathString = function (url) {
103
+ return url.pathname + url.search + url.hash;
104
+ };
105
+ export const createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configuration) {
106
+ return (axios = globalAxios, basePath = BASE_PATH) => {
107
+ const axiosRequestArgs = { ...axiosArgs.options, url: (axios.defaults.baseURL ? '' : configuration?.basePath ?? basePath) + axiosArgs.url };
108
+ return axios.request(axiosRequestArgs);
109
+ };
110
+ };
@@ -0,0 +1,98 @@
1
+ /**
2
+ * Miri Autonomous Agent API
3
+ * API for interacting with the Miri autonomous agent service.
4
+ *
5
+ * The version of the OpenAPI document: 1.1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ interface AWSv4Configuration {
13
+ options?: {
14
+ region?: string;
15
+ service?: string;
16
+ };
17
+ credentials?: {
18
+ accessKeyId?: string;
19
+ secretAccessKey?: string;
20
+ sessionToken?: string;
21
+ };
22
+ }
23
+ export interface ConfigurationParameters {
24
+ apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
25
+ username?: string;
26
+ password?: string;
27
+ accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
28
+ awsv4?: AWSv4Configuration;
29
+ basePath?: string;
30
+ serverIndex?: number;
31
+ baseOptions?: any;
32
+ formDataCtor?: new () => any;
33
+ }
34
+ export declare class Configuration {
35
+ /**
36
+ * parameter for apiKey security
37
+ * @param name security name
38
+ */
39
+ apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
40
+ /**
41
+ * parameter for basic security
42
+ */
43
+ username?: string;
44
+ /**
45
+ * parameter for basic security
46
+ */
47
+ password?: string;
48
+ /**
49
+ * parameter for oauth2 security
50
+ * @param name security name
51
+ * @param scopes oauth2 scope
52
+ */
53
+ accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
54
+ /**
55
+ * parameter for aws4 signature security
56
+ * @param {Object} AWS4Signature - AWS4 Signature security
57
+ * @param {string} options.region - aws region
58
+ * @param {string} options.service - name of the service.
59
+ * @param {string} credentials.accessKeyId - aws access key id
60
+ * @param {string} credentials.secretAccessKey - aws access key
61
+ * @param {string} credentials.sessionToken - aws session token
62
+ * @memberof Configuration
63
+ */
64
+ awsv4?: AWSv4Configuration;
65
+ /**
66
+ * override base path
67
+ */
68
+ basePath?: string;
69
+ /**
70
+ * override server index
71
+ */
72
+ serverIndex?: number;
73
+ /**
74
+ * base options for axios calls
75
+ */
76
+ baseOptions?: any;
77
+ /**
78
+ * The FormData constructor that will be used to create multipart form data
79
+ * requests. You can inject this here so that execution environments that
80
+ * do not support the FormData class can still run the generated client.
81
+ *
82
+ * @type {new () => FormData}
83
+ */
84
+ formDataCtor?: new () => any;
85
+ constructor(param?: ConfigurationParameters);
86
+ /**
87
+ * Check if the given MIME is a JSON MIME.
88
+ * JSON MIME examples:
89
+ * application/json
90
+ * application/json; charset=UTF8
91
+ * APPLICATION/JSON
92
+ * application/vnd.company+json
93
+ * @param mime - MIME (Multipurpose Internet Mail Extensions)
94
+ * @return True if the given MIME is JSON, false otherwise.
95
+ */
96
+ isJsonMime(mime: string): boolean;
97
+ }
98
+ export {};
@@ -0,0 +1,94 @@
1
+ /* tslint:disable */
2
+ /**
3
+ * Miri Autonomous Agent API
4
+ * API for interacting with the Miri autonomous agent service.
5
+ *
6
+ * The version of the OpenAPI document: 1.1.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ export class Configuration {
14
+ /**
15
+ * parameter for apiKey security
16
+ * @param name security name
17
+ */
18
+ apiKey;
19
+ /**
20
+ * parameter for basic security
21
+ */
22
+ username;
23
+ /**
24
+ * parameter for basic security
25
+ */
26
+ password;
27
+ /**
28
+ * parameter for oauth2 security
29
+ * @param name security name
30
+ * @param scopes oauth2 scope
31
+ */
32
+ accessToken;
33
+ /**
34
+ * parameter for aws4 signature security
35
+ * @param {Object} AWS4Signature - AWS4 Signature security
36
+ * @param {string} options.region - aws region
37
+ * @param {string} options.service - name of the service.
38
+ * @param {string} credentials.accessKeyId - aws access key id
39
+ * @param {string} credentials.secretAccessKey - aws access key
40
+ * @param {string} credentials.sessionToken - aws session token
41
+ * @memberof Configuration
42
+ */
43
+ awsv4;
44
+ /**
45
+ * override base path
46
+ */
47
+ basePath;
48
+ /**
49
+ * override server index
50
+ */
51
+ serverIndex;
52
+ /**
53
+ * base options for axios calls
54
+ */
55
+ baseOptions;
56
+ /**
57
+ * The FormData constructor that will be used to create multipart form data
58
+ * requests. You can inject this here so that execution environments that
59
+ * do not support the FormData class can still run the generated client.
60
+ *
61
+ * @type {new () => FormData}
62
+ */
63
+ formDataCtor;
64
+ constructor(param = {}) {
65
+ this.apiKey = param.apiKey;
66
+ this.username = param.username;
67
+ this.password = param.password;
68
+ this.accessToken = param.accessToken;
69
+ this.awsv4 = param.awsv4;
70
+ this.basePath = param.basePath;
71
+ this.serverIndex = param.serverIndex;
72
+ this.baseOptions = {
73
+ ...param.baseOptions,
74
+ headers: {
75
+ ...param.baseOptions?.headers,
76
+ },
77
+ };
78
+ this.formDataCtor = param.formDataCtor;
79
+ }
80
+ /**
81
+ * Check if the given MIME is a JSON MIME.
82
+ * JSON MIME examples:
83
+ * application/json
84
+ * application/json; charset=UTF8
85
+ * APPLICATION/JSON
86
+ * application/vnd.company+json
87
+ * @param mime - MIME (Multipurpose Internet Mail Extensions)
88
+ * @return True if the given MIME is JSON, false otherwise.
89
+ */
90
+ isJsonMime(mime) {
91
+ const jsonMime = new RegExp('^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$', 'i');
92
+ return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');
93
+ }
94
+ }
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Miri Autonomous Agent API
3
+ * API for interacting with the Miri autonomous agent service.
4
+ *
5
+ * The version of the OpenAPI document: 1.1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ export * from "./api";
13
+ export * from "./configuration";
@@ -0,0 +1,15 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Miri Autonomous Agent API
5
+ * API for interacting with the Miri autonomous agent service.
6
+ *
7
+ * The version of the OpenAPI document: 1.1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ export * from "./api";
15
+ export * from "./configuration";
@@ -0,0 +1,2 @@
1
+ export * from "./miri-sdk";
2
+ export * from "./generated";
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ export * from "./miri-sdk";
2
+ export * from "./generated";