publish to online store

This commit is contained in:
Ben Miller
2024-11-16 20:26:34 -07:00
parent 531da95091
commit 475eee70ea
3 changed files with 83 additions and 21 deletions

View File

@ -6,6 +6,8 @@ export class Config {
shopifyApiSecretKey: string
shopifyAdminApiAccessToken: string
shopifyApiURI: string
shopifyStorePublicationId: string
constructor() {
let ss = SpreadsheetApp.getActive()
@ -41,5 +43,11 @@ export class Config {
"shopifyApiURI",
"value"
)
this.shopifyStorePublicationId = vlookupByColumns(
"vars",
"key",
"shopifyStorePublicationId",
"value"
)
}
}