@moovio/sdk 0.16.5 → 0.16.6
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/bin/mcp-server.js +14 -11
- package/bin/mcp-server.js.map +8 -8
- package/docs/sdks/products/README.md +32 -8
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/createproductoption.d.ts +3 -2
- package/models/components/createproductoption.d.ts.map +1 -1
- package/models/components/createproductoption.js +3 -2
- package/models/components/createproductoption.js.map +1 -1
- package/models/components/productoption.d.ts +3 -2
- package/models/components/productoption.d.ts.map +1 -1
- package/models/components/productoption.js +3 -2
- package/models/components/productoption.js.map +1 -1
- package/models/components/productoptionvalidationerror.d.ts +3 -2
- package/models/components/productoptionvalidationerror.d.ts.map +1 -1
- package/models/components/productoptionvalidationerror.js +3 -2
- package/models/components/productoptionvalidationerror.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/createproductoption.ts +10 -4
- package/src/models/components/productoption.ts +10 -4
- package/src/models/components/productoptionvalidationerror.ts +10 -4
package/bin/mcp-server.js
CHANGED
|
@@ -34175,9 +34175,9 @@ var init_config = __esm(() => {
|
|
|
34175
34175
|
SDK_METADATA = {
|
|
34176
34176
|
language: "typescript",
|
|
34177
34177
|
openapiDocVersion: "latest",
|
|
34178
|
-
sdkVersion: "0.16.
|
|
34178
|
+
sdkVersion: "0.16.6",
|
|
34179
34179
|
genVersion: "2.723.11",
|
|
34180
|
-
userAgent: "speakeasy-sdk/typescript 0.16.
|
|
34180
|
+
userAgent: "speakeasy-sdk/typescript 0.16.6 2.723.11 latest @moovio/sdk"
|
|
34181
34181
|
};
|
|
34182
34182
|
});
|
|
34183
34183
|
|
|
@@ -43554,17 +43554,18 @@ var init_createpaymentlink = __esm(() => {
|
|
|
43554
43554
|
var CreateProductOption$inboundSchema, CreateProductOption$outboundSchema, CreateProductOption$;
|
|
43555
43555
|
var init_createproductoption = __esm(() => {
|
|
43556
43556
|
init_esm();
|
|
43557
|
+
init_amountdecimal();
|
|
43557
43558
|
init_assignproductimage();
|
|
43558
43559
|
CreateProductOption$inboundSchema = objectType({
|
|
43559
43560
|
name: stringType(),
|
|
43560
43561
|
description: stringType().optional(),
|
|
43561
|
-
priceModifier:
|
|
43562
|
+
priceModifier: AmountDecimal$inboundSchema.optional(),
|
|
43562
43563
|
images: arrayType(AssignProductImage$inboundSchema).optional()
|
|
43563
43564
|
});
|
|
43564
43565
|
CreateProductOption$outboundSchema = objectType({
|
|
43565
43566
|
name: stringType(),
|
|
43566
43567
|
description: stringType().optional(),
|
|
43567
|
-
priceModifier:
|
|
43568
|
+
priceModifier: AmountDecimal$outboundSchema.optional(),
|
|
43568
43569
|
images: arrayType(AssignProductImage$outboundSchema).optional()
|
|
43569
43570
|
});
|
|
43570
43571
|
((CreateProductOption$) => {
|
|
@@ -47340,17 +47341,18 @@ var init_productimagemetadata = __esm(() => {
|
|
|
47340
47341
|
var ProductOption$inboundSchema, ProductOption$outboundSchema, ProductOption$;
|
|
47341
47342
|
var init_productoption = __esm(() => {
|
|
47342
47343
|
init_esm();
|
|
47344
|
+
init_amountdecimal();
|
|
47343
47345
|
init_productimagemetadata();
|
|
47344
47346
|
ProductOption$inboundSchema = objectType({
|
|
47345
47347
|
name: stringType(),
|
|
47346
47348
|
description: stringType().optional(),
|
|
47347
|
-
priceModifier:
|
|
47349
|
+
priceModifier: AmountDecimal$inboundSchema.optional(),
|
|
47348
47350
|
images: arrayType(ProductImageMetadata$inboundSchema).optional()
|
|
47349
47351
|
});
|
|
47350
47352
|
ProductOption$outboundSchema = objectType({
|
|
47351
47353
|
name: stringType(),
|
|
47352
47354
|
description: stringType().optional(),
|
|
47353
|
-
priceModifier:
|
|
47355
|
+
priceModifier: AmountDecimal$outboundSchema.optional(),
|
|
47354
47356
|
images: arrayType(ProductImageMetadata$outboundSchema).optional()
|
|
47355
47357
|
});
|
|
47356
47358
|
((ProductOption$) => {
|
|
@@ -47423,17 +47425,18 @@ var init_product = __esm(() => {
|
|
|
47423
47425
|
var ProductOptionValidationError$inboundSchema, ProductOptionValidationError$outboundSchema, ProductOptionValidationError$;
|
|
47424
47426
|
var init_productoptionvalidationerror = __esm(() => {
|
|
47425
47427
|
init_esm();
|
|
47428
|
+
init_amountdecimalvalidationerror();
|
|
47426
47429
|
init_assignproductimagevalidationerror();
|
|
47427
47430
|
ProductOptionValidationError$inboundSchema = objectType({
|
|
47428
47431
|
name: stringType().optional(),
|
|
47429
47432
|
description: stringType().optional(),
|
|
47430
|
-
priceModifier:
|
|
47433
|
+
priceModifier: AmountDecimalValidationError$inboundSchema.optional(),
|
|
47431
47434
|
images: recordType(AssignProductImageValidationError$inboundSchema).optional()
|
|
47432
47435
|
});
|
|
47433
47436
|
ProductOptionValidationError$outboundSchema = objectType({
|
|
47434
47437
|
name: stringType().optional(),
|
|
47435
47438
|
description: stringType().optional(),
|
|
47436
|
-
priceModifier:
|
|
47439
|
+
priceModifier: AmountDecimalValidationError$outboundSchema.optional(),
|
|
47437
47440
|
images: recordType(AssignProductImageValidationError$outboundSchema).optional()
|
|
47438
47441
|
});
|
|
47439
47442
|
((ProductOptionValidationError$) => {
|
|
@@ -82312,7 +82315,7 @@ you'll need to specify the \`/accounts/{accountID}/wallets.read\` scope.`,
|
|
|
82312
82315
|
function createMCPServer(deps) {
|
|
82313
82316
|
const server = new McpServer({
|
|
82314
82317
|
name: "Moov",
|
|
82315
|
-
version: "0.16.
|
|
82318
|
+
version: "0.16.6"
|
|
82316
82319
|
});
|
|
82317
82320
|
const client = new MoovCore({
|
|
82318
82321
|
security: deps.security,
|
|
@@ -83848,7 +83851,7 @@ var routes = rn({
|
|
|
83848
83851
|
var app = Ve(routes, {
|
|
83849
83852
|
name: "mcp",
|
|
83850
83853
|
versionInfo: {
|
|
83851
|
-
currentVersion: "0.16.
|
|
83854
|
+
currentVersion: "0.16.6"
|
|
83852
83855
|
}
|
|
83853
83856
|
});
|
|
83854
83857
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -83856,5 +83859,5 @@ export {
|
|
|
83856
83859
|
app
|
|
83857
83860
|
};
|
|
83858
83861
|
|
|
83859
|
-
//# debugId=
|
|
83862
|
+
//# debugId=62B80E575D6F87BC64756E2164756E21
|
|
83860
83863
|
//# sourceMappingURL=mcp-server.js.map
|