@narrative.io/data-collaboration-sdk-ts 2.92.0 → 2.93.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/build/base-api.d.ts +0 -1
- package/build/base-api.js +0 -14
- package/package.json +1 -1
package/build/base-api.d.ts
CHANGED
package/build/base-api.js
CHANGED
|
@@ -23,7 +23,6 @@ export class BaseApi {
|
|
|
23
23
|
headers: this.constructHeaders(),
|
|
24
24
|
responseAs: config.responseAs ?? "json",
|
|
25
25
|
});
|
|
26
|
-
this.drawLogo();
|
|
27
26
|
if (this.verbose) {
|
|
28
27
|
console.info(`Using environment: ${this.environment}`);
|
|
29
28
|
console.info(`Using API key: ${this.apiKey ?? "undefined"}`);
|
|
@@ -179,17 +178,4 @@ export class BaseApi {
|
|
|
179
178
|
}
|
|
180
179
|
return queryParameters.length > 0 ? `?${queryParameters.join("&")}` : "";
|
|
181
180
|
}
|
|
182
|
-
drawLogo() {
|
|
183
|
-
console.log(" ___ ___ ___ ___ ___ ___ ");
|
|
184
|
-
console.log(" /\\ \\ /\\ \\ /\\ \\ /\\ \\ /\\ \\ ___ /\\__\\ ");
|
|
185
|
-
console.log(" \\:\\ \\ /::\\ \\ /::\\ \\ /::\\ \\ /::\\ \\ ___ ___ /\\ \\ /:/ _/_ ");
|
|
186
|
-
console.log(" \\:\\ \\ /:/\\:\\ \\ /:/\\:\\__\\ /:/\\:\\__\\ /:/\\:\\ \\ /\\__\\ /\\__\\ \\:\\ \\ /:/ /\\__\\ ");
|
|
187
|
-
console.log(" _____\\:\\ \\ /:/ /::\\ \\ /:/ /:/ / /:/ /:/ / /:/ /::\\ \\ /:/ / /:/__/ \\:\\ \\ /:/ /:/ _/_ ");
|
|
188
|
-
console.log(" /::::::::\\__\\ /:/_/:/\\:\\__\\ /:/_/:/__/___ /:/_/:/__/___ /:/_/:/\\:\\__\\ /:/__/ /::\\ \\ ___ \\:\\__\\ /:/_/:/ /\\__\\");
|
|
189
|
-
console.log(" \\:\\~~\\~~\\/__/ \\:\\/:/ \\/__/ \\:\\/:::::/ / \\:\\/:::::/ / \\:\\/:/ \\/__/ /::\\ \\ \\/\\:\\ \\__ /\\ \\ |:| | \\:\\/:/ /:/ /");
|
|
190
|
-
console.log(" \\:\\ \\ \\::/__/ \\::/~~/~~~~ \\::/~~/~~~~ \\::/__/ /:/\\:\\ \\ ~~\\:\\/\\__\\ \\:\\ \\|:| | \\::/_/:/ / ");
|
|
191
|
-
console.log(" \\:\\ \\ \\:\\ \\ \\:\\~~\\ \\:\\~~\\ \\:\\ \\ \\/__\\:\\ \\ \\::/ / \\:\\__|:|__| \\:\\/:/ / ");
|
|
192
|
-
console.log(" \\:\\__\\ \\:\\__\\ \\:\\__\\ \\:\\__\\ \\:\\__\\ \\:\\__\\ /:/ / \\::::/__/ \\::/ / ");
|
|
193
|
-
console.log(" \\/__/ \\/__/ \\/__/ \\/__/ \\/__/ \\/__/ \\/__/ ~~~~ \\/__/ ");
|
|
194
|
-
}
|
|
195
181
|
}
|