@databutton/firebase-types 1.94.15 → 1.94.17

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.
@@ -874,7 +874,7 @@ export interface ProjectMigrationRecord {
874
874
  migratedAt: Timestamp;
875
875
  }
876
876
  /**
877
- * Collection of integrations that you can add to your project
877
+ * Collection of integrations that you can add to your project. @deprecated Use InstalledIntegration and IntegrationTemplate instead.
878
878
  */
879
879
  export interface Integration {
880
880
  displayName: string;
@@ -928,7 +928,7 @@ export interface IntegrationScope {
928
928
  /** Sections name e.g. Comntacts for Hubspot */
929
929
  sectionName: string;
930
930
  /** A list of scopes provided by the integration. e.g. "read:contacts", "write:contacts".
931
- * For certain integrations this needs to be synced manually */
931
+ * For certain integrations this needs to be synced manually using the admin app*/
932
932
  scopes: string[];
933
933
  permission?: "read" | "write" | "read-write";
934
934
  }
@@ -56,7 +56,8 @@ export declare enum CustomDomainFailureCode {
56
56
  UNKNOWN_ERROR = "UNKNOWN_ERROR",
57
57
  DOMAIN_FROZEN = "DOMAIN_FROZEN",
58
58
  DOMAIN_NEEDS_MIGRATION = "DOMAIN_NEEDS_MIGRATION",
59
- UNSUPPORTED_TOP_LEVEL_DOMAIN = "UNSUPPORTED_TOP_LEVEL_DOMAIN"
59
+ UNSUPPORTED_TOP_LEVEL_DOMAIN = "UNSUPPORTED_TOP_LEVEL_DOMAIN",
60
+ INVALID_DOMAIN_FORMAT = "INVALID_DOMAIN_FORMAT"
60
61
  }
61
62
  export type CustomDomainResponse = {
62
63
  status: "Success";
@@ -9,6 +9,7 @@ export var CustomDomainFailureCode;
9
9
  CustomDomainFailureCode["DOMAIN_FROZEN"] = "DOMAIN_FROZEN";
10
10
  CustomDomainFailureCode["DOMAIN_NEEDS_MIGRATION"] = "DOMAIN_NEEDS_MIGRATION";
11
11
  CustomDomainFailureCode["UNSUPPORTED_TOP_LEVEL_DOMAIN"] = "UNSUPPORTED_TOP_LEVEL_DOMAIN";
12
+ CustomDomainFailureCode["INVALID_DOMAIN_FORMAT"] = "INVALID_DOMAIN_FORMAT";
12
13
  })(CustomDomainFailureCode || (CustomDomainFailureCode = {}));
13
14
  export var TimeRangeFilter;
14
15
  (function (TimeRangeFilter) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.94.15",
3
+ "version": "1.94.17",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {