@anywayseo/gatsby-plugin 2.4.0 → 2.6.0

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 (26) hide show
  1. package/package.json +1 -1
  2. package/utils/strapi-source/schema/collections/author.d.ts +1 -0
  3. package/utils/strapi-source/schema/collections/author.js +13 -0
  4. package/utils/strapi-source/schema/collections/page.d.ts +1 -0
  5. package/utils/strapi-source/schema/{page.js → collections/page.js} +1 -1
  6. package/utils/strapi-source/schema/components/base.d.ts +1 -0
  7. package/utils/strapi-source/schema/components/base.js +77 -0
  8. package/utils/strapi-source/schema/components/content.d.ts +1 -0
  9. package/utils/strapi-source/schema/{components.js → components/content.js} +63 -98
  10. package/utils/strapi-source/schema/components/shared.d.ts +1 -0
  11. package/utils/strapi-source/schema/components/shared.js +18 -0
  12. package/utils/strapi-source/schema/index.js +10 -7
  13. package/utils/strapi-source/schema/primitives/index.d.ts +1 -0
  14. package/utils/strapi-source/schema/primitives/index.js +22 -0
  15. package/utils/strapi-source/schema/single/site.d.ts +1 -0
  16. package/utils/strapi-source/schema/{site.js → single/site.js} +1 -1
  17. package/utils/strapi-source/strapi-content/index.js +38 -0
  18. package/utils/strapi-source/schema/components.d.ts +0 -1
  19. package/utils/strapi-source/schema/page.d.ts +0 -1
  20. package/utils/strapi-source/schema/shared.d.ts +0 -1
  21. package/utils/strapi-source/schema/shared.js +0 -32
  22. package/utils/strapi-source/schema/site.d.ts +0 -1
  23. /package/utils/strapi-source/schema/{localization.d.ts → single/localization.d.ts} +0 -0
  24. /package/utils/strapi-source/schema/{localization.js → single/localization.js} +0 -0
  25. /package/utils/strapi-source/schema/{navigation.d.ts → single/navigation.d.ts} +0 -0
  26. /package/utils/strapi-source/schema/{navigation.js → single/navigation.js} +0 -0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@anywayseo/gatsby-plugin",
3
3
  "description": "Shared config for Anywayseo sites",
4
- "version": "2.4.0",
4
+ "version": "2.6.0",
5
5
  "author": "zerg41",
6
6
  "license": "MIT",
7
7
  "publishConfig": {
@@ -0,0 +1 @@
1
+ export declare const author = "\n # === AUTHOR DEFINITION ===\n type Author {\n name: String!\n role: String!\n bio: String!\n avatar: Image!\n socialNetworks: SocialNetworkList \n }\n ";
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.author = void 0;
4
+ exports.author = `
5
+ # === AUTHOR DEFINITION ===
6
+ type Author {
7
+ name: String!
8
+ role: String!
9
+ bio: String!
10
+ avatar: Image!
11
+ socialNetworks: SocialNetworkList
12
+ }
13
+ `;
@@ -0,0 +1 @@
1
+ export declare const page = "\n # === STRAPI PAGE DEFINITION ===\n type StrapiPage implements Node {\n id: ID!\n locale: String\n title: String\n slug: String\n seo: Seo\n author: Author\n createdAt: Date @dateformat\n updatedAt: Date @dateformat\n content: [ContentComponent]\n }\n";
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.page = void 0;
4
4
  exports.page = `
5
- # === STRAPI PAGE DEFINITIONS ===
5
+ # === STRAPI PAGE DEFINITION ===
6
6
  type StrapiPage implements Node {
7
7
  id: ID!
8
8
  locale: String
@@ -0,0 +1 @@
1
+ export declare const base = "\n # === BASE DEFINITIONS ===\n type Currency {\n code: String!\n }\n\n type FaqItem {\n question: String!\n answer: String!\n }\n\n type FeaturesItem {\n title: String!\n description: String\n }\n\n type GameCard {\n name: String!\n description: String\n url: String\n image: Image\n }\n\n type GameCardTab {\n label: String!\n content: [GameCard!]\n }\n\n type GameInfoFeatures {\n HAS_DEMO: Boolean\n HAS_AUTOPLAY: Boolean\n HAS_FREE_SPINS: Boolean\n HAS_FAST_SPIN: Boolean\n HAS_BONUS_PURCHASE: Boolean\n HAS_COLLECTION_SYMBOLS: Boolean\n HAS_PROGRESSIVE_JACKPOT: Boolean\n BONUS_FEATURES: String\n LANGUAGES: String\n FUNCTIONS: String\n }\n\n type GameInfoGeneral {\n NAME: String\n DEVELOPER: String\n RELEASE_DATE: Date @dateformat\n THEME: String\n TYPE: String\n RTP: String\n VOLATILITY: String\n REELS_NUMBER: String\n PAY_LINES: String\n ROWS_WITH_PINS: String\n MIN_BET: String\n MAX_BET: String\n MAX_WIN: String\n COMPATIBILITY: String\n }\n\n type HowToStep {\n title: String!\n description: String\n thumbnail: Image\n }\n\n type ProsConsItem {\n title: String!\n description: String\n }\n\n type SocialNetwork {\n kind: String!\n url: String!\n }\n ";
@@ -0,0 +1,77 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.base = void 0;
4
+ exports.base = `
5
+ # === BASE DEFINITIONS ===
6
+ type Currency {
7
+ code: String!
8
+ }
9
+
10
+ type FaqItem {
11
+ question: String!
12
+ answer: String!
13
+ }
14
+
15
+ type FeaturesItem {
16
+ title: String!
17
+ description: String
18
+ }
19
+
20
+ type GameCard {
21
+ name: String!
22
+ description: String
23
+ url: String
24
+ image: Image
25
+ }
26
+
27
+ type GameCardTab {
28
+ label: String!
29
+ content: [GameCard!]
30
+ }
31
+
32
+ type GameInfoFeatures {
33
+ HAS_DEMO: Boolean
34
+ HAS_AUTOPLAY: Boolean
35
+ HAS_FREE_SPINS: Boolean
36
+ HAS_FAST_SPIN: Boolean
37
+ HAS_BONUS_PURCHASE: Boolean
38
+ HAS_COLLECTION_SYMBOLS: Boolean
39
+ HAS_PROGRESSIVE_JACKPOT: Boolean
40
+ BONUS_FEATURES: String
41
+ LANGUAGES: String
42
+ FUNCTIONS: String
43
+ }
44
+
45
+ type GameInfoGeneral {
46
+ NAME: String
47
+ DEVELOPER: String
48
+ RELEASE_DATE: Date @dateformat
49
+ THEME: String
50
+ TYPE: String
51
+ RTP: String
52
+ VOLATILITY: String
53
+ REELS_NUMBER: String
54
+ PAY_LINES: String
55
+ ROWS_WITH_PINS: String
56
+ MIN_BET: String
57
+ MAX_BET: String
58
+ MAX_WIN: String
59
+ COMPATIBILITY: String
60
+ }
61
+
62
+ type HowToStep {
63
+ title: String!
64
+ description: String
65
+ thumbnail: Image
66
+ }
67
+
68
+ type ProsConsItem {
69
+ title: String!
70
+ description: String
71
+ }
72
+
73
+ type SocialNetwork {
74
+ kind: String!
75
+ url: String!
76
+ }
77
+ `;
@@ -0,0 +1 @@
1
+ export declare const content = "\n # === COMPONENT DEFINITIONS ===\n union ContentComponent =\n STRAPI__COMPONENT_CONTENT_CONTACTS_PAGE\n | STRAPI__COMPONENT_CONTENT_COOKIE_POLICY_PAGE \n | STRAPI__COMPONENT_CONTENT_FAQ\n | STRAPI__COMPONENT_CONTENT_FEATURES\n | STRAPI__COMPONENT_CONTENT_GAME_CARDS\n | STRAPI__COMPONENT_CONTENT_GAME_CARD_TABS\n | STRAPI__COMPONENT_CONTENT_GAME_DEMO\n | STRAPI__COMPONENT_CONTENT_GAME_INFO\n | STRAPI__COMPONENT_CONTENT_HOW_TO\n | STRAPI__COMPONENT_CONTENT_LIST\n | STRAPI__COMPONENT_CONTENT_MEDIA\n | STRAPI__COMPONENT_CONTENT_PRIVACY_POLICY_PAGE\n | STRAPI__COMPONENT_CONTENT_PROS_CONS\n | STRAPI__COMPONENT_CONTENT_RICH_TEXT\n | STRAPI__COMPONENT_CONTENT_TABLE\n | STRAPI__COMPONENT_CONTENT_TERMS_CONDITIONS_PAGE\n | STRAPI__COMPONENT_CONTENT_TIP\n\n # === CONTACTS ===\n type STRAPI__COMPONENT_CONTENT_CONTACTS_PAGE @dontInfer {\n id: ID\n }\n\n # === COOKIE_POLICY ===\n type STRAPI__COMPONENT_CONTENT_COOKIE_POLICY_PAGE @dontInfer {\n id: ID\n }\n\n # === FAQ ===\n type STRAPI__COMPONENT_CONTENT_FAQ @dontInfer {\n items: [FaqItem!]\n }\n\n # === FEATURES ===\n type STRAPI__COMPONENT_CONTENT_FEATURES @dontInfer {\n items: [FeaturesItem!]\n }\n\n # === GAME CARDS ===\n type STRAPI__COMPONENT_CONTENT_GAME_CARDS @dontInfer {\n items: [GameCard!]\n order: String!\n randomSeed: Int\n cardHeight: String\n }\n\n # === GAME CARD TABS ===\n type STRAPI__COMPONENT_CONTENT_GAME_CARD_TABS @dontInfer {\n items: [GameCardTab!]\n }\n\n # === GAME_DEMO ===\n type STRAPI__COMPONENT_CONTENT_GAME_DEMO @dontInfer {\n name: String!\n src: String!\n href: String\n previewImage: Image!\n }\n\n # === GAME_INFO ===\n type STRAPI__COMPONENT_CONTENT_GAME_INFO @dontInfer {\n general: GameInfoGeneral\n features: GameInfoFeatures\n currency: CurrencyList\n }\n\n # === HOW_TO ===\n type STRAPI__COMPONENT_CONTENT_HOW_TO @dontInfer {\n steps: [HowToStep!]\n }\n\n # === LIST ===\n type STRAPI__COMPONENT_CONTENT_LIST @dontInfer {\n bullet: String\n content: JsonValue\n }\n\n # === MEDIA ===\n type STRAPI__COMPONENT_CONTENT_MEDIA @dontInfer {\n file: Image\n }\n\n # === PRIVACY_POLICY ===\n type STRAPI__COMPONENT_CONTENT_PRIVACY_POLICY_PAGE @dontInfer {\n contactsSlug: String\n }\n\n # === PROS_CONS ===\n type STRAPI__COMPONENT_CONTENT_PROS_CONS @dontInfer {\n pros: [ProsConsItem!]\n cons: [ProsConsItem!]\n }\n\n # === RICH_TEXT ===\n type STRAPI__COMPONENT_CONTENT_RICH_TEXT @dontInfer {\n content: RichTextContent\n }\n\n # === TABLE ===\n type STRAPI__COMPONENT_CONTENT_TABLE @dontInfer {\n columnNumber: Int!\n content: JsonValue\n caption: String\n striped: Boolean\n bordered: Boolean\n scrollable: Boolean\n }\n\n # === TERMS_CONDITIONS ===\n type STRAPI__COMPONENT_CONTENT_TERMS_CONDITIONS_PAGE @dontInfer {\n privacyPolicySlug: String\n }\n\n # === TIP ===\n type STRAPI__COMPONENT_CONTENT_TIP @dontInfer {\n tip: String!\n author: Author\n }\n ";
@@ -1,60 +1,68 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.components = void 0;
4
- exports.components = `
3
+ exports.content = void 0;
4
+ exports.content = `
5
5
  # === COMPONENT DEFINITIONS ===
6
6
  union ContentComponent =
7
- STRAPI__COMPONENT_CONTENT_FAQ
7
+ STRAPI__COMPONENT_CONTENT_CONTACTS_PAGE
8
+ | STRAPI__COMPONENT_CONTENT_COOKIE_POLICY_PAGE
9
+ | STRAPI__COMPONENT_CONTENT_FAQ
8
10
  | STRAPI__COMPONENT_CONTENT_FEATURES
9
- | STRAPI__COMPONENT_CONTENT_PROS_CONS
11
+ | STRAPI__COMPONENT_CONTENT_GAME_CARDS
12
+ | STRAPI__COMPONENT_CONTENT_GAME_CARD_TABS
10
13
  | STRAPI__COMPONENT_CONTENT_GAME_DEMO
11
14
  | STRAPI__COMPONENT_CONTENT_GAME_INFO
12
15
  | STRAPI__COMPONENT_CONTENT_HOW_TO
13
- | STRAPI__COMPONENT_CONTENT_TIP
14
- | STRAPI__COMPONENT_CONTENT_RICH_TEXT
15
- | STRAPI__COMPONENT_CONTENT_MEDIA
16
16
  | STRAPI__COMPONENT_CONTENT_LIST
17
+ | STRAPI__COMPONENT_CONTENT_MEDIA
18
+ | STRAPI__COMPONENT_CONTENT_PRIVACY_POLICY_PAGE
19
+ | STRAPI__COMPONENT_CONTENT_PROS_CONS
20
+ | STRAPI__COMPONENT_CONTENT_RICH_TEXT
17
21
  | STRAPI__COMPONENT_CONTENT_TABLE
22
+ | STRAPI__COMPONENT_CONTENT_TERMS_CONDITIONS_PAGE
23
+ | STRAPI__COMPONENT_CONTENT_TIP
18
24
 
25
+ # === CONTACTS ===
26
+ type STRAPI__COMPONENT_CONTENT_CONTACTS_PAGE @dontInfer {
27
+ id: ID
28
+ }
29
+
30
+ # === COOKIE_POLICY ===
31
+ type STRAPI__COMPONENT_CONTENT_COOKIE_POLICY_PAGE @dontInfer {
32
+ id: ID
33
+ }
19
34
 
20
35
  # === FAQ ===
21
36
  type STRAPI__COMPONENT_CONTENT_FAQ @dontInfer {
22
37
  items: [FaqItem!]
23
38
  }
24
39
 
25
- type FaqItem {
26
- question: String
27
- answer: String
28
- }
29
-
30
-
31
40
  # === FEATURES ===
32
41
  type STRAPI__COMPONENT_CONTENT_FEATURES @dontInfer {
33
- items: [ListItem!]
42
+ items: [FeaturesItem!]
34
43
  }
35
44
 
36
-
37
- # === PROS_CONS ===
38
- type STRAPI__COMPONENT_CONTENT_PROS_CONS @dontInfer {
39
- pros: [ListItem!]
40
- cons: [ListItem!]
45
+ # === GAME CARDS ===
46
+ type STRAPI__COMPONENT_CONTENT_GAME_CARDS @dontInfer {
47
+ items: [GameCard!]
48
+ order: String!
49
+ randomSeed: Int
50
+ cardHeight: String
41
51
  }
42
52
 
43
- type ListItem {
44
- title: String
45
- description: String
53
+ # === GAME CARD TABS ===
54
+ type STRAPI__COMPONENT_CONTENT_GAME_CARD_TABS @dontInfer {
55
+ items: [GameCardTab!]
46
56
  }
47
57
 
48
-
49
58
  # === GAME_DEMO ===
50
59
  type STRAPI__COMPONENT_CONTENT_GAME_DEMO @dontInfer {
51
- name: String
52
- src: String
60
+ name: String!
61
+ src: String!
53
62
  href: String
54
- previewImage: Image
63
+ previewImage: Image!
55
64
  }
56
65
 
57
-
58
66
  # === GAME_INFO ===
59
67
  type STRAPI__COMPONENT_CONTENT_GAME_INFO @dontInfer {
60
68
  general: GameInfoGeneral
@@ -62,99 +70,56 @@ exports.components = `
62
70
  currency: CurrencyList
63
71
  }
64
72
 
65
- type GameInfoGeneral @dontInfer {
66
- NAME: String
67
- DEVELOPER: String
68
- RELEASE_DATE: Date @dateformat
69
- THEME: String
70
- TYPE: String
71
- VOLATILITY: String
72
- RTP: String
73
- PAY_LINES: String
74
- ROWS_WITH_PINS: String
75
- REELS_NUMBER: String
76
- MIN_BET: String
77
- MAX_BET: String
78
- MAX_WIN: String
79
- COMPATIBILITY: String
80
- }
81
-
82
- type GameInfoFeatures @dontInfer {
83
- HAS_DEMO: Boolean
84
- HAS_AUTOPLAY: Boolean
85
- HAS_FREE_SPINS: Boolean
86
- HAS_FAST_SPIN: Boolean
87
- HAS_BONUS_PURCHASE: Boolean
88
- HAS_COLLECTION_SYMBOLS: Boolean
89
- HAS_PROGRESSIVE_JACKPOT: Boolean
90
- BONUS_FEATURES: String
91
- FUNCTIONS: String
92
- LANGUAGES: String
93
- }
94
-
95
- type Currency {
96
- code: String!
97
- }
98
-
99
- type CurrencyList @dontInfer {
100
- items: [Currency!]
101
- }
102
-
103
73
  # === HOW_TO ===
104
74
  type STRAPI__COMPONENT_CONTENT_HOW_TO @dontInfer {
105
75
  steps: [HowToStep!]
106
76
  }
107
77
 
108
- type HowToStep {
109
- title: String!
110
- description: String
111
- thumbnail: Image
78
+ # === LIST ===
79
+ type STRAPI__COMPONENT_CONTENT_LIST @dontInfer {
80
+ bullet: String
81
+ content: JsonValue
112
82
  }
113
83
 
84
+ # === MEDIA ===
85
+ type STRAPI__COMPONENT_CONTENT_MEDIA @dontInfer {
86
+ file: Image
87
+ }
114
88
 
115
- # === TIP ===
116
- type STRAPI__COMPONENT_CONTENT_TIP @dontInfer {
117
- tip: String
118
- author: Author
89
+ # === PRIVACY_POLICY ===
90
+ type STRAPI__COMPONENT_CONTENT_PRIVACY_POLICY_PAGE @dontInfer {
91
+ contactsSlug: String
119
92
  }
120
93
 
94
+ # === PROS_CONS ===
95
+ type STRAPI__COMPONENT_CONTENT_PROS_CONS @dontInfer {
96
+ pros: [ProsConsItem!]
97
+ cons: [ProsConsItem!]
98
+ }
121
99
 
122
100
  # === RICH_TEXT ===
123
101
  type STRAPI__COMPONENT_CONTENT_RICH_TEXT @dontInfer {
124
102
  content: RichTextContent
125
103
  }
126
104
 
127
- type RichTextContent {
128
- data: RichTextData
129
- }
130
-
131
- type RichTextData {
132
- content: String
133
- }
134
-
135
-
136
- # === MEDIA ===
137
- type STRAPI__COMPONENT_CONTENT_MEDIA @dontInfer {
138
- file: Image
139
- }
140
-
141
- # === LIST ===
142
- type STRAPI__COMPONENT_CONTENT_LIST @dontInfer {
143
- bullet: String
144
- content: JsonValue
145
- }
146
-
147
105
  # === TABLE ===
148
106
  type STRAPI__COMPONENT_CONTENT_TABLE @dontInfer {
149
- columnNumber: Int
107
+ columnNumber: Int!
108
+ content: JsonValue
109
+ caption: String
150
110
  striped: Boolean
151
111
  bordered: Boolean
152
112
  scrollable: Boolean
153
- caption: String
154
- content: JsonValue
155
113
  }
156
114
 
157
- type JsonValue {
158
- strapi_json_value: JSON
115
+ # === TERMS_CONDITIONS ===
116
+ type STRAPI__COMPONENT_CONTENT_TERMS_CONDITIONS_PAGE @dontInfer {
117
+ privacyPolicySlug: String
118
+ }
119
+
120
+ # === TIP ===
121
+ type STRAPI__COMPONENT_CONTENT_TIP @dontInfer {
122
+ tip: String!
123
+ author: Author
159
124
  }
160
125
  `;
@@ -0,0 +1 @@
1
+ export declare const shared = "\n # === SHARED DEFINITIONS ===\n type CurrencyList @dontInfer {\n items: [Currency!]\n }\n\n type Seo @dontInfer {\n metaTitle: String\n metaDescription: String\n }\n\n type SocialNetworkList @dontInfer {\n items: [SocialNetwork!]\n }\n ";
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.shared = void 0;
4
+ exports.shared = `
5
+ # === SHARED DEFINITIONS ===
6
+ type CurrencyList @dontInfer {
7
+ items: [Currency!]
8
+ }
9
+
10
+ type Seo @dontInfer {
11
+ metaTitle: String
12
+ metaDescription: String
13
+ }
14
+
15
+ type SocialNetworkList @dontInfer {
16
+ items: [SocialNetwork!]
17
+ }
18
+ `;
@@ -1,10 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.typeDefs = void 0;
4
- const components_1 = require("./components");
5
- const localization_1 = require("./localization");
6
- const navigation_1 = require("./navigation");
7
- const page_1 = require("./page");
8
- const shared_1 = require("./shared");
9
- const site_1 = require("./site");
10
- exports.typeDefs = [shared_1.shared, site_1.site, navigation_1.navigation, localization_1.localization, page_1.page, components_1.components].join('\n');
4
+ const author_1 = require("./collections/author");
5
+ const page_1 = require("./collections/page");
6
+ const base_1 = require("./components/base");
7
+ const content_1 = require("./components/content");
8
+ const shared_1 = require("./components/shared");
9
+ const primitives_1 = require("./primitives");
10
+ const localization_1 = require("./single/localization");
11
+ const navigation_1 = require("./single/navigation");
12
+ const site_1 = require("./single/site");
13
+ exports.typeDefs = [author_1.author, page_1.page, base_1.base, content_1.content, shared_1.shared, primitives_1.primitives, localization_1.localization, navigation_1.navigation, site_1.site].join('\n');
@@ -0,0 +1 @@
1
+ export declare const primitives = "\n # === PRIMITIVE DEFINITIONS ===\n type Image {\n localFile: File @link(from: \"localFile\")\n alternativeText: String\n }\n\n type RichTextContent {\n data: RichTextData\n }\n\n type RichTextData {\n content: String\n }\n\n type JsonValue {\n strapi_json_value: JSON\n }\n ";
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.primitives = void 0;
4
+ exports.primitives = `
5
+ # === PRIMITIVE DEFINITIONS ===
6
+ type Image {
7
+ localFile: File @link(from: "localFile")
8
+ alternativeText: String
9
+ }
10
+
11
+ type RichTextContent {
12
+ data: RichTextData
13
+ }
14
+
15
+ type RichTextData {
16
+ content: String
17
+ }
18
+
19
+ type JsonValue {
20
+ strapi_json_value: JSON
21
+ }
22
+ `;
@@ -0,0 +1 @@
1
+ export declare const site = "\n # === STRAPI SITE DEFINITION ===\n type StrapiSite implements Node {\n id: ID!\n name: String\n locale: String!\n currency: String!\n seo: Seo!\n logo: Image!\n favicon: Image\n socialNetworks: SocialNetworkList \n }\n ";
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.site = void 0;
4
4
  exports.site = `
5
- # === STRAPI SITE DEFINITIONS ===
5
+ # === STRAPI SITE DEFINITION ===
6
6
  type StrapiSite implements Node {
7
7
  id: ID!
8
8
  name: String
@@ -52,12 +52,44 @@ function sourceStrapiContentNode(args, strapiClient, config) {
52
52
  },
53
53
  content: {
54
54
  on: {
55
+ 'content.contacts-page': {
56
+ populate: '*',
57
+ },
58
+ 'content.cookie-policy-page': {
59
+ populate: '*',
60
+ },
55
61
  'content.faq': {
56
62
  populate: '*',
57
63
  },
58
64
  'content.features': {
59
65
  populate: '*',
60
66
  },
67
+ 'content.game-cards': {
68
+ populate: {
69
+ items: {
70
+ populate: {
71
+ image: {
72
+ populate: '*',
73
+ },
74
+ },
75
+ },
76
+ },
77
+ },
78
+ 'content.game-card-tabs': {
79
+ populate: {
80
+ items: {
81
+ populate: {
82
+ content: {
83
+ populate: {
84
+ image: {
85
+ populate: '*',
86
+ },
87
+ },
88
+ },
89
+ },
90
+ },
91
+ },
92
+ },
61
93
  'content.game-demo': {
62
94
  populate: '*',
63
95
  },
@@ -83,6 +115,9 @@ function sourceStrapiContentNode(args, strapiClient, config) {
83
115
  'content.media': {
84
116
  populate: '*',
85
117
  },
118
+ 'content.privacy-policy-page': {
119
+ populate: '*',
120
+ },
86
121
  'content.pros-cons': {
87
122
  populate: '*',
88
123
  },
@@ -92,6 +127,9 @@ function sourceStrapiContentNode(args, strapiClient, config) {
92
127
  'content.table': {
93
128
  populate: '*',
94
129
  },
130
+ 'content.terms-conditions-page': {
131
+ populate: '*',
132
+ },
95
133
  'content.tip': {
96
134
  populate: '*',
97
135
  },
@@ -1 +0,0 @@
1
- export declare const components = "\n # === COMPONENT DEFINITIONS ===\n union ContentComponent =\n STRAPI__COMPONENT_CONTENT_FAQ\n | STRAPI__COMPONENT_CONTENT_FEATURES\n | STRAPI__COMPONENT_CONTENT_PROS_CONS\n | STRAPI__COMPONENT_CONTENT_GAME_DEMO\n | STRAPI__COMPONENT_CONTENT_GAME_INFO\n | STRAPI__COMPONENT_CONTENT_HOW_TO\n | STRAPI__COMPONENT_CONTENT_TIP\n | STRAPI__COMPONENT_CONTENT_RICH_TEXT\n | STRAPI__COMPONENT_CONTENT_MEDIA\n | STRAPI__COMPONENT_CONTENT_LIST\n | STRAPI__COMPONENT_CONTENT_TABLE\n\n\n # === FAQ ===\n type STRAPI__COMPONENT_CONTENT_FAQ @dontInfer {\n items: [FaqItem!]\n }\n\n type FaqItem {\n question: String\n answer: String\n }\n\n\n # === FEATURES ===\n type STRAPI__COMPONENT_CONTENT_FEATURES @dontInfer {\n items: [ListItem!]\n }\n\n\n # === PROS_CONS ===\n type STRAPI__COMPONENT_CONTENT_PROS_CONS @dontInfer {\n pros: [ListItem!]\n cons: [ListItem!]\n }\n\n type ListItem {\n title: String\n description: String\n }\n\n\n # === GAME_DEMO ===\n type STRAPI__COMPONENT_CONTENT_GAME_DEMO @dontInfer {\n name: String\n src: String\n href: String\n previewImage: Image\n }\n\n\n # === GAME_INFO ===\n type STRAPI__COMPONENT_CONTENT_GAME_INFO @dontInfer {\n general: GameInfoGeneral\n features: GameInfoFeatures\n currency: CurrencyList\n }\n\n type GameInfoGeneral @dontInfer {\n NAME: String\n DEVELOPER: String\n RELEASE_DATE: Date @dateformat\n THEME: String\n TYPE: String\n VOLATILITY: String\n RTP: String\n PAY_LINES: String\n ROWS_WITH_PINS: String\n REELS_NUMBER: String\n MIN_BET: String\n MAX_BET: String\n MAX_WIN: String\n COMPATIBILITY: String\n }\n\n type GameInfoFeatures @dontInfer {\n HAS_DEMO: Boolean\n HAS_AUTOPLAY: Boolean\n HAS_FREE_SPINS: Boolean\n HAS_FAST_SPIN: Boolean\n HAS_BONUS_PURCHASE: Boolean\n HAS_COLLECTION_SYMBOLS: Boolean\n HAS_PROGRESSIVE_JACKPOT: Boolean\n BONUS_FEATURES: String\n FUNCTIONS: String\n LANGUAGES: String\n }\n\n type Currency {\n code: String!\n }\n\n type CurrencyList @dontInfer {\n items: [Currency!]\n }\n\n # === HOW_TO ===\n type STRAPI__COMPONENT_CONTENT_HOW_TO @dontInfer {\n steps: [HowToStep!]\n }\n\n type HowToStep {\n title: String!\n description: String\n thumbnail: Image\n }\n\n\n # === TIP ===\n type STRAPI__COMPONENT_CONTENT_TIP @dontInfer {\n tip: String\n author: Author\n }\n\n\n # === RICH_TEXT ===\n type STRAPI__COMPONENT_CONTENT_RICH_TEXT @dontInfer {\n content: RichTextContent\n }\n\n type RichTextContent {\n data: RichTextData\n }\n\n type RichTextData {\n content: String\n }\n\n\n # === MEDIA ===\n type STRAPI__COMPONENT_CONTENT_MEDIA @dontInfer {\n file: Image\n }\n\n # === LIST ===\n type STRAPI__COMPONENT_CONTENT_LIST @dontInfer {\n bullet: String\n content: JsonValue\n }\n\n # === TABLE ===\n type STRAPI__COMPONENT_CONTENT_TABLE @dontInfer {\n columnNumber: Int\n striped: Boolean\n bordered: Boolean\n scrollable: Boolean\n caption: String\n content: JsonValue\n }\n\n type JsonValue {\n strapi_json_value: JSON\n }\n ";
@@ -1 +0,0 @@
1
- export declare const page = "\n # === STRAPI PAGE DEFINITIONS ===\n type StrapiPage implements Node {\n id: ID!\n locale: String\n title: String\n slug: String\n seo: Seo\n author: Author\n createdAt: Date @dateformat\n updatedAt: Date @dateformat\n content: [ContentComponent]\n }\n";
@@ -1 +0,0 @@
1
- export declare const shared = "\n # === SHARED DEFINITIONS ===\n type Image {\n localFile: File @link(from: \"localFile\")\n alternativeText: String\n }\n\n type Seo {\n metaTitle: String\n metaDescription: String\n }\n\n type SocialNetwork {\n kind: String!\n url: String!\n }\n\n type SocialNetworkList {\n items: [SocialNetwork!]\n }\n\n type Author {\n name: String!\n role: String!\n bio: String!\n avatar: Image!\n socialNetworks: SocialNetworkList \n }\n ";
@@ -1,32 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.shared = void 0;
4
- exports.shared = `
5
- # === SHARED DEFINITIONS ===
6
- type Image {
7
- localFile: File @link(from: "localFile")
8
- alternativeText: String
9
- }
10
-
11
- type Seo {
12
- metaTitle: String
13
- metaDescription: String
14
- }
15
-
16
- type SocialNetwork {
17
- kind: String!
18
- url: String!
19
- }
20
-
21
- type SocialNetworkList {
22
- items: [SocialNetwork!]
23
- }
24
-
25
- type Author {
26
- name: String!
27
- role: String!
28
- bio: String!
29
- avatar: Image!
30
- socialNetworks: SocialNetworkList
31
- }
32
- `;
@@ -1 +0,0 @@
1
- export declare const site = "\n # === STRAPI SITE DEFINITIONS ===\n type StrapiSite implements Node {\n id: ID!\n name: String\n locale: String!\n currency: String!\n seo: Seo!\n logo: Image!\n favicon: Image\n socialNetworks: SocialNetworkList \n }\n ";