Skip to content

Commit

Permalink
Add npmignore to apollo-tools (#1613)
Browse files Browse the repository at this point in the history
* Add npmignore to apollo-tools

* update graphqltypes
  • Loading branch information
JakeDawkins authored Mar 30, 2020
1 parent 04bf842 commit 626fbae
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
test/
__tests__
.gitignore
tsconfig.json
tsconfig.test.json
14 changes: 10 additions & 4 deletions packages/apollo-language-server/src/graphqlTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,14 @@ export interface CheckPartialSchema_service_checkPartialSchema_checkSchemaResult
/**
* delta in seconds from current time that determines the start of the window
* for reported metrics included in a schema diff. A day window from the present
* day would have a \`from\` value of -86400. In rare cases, this could be an ISO
* day would have a `from` value of -86400. In rare cases, this could be an ISO
* timestamp if the user passed one in on diff creation
*/
from: any | null;
/**
* delta in seconds from current time that determines the end of the
* window for reported metrics included in a schema diff. A day window
* from the present day would have a \`to\` value of -0. In rare
* from the present day would have a `to` value of -0. In rare
* cases, this could be an ISO timestamp if the user passed one in on diff
* creation
*/
Expand Down Expand Up @@ -207,14 +207,14 @@ export interface CheckSchema_service_checkSchema_diffToPrevious_validationConfig
/**
* delta in seconds from current time that determines the start of the window
* for reported metrics included in a schema diff. A day window from the present
* day would have a \`from\` value of -86400. In rare cases, this could be an ISO
* day would have a `from` value of -86400. In rare cases, this could be an ISO
* timestamp if the user passed one in on diff creation
*/
from: any | null;
/**
* delta in seconds from current time that determines the end of the
* window for reported metrics included in a schema diff. A day window
* from the present day would have a \`to\` value of -0. In rare
* from the present day would have a `to` value of -0. In rare
* cases, this could be an ISO timestamp if the user passed one in on diff
* creation
*/
Expand Down Expand Up @@ -520,7 +520,13 @@ export interface SchemaTagsAndFieldStats_service_stats_fieldStats_metrics {

export interface SchemaTagsAndFieldStats_service_stats_fieldStats {
__typename: "ServiceFieldStatsRecord";
/**
* Dimensions of ServiceFieldStats that can be grouped by.
*/
groupBy: SchemaTagsAndFieldStats_service_stats_fieldStats_groupBy;
/**
* Metrics of ServiceFieldStats that can be aggregated over.
*/
metrics: SchemaTagsAndFieldStats_service_stats_fieldStats_metrics;
}

Expand Down
4 changes: 4 additions & 0 deletions packages/apollo-tools/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
__tests__
.gitignore
tsconfig.json
tsconfig.test.json

0 comments on commit 626fbae

Please sign in to comment.