Update SPDX-License-Identifier

This commit is contained in:
2024-09-10 20:35:37 -03:00
parent 6a8fe8d988
commit a3dfa0d4f4
17 changed files with 17 additions and 17 deletions

View File

@ -1,5 +1,5 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: MIT AND Apache-2.0
import dotenv from 'dotenv';
import { TribufuApi } from '../build/index.mjs';

View File

@ -1,5 +1,5 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: MIT AND Apache-2.0
import dotenv from 'dotenv';
import { TribufuBot } from '../build/index.mjs';

View File

@ -1,5 +1,5 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: MIT AND Apache-2.0
import dotenv from 'dotenv';
import { TribufuClient } from '../build/index.mjs';

View File

@ -1,5 +1,5 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: MIT AND Apache-2.0
import dotenv from 'dotenv';
import { TribufuServer } from '../build/index.mjs';

View File

@ -1,5 +1,5 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: MIT AND Apache-2.0
import { build } from "esbuild";
import { nodeExternalsPlugin } from "esbuild-node-externals";

View File

@ -1,5 +1,5 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: MIT AND Apache-2.0
import { HttpHeaders, HttpClient } from "@tribufu/mintaka";
import { JavaScriptRuntime } from "./node";

View File

@ -1,5 +1,5 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: MIT AND Apache-2.0
import { TribufuApi } from "./api";

View File

@ -1,5 +1,5 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: MIT AND Apache-2.0
import { HttpCookieMap, HttpHeaders } from "@tribufu/mintaka";
import { OAuth2GrantType, OAuth2IntrospectionRequest, OAuth2IntrospectionResponse, OAuth2TokenRequest, OAuth2TokenResponse } from "@tribufu/mintaka";

View File

@ -1,5 +1,5 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: MIT AND Apache-2.0
/**
* The version of the Tribufu SDK.

View File

@ -1,5 +1,5 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: MIT AND Apache-2.0
import {
TRIBUFU_API_URL,

View File

@ -1,5 +1,5 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: MIT AND Apache-2.0
import { MiniProfile } from "./profile";

View File

@ -1,5 +1,5 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: MIT AND Apache-2.0
export type ProfileType = "user" | "bot" | "org";

View File

@ -1,5 +1,5 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: MIT AND Apache-2.0
export enum JavaScriptRuntime {
Browser,

View File

@ -1,5 +1,5 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: MIT AND Apache-2.0
export interface TribufuApiOptions {
apiKey?: string | null;

View File

@ -1,5 +1,5 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: MIT AND Apache-2.0
import { TribufuClient } from "./client";

View File

@ -1,5 +1,5 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: MIT AND Apache-2.0
/**
* Tribufu Socket

View File

@ -1,5 +1,5 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: MIT AND Apache-2.0
export type TokenType = "user" | "bot" | "client" | "server";