@moovio/sdk 0.22.7 → 0.22.8
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/README.md +72 -51
- package/_speakeasy/.github/action-inputs-config.json +53 -0
- package/_speakeasy/.github/action-security-config.json +88 -0
- package/bin/mcp-server.js +40683 -21874
- package/bin/mcp-server.js.map +212 -37
- package/examples/package-lock.json +2 -2
- package/funcs/accountsConnect.d.ts +16 -0
- package/funcs/accountsConnect.d.ts.map +1 -0
- package/funcs/accountsConnect.js +138 -0
- package/funcs/accountsConnect.js.map +1 -0
- package/funcs/accountsListConnected.d.ts +21 -0
- package/funcs/accountsListConnected.d.ts.map +1 -0
- package/funcs/accountsListConnected.js +138 -0
- package/funcs/accountsListConnected.js.map +1 -0
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/prompts.d.ts +3 -3
- package/mcp-server/prompts.d.ts.map +1 -1
- package/mcp-server/prompts.js.map +1 -1
- package/mcp-server/resources.d.ts +3 -3
- package/mcp-server/resources.d.ts.map +1 -1
- package/mcp-server/resources.js.map +1 -1
- package/mcp-server/server.d.ts.map +1 -1
- package/mcp-server/server.js +5 -1
- package/mcp-server/server.js.map +1 -1
- package/mcp-server/tools/accountsConnect.d.ts +8 -0
- package/mcp-server/tools/accountsConnect.d.ts.map +1 -0
- package/mcp-server/tools/accountsConnect.js +62 -0
- package/mcp-server/tools/accountsConnect.js.map +1 -0
- package/mcp-server/tools/accountsListConnected.d.ts +8 -0
- package/mcp-server/tools/accountsListConnected.d.ts.map +1 -0
- package/mcp-server/tools/accountsListConnected.js +69 -0
- package/mcp-server/tools/accountsListConnected.js.map +1 -0
- package/mcp-server/tools.d.ts +3 -3
- package/mcp-server/tools.d.ts.map +1 -1
- package/mcp-server/tools.js.map +1 -1
- package/models/components/index.d.ts +1 -0
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +1 -0
- package/models/components/index.js.map +1 -1
- package/models/components/sharescopes.d.ts +29 -0
- package/models/components/sharescopes.d.ts.map +1 -0
- package/models/components/sharescopes.js +61 -0
- package/models/components/sharescopes.js.map +1 -0
- package/models/errors/connectaccountrequestvalidationerror.d.ts +33 -0
- package/models/errors/connectaccountrequestvalidationerror.d.ts.map +1 -0
- package/models/errors/connectaccountrequestvalidationerror.js +80 -0
- package/models/errors/connectaccountrequestvalidationerror.js.map +1 -0
- package/models/errors/index.d.ts +1 -0
- package/models/errors/index.d.ts.map +1 -1
- package/models/errors/index.js +1 -0
- package/models/errors/index.js.map +1 -1
- package/models/operations/connectaccount.d.ts +64 -0
- package/models/operations/connectaccount.d.ts.map +1 -0
- package/models/operations/connectaccount.js +118 -0
- package/models/operations/connectaccount.js.map +1 -0
- package/models/operations/index.d.ts +2 -0
- package/models/operations/index.d.ts.map +1 -1
- package/models/operations/index.js +2 -0
- package/models/operations/index.js.map +1 -1
- package/models/operations/listconnectedaccountsforaccount.d.ts +130 -0
- package/models/operations/listconnectedaccountsforaccount.d.ts.map +1 -0
- package/models/operations/listconnectedaccountsforaccount.js +130 -0
- package/models/operations/listconnectedaccountsforaccount.js.map +1 -0
- package/package.json +2 -2
- package/sdk/accounts.d.ts +16 -0
- package/sdk/accounts.d.ts.map +1 -1
- package/sdk/accounts.js +22 -0
- package/sdk/accounts.js.map +1 -1
- package/src/funcs/accountsConnect.ts +200 -0
- package/src/funcs/accountsListConnected.ts +202 -0
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/prompts.ts +7 -3
- package/src/mcp-server/resources.ts +7 -3
- package/src/mcp-server/server.ts +5 -1
- package/src/mcp-server/tools/accountsConnect.ts +35 -0
- package/src/mcp-server/tools/accountsListConnected.ts +42 -0
- package/src/mcp-server/tools.ts +7 -3
- package/src/models/components/index.ts +1 -0
- package/src/models/components/sharescopes.ts +65 -0
- package/src/models/errors/connectaccountrequestvalidationerror.ts +74 -0
- package/src/models/errors/index.ts +1 -0
- package/src/models/operations/connectaccount.ts +181 -0
- package/src/models/operations/index.ts +2 -0
- package/src/models/operations/listconnectedaccountsforaccount.ts +276 -0
- package/src/sdk/accounts.ts +38 -0
package/README.md
CHANGED
|
@@ -314,6 +314,16 @@ forward for reporting purposes.
|
|
|
314
314
|
|
|
315
315
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
316
316
|
you'll need to specify the `/accounts/{accountID}/profile.disconnect` scope.
|
|
317
|
+
* [listConnected](docs/sdks/accounts/README.md#listconnected) - List or search accounts to which the caller is connected.
|
|
318
|
+
|
|
319
|
+
All supported query parameters are optional. If none are provided the response will include all connected accounts.
|
|
320
|
+
Pagination is supported via the `skip` and `count` query parameters. Searching by name and email will overlap and
|
|
321
|
+
return results based on relevance. Accounts with AccountType `guest` will not be included in the response.
|
|
322
|
+
|
|
323
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) you'll need
|
|
324
|
+
to specify the `/accounts.read` scope.
|
|
325
|
+
* [connect](docs/sdks/accounts/README.md#connect) - Shares access scopes from the account specified to the caller, establishing a connection
|
|
326
|
+
between the two accounts with the specified permissions.
|
|
317
327
|
* [getCountries](docs/sdks/accounts/README.md#getcountries) - Retrieve the specified countries of operation for an account.
|
|
318
328
|
|
|
319
329
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
@@ -1257,6 +1267,8 @@ This endpoint will always overwrite the previously assigned values.
|
|
|
1257
1267
|
|
|
1258
1268
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1259
1269
|
you'll need to specify the `/accounts/{accountID}/profile.write` scope.
|
|
1270
|
+
- [`accountsConnect`](docs/sdks/accounts/README.md#connect) - Shares access scopes from the account specified to the caller, establishing a connection
|
|
1271
|
+
between the two accounts with the specified permissions.
|
|
1260
1272
|
- [`accountsCreate`](docs/sdks/accounts/README.md#create) - You can create **business** or **individual** accounts for your users (i.e., customers, merchants) by passing the required
|
|
1261
1273
|
information to Moov. Requirements differ per account type and requested [capabilities](https://docs.moov.io/guides/accounts/capabilities/requirements/).
|
|
1262
1274
|
|
|
@@ -1301,6 +1313,14 @@ All supported query parameters are optional. If none are provided the response w
|
|
|
1301
1313
|
Pagination is supported via the `skip` and `count` query parameters. Searching by name and email will overlap and
|
|
1302
1314
|
return results based on relevance. Accounts with AccountType `guest` will not be included in the response.
|
|
1303
1315
|
|
|
1316
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) you'll need
|
|
1317
|
+
to specify the `/accounts.read` scope.
|
|
1318
|
+
- [`accountsListConnected`](docs/sdks/accounts/README.md#listconnected) - List or search accounts to which the caller is connected.
|
|
1319
|
+
|
|
1320
|
+
All supported query parameters are optional. If none are provided the response will include all connected accounts.
|
|
1321
|
+
Pagination is supported via the `skip` and `count` query parameters. Searching by name and email will overlap and
|
|
1322
|
+
return results based on relevance. Accounts with AccountType `guest` will not be included in the response.
|
|
1323
|
+
|
|
1304
1324
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) you'll need
|
|
1305
1325
|
to specify the `/accounts.read` scope.
|
|
1306
1326
|
- [`accountsUpdate`](docs/sdks/accounts/README.md#update) - When **can** profile data be updated:
|
|
@@ -2318,7 +2338,7 @@ run();
|
|
|
2318
2338
|
**Primary error:**
|
|
2319
2339
|
* [`MoovError`](./src/models/errors/mooverror.ts): The base class for HTTP error responses.
|
|
2320
2340
|
|
|
2321
|
-
<details><summary>Less common errors (
|
|
2341
|
+
<details><summary>Less common errors (57)</summary>
|
|
2322
2342
|
|
|
2323
2343
|
<br />
|
|
2324
2344
|
|
|
@@ -2331,56 +2351,57 @@ run();
|
|
|
2331
2351
|
|
|
2332
2352
|
|
|
2333
2353
|
**Inherit from [`MoovError`](./src/models/errors/mooverror.ts)**:
|
|
2334
|
-
* [`GenericError`](./src/models/errors/genericerror.ts): Applicable to
|
|
2335
|
-
* [`BrandValidationError`](./src/models/errors/brandvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of
|
|
2336
|
-
* [`ImageRequestValidationError`](./src/models/errors/imagerequestvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of
|
|
2337
|
-
* [`ProductRequestValidationError`](./src/models/errors/productrequestvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of
|
|
2338
|
-
* [`ScheduleValidationError`](./src/models/errors/schedulevalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of
|
|
2339
|
-
* [`TerminalApplicationError`](./src/models/errors/terminalapplicationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of
|
|
2340
|
-
* [`Transfer`](./src/models/errors/transfer.ts): Details of a Transfer. Status code `409`. Applicable to 1 of
|
|
2341
|
-
* [`CardAcquiringRefund`](./src/models/errors/cardacquiringrefund.ts): Details of a card refund. Status code `409`. Applicable to 1 of
|
|
2342
|
-
* [`CreateAccountError`](./src/models/errors/createaccounterror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2343
|
-
* [`PatchAccountError`](./src/models/errors/patchaccounterror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2344
|
-
* [`
|
|
2345
|
-
* [`
|
|
2346
|
-
* [`
|
|
2347
|
-
* [`
|
|
2348
|
-
* [`
|
|
2349
|
-
* [`
|
|
2350
|
-
* [`
|
|
2351
|
-
* [`
|
|
2352
|
-
* [`
|
|
2353
|
-
* [`
|
|
2354
|
-
* [`
|
|
2355
|
-
* [`
|
|
2356
|
-
* [`
|
|
2357
|
-
* [`
|
|
2358
|
-
* [`
|
|
2359
|
-
* [`
|
|
2360
|
-
* [`
|
|
2361
|
-
* [`
|
|
2362
|
-
* [`
|
|
2363
|
-
* [`
|
|
2364
|
-
* [`
|
|
2365
|
-
* [`
|
|
2366
|
-
* [`
|
|
2367
|
-
* [`
|
|
2368
|
-
* [`
|
|
2369
|
-
* [`
|
|
2370
|
-
* [`
|
|
2371
|
-
* [`
|
|
2372
|
-
* [`
|
|
2373
|
-
* [`
|
|
2374
|
-
* [`
|
|
2375
|
-
* [`
|
|
2376
|
-
* [`
|
|
2377
|
-
* [`
|
|
2378
|
-
* [`
|
|
2379
|
-
* [`
|
|
2380
|
-
* [`
|
|
2381
|
-
* [`
|
|
2382
|
-
* [`
|
|
2383
|
-
* [`
|
|
2354
|
+
* [`GenericError`](./src/models/errors/genericerror.ts): Applicable to 75 of 169 methods.*
|
|
2355
|
+
* [`BrandValidationError`](./src/models/errors/brandvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 169 methods.*
|
|
2356
|
+
* [`ImageRequestValidationError`](./src/models/errors/imagerequestvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 169 methods.*
|
|
2357
|
+
* [`ProductRequestValidationError`](./src/models/errors/productrequestvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 169 methods.*
|
|
2358
|
+
* [`ScheduleValidationError`](./src/models/errors/schedulevalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 169 methods.*
|
|
2359
|
+
* [`TerminalApplicationError`](./src/models/errors/terminalapplicationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 169 methods.*
|
|
2360
|
+
* [`Transfer`](./src/models/errors/transfer.ts): Details of a Transfer. Status code `409`. Applicable to 1 of 169 methods.*
|
|
2361
|
+
* [`CardAcquiringRefund`](./src/models/errors/cardacquiringrefund.ts): Details of a card refund. Status code `409`. Applicable to 1 of 169 methods.*
|
|
2362
|
+
* [`CreateAccountError`](./src/models/errors/createaccounterror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2363
|
+
* [`PatchAccountError`](./src/models/errors/patchaccounterror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2364
|
+
* [`ConnectAccountRequestValidationError`](./src/models/errors/connectaccountrequestvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2365
|
+
* [`AssignCountriesError`](./src/models/errors/assigncountrieserror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2366
|
+
* [`LinkApplePayError`](./src/models/errors/linkapplepayerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2367
|
+
* [`BankAccountValidationError`](./src/models/errors/bankaccountvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2368
|
+
* [`MicroDepositValidationError`](./src/models/errors/microdepositvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2369
|
+
* [`AddCapabilitiesError`](./src/models/errors/addcapabilitieserror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2370
|
+
* [`LinkCardError`](./src/models/errors/linkcarderror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2371
|
+
* [`UpdateCardError`](./src/models/errors/updatecarderror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2372
|
+
* [`FileUploadValidationError`](./src/models/errors/fileuploadvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2373
|
+
* [`FeePlanAgreementError`](./src/models/errors/feeplanagreementerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2374
|
+
* [`FileValidationError`](./src/models/errors/filevalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2375
|
+
* [`ImageMetadataValidationError`](./src/models/errors/imagemetadatavalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2376
|
+
* [`CreateInvoiceError`](./src/models/errors/createinvoiceerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2377
|
+
* [`ListInvoicesValidationError`](./src/models/errors/listinvoicesvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2378
|
+
* [`UpdateInvoiceError`](./src/models/errors/updateinvoiceerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2379
|
+
* [`MarkInvoicePaidError`](./src/models/errors/markinvoicepaiderror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2380
|
+
* [`CreatePaymentLinkError`](./src/models/errors/createpaymentlinkerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2381
|
+
* [`UpdatePaymentLinkError`](./src/models/errors/updatepaymentlinkerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2382
|
+
* [`RepresentativeValidationError`](./src/models/errors/representativevalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2383
|
+
* [`CreateSweepConfigError`](./src/models/errors/createsweepconfigerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2384
|
+
* [`PatchSweepConfigError`](./src/models/errors/patchsweepconfigerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2385
|
+
* [`AccountTerminalApplicationError`](./src/models/errors/accountterminalapplicationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2386
|
+
* [`CreateTicketError`](./src/models/errors/createticketerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2387
|
+
* [`UpdateTicketError`](./src/models/errors/updateticketerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2388
|
+
* [`TransferOptionsValidationError`](./src/models/errors/transferoptionsvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2389
|
+
* [`TransferValidationError`](./src/models/errors/transfervalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2390
|
+
* [`ListTransfersValidationError`](./src/models/errors/listtransfersvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2391
|
+
* [`PatchTransferValidationError`](./src/models/errors/patchtransfervalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2392
|
+
* [`RefundValidationError`](./src/models/errors/refundvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2393
|
+
* [`ReversalValidationError`](./src/models/errors/reversalvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2394
|
+
* [`UpsertUnderwritingError`](./src/models/errors/upsertunderwritingerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2395
|
+
* [`UpdateUnderwritingError`](./src/models/errors/updateunderwritingerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2396
|
+
* [`CreateWalletValidationError`](./src/models/errors/createwalletvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2397
|
+
* [`ListWalletsValidationError`](./src/models/errors/listwalletsvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2398
|
+
* [`PatchWalletValidationError`](./src/models/errors/patchwalletvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2399
|
+
* [`ListWalletTransactionsValidationError`](./src/models/errors/listwallettransactionsvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2400
|
+
* [`RequestCardError`](./src/models/errors/requestcarderror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2401
|
+
* [`UpdateIssuedCardError`](./src/models/errors/updateissuedcarderror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2402
|
+
* [`RevokeTokenRequestError`](./src/models/errors/revoketokenrequesterror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2403
|
+
* [`AuthTokenRequestError`](./src/models/errors/authtokenrequesterror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2404
|
+
* [`OnboardingInviteError`](./src/models/errors/onboardinginviteerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 169 methods.*
|
|
2384
2405
|
* [`ResponseValidationError`](./src/models/errors/responsevalidationerror.ts): Type mismatch between the data returned from the server and the structure expected by the SDK. See `error.rawValue` for the raw value and `error.pretty()` for a nicely formatted multi-line string.
|
|
2385
2406
|
|
|
2386
2407
|
</details>
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"name": "mode",
|
|
4
|
+
"validation_regex": "/^(direct|pr)$/.source",
|
|
5
|
+
"validation_message": "Must be `direct` or `pr`"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"name": "speakeasy_version",
|
|
9
|
+
"validation_regex": "/^[\\w.\\-]+$/.source",
|
|
10
|
+
"validation_message": "Letters, numbers, or .-_ only"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "openapi_doc_location",
|
|
14
|
+
"validation_regex": "/^((https?):\\/\\/([\\w\\-]+\\.)+\\w+(\\/.*)?|[\\w.\\-\\/]+)$/i.source",
|
|
15
|
+
"validation_message": "Must be a valid server URL or file path containing letters, numbers, or .-_/ only"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"name": "openapi_doc_auth_header",
|
|
19
|
+
"validation_regex": "/^[A-Za-z\\-]+$/.source",
|
|
20
|
+
"validation_message": "Letters or - only"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"name": "create_release"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "publish_python",
|
|
27
|
+
"language": "python"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "publish_typescript",
|
|
31
|
+
"language": "typescript"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "publish_java",
|
|
35
|
+
"language": "java"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "publish_php",
|
|
39
|
+
"language": "php"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "publish_ruby",
|
|
43
|
+
"language": "ruby"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "publish_csharp",
|
|
47
|
+
"language": "csharp"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "publish_terraform",
|
|
51
|
+
"language": "terraform"
|
|
52
|
+
}
|
|
53
|
+
]
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"name": "pypi_token",
|
|
4
|
+
"secret_name": "PYPI_TOKEN",
|
|
5
|
+
"validation_regex": "/^[\\w.\\-]+$/.source",
|
|
6
|
+
"validation_message": "Letters, numbers, or .-_ only",
|
|
7
|
+
"language": "python"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"name": "npm_token",
|
|
11
|
+
"secret_name": "NPM_TOKEN",
|
|
12
|
+
"validation_regex": "/^[\\w.\\-]+$/.source",
|
|
13
|
+
"validation_message": "Letters, numbers, or .-_ only",
|
|
14
|
+
"language": "typescript"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"name": "packagist_username",
|
|
18
|
+
"validation_regex": "/^[\\w.\\-]+$/.source",
|
|
19
|
+
"validation_message": "Letters, numbers, or .-_ only",
|
|
20
|
+
"language": "php"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"name": "packagist_token",
|
|
24
|
+
"validation_regex": "/^[\\w.\\-]+$/.source",
|
|
25
|
+
"validation_message": "Letters, numbers, or .-_ only",
|
|
26
|
+
"language": "php"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "openapi_doc_auth_token",
|
|
30
|
+
"secret_name": "SPEC_TOKEN",
|
|
31
|
+
"validation_regex": "/^[\\w.\\-]+$/.source",
|
|
32
|
+
"validation_message": "Letters, numbers, or .-_ only"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "speakeasy_api_key",
|
|
36
|
+
"secret_name": "SPEAKEASY_API_KEY",
|
|
37
|
+
"validation_regex": "/^[\\w.\\-]+$/.source",
|
|
38
|
+
"validation_message": "Letters, numbers, or .-_ only"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "ossrh_username",
|
|
42
|
+
"secret_name": "MAVEN_USERNAME",
|
|
43
|
+
"validation_regex": "/^[\\w.\\-]+$/.source",
|
|
44
|
+
"validation_message": "Letters, numbers, or .-_ only",
|
|
45
|
+
"language": "java"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "ossrh_password",
|
|
49
|
+
"secret_name": "MAVEN_PASSWORD",
|
|
50
|
+
"language": "java"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "java_gpg_secret_key",
|
|
54
|
+
"validation_regex": "/^[\\w.\\-\\t \\r\\n]+$/.source",
|
|
55
|
+
"validation_message": "Letters, numbers, tabs, spaces, newlines, or .-_ only",
|
|
56
|
+
"language": "java"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "java_gpg_passphrase",
|
|
60
|
+
"language": "java"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"name": "terraform_gpg_secret_key",
|
|
64
|
+
"secret_name": "TERRAFORM_GPG_SECRET_KEY",
|
|
65
|
+
"validation_regex": "/^[\\w.\\-\\t \\r\\n]+$/.source",
|
|
66
|
+
"validation_message": "Letters, numbers, tabs, spaces, newlines, or .-_ only",
|
|
67
|
+
"language": "terraform"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "terraform_gpg_passphrase",
|
|
71
|
+
"secret_name": "TERRAFORM_GPG_PASSPHRASE",
|
|
72
|
+
"language": "terraform"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"name": "rubygems_auth_token",
|
|
76
|
+
"secret_name": "RUBYGEMS_AUTH_TOKEN",
|
|
77
|
+
"language": "ruby"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "nuget_api_key",
|
|
81
|
+
"secret_name": "NUGET_API_KEY",
|
|
82
|
+
"language": "csharp"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "slack_webhook_url",
|
|
86
|
+
"secret_name": "SLACK_WEBHOOK_URL"
|
|
87
|
+
}
|
|
88
|
+
]
|