@arrowsphere/api-client 3.52.1-rc.bdj.1 → 3.53.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.
Files changed (47) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/build/catalog/catalogGraphQLClient.d.ts +3 -1
  3. package/build/catalog/catalogGraphQLClient.js +20 -0
  4. package/build/catalog/types/FindOneProductQueryOutput.d.ts +7 -1
  5. package/build/catalog/types/catalogGraphQLQueries.d.ts +10 -2
  6. package/build/catalog/types/catalogGraphQLSchemas.d.ts +3 -1
  7. package/build/catalog/types/catalogGraphQLTypes.d.ts +16 -0
  8. package/build/catalog/types/queryProductArguments.d.ts +16 -0
  9. package/build/graphqlApi/types/entities/partnertag.d.ts +0 -1
  10. package/build/publicGraphQLClient.d.ts +2 -0
  11. package/build/publicGraphQLClient.js +6 -0
  12. package/build/securityScore/entities/getAdminData.d.ts +16 -0
  13. package/build/securityScore/entities/getAdminData.js +8 -0
  14. package/build/securityScore/entities/getCustomerAccountData.d.ts +16 -0
  15. package/build/securityScore/entities/getCustomerAccountData.js +8 -0
  16. package/build/securityScore/entities/getCustomerData.d.ts +16 -0
  17. package/build/securityScore/entities/getCustomerData.js +8 -0
  18. package/build/securityScore/entities/getPartnerData.d.ts +16 -0
  19. package/build/securityScore/entities/getPartnerData.js +8 -0
  20. package/build/securityScore/securityScoreGraphQLClient.d.ts +4 -0
  21. package/build/securityScore/securityScoreGraphQLClient.js +4 -0
  22. package/build/securityScore/types/queryArguments.d.ts +4 -0
  23. package/build/securityScore/types/queryArguments.js +4 -0
  24. package/build/securityScore/types/securityScoreGraphQLQueries.d.ts +16 -0
  25. package/build/securityScore/types/securityScoreGraphQLSchemas.d.ts +64 -0
  26. package/build/securityScore/types/securityScoreGraphQLTypes.d.ts +188 -0
  27. package/build/wellArchitected/entities/getAdminData.d.ts +42 -0
  28. package/build/wellArchitected/entities/getAdminData.js +95 -0
  29. package/build/wellArchitected/entities/getCustomerAccountData.d.ts +42 -0
  30. package/build/wellArchitected/entities/getCustomerAccountData.js +96 -0
  31. package/build/wellArchitected/entities/getCustomerData.d.ts +45 -0
  32. package/build/wellArchitected/entities/getCustomerData.js +103 -0
  33. package/build/wellArchitected/entities/getPartnerData.d.ts +42 -0
  34. package/build/wellArchitected/entities/getPartnerData.js +95 -0
  35. package/build/wellArchitected/index.d.ts +8 -0
  36. package/build/wellArchitected/index.js +25 -0
  37. package/build/wellArchitected/types/queryArguments.d.ts +109 -0
  38. package/build/wellArchitected/types/queryArguments.js +94 -0
  39. package/build/wellArchitected/types/wellArchitectedGraphQLQueries.d.ts +75 -0
  40. package/build/wellArchitected/types/wellArchitectedGraphQLQueries.js +8 -0
  41. package/build/wellArchitected/types/wellArchitectedGraphQLSchemas.d.ts +125 -0
  42. package/build/wellArchitected/types/wellArchitectedGraphQLSchemas.js +3 -0
  43. package/build/wellArchitected/types/wellArchitectedGraphQLTypes.d.ts +339 -0
  44. package/build/wellArchitected/types/wellArchitectedGraphQLTypes.js +3 -0
  45. package/build/wellArchitected/wellArchitectedGraphQLClient.d.ts +21 -0
  46. package/build/wellArchitected/wellArchitectedGraphQLClient.js +65 -0
  47. package/package.json +1 -1
@@ -0,0 +1,109 @@
1
+ /**
2
+ * For field __args
3
+ */
4
+ export declare enum OperatorArgument {
5
+ OR = "OR",
6
+ AND = "AND",
7
+ BETWEEN = "BETWEEN"
8
+ }
9
+ export declare enum PeriodInputFields {
10
+ FROM = "from",
11
+ TO = "to"
12
+ }
13
+ export declare enum PaginateFields {
14
+ PAGE = "page",
15
+ PER_PAGE = "perPage"
16
+ }
17
+ export declare enum SearchBodyFields {
18
+ FILTERS = "filters",
19
+ EXCLUSION_FILTERS = "exclusionFilters",
20
+ SORT = "sort",
21
+ SUBSCRIPTION_REFERENCE = "subscriptionReference",
22
+ MARKETPLACE = "marketplace",
23
+ MONTHLY_TREND_PERIOD = "monthlyTrendPeriod",
24
+ PERIOD = "period"
25
+ }
26
+ export declare enum SearchFilterFields {
27
+ NAMES = "names",
28
+ VALUES = "values",
29
+ OPERATOR = "operator",
30
+ FILTERS = "filters"
31
+ }
32
+ export declare enum SearchFilterValues {
33
+ ACCOUNT = "account",
34
+ ACCOUNT_ID = "account.id",
35
+ ACCOUNT_REFERENCE = "account.reference",
36
+ ACCOUNT_NAME = "account.name",
37
+ ACCOUNT_STANDARDS = "account.standards",
38
+ ACCOUNT_STANDARDS_REFERENCE = "account.standards.reference",
39
+ ACCOUNT_STANDARDS_NAME = "account.standards.name",
40
+ ACCOUNT_STANDARDS_TOTAL = "account.standards.total",
41
+ ACCOUNT_STANDARDS_PASSED = "account.standards.passed",
42
+ ACCOUNT_STANDARDS_FAILED = "account.standards.failed",
43
+ ACCOUNT_STANDARDS_SCORE = "account.standards.score",
44
+ ACCOUNT_STANDARDS_MAX_SCORE = "account.standards.maxScore",
45
+ ACCOUNT_STANDARDS_CHECKS = "account.standards.checks",
46
+ ACCOUNT_STANDARDS_CHECKS_ID = "account.standards.checks.id",
47
+ ACCOUNT_STANDARDS_CHECKS_REFERENCE = "account.standards.checks.reference",
48
+ ACCOUNT_STANDARDS_CHECKS_NAME = "account.standards.checks.name",
49
+ ACCOUNT_STANDARDS_CHECKS_DESCRIPTION = "account.standards.checks.description",
50
+ ACCOUNT_STANDARDS_CHECKS_SEVERITY = "account.standards.checks.severity",
51
+ ACCOUNT_STANDARDS_CHECKS_PROCESSED = "account.standards.checks.processed",
52
+ ACCOUNT_STANDARDS_CHECKS_FLAGGED = "account.standards.checks.flagged",
53
+ ACCOUNT_STANDARDS_CHECKS_IS_FAILED = "account.standards.checks.isFailed",
54
+ ACCOUNT_STANDARDS_CHECKS_SCORE = "account.standards.checks.score",
55
+ ACCOUNT_FAILED = "account.failed",
56
+ ACCOUNT_PASSED = "account.passed",
57
+ ACCOUNT_SCORE = "account.score",
58
+ ACCOUNT_TOTAL = "account.total",
59
+ REGISTRATION = "registration",
60
+ REGISTRATION_ACCOUNT_REFERENCE = "registration.accountReference",
61
+ REGISTRATION_SUBSCRIPTION_REFERENCE = "registration.subscription.reference",
62
+ REGISTRATION_CUSTOMER_ID = "registration.customer.id",
63
+ REGISTRATION_CUSTOMER_NAME = "registration.customer.name",
64
+ REGISTRATION_CUSTOMER_REFERENCE = "registration.customer.reference",
65
+ REGISTRATION_RESELLER_ID = "registration.reseller.id",
66
+ REGISTRATION_RESELLER_NAME = "registration.reseller.name",
67
+ REGISTRATION_RESELLER_REFERENCE = "registration.reseller.reference",
68
+ REGISTRATION_VENDOR_CODE = "registration.vendorCode",
69
+ REGISTRATION_MARKETPLACE = "registration.marketplace",
70
+ UPDATED_AT = "updatedAt",
71
+ UPDATED_BY = "updatedBy"
72
+ }
73
+ export declare enum SortFields {
74
+ NAME = "name",
75
+ ORDER = "order"
76
+ }
77
+ export declare enum WellArchitectedQueries {
78
+ GET_ADMIN_DATA = "getAdminData",
79
+ GET_PARTNER_DATA = "getPartnerData",
80
+ GET_CUSTOMER_DATA = "getCustomerData",
81
+ GET_CUSTOMER_ACCOUNT_DATA = "getCustomerAccountData"
82
+ }
83
+ export declare type PaginateArgument = {
84
+ [PaginateFields.PAGE]?: number;
85
+ [PaginateFields.PER_PAGE]?: number;
86
+ };
87
+ export declare type SearchBodyArgument = {
88
+ [SearchBodyFields.EXCLUSION_FILTERS]?: SearchFilterArgument[];
89
+ [SearchBodyFields.FILTERS]?: SearchFilterArgument[];
90
+ [SearchBodyFields.MARKETPLACE]?: string[][];
91
+ [SearchBodyFields.MONTHLY_TREND_PERIOD]?: PeriodInputArgument;
92
+ [SearchBodyFields.PERIOD]?: PeriodInputArgument;
93
+ [SearchBodyFields.SORT]?: SortArgument[];
94
+ [SearchBodyFields.SUBSCRIPTION_REFERENCE]?: string[][];
95
+ };
96
+ export declare type PeriodInputArgument = {
97
+ [PeriodInputFields.FROM]: string;
98
+ [PeriodInputFields.TO]: string;
99
+ };
100
+ export declare type SearchFilterArgument = {
101
+ [SearchFilterFields.NAMES]?: string[];
102
+ [SearchFilterFields.VALUES]?: string[][];
103
+ [SearchFilterFields.OPERATOR]?: OperatorArgument;
104
+ [SearchFilterFields.FILTERS]?: SearchFilterArgument[];
105
+ };
106
+ export declare type SortArgument = {
107
+ [SortFields.NAME]?: string;
108
+ [SortFields.ORDER]?: string;
109
+ };
@@ -0,0 +1,94 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.WellArchitectedQueries = exports.SortFields = exports.SearchFilterValues = exports.SearchFilterFields = exports.SearchBodyFields = exports.PaginateFields = exports.PeriodInputFields = exports.OperatorArgument = void 0;
4
+ /**
5
+ * For field __args
6
+ */
7
+ var OperatorArgument;
8
+ (function (OperatorArgument) {
9
+ OperatorArgument["OR"] = "OR";
10
+ OperatorArgument["AND"] = "AND";
11
+ OperatorArgument["BETWEEN"] = "BETWEEN";
12
+ })(OperatorArgument = exports.OperatorArgument || (exports.OperatorArgument = {}));
13
+ var PeriodInputFields;
14
+ (function (PeriodInputFields) {
15
+ PeriodInputFields["FROM"] = "from";
16
+ PeriodInputFields["TO"] = "to";
17
+ })(PeriodInputFields = exports.PeriodInputFields || (exports.PeriodInputFields = {}));
18
+ var PaginateFields;
19
+ (function (PaginateFields) {
20
+ PaginateFields["PAGE"] = "page";
21
+ PaginateFields["PER_PAGE"] = "perPage";
22
+ })(PaginateFields = exports.PaginateFields || (exports.PaginateFields = {}));
23
+ var SearchBodyFields;
24
+ (function (SearchBodyFields) {
25
+ SearchBodyFields["FILTERS"] = "filters";
26
+ SearchBodyFields["EXCLUSION_FILTERS"] = "exclusionFilters";
27
+ SearchBodyFields["SORT"] = "sort";
28
+ SearchBodyFields["SUBSCRIPTION_REFERENCE"] = "subscriptionReference";
29
+ SearchBodyFields["MARKETPLACE"] = "marketplace";
30
+ SearchBodyFields["MONTHLY_TREND_PERIOD"] = "monthlyTrendPeriod";
31
+ SearchBodyFields["PERIOD"] = "period";
32
+ })(SearchBodyFields = exports.SearchBodyFields || (exports.SearchBodyFields = {}));
33
+ var SearchFilterFields;
34
+ (function (SearchFilterFields) {
35
+ SearchFilterFields["NAMES"] = "names";
36
+ SearchFilterFields["VALUES"] = "values";
37
+ SearchFilterFields["OPERATOR"] = "operator";
38
+ SearchFilterFields["FILTERS"] = "filters";
39
+ })(SearchFilterFields = exports.SearchFilterFields || (exports.SearchFilterFields = {}));
40
+ var SearchFilterValues;
41
+ (function (SearchFilterValues) {
42
+ SearchFilterValues["ACCOUNT"] = "account";
43
+ SearchFilterValues["ACCOUNT_ID"] = "account.id";
44
+ SearchFilterValues["ACCOUNT_REFERENCE"] = "account.reference";
45
+ SearchFilterValues["ACCOUNT_NAME"] = "account.name";
46
+ SearchFilterValues["ACCOUNT_STANDARDS"] = "account.standards";
47
+ SearchFilterValues["ACCOUNT_STANDARDS_REFERENCE"] = "account.standards.reference";
48
+ SearchFilterValues["ACCOUNT_STANDARDS_NAME"] = "account.standards.name";
49
+ SearchFilterValues["ACCOUNT_STANDARDS_TOTAL"] = "account.standards.total";
50
+ SearchFilterValues["ACCOUNT_STANDARDS_PASSED"] = "account.standards.passed";
51
+ SearchFilterValues["ACCOUNT_STANDARDS_FAILED"] = "account.standards.failed";
52
+ SearchFilterValues["ACCOUNT_STANDARDS_SCORE"] = "account.standards.score";
53
+ SearchFilterValues["ACCOUNT_STANDARDS_MAX_SCORE"] = "account.standards.maxScore";
54
+ SearchFilterValues["ACCOUNT_STANDARDS_CHECKS"] = "account.standards.checks";
55
+ SearchFilterValues["ACCOUNT_STANDARDS_CHECKS_ID"] = "account.standards.checks.id";
56
+ SearchFilterValues["ACCOUNT_STANDARDS_CHECKS_REFERENCE"] = "account.standards.checks.reference";
57
+ SearchFilterValues["ACCOUNT_STANDARDS_CHECKS_NAME"] = "account.standards.checks.name";
58
+ SearchFilterValues["ACCOUNT_STANDARDS_CHECKS_DESCRIPTION"] = "account.standards.checks.description";
59
+ SearchFilterValues["ACCOUNT_STANDARDS_CHECKS_SEVERITY"] = "account.standards.checks.severity";
60
+ SearchFilterValues["ACCOUNT_STANDARDS_CHECKS_PROCESSED"] = "account.standards.checks.processed";
61
+ SearchFilterValues["ACCOUNT_STANDARDS_CHECKS_FLAGGED"] = "account.standards.checks.flagged";
62
+ SearchFilterValues["ACCOUNT_STANDARDS_CHECKS_IS_FAILED"] = "account.standards.checks.isFailed";
63
+ SearchFilterValues["ACCOUNT_STANDARDS_CHECKS_SCORE"] = "account.standards.checks.score";
64
+ SearchFilterValues["ACCOUNT_FAILED"] = "account.failed";
65
+ SearchFilterValues["ACCOUNT_PASSED"] = "account.passed";
66
+ SearchFilterValues["ACCOUNT_SCORE"] = "account.score";
67
+ SearchFilterValues["ACCOUNT_TOTAL"] = "account.total";
68
+ SearchFilterValues["REGISTRATION"] = "registration";
69
+ SearchFilterValues["REGISTRATION_ACCOUNT_REFERENCE"] = "registration.accountReference";
70
+ SearchFilterValues["REGISTRATION_SUBSCRIPTION_REFERENCE"] = "registration.subscription.reference";
71
+ SearchFilterValues["REGISTRATION_CUSTOMER_ID"] = "registration.customer.id";
72
+ SearchFilterValues["REGISTRATION_CUSTOMER_NAME"] = "registration.customer.name";
73
+ SearchFilterValues["REGISTRATION_CUSTOMER_REFERENCE"] = "registration.customer.reference";
74
+ SearchFilterValues["REGISTRATION_RESELLER_ID"] = "registration.reseller.id";
75
+ SearchFilterValues["REGISTRATION_RESELLER_NAME"] = "registration.reseller.name";
76
+ SearchFilterValues["REGISTRATION_RESELLER_REFERENCE"] = "registration.reseller.reference";
77
+ SearchFilterValues["REGISTRATION_VENDOR_CODE"] = "registration.vendorCode";
78
+ SearchFilterValues["REGISTRATION_MARKETPLACE"] = "registration.marketplace";
79
+ SearchFilterValues["UPDATED_AT"] = "updatedAt";
80
+ SearchFilterValues["UPDATED_BY"] = "updatedBy";
81
+ })(SearchFilterValues = exports.SearchFilterValues || (exports.SearchFilterValues = {}));
82
+ var SortFields;
83
+ (function (SortFields) {
84
+ SortFields["NAME"] = "name";
85
+ SortFields["ORDER"] = "order";
86
+ })(SortFields = exports.SortFields || (exports.SortFields = {}));
87
+ var WellArchitectedQueries;
88
+ (function (WellArchitectedQueries) {
89
+ WellArchitectedQueries["GET_ADMIN_DATA"] = "getAdminData";
90
+ WellArchitectedQueries["GET_PARTNER_DATA"] = "getPartnerData";
91
+ WellArchitectedQueries["GET_CUSTOMER_DATA"] = "getCustomerData";
92
+ WellArchitectedQueries["GET_CUSTOMER_ACCOUNT_DATA"] = "getCustomerAccountData";
93
+ })(WellArchitectedQueries = exports.WellArchitectedQueries || (exports.WellArchitectedQueries = {}));
94
+ //# sourceMappingURL=queryArguments.js.map
@@ -0,0 +1,75 @@
1
+ import { SearchBodyArgument, PaginateArgument, WellArchitectedQueries } from './queryArguments';
2
+ import { AccountsAggSchema, ChecksAggSchema, EndCustomersAggSchema, MonthlyTrendAggSchema, PaginationSchema, PeriodsSchema, ScoreResultSchema, ScoresAggSchema, SeveritiesAggSchema, StandardsAggSchema, StandardWithCheckSchema, MarketplacesAggSchema, PartnersAggSchema } from './wellArchitectedGraphQLSchemas';
3
+ import { GetPartnerDataFields } from '../entities/getPartnerData';
4
+ import { GetCustomerDataFields } from '../entities/getCustomerData';
5
+ import { GetCustomerAccountDataFields } from '../entities/getCustomerAccountData';
6
+ import { GetAdminDataFields } from '../entities/getAdminData';
7
+ export declare type GetPartnerDataQuery = {
8
+ [WellArchitectedQueries.GET_PARTNER_DATA]: {
9
+ __args?: {
10
+ searchBody?: SearchBodyArgument;
11
+ paginate?: PaginateArgument;
12
+ };
13
+ [GetPartnerDataFields.COLUMN_CHECKS_AGG]?: ChecksAggSchema;
14
+ [GetPartnerDataFields.COLUMN_END_CUSTOMERS_AGG]?: EndCustomersAggSchema;
15
+ [GetPartnerDataFields.COLUMN_MARKETPLACES_AGG]?: MarketplacesAggSchema;
16
+ [GetPartnerDataFields.COLUMN_MONTHLY_TREND_AGG]?: MonthlyTrendAggSchema;
17
+ [GetPartnerDataFields.COLUMN_PAGINATION]?: PaginationSchema;
18
+ [GetPartnerDataFields.COLUMN_PERIOD]?: PeriodsSchema;
19
+ [GetPartnerDataFields.COLUMN_RESULTS]?: ScoreResultSchema;
20
+ [GetPartnerDataFields.COLUMN_SCORES_AGG]?: ScoresAggSchema;
21
+ [GetPartnerDataFields.COLUMN_SEVERITIES_AGG]?: SeveritiesAggSchema;
22
+ };
23
+ };
24
+ export declare type GetCustomerDataQuery = {
25
+ [WellArchitectedQueries.GET_CUSTOMER_DATA]: {
26
+ __args?: {
27
+ searchBody?: SearchBodyArgument;
28
+ paginate?: PaginateArgument;
29
+ };
30
+ [GetCustomerDataFields.COLUMN_ACCOUNTS_AGG]?: AccountsAggSchema;
31
+ [GetCustomerDataFields.COLUMN_CHECKS_AGG]?: ChecksAggSchema;
32
+ [GetCustomerDataFields.COLUMN_MONTHLY_TREND_AGG]?: MonthlyTrendAggSchema;
33
+ [GetCustomerDataFields.COLUMN_PAGINATION]?: PaginationSchema;
34
+ [GetCustomerDataFields.COLUMN_PERIOD]?: PeriodsSchema;
35
+ [GetCustomerDataFields.COLUMN_RESULTS]?: ScoreResultSchema;
36
+ [GetCustomerDataFields.COLUMN_SCORES_AGG]?: ScoresAggSchema;
37
+ [GetCustomerDataFields.COLUMN_SEVERITIES_AGG]?: SeveritiesAggSchema;
38
+ [GetCustomerDataFields.COLUMN_STANDARDS]?: StandardWithCheckSchema;
39
+ [GetCustomerDataFields.COLUMN_SUBSCRIPTION_REFERENCES]?: boolean;
40
+ };
41
+ };
42
+ export declare type GetCustomerAccountDataQuery = {
43
+ [WellArchitectedQueries.GET_CUSTOMER_ACCOUNT_DATA]: {
44
+ __args?: {
45
+ searchBody?: SearchBodyArgument;
46
+ paginate?: PaginateArgument;
47
+ };
48
+ [GetCustomerAccountDataFields.COLUMN_CHECKS_AGG]?: ChecksAggSchema;
49
+ [GetCustomerAccountDataFields.COLUMN_MONTHLY_TREND_AGG]?: MonthlyTrendAggSchema;
50
+ [GetCustomerAccountDataFields.COLUMN_PAGINATION]?: PaginationSchema;
51
+ [GetCustomerAccountDataFields.COLUMN_PERIOD]?: PeriodsSchema;
52
+ [GetCustomerAccountDataFields.COLUMN_RESULTS]?: ScoreResultSchema;
53
+ [GetCustomerAccountDataFields.COLUMN_SCORES_AGG]?: ScoresAggSchema;
54
+ [GetCustomerAccountDataFields.COLUMN_SEVERITIES_AGG]?: SeveritiesAggSchema;
55
+ [GetCustomerAccountDataFields.COLUMN_STANDARDS_AGG]?: StandardsAggSchema;
56
+ [GetCustomerAccountDataFields.COLUMN_STANDARDS]?: StandardWithCheckSchema;
57
+ };
58
+ };
59
+ export declare type GetAdminDataQuery = {
60
+ [WellArchitectedQueries.GET_ADMIN_DATA]: {
61
+ __args?: {
62
+ searchBody?: SearchBodyArgument;
63
+ paginate?: PaginateArgument;
64
+ };
65
+ [GetAdminDataFields.COLUMN_CHECKS_AGG]?: ChecksAggSchema;
66
+ [GetAdminDataFields.COLUMN_MARKETPLACES_AGG]?: MarketplacesAggSchema;
67
+ [GetAdminDataFields.COLUMN_MONTHLY_TREND_AGG]?: MonthlyTrendAggSchema;
68
+ [GetAdminDataFields.COLUMN_PARTNERS_AGG]?: PartnersAggSchema;
69
+ [GetAdminDataFields.COLUMN_PAGINATION]?: PaginationSchema;
70
+ [GetAdminDataFields.COLUMN_PERIOD]?: PeriodsSchema;
71
+ [GetAdminDataFields.COLUMN_RESULTS]?: ScoreResultSchema;
72
+ [GetAdminDataFields.COLUMN_SCORES_AGG]?: ScoresAggSchema;
73
+ [GetAdminDataFields.COLUMN_SEVERITIES_AGG]?: SeveritiesAggSchema;
74
+ };
75
+ };
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const queryArguments_1 = require("./queryArguments");
4
+ const getPartnerData_1 = require("../entities/getPartnerData");
5
+ const getCustomerData_1 = require("../entities/getCustomerData");
6
+ const getCustomerAccountData_1 = require("../entities/getCustomerAccountData");
7
+ const getAdminData_1 = require("../entities/getAdminData");
8
+ //# sourceMappingURL=wellArchitectedGraphQLQueries.js.map
@@ -0,0 +1,125 @@
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';
3
+ declare type MissingFieldsOfScoreByMonthAggSchema = {
4
+ severities: Schema<ScoreByMonthSeverityType, boolean>;
5
+ };
6
+ declare type ScoreByMonthAggTypeSchema = Merge<Schema<ScoreByMonthAggType, boolean>, MissingFieldsOfScoreByMonthAggSchema>;
7
+ declare type MissingFieldsOfMonthlyTrendAggSchema = {
8
+ scores?: ScoreByMonthAggTypeSchema;
9
+ };
10
+ export declare type MonthlyTrendAggSchema = Merge<Schema<MonthlyTrendAggType, boolean>, MissingFieldsOfMonthlyTrendAggSchema>;
11
+ export declare type PaginationSchema = Schema<WellArchitectedPaginationType, boolean>;
12
+ declare type EndCustomerByDateAggSchema = Schema<EndCustomerByDateAggType, boolean>;
13
+ declare type MissingFieldsInEndCustomerAggSchema = {
14
+ data?: EndCustomerByDateAggSchema;
15
+ };
16
+ declare type EndCustomerAggSchema = Merge<Schema<EndCustomerAggType, boolean>, MissingFieldsInEndCustomerAggSchema>;
17
+ declare type UnregisteredOfferIaasSubscriptionSchema = Schema<UnregisteredOfferIaasSubscriptionType, boolean>;
18
+ declare type MissingFieldsInUnregisteredOfferIaasSchema = {
19
+ subscriptions?: UnregisteredOfferIaasSubscriptionSchema;
20
+ };
21
+ declare type UnregisteredOfferIaasSchema = Merge<Schema<UnregisteredOfferIaasType, boolean>, MissingFieldsInUnregisteredOfferIaasSchema>;
22
+ declare type UnregisteredOfferSaasSchema = Schema<UnregisteredOfferSaasType, boolean>;
23
+ declare type UnregisteredOffersSchema = {
24
+ iaas?: UnregisteredOfferIaasSchema;
25
+ saas?: UnregisteredOfferSaasSchema;
26
+ };
27
+ declare type UnregisteredEndCustomerAggTypeSchema = Schema<UnregisteredEndCustomerAggType, boolean>;
28
+ declare type MissingFieldsInUnregisteredEndCustomerAggSchema = {
29
+ offers?: UnregisteredOffersSchema;
30
+ };
31
+ declare type UnregisteredEndCustomerAggSchema = Merge<UnregisteredEndCustomerAggTypeSchema, MissingFieldsInUnregisteredEndCustomerAggSchema>;
32
+ export declare type EndCustomersAggSchema = {
33
+ customers?: EndCustomerAggSchema;
34
+ unregisteredCustomers?: UnregisteredEndCustomerAggSchema;
35
+ };
36
+ declare type AccountByDateAggSchema = Schema<AccountByDateAggType, boolean>;
37
+ declare type MissingFieldsInAccountAggSchema = {
38
+ data?: AccountByDateAggSchema;
39
+ };
40
+ declare type AccountAggSchema = Merge<Schema<AccountAggType, boolean>, MissingFieldsInAccountAggSchema>;
41
+ export declare type AccountsAggSchema = {
42
+ accounts?: AccountAggSchema;
43
+ unregisteredAccounts?: UnregisteredOffersSchema;
44
+ };
45
+ declare type FilterValuesSchema = Schema<FilterValuesType, boolean>;
46
+ export declare type FilterSchema = {
47
+ name?: boolean;
48
+ values?: FilterValuesSchema;
49
+ };
50
+ declare type CheckCountByDateAggSchema = Schema<CheckCountByDateAggType, boolean>;
51
+ declare type MissingFieldsInCheckAggSchema = {
52
+ data?: CheckCountByDateAggSchema;
53
+ };
54
+ declare type CheckAggSchema = Merge<Schema<CheckAggType, boolean>, MissingFieldsInCheckAggSchema>;
55
+ export declare type ChecksAggSchema = {
56
+ checks?: CheckAggSchema;
57
+ };
58
+ export declare type PeriodsSchema = Schema<WellArchitectedPeriodType, boolean>;
59
+ declare type CheckSchema = Schema<CheckType, boolean>;
60
+ declare type MissingFieldsInStandardType = {
61
+ checks?: CheckSchema;
62
+ };
63
+ export declare type StandardSchema = Merge<Schema<StandardType, boolean>, MissingFieldsInStandardType>;
64
+ declare type MissingFieldsInAccountSchema = {
65
+ standards?: StandardSchema;
66
+ };
67
+ declare type AccountSchema = Merge<Schema<AccountType, boolean>, MissingFieldsInAccountSchema>;
68
+ declare type RegistrationSchema = Schema<RegistrationType, boolean>;
69
+ export declare type ScoreResultSchema = {
70
+ account?: AccountSchema;
71
+ registration?: RegistrationSchema;
72
+ };
73
+ declare type SeverityByDateAggSchema = Schema<SeverityByDateAggType, boolean>;
74
+ declare type MissingFieldsInSeverityAggSchema = {
75
+ data?: SeverityByDateAggSchema;
76
+ };
77
+ export declare type SeverityAggSchema = Merge<Schema<SeverityAggType, boolean>, MissingFieldsInSeverityAggSchema>;
78
+ export declare type SeveritiesAggSchema = {
79
+ severities?: SeverityAggSchema;
80
+ };
81
+ declare type StandardByDateAggSchema = Schema<StandardByDateAggType, boolean>;
82
+ declare type MissingFieldsInStandardAggSchema = {
83
+ data?: StandardByDateAggSchema;
84
+ };
85
+ declare type StandardAggSchema = Merge<Schema<StandardAggType, boolean>, MissingFieldsInStandardAggSchema>;
86
+ export declare type StandardsAggSchema = {
87
+ standards?: StandardAggSchema;
88
+ };
89
+ declare type ScoreByDateAggSchema = Schema<ScoreByDateAggType, boolean>;
90
+ declare type MissingFieldsInScoresAggSchema = {
91
+ scores?: ScoreByDateAggSchema;
92
+ };
93
+ export declare type ScoresAggSchema = Merge<Schema<ScoresAggType, boolean>, MissingFieldsInScoresAggSchema>;
94
+ declare type CheckByDateSchema = Schema<CheckByDateType, boolean>;
95
+ declare type MissingFieldsInChecksByStandardSchema = {
96
+ data?: CheckByDateSchema;
97
+ };
98
+ declare type ChecksByStandardSchema = Merge<Schema<ChecksByStandardType, boolean>, MissingFieldsInChecksByStandardSchema>;
99
+ declare type MissingFieldsInStandardWithCheckSchema = {
100
+ checks?: ChecksByStandardSchema;
101
+ };
102
+ export declare type StandardWithCheckSchema = Merge<Schema<StandardWithCheckType, boolean>, MissingFieldsInStandardWithCheckSchema>;
103
+ declare type MarketplacePartnerAggByDateAggSchema = Schema<MarketplacePartnerAggByDateAggType, boolean>;
104
+ declare type MissingFieldsInMarketplacePartnerAggSchema = {
105
+ data?: MarketplacePartnerAggByDateAggSchema;
106
+ };
107
+ declare type MarketplacePartnerAggSchema = Merge<Schema<MarketplacePartnerAggType, boolean>, MissingFieldsInMarketplacePartnerAggSchema>;
108
+ declare type MarketplaceByDateAggSchema = Schema<MarketplaceByDateAggType, boolean>;
109
+ declare type MissingFieldsInMarketplaceAggSchema = {
110
+ data?: MarketplaceByDateAggSchema;
111
+ partners?: MarketplacePartnerAggSchema;
112
+ };
113
+ declare type MarketplaceAggSchema = Merge<Schema<MarketplaceAggType, boolean>, MissingFieldsInMarketplaceAggSchema>;
114
+ export declare type MarketplacesAggSchema = {
115
+ marketplaces?: MarketplaceAggSchema;
116
+ };
117
+ declare type PartnerByDateAggTypeSchema = Schema<PartnerByDateAggType, boolean>;
118
+ declare type MissingFieldsInPartnerAggSchema = {
119
+ data?: PartnerByDateAggTypeSchema;
120
+ };
121
+ declare type PartnerAggSchema = Merge<Schema<PartnerAggType, boolean>, MissingFieldsInPartnerAggSchema>;
122
+ export declare type PartnersAggSchema = {
123
+ partners?: PartnerAggSchema;
124
+ };
125
+ export {};
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=wellArchitectedGraphQLSchemas.js.map