@glidevvr/storage-payload-types-pkg 1.0.154 → 1.0.156
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 -2
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -332,7 +332,6 @@ export interface Tenant {
|
|
|
332
332
|
environment: 'production' | 'staging' | 'qa' | 'local';
|
|
333
333
|
seCompanyId: number;
|
|
334
334
|
seApiKey?: string | null;
|
|
335
|
-
seApiPrivateKey?: string | null;
|
|
336
335
|
/**
|
|
337
336
|
* The Browser key is responsible for client side communications with the Google APIs, and should be restricted by domain.
|
|
338
337
|
*/
|
|
@@ -353,6 +352,10 @@ export interface Tenant {
|
|
|
353
352
|
* The Google Tag Manager ID. This should include the "GTM-" prefix.
|
|
354
353
|
*/
|
|
355
354
|
gtmId?: string | null;
|
|
355
|
+
/**
|
|
356
|
+
* Enter the content value for the <meta name="google-site-verification" content="..."> tag.
|
|
357
|
+
*/
|
|
358
|
+
gsc?: string | null;
|
|
356
359
|
/**
|
|
357
360
|
* Search engine visibility for the website. It is up to search engines to honor this request.
|
|
358
361
|
*/
|
|
@@ -2524,12 +2527,12 @@ export interface TenantsSelect<T extends boolean = true> {
|
|
|
2524
2527
|
environment?: T;
|
|
2525
2528
|
seCompanyId?: T;
|
|
2526
2529
|
seApiKey?: T;
|
|
2527
|
-
seApiPrivateKey?: T;
|
|
2528
2530
|
googleApiBrowserKey?: T;
|
|
2529
2531
|
googleApiServerKey?: T;
|
|
2530
2532
|
cloudfrontDistributionId?: T;
|
|
2531
2533
|
domain?: T;
|
|
2532
2534
|
gtmId?: T;
|
|
2535
|
+
gsc?: T;
|
|
2533
2536
|
websiteNotIndexable?: T;
|
|
2534
2537
|
defaultBrand?: T;
|
|
2535
2538
|
favicon?: T;
|