@conduit-client/model 3.7.0 → 3.8.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 (57) hide show
  1. package/dist/types/v1/index.d.ts +2 -1
  2. package/dist/types/v1/parser/__tests__/test-utils.d.ts +433 -0
  3. package/dist/types/v1/{amf → parser/amf}/AMFAPI.d.ts +3 -5
  4. package/dist/types/v1/{amf → parser/amf}/amf-api-service.d.ts +1 -8
  5. package/dist/types/v1/{amf → parser/amf}/amf-utils.d.ts +1 -1
  6. package/dist/types/v1/{amf → parser/amf}/endpoints/amf-endpoint.d.ts +2 -2
  7. package/dist/types/v1/{amf → parser/amf}/endpoints/amf-operation.d.ts +314 -314
  8. package/dist/types/v1/{amf → parser/amf}/index.d.ts +0 -1
  9. package/dist/types/v1/{amf → parser/amf}/types/AMFAllOfType.d.ts +2 -2
  10. package/dist/types/v1/{amf → parser/amf}/types/AMFAnyType.d.ts +1 -1
  11. package/dist/types/v1/{amf → parser/amf}/types/AMFArrayType.d.ts +1 -1
  12. package/dist/types/v1/{amf → parser/amf}/types/AMFBaseType.d.ts +2 -2
  13. package/dist/types/v1/{amf → parser/amf}/types/AMFDiscriminatedObjectType.d.ts +2 -2
  14. package/dist/types/v1/{amf → parser/amf}/types/AMFEnumType.d.ts +3 -3
  15. package/dist/types/v1/{amf → parser/amf}/types/AMFNilType.d.ts +1 -1
  16. package/dist/types/v1/{amf → parser/amf}/types/AMFNotType.d.ts +3 -3
  17. package/dist/types/v1/{amf → parser/amf}/types/AMFObjectType.d.ts +1 -1
  18. package/dist/types/v1/{amf → parser/amf}/types/AMFOneOfType.d.ts +1 -1
  19. package/dist/types/v1/{amf → parser/amf}/types/AMFRefType.d.ts +1 -1
  20. package/dist/types/v1/{amf → parser/amf}/types/AMFScalarTypes.d.ts +3 -3
  21. package/dist/types/v1/parser/amf/types/__tests__/AMFOneOfType.spec.d.ts +1 -0
  22. package/dist/types/v1/parser/amf/types/__tests__/AMFScalarType.spec.d.ts +1 -0
  23. package/dist/types/v1/{amf → parser/amf}/types/factory.d.ts +2 -2
  24. package/dist/types/v1/{amf → parser/amf}/types/index.d.ts +1 -2
  25. package/dist/types/v1/parser/parser-utils.d.ts +10 -0
  26. package/dist/types/v1/parser/zod-schemas.d.ts +445 -0
  27. package/dist/v1/index.js +1847 -1819
  28. package/dist/v1/index.js.map +1 -1
  29. package/package.json +3 -3
  30. package/dist/types/v1/amf/__tests__/test-utils.d.ts +0 -211
  31. package/dist/types/v1/amf/types/annotations-schemas.d.ts +0 -172
  32. /package/dist/types/v1/{amf/types → parser}/__tests__/annotations-schemas.spec.d.ts +0 -0
  33. /package/dist/types/v1/{amf/__tests__/AMFAPI.spec.d.ts → parser/__tests__/parser-api.spec.d.ts} +0 -0
  34. /package/dist/types/v1/{amf/__tests__/amf-api-service.spec.d.ts → parser/__tests__/parser-utils.spec.d.ts} +0 -0
  35. /package/dist/types/v1/{amf/__tests__/amf-extensions-services.spec.d.ts → parser/__tests__/type-factory.spec.d.ts} +0 -0
  36. /package/dist/types/v1/{amf/__tests__/amf-extensions.spec.d.ts → parser/amf/__tests__/AMFAPI.spec.d.ts} +0 -0
  37. /package/dist/types/v1/{amf/__tests__/amf-utils.spec.d.ts → parser/amf/__tests__/amf-api-service.spec.d.ts} +0 -0
  38. /package/dist/types/v1/{amf/__tests__/parser.spec.d.ts → parser/amf/__tests__/amf-extensions-services.spec.d.ts} +0 -0
  39. /package/dist/types/v1/{amf/__tests__/validation.spec.d.ts → parser/amf/__tests__/amf-extensions.spec.d.ts} +0 -0
  40. /package/dist/types/v1/{amf/__tests__/version.spec.d.ts → parser/amf/__tests__/amf-utils.spec.d.ts} +0 -0
  41. /package/dist/types/v1/{amf/endpoints/__tests__/amf-endpoint.spec.d.ts → parser/amf/__tests__/parser.spec.d.ts} +0 -0
  42. /package/dist/types/v1/{amf/endpoints/__tests__/amf-operation.spec.d.ts → parser/amf/__tests__/validation.spec.d.ts} +0 -0
  43. /package/dist/types/v1/{amf/types/__tests__/AMFAnyType.spec.d.ts → parser/amf/__tests__/version.spec.d.ts} +0 -0
  44. /package/dist/types/v1/{amf → parser/amf}/amf-extensions.d.ts +0 -0
  45. /package/dist/types/v1/{amf/types/__tests__/AMFArrayType.spec.d.ts → parser/amf/endpoints/__tests__/amf-endpoint.spec.d.ts} +0 -0
  46. /package/dist/types/v1/{amf/types/__tests__/AMFBaseType.spec.d.ts → parser/amf/endpoints/__tests__/amf-operation.spec.d.ts} +0 -0
  47. /package/dist/types/v1/{amf → parser/amf}/parser.d.ts +0 -0
  48. /package/dist/types/v1/{amf/types/__tests__/AMFDiscriminatedObjectType.spec.d.ts → parser/amf/types/__tests__/AMFAnyType.spec.d.ts} +0 -0
  49. /package/dist/types/v1/{amf/types/__tests__/AMFEnumType.spec.d.ts → parser/amf/types/__tests__/AMFArrayType.spec.d.ts} +0 -0
  50. /package/dist/types/v1/{amf/types/__tests__/AMFNilType.spec.d.ts → parser/amf/types/__tests__/AMFBaseType.spec.d.ts} +0 -0
  51. /package/dist/types/v1/{amf/types/__tests__/AMFNotType.spec.d.ts → parser/amf/types/__tests__/AMFDiscriminatedObjectType.spec.d.ts} +0 -0
  52. /package/dist/types/v1/{amf/types/__tests__/AMFObjectType.spec.d.ts → parser/amf/types/__tests__/AMFEnumType.spec.d.ts} +0 -0
  53. /package/dist/types/v1/{amf/types/__tests__/AMFOneOfType.spec.d.ts → parser/amf/types/__tests__/AMFNilType.spec.d.ts} +0 -0
  54. /package/dist/types/v1/{amf/types/__tests__/AMFScalarType.spec.d.ts → parser/amf/types/__tests__/AMFNotType.spec.d.ts} +0 -0
  55. /package/dist/types/v1/{amf/types/__tests__/factory.spec.d.ts → parser/amf/types/__tests__/AMFObjectType.spec.d.ts} +0 -0
  56. /package/dist/types/v1/{amf → parser/amf}/validation.d.ts +0 -0
  57. /package/dist/types/v1/{amf → parser/amf}/version.d.ts +0 -0
@@ -1,12 +1,12 @@
1
1
  import { type LoggerService, type FileParserLogger } from '@conduit-client/utils';
2
2
  import { z } from 'zod';
3
3
  import type amf from 'amf-client-js';
4
- import type { BaseAuraOperation, AuraOperationWithRequestBody, BaseOperation, HttpMethod, Parameter, Payload, Request, Response, CacheStrategy, ConfigSchemaType, OperationType, ErrorStrategy, Binding, BaseHttpOperation, HttpOperationWithRequestBody, BaseGraphQLOperation } from '../../api/endpoint';
4
+ import type { BaseAuraOperation, AuraOperationWithRequestBody, BaseOperation, HttpMethod, Parameter, Payload, Request, Response, CacheStrategy, ConfigSchemaType, OperationType, ErrorStrategy, Binding, BaseHttpOperation, HttpOperationWithRequestBody, BaseGraphQLOperation } from '../../../api/endpoint';
5
5
  import type { AMFType, AMFTypeFactory } from '../types';
6
- import type { TypeRegistry } from '../../types';
6
+ import type { TypeRegistry } from '../../../types';
7
7
  import type { AmfEndPoint } from './amf-endpoint';
8
- import type { API, Server } from '../../api';
9
- import { type ResolvedOperationServices } from '../../api/service-overrides';
8
+ import type { API, Server } from '../../../api';
9
+ import { type ResolvedOperationServices } from '../../../api/service-overrides';
10
10
  export declare class OperationSchemaBuilder {
11
11
  private method;
12
12
  private operationId;
@@ -30,165 +30,165 @@ export declare class OperationSchemaBuilder {
30
30
  exposeRefresh: z.ZodDefault<z.ZodBoolean>;
31
31
  'body-param': z.ZodOptional<z.ZodString>;
32
32
  }, "strip", z.ZodTypeAny, {
33
- 'operation-type': "mutation" | "query" | "graphql";
34
- schema: "default" | "flattened";
35
33
  bindings: {
36
34
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
37
35
  identifier: string;
38
36
  }[];
37
+ 'operation-type': "mutation" | "query" | "graphql";
38
+ schema: "default" | "flattened";
39
39
  exposeRefresh: boolean;
40
40
  'body-param'?: string | undefined;
41
41
  }, {
42
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
43
- schema?: "default" | "flattened" | undefined;
44
42
  bindings?: {
45
43
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
46
44
  identifier?: string | undefined;
47
45
  }[] | undefined;
46
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
47
+ schema?: "default" | "flattened" | undefined;
48
48
  exposeRefresh?: boolean | undefined;
49
49
  'body-param'?: string | undefined;
50
50
  }>>, {
51
- 'operation-type': "mutation" | "query" | "graphql";
52
- schema: "default" | "flattened";
53
51
  bindings: {
54
52
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
55
53
  identifier: string;
56
54
  }[];
55
+ 'operation-type': "mutation" | "query" | "graphql";
56
+ schema: "default" | "flattened";
57
57
  exposeRefresh: boolean;
58
58
  'body-param'?: string | undefined;
59
59
  }, {
60
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
61
- schema?: "default" | "flattened" | undefined;
62
60
  bindings?: {
63
61
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
64
62
  identifier?: string | undefined;
65
63
  }[] | undefined;
64
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
65
+ schema?: "default" | "flattened" | undefined;
66
66
  exposeRefresh?: boolean | undefined;
67
67
  'body-param'?: string | undefined;
68
68
  } | undefined>, {
69
- 'operation-type': "mutation" | "query" | "graphql";
70
- schema: "default" | "flattened";
71
69
  bindings: {
72
70
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
73
71
  identifier: string;
74
72
  }[];
73
+ 'operation-type': "mutation" | "query" | "graphql";
74
+ schema: "default" | "flattened";
75
75
  exposeRefresh: boolean;
76
76
  'body-param'?: string | undefined;
77
77
  }, {
78
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
79
- schema?: "default" | "flattened" | undefined;
80
78
  bindings?: {
81
79
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
82
80
  identifier?: string | undefined;
83
81
  }[] | undefined;
82
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
83
+ schema?: "default" | "flattened" | undefined;
84
84
  exposeRefresh?: boolean | undefined;
85
85
  'body-param'?: string | undefined;
86
86
  } | undefined>, {
87
- 'operation-type': "mutation" | "query" | "graphql";
88
- schema: "default" | "flattened";
89
87
  bindings: {
90
88
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
91
89
  identifier: string;
92
90
  }[];
91
+ 'operation-type': "mutation" | "query" | "graphql";
92
+ schema: "default" | "flattened";
93
93
  exposeRefresh: boolean;
94
94
  'body-param'?: string | undefined;
95
95
  }, {
96
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
97
- schema?: "default" | "flattened" | undefined;
98
96
  bindings?: {
99
97
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
100
98
  identifier?: string | undefined;
101
99
  }[] | undefined;
100
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
101
+ schema?: "default" | "flattened" | undefined;
102
102
  exposeRefresh?: boolean | undefined;
103
103
  'body-param'?: string | undefined;
104
104
  } | undefined>, {
105
- 'operation-type': "mutation" | "query" | "graphql";
106
- schema: "default" | "flattened";
107
105
  bindings: {
108
106
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
109
107
  identifier: string;
110
108
  }[];
109
+ 'operation-type': "mutation" | "query" | "graphql";
110
+ schema: "default" | "flattened";
111
111
  exposeRefresh: boolean;
112
112
  'body-param'?: string | undefined;
113
113
  }, {
114
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
115
- schema?: "default" | "flattened" | undefined;
116
114
  bindings?: {
117
115
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
118
116
  identifier?: string | undefined;
119
117
  }[] | undefined;
118
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
119
+ schema?: "default" | "flattened" | undefined;
120
120
  exposeRefresh?: boolean | undefined;
121
121
  'body-param'?: string | undefined;
122
122
  } | undefined>, {
123
- 'operation-type': "mutation" | "query" | "graphql";
124
- schema: "default" | "flattened";
125
123
  bindings: {
126
124
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
127
125
  identifier: string;
128
126
  }[];
127
+ 'operation-type': "mutation" | "query" | "graphql";
128
+ schema: "default" | "flattened";
129
129
  exposeRefresh: boolean;
130
130
  'body-param'?: string | undefined;
131
131
  }, {
132
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
133
- schema?: "default" | "flattened" | undefined;
134
132
  bindings?: {
135
133
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
136
134
  identifier?: string | undefined;
137
135
  }[] | undefined;
136
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
137
+ schema?: "default" | "flattened" | undefined;
138
138
  exposeRefresh?: boolean | undefined;
139
139
  'body-param'?: string | undefined;
140
140
  } | undefined>, {
141
- 'operation-type': "mutation" | "query" | "graphql";
142
- schema: "default" | "flattened";
143
141
  bindings: {
144
142
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
145
143
  identifier: string;
146
144
  }[];
145
+ 'operation-type': "mutation" | "query" | "graphql";
146
+ schema: "default" | "flattened";
147
147
  exposeRefresh: boolean;
148
148
  'body-param'?: string | undefined;
149
149
  }, {
150
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
151
- schema?: "default" | "flattened" | undefined;
152
150
  bindings?: {
153
151
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
154
152
  identifier?: string | undefined;
155
153
  }[] | undefined;
154
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
155
+ schema?: "default" | "flattened" | undefined;
156
156
  exposeRefresh?: boolean | undefined;
157
157
  'body-param'?: string | undefined;
158
158
  } | undefined>, {
159
- 'operation-type': "mutation" | "query" | "graphql";
160
- schema: "default" | "flattened";
161
159
  bindings: {
162
160
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
163
161
  identifier: string;
164
162
  }[];
163
+ 'operation-type': "mutation" | "query" | "graphql";
164
+ schema: "default" | "flattened";
165
165
  exposeRefresh: boolean;
166
166
  'body-param'?: string | undefined;
167
167
  }, {
168
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
169
- schema?: "default" | "flattened" | undefined;
170
168
  bindings?: {
171
169
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
172
170
  identifier?: string | undefined;
173
171
  }[] | undefined;
172
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
173
+ schema?: "default" | "flattened" | undefined;
174
174
  exposeRefresh?: boolean | undefined;
175
175
  'body-param'?: string | undefined;
176
176
  } | undefined>, {
177
- 'operation-type': "mutation" | "query" | "graphql";
178
- schema: "default" | "flattened";
179
177
  bindings: {
180
178
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
181
179
  identifier: string;
182
180
  }[];
181
+ 'operation-type': "mutation" | "query" | "graphql";
182
+ schema: "default" | "flattened";
183
183
  exposeRefresh: boolean;
184
184
  'body-param'?: string | undefined;
185
185
  }, {
186
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
187
- schema?: "default" | "flattened" | undefined;
188
186
  bindings?: {
189
187
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
190
188
  identifier?: string | undefined;
191
189
  }[] | undefined;
190
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
191
+ schema?: "default" | "flattened" | undefined;
192
192
  exposeRefresh?: boolean | undefined;
193
193
  'body-param'?: string | undefined;
194
194
  } | undefined>;
@@ -325,12 +325,12 @@ export declare class OperationSchemaBuilder {
325
325
  }>]>>>;
326
326
  }, "strict", z.ZodTypeAny, {
327
327
  config: {
328
- 'operation-type': "mutation" | "query" | "graphql";
329
- schema: "default" | "flattened";
330
328
  bindings: {
331
329
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
332
330
  identifier: string;
333
331
  }[];
332
+ 'operation-type': "mutation" | "query" | "graphql";
333
+ schema: "default" | "flattened";
334
334
  exposeRefresh: boolean;
335
335
  'body-param'?: string | undefined;
336
336
  };
@@ -374,12 +374,12 @@ export declare class OperationSchemaBuilder {
374
374
  optional?: boolean | undefined;
375
375
  }> | undefined;
376
376
  config?: {
377
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
378
- schema?: "default" | "flattened" | undefined;
379
377
  bindings?: {
380
378
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
381
379
  identifier?: string | undefined;
382
380
  }[] | undefined;
381
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
382
+ schema?: "default" | "flattened" | undefined;
383
383
  exposeRefresh?: boolean | undefined;
384
384
  'body-param'?: string | undefined;
385
385
  } | undefined;
@@ -391,12 +391,12 @@ export declare class OperationSchemaBuilder {
391
391
  } | undefined;
392
392
  }>>, {
393
393
  config: {
394
- 'operation-type': "mutation" | "query" | "graphql";
395
- schema: "default" | "flattened";
396
394
  bindings: {
397
395
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
398
396
  identifier: string;
399
397
  }[];
398
+ 'operation-type': "mutation" | "query" | "graphql";
399
+ schema: "default" | "flattened";
400
400
  exposeRefresh: boolean;
401
401
  'body-param'?: string | undefined;
402
402
  };
@@ -440,12 +440,12 @@ export declare class OperationSchemaBuilder {
440
440
  optional?: boolean | undefined;
441
441
  }> | undefined;
442
442
  config?: {
443
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
444
- schema?: "default" | "flattened" | undefined;
445
443
  bindings?: {
446
444
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
447
445
  identifier?: string | undefined;
448
446
  }[] | undefined;
447
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
448
+ schema?: "default" | "flattened" | undefined;
449
449
  exposeRefresh?: boolean | undefined;
450
450
  'body-param'?: string | undefined;
451
451
  } | undefined;
@@ -457,12 +457,12 @@ export declare class OperationSchemaBuilder {
457
457
  } | undefined;
458
458
  } | undefined>, {
459
459
  config: {
460
- 'operation-type': "mutation" | "query" | "graphql";
461
- schema: "default" | "flattened";
462
460
  bindings: {
463
461
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
464
462
  identifier: string;
465
463
  }[];
464
+ 'operation-type': "mutation" | "query" | "graphql";
465
+ schema: "default" | "flattened";
466
466
  exposeRefresh: boolean;
467
467
  'body-param'?: string | undefined;
468
468
  };
@@ -506,12 +506,12 @@ export declare class OperationSchemaBuilder {
506
506
  optional?: boolean | undefined;
507
507
  }> | undefined;
508
508
  config?: {
509
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
510
- schema?: "default" | "flattened" | undefined;
511
509
  bindings?: {
512
510
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
513
511
  identifier?: string | undefined;
514
512
  }[] | undefined;
513
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
514
+ schema?: "default" | "flattened" | undefined;
515
515
  exposeRefresh?: boolean | undefined;
516
516
  'body-param'?: string | undefined;
517
517
  } | undefined;
@@ -523,12 +523,12 @@ export declare class OperationSchemaBuilder {
523
523
  } | undefined;
524
524
  } | undefined>, {
525
525
  config: {
526
- 'operation-type': "mutation" | "query" | "graphql";
527
- schema: "default" | "flattened";
528
526
  bindings: {
529
527
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
530
528
  identifier: string;
531
529
  }[];
530
+ 'operation-type': "mutation" | "query" | "graphql";
531
+ schema: "default" | "flattened";
532
532
  exposeRefresh: boolean;
533
533
  'body-param'?: string | undefined;
534
534
  };
@@ -572,12 +572,12 @@ export declare class OperationSchemaBuilder {
572
572
  optional?: boolean | undefined;
573
573
  }> | undefined;
574
574
  config?: {
575
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
576
- schema?: "default" | "flattened" | undefined;
577
575
  bindings?: {
578
576
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
579
577
  identifier?: string | undefined;
580
578
  }[] | undefined;
579
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
580
+ schema?: "default" | "flattened" | undefined;
581
581
  exposeRefresh?: boolean | undefined;
582
582
  'body-param'?: string | undefined;
583
583
  } | undefined;
@@ -589,12 +589,12 @@ export declare class OperationSchemaBuilder {
589
589
  } | undefined;
590
590
  } | undefined>, {
591
591
  config: {
592
- 'operation-type': "mutation" | "query" | "graphql";
593
- schema: "default" | "flattened";
594
592
  bindings: {
595
593
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
596
594
  identifier: string;
597
595
  }[];
596
+ 'operation-type': "mutation" | "query" | "graphql";
597
+ schema: "default" | "flattened";
598
598
  exposeRefresh: boolean;
599
599
  'body-param'?: string | undefined;
600
600
  };
@@ -638,12 +638,12 @@ export declare class OperationSchemaBuilder {
638
638
  optional?: boolean | undefined;
639
639
  }> | undefined;
640
640
  config?: {
641
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
642
- schema?: "default" | "flattened" | undefined;
643
641
  bindings?: {
644
642
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
645
643
  identifier?: string | undefined;
646
644
  }[] | undefined;
645
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
646
+ schema?: "default" | "flattened" | undefined;
647
647
  exposeRefresh?: boolean | undefined;
648
648
  'body-param'?: string | undefined;
649
649
  } | undefined;
@@ -657,12 +657,12 @@ export declare class OperationSchemaBuilder {
657
657
  }, "strip", z.ZodTypeAny, {
658
658
  onestore: {
659
659
  config: {
660
- 'operation-type': "mutation" | "query" | "graphql";
661
- schema: "default" | "flattened";
662
660
  bindings: {
663
661
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
664
662
  identifier: string;
665
663
  }[];
664
+ 'operation-type': "mutation" | "query" | "graphql";
665
+ schema: "default" | "flattened";
666
666
  exposeRefresh: boolean;
667
667
  'body-param'?: string | undefined;
668
668
  };
@@ -708,12 +708,12 @@ export declare class OperationSchemaBuilder {
708
708
  optional?: boolean | undefined;
709
709
  }> | undefined;
710
710
  config?: {
711
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
712
- schema?: "default" | "flattened" | undefined;
713
711
  bindings?: {
714
712
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
715
713
  identifier?: string | undefined;
716
714
  }[] | undefined;
715
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
716
+ schema?: "default" | "flattened" | undefined;
717
717
  exposeRefresh?: boolean | undefined;
718
718
  'body-param'?: string | undefined;
719
719
  } | undefined;
@@ -743,165 +743,165 @@ export declare class OperationSchemaBuilder {
743
743
  exposeRefresh: z.ZodDefault<z.ZodBoolean>;
744
744
  'body-param': z.ZodOptional<z.ZodString>;
745
745
  }, "strip", z.ZodTypeAny, {
746
- 'operation-type': "mutation" | "query" | "graphql";
747
- schema: "default" | "flattened";
748
746
  bindings: {
749
747
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
750
748
  identifier: string;
751
749
  }[];
750
+ 'operation-type': "mutation" | "query" | "graphql";
751
+ schema: "default" | "flattened";
752
752
  exposeRefresh: boolean;
753
753
  'body-param'?: string | undefined;
754
754
  }, {
755
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
756
- schema?: "default" | "flattened" | undefined;
757
755
  bindings?: {
758
756
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
759
757
  identifier?: string | undefined;
760
758
  }[] | undefined;
759
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
760
+ schema?: "default" | "flattened" | undefined;
761
761
  exposeRefresh?: boolean | undefined;
762
762
  'body-param'?: string | undefined;
763
763
  }>>, {
764
- 'operation-type': "mutation" | "query" | "graphql";
765
- schema: "default" | "flattened";
766
764
  bindings: {
767
765
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
768
766
  identifier: string;
769
767
  }[];
768
+ 'operation-type': "mutation" | "query" | "graphql";
769
+ schema: "default" | "flattened";
770
770
  exposeRefresh: boolean;
771
771
  'body-param'?: string | undefined;
772
772
  }, {
773
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
774
- schema?: "default" | "flattened" | undefined;
775
773
  bindings?: {
776
774
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
777
775
  identifier?: string | undefined;
778
776
  }[] | undefined;
777
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
778
+ schema?: "default" | "flattened" | undefined;
779
779
  exposeRefresh?: boolean | undefined;
780
780
  'body-param'?: string | undefined;
781
781
  } | undefined>, {
782
- 'operation-type': "mutation" | "query" | "graphql";
783
- schema: "default" | "flattened";
784
782
  bindings: {
785
783
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
786
784
  identifier: string;
787
785
  }[];
786
+ 'operation-type': "mutation" | "query" | "graphql";
787
+ schema: "default" | "flattened";
788
788
  exposeRefresh: boolean;
789
789
  'body-param'?: string | undefined;
790
790
  }, {
791
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
792
- schema?: "default" | "flattened" | undefined;
793
791
  bindings?: {
794
792
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
795
793
  identifier?: string | undefined;
796
794
  }[] | undefined;
795
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
796
+ schema?: "default" | "flattened" | undefined;
797
797
  exposeRefresh?: boolean | undefined;
798
798
  'body-param'?: string | undefined;
799
799
  } | undefined>, {
800
- 'operation-type': "mutation" | "query" | "graphql";
801
- schema: "default" | "flattened";
802
800
  bindings: {
803
801
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
804
802
  identifier: string;
805
803
  }[];
804
+ 'operation-type': "mutation" | "query" | "graphql";
805
+ schema: "default" | "flattened";
806
806
  exposeRefresh: boolean;
807
807
  'body-param'?: string | undefined;
808
808
  }, {
809
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
810
- schema?: "default" | "flattened" | undefined;
811
809
  bindings?: {
812
810
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
813
811
  identifier?: string | undefined;
814
812
  }[] | undefined;
813
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
814
+ schema?: "default" | "flattened" | undefined;
815
815
  exposeRefresh?: boolean | undefined;
816
816
  'body-param'?: string | undefined;
817
817
  } | undefined>, {
818
- 'operation-type': "mutation" | "query" | "graphql";
819
- schema: "default" | "flattened";
820
818
  bindings: {
821
819
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
822
820
  identifier: string;
823
821
  }[];
822
+ 'operation-type': "mutation" | "query" | "graphql";
823
+ schema: "default" | "flattened";
824
824
  exposeRefresh: boolean;
825
825
  'body-param'?: string | undefined;
826
826
  }, {
827
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
828
- schema?: "default" | "flattened" | undefined;
829
827
  bindings?: {
830
828
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
831
829
  identifier?: string | undefined;
832
830
  }[] | undefined;
831
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
832
+ schema?: "default" | "flattened" | undefined;
833
833
  exposeRefresh?: boolean | undefined;
834
834
  'body-param'?: string | undefined;
835
835
  } | undefined>, {
836
- 'operation-type': "mutation" | "query" | "graphql";
837
- schema: "default" | "flattened";
838
836
  bindings: {
839
837
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
840
838
  identifier: string;
841
839
  }[];
840
+ 'operation-type': "mutation" | "query" | "graphql";
841
+ schema: "default" | "flattened";
842
842
  exposeRefresh: boolean;
843
843
  'body-param'?: string | undefined;
844
844
  }, {
845
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
846
- schema?: "default" | "flattened" | undefined;
847
845
  bindings?: {
848
846
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
849
847
  identifier?: string | undefined;
850
848
  }[] | undefined;
849
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
850
+ schema?: "default" | "flattened" | undefined;
851
851
  exposeRefresh?: boolean | undefined;
852
852
  'body-param'?: string | undefined;
853
853
  } | undefined>, {
854
- 'operation-type': "mutation" | "query" | "graphql";
855
- schema: "default" | "flattened";
856
854
  bindings: {
857
855
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
858
856
  identifier: string;
859
857
  }[];
858
+ 'operation-type': "mutation" | "query" | "graphql";
859
+ schema: "default" | "flattened";
860
860
  exposeRefresh: boolean;
861
861
  'body-param'?: string | undefined;
862
862
  }, {
863
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
864
- schema?: "default" | "flattened" | undefined;
865
863
  bindings?: {
866
864
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
867
865
  identifier?: string | undefined;
868
866
  }[] | undefined;
867
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
868
+ schema?: "default" | "flattened" | undefined;
869
869
  exposeRefresh?: boolean | undefined;
870
870
  'body-param'?: string | undefined;
871
871
  } | undefined>, {
872
- 'operation-type': "mutation" | "query" | "graphql";
873
- schema: "default" | "flattened";
874
872
  bindings: {
875
873
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
876
874
  identifier: string;
877
875
  }[];
876
+ 'operation-type': "mutation" | "query" | "graphql";
877
+ schema: "default" | "flattened";
878
878
  exposeRefresh: boolean;
879
879
  'body-param'?: string | undefined;
880
880
  }, {
881
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
882
- schema?: "default" | "flattened" | undefined;
883
881
  bindings?: {
884
882
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
885
883
  identifier?: string | undefined;
886
884
  }[] | undefined;
885
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
886
+ schema?: "default" | "flattened" | undefined;
887
887
  exposeRefresh?: boolean | undefined;
888
888
  'body-param'?: string | undefined;
889
889
  } | undefined>, {
890
- 'operation-type': "mutation" | "query" | "graphql";
891
- schema: "default" | "flattened";
892
890
  bindings: {
893
891
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
894
892
  identifier: string;
895
893
  }[];
894
+ 'operation-type': "mutation" | "query" | "graphql";
895
+ schema: "default" | "flattened";
896
896
  exposeRefresh: boolean;
897
897
  'body-param'?: string | undefined;
898
898
  }, {
899
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
900
- schema?: "default" | "flattened" | undefined;
901
899
  bindings?: {
902
900
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
903
901
  identifier?: string | undefined;
904
902
  }[] | undefined;
903
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
904
+ schema?: "default" | "flattened" | undefined;
905
905
  exposeRefresh?: boolean | undefined;
906
906
  'body-param'?: string | undefined;
907
907
  } | undefined>;
@@ -1038,12 +1038,12 @@ export declare class OperationSchemaBuilder {
1038
1038
  }>]>>>;
1039
1039
  }, "strict", z.ZodTypeAny, {
1040
1040
  config: {
1041
- 'operation-type': "mutation" | "query" | "graphql";
1042
- schema: "default" | "flattened";
1043
1041
  bindings: {
1044
1042
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
1045
1043
  identifier: string;
1046
1044
  }[];
1045
+ 'operation-type': "mutation" | "query" | "graphql";
1046
+ schema: "default" | "flattened";
1047
1047
  exposeRefresh: boolean;
1048
1048
  'body-param'?: string | undefined;
1049
1049
  };
@@ -1087,12 +1087,12 @@ export declare class OperationSchemaBuilder {
1087
1087
  optional?: boolean | undefined;
1088
1088
  }> | undefined;
1089
1089
  config?: {
1090
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1091
- schema?: "default" | "flattened" | undefined;
1092
1090
  bindings?: {
1093
1091
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
1094
1092
  identifier?: string | undefined;
1095
1093
  }[] | undefined;
1094
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1095
+ schema?: "default" | "flattened" | undefined;
1096
1096
  exposeRefresh?: boolean | undefined;
1097
1097
  'body-param'?: string | undefined;
1098
1098
  } | undefined;
@@ -1104,12 +1104,12 @@ export declare class OperationSchemaBuilder {
1104
1104
  } | undefined;
1105
1105
  }>>, {
1106
1106
  config: {
1107
- 'operation-type': "mutation" | "query" | "graphql";
1108
- schema: "default" | "flattened";
1109
1107
  bindings: {
1110
1108
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
1111
1109
  identifier: string;
1112
1110
  }[];
1111
+ 'operation-type': "mutation" | "query" | "graphql";
1112
+ schema: "default" | "flattened";
1113
1113
  exposeRefresh: boolean;
1114
1114
  'body-param'?: string | undefined;
1115
1115
  };
@@ -1153,12 +1153,12 @@ export declare class OperationSchemaBuilder {
1153
1153
  optional?: boolean | undefined;
1154
1154
  }> | undefined;
1155
1155
  config?: {
1156
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1157
- schema?: "default" | "flattened" | undefined;
1158
1156
  bindings?: {
1159
1157
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
1160
1158
  identifier?: string | undefined;
1161
1159
  }[] | undefined;
1160
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1161
+ schema?: "default" | "flattened" | undefined;
1162
1162
  exposeRefresh?: boolean | undefined;
1163
1163
  'body-param'?: string | undefined;
1164
1164
  } | undefined;
@@ -1170,12 +1170,12 @@ export declare class OperationSchemaBuilder {
1170
1170
  } | undefined;
1171
1171
  } | undefined>, {
1172
1172
  config: {
1173
- 'operation-type': "mutation" | "query" | "graphql";
1174
- schema: "default" | "flattened";
1175
1173
  bindings: {
1176
1174
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
1177
1175
  identifier: string;
1178
1176
  }[];
1177
+ 'operation-type': "mutation" | "query" | "graphql";
1178
+ schema: "default" | "flattened";
1179
1179
  exposeRefresh: boolean;
1180
1180
  'body-param'?: string | undefined;
1181
1181
  };
@@ -1219,12 +1219,12 @@ export declare class OperationSchemaBuilder {
1219
1219
  optional?: boolean | undefined;
1220
1220
  }> | undefined;
1221
1221
  config?: {
1222
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1223
- schema?: "default" | "flattened" | undefined;
1224
1222
  bindings?: {
1225
1223
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
1226
1224
  identifier?: string | undefined;
1227
1225
  }[] | undefined;
1226
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1227
+ schema?: "default" | "flattened" | undefined;
1228
1228
  exposeRefresh?: boolean | undefined;
1229
1229
  'body-param'?: string | undefined;
1230
1230
  } | undefined;
@@ -1236,12 +1236,12 @@ export declare class OperationSchemaBuilder {
1236
1236
  } | undefined;
1237
1237
  } | undefined>, {
1238
1238
  config: {
1239
- 'operation-type': "mutation" | "query" | "graphql";
1240
- schema: "default" | "flattened";
1241
1239
  bindings: {
1242
1240
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
1243
1241
  identifier: string;
1244
1242
  }[];
1243
+ 'operation-type': "mutation" | "query" | "graphql";
1244
+ schema: "default" | "flattened";
1245
1245
  exposeRefresh: boolean;
1246
1246
  'body-param'?: string | undefined;
1247
1247
  };
@@ -1285,12 +1285,12 @@ export declare class OperationSchemaBuilder {
1285
1285
  optional?: boolean | undefined;
1286
1286
  }> | undefined;
1287
1287
  config?: {
1288
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1289
- schema?: "default" | "flattened" | undefined;
1290
1288
  bindings?: {
1291
1289
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
1292
1290
  identifier?: string | undefined;
1293
1291
  }[] | undefined;
1292
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1293
+ schema?: "default" | "flattened" | undefined;
1294
1294
  exposeRefresh?: boolean | undefined;
1295
1295
  'body-param'?: string | undefined;
1296
1296
  } | undefined;
@@ -1302,12 +1302,12 @@ export declare class OperationSchemaBuilder {
1302
1302
  } | undefined;
1303
1303
  } | undefined>, {
1304
1304
  config: {
1305
- 'operation-type': "mutation" | "query" | "graphql";
1306
- schema: "default" | "flattened";
1307
1305
  bindings: {
1308
1306
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
1309
1307
  identifier: string;
1310
1308
  }[];
1309
+ 'operation-type': "mutation" | "query" | "graphql";
1310
+ schema: "default" | "flattened";
1311
1311
  exposeRefresh: boolean;
1312
1312
  'body-param'?: string | undefined;
1313
1313
  };
@@ -1351,12 +1351,12 @@ export declare class OperationSchemaBuilder {
1351
1351
  optional?: boolean | undefined;
1352
1352
  }> | undefined;
1353
1353
  config?: {
1354
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1355
- schema?: "default" | "flattened" | undefined;
1356
1354
  bindings?: {
1357
1355
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
1358
1356
  identifier?: string | undefined;
1359
1357
  }[] | undefined;
1358
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1359
+ schema?: "default" | "flattened" | undefined;
1360
1360
  exposeRefresh?: boolean | undefined;
1361
1361
  'body-param'?: string | undefined;
1362
1362
  } | undefined;
@@ -1370,12 +1370,12 @@ export declare class OperationSchemaBuilder {
1370
1370
  }, "strip", z.ZodTypeAny, {
1371
1371
  onestore: {
1372
1372
  config: {
1373
- 'operation-type': "mutation" | "query" | "graphql";
1374
- schema: "default" | "flattened";
1375
1373
  bindings: {
1376
1374
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
1377
1375
  identifier: string;
1378
1376
  }[];
1377
+ 'operation-type': "mutation" | "query" | "graphql";
1378
+ schema: "default" | "flattened";
1379
1379
  exposeRefresh: boolean;
1380
1380
  'body-param'?: string | undefined;
1381
1381
  };
@@ -1421,12 +1421,12 @@ export declare class OperationSchemaBuilder {
1421
1421
  optional?: boolean | undefined;
1422
1422
  }> | undefined;
1423
1423
  config?: {
1424
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1425
- schema?: "default" | "flattened" | undefined;
1426
1424
  bindings?: {
1427
1425
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
1428
1426
  identifier?: string | undefined;
1429
1427
  }[] | undefined;
1428
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1429
+ schema?: "default" | "flattened" | undefined;
1430
1430
  exposeRefresh?: boolean | undefined;
1431
1431
  'body-param'?: string | undefined;
1432
1432
  } | undefined;
@@ -1441,12 +1441,12 @@ export declare class OperationSchemaBuilder {
1441
1441
  onestore: {
1442
1442
  config: {
1443
1443
  'body-param': string;
1444
- 'operation-type': "mutation" | "query" | "graphql";
1445
- schema: "default" | "flattened";
1446
1444
  bindings: {
1447
1445
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
1448
1446
  identifier: string;
1449
1447
  }[];
1448
+ 'operation-type': "mutation" | "query" | "graphql";
1449
+ schema: "default" | "flattened";
1450
1450
  exposeRefresh: boolean;
1451
1451
  };
1452
1452
  };
@@ -1460,12 +1460,12 @@ export declare class OperationSchemaBuilder {
1460
1460
  optional?: boolean | undefined;
1461
1461
  }> | undefined;
1462
1462
  config?: {
1463
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1464
- schema?: "default" | "flattened" | undefined;
1465
1463
  bindings?: {
1466
1464
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
1467
1465
  identifier?: string | undefined;
1468
1466
  }[] | undefined;
1467
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1468
+ schema?: "default" | "flattened" | undefined;
1469
1469
  exposeRefresh?: boolean | undefined;
1470
1470
  'body-param'?: string | undefined;
1471
1471
  } | undefined;
@@ -1495,165 +1495,165 @@ export declare class OperationSchemaBuilder {
1495
1495
  exposeRefresh: z.ZodDefault<z.ZodBoolean>;
1496
1496
  'body-param': z.ZodOptional<z.ZodString>;
1497
1497
  }, "strip", z.ZodTypeAny, {
1498
- 'operation-type': "mutation" | "query" | "graphql";
1499
- schema: "default" | "flattened";
1500
1498
  bindings: {
1501
1499
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
1502
1500
  identifier: string;
1503
1501
  }[];
1502
+ 'operation-type': "mutation" | "query" | "graphql";
1503
+ schema: "default" | "flattened";
1504
1504
  exposeRefresh: boolean;
1505
1505
  'body-param'?: string | undefined;
1506
1506
  }, {
1507
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1508
- schema?: "default" | "flattened" | undefined;
1509
1507
  bindings?: {
1510
1508
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
1511
1509
  identifier?: string | undefined;
1512
1510
  }[] | undefined;
1511
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1512
+ schema?: "default" | "flattened" | undefined;
1513
1513
  exposeRefresh?: boolean | undefined;
1514
1514
  'body-param'?: string | undefined;
1515
1515
  }>>, {
1516
- 'operation-type': "mutation" | "query" | "graphql";
1517
- schema: "default" | "flattened";
1518
1516
  bindings: {
1519
1517
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
1520
1518
  identifier: string;
1521
1519
  }[];
1520
+ 'operation-type': "mutation" | "query" | "graphql";
1521
+ schema: "default" | "flattened";
1522
1522
  exposeRefresh: boolean;
1523
1523
  'body-param'?: string | undefined;
1524
1524
  }, {
1525
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1526
- schema?: "default" | "flattened" | undefined;
1527
1525
  bindings?: {
1528
1526
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
1529
1527
  identifier?: string | undefined;
1530
1528
  }[] | undefined;
1529
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1530
+ schema?: "default" | "flattened" | undefined;
1531
1531
  exposeRefresh?: boolean | undefined;
1532
1532
  'body-param'?: string | undefined;
1533
1533
  } | undefined>, {
1534
- 'operation-type': "mutation" | "query" | "graphql";
1535
- schema: "default" | "flattened";
1536
1534
  bindings: {
1537
1535
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
1538
1536
  identifier: string;
1539
1537
  }[];
1538
+ 'operation-type': "mutation" | "query" | "graphql";
1539
+ schema: "default" | "flattened";
1540
1540
  exposeRefresh: boolean;
1541
1541
  'body-param'?: string | undefined;
1542
1542
  }, {
1543
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1544
- schema?: "default" | "flattened" | undefined;
1545
1543
  bindings?: {
1546
1544
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
1547
1545
  identifier?: string | undefined;
1548
1546
  }[] | undefined;
1547
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1548
+ schema?: "default" | "flattened" | undefined;
1549
1549
  exposeRefresh?: boolean | undefined;
1550
1550
  'body-param'?: string | undefined;
1551
1551
  } | undefined>, {
1552
- 'operation-type': "mutation" | "query" | "graphql";
1553
- schema: "default" | "flattened";
1554
1552
  bindings: {
1555
1553
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
1556
1554
  identifier: string;
1557
1555
  }[];
1556
+ 'operation-type': "mutation" | "query" | "graphql";
1557
+ schema: "default" | "flattened";
1558
1558
  exposeRefresh: boolean;
1559
1559
  'body-param'?: string | undefined;
1560
1560
  }, {
1561
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1562
- schema?: "default" | "flattened" | undefined;
1563
1561
  bindings?: {
1564
1562
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
1565
1563
  identifier?: string | undefined;
1566
1564
  }[] | undefined;
1565
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1566
+ schema?: "default" | "flattened" | undefined;
1567
1567
  exposeRefresh?: boolean | undefined;
1568
1568
  'body-param'?: string | undefined;
1569
1569
  } | undefined>, {
1570
- 'operation-type': "mutation" | "query" | "graphql";
1571
- schema: "default" | "flattened";
1572
1570
  bindings: {
1573
1571
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
1574
1572
  identifier: string;
1575
1573
  }[];
1574
+ 'operation-type': "mutation" | "query" | "graphql";
1575
+ schema: "default" | "flattened";
1576
1576
  exposeRefresh: boolean;
1577
1577
  'body-param'?: string | undefined;
1578
1578
  }, {
1579
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1580
- schema?: "default" | "flattened" | undefined;
1581
1579
  bindings?: {
1582
1580
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
1583
1581
  identifier?: string | undefined;
1584
1582
  }[] | undefined;
1583
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1584
+ schema?: "default" | "flattened" | undefined;
1585
1585
  exposeRefresh?: boolean | undefined;
1586
1586
  'body-param'?: string | undefined;
1587
1587
  } | undefined>, {
1588
- 'operation-type': "mutation" | "query" | "graphql";
1589
- schema: "default" | "flattened";
1590
1588
  bindings: {
1591
1589
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
1592
1590
  identifier: string;
1593
1591
  }[];
1592
+ 'operation-type': "mutation" | "query" | "graphql";
1593
+ schema: "default" | "flattened";
1594
1594
  exposeRefresh: boolean;
1595
1595
  'body-param'?: string | undefined;
1596
1596
  }, {
1597
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1598
- schema?: "default" | "flattened" | undefined;
1599
1597
  bindings?: {
1600
1598
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
1601
1599
  identifier?: string | undefined;
1602
1600
  }[] | undefined;
1601
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1602
+ schema?: "default" | "flattened" | undefined;
1603
1603
  exposeRefresh?: boolean | undefined;
1604
1604
  'body-param'?: string | undefined;
1605
1605
  } | undefined>, {
1606
- 'operation-type': "mutation" | "query" | "graphql";
1607
- schema: "default" | "flattened";
1608
1606
  bindings: {
1609
1607
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
1610
1608
  identifier: string;
1611
1609
  }[];
1610
+ 'operation-type': "mutation" | "query" | "graphql";
1611
+ schema: "default" | "flattened";
1612
1612
  exposeRefresh: boolean;
1613
1613
  'body-param'?: string | undefined;
1614
1614
  }, {
1615
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1616
- schema?: "default" | "flattened" | undefined;
1617
1615
  bindings?: {
1618
1616
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
1619
1617
  identifier?: string | undefined;
1620
1618
  }[] | undefined;
1619
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1620
+ schema?: "default" | "flattened" | undefined;
1621
1621
  exposeRefresh?: boolean | undefined;
1622
1622
  'body-param'?: string | undefined;
1623
1623
  } | undefined>, {
1624
- 'operation-type': "mutation" | "query" | "graphql";
1625
- schema: "default" | "flattened";
1626
1624
  bindings: {
1627
1625
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
1628
1626
  identifier: string;
1629
1627
  }[];
1628
+ 'operation-type': "mutation" | "query" | "graphql";
1629
+ schema: "default" | "flattened";
1630
1630
  exposeRefresh: boolean;
1631
1631
  'body-param'?: string | undefined;
1632
1632
  }, {
1633
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1634
- schema?: "default" | "flattened" | undefined;
1635
1633
  bindings?: {
1636
1634
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
1637
1635
  identifier?: string | undefined;
1638
1636
  }[] | undefined;
1637
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1638
+ schema?: "default" | "flattened" | undefined;
1639
1639
  exposeRefresh?: boolean | undefined;
1640
1640
  'body-param'?: string | undefined;
1641
1641
  } | undefined>, {
1642
- 'operation-type': "mutation" | "query" | "graphql";
1643
- schema: "default" | "flattened";
1644
1642
  bindings: {
1645
1643
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
1646
1644
  identifier: string;
1647
1645
  }[];
1646
+ 'operation-type': "mutation" | "query" | "graphql";
1647
+ schema: "default" | "flattened";
1648
1648
  exposeRefresh: boolean;
1649
1649
  'body-param'?: string | undefined;
1650
1650
  }, {
1651
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1652
- schema?: "default" | "flattened" | undefined;
1653
1651
  bindings?: {
1654
1652
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
1655
1653
  identifier?: string | undefined;
1656
1654
  }[] | undefined;
1655
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1656
+ schema?: "default" | "flattened" | undefined;
1657
1657
  exposeRefresh?: boolean | undefined;
1658
1658
  'body-param'?: string | undefined;
1659
1659
  } | undefined>;
@@ -1790,12 +1790,12 @@ export declare class OperationSchemaBuilder {
1790
1790
  }>]>>>;
1791
1791
  }, "strict", z.ZodTypeAny, {
1792
1792
  config: {
1793
- 'operation-type': "mutation" | "query" | "graphql";
1794
- schema: "default" | "flattened";
1795
1793
  bindings: {
1796
1794
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
1797
1795
  identifier: string;
1798
1796
  }[];
1797
+ 'operation-type': "mutation" | "query" | "graphql";
1798
+ schema: "default" | "flattened";
1799
1799
  exposeRefresh: boolean;
1800
1800
  'body-param'?: string | undefined;
1801
1801
  };
@@ -1839,12 +1839,12 @@ export declare class OperationSchemaBuilder {
1839
1839
  optional?: boolean | undefined;
1840
1840
  }> | undefined;
1841
1841
  config?: {
1842
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1843
- schema?: "default" | "flattened" | undefined;
1844
1842
  bindings?: {
1845
1843
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
1846
1844
  identifier?: string | undefined;
1847
1845
  }[] | undefined;
1846
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1847
+ schema?: "default" | "flattened" | undefined;
1848
1848
  exposeRefresh?: boolean | undefined;
1849
1849
  'body-param'?: string | undefined;
1850
1850
  } | undefined;
@@ -1856,12 +1856,12 @@ export declare class OperationSchemaBuilder {
1856
1856
  } | undefined;
1857
1857
  }>>, {
1858
1858
  config: {
1859
- 'operation-type': "mutation" | "query" | "graphql";
1860
- schema: "default" | "flattened";
1861
1859
  bindings: {
1862
1860
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
1863
1861
  identifier: string;
1864
1862
  }[];
1863
+ 'operation-type': "mutation" | "query" | "graphql";
1864
+ schema: "default" | "flattened";
1865
1865
  exposeRefresh: boolean;
1866
1866
  'body-param'?: string | undefined;
1867
1867
  };
@@ -1905,12 +1905,12 @@ export declare class OperationSchemaBuilder {
1905
1905
  optional?: boolean | undefined;
1906
1906
  }> | undefined;
1907
1907
  config?: {
1908
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1909
- schema?: "default" | "flattened" | undefined;
1910
1908
  bindings?: {
1911
1909
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
1912
1910
  identifier?: string | undefined;
1913
1911
  }[] | undefined;
1912
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1913
+ schema?: "default" | "flattened" | undefined;
1914
1914
  exposeRefresh?: boolean | undefined;
1915
1915
  'body-param'?: string | undefined;
1916
1916
  } | undefined;
@@ -1922,12 +1922,12 @@ export declare class OperationSchemaBuilder {
1922
1922
  } | undefined;
1923
1923
  } | undefined>, {
1924
1924
  config: {
1925
- 'operation-type': "mutation" | "query" | "graphql";
1926
- schema: "default" | "flattened";
1927
1925
  bindings: {
1928
1926
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
1929
1927
  identifier: string;
1930
1928
  }[];
1929
+ 'operation-type': "mutation" | "query" | "graphql";
1930
+ schema: "default" | "flattened";
1931
1931
  exposeRefresh: boolean;
1932
1932
  'body-param'?: string | undefined;
1933
1933
  };
@@ -1971,12 +1971,12 @@ export declare class OperationSchemaBuilder {
1971
1971
  optional?: boolean | undefined;
1972
1972
  }> | undefined;
1973
1973
  config?: {
1974
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1975
- schema?: "default" | "flattened" | undefined;
1976
1974
  bindings?: {
1977
1975
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
1978
1976
  identifier?: string | undefined;
1979
1977
  }[] | undefined;
1978
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
1979
+ schema?: "default" | "flattened" | undefined;
1980
1980
  exposeRefresh?: boolean | undefined;
1981
1981
  'body-param'?: string | undefined;
1982
1982
  } | undefined;
@@ -1988,12 +1988,12 @@ export declare class OperationSchemaBuilder {
1988
1988
  } | undefined;
1989
1989
  } | undefined>, {
1990
1990
  config: {
1991
- 'operation-type': "mutation" | "query" | "graphql";
1992
- schema: "default" | "flattened";
1993
1991
  bindings: {
1994
1992
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
1995
1993
  identifier: string;
1996
1994
  }[];
1995
+ 'operation-type': "mutation" | "query" | "graphql";
1996
+ schema: "default" | "flattened";
1997
1997
  exposeRefresh: boolean;
1998
1998
  'body-param'?: string | undefined;
1999
1999
  };
@@ -2037,12 +2037,12 @@ export declare class OperationSchemaBuilder {
2037
2037
  optional?: boolean | undefined;
2038
2038
  }> | undefined;
2039
2039
  config?: {
2040
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2041
- schema?: "default" | "flattened" | undefined;
2042
2040
  bindings?: {
2043
2041
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
2044
2042
  identifier?: string | undefined;
2045
2043
  }[] | undefined;
2044
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2045
+ schema?: "default" | "flattened" | undefined;
2046
2046
  exposeRefresh?: boolean | undefined;
2047
2047
  'body-param'?: string | undefined;
2048
2048
  } | undefined;
@@ -2054,12 +2054,12 @@ export declare class OperationSchemaBuilder {
2054
2054
  } | undefined;
2055
2055
  } | undefined>, {
2056
2056
  config: {
2057
- 'operation-type': "mutation" | "query" | "graphql";
2058
- schema: "default" | "flattened";
2059
2057
  bindings: {
2060
2058
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
2061
2059
  identifier: string;
2062
2060
  }[];
2061
+ 'operation-type': "mutation" | "query" | "graphql";
2062
+ schema: "default" | "flattened";
2063
2063
  exposeRefresh: boolean;
2064
2064
  'body-param'?: string | undefined;
2065
2065
  };
@@ -2103,12 +2103,12 @@ export declare class OperationSchemaBuilder {
2103
2103
  optional?: boolean | undefined;
2104
2104
  }> | undefined;
2105
2105
  config?: {
2106
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2107
- schema?: "default" | "flattened" | undefined;
2108
2106
  bindings?: {
2109
2107
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
2110
2108
  identifier?: string | undefined;
2111
2109
  }[] | undefined;
2110
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2111
+ schema?: "default" | "flattened" | undefined;
2112
2112
  exposeRefresh?: boolean | undefined;
2113
2113
  'body-param'?: string | undefined;
2114
2114
  } | undefined;
@@ -2122,12 +2122,12 @@ export declare class OperationSchemaBuilder {
2122
2122
  }, "strip", z.ZodTypeAny, {
2123
2123
  onestore: {
2124
2124
  config: {
2125
- 'operation-type': "mutation" | "query" | "graphql";
2126
- schema: "default" | "flattened";
2127
2125
  bindings: {
2128
2126
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
2129
2127
  identifier: string;
2130
2128
  }[];
2129
+ 'operation-type': "mutation" | "query" | "graphql";
2130
+ schema: "default" | "flattened";
2131
2131
  exposeRefresh: boolean;
2132
2132
  'body-param'?: string | undefined;
2133
2133
  };
@@ -2173,12 +2173,12 @@ export declare class OperationSchemaBuilder {
2173
2173
  optional?: boolean | undefined;
2174
2174
  }> | undefined;
2175
2175
  config?: {
2176
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2177
- schema?: "default" | "flattened" | undefined;
2178
2176
  bindings?: {
2179
2177
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
2180
2178
  identifier?: string | undefined;
2181
2179
  }[] | undefined;
2180
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2181
+ schema?: "default" | "flattened" | undefined;
2182
2182
  exposeRefresh?: boolean | undefined;
2183
2183
  'body-param'?: string | undefined;
2184
2184
  } | undefined;
@@ -2256,165 +2256,165 @@ export declare class OperationSchemaBuilder {
2256
2256
  exposeRefresh: z.ZodDefault<z.ZodBoolean>;
2257
2257
  'body-param': z.ZodOptional<z.ZodString>;
2258
2258
  }, "strip", z.ZodTypeAny, {
2259
- 'operation-type': "mutation" | "query" | "graphql";
2260
- schema: "default" | "flattened";
2261
2259
  bindings: {
2262
2260
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
2263
2261
  identifier: string;
2264
2262
  }[];
2263
+ 'operation-type': "mutation" | "query" | "graphql";
2264
+ schema: "default" | "flattened";
2265
2265
  exposeRefresh: boolean;
2266
2266
  'body-param'?: string | undefined;
2267
2267
  }, {
2268
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2269
- schema?: "default" | "flattened" | undefined;
2270
2268
  bindings?: {
2271
2269
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
2272
2270
  identifier?: string | undefined;
2273
2271
  }[] | undefined;
2272
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2273
+ schema?: "default" | "flattened" | undefined;
2274
2274
  exposeRefresh?: boolean | undefined;
2275
2275
  'body-param'?: string | undefined;
2276
2276
  }>>, {
2277
- 'operation-type': "mutation" | "query" | "graphql";
2278
- schema: "default" | "flattened";
2279
2277
  bindings: {
2280
2278
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
2281
2279
  identifier: string;
2282
2280
  }[];
2281
+ 'operation-type': "mutation" | "query" | "graphql";
2282
+ schema: "default" | "flattened";
2283
2283
  exposeRefresh: boolean;
2284
2284
  'body-param'?: string | undefined;
2285
2285
  }, {
2286
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2287
- schema?: "default" | "flattened" | undefined;
2288
2286
  bindings?: {
2289
2287
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
2290
2288
  identifier?: string | undefined;
2291
2289
  }[] | undefined;
2290
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2291
+ schema?: "default" | "flattened" | undefined;
2292
2292
  exposeRefresh?: boolean | undefined;
2293
2293
  'body-param'?: string | undefined;
2294
2294
  } | undefined>, {
2295
- 'operation-type': "mutation" | "query" | "graphql";
2296
- schema: "default" | "flattened";
2297
2295
  bindings: {
2298
2296
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
2299
2297
  identifier: string;
2300
2298
  }[];
2299
+ 'operation-type': "mutation" | "query" | "graphql";
2300
+ schema: "default" | "flattened";
2301
2301
  exposeRefresh: boolean;
2302
2302
  'body-param'?: string | undefined;
2303
2303
  }, {
2304
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2305
- schema?: "default" | "flattened" | undefined;
2306
2304
  bindings?: {
2307
2305
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
2308
2306
  identifier?: string | undefined;
2309
2307
  }[] | undefined;
2308
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2309
+ schema?: "default" | "flattened" | undefined;
2310
2310
  exposeRefresh?: boolean | undefined;
2311
2311
  'body-param'?: string | undefined;
2312
2312
  } | undefined>, {
2313
- 'operation-type': "mutation" | "query" | "graphql";
2314
- schema: "default" | "flattened";
2315
2313
  bindings: {
2316
2314
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
2317
2315
  identifier: string;
2318
2316
  }[];
2317
+ 'operation-type': "mutation" | "query" | "graphql";
2318
+ schema: "default" | "flattened";
2319
2319
  exposeRefresh: boolean;
2320
2320
  'body-param'?: string | undefined;
2321
2321
  }, {
2322
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2323
- schema?: "default" | "flattened" | undefined;
2324
2322
  bindings?: {
2325
2323
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
2326
2324
  identifier?: string | undefined;
2327
2325
  }[] | undefined;
2326
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2327
+ schema?: "default" | "flattened" | undefined;
2328
2328
  exposeRefresh?: boolean | undefined;
2329
2329
  'body-param'?: string | undefined;
2330
2330
  } | undefined>, {
2331
- 'operation-type': "mutation" | "query" | "graphql";
2332
- schema: "default" | "flattened";
2333
2331
  bindings: {
2334
2332
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
2335
2333
  identifier: string;
2336
2334
  }[];
2335
+ 'operation-type': "mutation" | "query" | "graphql";
2336
+ schema: "default" | "flattened";
2337
2337
  exposeRefresh: boolean;
2338
2338
  'body-param'?: string | undefined;
2339
2339
  }, {
2340
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2341
- schema?: "default" | "flattened" | undefined;
2342
2340
  bindings?: {
2343
2341
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
2344
2342
  identifier?: string | undefined;
2345
2343
  }[] | undefined;
2344
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2345
+ schema?: "default" | "flattened" | undefined;
2346
2346
  exposeRefresh?: boolean | undefined;
2347
2347
  'body-param'?: string | undefined;
2348
2348
  } | undefined>, {
2349
- 'operation-type': "mutation" | "query" | "graphql";
2350
- schema: "default" | "flattened";
2351
2349
  bindings: {
2352
2350
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
2353
2351
  identifier: string;
2354
2352
  }[];
2353
+ 'operation-type': "mutation" | "query" | "graphql";
2354
+ schema: "default" | "flattened";
2355
2355
  exposeRefresh: boolean;
2356
2356
  'body-param'?: string | undefined;
2357
2357
  }, {
2358
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2359
- schema?: "default" | "flattened" | undefined;
2360
2358
  bindings?: {
2361
2359
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
2362
2360
  identifier?: string | undefined;
2363
2361
  }[] | undefined;
2362
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2363
+ schema?: "default" | "flattened" | undefined;
2364
2364
  exposeRefresh?: boolean | undefined;
2365
2365
  'body-param'?: string | undefined;
2366
2366
  } | undefined>, {
2367
- 'operation-type': "mutation" | "query" | "graphql";
2368
- schema: "default" | "flattened";
2369
2367
  bindings: {
2370
2368
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
2371
2369
  identifier: string;
2372
2370
  }[];
2371
+ 'operation-type': "mutation" | "query" | "graphql";
2372
+ schema: "default" | "flattened";
2373
2373
  exposeRefresh: boolean;
2374
2374
  'body-param'?: string | undefined;
2375
2375
  }, {
2376
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2377
- schema?: "default" | "flattened" | undefined;
2378
2376
  bindings?: {
2379
2377
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
2380
2378
  identifier?: string | undefined;
2381
2379
  }[] | undefined;
2380
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2381
+ schema?: "default" | "flattened" | undefined;
2382
2382
  exposeRefresh?: boolean | undefined;
2383
2383
  'body-param'?: string | undefined;
2384
2384
  } | undefined>, {
2385
- 'operation-type': "mutation" | "query" | "graphql";
2386
- schema: "default" | "flattened";
2387
2385
  bindings: {
2388
2386
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
2389
2387
  identifier: string;
2390
2388
  }[];
2389
+ 'operation-type': "mutation" | "query" | "graphql";
2390
+ schema: "default" | "flattened";
2391
2391
  exposeRefresh: boolean;
2392
2392
  'body-param'?: string | undefined;
2393
2393
  }, {
2394
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2395
- schema?: "default" | "flattened" | undefined;
2396
2394
  bindings?: {
2397
2395
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
2398
2396
  identifier?: string | undefined;
2399
2397
  }[] | undefined;
2398
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2399
+ schema?: "default" | "flattened" | undefined;
2400
2400
  exposeRefresh?: boolean | undefined;
2401
2401
  'body-param'?: string | undefined;
2402
2402
  } | undefined>, {
2403
- 'operation-type': "mutation" | "query" | "graphql";
2404
- schema: "default" | "flattened";
2405
2403
  bindings: {
2406
2404
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
2407
2405
  identifier: string;
2408
2406
  }[];
2407
+ 'operation-type': "mutation" | "query" | "graphql";
2408
+ schema: "default" | "flattened";
2409
2409
  exposeRefresh: boolean;
2410
2410
  'body-param'?: string | undefined;
2411
2411
  }, {
2412
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2413
- schema?: "default" | "flattened" | undefined;
2414
2412
  bindings?: {
2415
2413
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
2416
2414
  identifier?: string | undefined;
2417
2415
  }[] | undefined;
2416
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2417
+ schema?: "default" | "flattened" | undefined;
2418
2418
  exposeRefresh?: boolean | undefined;
2419
2419
  'body-param'?: string | undefined;
2420
2420
  } | undefined>;
@@ -2551,12 +2551,12 @@ export declare class OperationSchemaBuilder {
2551
2551
  }>]>>>;
2552
2552
  }, "strict", z.ZodTypeAny, {
2553
2553
  config: {
2554
- 'operation-type': "mutation" | "query" | "graphql";
2555
- schema: "default" | "flattened";
2556
2554
  bindings: {
2557
2555
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
2558
2556
  identifier: string;
2559
2557
  }[];
2558
+ 'operation-type': "mutation" | "query" | "graphql";
2559
+ schema: "default" | "flattened";
2560
2560
  exposeRefresh: boolean;
2561
2561
  'body-param'?: string | undefined;
2562
2562
  };
@@ -2600,12 +2600,12 @@ export declare class OperationSchemaBuilder {
2600
2600
  optional?: boolean | undefined;
2601
2601
  }> | undefined;
2602
2602
  config?: {
2603
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2604
- schema?: "default" | "flattened" | undefined;
2605
2603
  bindings?: {
2606
2604
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
2607
2605
  identifier?: string | undefined;
2608
2606
  }[] | undefined;
2607
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2608
+ schema?: "default" | "flattened" | undefined;
2609
2609
  exposeRefresh?: boolean | undefined;
2610
2610
  'body-param'?: string | undefined;
2611
2611
  } | undefined;
@@ -2617,12 +2617,12 @@ export declare class OperationSchemaBuilder {
2617
2617
  } | undefined;
2618
2618
  }>>, {
2619
2619
  config: {
2620
- 'operation-type': "mutation" | "query" | "graphql";
2621
- schema: "default" | "flattened";
2622
2620
  bindings: {
2623
2621
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
2624
2622
  identifier: string;
2625
2623
  }[];
2624
+ 'operation-type': "mutation" | "query" | "graphql";
2625
+ schema: "default" | "flattened";
2626
2626
  exposeRefresh: boolean;
2627
2627
  'body-param'?: string | undefined;
2628
2628
  };
@@ -2666,12 +2666,12 @@ export declare class OperationSchemaBuilder {
2666
2666
  optional?: boolean | undefined;
2667
2667
  }> | undefined;
2668
2668
  config?: {
2669
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2670
- schema?: "default" | "flattened" | undefined;
2671
2669
  bindings?: {
2672
2670
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
2673
2671
  identifier?: string | undefined;
2674
2672
  }[] | undefined;
2673
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2674
+ schema?: "default" | "flattened" | undefined;
2675
2675
  exposeRefresh?: boolean | undefined;
2676
2676
  'body-param'?: string | undefined;
2677
2677
  } | undefined;
@@ -2683,12 +2683,12 @@ export declare class OperationSchemaBuilder {
2683
2683
  } | undefined;
2684
2684
  } | undefined>, {
2685
2685
  config: {
2686
- 'operation-type': "mutation" | "query" | "graphql";
2687
- schema: "default" | "flattened";
2688
2686
  bindings: {
2689
2687
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
2690
2688
  identifier: string;
2691
2689
  }[];
2690
+ 'operation-type': "mutation" | "query" | "graphql";
2691
+ schema: "default" | "flattened";
2692
2692
  exposeRefresh: boolean;
2693
2693
  'body-param'?: string | undefined;
2694
2694
  };
@@ -2732,12 +2732,12 @@ export declare class OperationSchemaBuilder {
2732
2732
  optional?: boolean | undefined;
2733
2733
  }> | undefined;
2734
2734
  config?: {
2735
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2736
- schema?: "default" | "flattened" | undefined;
2737
2735
  bindings?: {
2738
2736
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
2739
2737
  identifier?: string | undefined;
2740
2738
  }[] | undefined;
2739
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2740
+ schema?: "default" | "flattened" | undefined;
2741
2741
  exposeRefresh?: boolean | undefined;
2742
2742
  'body-param'?: string | undefined;
2743
2743
  } | undefined;
@@ -2749,12 +2749,12 @@ export declare class OperationSchemaBuilder {
2749
2749
  } | undefined;
2750
2750
  } | undefined>, {
2751
2751
  config: {
2752
- 'operation-type': "mutation" | "query" | "graphql";
2753
- schema: "default" | "flattened";
2754
2752
  bindings: {
2755
2753
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
2756
2754
  identifier: string;
2757
2755
  }[];
2756
+ 'operation-type': "mutation" | "query" | "graphql";
2757
+ schema: "default" | "flattened";
2758
2758
  exposeRefresh: boolean;
2759
2759
  'body-param'?: string | undefined;
2760
2760
  };
@@ -2798,12 +2798,12 @@ export declare class OperationSchemaBuilder {
2798
2798
  optional?: boolean | undefined;
2799
2799
  }> | undefined;
2800
2800
  config?: {
2801
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2802
- schema?: "default" | "flattened" | undefined;
2803
2801
  bindings?: {
2804
2802
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
2805
2803
  identifier?: string | undefined;
2806
2804
  }[] | undefined;
2805
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2806
+ schema?: "default" | "flattened" | undefined;
2807
2807
  exposeRefresh?: boolean | undefined;
2808
2808
  'body-param'?: string | undefined;
2809
2809
  } | undefined;
@@ -2815,12 +2815,12 @@ export declare class OperationSchemaBuilder {
2815
2815
  } | undefined;
2816
2816
  } | undefined>, {
2817
2817
  config: {
2818
- 'operation-type': "mutation" | "query" | "graphql";
2819
- schema: "default" | "flattened";
2820
2818
  bindings: {
2821
2819
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
2822
2820
  identifier: string;
2823
2821
  }[];
2822
+ 'operation-type': "mutation" | "query" | "graphql";
2823
+ schema: "default" | "flattened";
2824
2824
  exposeRefresh: boolean;
2825
2825
  'body-param'?: string | undefined;
2826
2826
  };
@@ -2864,12 +2864,12 @@ export declare class OperationSchemaBuilder {
2864
2864
  optional?: boolean | undefined;
2865
2865
  }> | undefined;
2866
2866
  config?: {
2867
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2868
- schema?: "default" | "flattened" | undefined;
2869
2867
  bindings?: {
2870
2868
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
2871
2869
  identifier?: string | undefined;
2872
2870
  }[] | undefined;
2871
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2872
+ schema?: "default" | "flattened" | undefined;
2873
2873
  exposeRefresh?: boolean | undefined;
2874
2874
  'body-param'?: string | undefined;
2875
2875
  } | undefined;
@@ -2883,12 +2883,12 @@ export declare class OperationSchemaBuilder {
2883
2883
  }, "strip", z.ZodTypeAny, {
2884
2884
  onestore: {
2885
2885
  config: {
2886
- 'operation-type': "mutation" | "query" | "graphql";
2887
- schema: "default" | "flattened";
2888
2886
  bindings: {
2889
2887
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
2890
2888
  identifier: string;
2891
2889
  }[];
2890
+ 'operation-type': "mutation" | "query" | "graphql";
2891
+ schema: "default" | "flattened";
2892
2892
  exposeRefresh: boolean;
2893
2893
  'body-param'?: string | undefined;
2894
2894
  };
@@ -2934,12 +2934,12 @@ export declare class OperationSchemaBuilder {
2934
2934
  optional?: boolean | undefined;
2935
2935
  }> | undefined;
2936
2936
  config?: {
2937
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2938
- schema?: "default" | "flattened" | undefined;
2939
2937
  bindings?: {
2940
2938
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
2941
2939
  identifier?: string | undefined;
2942
2940
  }[] | undefined;
2941
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
2942
+ schema?: "default" | "flattened" | undefined;
2943
2943
  exposeRefresh?: boolean | undefined;
2944
2944
  'body-param'?: string | undefined;
2945
2945
  } | undefined;
@@ -3049,12 +3049,12 @@ export declare class OperationSchemaBuilder {
3049
3049
  }>>, ({
3050
3050
  onestore: {
3051
3051
  config: {
3052
- 'operation-type': "mutation" | "query" | "graphql";
3053
- schema: "default" | "flattened";
3054
3052
  bindings: {
3055
3053
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
3056
3054
  identifier: string;
3057
3055
  }[];
3056
+ 'operation-type': "mutation" | "query" | "graphql";
3057
+ schema: "default" | "flattened";
3058
3058
  exposeRefresh: boolean;
3059
3059
  'body-param'?: string | undefined;
3060
3060
  };
@@ -3114,12 +3114,12 @@ export declare class OperationSchemaBuilder {
3114
3114
  'body-param': string | undefined;
3115
3115
  method: string;
3116
3116
  };
3117
- 'operation-type': "mutation" | "query" | "graphql";
3118
- schema: "default" | "flattened";
3119
3117
  bindings: {
3120
3118
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
3121
3119
  identifier: string;
3122
3120
  }[];
3121
+ 'operation-type': "mutation" | "query" | "graphql";
3122
+ schema: "default" | "flattened";
3123
3123
  exposeRefresh: boolean;
3124
3124
  };
3125
3125
  };
@@ -3133,12 +3133,12 @@ export declare class OperationSchemaBuilder {
3133
3133
  optional?: boolean | undefined;
3134
3134
  }> | undefined;
3135
3135
  config?: {
3136
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3137
- schema?: "default" | "flattened" | undefined;
3138
3136
  bindings?: {
3139
3137
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
3140
3138
  identifier?: string | undefined;
3141
3139
  }[] | undefined;
3140
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3141
+ schema?: "default" | "flattened" | undefined;
3142
3142
  exposeRefresh?: boolean | undefined;
3143
3143
  'body-param'?: string | undefined;
3144
3144
  } | undefined;
@@ -3184,165 +3184,165 @@ export declare class OperationSchemaBuilder {
3184
3184
  exposeRefresh: z.ZodDefault<z.ZodBoolean>;
3185
3185
  'body-param': z.ZodOptional<z.ZodString>;
3186
3186
  }, "strip", z.ZodTypeAny, {
3187
- 'operation-type': "mutation" | "query" | "graphql";
3188
- schema: "default" | "flattened";
3189
3187
  bindings: {
3190
3188
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
3191
3189
  identifier: string;
3192
3190
  }[];
3191
+ 'operation-type': "mutation" | "query" | "graphql";
3192
+ schema: "default" | "flattened";
3193
3193
  exposeRefresh: boolean;
3194
3194
  'body-param'?: string | undefined;
3195
3195
  }, {
3196
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3197
- schema?: "default" | "flattened" | undefined;
3198
3196
  bindings?: {
3199
3197
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
3200
3198
  identifier?: string | undefined;
3201
3199
  }[] | undefined;
3200
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3201
+ schema?: "default" | "flattened" | undefined;
3202
3202
  exposeRefresh?: boolean | undefined;
3203
3203
  'body-param'?: string | undefined;
3204
3204
  }>>, {
3205
- 'operation-type': "mutation" | "query" | "graphql";
3206
- schema: "default" | "flattened";
3207
3205
  bindings: {
3208
3206
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
3209
3207
  identifier: string;
3210
3208
  }[];
3209
+ 'operation-type': "mutation" | "query" | "graphql";
3210
+ schema: "default" | "flattened";
3211
3211
  exposeRefresh: boolean;
3212
3212
  'body-param'?: string | undefined;
3213
3213
  }, {
3214
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3215
- schema?: "default" | "flattened" | undefined;
3216
3214
  bindings?: {
3217
3215
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
3218
3216
  identifier?: string | undefined;
3219
3217
  }[] | undefined;
3218
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3219
+ schema?: "default" | "flattened" | undefined;
3220
3220
  exposeRefresh?: boolean | undefined;
3221
3221
  'body-param'?: string | undefined;
3222
3222
  } | undefined>, {
3223
- 'operation-type': "mutation" | "query" | "graphql";
3224
- schema: "default" | "flattened";
3225
3223
  bindings: {
3226
3224
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
3227
3225
  identifier: string;
3228
3226
  }[];
3227
+ 'operation-type': "mutation" | "query" | "graphql";
3228
+ schema: "default" | "flattened";
3229
3229
  exposeRefresh: boolean;
3230
3230
  'body-param'?: string | undefined;
3231
3231
  }, {
3232
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3233
- schema?: "default" | "flattened" | undefined;
3234
3232
  bindings?: {
3235
3233
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
3236
3234
  identifier?: string | undefined;
3237
3235
  }[] | undefined;
3236
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3237
+ schema?: "default" | "flattened" | undefined;
3238
3238
  exposeRefresh?: boolean | undefined;
3239
3239
  'body-param'?: string | undefined;
3240
3240
  } | undefined>, {
3241
- 'operation-type': "mutation" | "query" | "graphql";
3242
- schema: "default" | "flattened";
3243
3241
  bindings: {
3244
3242
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
3245
3243
  identifier: string;
3246
3244
  }[];
3245
+ 'operation-type': "mutation" | "query" | "graphql";
3246
+ schema: "default" | "flattened";
3247
3247
  exposeRefresh: boolean;
3248
3248
  'body-param'?: string | undefined;
3249
3249
  }, {
3250
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3251
- schema?: "default" | "flattened" | undefined;
3252
3250
  bindings?: {
3253
3251
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
3254
3252
  identifier?: string | undefined;
3255
3253
  }[] | undefined;
3254
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3255
+ schema?: "default" | "flattened" | undefined;
3256
3256
  exposeRefresh?: boolean | undefined;
3257
3257
  'body-param'?: string | undefined;
3258
3258
  } | undefined>, {
3259
- 'operation-type': "mutation" | "query" | "graphql";
3260
- schema: "default" | "flattened";
3261
3259
  bindings: {
3262
3260
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
3263
3261
  identifier: string;
3264
3262
  }[];
3263
+ 'operation-type': "mutation" | "query" | "graphql";
3264
+ schema: "default" | "flattened";
3265
3265
  exposeRefresh: boolean;
3266
3266
  'body-param'?: string | undefined;
3267
3267
  }, {
3268
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3269
- schema?: "default" | "flattened" | undefined;
3270
3268
  bindings?: {
3271
3269
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
3272
3270
  identifier?: string | undefined;
3273
3271
  }[] | undefined;
3272
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3273
+ schema?: "default" | "flattened" | undefined;
3274
3274
  exposeRefresh?: boolean | undefined;
3275
3275
  'body-param'?: string | undefined;
3276
3276
  } | undefined>, {
3277
- 'operation-type': "mutation" | "query" | "graphql";
3278
- schema: "default" | "flattened";
3279
3277
  bindings: {
3280
3278
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
3281
3279
  identifier: string;
3282
3280
  }[];
3281
+ 'operation-type': "mutation" | "query" | "graphql";
3282
+ schema: "default" | "flattened";
3283
3283
  exposeRefresh: boolean;
3284
3284
  'body-param'?: string | undefined;
3285
3285
  }, {
3286
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3287
- schema?: "default" | "flattened" | undefined;
3288
3286
  bindings?: {
3289
3287
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
3290
3288
  identifier?: string | undefined;
3291
3289
  }[] | undefined;
3290
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3291
+ schema?: "default" | "flattened" | undefined;
3292
3292
  exposeRefresh?: boolean | undefined;
3293
3293
  'body-param'?: string | undefined;
3294
3294
  } | undefined>, {
3295
- 'operation-type': "mutation" | "query" | "graphql";
3296
- schema: "default" | "flattened";
3297
3295
  bindings: {
3298
3296
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
3299
3297
  identifier: string;
3300
3298
  }[];
3299
+ 'operation-type': "mutation" | "query" | "graphql";
3300
+ schema: "default" | "flattened";
3301
3301
  exposeRefresh: boolean;
3302
3302
  'body-param'?: string | undefined;
3303
3303
  }, {
3304
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3305
- schema?: "default" | "flattened" | undefined;
3306
3304
  bindings?: {
3307
3305
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
3308
3306
  identifier?: string | undefined;
3309
3307
  }[] | undefined;
3308
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3309
+ schema?: "default" | "flattened" | undefined;
3310
3310
  exposeRefresh?: boolean | undefined;
3311
3311
  'body-param'?: string | undefined;
3312
3312
  } | undefined>, {
3313
- 'operation-type': "mutation" | "query" | "graphql";
3314
- schema: "default" | "flattened";
3315
3313
  bindings: {
3316
3314
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
3317
3315
  identifier: string;
3318
3316
  }[];
3317
+ 'operation-type': "mutation" | "query" | "graphql";
3318
+ schema: "default" | "flattened";
3319
3319
  exposeRefresh: boolean;
3320
3320
  'body-param'?: string | undefined;
3321
3321
  }, {
3322
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3323
- schema?: "default" | "flattened" | undefined;
3324
3322
  bindings?: {
3325
3323
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
3326
3324
  identifier?: string | undefined;
3327
3325
  }[] | undefined;
3326
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3327
+ schema?: "default" | "flattened" | undefined;
3328
3328
  exposeRefresh?: boolean | undefined;
3329
3329
  'body-param'?: string | undefined;
3330
3330
  } | undefined>, {
3331
- 'operation-type': "mutation" | "query" | "graphql";
3332
- schema: "default" | "flattened";
3333
3331
  bindings: {
3334
3332
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
3335
3333
  identifier: string;
3336
3334
  }[];
3335
+ 'operation-type': "mutation" | "query" | "graphql";
3336
+ schema: "default" | "flattened";
3337
3337
  exposeRefresh: boolean;
3338
3338
  'body-param'?: string | undefined;
3339
3339
  }, {
3340
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3341
- schema?: "default" | "flattened" | undefined;
3342
3340
  bindings?: {
3343
3341
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
3344
3342
  identifier?: string | undefined;
3345
3343
  }[] | undefined;
3344
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3345
+ schema?: "default" | "flattened" | undefined;
3346
3346
  exposeRefresh?: boolean | undefined;
3347
3347
  'body-param'?: string | undefined;
3348
3348
  } | undefined>;
@@ -3479,12 +3479,12 @@ export declare class OperationSchemaBuilder {
3479
3479
  }>]>>>;
3480
3480
  }, "strict", z.ZodTypeAny, {
3481
3481
  config: {
3482
- 'operation-type': "mutation" | "query" | "graphql";
3483
- schema: "default" | "flattened";
3484
3482
  bindings: {
3485
3483
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
3486
3484
  identifier: string;
3487
3485
  }[];
3486
+ 'operation-type': "mutation" | "query" | "graphql";
3487
+ schema: "default" | "flattened";
3488
3488
  exposeRefresh: boolean;
3489
3489
  'body-param'?: string | undefined;
3490
3490
  };
@@ -3528,12 +3528,12 @@ export declare class OperationSchemaBuilder {
3528
3528
  optional?: boolean | undefined;
3529
3529
  }> | undefined;
3530
3530
  config?: {
3531
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3532
- schema?: "default" | "flattened" | undefined;
3533
3531
  bindings?: {
3534
3532
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
3535
3533
  identifier?: string | undefined;
3536
3534
  }[] | undefined;
3535
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3536
+ schema?: "default" | "flattened" | undefined;
3537
3537
  exposeRefresh?: boolean | undefined;
3538
3538
  'body-param'?: string | undefined;
3539
3539
  } | undefined;
@@ -3545,12 +3545,12 @@ export declare class OperationSchemaBuilder {
3545
3545
  } | undefined;
3546
3546
  }>>, {
3547
3547
  config: {
3548
- 'operation-type': "mutation" | "query" | "graphql";
3549
- schema: "default" | "flattened";
3550
3548
  bindings: {
3551
3549
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
3552
3550
  identifier: string;
3553
3551
  }[];
3552
+ 'operation-type': "mutation" | "query" | "graphql";
3553
+ schema: "default" | "flattened";
3554
3554
  exposeRefresh: boolean;
3555
3555
  'body-param'?: string | undefined;
3556
3556
  };
@@ -3594,12 +3594,12 @@ export declare class OperationSchemaBuilder {
3594
3594
  optional?: boolean | undefined;
3595
3595
  }> | undefined;
3596
3596
  config?: {
3597
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3598
- schema?: "default" | "flattened" | undefined;
3599
3597
  bindings?: {
3600
3598
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
3601
3599
  identifier?: string | undefined;
3602
3600
  }[] | undefined;
3601
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3602
+ schema?: "default" | "flattened" | undefined;
3603
3603
  exposeRefresh?: boolean | undefined;
3604
3604
  'body-param'?: string | undefined;
3605
3605
  } | undefined;
@@ -3611,12 +3611,12 @@ export declare class OperationSchemaBuilder {
3611
3611
  } | undefined;
3612
3612
  } | undefined>, {
3613
3613
  config: {
3614
- 'operation-type': "mutation" | "query" | "graphql";
3615
- schema: "default" | "flattened";
3616
3614
  bindings: {
3617
3615
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
3618
3616
  identifier: string;
3619
3617
  }[];
3618
+ 'operation-type': "mutation" | "query" | "graphql";
3619
+ schema: "default" | "flattened";
3620
3620
  exposeRefresh: boolean;
3621
3621
  'body-param'?: string | undefined;
3622
3622
  };
@@ -3660,12 +3660,12 @@ export declare class OperationSchemaBuilder {
3660
3660
  optional?: boolean | undefined;
3661
3661
  }> | undefined;
3662
3662
  config?: {
3663
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3664
- schema?: "default" | "flattened" | undefined;
3665
3663
  bindings?: {
3666
3664
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
3667
3665
  identifier?: string | undefined;
3668
3666
  }[] | undefined;
3667
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3668
+ schema?: "default" | "flattened" | undefined;
3669
3669
  exposeRefresh?: boolean | undefined;
3670
3670
  'body-param'?: string | undefined;
3671
3671
  } | undefined;
@@ -3677,12 +3677,12 @@ export declare class OperationSchemaBuilder {
3677
3677
  } | undefined;
3678
3678
  } | undefined>, {
3679
3679
  config: {
3680
- 'operation-type': "mutation" | "query" | "graphql";
3681
- schema: "default" | "flattened";
3682
3680
  bindings: {
3683
3681
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
3684
3682
  identifier: string;
3685
3683
  }[];
3684
+ 'operation-type': "mutation" | "query" | "graphql";
3685
+ schema: "default" | "flattened";
3686
3686
  exposeRefresh: boolean;
3687
3687
  'body-param'?: string | undefined;
3688
3688
  };
@@ -3726,12 +3726,12 @@ export declare class OperationSchemaBuilder {
3726
3726
  optional?: boolean | undefined;
3727
3727
  }> | undefined;
3728
3728
  config?: {
3729
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3730
- schema?: "default" | "flattened" | undefined;
3731
3729
  bindings?: {
3732
3730
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
3733
3731
  identifier?: string | undefined;
3734
3732
  }[] | undefined;
3733
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3734
+ schema?: "default" | "flattened" | undefined;
3735
3735
  exposeRefresh?: boolean | undefined;
3736
3736
  'body-param'?: string | undefined;
3737
3737
  } | undefined;
@@ -3743,12 +3743,12 @@ export declare class OperationSchemaBuilder {
3743
3743
  } | undefined;
3744
3744
  } | undefined>, {
3745
3745
  config: {
3746
- 'operation-type': "mutation" | "query" | "graphql";
3747
- schema: "default" | "flattened";
3748
3746
  bindings: {
3749
3747
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
3750
3748
  identifier: string;
3751
3749
  }[];
3750
+ 'operation-type': "mutation" | "query" | "graphql";
3751
+ schema: "default" | "flattened";
3752
3752
  exposeRefresh: boolean;
3753
3753
  'body-param'?: string | undefined;
3754
3754
  };
@@ -3792,12 +3792,12 @@ export declare class OperationSchemaBuilder {
3792
3792
  optional?: boolean | undefined;
3793
3793
  }> | undefined;
3794
3794
  config?: {
3795
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3796
- schema?: "default" | "flattened" | undefined;
3797
3795
  bindings?: {
3798
3796
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
3799
3797
  identifier?: string | undefined;
3800
3798
  }[] | undefined;
3799
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3800
+ schema?: "default" | "flattened" | undefined;
3801
3801
  exposeRefresh?: boolean | undefined;
3802
3802
  'body-param'?: string | undefined;
3803
3803
  } | undefined;
@@ -3811,12 +3811,12 @@ export declare class OperationSchemaBuilder {
3811
3811
  }, "strip", z.ZodTypeAny, {
3812
3812
  onestore: {
3813
3813
  config: {
3814
- 'operation-type': "mutation" | "query" | "graphql";
3815
- schema: "default" | "flattened";
3816
3814
  bindings: {
3817
3815
  type: "wire" | "imperative" | "imperative-legacy" | "mutation";
3818
3816
  identifier: string;
3819
3817
  }[];
3818
+ 'operation-type': "mutation" | "query" | "graphql";
3819
+ schema: "default" | "flattened";
3820
3820
  exposeRefresh: boolean;
3821
3821
  'body-param'?: string | undefined;
3822
3822
  };
@@ -3862,12 +3862,12 @@ export declare class OperationSchemaBuilder {
3862
3862
  optional?: boolean | undefined;
3863
3863
  }> | undefined;
3864
3864
  config?: {
3865
- 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3866
- schema?: "default" | "flattened" | undefined;
3867
3865
  bindings?: {
3868
3866
  type?: "wire" | "imperative" | "imperative-legacy" | "mutation" | undefined;
3869
3867
  identifier?: string | undefined;
3870
3868
  }[] | undefined;
3869
+ 'operation-type'?: "mutation" | "query" | "graphql" | undefined;
3870
+ schema?: "default" | "flattened" | undefined;
3871
3871
  exposeRefresh?: boolean | undefined;
3872
3872
  'body-param'?: string | undefined;
3873
3873
  } | undefined;