@awell-health/awell-extensions 2.1.71 → 2.1.72

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.
@@ -7,11 +7,21 @@ export declare const settings: {
7
7
  required: true;
8
8
  description: string;
9
9
  };
10
+ customDomain: {
11
+ label: string;
12
+ key: string;
13
+ obfuscated: false;
14
+ required: false;
15
+ description: string;
16
+ };
10
17
  };
11
18
  export declare const SettingsValidationSchema: z.ZodObject<{
12
19
  apiKey: z.ZodString;
20
+ customDomain: z.ZodOptional<z.ZodString>;
13
21
  }, "strip", z.ZodTypeAny, {
14
22
  apiKey: string;
23
+ customDomain?: string | undefined;
15
24
  }, {
16
25
  apiKey: string;
26
+ customDomain?: string | undefined;
17
27
  }>;
@@ -10,8 +10,16 @@ exports.settings = {
10
10
  required: true,
11
11
  description: 'Enter an API key so Awell can communicate with Cal.com.',
12
12
  },
13
+ customDomain: {
14
+ label: 'Custom Domain',
15
+ key: 'customDomain',
16
+ obfuscated: false,
17
+ required: false,
18
+ description: 'Custom domain for your Cal.com deployment. Defaults to https://cal.com but can be overridden for enterprise Cal.com accounts with custom domains (e.g., https://myorg.cal.com).',
19
+ },
13
20
  };
14
21
  exports.SettingsValidationSchema = zod_1.z.object({
15
22
  apiKey: zod_1.z.string().min(1),
23
+ customDomain: zod_1.z.string().optional(),
16
24
  });
17
25
  //# sourceMappingURL=settings.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"settings.js","sourceRoot":"","sources":["../../../extensions/calDotCom/settings.ts"],"names":[],"mappings":";;;AACA,6BAAuB;AAEV,QAAA,QAAQ,GAAG;IACtB,MAAM,EAAE;QACN,KAAK,EAAE,SAAS;QAChB,GAAG,EAAE,QAAQ;QACb,UAAU,EAAE,IAAI;QAChB,QAAQ,EAAE,IAAI;QACd,WAAW,EAAE,yDAAyD;KACvE;CACgC,CAAA;AAEtB,QAAA,wBAAwB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/C,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;CAC4B,CAAC,CAAA"}
1
+ {"version":3,"file":"settings.js","sourceRoot":"","sources":["../../../extensions/calDotCom/settings.ts"],"names":[],"mappings":";;;AACA,6BAAuB;AAEV,QAAA,QAAQ,GAAG;IACtB,MAAM,EAAE;QACN,KAAK,EAAE,SAAS;QAChB,GAAG,EAAE,QAAQ;QACb,UAAU,EAAE,IAAI;QAChB,QAAQ,EAAE,IAAI;QACd,WAAW,EAAE,yDAAyD;KACvE;IACD,YAAY,EAAE;QACZ,KAAK,EAAE,eAAe;QACtB,GAAG,EAAE,cAAc;QACnB,UAAU,EAAE,KAAK;QACjB,QAAQ,EAAE,KAAK;QACf,WAAW,EACT,iLAAiL;KACpL;CACgC,CAAA;AAEtB,QAAA,wBAAwB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/C,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IACzB,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACkB,CAAC,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awell-health/awell-extensions",
3
- "version": "2.1.71",
3
+ "version": "2.1.72",
4
4
  "packageManager": "yarn@4.5.3",
5
5
  "main": "dist/src/index.js",
6
6
  "repository": {