@rxdrag/rxcms-models 0.2.4 → 0.2.6

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.
@@ -35,4 +35,8 @@ export interface WebsiteSettings extends WebsitePart {
35
35
  map301?: string;
36
36
  headerCode?: string;
37
37
  footerCode?: string;
38
+ /**
39
+ * GA跟踪码
40
+ */
41
+ gaTrackingId?: string;
38
42
  }
@@ -23,4 +23,5 @@ export interface WebsiteSettingsBoolExp extends WebsitePartBoolExp {
23
23
  map301?: StringComparisonExp;
24
24
  headerCode?: StringComparisonExp;
25
25
  footerCode?: StringComparisonExp;
26
+ gaTrackingId?: StringComparisonExp;
26
27
  }
@@ -32,6 +32,10 @@ export declare enum WebsiteSettingsDistinctEnum {
32
32
  map301 = "map301",
33
33
  headerCode = "headerCode",
34
34
  footerCode = "footerCode",
35
+ /**
36
+ * GA跟踪码
37
+ */
38
+ gaTrackingId = "gaTrackingId",
35
39
  websiteId = "websiteId",
36
40
  slug = "slug",
37
41
  description = "description",
@@ -34,6 +34,10 @@ export interface WebsiteSettingsInput extends WebsitePart {
34
34
  map301?: string;
35
35
  headerCode?: string;
36
36
  footerCode?: string;
37
+ /**
38
+ * GA跟踪码
39
+ */
40
+ gaTrackingId?: string;
37
41
  }
38
42
  export declare const websiteSettingsToInputCascade: (entity: WebsiteSettings) => WebsiteSettingsInput;
39
43
  export declare const websiteSettingsToInput: (entity: WebsiteSettings) => WebsiteSettingsInput;
@@ -33,4 +33,8 @@ export interface WebsiteSettingsOrderBy extends WebsitePartOrderBy {
33
33
  map301?: OrderBy;
34
34
  headerCode?: OrderBy;
35
35
  footerCode?: OrderBy;
36
+ /**
37
+ * GA跟踪码
38
+ */
39
+ gaTrackingId?: OrderBy;
36
40
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxdrag/rxcms-models",
3
- "version": "0.2.4",
3
+ "version": "0.2.6",
4
4
  "main": "dist/index.mjs",
5
5
  "module": "dist/index.mjs",
6
6
  "files": [
@@ -12,8 +12,8 @@
12
12
  "devDependencies": {
13
13
  "eslint": "^7.32.0",
14
14
  "typescript": "^5",
15
- "@rxdrag/tsconfig": "0.1.1",
16
- "@rxdrag/eslint-config-custom": "0.1.1"
15
+ "@rxdrag/eslint-config-custom": "0.1.1",
16
+ "@rxdrag/tsconfig": "0.1.1"
17
17
  },
18
18
  "dependencies": {
19
19
  "swr": "^2.2.4",