fix(core): update

This commit is contained in:
2024-01-24 15:24:53 +01:00
parent ba7ffa45e1
commit eab8a38234
18 changed files with 5871 additions and 1639 deletions

8
ts/00_commitinfo_data.ts Normal file
View File

@ -0,0 +1,8 @@
/**
* autocreated commitinfo by @pushrocks/commitinfo
*/
export const commitinfo = {
name: '@apiclient.xyz/digitalocean',
version: '1.0.4',
description: 'a digital ocean API wrapper by Lossless GmbH'
}

View File

@ -1,4 +1,4 @@
import * as plugins from './do.plugins';
import * as plugins from './do.plugins.js';
export class DigitalOceanAccount {
token: string;

View File

@ -1,7 +1,7 @@
import * as plugins from './do.plugins';
import * as plugins from './do.plugins.js';
import { TDropletSizes, TRegions, TImages } from './interfaces';
import { DigitalOceanAccount } from './do.classes.doaccount';
import { type TDropletSizes, type TRegions, type TImages } from './interfaces/index.js';
import { DigitalOceanAccount } from './do.classes.doaccount.js';
export class DigitalOceanDroplet {
public static async createDroplet(dropletCreateOptions: {

View File

@ -1,3 +1,3 @@
import * as smartrequest from '@pushrocks/smartrequest';
import * as smartrequest from '@push.rocks/smartrequest';
export { smartrequest };

View File

@ -1,2 +1,2 @@
export * from './do.classes.doaccount';
export * from './do.classes.dodroplet';
export * from './do.classes.doaccount.js';
export * from './do.classes.dodroplet.js';

View File

@ -1,3 +1,3 @@
export * from './droplets';
export * from './regions';
export * from './images';
export * from './droplets.js';
export * from './regions.js';
export * from './images.js';