Rocky_Mountain_Vending/.pnpm-store/v10/files/c2/b483b0318d6f018bd82f1d6bef48644f0c43842cbb45ee27c256ce3ada81a80f0c99006e4560788c16e65ea07174a298dd0d7ed5e9703748ca570900d9e870
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

49 lines
1.7 KiB
Text

'use strict';
var stsRegionDefaultResolver = require('./regionConfig/stsRegionDefaultResolver');
var configResolver = require('@smithy/config-resolver');
const getAwsRegionExtensionConfiguration = (runtimeConfig) => {
return {
setRegion(region) {
runtimeConfig.region = region;
},
region() {
return runtimeConfig.region;
},
};
};
const resolveAwsRegionExtensionConfiguration = (awsRegionExtensionConfiguration) => {
return {
region: awsRegionExtensionConfiguration.region(),
};
};
Object.defineProperty(exports, "NODE_REGION_CONFIG_FILE_OPTIONS", {
enumerable: true,
get: function () { return configResolver.NODE_REGION_CONFIG_FILE_OPTIONS; }
});
Object.defineProperty(exports, "NODE_REGION_CONFIG_OPTIONS", {
enumerable: true,
get: function () { return configResolver.NODE_REGION_CONFIG_OPTIONS; }
});
Object.defineProperty(exports, "REGION_ENV_NAME", {
enumerable: true,
get: function () { return configResolver.REGION_ENV_NAME; }
});
Object.defineProperty(exports, "REGION_INI_NAME", {
enumerable: true,
get: function () { return configResolver.REGION_INI_NAME; }
});
Object.defineProperty(exports, "resolveRegionConfig", {
enumerable: true,
get: function () { return configResolver.resolveRegionConfig; }
});
exports.getAwsRegionExtensionConfiguration = getAwsRegionExtensionConfiguration;
exports.resolveAwsRegionExtensionConfiguration = resolveAwsRegionExtensionConfiguration;
Object.keys(stsRegionDefaultResolver).forEach(function (k) {
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
enumerable: true,
get: function () { return stsRegionDefaultResolver[k]; }
});
});