@arrowsphere/api-client 3.55.0-rc.fdi.7 → 3.56.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.
Files changed (50) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/build/abstractGraphQLClient.d.ts +1 -6
  3. package/build/abstractGraphQLClient.js +3 -18
  4. package/build/graphqlApi/types/entities/partnertag.d.ts +1 -0
  5. package/build/graphqlApi/types/graphqlApiQueries.d.ts +3 -1
  6. package/build/graphqlApi/types/graphqlApiQueries.js +1 -0
  7. package/build/index.d.ts +2 -1
  8. package/build/index.js +3 -2
  9. package/build/publicApiClient.d.ts +12 -2
  10. package/build/publicApiClient.js +21 -3
  11. package/build/publicGraphQLClient.d.ts +6 -9
  12. package/build/publicGraphQLClient.js +9 -18
  13. package/build/security/register/registerClient.d.ts +16 -0
  14. package/build/security/register/registerClient.js +16 -0
  15. package/build/security/standards/standardsClient.d.ts +12 -0
  16. package/build/security/standards/standardsClient.js +12 -0
  17. package/build/wellArchitected/index.d.ts +2 -0
  18. package/build/wellArchitected/index.js +2 -0
  19. package/build/wellArchitected/register/entity/registrationLink.d.ts +13 -0
  20. package/build/wellArchitected/register/entity/registrationLink.js +38 -0
  21. package/build/wellArchitected/register/index.d.ts +2 -0
  22. package/build/{account → wellArchitected/register}/index.js +2 -3
  23. package/build/wellArchitected/register/registerClient.d.ts +13 -0
  24. package/build/wellArchitected/register/registerClient.js +33 -0
  25. package/build/wellArchitected/standards/entities/checks/checks.d.ts +17 -0
  26. package/build/wellArchitected/standards/entities/checks/checks.js +46 -0
  27. package/build/wellArchitected/standards/entities/checks/securityChecks.d.ts +37 -0
  28. package/build/wellArchitected/standards/entities/checks/securityChecks.js +94 -0
  29. package/build/wellArchitected/standards/entities/resources/resources.d.ts +17 -0
  30. package/build/wellArchitected/standards/entities/resources/resources.js +46 -0
  31. package/build/wellArchitected/standards/entities/resources/securityResources.d.ts +16 -0
  32. package/build/wellArchitected/standards/entities/resources/securityResources.js +45 -0
  33. package/build/wellArchitected/standards/entities/standards/securityStandards.d.ts +28 -0
  34. package/build/wellArchitected/standards/entities/standards/securityStandards.js +73 -0
  35. package/build/wellArchitected/standards/entities/standards/standards.d.ts +17 -0
  36. package/build/wellArchitected/standards/entities/standards/standards.js +46 -0
  37. package/build/wellArchitected/standards/index.d.ts +7 -0
  38. package/build/wellArchitected/standards/index.js +24 -0
  39. package/build/wellArchitected/standards/standardsClient.d.ts +14 -0
  40. package/build/wellArchitected/standards/standardsClient.js +31 -0
  41. package/package.json +1 -1
  42. package/build/account/accountGraphQLClient.d.ts +0 -10
  43. package/build/account/accountGraphQLClient.js +0 -27
  44. package/build/account/index.d.ts +0 -3
  45. package/build/account/types/accountGraphQLQueries.d.ts +0 -43
  46. package/build/account/types/accountGraphQLQueries.js +0 -3
  47. package/build/account/types/accountGraphQLSchemas.d.ts +0 -34
  48. package/build/account/types/accountGraphQLSchemas.js +0 -3
  49. package/build/account/types/accountGraphQLTypes.d.ts +0 -66
  50. package/build/account/types/accountGraphQLTypes.js +0 -3
@@ -1,34 +0,0 @@
1
- import { AccountAliasInfo, AccountExtraData, AccountFilterValues, AccountPagination, AccountPolicy } from './accountGraphQLTypes';
2
- import { Schema } from 'type-fest';
3
- export declare type AccountAttributeSchema = {
4
- pagination?: Schema<AccountPagination, boolean>;
5
- users?: AccountSchema;
6
- filters?: AccountFilterSchema;
7
- };
8
- export declare type AccountFilterSchema = {
9
- name?: boolean;
10
- value?: Schema<AccountFilterValues, boolean>;
11
- };
12
- export declare type AccountSchema = {
13
- updatedBy?: boolean;
14
- updatedAt?: boolean;
15
- version?: boolean;
16
- isEnabled?: boolean;
17
- cognitoUsername?: boolean;
18
- authMethods?: boolean;
19
- canSecureAccountUntil?: boolean;
20
- extraData?: Schema<AccountExtraData, boolean>;
21
- applications?: AccountApplicationSchema;
22
- aliases?: Schema<AccountAliasInfo, boolean>;
23
- };
24
- export declare type AccountApplicationSchema = {
25
- updatedBy?: boolean;
26
- updatedAt?: boolean;
27
- version?: boolean;
28
- isEnabled?: boolean;
29
- extraData?: Schema<AccountExtraData, boolean>;
30
- applicationName?: boolean;
31
- rights?: boolean;
32
- scopes?: boolean;
33
- policies?: Schema<AccountPolicy, boolean>;
34
- };
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=accountGraphQLSchemas.js.map
@@ -1,66 +0,0 @@
1
- export declare type GetAccountType = {
2
- getUsers?: AccountAttributeType;
3
- };
4
- export declare type AccountAttributeType = {
5
- pagination?: AccountPagination;
6
- users?: Account[];
7
- filters?: AccountFilter[];
8
- };
9
- export declare type Account = {
10
- updatedBy?: string;
11
- updatedAt?: string;
12
- version?: number;
13
- isEnabled?: boolean;
14
- cognitoUsername?: string;
15
- authMethods?: string[];
16
- canSecureAccountUntil?: string;
17
- extraData?: AccountExtraData[];
18
- applications?: AccountApplication[];
19
- aliases?: AccountAliasInfo[];
20
- };
21
- export declare type AccountExtraData = {
22
- name?: string;
23
- value?: string;
24
- };
25
- export declare type AccountApplication = {
26
- updatedBy?: string;
27
- updatedAt?: string;
28
- version?: number;
29
- isEnabled?: boolean;
30
- extraData?: AccountExtraData[];
31
- applicationName?: string;
32
- rights?: string[];
33
- scopes?: string[];
34
- policies?: AccountPolicy[];
35
- };
36
- export declare type AccountPolicy = {
37
- policyName?: string;
38
- description?: string;
39
- updatedBy?: string;
40
- updatedAt?: string;
41
- version?: number;
42
- isEnabled?: boolean;
43
- scopes?: string[];
44
- rights?: string[];
45
- };
46
- export declare type AccountAliasInfo = {
47
- username?: string;
48
- providerName?: string;
49
- email?: string;
50
- };
51
- export declare type AccountPagination = {
52
- perPage?: number;
53
- currentPage?: number;
54
- totalPage?: number;
55
- total?: number;
56
- next?: string;
57
- previous?: string;
58
- };
59
- export declare type AccountFilter = {
60
- name?: string;
61
- value?: AccountFilterValues[];
62
- };
63
- export declare type AccountFilterValues = {
64
- value?: string;
65
- count?: number;
66
- };
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=accountGraphQLTypes.js.map