@oauth2-cli/sky-api 0.3.2 → 0.4.1
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/CHANGELOG.md +23 -0
- package/dist/Client.d.ts +4 -14
- package/dist/Client.js +10 -56
- package/dist/Module.d.ts +13 -0
- package/dist/Module.js +13 -0
- package/dist/Paginated.js +1 -1
- package/dist/SkyAPI.d.ts +19 -2
- package/dist/SkyAPI.js +76 -2
- package/dist/index.d.ts +2 -1
- package/dist/index.js +3 -3
- package/dist/school/v1/academics/sections/assignments/assignmentsBySection.d.ts +1 -1
- package/dist/school/v1/academics/sections/assignments/assignmentsBySection.js +2 -2
- package/dist/school/v1/contentmanagement/announcements/index.d.ts +1 -1
- package/dist/school/v1/contentmanagement/announcements/index.js +3 -3
- package/dist/school/v1/contentmanagement/news/index.d.ts +1 -1
- package/dist/school/v1/contentmanagement/news/index.js +3 -3
- package/dist/school/v1/contentmanagement/photoalbums/index.d.ts +1 -1
- package/dist/school/v1/contentmanagement/photoalbums/index.js +4 -4
- package/package.json +6 -7
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [0.4.1](https://github.com/groton-school/myschoolapp-reporting/compare/oauth2-cli/sky-api/0.4.0...oauth2-cli/sky-api/0.4.1) (2026-01-15)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* further reorg of internals ([adc4330](https://github.com/groton-school/myschoolapp-reporting/commit/adc4330a346c7547be2e702730e2bcb510873b4c))
|
|
11
|
+
|
|
12
|
+
## [0.4.0](https://github.com/groton-school/myschoolapp-reporting/compare/oauth2-cli/sky-api/0.3.2...oauth2-cli/sky-api/0.4.0) (2026-01-15)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### ⚠ BREAKING CHANGES
|
|
16
|
+
|
|
17
|
+
* pre-registered plugin is ESM module, updated option arg names
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
* compile against Node.js v24 (current active version) ([dc67440](https://github.com/groton-school/myschoolapp-reporting/commit/dc6744054bc42139c4d17b1aca2ef9b057827f7f))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
* pre-registered plugin is ESM module, updated option arg names ([50ff079](https://github.com/groton-school/myschoolapp-reporting/commit/50ff079a5849ccc30c41e86d7b1d72d340fe9b87))
|
|
27
|
+
|
|
5
28
|
## [0.3.2](https://github.com/groton-school/myschoolapp-reporting/compare/oauth2-cli/sky-api/0.3.1...oauth2-cli/sky-api/0.3.2) (2026-01-04)
|
|
6
29
|
|
|
7
30
|
|
package/dist/Client.d.ts
CHANGED
|
@@ -1,19 +1,9 @@
|
|
|
1
1
|
import * as OAuth2 from '@oauth2-cli/qui-cli/dist/OAuth2.js';
|
|
2
|
-
import * as Plugin from '@qui-cli/plugin';
|
|
3
|
-
type SkyConfiguration = {
|
|
4
|
-
subscription_key?: string;
|
|
5
|
-
subscriptionKeyEnvVar: string;
|
|
6
|
-
};
|
|
7
2
|
export type Credentials = OAuth2.Credentials & {
|
|
8
3
|
subscription_key: string;
|
|
9
4
|
};
|
|
10
|
-
export
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
constructor(name?: string);
|
|
15
|
-
configure({ subscription_key, subscriptionKeyEnvVar, ...proposal }?: ConfigurationProposal): void;
|
|
16
|
-
options(): Plugin.Options;
|
|
17
|
-
init({ values }: Plugin.ExpectedArguments<typeof this.options>): Promise<void>;
|
|
5
|
+
export declare class Client extends OAuth2.Client {
|
|
6
|
+
private subscription_key;
|
|
7
|
+
constructor({ subscription_key, ...credentials }: Credentials);
|
|
8
|
+
request(...args: Parameters<OAuth2.Client['request']>): Promise<Response>;
|
|
18
9
|
}
|
|
19
|
-
export {};
|
package/dist/Client.js
CHANGED
|
@@ -1,59 +1,13 @@
|
|
|
1
1
|
import * as OAuth2 from '@oauth2-cli/qui-cli/dist/OAuth2.js';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
token_endpoint: 'https://oauth2.sky.blackbaud.com/token',
|
|
13
|
-
env: {
|
|
14
|
-
client_id: 'SKY_CLIENT_ID',
|
|
15
|
-
client_secret: 'SKY_CLIENT_SECRET',
|
|
16
|
-
redirect_uri: 'SKY_REDIRECT_URI',
|
|
17
|
-
token_path: 'SKY_TOKEN_PATH',
|
|
18
|
-
access_token: 'SKY_ACCESS_TOKEN'
|
|
19
|
-
},
|
|
20
|
-
man: { heading: 'Sky API options' },
|
|
21
|
-
suppress: {
|
|
22
|
-
authorizationEndpoint: true,
|
|
23
|
-
tokenEndpoint: true,
|
|
24
|
-
tokenPath: true
|
|
25
|
-
}
|
|
26
|
-
});
|
|
27
|
-
}
|
|
28
|
-
configure({ subscription_key, subscriptionKeyEnvVar, ...proposal } = {}) {
|
|
29
|
-
super.configure(proposal);
|
|
30
|
-
this.skyConfig.subscription_key =
|
|
31
|
-
subscription_key || this.skyConfig.subscription_key;
|
|
32
|
-
this.skyConfig.subscriptionKeyEnvVar =
|
|
33
|
-
subscriptionKeyEnvVar || this.skyConfig.subscriptionKeyEnvVar;
|
|
34
|
-
}
|
|
35
|
-
options() {
|
|
36
|
-
const options = super.options();
|
|
37
|
-
options.opt = {
|
|
38
|
-
...options.opt,
|
|
39
|
-
subscriptionKey: {
|
|
40
|
-
description: `Blackbaud subscription access key; will use environment ` +
|
|
41
|
-
`variable ${Colors.varName(this.skyConfig.subscriptionKeyEnvVar)} ` +
|
|
42
|
-
`if present`,
|
|
43
|
-
secret: true,
|
|
44
|
-
default: this.skyConfig.subscription_key
|
|
45
|
-
}
|
|
46
|
-
};
|
|
47
|
-
return options;
|
|
48
|
-
}
|
|
49
|
-
async init({ values }) {
|
|
50
|
-
const { subscriptionKey: subscription_key = await Env.get({
|
|
51
|
-
key: this.skyConfig.subscriptionKeyEnvVar
|
|
52
|
-
}) } = values;
|
|
53
|
-
this.configure({
|
|
54
|
-
subscription_key,
|
|
55
|
-
...values,
|
|
56
|
-
headers: { 'Bb-Api-Subscription-Key': this.skyConfig.subscription_key }
|
|
57
|
-
});
|
|
2
|
+
export class Client extends OAuth2.Client {
|
|
3
|
+
subscription_key;
|
|
4
|
+
constructor({ subscription_key, ...credentials }) {
|
|
5
|
+
super(credentials);
|
|
6
|
+
this.subscription_key = subscription_key;
|
|
7
|
+
}
|
|
8
|
+
request(...args) {
|
|
9
|
+
const [url, method, body, headers = new Headers(), dPoPOptions] = args;
|
|
10
|
+
headers.set('Bb-Api-Subscription-Key', this.subscription_key);
|
|
11
|
+
return super.request(url, method, body, headers, dPoPOptions);
|
|
58
12
|
}
|
|
59
13
|
}
|
package/dist/Module.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { SkyAPIPlugin } from './SkyAPI.js';
|
|
2
|
+
export * from './SkyAPI.js';
|
|
3
|
+
declare const sky: SkyAPIPlugin;
|
|
4
|
+
export declare const name: string;
|
|
5
|
+
export declare const configure: ({ subscription_key, subscriptionKeyEnvVar, ...proposal }?: import("./SkyAPI.js").ConfigurationProposal) => void;
|
|
6
|
+
export declare const options: () => import("@qui-cli/plugin").Options;
|
|
7
|
+
export declare const init: ({ values }: import("@qui-cli/plugin").ExpectedArguments<typeof this.options>) => Promise<void>;
|
|
8
|
+
export declare const getToken: typeof sky.getToken;
|
|
9
|
+
export declare const getClient: typeof sky.getClient;
|
|
10
|
+
export declare const request: typeof sky.request;
|
|
11
|
+
export declare const requestJSON: typeof sky.requestJSON;
|
|
12
|
+
export declare const fetch: typeof sky.fetch;
|
|
13
|
+
export declare const fetchJSON: typeof sky.fetchJSON;
|
package/dist/Module.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { SkyAPIPlugin } from './SkyAPI.js';
|
|
2
|
+
export * from './SkyAPI.js';
|
|
3
|
+
const sky = new SkyAPIPlugin();
|
|
4
|
+
export const name = sky.name;
|
|
5
|
+
export const configure = sky.configure.bind(sky);
|
|
6
|
+
export const options = sky.options.bind(sky);
|
|
7
|
+
export const init = sky.init.bind(sky);
|
|
8
|
+
export const getToken = sky.getToken.bind(sky);
|
|
9
|
+
export const getClient = sky.getClient.bind(sky);
|
|
10
|
+
export const request = sky.request.bind(sky);
|
|
11
|
+
export const requestJSON = sky.requestJSON.bind(sky);
|
|
12
|
+
export const fetch = sky.fetch.bind(sky);
|
|
13
|
+
export const fetchJSON = sky.fetchJSON.bind(sky);
|
package/dist/Paginated.js
CHANGED
package/dist/SkyAPI.d.ts
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import * as OAuth2 from '@oauth2-cli/qui-cli/dist/OAuth2.js';
|
|
2
|
+
import * as Plugin from '@qui-cli/plugin';
|
|
3
|
+
import { Client } from './Client.js';
|
|
4
|
+
export { EnvironmentStorage, FileStorage, TokenStorage } from '@oauth2-cli/qui-cli/dist/OAuth2.js';
|
|
5
|
+
export * from './Client.js';
|
|
3
6
|
export * as school from './school/index.js';
|
|
7
|
+
type SkyConfiguration = {
|
|
8
|
+
subscription_key?: string;
|
|
9
|
+
subscriptionKeyEnvVar: string;
|
|
10
|
+
};
|
|
11
|
+
export type Configuration = OAuth2.Configuration & SkyConfiguration;
|
|
12
|
+
export type ConfigurationProposal = OAuth2.ConfigurationProposal & Partial<SkyConfiguration>;
|
|
13
|
+
export declare class SkyAPIPlugin extends OAuth2.OAuth2Plugin<Client> {
|
|
14
|
+
private skyConfig;
|
|
15
|
+
constructor(name?: string);
|
|
16
|
+
configure({ subscription_key, subscriptionKeyEnvVar, ...proposal }?: ConfigurationProposal): void;
|
|
17
|
+
options(): Plugin.Options;
|
|
18
|
+
init({ values }: Plugin.ExpectedArguments<typeof this.options>): Promise<void>;
|
|
19
|
+
protected instantiateClient(credentials: OAuth2.Credentials): Client;
|
|
20
|
+
}
|
package/dist/SkyAPI.js
CHANGED
|
@@ -1,3 +1,77 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import * as OAuth2 from '@oauth2-cli/qui-cli/dist/OAuth2.js';
|
|
2
|
+
import { Colors } from '@qui-cli/colors';
|
|
3
|
+
import { Env } from '@qui-cli/env-1password';
|
|
4
|
+
import { Client } from './Client.js';
|
|
5
|
+
export { EnvironmentStorage, FileStorage } from '@oauth2-cli/qui-cli/dist/OAuth2.js';
|
|
6
|
+
export * from './Client.js';
|
|
3
7
|
export * as school from './school/index.js';
|
|
8
|
+
export class SkyAPIPlugin extends OAuth2.OAuth2Plugin {
|
|
9
|
+
skyConfig = {
|
|
10
|
+
subscriptionKeyEnvVar: 'SKY_SUBSCRIPTION_KEY'
|
|
11
|
+
};
|
|
12
|
+
constructor(name = '@oauth2-cli/sky-api') {
|
|
13
|
+
super(name);
|
|
14
|
+
super.configure({
|
|
15
|
+
authorization_endpoint: 'https://app.blackbaud.com/oauth/authorize',
|
|
16
|
+
token_endpoint: 'https://oauth2.sky.blackbaud.com/token',
|
|
17
|
+
opt: {
|
|
18
|
+
clientId: 'skyClientId',
|
|
19
|
+
clientSecret: 'skyClientSecret',
|
|
20
|
+
redirectUri: 'skyRedirectUri'
|
|
21
|
+
},
|
|
22
|
+
env: {
|
|
23
|
+
clientId: 'SKY_CLIENT_ID',
|
|
24
|
+
clientSecret: 'SKY_CLIENT_SECRET',
|
|
25
|
+
redirectUri: 'SKY_REDIRECT_URI',
|
|
26
|
+
tokenPath: 'SKY_TOKEN_PATH',
|
|
27
|
+
accessToken: 'SKY_ACCESS_TOKEN'
|
|
28
|
+
},
|
|
29
|
+
man: { heading: 'Sky API options' },
|
|
30
|
+
suppress: {
|
|
31
|
+
authorizationEndpoint: true,
|
|
32
|
+
tokenEndpoint: true,
|
|
33
|
+
tokenPath: true,
|
|
34
|
+
accessToken: true
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
configure({ subscription_key, subscriptionKeyEnvVar, ...proposal } = {}) {
|
|
39
|
+
super.configure(proposal);
|
|
40
|
+
this.skyConfig.subscription_key =
|
|
41
|
+
subscription_key || this.skyConfig.subscription_key;
|
|
42
|
+
this.skyConfig.subscriptionKeyEnvVar =
|
|
43
|
+
subscriptionKeyEnvVar || this.skyConfig.subscriptionKeyEnvVar;
|
|
44
|
+
}
|
|
45
|
+
options() {
|
|
46
|
+
const options = super.options();
|
|
47
|
+
options.opt = {
|
|
48
|
+
...options.opt,
|
|
49
|
+
subscriptionKey: {
|
|
50
|
+
description: `Blackbaud subscription access key; will use environment ` +
|
|
51
|
+
`variable ${Colors.varName(this.skyConfig.subscriptionKeyEnvVar)} ` +
|
|
52
|
+
`if present`,
|
|
53
|
+
secret: true,
|
|
54
|
+
default: this.skyConfig.subscription_key
|
|
55
|
+
}
|
|
56
|
+
};
|
|
57
|
+
return options;
|
|
58
|
+
}
|
|
59
|
+
async init({ values }) {
|
|
60
|
+
const { subscriptionKey: subscription_key = await Env.get({
|
|
61
|
+
key: this.skyConfig.subscriptionKeyEnvVar
|
|
62
|
+
}) } = values;
|
|
63
|
+
this.configure({
|
|
64
|
+
subscription_key,
|
|
65
|
+
...values
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
instantiateClient(credentials) {
|
|
69
|
+
if (!this.skyConfig.subscription_key) {
|
|
70
|
+
throw new Error('No subscription access key is defined.');
|
|
71
|
+
}
|
|
72
|
+
return new Client({
|
|
73
|
+
subscription_key: this.skyConfig.subscription_key,
|
|
74
|
+
...credentials
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import * as SkyAPI from './Module.js';
|
|
2
|
+
export { SkyAPI };
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { register } from '@qui-cli/plugin';
|
|
2
|
-
import
|
|
3
|
-
export
|
|
4
|
-
await register(
|
|
2
|
+
import * as SkyAPI from './Module.js';
|
|
3
|
+
export { SkyAPI };
|
|
4
|
+
await register(SkyAPI);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { buildQuery } from '../../../../../buildQuery.js';
|
|
2
|
+
import * as SkyAPI from '../../../../../Module.js';
|
|
2
3
|
import { Paginated } from '../../../../../Paginated.js';
|
|
3
|
-
import * as SkyAPI from '../../../../../SkyAPI.js';
|
|
4
4
|
export async function assignmentsBySection(section_id, params = {}) {
|
|
5
|
-
return new Paginated(await SkyAPI.
|
|
5
|
+
return new Paginated(await SkyAPI.requestJSON(`https://api.sky.blackbaud.com/school/v1/academics/sections/${section_id}/assignments?${buildQuery(params)}`));
|
|
6
6
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
import * as SkyAPI from '../../../../Module.js';
|
|
1
2
|
import { Paginated } from '../../../../Paginated.js';
|
|
2
|
-
import * as SkyAPI from '../../../../SkyAPI.js';
|
|
3
3
|
import { ContentManagementRequest } from '../ContentManagementRequest.js';
|
|
4
4
|
export * from './ContentAnnouncement.js';
|
|
5
5
|
export * from './ContentAnnouncementCategory.js';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
import * as SkyAPI from '../../../../Module.js';
|
|
1
2
|
import { Paginated } from '../../../../Paginated.js';
|
|
2
|
-
import * as SkyAPI from '../../../../SkyAPI.js';
|
|
3
3
|
export * from './ContentAnnouncement.js';
|
|
4
4
|
export * from './ContentAnnouncementCategory.js';
|
|
5
5
|
export * from './ContentAnnouncementCategoryCollection.js';
|
|
6
6
|
export async function categories() {
|
|
7
|
-
return new Paginated(await SkyAPI.
|
|
7
|
+
return new Paginated(await SkyAPI.requestJSON('https://api.sky.blackbaud.com/school/v1/contentmanagement/announcements/categories'));
|
|
8
8
|
}
|
|
9
9
|
export async function list(request) {
|
|
10
|
-
return SkyAPI.
|
|
10
|
+
return SkyAPI.requestJSON('https://api.sky.blackbaud.com/school/v1/contentmanagement/announcements/list', 'POST', JSON.stringify(request), new Headers({ 'Content-Type': 'application/json' }));
|
|
11
11
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
import * as SkyAPI from '../../../../Module.js';
|
|
1
2
|
import { Paginated } from '../../../../Paginated.js';
|
|
2
|
-
import * as SkyAPI from '../../../../SkyAPI.js';
|
|
3
3
|
import { ContentManagementRequest } from '../ContentManagementRequest.js';
|
|
4
4
|
export * from './NewsCategory.js';
|
|
5
5
|
export * from './NewsCategoryCollection.js';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
import * as SkyAPI from '../../../../Module.js';
|
|
1
2
|
import { Paginated } from '../../../../Paginated.js';
|
|
2
|
-
import * as SkyAPI from '../../../../SkyAPI.js';
|
|
3
3
|
export * from './NewsCategory.js';
|
|
4
4
|
export * from './NewsCategoryCollection.js';
|
|
5
5
|
export * from './NewsItem.js';
|
|
6
6
|
export async function categories() {
|
|
7
|
-
return new Paginated(await SkyAPI.
|
|
7
|
+
return new Paginated(await SkyAPI.requestJSON('https://api.sky.blackbaud.com/school/v1/contentmanagement/news/categories'));
|
|
8
8
|
}
|
|
9
9
|
export async function list(request) {
|
|
10
|
-
return await SkyAPI.
|
|
10
|
+
return await SkyAPI.requestJSON('https://api.sky.blackbaud.com/school/v1/contentmanagement/news/list', 'POST', JSON.stringify(request), new Headers({ 'Content-Type': 'application/json' }));
|
|
11
11
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
import * as SkyAPI from '../../../../Module.js';
|
|
1
2
|
import { Paginated } from '../../../../Paginated.js';
|
|
2
|
-
import * as SkyAPI from '../../../../SkyAPI.js';
|
|
3
3
|
import { ContentManagementRequest } from '../ContentManagementRequest.js';
|
|
4
4
|
export * from './ImageDimension.js';
|
|
5
5
|
export * from './ImageSettings.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
import * as SkyAPI from '../../../../Module.js';
|
|
1
2
|
import { Paginated } from '../../../../Paginated.js';
|
|
2
|
-
import * as SkyAPI from '../../../../SkyAPI.js';
|
|
3
3
|
export * from './ImageDimension.js';
|
|
4
4
|
export * from './ImageSettings.js';
|
|
5
5
|
export * from './MediaItem.js';
|
|
@@ -8,11 +8,11 @@ export * from './PhotoAlbum.js';
|
|
|
8
8
|
export * from './PhotoCategory.js';
|
|
9
9
|
export * from './PhotoCategoryCollection.js';
|
|
10
10
|
export async function categories() {
|
|
11
|
-
return new Paginated(await SkyAPI.
|
|
11
|
+
return new Paginated(await SkyAPI.requestJSON('https://api.sky.blackbaud.com/school/v1/contentmanagement/photoalbums/categories'));
|
|
12
12
|
}
|
|
13
13
|
export async function list(request) {
|
|
14
|
-
return new Paginated(await SkyAPI.
|
|
14
|
+
return new Paginated(await SkyAPI.requestJSON('https://api.sky.blackbaud.com/school/v1/contentmanagement/photoalbums/list', 'POST', JSON.stringify(request), new Headers({ 'Content-Type': 'application/json' })));
|
|
15
15
|
}
|
|
16
16
|
export async function photosById(album_id) {
|
|
17
|
-
return new Paginated(await SkyAPI.
|
|
17
|
+
return new Paginated(await SkyAPI.requestJSON(`https://api.sky.blackbaud.com/school/v1/contentmanagement/photoalbums/${album_id}`));
|
|
18
18
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oauth2-cli/sky-api",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"blackbaud",
|
|
6
6
|
"sky",
|
|
@@ -22,24 +22,23 @@
|
|
|
22
22
|
"main": "./dist/index.js",
|
|
23
23
|
"types": "./dist/index.d.ts",
|
|
24
24
|
"dependencies": {
|
|
25
|
+
"@oauth2-cli/qui-cli": "^0.5.6",
|
|
25
26
|
"node-fetch": "^3.3.2",
|
|
26
27
|
"oauth2-cli": "^0.2.3"
|
|
27
28
|
},
|
|
28
29
|
"devDependencies": {
|
|
29
30
|
"@battis/descriptive-types": "^0.2.6",
|
|
30
31
|
"@battis/typescript-tricks": "^0.7.6",
|
|
31
|
-
"@
|
|
32
|
-
"@qui-cli/
|
|
33
|
-
"@qui-cli/env-1password": "^1.2.5",
|
|
32
|
+
"@qui-cli/colors": "^3.2.2",
|
|
33
|
+
"@qui-cli/env-1password": "^1.2.6",
|
|
34
34
|
"@qui-cli/plugin": "^4.0.0",
|
|
35
|
-
"@tsconfig/
|
|
35
|
+
"@tsconfig/node24": "^24.0.3",
|
|
36
36
|
"commit-and-tag-version": "^12.6.1",
|
|
37
37
|
"del-cli": "^6.0.0",
|
|
38
38
|
"npm-run-all": "^4.1.5",
|
|
39
39
|
"typescript": "^5.9.3"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"@oauth2-cli/qui-cli": "0.4.x",
|
|
43
42
|
"@qui-cli/plugin": ">=3"
|
|
44
43
|
},
|
|
45
44
|
"scripts": {
|
|
@@ -47,6 +46,6 @@
|
|
|
47
46
|
"build": "run-s build:*",
|
|
48
47
|
"build:clean": "run-s clean",
|
|
49
48
|
"build:compile": "tsc",
|
|
50
|
-
"
|
|
49
|
+
"version": "commit-and-tag-version"
|
|
51
50
|
}
|
|
52
51
|
}
|