Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 2x 2x 2x 2x 2x 2x | import { ShopifyCoreModule } from '@bavaan/nestjs-shopify-core';
import { Module } from '@nestjs/common';
import { ApiVersion } from '@shopify/shopify-api';
import { AuthScopes } from '@shopify/shopify-api/dist/auth/scopes';
import { MemorySessionStorage } from '@shopify/shopify-api/dist/session-storage/memory';
@Module({
imports: [
ShopifyCoreModule.forRoot({
apiKey: 'foo',
apiSecretKey: 'bar',
apiVersion: ApiVersion.Unstable,
hostName: 'localhost:8082',
hostScheme: 'https',
isEmbeddedApp: true,
isPrivateApp: false,
scopes: new AuthScopes(['write_products']),
sessionStorage: new MemorySessionStorage(),
}),
],
exports: [ShopifyCoreModule],
})
export class ShopifyInitializerModule {}
|