Skip to content

Commit 5fb93c3

Browse files
committed
change package name everywhere
1 parent cfc1df9 commit 5fb93c3

File tree

680 files changed

+1041
-1042
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

680 files changed

+1041
-1042
lines changed

.speakeasy/gen.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ id: 14ab5d0c-dee4-4376-a445-53afe1ba3300
33
management:
44
docChecksum: 5565b71e7da4150e92d10b9020d0b922
55
docVersion: latest
6-
speakeasyVersion: 1.474.0
7-
generationVersion: 2.495.0
8-
releaseVersion: 0.1.0
9-
configChecksum: 7e5317669ec40a3ee12be54ff152a063
6+
speakeasyVersion: 1.476.1
7+
generationVersion: 2.495.1
8+
releaseVersion: 0.1.1
9+
configChecksum: 80f14dbc514fd2ffec2f0eac6aeed4ed
1010
repoURL: https://github.com/moovfinancial/moov-typescript.git
1111
installationURL: https://github.com/moovfinancial/moov-typescript
1212
published: true

.speakeasy/gen.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ generation:
1313
oAuth2ClientCredentialsEnabled: true
1414
oAuth2PasswordEnabled: true
1515
typescript:
16-
version: 0.1.0
16+
version: 0.1.1
1717
additionalDependencies:
1818
dependencies: {}
1919
devDependencies: {}
@@ -40,7 +40,7 @@ typescript:
4040
methodArguments: require-security-and-request
4141
moduleFormat: commonjs
4242
outputModelSuffix: output
43-
packageName: "@moovio/sdk"
43+
packageName: '@moovio/sdk'
4444
responseFormat: flat
4545
templateVersion: v2
4646
useIndexModules: true

.speakeasy/workflow.lock

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
1-
speakeasyVersion: 1.474.0
1+
speakeasyVersion: 1.476.1
22
sources:
33
latest:
44
sourceNamespace: api-latest
5-
sourceRevisionDigest: sha256:4b1815b6cee4095bb7c3b7f90f3e4390d5cfc51012d6fbce8ae6fdea89c5bfa9
5+
sourceRevisionDigest: sha256:d9671d9e4162903b200ed921331c5a3b77e557e013b6e2a22893bf716b405c0b
66
sourceBlobDigest: sha256:4bee50e6567f031617e00f43e3442e9f4c7ce0e317b689f2539dfd71905d08ce
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1737505581
109
targets:
1110
moov:
1211
source: latest
1312
sourceNamespace: api-latest
14-
sourceRevisionDigest: sha256:4b1815b6cee4095bb7c3b7f90f3e4390d5cfc51012d6fbce8ae6fdea89c5bfa9
13+
sourceRevisionDigest: sha256:d9671d9e4162903b200ed921331c5a3b77e557e013b6e2a22893bf716b405c0b
1514
sourceBlobDigest: sha256:4bee50e6567f031617e00f43e3442e9f4c7ce0e317b689f2539dfd71905d08ce
1615
workflow:
1716
workflowVersion: 1.0.0

FUNCTIONS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ specific category of applications.
1919
## Example
2020

2121
```typescript
22-
import { MoovCore } from "moov-sdk/core.js";
23-
import { accountsCreateAccount } from "moov-sdk/funcs/accountsCreateAccount.js";
24-
import { SDKValidationError } from "moov-sdk/models/errors/sdkvalidationerror.js";
22+
import { MoovCore } from "@moovio/sdk/core.js";
23+
import { accountsCreateAccount } from "@moovio/sdk/funcs/accountsCreateAccount.js";
24+
import { SDKValidationError } from "@moovio/sdk/models/errors/sdkvalidationerror.js";
2525

2626
// Use `MoovCore` for best tree-shaking performance.
2727
// You can create one instance of it to use across an application.

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -53,25 +53,25 @@ The SDK can be installed with either [npm](https://www.npmjs.com/), [pnpm](https
5353
### NPM
5454

5555
```bash
56-
npm add moov-sdk
56+
npm add @moovio/sdk
5757
```
5858

5959
### PNPM
6060

6161
```bash
62-
pnpm add moov-sdk
62+
pnpm add @moovio/sdk
6363
```
6464

6565
### Bun
6666

6767
```bash
68-
bun add moov-sdk
68+
bun add @moovio/sdk
6969
```
7070

7171
### Yarn
7272

7373
```bash
74-
yarn add moov-sdk zod
74+
yarn add @moovio/sdk zod
7575

7676
# Note that Yarn does not install peer dependencies automatically. You will need
7777
# to install zod as shown above.
@@ -90,7 +90,7 @@ For supported JavaScript runtimes, please consult [RUNTIMES.md](RUNTIMES.md).
9090
### Example
9191

9292
```typescript
93-
import { Moov } from "moov-sdk";
93+
import { Moov } from "@moovio/sdk";
9494

9595
const moov = new Moov();
9696

@@ -133,7 +133,7 @@ This SDK supports the following security scheme globally:
133133

134134
You can set the security parameters through the `security` optional parameter when initializing the SDK client instance. For example:
135135
```typescript
136-
import { Moov } from "moov-sdk";
136+
import { Moov } from "@moovio/sdk";
137137

138138
const moov = new Moov({
139139
security: {
@@ -157,7 +157,7 @@ run();
157157

158158
Some operations in this SDK require the security scheme to be specified at the request level. For example:
159159
```typescript
160-
import { Moov } from "moov-sdk";
160+
import { Moov } from "@moovio/sdk";
161161

162162
const moov = new Moov();
163163

@@ -1490,7 +1490,7 @@ Certain SDK methods accept files as part of a multi-part request. It is possible
14901490
> - **Node.js v18:** A file stream can be created using the `fileFrom` helper from [`fetch-blob/from.js`](https://www.npmjs.com/package/fetch-blob).
14911491
14921492
```typescript
1493-
import { Moov } from "moov-sdk";
1493+
import { Moov } from "@moovio/sdk";
14941494
import { openAsBlob } from "node:fs";
14951495

14961496
const moov = new Moov();
@@ -1523,7 +1523,7 @@ Some of the endpoints in this SDK support retries. If you use the SDK without a
15231523

15241524
To change the default retry strategy for a single API call, simply provide a retryConfig object to the call:
15251525
```typescript
1526-
import { Moov } from "moov-sdk";
1526+
import { Moov } from "@moovio/sdk";
15271527

15281528
const moov = new Moov();
15291529

@@ -1565,7 +1565,7 @@ run();
15651565

15661566
If you'd like to override the default retry strategy for all operations that support retries, you can provide a retryConfig at SDK initialization:
15671567
```typescript
1568-
import { Moov } from "moov-sdk";
1568+
import { Moov } from "@moovio/sdk";
15691569

15701570
const moov = new Moov({
15711571
retryConfig: {
@@ -1620,12 +1620,12 @@ Some methods specify known errors which can be thrown. All the known errors are
16201620
If the method throws an error and it is not captured by the known errors, it will default to throwing a `APIError`.
16211621

16221622
```typescript
1623-
import { Moov } from "moov-sdk";
1623+
import { Moov } from "@moovio/sdk";
16241624
import {
16251625
CreateAccountResponseBody,
16261626
GenericError,
16271627
SDKValidationError,
1628-
} from "moov-sdk/models/errors";
1628+
} from "@moovio/sdk/models/errors";
16291629

16301630
const moov = new Moov();
16311631

@@ -1702,7 +1702,7 @@ In some rare cases, the SDK can fail to get a response from the server or even m
17021702

17031703
The default server can also be overridden globally by passing a URL to the `serverURL: string` optional parameter when initializing the SDK client instance. For example:
17041704
```typescript
1705-
import { Moov } from "moov-sdk";
1705+
import { Moov } from "@moovio/sdk";
17061706

17071707
const moov = new Moov({
17081708
serverURL: "https://api.moov.io",
@@ -1752,8 +1752,8 @@ custom header and a timeout to requests and how to use the `"requestError"` hook
17521752
to log errors:
17531753

17541754
```typescript
1755-
import { Moov } from "moov-sdk";
1756-
import { HTTPClient } from "moov-sdk/lib/http";
1755+
import { Moov } from "@moovio/sdk";
1756+
import { HTTPClient } from "@moovio/sdk/lib/http";
17571757

17581758
const httpClient = new HTTPClient({
17591759
// fetcher takes a function that has the same signature as native `fetch`.
@@ -1794,7 +1794,7 @@ You can pass a logger that matches `console`'s interface as an SDK option.
17941794
> Beware that debug logging will reveal secrets, like API tokens in headers, in log messages printed to a console or files. It's recommended to use this feature only during local development and not in production.
17951795
17961796
```typescript
1797-
import { Moov } from "moov-sdk";
1797+
import { Moov } from "@moovio/sdk";
17981798

17991799
const sdk = new Moov({ debugLogger: console });
18001800
```

USAGE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- Start SDK Example Usage [usage] -->
22
```typescript
3-
import { Moov } from "moov-sdk";
3+
import { Moov } from "@moovio/sdk";
44

55
const moov = new Moov();
66

docs/models/components/account.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Example Usage
44

55
```typescript
6-
import { Account } from "moov-sdk/models/components";
6+
import { Account } from "@moovio/sdk/models/components";
77

88
let value: Account = {
99
accountID: "53ca67ea-6fd3-423f-9544-ce2404159d33",

docs/models/components/accountcapability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Describes an action or set of actions that an account is permitted to perform.
55
## Example Usage
66

77
```typescript
8-
import { AccountCapability } from "moov-sdk/models/components";
8+
import { AccountCapability } from "@moovio/sdk/models/components";
99

1010
let value: AccountCapability = {
1111
capability: "<value>",

docs/models/components/accountcountries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The countries in which an account operates.
55
## Example Usage
66

77
```typescript
8-
import { AccountCountries } from "moov-sdk/models/components";
8+
import { AccountCountries } from "@moovio/sdk/models/components";
99

1010
let value: AccountCountries = {
1111
countries: [

docs/models/components/accountnameverification.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The results of submitting cardholder name to a card network for verification.
55
## Example Usage
66

77
```typescript
8-
import { AccountNameVerification } from "moov-sdk/models/components";
8+
import { AccountNameVerification } from "@moovio/sdk/models/components";
99

1010
let value: AccountNameVerification = {
1111
firstName: "match",

0 commit comments

Comments
 (0)