@spottoai/types-package 1.0.2-beta.217 → 1.0.2-beta.219

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.
@@ -0,0 +1,249 @@
1
+ export type AzureSpSetupPhase = 'created' | 'authorizing' | 'authorized' | 'tenantSelectionRequired' | 'planning' | 'readyToExecute' | 'executing' | 'completed' | 'needsAdminAction' | 'failed' | 'cancelled' | 'expired';
2
+ export type AzureSpSetupResult = 'none' | 'complete' | 'partial' | 'needsAdminAction' | 'failed' | 'cancelled' | 'expired';
3
+ export type AzureSpSetupMode = 'createCloudAccount' | 'grantAdditionalPermissions';
4
+ export type AzureSpSetupErrorCode = 'access_denied' | 'duplicate_tenant' | 'target_cloud_account_required' | 'target_cloud_account_not_found' | 'target_cloud_account_tenant_mismatch' | 'target_cloud_account_not_service_principal' | 'insufficient_entra_permission' | 'insufficient_rbac_permission' | 'tenant_selection_required' | 'no_readable_subscription_selected' | 'subscription_reader_assignment_failed' | 'service_principal_validation_failed' | 'graph_admin_consent_failed' | 'billing_export_storage_failed' | 'billing_export_failed' | 'billing_export_unavailable' | 'provider_registration_failed' | 'optional_assignment_failed' | 'setup_expired' | 'setup_cancelled' | 'azure_propagation_pending' | 'unknown';
5
+ export type AzureSpPermissionRequirement = 'required' | 'recommended' | 'optional';
6
+ export type AzureSpPermissionStatus = 'notStarted' | 'running' | 'succeeded' | 'failed' | 'skipped' | 'alreadyExists';
7
+ export type AzureSpPermissionCapabilityStatus = 'unknown' | 'likelyAllowed' | 'likelyMissing';
8
+ export type AzureSpPermissionFailureBehavior = 'blockSetup' | 'completePartial' | 'warnOnly';
9
+ export type AzureSpPermissionScopeKind = 'tenant' | 'application' | 'servicePrincipal' | 'subscription' | 'tenantRoot' | 'managementGroup' | 'provider' | 'storageAccount' | 'storageContainer' | 'costManagementExport';
10
+ export type AzureSpPermissionKey = 'entraApplication' | 'entraServicePrincipal' | 'entraClientSecret' | 'subscriptionReader' | 'tenantRootReader' | 'monitoringReader' | 'logAnalyticsReader' | 'rootManagementGroupReader' | 'managementGroupReader' | 'reservationsReader' | 'savingsPlanReader' | 'graphApplicationReadAll' | 'costManagementProviderRegistration' | 'billingExportStorage' | 'billingExportContainer' | 'billingExportStorageBlobReader' | 'billingExportActualDaily' | 'billingExportAmortizedDaily' | 'billingExportActualBackfill' | 'billingExportAmortizedBackfill' | 'customWriteRoleDefinition' | 'customWriteRoleAssignment';
11
+ export type AzureSpOperationKind = 'discoverApplication' | 'createApplication' | 'discoverServicePrincipal' | 'createServicePrincipal' | 'createClientSecret' | 'assignAzureRole' | 'grantGraphAppRole' | 'registerProvider' | 'prepareStorage' | 'prepareContainer' | 'createOrUpdateCostExport' | 'queueCostExportRun' | 'createOrUpdateCustomRole' | 'validateServicePrincipal' | 'queueFirstSync';
12
+ export type AzureSpOperationPlannedAction = 'none' | 'create' | 'update' | 'grant' | 'queue' | 'skip';
13
+ export type AzureSpOperationCurrentState = 'missing' | 'alreadyExists' | 'unavailable' | 'unknown';
14
+ export type AzureSpOperationResultStatus = 'notStarted' | 'running' | 'alreadyExists' | 'created' | 'updated' | 'granted' | 'queued' | 'skipped' | 'unavailable' | 'failed';
15
+ export type AzureSpBillingExportMode = 'skip' | 'reuseExisting' | 'useExistingStorage' | 'createStorage';
16
+ export type AzureSpBillingExportDataset = 'ActualCost' | 'AmortizedCost';
17
+ export type AzureSpBillingExportEffectiveDefinitionType = 'ActualCost' | 'Usage' | 'AmortizedCost';
18
+ export type AzureSpBillingExportResultStatus = 'notStarted' | 'existing' | 'created' | 'updated' | 'createdRunQueued' | 'queued' | 'requeued' | 'failed' | 'unavailable' | 'skipped';
19
+ export interface AzureSpSetupStartRequest {
20
+ redirectAfter?: string;
21
+ mode?: AzureSpSetupMode;
22
+ targetCloudAccountId?: string;
23
+ }
24
+ export interface AzureSpSetupStartResponse {
25
+ setupId: string;
26
+ authorizationUrl: string;
27
+ expiresAt: string;
28
+ }
29
+ export interface AzureSpSetupTenant {
30
+ tenantId: string;
31
+ displayName?: string;
32
+ label: string;
33
+ isAlreadyConnected: boolean;
34
+ connectedCloudAccountId?: string;
35
+ requiresTenantAuthorization: boolean;
36
+ }
37
+ export interface AzureSpSetupSubscriptionOption {
38
+ subscriptionId: string;
39
+ displayName: string;
40
+ tenantId: string;
41
+ state?: string;
42
+ isVisible: boolean;
43
+ isReadableCandidate: boolean;
44
+ isSelectedByDefault: boolean;
45
+ warningCode?: string;
46
+ warningMessage?: string;
47
+ }
48
+ export interface AzureSpPermissionManifestItem {
49
+ key: AzureSpPermissionKey;
50
+ requirement: AzureSpPermissionRequirement;
51
+ displayName: string;
52
+ userFacingLabel: string;
53
+ description: string;
54
+ scopeKind: AzureSpPermissionScopeKind;
55
+ defaultSelected: boolean;
56
+ userDeselectable: boolean;
57
+ requiredPrivilege: string;
58
+ detectOperation: AzureSpOperationKind;
59
+ applyOperation: AzureSpOperationKind;
60
+ failureBehavior: AzureSpPermissionFailureBehavior;
61
+ }
62
+ export interface AzureSpSetupPermissionPlanItem {
63
+ key: AzureSpPermissionKey;
64
+ instanceKey: string;
65
+ requirement: AzureSpPermissionRequirement;
66
+ scopeKind: AzureSpPermissionScopeKind;
67
+ displayName: string;
68
+ userFacingLabel: string;
69
+ description: string;
70
+ scope: string;
71
+ externalResourceId?: string;
72
+ idempotencyKey: string;
73
+ roleDefinitionName?: string;
74
+ requiredPrivilege: string;
75
+ selectedByDefault: boolean;
76
+ isDeselectable: boolean;
77
+ capabilityStatus: AzureSpPermissionCapabilityStatus;
78
+ capabilityReason?: string;
79
+ currentState: AzureSpOperationCurrentState;
80
+ plannedAction: AzureSpOperationPlannedAction;
81
+ detectOperation: AzureSpOperationKind;
82
+ applyOperation: AzureSpOperationKind;
83
+ failureBehavior: AzureSpPermissionFailureBehavior;
84
+ status: AzureSpPermissionStatus;
85
+ errorCode?: AzureSpSetupErrorCode;
86
+ message?: string;
87
+ }
88
+ export interface AzureSpSetupOperationResult {
89
+ operationKey: string;
90
+ permissionKey?: AzureSpPermissionKey;
91
+ instanceKey?: string;
92
+ operationKind: AzureSpOperationKind;
93
+ idempotencyKey: string;
94
+ externalResourceId?: string;
95
+ status: AzureSpOperationResultStatus;
96
+ safeMessage?: string;
97
+ errorCode?: AzureSpSetupErrorCode;
98
+ startedAt?: string;
99
+ completedAt?: string;
100
+ }
101
+ export interface AzureSpSetupProgressStep {
102
+ key: 'microsoftAuthorization' | 'tenantSelection' | 'servicePrincipal' | 'credential' | 'readerAccess' | 'optionalPermissions' | 'billingExports' | 'spottoValidation' | 'cloudAccountSaved' | 'firstSyncQueued';
103
+ status: AzureSpPermissionStatus;
104
+ message?: string;
105
+ }
106
+ export interface AzureSpBillingExportStorageOption {
107
+ storageAccountResourceId: string;
108
+ subscriptionId: string;
109
+ resourceGroupName: string;
110
+ storageAccountName: string;
111
+ location?: string;
112
+ isFromCompatibleExistingExport: boolean;
113
+ containerName?: string;
114
+ }
115
+ export interface AzureSpBillingExportDetectedExport {
116
+ subscriptionId: string;
117
+ dataset: AzureSpBillingExportDataset;
118
+ effectiveDefinitionType?: AzureSpBillingExportEffectiveDefinitionType;
119
+ exportName: string;
120
+ exportResourceId: string;
121
+ storageAccountResourceId: string;
122
+ containerName: string;
123
+ rootFolderPath?: string;
124
+ isCompatible: boolean;
125
+ isActiveDaily?: boolean;
126
+ canBeReused?: boolean;
127
+ }
128
+ export interface AzureSpBillingExportPlan {
129
+ enabledByDefault: boolean;
130
+ selectedByDefault: boolean;
131
+ defaultContainerName: 'spotto-cost-exports';
132
+ defaultRootFolderPath: 'spotto';
133
+ defaultResourceGroupName: 'rg-spotto-cost-exports';
134
+ defaultLocation: 'australiaeast';
135
+ detectedCompatibleExports: AzureSpBillingExportDetectedExport[];
136
+ storageOptions: AzureSpBillingExportStorageOption[];
137
+ selectedMode?: AzureSpBillingExportMode;
138
+ selectedReuseDetectedExportResourceIds?: string[];
139
+ selectedStorageAccountResourceId?: string;
140
+ selectedContainerName?: string;
141
+ createStorage?: {
142
+ subscriptionId: string;
143
+ resourceGroupName: string;
144
+ location: string;
145
+ storageAccountName: string;
146
+ containerName: string;
147
+ };
148
+ }
149
+ export interface AzureSpBillingExportResult {
150
+ subscriptionId: string;
151
+ dataset?: AzureSpBillingExportDataset;
152
+ effectiveDefinitionType?: AzureSpBillingExportEffectiveDefinitionType;
153
+ exportKind: 'recurring' | 'backfill' | 'storage' | 'providerRegistration';
154
+ exportName?: string;
155
+ exportResourceId?: string;
156
+ periodName?: string;
157
+ status: AzureSpBillingExportResultStatus;
158
+ storageAccountResourceId?: string;
159
+ containerName?: string;
160
+ rootFolderPath?: string;
161
+ errorCode?: AzureSpSetupErrorCode;
162
+ message?: string;
163
+ }
164
+ export interface AzureSpSetupStatusResponse {
165
+ setupId: string;
166
+ companyId: string;
167
+ mode: AzureSpSetupMode;
168
+ phase: AzureSpSetupPhase;
169
+ result: AzureSpSetupResult;
170
+ selectedTenantId?: string;
171
+ targetCloudAccountId?: string;
172
+ targetCloudAccountName?: string;
173
+ targetAzureApplicationAppId?: string;
174
+ permissionManifestVersion?: string;
175
+ targetPermissionManifestVersion?: string;
176
+ tenants?: AzureSpSetupTenant[];
177
+ subscriptions?: AzureSpSetupSubscriptionOption[];
178
+ permissionPlan?: AzureSpSetupPermissionPlanItem[];
179
+ billingExportPlan?: AzureSpBillingExportPlan;
180
+ billingExportResults?: AzureSpBillingExportResult[];
181
+ operationResults?: AzureSpSetupOperationResult[];
182
+ progress?: AzureSpSetupProgressStep[];
183
+ resultCloudAccountId?: string;
184
+ resultCloudAccountName?: string;
185
+ errorCode?: AzureSpSetupErrorCode;
186
+ errorMessage?: string;
187
+ expiresAt: string;
188
+ canRetry: boolean;
189
+ canExecute: boolean;
190
+ executionId?: string;
191
+ executionAttempt?: number;
192
+ leaseExpiresAt?: string;
193
+ }
194
+ export interface AzureSpSetupSelectTenantRequest {
195
+ tenantId: string;
196
+ }
197
+ export interface AzureSpSetupSelectTenantResponse extends AzureSpSetupStatusResponse {
198
+ selectedTenantId: string;
199
+ authorizationUrl?: string;
200
+ }
201
+ export interface AzureSpSetupAuthorizeTenantResponse {
202
+ setupId: string;
203
+ authorizationUrl: string;
204
+ expiresAt: string;
205
+ }
206
+ export interface AzureSpSetupPlanRequest {
207
+ subscriptionIds: string[];
208
+ selectedPermissionInstanceKeys?: string[];
209
+ useTenantRootReader?: boolean;
210
+ billingExports?: {
211
+ enabled: boolean;
212
+ mode?: AzureSpBillingExportMode;
213
+ reuseDetectedExportResourceIds?: string[];
214
+ storageAccountResourceId?: string;
215
+ createStorage?: {
216
+ subscriptionId: string;
217
+ resourceGroupName: string;
218
+ location: string;
219
+ storageAccountName: string;
220
+ containerName: string;
221
+ };
222
+ containerName?: string;
223
+ };
224
+ }
225
+ export interface AzureSpSetupPlanResponse extends AzureSpSetupStatusResponse {
226
+ phase: 'readyToExecute';
227
+ permissionPlan: AzureSpSetupPermissionPlanItem[];
228
+ subscriptions: AzureSpSetupSubscriptionOption[];
229
+ }
230
+ export interface AzureSpSetupExecuteRequest {
231
+ subscriptionIds: string[];
232
+ selectedPermissionInstanceKeys: string[];
233
+ billingExports?: AzureSpSetupPlanRequest['billingExports'];
234
+ cloudAccountName?: string;
235
+ groupNames?: string[];
236
+ readBitmask?: number;
237
+ writeBitmask?: number;
238
+ }
239
+ export type AzureSpSetupExecuteResponse = AzureSpSetupStatusResponse;
240
+ export interface AzureSpSetupExecuteSuccessResponse extends AzureSpSetupStatusResponse {
241
+ phase: 'completed';
242
+ result: 'complete' | 'partial';
243
+ resultCloudAccountId: string;
244
+ }
245
+ export interface AzureSpSetupCancelResponse extends AzureSpSetupStatusResponse {
246
+ phase: 'cancelled';
247
+ result: 'cancelled';
248
+ }
249
+ //# sourceMappingURL=azureSpSetup.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"azureSpSetup.d.ts","sourceRoot":"","sources":["../../src/accounts/azureSpSetup.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=azureSpSetup.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"azureSpSetup.js","sourceRoot":"","sources":["../../src/accounts/azureSpSetup.ts"],"names":[],"mappings":""}
@@ -1,4 +1,5 @@
1
1
  export * from './accounts';
2
+ export * from './azureSpSetup';
2
3
  export * from './writePermissions';
3
4
  export * from './readPermissions';
4
5
  export * from './validation';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/accounts/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/accounts/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC"}
@@ -15,6 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./accounts"), exports);
18
+ __exportStar(require("./azureSpSetup"), exports);
18
19
  __exportStar(require("./writePermissions"), exports);
19
20
  __exportStar(require("./readPermissions"), exports);
20
21
  __exportStar(require("./validation"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/accounts/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B;AAC3B,qDAAmC;AACnC,oDAAkC;AAClC,+CAA6B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/accounts/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B;AAC3B,iDAA+B;AAC/B,qDAAmC;AACnC,oDAAkC;AAClC,+CAA6B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spottoai/types-package",
3
- "version": "1.0.2-beta.217",
3
+ "version": "1.0.2-beta.219",
4
4
  "description": "Shared TypeScript interfaces for SpottoAI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",