@glidevvr/storage-payload-types-pkg 1.0.77 → 1.0.79
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/package.json +1 -1
- package/payload-types.ts +5 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -333,6 +333,10 @@ export interface Tenant {
|
|
|
333
333
|
* The Server key is responsible for server side communcations with the Google APIs, and may be restricted by IP addresss.
|
|
334
334
|
*/
|
|
335
335
|
googleApiServerKey?: string | null;
|
|
336
|
+
/**
|
|
337
|
+
* The Cloudfront Distribution ID is used to invalidate the Cloudfront distribution when a new version of the website is deployed.
|
|
338
|
+
*/
|
|
339
|
+
cloudfrontDistributionId?: string | null;
|
|
336
340
|
/**
|
|
337
341
|
* The domain of the website. Used for SEO/preview purposes.
|
|
338
342
|
*/
|
|
@@ -2524,6 +2528,7 @@ export interface TenantsSelect<T extends boolean = true> {
|
|
|
2524
2528
|
seApiPrivateKey?: T;
|
|
2525
2529
|
googleApiBrowserKey?: T;
|
|
2526
2530
|
googleApiServerKey?: T;
|
|
2531
|
+
cloudfrontDistributionId?: T;
|
|
2527
2532
|
domain?: T;
|
|
2528
2533
|
gtmId?: T;
|
|
2529
2534
|
websiteNotIndexable?: T;
|