Skip to content

Commit

Permalink
chore(deps): update all dependencies to latest versions
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Updated dependencies may introduce breaking changes.
  • Loading branch information
Benjamin-Stefan committed Nov 27, 2024
1 parent bed165b commit d5058fb
Show file tree
Hide file tree
Showing 14 changed files with 473 additions and 908 deletions.
19 changes: 18 additions & 1 deletion dist/index.d.mts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,23 @@ interface SSHOptions {
privateKeyPath?: string;
passphrase?: string;
}
/**
* Enum-like type that defines various service types supported by the system.
*
* ServiceType represents a set of valid services that can be interacted with. Each service type
* is represented as a string and can be one of the following:
* - "wds": Wireless data service
* - "nas": Network access service
* - "uim": User identity module service
* - "sms": Short message service
* - "voice": Voice service
* - "dms": Device management service
* - "gps": Global positioning service
*
* @example
* const myService: ServiceType = "sms";
*/
type ServiceType = "wds" | "nas" | "uim" | "sms" | "voice" | "dms" | "gps";
/**
* Options for configuring the Uqmi client, allowing for optional settings like timeout.
*
Expand Down Expand Up @@ -341,4 +358,4 @@ declare class UqmiClient {
getServingSystem(): Promise<string>;
}

export { UqmiClient };
export { type SSHOptions, type ServiceType, UqmiClient, type UqmiClientOptions };
19 changes: 18 additions & 1 deletion dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,23 @@ interface SSHOptions {
privateKeyPath?: string;
passphrase?: string;
}
/**
* Enum-like type that defines various service types supported by the system.
*
* ServiceType represents a set of valid services that can be interacted with. Each service type
* is represented as a string and can be one of the following:
* - "wds": Wireless data service
* - "nas": Network access service
* - "uim": User identity module service
* - "sms": Short message service
* - "voice": Voice service
* - "dms": Device management service
* - "gps": Global positioning service
*
* @example
* const myService: ServiceType = "sms";
*/
type ServiceType = "wds" | "nas" | "uim" | "sms" | "voice" | "dms" | "gps";
/**
* Options for configuring the Uqmi client, allowing for optional settings like timeout.
*
Expand Down Expand Up @@ -341,4 +358,4 @@ declare class UqmiClient {
getServingSystem(): Promise<string>;
}

export { UqmiClient };
export { type SSHOptions, type ServiceType, UqmiClient, type UqmiClientOptions };
2 changes: 1 addition & 1 deletion dist/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion dist/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export interface SSHOptions {
/**
* Enum-like type that defines various service types supported by the system.
*
* @description
* ServiceType represents a set of valid services that can be interacted with. Each service type
* is represented as a string and can be one of the following:
* - "wds": Wireless data service
Expand Down
2 changes: 1 addition & 1 deletion dist/types.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 10 additions & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
**UqmiClient v1.1.0****Docs**
**UqmiClient v1.1.0**

***

Expand All @@ -7,3 +7,12 @@
## Classes

- [UqmiClient](classes/UqmiClient.md)

## Interfaces

- [SSHOptions](interfaces/SSHOptions.md)
- [UqmiClientOptions](interfaces/UqmiClientOptions.md)

## Type Aliases

- [ServiceType](type-aliases/ServiceType.md)
Loading

0 comments on commit d5058fb

Please sign in to comment.