@saasquatch/component-environment 1.0.9 → 1.0.10

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +4 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -69,8 +69,11 @@ interface WidgetIdent {
69
69
  }
70
70
  /**
71
71
  * Portal env doesn't include User Id
72
+ * - googleClientId should be unique to SquatchPortal environments
72
73
  */
73
- declare type PortalEnv = Pick<WidgetIdent, "tenantAlias" | "appDomain" | "programId">;
74
+ declare type PortalEnv = Pick<WidgetIdent, "tenantAlias" | "appDomain" | "programId"> & {
75
+ googleClientId: string | undefined;
76
+ };
74
77
  /**
75
78
  * An interface for interacting with the SaaSquatch Admin Portal.
76
79
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saasquatch/component-environment",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "Environment and contexts for SaaSquatch components",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",