@paakd/config 0.0.2
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/dist/src/index.js +20 -0
- package/gen/go/addresses/Address.pkl.go +10 -0
- package/gen/go/addresses/Addresses.pkl.go +43 -0
- package/gen/go/addresses/BillingAddress.pkl.go +8 -0
- package/gen/go/addresses/Field.pkl.go +43 -0
- package/gen/go/addresses/addressgroup/AddressGroup.pkl.go +43 -0
- package/gen/go/addresses/fieldtype/FieldType.pkl.go +61 -0
- package/gen/go/addresses/init.pkl.go +11 -0
- package/gen/go/cloudflare/Cloudflare.pkl.go +37 -0
- package/gen/go/cloudflare/R2Bucket.pkl.go +22 -0
- package/gen/go/cloudflare/TerraformBackend.pkl.go +16 -0
- package/gen/go/cloudflare/Turnstile.pkl.go +8 -0
- package/gen/go/cloudflare/init.pkl.go +11 -0
- package/gen/go/db/DB.pkl.go +43 -0
- package/gen/go/db/DBConnection.pkl.go +12 -0
- package/gen/go/db/init.pkl.go +9 -0
- package/gen/go/dune/Dune.pkl.go +47 -0
- package/gen/go/dune/init.pkl.go +8 -0
- package/gen/go/enterprise/Enterprise.pkl.go +118 -0
- package/gen/go/enterprise/init.pkl.go +8 -0
- package/gen/go/enterprise/taxonomyversion/TaxonomyVersion.pkl.go +37 -0
- package/gen/go/redis/Redis.pkl.go +41 -0
- package/gen/go/redis/init.pkl.go +8 -0
- package/gen/go/shared/Build.pkl.go +46 -0
- package/gen/go/shared/Shared.pkl.go +35 -0
- package/gen/go/shared/init.pkl.go +9 -0
- package/gen/go/worker/Worker.pkl.go +55 -0
- package/gen/go/worker/WorkerConnect.pkl.go +6 -0
- package/gen/go/worker/init.pkl.go +9 -0
- package/gen/js/development/basket_eco_packages_config_addresses.pkl.ts +106 -0
- package/gen/js/development/basket_eco_packages_config_checkout.pkl.ts +73 -0
- package/gen/js/development/basket_eco_packages_config_cloudflare.pkl.ts +69 -0
- package/gen/js/development/basket_eco_packages_config_cms.pkl.ts +119 -0
- package/gen/js/development/basket_eco_packages_config_db.pkl.ts +47 -0
- package/gen/js/development/basket_eco_packages_config_dune.pkl.ts +36 -0
- package/gen/js/development/basket_eco_packages_config_enterprise.pkl.ts +290 -0
- package/gen/js/development/basket_eco_packages_config_feature.pkl.ts +58 -0
- package/gen/js/development/basket_eco_packages_config_redis.pkl.ts +30 -0
- package/gen/js/development/basket_eco_packages_config_renderer_development_cms.pkl.ts +28 -0
- package/gen/js/development/basket_eco_packages_config_shared.pkl.ts +73 -0
- package/gen/js/development/basket_eco_packages_config_worker.pkl.ts +53 -0
- package/gen/js/production/basket_eco_packages_config_addresses.pkl.ts +106 -0
- package/gen/js/production/basket_eco_packages_config_checkout.pkl.ts +73 -0
- package/gen/js/production/basket_eco_packages_config_cloudflare.pkl.ts +69 -0
- package/gen/js/production/basket_eco_packages_config_cms.pkl.ts +119 -0
- package/gen/js/production/basket_eco_packages_config_db.pkl.ts +47 -0
- package/gen/js/production/basket_eco_packages_config_dune.pkl.ts +36 -0
- package/gen/js/production/basket_eco_packages_config_enterprise.pkl.ts +290 -0
- package/gen/js/production/basket_eco_packages_config_feature.pkl.ts +58 -0
- package/gen/js/production/basket_eco_packages_config_kiosk_host.pkl.ts +72 -0
- package/gen/js/production/basket_eco_packages_config_redis.pkl.ts +30 -0
- package/gen/js/production/basket_eco_packages_config_renderer_production_cms.pkl.ts +28 -0
- package/gen/js/production/basket_eco_packages_config_renderer_production_dune_config.pkl.ts +29 -0
- package/gen/js/production/basket_eco_packages_config_renderer_production_workflow_config.pkl.ts +29 -0
- package/gen/js/production/basket_eco_packages_config_renderer_staging_dune_config.pkl.ts +29 -0
- package/gen/js/production/basket_eco_packages_config_shared.pkl.ts +73 -0
- package/gen/js/production/basket_eco_packages_config_worker.pkl.ts +49 -0
- package/gen/js/staging/basket_eco_packages_config_addresses.pkl.ts +106 -0
- package/gen/js/staging/basket_eco_packages_config_checkout.pkl.ts +77 -0
- package/gen/js/staging/basket_eco_packages_config_cloudflare.pkl.ts +74 -0
- package/gen/js/staging/basket_eco_packages_config_cms.pkl.ts +119 -0
- package/gen/js/staging/basket_eco_packages_config_db.pkl.ts +47 -0
- package/gen/js/staging/basket_eco_packages_config_dune.pkl.ts +40 -0
- package/gen/js/staging/basket_eco_packages_config_enterprise.pkl.ts +290 -0
- package/gen/js/staging/basket_eco_packages_config_feature.pkl.ts +58 -0
- package/gen/js/staging/basket_eco_packages_config_redis.pkl.ts +30 -0
- package/gen/js/staging/basket_eco_packages_config_renderer_staging_cms.pkl.ts +28 -0
- package/gen/js/staging/basket_eco_packages_config_renderer_staging_dune_config.pkl.ts +29 -0
- package/gen/js/staging/basket_eco_packages_config_renderer_staging_workflow_config.pkl.ts +29 -0
- package/gen/js/staging/basket_eco_packages_config_shared.pkl.ts +69 -0
- package/gen/js/staging/basket_eco_packages_config_worker.pkl.ts +53 -0
- package/package.json +66 -0
- package/src/addresses.ts +90 -0
- package/src/authorization/policy.conf +15 -0
- package/src/authorization/policy.csv +26 -0
- package/src/chk.spec.ts +61 -0
- package/src/chk.ts +88 -0
- package/src/cms.test.ts +52 -0
- package/src/cms.ts +65 -0
- package/src/index.ts +4 -0
- package/src/pkl/PklProject +21 -0
- package/src/pkl/development/Addresses.pkl +2114 -0
- package/src/pkl/development/CMS.pkl +37 -0
- package/src/pkl/development/Checkout.pkl +32 -0
- package/src/pkl/development/Cloudflare.pkl +20 -0
- package/src/pkl/development/Db.pkl +14 -0
- package/src/pkl/development/Dune.pkl +12 -0
- package/src/pkl/development/Enterprise.pkl +158 -0
- package/src/pkl/development/Feature.pkl +4 -0
- package/src/pkl/development/Redis.pkl +6 -0
- package/src/pkl/development/Shared.pkl +16 -0
- package/src/pkl/development/Worker.pkl +43 -0
- package/src/pkl/development/renderer/CMS.pkl +59 -0
- package/src/pkl/production/Addresses.pkl +2114 -0
- package/src/pkl/production/CMS.pkl +34 -0
- package/src/pkl/production/Checkout.pkl +32 -0
- package/src/pkl/production/Cloudflare.pkl +20 -0
- package/src/pkl/production/Db.pkl +14 -0
- package/src/pkl/production/Dune.pkl +12 -0
- package/src/pkl/production/Enterprise.pkl +158 -0
- package/src/pkl/production/Feature.pkl +8 -0
- package/src/pkl/production/KioskHost.pkl +5 -0
- package/src/pkl/production/Redis.pkl +6 -0
- package/src/pkl/production/Shared.pkl +15 -0
- package/src/pkl/production/Worker.pkl +43 -0
- package/src/pkl/production/renderer/CMS.pkl +59 -0
- package/src/pkl/production/renderer/Dune.pkl +52 -0
- package/src/pkl/production/renderer/Feature.pkl +51 -0
- package/src/pkl/production/renderer/Workflow.pkl +51 -0
- package/src/pkl/staging/Addresses.pkl +2114 -0
- package/src/pkl/staging/CMS.pkl +35 -0
- package/src/pkl/staging/Checkout.pkl +32 -0
- package/src/pkl/staging/Cloudflare.pkl +20 -0
- package/src/pkl/staging/Db.pkl +14 -0
- package/src/pkl/staging/Dune.pkl +12 -0
- package/src/pkl/staging/Enterprise.pkl +158 -0
- package/src/pkl/staging/Feature.pkl +8 -0
- package/src/pkl/staging/Redis.pkl +6 -0
- package/src/pkl/staging/Shared.pkl +16 -0
- package/src/pkl/staging/Worker.pkl +43 -0
- package/src/pkl/staging/renderer/CMS.pkl +59 -0
- package/src/pkl/staging/renderer/Dune.pkl +52 -0
- package/src/pkl/staging/renderer/Feature.pkl +51 -0
- package/src/pkl/staging/renderer/Workflow.pkl +51 -0
- package/src/pkl/tmpl/AddressesTmpl.pkl +44 -0
- package/src/pkl/tmpl/CMSTmpl.pkl +64 -0
- package/src/pkl/tmpl/CheckoutTmpl.pkl +34 -0
- package/src/pkl/tmpl/CloudflareTmpl.pkl +33 -0
- package/src/pkl/tmpl/DbTmpl.pkl +18 -0
- package/src/pkl/tmpl/DuneTmpl.pkl +124 -0
- package/src/pkl/tmpl/EnterpriseTmpl.pkl +105 -0
- package/src/pkl/tmpl/FeatureTmpl.pkl +90 -0
- package/src/pkl/tmpl/KioskHostTmpl.pkl +194 -0
- package/src/pkl/tmpl/RedisTmpl.pkl +9 -0
- package/src/pkl/tmpl/SharedTmpl.pkl +40 -0
- package/src/pkl/tmpl/WorkerTmpl.pkl +27 -0
- package/src/pkl-reader/main.go +167 -0
- package/src/shared.ts +65 -0
- package/src/vault.spec.ts +62 -0
- package/src/vault.ts +68 -0
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/* This file was generated by `pkl-typescript` from Pkl module `paakd.com.packages.config.Cloudflare`. */
|
|
2
|
+
/* DO NOT EDIT! */
|
|
3
|
+
/* istanbul ignore file */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import * as pklTypescript from "@pkl-community/pkl-typescript"
|
|
6
|
+
|
|
7
|
+
// Ref: Module root.
|
|
8
|
+
export interface Cloudflare {
|
|
9
|
+
shopR2: R2Bucket
|
|
10
|
+
|
|
11
|
+
shopTurnstile: Turnstile
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
// Ref: Pkl class `paakd.com.packages.config.Cloudflare.R2Bucket`.
|
|
15
|
+
export interface R2Bucket {
|
|
16
|
+
endpoint: string
|
|
17
|
+
|
|
18
|
+
endpointEU: string
|
|
19
|
+
|
|
20
|
+
apiKey: string
|
|
21
|
+
|
|
22
|
+
apiSecret: string
|
|
23
|
+
|
|
24
|
+
region: string
|
|
25
|
+
|
|
26
|
+
token: string
|
|
27
|
+
|
|
28
|
+
zoneId: string
|
|
29
|
+
|
|
30
|
+
shopBucketName: string
|
|
31
|
+
|
|
32
|
+
taxonomyBucketName: string
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
// Ref: Pkl class `paakd.com.packages.config.Cloudflare.Turnstile`.
|
|
36
|
+
export interface Turnstile {
|
|
37
|
+
siteKey: string
|
|
38
|
+
|
|
39
|
+
secretKey: string
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
// Ref: Pkl class `paakd.com.packages.config.Cloudflare.TerraformBackend`.
|
|
43
|
+
export interface TerraformBackend {
|
|
44
|
+
accessKey: string
|
|
45
|
+
|
|
46
|
+
secretKey: string
|
|
47
|
+
|
|
48
|
+
bucket: string
|
|
49
|
+
|
|
50
|
+
path: string
|
|
51
|
+
|
|
52
|
+
region: string
|
|
53
|
+
|
|
54
|
+
endpoint: string
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
// LoadFromPath loads the pkl module at the given path and evaluates it into a Cloudflare
|
|
58
|
+
export const loadFromPath = async (path: string): Promise<Cloudflare> => {
|
|
59
|
+
const evaluator = await pklTypescript.newEvaluator(pklTypescript.PreconfiguredOptions);
|
|
60
|
+
try {
|
|
61
|
+
const result = await load(evaluator, pklTypescript.FileSource(path));
|
|
62
|
+
return result
|
|
63
|
+
} finally {
|
|
64
|
+
evaluator.close()
|
|
65
|
+
}
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
export const load = (evaluator: pklTypescript.Evaluator, source: pklTypescript.ModuleSource): Promise<Cloudflare> =>
|
|
69
|
+
evaluator.evaluateModule(source) as Promise<Cloudflare>;
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
/* This file was generated by `pkl-typescript` from Pkl module `paakd.com.packages.config.CMS`. */
|
|
2
|
+
/* DO NOT EDIT! */
|
|
3
|
+
/* istanbul ignore file */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import * as pklTypescript from '@pkl-community/pkl-typescript'
|
|
6
|
+
|
|
7
|
+
// Ref: Module root.
|
|
8
|
+
export interface CMS {
|
|
9
|
+
db: DB
|
|
10
|
+
|
|
11
|
+
redis: Redis
|
|
12
|
+
|
|
13
|
+
tenantAssetURL: string
|
|
14
|
+
|
|
15
|
+
nodeEnv: string
|
|
16
|
+
|
|
17
|
+
appKeys: Array<string>
|
|
18
|
+
|
|
19
|
+
apiTokenSalt: string
|
|
20
|
+
|
|
21
|
+
adminJwtSecret: string
|
|
22
|
+
|
|
23
|
+
jwtSecret: string
|
|
24
|
+
|
|
25
|
+
jWTSECRET: string
|
|
26
|
+
|
|
27
|
+
transferTokenSalt: string
|
|
28
|
+
|
|
29
|
+
strapiAdminBackendUrl: string
|
|
30
|
+
|
|
31
|
+
adminStrapiUrl: string
|
|
32
|
+
|
|
33
|
+
sTRAPIADMINBACKENDURL: pklTypescript.Any
|
|
34
|
+
|
|
35
|
+
aDMINSTRAPIURL: pklTypescript.Any
|
|
36
|
+
|
|
37
|
+
cfAccountEndpoint: string
|
|
38
|
+
|
|
39
|
+
cfApiKey: string
|
|
40
|
+
|
|
41
|
+
cfApiSecret: string
|
|
42
|
+
|
|
43
|
+
cfTsSecretKey: string
|
|
44
|
+
|
|
45
|
+
cfBucketRegion: string
|
|
46
|
+
|
|
47
|
+
host: string
|
|
48
|
+
|
|
49
|
+
selfHost: string
|
|
50
|
+
|
|
51
|
+
port: number
|
|
52
|
+
|
|
53
|
+
selfUrl: string
|
|
54
|
+
|
|
55
|
+
cmsURL: string
|
|
56
|
+
|
|
57
|
+
tenantBucketName: string
|
|
58
|
+
|
|
59
|
+
shopId: string
|
|
60
|
+
|
|
61
|
+
restateHost: string
|
|
62
|
+
|
|
63
|
+
restatePort: number
|
|
64
|
+
|
|
65
|
+
output: pklTypescript.Any
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
// Ref: Module root.
|
|
69
|
+
export interface DB {
|
|
70
|
+
conn: DBConnection
|
|
71
|
+
|
|
72
|
+
cms: string
|
|
73
|
+
|
|
74
|
+
dune: string
|
|
75
|
+
|
|
76
|
+
enterprise: string
|
|
77
|
+
|
|
78
|
+
feature: string
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
// Ref: Pkl class `paakd.com.packages.config.DB.DBConnection`.
|
|
82
|
+
export interface DBConnection {
|
|
83
|
+
host: string
|
|
84
|
+
|
|
85
|
+
port: number
|
|
86
|
+
|
|
87
|
+
user: string
|
|
88
|
+
|
|
89
|
+
password: string
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
// Ref: Module root.
|
|
93
|
+
export interface Redis {
|
|
94
|
+
user: string
|
|
95
|
+
|
|
96
|
+
host: string
|
|
97
|
+
|
|
98
|
+
password: string
|
|
99
|
+
|
|
100
|
+
port: number
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
// LoadFromPath loads the pkl module at the given path and evaluates it into a CMS
|
|
104
|
+
export const loadFromPath = async (path: string): Promise<CMS> => {
|
|
105
|
+
const evaluator = await pklTypescript.newEvaluator(
|
|
106
|
+
pklTypescript.PreconfiguredOptions
|
|
107
|
+
)
|
|
108
|
+
try {
|
|
109
|
+
const result = await load(evaluator, pklTypescript.FileSource(path))
|
|
110
|
+
return result
|
|
111
|
+
} finally {
|
|
112
|
+
evaluator.close()
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
export const load = (
|
|
117
|
+
evaluator: pklTypescript.Evaluator,
|
|
118
|
+
source: pklTypescript.ModuleSource
|
|
119
|
+
): Promise<CMS> => evaluator.evaluateModule(source) as Promise<CMS>
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/* This file was generated by `pkl-typescript` from Pkl module `paakd.com.packages.config.DB`. */
|
|
2
|
+
/* DO NOT EDIT! */
|
|
3
|
+
/* istanbul ignore file */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import * as pklTypescript from '@pkl-community/pkl-typescript'
|
|
6
|
+
|
|
7
|
+
// Ref: Module root.
|
|
8
|
+
export interface DB {
|
|
9
|
+
conn: DBConnection
|
|
10
|
+
|
|
11
|
+
cms: string
|
|
12
|
+
|
|
13
|
+
dune: string
|
|
14
|
+
|
|
15
|
+
enterprise: string
|
|
16
|
+
|
|
17
|
+
feature: string
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
// Ref: Pkl class `paakd.com.packages.config.DB.DBConnection`.
|
|
21
|
+
export interface DBConnection {
|
|
22
|
+
host: string
|
|
23
|
+
|
|
24
|
+
port: number
|
|
25
|
+
|
|
26
|
+
user: string
|
|
27
|
+
|
|
28
|
+
password: string
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
// LoadFromPath loads the pkl module at the given path and evaluates it into a DB
|
|
32
|
+
export const loadFromPath = async (path: string): Promise<DB> => {
|
|
33
|
+
const evaluator = await pklTypescript.newEvaluator(
|
|
34
|
+
pklTypescript.PreconfiguredOptions
|
|
35
|
+
)
|
|
36
|
+
try {
|
|
37
|
+
const result = await load(evaluator, pklTypescript.FileSource(path))
|
|
38
|
+
return result
|
|
39
|
+
} finally {
|
|
40
|
+
evaluator.close()
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export const load = (
|
|
45
|
+
evaluator: pklTypescript.Evaluator,
|
|
46
|
+
source: pklTypescript.ModuleSource
|
|
47
|
+
): Promise<DB> => evaluator.evaluateModule(source) as Promise<DB>
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* This file was generated by `pkl-typescript` from Pkl module `paakd.com.packages.config.Dune`. */
|
|
2
|
+
/* DO NOT EDIT! */
|
|
3
|
+
/* istanbul ignore file */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import * as pklTypescript from "@pkl-community/pkl-typescript"
|
|
6
|
+
|
|
7
|
+
// Ref: Module root.
|
|
8
|
+
export interface Dune {
|
|
9
|
+
duneHost: string
|
|
10
|
+
|
|
11
|
+
dunePort: number
|
|
12
|
+
|
|
13
|
+
serverAPIKey: string
|
|
14
|
+
|
|
15
|
+
dataStore: string
|
|
16
|
+
|
|
17
|
+
cacheStore: string
|
|
18
|
+
|
|
19
|
+
configFile: pklTypescript.Any
|
|
20
|
+
|
|
21
|
+
output: pklTypescript.Any
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
// LoadFromPath loads the pkl module at the given path and evaluates it into a Dune
|
|
25
|
+
export const loadFromPath = async (path: string): Promise<Dune> => {
|
|
26
|
+
const evaluator = await pklTypescript.newEvaluator(pklTypescript.PreconfiguredOptions);
|
|
27
|
+
try {
|
|
28
|
+
const result = await load(evaluator, pklTypescript.FileSource(path));
|
|
29
|
+
return result
|
|
30
|
+
} finally {
|
|
31
|
+
evaluator.close()
|
|
32
|
+
}
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
export const load = (evaluator: pklTypescript.Evaluator, source: pklTypescript.ModuleSource): Promise<Dune> =>
|
|
36
|
+
evaluator.evaluateModule(source) as Promise<Dune>;
|
|
@@ -0,0 +1,290 @@
|
|
|
1
|
+
/* This file was generated by `pkl-typescript` from Pkl module `paakd.com.packages.config.Enterprise`. */
|
|
2
|
+
/* DO NOT EDIT! */
|
|
3
|
+
/* istanbul ignore file */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import * as pklTypescript from '@pkl-community/pkl-typescript'
|
|
6
|
+
|
|
7
|
+
// Ref: Module root.
|
|
8
|
+
export interface Enterprise {
|
|
9
|
+
taxonomyVersion: TaxonomyVersion
|
|
10
|
+
|
|
11
|
+
productTaxonomyPath: string
|
|
12
|
+
|
|
13
|
+
host: string
|
|
14
|
+
|
|
15
|
+
port: number
|
|
16
|
+
|
|
17
|
+
defaultRequestTimeout: pklTypescript.Duration
|
|
18
|
+
|
|
19
|
+
testEmail: string
|
|
20
|
+
|
|
21
|
+
jwtExpTime: pklTypescript.Duration
|
|
22
|
+
|
|
23
|
+
refreshTokenExpTime: pklTypescript.Duration
|
|
24
|
+
|
|
25
|
+
tenantAssetURL: string
|
|
26
|
+
|
|
27
|
+
shopBucketName: string
|
|
28
|
+
|
|
29
|
+
bleveStorePath: string
|
|
30
|
+
|
|
31
|
+
restateHost: string
|
|
32
|
+
|
|
33
|
+
restatePort: number
|
|
34
|
+
|
|
35
|
+
workerPort: number
|
|
36
|
+
|
|
37
|
+
workerHost: string
|
|
38
|
+
|
|
39
|
+
breezeBasicAuthHeader: string
|
|
40
|
+
|
|
41
|
+
userJWTSecret: string
|
|
42
|
+
|
|
43
|
+
customerJWTSecret: string
|
|
44
|
+
|
|
45
|
+
customerJWTSecretExpTime: pklTypescript.Duration
|
|
46
|
+
|
|
47
|
+
userJWTSecretExpTime: pklTypescript.Duration
|
|
48
|
+
|
|
49
|
+
userJwtPrivateKey: string
|
|
50
|
+
|
|
51
|
+
userJwtPublicKey: string
|
|
52
|
+
|
|
53
|
+
customerJwtPrivateKey: string
|
|
54
|
+
|
|
55
|
+
customerJwtPublicKey: string
|
|
56
|
+
|
|
57
|
+
isTest: boolean
|
|
58
|
+
|
|
59
|
+
isProduction: boolean
|
|
60
|
+
|
|
61
|
+
isStaging: boolean
|
|
62
|
+
|
|
63
|
+
isLocal: boolean
|
|
64
|
+
|
|
65
|
+
isDocker: boolean
|
|
66
|
+
|
|
67
|
+
productTaxonomyIndexBucket: string
|
|
68
|
+
|
|
69
|
+
resendAPIKey: string
|
|
70
|
+
|
|
71
|
+
redis: Redis
|
|
72
|
+
|
|
73
|
+
dune: Dune
|
|
74
|
+
|
|
75
|
+
worker: Worker
|
|
76
|
+
|
|
77
|
+
db: DB
|
|
78
|
+
|
|
79
|
+
cloudflare: Cloudflare
|
|
80
|
+
|
|
81
|
+
shared: Shared
|
|
82
|
+
|
|
83
|
+
workflowConfig: pklTypescript.Any
|
|
84
|
+
|
|
85
|
+
output: pklTypescript.Any
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
// Ref: Module root.
|
|
89
|
+
export interface Redis {
|
|
90
|
+
user: string
|
|
91
|
+
|
|
92
|
+
host: string
|
|
93
|
+
|
|
94
|
+
password: string
|
|
95
|
+
|
|
96
|
+
port: number
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
// Ref: Module root.
|
|
100
|
+
export interface Dune {
|
|
101
|
+
duneHost: string
|
|
102
|
+
|
|
103
|
+
dunePort: number
|
|
104
|
+
|
|
105
|
+
serverAPIKey: string
|
|
106
|
+
|
|
107
|
+
dataStore: string
|
|
108
|
+
|
|
109
|
+
cacheStore: string
|
|
110
|
+
|
|
111
|
+
configFile: pklTypescript.Any
|
|
112
|
+
|
|
113
|
+
output: pklTypescript.Any
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
// Ref: Module root.
|
|
117
|
+
export interface Worker {
|
|
118
|
+
breeze: WorkerConnect
|
|
119
|
+
|
|
120
|
+
orchestrator: WorkerConnect
|
|
121
|
+
|
|
122
|
+
mesh: WorkerConnect
|
|
123
|
+
|
|
124
|
+
tfState: WorkerConnect
|
|
125
|
+
|
|
126
|
+
tfStateShopBackend: WorkerConnect
|
|
127
|
+
|
|
128
|
+
tfStateServiceBackend: WorkerConnect
|
|
129
|
+
|
|
130
|
+
tfStateHostsBackend: WorkerConnect
|
|
131
|
+
|
|
132
|
+
orchestratorAuth: string
|
|
133
|
+
|
|
134
|
+
shopBackendAuth: string
|
|
135
|
+
|
|
136
|
+
serviceBackendAuth: string
|
|
137
|
+
|
|
138
|
+
hostBackendAuth: string
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
// Ref: Pkl class `paakd.com.packages.config.Worker.WorkerConnect`.
|
|
142
|
+
export interface WorkerConnect {
|
|
143
|
+
endpoint: string
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
// Ref: Module root.
|
|
147
|
+
export interface DB {
|
|
148
|
+
conn: DBConnection
|
|
149
|
+
|
|
150
|
+
cms: string
|
|
151
|
+
|
|
152
|
+
dune: string
|
|
153
|
+
|
|
154
|
+
enterprise: string
|
|
155
|
+
|
|
156
|
+
feature: string
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
// Ref: Pkl class `paakd.com.packages.config.DB.DBConnection`.
|
|
160
|
+
export interface DBConnection {
|
|
161
|
+
host: string
|
|
162
|
+
|
|
163
|
+
port: number
|
|
164
|
+
|
|
165
|
+
user: string
|
|
166
|
+
|
|
167
|
+
password: string
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
// Ref: Module root.
|
|
171
|
+
export interface Cloudflare {
|
|
172
|
+
shopR2: R2Bucket
|
|
173
|
+
|
|
174
|
+
shopTurnstile: Turnstile
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
// Ref: Pkl class `paakd.com.packages.config.Cloudflare.R2Bucket`.
|
|
178
|
+
export interface R2Bucket {
|
|
179
|
+
endpoint: string
|
|
180
|
+
|
|
181
|
+
endpointEU: string
|
|
182
|
+
|
|
183
|
+
apiKey: string
|
|
184
|
+
|
|
185
|
+
apiSecret: string
|
|
186
|
+
|
|
187
|
+
region: string
|
|
188
|
+
|
|
189
|
+
token: string
|
|
190
|
+
|
|
191
|
+
zoneId: string
|
|
192
|
+
|
|
193
|
+
shopBucketName: string
|
|
194
|
+
|
|
195
|
+
taxonomyBucketName: string
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
// Ref: Pkl class `paakd.com.packages.config.Cloudflare.Turnstile`.
|
|
199
|
+
export interface Turnstile {
|
|
200
|
+
siteKey: string
|
|
201
|
+
|
|
202
|
+
secretKey: string
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
// Ref: Pkl class `paakd.com.packages.config.Cloudflare.TerraformBackend`.
|
|
206
|
+
export interface TerraformBackend {
|
|
207
|
+
accessKey: string
|
|
208
|
+
|
|
209
|
+
secretKey: string
|
|
210
|
+
|
|
211
|
+
bucket: string
|
|
212
|
+
|
|
213
|
+
path: string
|
|
214
|
+
|
|
215
|
+
region: string
|
|
216
|
+
|
|
217
|
+
endpoint: string
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
// Ref: Module root.
|
|
221
|
+
export interface Shared {
|
|
222
|
+
build: Build
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
// Ref: Pkl class `paakd.com.packages.config.Shared.Build`.
|
|
226
|
+
export interface Build {
|
|
227
|
+
enterpriseEnv: string
|
|
228
|
+
|
|
229
|
+
envPath: string
|
|
230
|
+
|
|
231
|
+
binUser: string
|
|
232
|
+
|
|
233
|
+
binUserGroup: string
|
|
234
|
+
|
|
235
|
+
binUserId: number
|
|
236
|
+
|
|
237
|
+
certPath: string
|
|
238
|
+
|
|
239
|
+
serviceDomainName: string
|
|
240
|
+
|
|
241
|
+
vaultUrl: string
|
|
242
|
+
|
|
243
|
+
goEnv: string
|
|
244
|
+
|
|
245
|
+
nodeEnv: string
|
|
246
|
+
|
|
247
|
+
shopId: string
|
|
248
|
+
|
|
249
|
+
tenant: string
|
|
250
|
+
|
|
251
|
+
envFilePath: string
|
|
252
|
+
|
|
253
|
+
shopBucketName: string
|
|
254
|
+
|
|
255
|
+
productTaxonomyIndexBucket: string
|
|
256
|
+
|
|
257
|
+
apiVersion: string
|
|
258
|
+
|
|
259
|
+
envFile: string
|
|
260
|
+
|
|
261
|
+
version: string
|
|
262
|
+
|
|
263
|
+
storefrontHost: string
|
|
264
|
+
|
|
265
|
+
storefrontPort: number
|
|
266
|
+
|
|
267
|
+
secureCookiePassword: string
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
// Ref: Pkl type `paakd.com.packages.config.Enterprise.TaxonomyVersion`.
|
|
271
|
+
type TaxonomyVersion = '2025-06-unstable' | 'warn' | 'info'
|
|
272
|
+
|
|
273
|
+
// LoadFromPath loads the pkl module at the given path and evaluates it into a Enterprise
|
|
274
|
+
export const loadFromPath = async (path: string): Promise<Enterprise> => {
|
|
275
|
+
const evaluator = await pklTypescript.newEvaluator(
|
|
276
|
+
pklTypescript.PreconfiguredOptions
|
|
277
|
+
)
|
|
278
|
+
try {
|
|
279
|
+
const result = await load(evaluator, pklTypescript.FileSource(path))
|
|
280
|
+
return result
|
|
281
|
+
} finally {
|
|
282
|
+
evaluator.close()
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
export const load = (
|
|
287
|
+
evaluator: pklTypescript.Evaluator,
|
|
288
|
+
source: pklTypescript.ModuleSource
|
|
289
|
+
): Promise<Enterprise> =>
|
|
290
|
+
evaluator.evaluateModule(source) as Promise<Enterprise>
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/* This file was generated by `pkl-typescript` from Pkl module `paakd.com.packages.config.Feature`. */
|
|
2
|
+
/* DO NOT EDIT! */
|
|
3
|
+
/* istanbul ignore file */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import * as pklTypescript from '@pkl-community/pkl-typescript'
|
|
6
|
+
|
|
7
|
+
// Ref: Module root.
|
|
8
|
+
export interface Feature {
|
|
9
|
+
db: DB
|
|
10
|
+
|
|
11
|
+
shopId: string
|
|
12
|
+
|
|
13
|
+
dbName: string
|
|
14
|
+
|
|
15
|
+
configFile: pklTypescript.Any
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
// Ref: Module root.
|
|
19
|
+
export interface DB {
|
|
20
|
+
conn: DBConnection
|
|
21
|
+
|
|
22
|
+
cms: string
|
|
23
|
+
|
|
24
|
+
dune: string
|
|
25
|
+
|
|
26
|
+
enterprise: string
|
|
27
|
+
|
|
28
|
+
feature: string
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
// Ref: Pkl class `paakd.com.packages.config.DB.DBConnection`.
|
|
32
|
+
export interface DBConnection {
|
|
33
|
+
host: string
|
|
34
|
+
|
|
35
|
+
port: number
|
|
36
|
+
|
|
37
|
+
user: string
|
|
38
|
+
|
|
39
|
+
password: string
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
// LoadFromPath loads the pkl module at the given path and evaluates it into a Feature
|
|
43
|
+
export const loadFromPath = async (path: string): Promise<Feature> => {
|
|
44
|
+
const evaluator = await pklTypescript.newEvaluator(
|
|
45
|
+
pklTypescript.PreconfiguredOptions
|
|
46
|
+
)
|
|
47
|
+
try {
|
|
48
|
+
const result = await load(evaluator, pklTypescript.FileSource(path))
|
|
49
|
+
return result
|
|
50
|
+
} finally {
|
|
51
|
+
evaluator.close()
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export const load = (
|
|
56
|
+
evaluator: pklTypescript.Evaluator,
|
|
57
|
+
source: pklTypescript.ModuleSource
|
|
58
|
+
): Promise<Feature> => evaluator.evaluateModule(source) as Promise<Feature>
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
/* This file was generated by `pkl-typescript` from Pkl module `paakd.com.packages.config.KioskHost`. */
|
|
2
|
+
/* DO NOT EDIT! */
|
|
3
|
+
/* istanbul ignore file */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import * as pklTypescript from "@pkl-community/pkl-typescript"
|
|
6
|
+
|
|
7
|
+
// Ref: Module root.
|
|
8
|
+
export interface KioskHost {
|
|
9
|
+
pgCatTLSCertPath: string
|
|
10
|
+
|
|
11
|
+
pgCatTLSKeyPath: string
|
|
12
|
+
|
|
13
|
+
pgCatConfigPath: string
|
|
14
|
+
|
|
15
|
+
maxVmCount: number
|
|
16
|
+
|
|
17
|
+
orchestratorUrl: string
|
|
18
|
+
|
|
19
|
+
enterpriseHttpPort: number
|
|
20
|
+
|
|
21
|
+
vmDir: string
|
|
22
|
+
|
|
23
|
+
kernelPath: string
|
|
24
|
+
|
|
25
|
+
defaultRootFsPath: string
|
|
26
|
+
|
|
27
|
+
firecrackerExecPath: string
|
|
28
|
+
|
|
29
|
+
jailerExecPath: string
|
|
30
|
+
|
|
31
|
+
pgCatExecPath: string
|
|
32
|
+
|
|
33
|
+
firecrackerVersion: string
|
|
34
|
+
|
|
35
|
+
hostIP: string
|
|
36
|
+
|
|
37
|
+
pgCatAdminUser: string
|
|
38
|
+
|
|
39
|
+
pgCatAdminPass: string
|
|
40
|
+
|
|
41
|
+
vmSSHPrivKey: string
|
|
42
|
+
|
|
43
|
+
pgCatTLSCert: string
|
|
44
|
+
|
|
45
|
+
pgCatTLSKey: string
|
|
46
|
+
|
|
47
|
+
pgCatTLSCsr: string
|
|
48
|
+
|
|
49
|
+
proxyServiceFileContent: string
|
|
50
|
+
|
|
51
|
+
orchestratorServiceFileContent: string
|
|
52
|
+
|
|
53
|
+
orchestratorEnvFileContent: string
|
|
54
|
+
|
|
55
|
+
pgCatConfig: pklTypescript.Any
|
|
56
|
+
|
|
57
|
+
rcloneConfig: pklTypescript.Any
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
// LoadFromPath loads the pkl module at the given path and evaluates it into a KioskHost
|
|
61
|
+
export const loadFromPath = async (path: string): Promise<KioskHost> => {
|
|
62
|
+
const evaluator = await pklTypescript.newEvaluator(pklTypescript.PreconfiguredOptions);
|
|
63
|
+
try {
|
|
64
|
+
const result = await load(evaluator, pklTypescript.FileSource(path));
|
|
65
|
+
return result
|
|
66
|
+
} finally {
|
|
67
|
+
evaluator.close()
|
|
68
|
+
}
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
export const load = (evaluator: pklTypescript.Evaluator, source: pklTypescript.ModuleSource): Promise<KioskHost> =>
|
|
72
|
+
evaluator.evaluateModule(source) as Promise<KioskHost>;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/* This file was generated by `pkl-typescript` from Pkl module `paakd.com.packages.config.Redis`. */
|
|
2
|
+
/* DO NOT EDIT! */
|
|
3
|
+
/* istanbul ignore file */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import * as pklTypescript from "@pkl-community/pkl-typescript"
|
|
6
|
+
|
|
7
|
+
// Ref: Module root.
|
|
8
|
+
export interface Redis {
|
|
9
|
+
user: string
|
|
10
|
+
|
|
11
|
+
host: string
|
|
12
|
+
|
|
13
|
+
password: string
|
|
14
|
+
|
|
15
|
+
port: number
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
// LoadFromPath loads the pkl module at the given path and evaluates it into a Redis
|
|
19
|
+
export const loadFromPath = async (path: string): Promise<Redis> => {
|
|
20
|
+
const evaluator = await pklTypescript.newEvaluator(pklTypescript.PreconfiguredOptions);
|
|
21
|
+
try {
|
|
22
|
+
const result = await load(evaluator, pklTypescript.FileSource(path));
|
|
23
|
+
return result
|
|
24
|
+
} finally {
|
|
25
|
+
evaluator.close()
|
|
26
|
+
}
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export const load = (evaluator: pklTypescript.Evaluator, source: pklTypescript.ModuleSource): Promise<Redis> =>
|
|
30
|
+
evaluator.evaluateModule(source) as Promise<Redis>;
|