@arrowsphere/api-client 3.69.0 → 3.69.1

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/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
4
4
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5
5
 
6
+ ## [3.69.1] - 2023-11-23
7
+
8
+ ### Fixed
9
+ - Fixed the bad schema for ExtraDataType
10
+
11
+
6
12
  ## [3.69.0] - 2023-11-23
7
13
 
8
14
  ### Changed
@@ -1,5 +1,5 @@
1
1
  import { Merge, Schema } from 'type-fest';
2
- import { AccountType, CheckType, FilterValuesType, MonthlyTrendAggType, WellArchitectedPeriodType, RegistrationType, StandardAggType, StandardType, EndCustomerByDateAggType, AccountByDateAggType, CheckAggType, WellArchitectedPaginationType, ScoreByDateAggType, StandardWithCheckType, ChecksByStandardType, CheckByDateType, EndCustomerAggType, SeverityAggType, AccountAggType, StandardByDateAggType, ScoresAggType, ScoreByMonthAggType, ScoreByMonthSeverityType, SeverityByDateAggType, MarketplaceAggType, MarketplaceByDateAggType, MarketplacePartnerAggType, MarketplacePartnerAggByDateAggType, CheckCountByDateAggType, PartnerByDateAggType, PartnerAggType, UnregisteredOfferIaasSubscriptionType, UnregisteredOfferIaasType, UnregisteredOfferSaasType, UnregisteredEndCustomerAggType } from './wellArchitectedGraphQLTypes';
2
+ import { AccountAggType, AccountByDateAggType, AccountType, CheckAggType, CheckByDateType, CheckCountByDateAggType, ChecksByStandardType, CheckType, EndCustomerAggType, EndCustomerByDateAggType, ExtraDataType, FilterValuesType, MarketplaceAggType, MarketplaceByDateAggType, MarketplacePartnerAggByDateAggType, MarketplacePartnerAggType, MonthlyTrendAggType, PartnerAggType, PartnerByDateAggType, RegistrationType, ScoreByDateAggType, ScoreByMonthAggType, ScoreByMonthSeverityType, ScoresAggType, SeverityAggType, SeverityByDateAggType, StandardAggType, StandardByDateAggType, StandardType, StandardWithCheckType, UnregisteredEndCustomerAggType, UnregisteredOfferIaasSubscriptionType, UnregisteredOfferIaasType, UnregisteredOfferSaasType, WellArchitectedPaginationType, WellArchitectedPeriodType } from './wellArchitectedGraphQLTypes';
3
3
  declare type MissingFieldsOfScoreByMonthAggSchema = {
4
4
  severities: Schema<ScoreByMonthSeverityType, boolean>;
5
5
  };
@@ -91,9 +91,14 @@ declare type MissingFieldsInScoresAggSchema = {
91
91
  scores?: ScoreByDateAggSchema;
92
92
  };
93
93
  export declare type ScoresAggSchema = Merge<Schema<ScoresAggType, boolean>, MissingFieldsInScoresAggSchema>;
94
- declare type CheckByDateSchema = Schema<CheckByDateType, boolean>;
94
+ declare type ExtraDataSchema = Schema<ExtraDataType, boolean>;
95
+ declare type MissingFieldsInCheckByDateSchema = {
96
+ extraData?: ExtraDataSchema;
97
+ };
98
+ declare type CheckByDateSchema = Merge<Schema<CheckByDateType, boolean>, MissingFieldsInCheckByDateSchema>;
95
99
  declare type MissingFieldsInChecksByStandardSchema = {
96
100
  data?: CheckByDateSchema;
101
+ last?: CheckByDateSchema;
97
102
  };
98
103
  declare type ChecksByStandardSchema = Merge<Schema<ChecksByStandardType, boolean>, MissingFieldsInChecksByStandardSchema>;
99
104
  declare type MissingFieldsInStandardWithCheckSchema = {
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "https://github.com/ArrowSphere/nodejs-api-client.git"
6
6
  },
7
- "version": "3.69.0",
7
+ "version": "3.69.1",
8
8
  "description": "Node.js client for ArrowSphere's public API",
9
9
  "main": "build/index.js",
10
10
  "types": "build/index.d.ts",