@graphql-codegen/java-apollo-android 2.2.3-alpha-fc06eb8e7.0 → 2.3.0-alpha-a52c122aa.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 (3) hide show
  1. package/index.js +4 -0
  2. package/index.mjs +4 -0
  3. package/package.json +4 -4
package/index.js CHANGED
@@ -1303,6 +1303,7 @@ const preset = {
1303
1303
  },
1304
1304
  schema: options.schema,
1305
1305
  documents: [],
1306
+ cache: options.cache,
1306
1307
  },
1307
1308
  ...inputTypesDocumentNode.definitions.map((ast) => {
1308
1309
  const document = { kind: graphql.Kind.DOCUMENT, definitions: [ast] };
@@ -1317,6 +1318,7 @@ const preset = {
1317
1318
  },
1318
1319
  schema: options.schema,
1319
1320
  documents: [{ document, location: '' }],
1321
+ cache: options.cache,
1320
1322
  };
1321
1323
  }),
1322
1324
  ...operationsAst.map((ast) => {
@@ -1335,6 +1337,7 @@ const preset = {
1335
1337
  },
1336
1338
  schema: options.schema,
1337
1339
  documents: [{ document, location: '' }],
1340
+ cache: options.cache,
1338
1341
  };
1339
1342
  }),
1340
1343
  ...fragments.map((ast) => {
@@ -1350,6 +1353,7 @@ const preset = {
1350
1353
  },
1351
1354
  schema: options.schema,
1352
1355
  documents: [{ document, location: '' }],
1356
+ cache: options.cache,
1353
1357
  };
1354
1358
  }),
1355
1359
  ];
package/index.mjs CHANGED
@@ -1297,6 +1297,7 @@ const preset = {
1297
1297
  },
1298
1298
  schema: options.schema,
1299
1299
  documents: [],
1300
+ cache: options.cache,
1300
1301
  },
1301
1302
  ...inputTypesDocumentNode.definitions.map((ast) => {
1302
1303
  const document = { kind: Kind.DOCUMENT, definitions: [ast] };
@@ -1311,6 +1312,7 @@ const preset = {
1311
1312
  },
1312
1313
  schema: options.schema,
1313
1314
  documents: [{ document, location: '' }],
1315
+ cache: options.cache,
1314
1316
  };
1315
1317
  }),
1316
1318
  ...operationsAst.map((ast) => {
@@ -1329,6 +1331,7 @@ const preset = {
1329
1331
  },
1330
1332
  schema: options.schema,
1331
1333
  documents: [{ document, location: '' }],
1334
+ cache: options.cache,
1332
1335
  };
1333
1336
  }),
1334
1337
  ...fragments.map((ast) => {
@@ -1344,6 +1347,7 @@ const preset = {
1344
1347
  },
1345
1348
  schema: options.schema,
1346
1349
  documents: [{ document, location: '' }],
1350
+ cache: options.cache,
1347
1351
  };
1348
1352
  }),
1349
1353
  ];
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@graphql-codegen/java-apollo-android",
3
- "version": "2.2.3-alpha-fc06eb8e7.0",
3
+ "version": "2.3.0-alpha-a52c122aa.0",
4
4
  "description": "GraphQL Code Generator plugin for generating Java classes for Apollo-Android",
5
5
  "peerDependencies": {
6
6
  "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
7
7
  },
8
8
  "dependencies": {
9
- "@graphql-codegen/java-common": "2.1.10-alpha-fc06eb8e7.0",
10
- "@graphql-codegen/plugin-helpers": "2.4.0-alpha-fc06eb8e7.0",
11
- "@graphql-codegen/visitor-plugin-common": "2.5.3-alpha-fc06eb8e7.0",
9
+ "@graphql-codegen/java-common": "2.1.11-alpha-a52c122aa.0",
10
+ "@graphql-codegen/plugin-helpers": "2.5.0-alpha-a52c122aa.0",
11
+ "@graphql-codegen/visitor-plugin-common": "2.6.1-alpha-a52c122aa.0",
12
12
  "auto-bind": "~4.0.0",
13
13
  "change-case-all": "1.0.14",
14
14
  "pluralize": "^8.0.0",