@conduit-client/generator-ts 2.0.1 → 3.0.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.
- package/dist/types/v1/generators/bindings-generator.d.ts +10 -0
- package/dist/v1/index.js +4529 -6503
- package/dist/v1/index.js.map +1 -1
- package/package.json +7 -7
|
@@ -33,6 +33,7 @@ export declare class BindingsGenerator {
|
|
|
33
33
|
protected adapterBindingsGeneratorFactory: typeof defaultAdapterBindingsGeneratorFactory;
|
|
34
34
|
constructor(services: NamedAPIService & NamedFileService & NamedTypeDefinitionService & NamedTypeRegistryGeneratorService & NamedGraphQLTypeRegistryGeneratorService, commandModels: ICommandModel[], adapterBindingsGeneratorFactory?: typeof defaultAdapterBindingsGeneratorFactory);
|
|
35
35
|
protected adapterDeclarationSymbol: symbol;
|
|
36
|
+
protected bindingsServicesDeclarationSymbol: symbol;
|
|
36
37
|
protected serviceRequirementsSymbol: symbol;
|
|
37
38
|
protected adapterInvocationSymbol: symbol;
|
|
38
39
|
protected typeRegistryInstantiationSymbol: symbol;
|
|
@@ -65,5 +66,14 @@ export declare class BindingsGenerator {
|
|
|
65
66
|
protected buildRequirements(): Code;
|
|
66
67
|
protected get hasRESTNormalization(): boolean;
|
|
67
68
|
protected get hasGraphQL(): boolean;
|
|
69
|
+
protected get hasWireBindings(): boolean;
|
|
68
70
|
protected get hasImperativeBindings(): boolean;
|
|
71
|
+
protected get hasDefaultImperativeBindings(): boolean;
|
|
72
|
+
protected get hasQueryImperativeBindings(): boolean;
|
|
73
|
+
protected get hasSubscribableImperativeBindings(): boolean;
|
|
74
|
+
protected get hasLegacyImperativeBindings(): boolean;
|
|
75
|
+
protected get hasGraphQLImperativeBindings(): boolean;
|
|
76
|
+
protected get hasGraphQLLegacyImperativeBindings(): boolean;
|
|
77
|
+
protected get hasGraphQLMutationBindings(): boolean;
|
|
78
|
+
protected get hasGraphQLWireBindings(): boolean;
|
|
69
79
|
}
|