@stigg/api-client-js 0.719.0 → 0.721.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stigg/api-client-js",
3
- "version": "0.719.0",
3
+ "version": "0.721.0",
4
4
  "license": "STIGG SDK LICENSE",
5
5
  "type": "commonjs",
6
6
  "dependencies": {
@@ -4770,11 +4770,11 @@ export declare type CancelSubscriptionUpdatesMutation = {
4770
4770
  cancelSchedule: string;
4771
4771
  };
4772
4772
  export declare type ReportUsageMutationVariables = Exact<{
4773
- input: UsageMeasurementCreateInput;
4773
+ input: ReportUsageInput;
4774
4774
  }>;
4775
4775
  export declare type ReportUsageMutation = {
4776
4776
  __typename?: 'Mutation';
4777
- createUsageMeasurement: {
4777
+ reportUsage: {
4778
4778
  __typename?: 'UsageMeasurementWithCurrentUsage';
4779
4779
  id: string;
4780
4780
  currentUsage?: number | null;
@@ -2325,8 +2325,8 @@ exports.CancelSubscriptionUpdatesDocument = (0, graphql_tag_1.default) `
2325
2325
  }
2326
2326
  `;
2327
2327
  exports.ReportUsageDocument = (0, graphql_tag_1.default) `
2328
- mutation ReportUsage($input: UsageMeasurementCreateInput!) {
2329
- createUsageMeasurement(usageMeasurement: $input) {
2328
+ mutation ReportUsage($input: ReportUsageInput!) {
2329
+ reportUsage(input: $input) {
2330
2330
  id
2331
2331
  currentUsage
2332
2332
  nextResetDate