@promoboxx/graphql-gateway-types 1.12.0 → 1.14.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/graphql.schema.json +5 -5
- package/index.d.ts +2 -2
- package/package.json +1 -1
- package/schema.graphql +4 -4
package/graphql.schema.json
CHANGED
|
@@ -30151,8 +30151,8 @@
|
|
|
30151
30151
|
"kind": "NON_NULL",
|
|
30152
30152
|
"name": null,
|
|
30153
30153
|
"ofType": {
|
|
30154
|
-
"kind": "
|
|
30155
|
-
"name": "
|
|
30154
|
+
"kind": "SCALAR",
|
|
30155
|
+
"name": "String",
|
|
30156
30156
|
"ofType": null
|
|
30157
30157
|
}
|
|
30158
30158
|
},
|
|
@@ -30226,8 +30226,8 @@
|
|
|
30226
30226
|
"kind": "NON_NULL",
|
|
30227
30227
|
"name": null,
|
|
30228
30228
|
"ofType": {
|
|
30229
|
-
"kind": "
|
|
30230
|
-
"name": "
|
|
30229
|
+
"kind": "SCALAR",
|
|
30230
|
+
"name": "String",
|
|
30231
30231
|
"ofType": null
|
|
30232
30232
|
}
|
|
30233
30233
|
},
|
|
@@ -30319,7 +30319,7 @@
|
|
|
30319
30319
|
},
|
|
30320
30320
|
{
|
|
30321
30321
|
"name": "target_month",
|
|
30322
|
-
"description": "timestamp for the month that this goalset contains metrics for, in the format YYYY-MM-DD (currently, day will always be 1)
|
|
30322
|
+
"description": "timestamp for the month that this goalset contains metrics for, in the format YYYY-MM-DD (currently, day will always be 1).\nThis will correspond to the createdAt if this goal set was user-created.\nIf this goalset was copied from a previous month, it's targetMonth will match the month that it is actually targeting\nafter the createdAt. Basically, this is the month covered by this goalset, and createdAt can be used for metadata",
|
|
30323
30323
|
"args": [],
|
|
30324
30324
|
"type": {
|
|
30325
30325
|
"kind": "NON_NULL",
|
package/index.d.ts
CHANGED
|
@@ -3308,14 +3308,14 @@ export type GoalMetric = {
|
|
|
3308
3308
|
show_in_dashboard: Scalars['Boolean']['output'];
|
|
3309
3309
|
target: Scalars['Int']['output'];
|
|
3310
3310
|
total: Scalars['Int']['output'];
|
|
3311
|
-
type:
|
|
3311
|
+
type: Scalars['String']['output'];
|
|
3312
3312
|
};
|
|
3313
3313
|
|
|
3314
3314
|
export type GoalMetricData = {
|
|
3315
3315
|
priority: Scalars['Int']['input'];
|
|
3316
3316
|
show_in_dashboard: Scalars['Boolean']['input'];
|
|
3317
3317
|
target: Scalars['Int']['input'];
|
|
3318
|
-
type:
|
|
3318
|
+
type: Scalars['String']['input'];
|
|
3319
3319
|
};
|
|
3320
3320
|
|
|
3321
3321
|
/**
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -3187,14 +3187,14 @@ type GoalMetric {
|
|
|
3187
3187
|
show_in_dashboard: Boolean!
|
|
3188
3188
|
target: Int!
|
|
3189
3189
|
total: Int!
|
|
3190
|
-
type:
|
|
3190
|
+
type: String!
|
|
3191
3191
|
}
|
|
3192
3192
|
|
|
3193
3193
|
input GoalMetricData {
|
|
3194
3194
|
priority: Int!
|
|
3195
3195
|
show_in_dashboard: Boolean!
|
|
3196
3196
|
target: Int!
|
|
3197
|
-
type:
|
|
3197
|
+
type: String!
|
|
3198
3198
|
}
|
|
3199
3199
|
|
|
3200
3200
|
"""
|
|
@@ -3215,8 +3215,8 @@ type GoalSet {
|
|
|
3215
3215
|
id: ID!
|
|
3216
3216
|
|
|
3217
3217
|
"""
|
|
3218
|
-
timestamp for the month that this goalset contains metrics for, in the format YYYY-MM-DD (currently, day will always be 1).
|
|
3219
|
-
This will correspond to the createdAt if this goal set was user-created.
|
|
3218
|
+
timestamp for the month that this goalset contains metrics for, in the format YYYY-MM-DD (currently, day will always be 1).
|
|
3219
|
+
This will correspond to the createdAt if this goal set was user-created.
|
|
3220
3220
|
If this goalset was copied from a previous month, it's targetMonth will match the month that it is actually targeting
|
|
3221
3221
|
after the createdAt. Basically, this is the month covered by this goalset, and createdAt can be used for metadata
|
|
3222
3222
|
"""
|