@graphql-mesh/types 0.104.14 → 0.104.15-alpha-20251103000320-0eb10bb65fedaf33990c08ccc9ba69fe2dd6d6a5
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.
- package/cjs/config-schema.js +12 -1
- package/cjs/config-schema.json +10 -1
- package/esm/config-schema.js +12 -1
- package/esm/config-schema.json +10 -1
- package/package.json +2 -2
- package/typings/config.d.cts +11 -1
- package/typings/config.d.ts +11 -1
package/cjs/config-schema.js
CHANGED
|
@@ -2628,6 +2628,10 @@ exports.jsonSchema = {
|
|
|
2628
2628
|
"type": "string",
|
|
2629
2629
|
"description": "Path to the operation that could effect it. In a form: Mutation.something. Note that wildcard is not supported in this field."
|
|
2630
2630
|
},
|
|
2631
|
+
"pollingInterval": {
|
|
2632
|
+
"type": "integer",
|
|
2633
|
+
"description": "Polling interval in milliseconds"
|
|
2634
|
+
},
|
|
2631
2635
|
"invalidate": {
|
|
2632
2636
|
"type": "array",
|
|
2633
2637
|
"items": {
|
|
@@ -2637,7 +2641,6 @@ exports.jsonSchema = {
|
|
|
2637
2641
|
}
|
|
2638
2642
|
},
|
|
2639
2643
|
"required": [
|
|
2640
|
-
"field",
|
|
2641
2644
|
"invalidate"
|
|
2642
2645
|
]
|
|
2643
2646
|
},
|
|
@@ -2698,6 +2701,14 @@ exports.jsonSchema = {
|
|
|
2698
2701
|
}
|
|
2699
2702
|
],
|
|
2700
2703
|
"description": "The path to the code runs before the store is attached to the schema"
|
|
2704
|
+
},
|
|
2705
|
+
"mockGenerationBehavior": {
|
|
2706
|
+
"type": "string",
|
|
2707
|
+
"enum": [
|
|
2708
|
+
"deterministic",
|
|
2709
|
+
"random"
|
|
2710
|
+
],
|
|
2711
|
+
"description": "Set to `'deterministic'` if the default random mock generation behavior causes flakiness.\n\nDefault: 'random' (Allowed values: deterministic, random)"
|
|
2701
2712
|
}
|
|
2702
2713
|
}
|
|
2703
2714
|
},
|
package/cjs/config-schema.json
CHANGED
|
@@ -2497,6 +2497,10 @@
|
|
|
2497
2497
|
"type": "string",
|
|
2498
2498
|
"description": "Path to the operation that could effect it. In a form: Mutation.something. Note that wildcard is not supported in this field."
|
|
2499
2499
|
},
|
|
2500
|
+
"pollingInterval": {
|
|
2501
|
+
"type": "integer",
|
|
2502
|
+
"description": "Polling interval in milliseconds"
|
|
2503
|
+
},
|
|
2500
2504
|
"invalidate": {
|
|
2501
2505
|
"type": "array",
|
|
2502
2506
|
"items": {
|
|
@@ -2505,7 +2509,7 @@
|
|
|
2505
2509
|
"additionalItems": false
|
|
2506
2510
|
}
|
|
2507
2511
|
},
|
|
2508
|
-
"required": ["
|
|
2512
|
+
"required": ["invalidate"]
|
|
2509
2513
|
},
|
|
2510
2514
|
"LiveQueryIndexBy": {
|
|
2511
2515
|
"additionalProperties": false,
|
|
@@ -2561,6 +2565,11 @@
|
|
|
2561
2565
|
}
|
|
2562
2566
|
],
|
|
2563
2567
|
"description": "The path to the code runs before the store is attached to the schema"
|
|
2568
|
+
},
|
|
2569
|
+
"mockGenerationBehavior": {
|
|
2570
|
+
"type": "string",
|
|
2571
|
+
"enum": ["deterministic", "random"],
|
|
2572
|
+
"description": "Set to `'deterministic'` if the default random mock generation behavior causes flakiness.\n\nDefault: 'random' (Allowed values: deterministic, random)"
|
|
2564
2573
|
}
|
|
2565
2574
|
}
|
|
2566
2575
|
},
|
package/esm/config-schema.js
CHANGED
|
@@ -2625,6 +2625,10 @@ export const jsonSchema = {
|
|
|
2625
2625
|
"type": "string",
|
|
2626
2626
|
"description": "Path to the operation that could effect it. In a form: Mutation.something. Note that wildcard is not supported in this field."
|
|
2627
2627
|
},
|
|
2628
|
+
"pollingInterval": {
|
|
2629
|
+
"type": "integer",
|
|
2630
|
+
"description": "Polling interval in milliseconds"
|
|
2631
|
+
},
|
|
2628
2632
|
"invalidate": {
|
|
2629
2633
|
"type": "array",
|
|
2630
2634
|
"items": {
|
|
@@ -2634,7 +2638,6 @@ export const jsonSchema = {
|
|
|
2634
2638
|
}
|
|
2635
2639
|
},
|
|
2636
2640
|
"required": [
|
|
2637
|
-
"field",
|
|
2638
2641
|
"invalidate"
|
|
2639
2642
|
]
|
|
2640
2643
|
},
|
|
@@ -2695,6 +2698,14 @@ export const jsonSchema = {
|
|
|
2695
2698
|
}
|
|
2696
2699
|
],
|
|
2697
2700
|
"description": "The path to the code runs before the store is attached to the schema"
|
|
2701
|
+
},
|
|
2702
|
+
"mockGenerationBehavior": {
|
|
2703
|
+
"type": "string",
|
|
2704
|
+
"enum": [
|
|
2705
|
+
"deterministic",
|
|
2706
|
+
"random"
|
|
2707
|
+
],
|
|
2708
|
+
"description": "Set to `'deterministic'` if the default random mock generation behavior causes flakiness.\n\nDefault: 'random' (Allowed values: deterministic, random)"
|
|
2698
2709
|
}
|
|
2699
2710
|
}
|
|
2700
2711
|
},
|
package/esm/config-schema.json
CHANGED
|
@@ -2497,6 +2497,10 @@
|
|
|
2497
2497
|
"type": "string",
|
|
2498
2498
|
"description": "Path to the operation that could effect it. In a form: Mutation.something. Note that wildcard is not supported in this field."
|
|
2499
2499
|
},
|
|
2500
|
+
"pollingInterval": {
|
|
2501
|
+
"type": "integer",
|
|
2502
|
+
"description": "Polling interval in milliseconds"
|
|
2503
|
+
},
|
|
2500
2504
|
"invalidate": {
|
|
2501
2505
|
"type": "array",
|
|
2502
2506
|
"items": {
|
|
@@ -2505,7 +2509,7 @@
|
|
|
2505
2509
|
"additionalItems": false
|
|
2506
2510
|
}
|
|
2507
2511
|
},
|
|
2508
|
-
"required": ["
|
|
2512
|
+
"required": ["invalidate"]
|
|
2509
2513
|
},
|
|
2510
2514
|
"LiveQueryIndexBy": {
|
|
2511
2515
|
"additionalProperties": false,
|
|
@@ -2561,6 +2565,11 @@
|
|
|
2561
2565
|
}
|
|
2562
2566
|
],
|
|
2563
2567
|
"description": "The path to the code runs before the store is attached to the schema"
|
|
2568
|
+
},
|
|
2569
|
+
"mockGenerationBehavior": {
|
|
2570
|
+
"type": "string",
|
|
2571
|
+
"enum": ["deterministic", "random"],
|
|
2572
|
+
"description": "Set to `'deterministic'` if the default random mock generation behavior causes flakiness.\n\nDefault: 'random' (Allowed values: deterministic, random)"
|
|
2564
2573
|
}
|
|
2565
2574
|
}
|
|
2566
2575
|
},
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-mesh/types",
|
|
3
|
-
"version": "0.104.
|
|
3
|
+
"version": "0.104.15-alpha-20251103000320-0eb10bb65fedaf33990c08ccc9ba69fe2dd6d6a5",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"graphql": "*"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@graphql-hive/pubsub": "next",
|
|
10
|
-
"@graphql-mesh/store": "
|
|
10
|
+
"@graphql-mesh/store": "0.104.15-alpha-20251103000320-0eb10bb65fedaf33990c08ccc9ba69fe2dd6d6a5",
|
|
11
11
|
"@graphql-tools/batch-delegate": "^10.0.0",
|
|
12
12
|
"@graphql-tools/delegate": "^11.0.0",
|
|
13
13
|
"@graphql-tools/utils": "^10.8.0",
|
package/typings/config.d.cts
CHANGED
|
@@ -2118,7 +2118,11 @@ export interface LiveQueryInvalidation {
|
|
|
2118
2118
|
/**
|
|
2119
2119
|
* Path to the operation that could effect it. In a form: Mutation.something. Note that wildcard is not supported in this field.
|
|
2120
2120
|
*/
|
|
2121
|
-
field
|
|
2121
|
+
field?: string;
|
|
2122
|
+
/**
|
|
2123
|
+
* Polling interval in milliseconds
|
|
2124
|
+
*/
|
|
2125
|
+
pollingInterval?: number;
|
|
2122
2126
|
invalidate: string[];
|
|
2123
2127
|
}
|
|
2124
2128
|
export interface LiveQueryIndexBy {
|
|
@@ -2147,6 +2151,12 @@ export interface MockingConfig {
|
|
|
2147
2151
|
* The path to the code runs before the store is attached to the schema
|
|
2148
2152
|
*/
|
|
2149
2153
|
initializeStore?: any;
|
|
2154
|
+
/**
|
|
2155
|
+
* Set to `'deterministic'` if the default random mock generation behavior causes flakiness.
|
|
2156
|
+
*
|
|
2157
|
+
* Default: 'random' (Allowed values: deterministic, random)
|
|
2158
|
+
*/
|
|
2159
|
+
mockGenerationBehavior?: 'deterministic' | 'random';
|
|
2150
2160
|
}
|
|
2151
2161
|
export interface MockingFieldConfig {
|
|
2152
2162
|
/**
|
package/typings/config.d.ts
CHANGED
|
@@ -2118,7 +2118,11 @@ export interface LiveQueryInvalidation {
|
|
|
2118
2118
|
/**
|
|
2119
2119
|
* Path to the operation that could effect it. In a form: Mutation.something. Note that wildcard is not supported in this field.
|
|
2120
2120
|
*/
|
|
2121
|
-
field
|
|
2121
|
+
field?: string;
|
|
2122
|
+
/**
|
|
2123
|
+
* Polling interval in milliseconds
|
|
2124
|
+
*/
|
|
2125
|
+
pollingInterval?: number;
|
|
2122
2126
|
invalidate: string[];
|
|
2123
2127
|
}
|
|
2124
2128
|
export interface LiveQueryIndexBy {
|
|
@@ -2147,6 +2151,12 @@ export interface MockingConfig {
|
|
|
2147
2151
|
* The path to the code runs before the store is attached to the schema
|
|
2148
2152
|
*/
|
|
2149
2153
|
initializeStore?: any;
|
|
2154
|
+
/**
|
|
2155
|
+
* Set to `'deterministic'` if the default random mock generation behavior causes flakiness.
|
|
2156
|
+
*
|
|
2157
|
+
* Default: 'random' (Allowed values: deterministic, random)
|
|
2158
|
+
*/
|
|
2159
|
+
mockGenerationBehavior?: 'deterministic' | 'random';
|
|
2150
2160
|
}
|
|
2151
2161
|
export interface MockingFieldConfig {
|
|
2152
2162
|
/**
|