@xemahq/project-registry-api-client 0.1.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 (222) hide show
  1. package/LICENSE +201 -0
  2. package/dist/custom-fetch.d.ts +52 -0
  3. package/dist/custom-fetch.js +152 -0
  4. package/dist/endpoints/health/health.d.ts +15 -0
  5. package/dist/endpoints/health/health.js +53 -0
  6. package/dist/endpoints/manifest/manifest.d.ts +118 -0
  7. package/dist/endpoints/manifest/manifest.js +349 -0
  8. package/dist/endpoints/mcp/mcp.d.ts +6 -0
  9. package/dist/endpoints/mcp/mcp.js +44 -0
  10. package/dist/endpoints/onboarding/onboarding.d.ts +13 -0
  11. package/dist/endpoints/onboarding/onboarding.js +20 -0
  12. package/dist/endpoints/project-bindings/project-bindings.d.ts +23 -0
  13. package/dist/endpoints/project-bindings/project-bindings.js +48 -0
  14. package/dist/endpoints/project-registry/project-registry.d.ts +68 -0
  15. package/dist/endpoints/project-registry/project-registry.js +205 -0
  16. package/dist/endpoints/project-roles/project-roles.d.ts +23 -0
  17. package/dist/endpoints/project-roles/project-roles.js +50 -0
  18. package/dist/endpoints/variables/variables.d.ts +28 -0
  19. package/dist/endpoints/variables/variables.js +64 -0
  20. package/dist/endpoints/wallets/wallets.d.ts +48 -0
  21. package/dist/endpoints/wallets/wallets.js +124 -0
  22. package/dist/index.d.ts +9 -0
  23. package/dist/index.js +31 -0
  24. package/dist/models/bootstrapAnalyzeDto.d.ts +14 -0
  25. package/dist/models/bootstrapAnalyzeDto.js +2 -0
  26. package/dist/models/bootstrapAnalyzeDtoOptions.d.ts +13 -0
  27. package/dist/models/bootstrapAnalyzeDtoOptions.js +9 -0
  28. package/dist/models/bootstrapDecisionDto.d.ts +22 -0
  29. package/dist/models/bootstrapDecisionDto.js +2 -0
  30. package/dist/models/bootstrapDecisionDtoDataEnvelope.d.ts +11 -0
  31. package/dist/models/bootstrapDecisionDtoDataEnvelope.js +2 -0
  32. package/dist/models/bootstrapDecisionDtoMode.d.ts +14 -0
  33. package/dist/models/bootstrapDecisionDtoMode.js +16 -0
  34. package/dist/models/bootstrapOptionDto.d.ts +13 -0
  35. package/dist/models/bootstrapOptionDto.js +9 -0
  36. package/dist/models/bootstrapProjectDto.d.ts +11 -0
  37. package/dist/models/bootstrapProjectDto.js +2 -0
  38. package/dist/models/bootstrapProjectDtoOptions.d.ts +10 -0
  39. package/dist/models/bootstrapProjectDtoOptions.js +9 -0
  40. package/dist/models/createProjectBindingDto.d.ts +13 -0
  41. package/dist/models/createProjectBindingDto.js +2 -0
  42. package/dist/models/createProjectDto.d.ts +13 -0
  43. package/dist/models/createProjectDto.js +2 -0
  44. package/dist/models/createProjectRepoDto.d.ts +13 -0
  45. package/dist/models/createProjectRepoDto.js +9 -0
  46. package/dist/models/createVariableDto.d.ts +17 -0
  47. package/dist/models/createVariableDto.js +9 -0
  48. package/dist/models/createWalletDto.d.ts +13 -0
  49. package/dist/models/createWalletDto.js +9 -0
  50. package/dist/models/errorDetailsDto.d.ts +12 -0
  51. package/dist/models/errorDetailsDto.js +2 -0
  52. package/dist/models/errorDetailsDtoDetails.d.ts +13 -0
  53. package/dist/models/errorDetailsDtoDetails.js +9 -0
  54. package/dist/models/errorPayloadDto.d.ts +13 -0
  55. package/dist/models/errorPayloadDto.js +2 -0
  56. package/dist/models/errorResponseDto.d.ts +11 -0
  57. package/dist/models/errorResponseDto.js +2 -0
  58. package/dist/models/existingAssetsDto.d.ts +12 -0
  59. package/dist/models/existingAssetsDto.js +9 -0
  60. package/dist/models/grantProjectRoleDto.d.ts +11 -0
  61. package/dist/models/grantProjectRoleDto.js +9 -0
  62. package/dist/models/index.d.ts +98 -0
  63. package/dist/models/index.js +115 -0
  64. package/dist/models/manifestControllerGetHistoryParams.d.ts +17 -0
  65. package/dist/models/manifestControllerGetHistoryParams.js +9 -0
  66. package/dist/models/manifestDiffResponseDto.d.ts +13 -0
  67. package/dist/models/manifestDiffResponseDto.js +9 -0
  68. package/dist/models/manifestDiffResponseDtoDataEnvelope.d.ts +11 -0
  69. package/dist/models/manifestDiffResponseDtoDataEnvelope.js +2 -0
  70. package/dist/models/manifestHistoryEntryDto.d.ts +21 -0
  71. package/dist/models/manifestHistoryEntryDto.js +2 -0
  72. package/dist/models/manifestHistoryEntryDtoDataArrayEnvelope.d.ts +11 -0
  73. package/dist/models/manifestHistoryEntryDtoDataArrayEnvelope.js +2 -0
  74. package/dist/models/manifestHistoryEntryDtoDataEnvelope.d.ts +11 -0
  75. package/dist/models/manifestHistoryEntryDtoDataEnvelope.js +2 -0
  76. package/dist/models/manifestHistoryEntryDtoDiff.d.ts +10 -0
  77. package/dist/models/manifestHistoryEntryDtoDiff.js +9 -0
  78. package/dist/models/manifestHistoryEntryDtoSnapshotJson.d.ts +10 -0
  79. package/dist/models/manifestHistoryEntryDtoSnapshotJson.js +9 -0
  80. package/dist/models/manifestResponseDto.d.ts +19 -0
  81. package/dist/models/manifestResponseDto.js +2 -0
  82. package/dist/models/manifestResponseDtoDataEnvelope.d.ts +11 -0
  83. package/dist/models/manifestResponseDtoDataEnvelope.js +2 -0
  84. package/dist/models/manifestResponseDtoManifest.d.ts +10 -0
  85. package/dist/models/manifestResponseDtoManifest.js +9 -0
  86. package/dist/models/manifestSectionListResponseDto.d.ts +12 -0
  87. package/dist/models/manifestSectionListResponseDto.js +2 -0
  88. package/dist/models/manifestSectionListResponseDtoDataArrayEnvelope.d.ts +11 -0
  89. package/dist/models/manifestSectionListResponseDtoDataArrayEnvelope.js +2 -0
  90. package/dist/models/manifestSectionListResponseDtoEntries.d.ts +13 -0
  91. package/dist/models/manifestSectionListResponseDtoEntries.js +9 -0
  92. package/dist/models/manifestValidationResponseDto.d.ts +11 -0
  93. package/dist/models/manifestValidationResponseDto.js +9 -0
  94. package/dist/models/manifestValidationResponseDtoDataEnvelope.d.ts +11 -0
  95. package/dist/models/manifestValidationResponseDtoDataEnvelope.js +2 -0
  96. package/dist/models/patchManifestDto.d.ts +14 -0
  97. package/dist/models/patchManifestDto.js +2 -0
  98. package/dist/models/patchManifestDtoPatch.d.ts +13 -0
  99. package/dist/models/patchManifestDtoPatch.js +9 -0
  100. package/dist/models/patchSectionEntryDto.d.ts +14 -0
  101. package/dist/models/patchSectionEntryDto.js +2 -0
  102. package/dist/models/patchSectionEntryDtoPatch.d.ts +13 -0
  103. package/dist/models/patchSectionEntryDtoPatch.js +9 -0
  104. package/dist/models/preferredImageVariantResponseDto.d.ts +16 -0
  105. package/dist/models/preferredImageVariantResponseDto.js +9 -0
  106. package/dist/models/preferredImageVariantResponseDtoDataEnvelope.d.ts +11 -0
  107. package/dist/models/preferredImageVariantResponseDtoDataEnvelope.js +2 -0
  108. package/dist/models/priorRunSummaryDto.d.ts +14 -0
  109. package/dist/models/priorRunSummaryDto.js +9 -0
  110. package/dist/models/projectBindingKind.d.ts +12 -0
  111. package/dist/models/projectBindingKind.js +14 -0
  112. package/dist/models/projectBindingResponseDto.d.ts +18 -0
  113. package/dist/models/projectBindingResponseDto.js +2 -0
  114. package/dist/models/projectBindingResponseDtoDataArrayEnvelope.d.ts +11 -0
  115. package/dist/models/projectBindingResponseDtoDataArrayEnvelope.js +2 -0
  116. package/dist/models/projectBindingResponseDtoDataEnvelope.d.ts +11 -0
  117. package/dist/models/projectBindingResponseDtoDataEnvelope.js +2 -0
  118. package/dist/models/projectEnvResponseDto.d.ts +12 -0
  119. package/dist/models/projectEnvResponseDto.js +9 -0
  120. package/dist/models/projectIntegrationResponseDto.d.ts +14 -0
  121. package/dist/models/projectIntegrationResponseDto.js +2 -0
  122. package/dist/models/projectIntegrationResponseDtoConfig.d.ts +10 -0
  123. package/dist/models/projectIntegrationResponseDtoConfig.js +9 -0
  124. package/dist/models/projectMembershipResponseDto.d.ts +16 -0
  125. package/dist/models/projectMembershipResponseDto.js +9 -0
  126. package/dist/models/projectMembershipResponseDtoDataArrayEnvelope.d.ts +11 -0
  127. package/dist/models/projectMembershipResponseDtoDataArrayEnvelope.js +2 -0
  128. package/dist/models/projectMembershipResponseDtoDataEnvelope.d.ts +11 -0
  129. package/dist/models/projectMembershipResponseDtoDataEnvelope.js +2 -0
  130. package/dist/models/projectRegistryControllerListProjectsParams.d.ts +17 -0
  131. package/dist/models/projectRegistryControllerListProjectsParams.js +9 -0
  132. package/dist/models/projectRepoResponseDto.d.ts +13 -0
  133. package/dist/models/projectRepoResponseDto.js +9 -0
  134. package/dist/models/projectResponseDto.d.ts +24 -0
  135. package/dist/models/projectResponseDto.js +2 -0
  136. package/dist/models/projectResponseDtoDataEnvelope.d.ts +11 -0
  137. package/dist/models/projectResponseDtoDataEnvelope.js +2 -0
  138. package/dist/models/projectSettingsResponseDto.d.ts +19 -0
  139. package/dist/models/projectSettingsResponseDto.js +2 -0
  140. package/dist/models/projectSettingsResponseDtoCloudDetails.d.ts +13 -0
  141. package/dist/models/projectSettingsResponseDtoCloudDetails.js +9 -0
  142. package/dist/models/projectSettingsResponseDtoCloudProvider.d.ts +20 -0
  143. package/dist/models/projectSettingsResponseDtoCloudProvider.js +19 -0
  144. package/dist/models/projectSummaryResponseDto.d.ts +16 -0
  145. package/dist/models/projectSummaryResponseDto.js +9 -0
  146. package/dist/models/projectSummaryResponseDtoDataArrayEnvelope.d.ts +11 -0
  147. package/dist/models/projectSummaryResponseDtoDataArrayEnvelope.js +2 -0
  148. package/dist/models/promptClassificationDto.d.ts +13 -0
  149. package/dist/models/promptClassificationDto.js +2 -0
  150. package/dist/models/promptClassificationDtoClassification.d.ts +13 -0
  151. package/dist/models/promptClassificationDtoClassification.js +15 -0
  152. package/dist/models/provisionOnboardingRequestDto.d.ts +19 -0
  153. package/dist/models/provisionOnboardingRequestDto.js +9 -0
  154. package/dist/models/provisionOnboardingResponseDto.d.ts +17 -0
  155. package/dist/models/provisionOnboardingResponseDto.js +9 -0
  156. package/dist/models/provisionOnboardingResponseDtoDataEnvelope.d.ts +11 -0
  157. package/dist/models/provisionOnboardingResponseDtoDataEnvelope.js +2 -0
  158. package/dist/models/putManifestDto.d.ts +14 -0
  159. package/dist/models/putManifestDto.js +2 -0
  160. package/dist/models/putManifestDtoManifest.d.ts +13 -0
  161. package/dist/models/putManifestDtoManifest.js +9 -0
  162. package/dist/models/resolveWalletsRequestDto.d.ts +11 -0
  163. package/dist/models/resolveWalletsRequestDto.js +9 -0
  164. package/dist/models/resolvedWalletsResponseDto.d.ts +18 -0
  165. package/dist/models/resolvedWalletsResponseDto.js +2 -0
  166. package/dist/models/resolvedWalletsResponseDtoDataEnvelope.d.ts +11 -0
  167. package/dist/models/resolvedWalletsResponseDtoDataEnvelope.js +2 -0
  168. package/dist/models/resolvedWalletsResponseDtoSecrets.d.ts +13 -0
  169. package/dist/models/resolvedWalletsResponseDtoSecrets.js +9 -0
  170. package/dist/models/resolvedWalletsResponseDtoVars.d.ts +13 -0
  171. package/dist/models/resolvedWalletsResponseDtoVars.js +9 -0
  172. package/dist/models/resolvedWalletsResponseDtoWalletKeyMap.d.ts +13 -0
  173. package/dist/models/resolvedWalletsResponseDtoWalletKeyMap.js +9 -0
  174. package/dist/models/revokeProjectRoleDto.d.ts +11 -0
  175. package/dist/models/revokeProjectRoleDto.js +9 -0
  176. package/dist/models/setPreferredImageVariantDto.d.ts +14 -0
  177. package/dist/models/setPreferredImageVariantDto.js +9 -0
  178. package/dist/models/updateProjectDto.d.ts +16 -0
  179. package/dist/models/updateProjectDto.js +9 -0
  180. package/dist/models/updateProjectIntegrationDto.d.ts +13 -0
  181. package/dist/models/updateProjectIntegrationDto.js +2 -0
  182. package/dist/models/updateProjectIntegrationDtoConfig.d.ts +10 -0
  183. package/dist/models/updateProjectIntegrationDtoConfig.js +9 -0
  184. package/dist/models/updateProjectSettingsDto.d.ts +21 -0
  185. package/dist/models/updateProjectSettingsDto.js +2 -0
  186. package/dist/models/updateProjectSettingsDtoCloudDetails.d.ts +13 -0
  187. package/dist/models/updateProjectSettingsDtoCloudDetails.js +9 -0
  188. package/dist/models/updateProjectSettingsDtoCloudProvider.d.ts +20 -0
  189. package/dist/models/updateProjectSettingsDtoCloudProvider.js +19 -0
  190. package/dist/models/updateProjectSettingsDtoSettings.d.ts +10 -0
  191. package/dist/models/updateProjectSettingsDtoSettings.js +9 -0
  192. package/dist/models/updateVariableDto.d.ts +12 -0
  193. package/dist/models/updateVariableDto.js +9 -0
  194. package/dist/models/updateWalletDto.d.ts +10 -0
  195. package/dist/models/updateWalletDto.js +9 -0
  196. package/dist/models/upsertSectionEntryDto.d.ts +14 -0
  197. package/dist/models/upsertSectionEntryDto.js +2 -0
  198. package/dist/models/upsertSectionEntryDtoEntry.d.ts +13 -0
  199. package/dist/models/upsertSectionEntryDtoEntry.js +9 -0
  200. package/dist/models/validateManifestDto.d.ts +12 -0
  201. package/dist/models/validateManifestDto.js +2 -0
  202. package/dist/models/validateManifestDtoManifest.d.ts +13 -0
  203. package/dist/models/validateManifestDtoManifest.js +9 -0
  204. package/dist/models/variableResponseDto.d.ts +28 -0
  205. package/dist/models/variableResponseDto.js +9 -0
  206. package/dist/models/variableResponseDtoDataArrayEnvelope.d.ts +11 -0
  207. package/dist/models/variableResponseDtoDataArrayEnvelope.js +2 -0
  208. package/dist/models/variableResponseDtoDataEnvelope.d.ts +11 -0
  209. package/dist/models/variableResponseDtoDataEnvelope.js +2 -0
  210. package/dist/models/walletEntryDto.d.ts +11 -0
  211. package/dist/models/walletEntryDto.js +9 -0
  212. package/dist/models/walletResponseDto.d.ts +21 -0
  213. package/dist/models/walletResponseDto.js +9 -0
  214. package/dist/models/walletResponseDtoDataArrayEnvelope.d.ts +11 -0
  215. package/dist/models/walletResponseDtoDataArrayEnvelope.js +2 -0
  216. package/dist/models/walletResponseDtoDataEnvelope.d.ts +11 -0
  217. package/dist/models/walletResponseDtoDataEnvelope.js +2 -0
  218. package/dist/models/walletWithEntriesResponseDto.d.ts +23 -0
  219. package/dist/models/walletWithEntriesResponseDto.js +2 -0
  220. package/dist/models/walletWithEntriesResponseDtoDataEnvelope.d.ts +11 -0
  221. package/dist/models/walletWithEntriesResponseDtoDataEnvelope.js +2 -0
  222. package/package.json +27 -0
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,21 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ import type { ManifestHistoryEntryDtoDiff } from './manifestHistoryEntryDtoDiff';
9
+ import type { ManifestHistoryEntryDtoSnapshotJson } from './manifestHistoryEntryDtoSnapshotJson';
10
+ export interface ManifestHistoryEntryDto {
11
+ id: string;
12
+ version: number;
13
+ snapshotJson: ManifestHistoryEntryDtoSnapshotJson;
14
+ changedBy: string;
15
+ changePhase?: string;
16
+ changeReason?: string;
17
+ /** Pipeline run that produced this change */
18
+ pipelineRunId?: string;
19
+ diff?: ManifestHistoryEntryDtoDiff;
20
+ createdAt: string;
21
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ import type { ManifestHistoryEntryDto } from './manifestHistoryEntryDto';
9
+ export interface ManifestHistoryEntryDtoDataArrayEnvelope {
10
+ data: ManifestHistoryEntryDto[];
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ import type { ManifestHistoryEntryDto } from './manifestHistoryEntryDto';
9
+ export interface ManifestHistoryEntryDtoDataEnvelope {
10
+ data: ManifestHistoryEntryDto;
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ export type ManifestHistoryEntryDtoDiff = {
9
+ [key: string]: unknown;
10
+ };
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v8.6.2 🍺
4
+ * Do not edit manually.
5
+ * Project Registry API
6
+ * Project workspace, repository links, integrations and settings
7
+ * OpenAPI spec version: 0.1.0
8
+ */
9
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ export type ManifestHistoryEntryDtoSnapshotJson = {
9
+ [key: string]: unknown;
10
+ };
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v8.6.2 🍺
4
+ * Do not edit manually.
5
+ * Project Registry API
6
+ * Project workspace, repository links, integrations and settings
7
+ * OpenAPI spec version: 0.1.0
8
+ */
9
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ import type { ManifestResponseDtoManifest } from './manifestResponseDtoManifest';
9
+ export interface ManifestResponseDto {
10
+ id: string;
11
+ projectId: string;
12
+ version: number;
13
+ schemaVersion: string;
14
+ manifest: ManifestResponseDtoManifest;
15
+ lastUpdatedBy: string;
16
+ lastUpdatedPhase?: string;
17
+ createdAt: string;
18
+ updatedAt: string;
19
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ import type { ManifestResponseDto } from './manifestResponseDto';
9
+ export interface ManifestResponseDtoDataEnvelope {
10
+ data: ManifestResponseDto;
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ export type ManifestResponseDtoManifest = {
9
+ [key: string]: unknown;
10
+ };
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v8.6.2 🍺
4
+ * Do not edit manually.
5
+ * Project Registry API
6
+ * Project workspace, repository links, integrations and settings
7
+ * OpenAPI spec version: 0.1.0
8
+ */
9
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ import type { ManifestSectionListResponseDtoEntries } from './manifestSectionListResponseDtoEntries';
9
+ export interface ManifestSectionListResponseDto {
10
+ /** Map of section entry names to their objects */
11
+ entries: ManifestSectionListResponseDtoEntries;
12
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ import type { ManifestSectionListResponseDto } from './manifestSectionListResponseDto';
9
+ export interface ManifestSectionListResponseDtoDataArrayEnvelope {
10
+ data: ManifestSectionListResponseDto[];
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ /**
9
+ * Map of section entry names to their objects
10
+ */
11
+ export type ManifestSectionListResponseDtoEntries = {
12
+ [key: string]: unknown;
13
+ };
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v8.6.2 🍺
4
+ * Do not edit manually.
5
+ * Project Registry API
6
+ * Project workspace, repository links, integrations and settings
7
+ * OpenAPI spec version: 0.1.0
8
+ */
9
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ export interface ManifestValidationResponseDto {
9
+ valid: boolean;
10
+ errors: string[];
11
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v8.6.2 🍺
4
+ * Do not edit manually.
5
+ * Project Registry API
6
+ * Project workspace, repository links, integrations and settings
7
+ * OpenAPI spec version: 0.1.0
8
+ */
9
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ import type { ManifestValidationResponseDto } from './manifestValidationResponseDto';
9
+ export interface ManifestValidationResponseDtoDataEnvelope {
10
+ data: ManifestValidationResponseDto;
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ import type { PatchManifestDtoPatch } from './patchManifestDtoPatch';
9
+ export interface PatchManifestDto {
10
+ /** JSON merge-patch object to apply to current manifest */
11
+ patch: PatchManifestDtoPatch;
12
+ /** Reason for this change (for audit trail) */
13
+ changeReason?: string;
14
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ /**
9
+ * JSON merge-patch object to apply to current manifest
10
+ */
11
+ export type PatchManifestDtoPatch = {
12
+ [key: string]: unknown;
13
+ };
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v8.6.2 🍺
4
+ * Do not edit manually.
5
+ * Project Registry API
6
+ * Project workspace, repository links, integrations and settings
7
+ * OpenAPI spec version: 0.1.0
8
+ */
9
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ import type { PatchSectionEntryDtoPatch } from './patchSectionEntryDtoPatch';
9
+ export interface PatchSectionEntryDto {
10
+ /** JSON merge-patch to apply to section entry */
11
+ patch: PatchSectionEntryDtoPatch;
12
+ /** Reason for this change (for audit trail) */
13
+ changeReason?: string;
14
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ /**
9
+ * JSON merge-patch to apply to section entry
10
+ */
11
+ export type PatchSectionEntryDtoPatch = {
12
+ [key: string]: unknown;
13
+ };
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v8.6.2 🍺
4
+ * Do not edit manually.
5
+ * Project Registry API
6
+ * Project workspace, repository links, integrations and settings
7
+ * OpenAPI spec version: 0.1.0
8
+ */
9
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,16 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ export interface PreferredImageVariantResponseDto {
9
+ /** Project identifier. */
10
+ projectId: string;
11
+ /**
12
+ * The workspace-image variant slug preferred for this project. Null means no project-level preference; the resolver cascades to the org default.
13
+ * @nullable
14
+ */
15
+ preferredImageVariantSlug?: string | null;
16
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v8.6.2 🍺
4
+ * Do not edit manually.
5
+ * Project Registry API
6
+ * Project workspace, repository links, integrations and settings
7
+ * OpenAPI spec version: 0.1.0
8
+ */
9
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ import type { PreferredImageVariantResponseDto } from './preferredImageVariantResponseDto';
9
+ export interface PreferredImageVariantResponseDtoDataEnvelope {
10
+ data: PreferredImageVariantResponseDto;
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ export interface PriorRunSummaryDto {
9
+ id: string;
10
+ status: string;
11
+ completedPhases: string[];
12
+ stoppedAtPhase?: string;
13
+ prompt: string;
14
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v8.6.2 🍺
4
+ * Do not edit manually.
5
+ * Project Registry API
6
+ * Project workspace, repository links, integrations and settings
7
+ * OpenAPI spec version: 0.1.0
8
+ */
9
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ export type ProjectBindingKind = typeof ProjectBindingKind[keyof typeof ProjectBindingKind];
9
+ export declare const ProjectBindingKind: {
10
+ readonly KB_SPACE: "KB_SPACE";
11
+ readonly EXTERNAL_PROJECT: "EXTERNAL_PROJECT";
12
+ };
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v8.6.2 🍺
4
+ * Do not edit manually.
5
+ * Project Registry API
6
+ * Project workspace, repository links, integrations and settings
7
+ * OpenAPI spec version: 0.1.0
8
+ */
9
+ Object.defineProperty(exports, "__esModule", { value: true });
10
+ exports.ProjectBindingKind = void 0;
11
+ exports.ProjectBindingKind = {
12
+ KB_SPACE: 'KB_SPACE',
13
+ EXTERNAL_PROJECT: 'EXTERNAL_PROJECT',
14
+ };
@@ -0,0 +1,18 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ import type { ProjectBindingKind } from './projectBindingKind';
9
+ export interface ProjectBindingResponseDto {
10
+ id: string;
11
+ projectId: string;
12
+ kind: ProjectBindingKind;
13
+ targetId: string;
14
+ label?: string;
15
+ createdAt: string;
16
+ updatedAt: string;
17
+ createdBy: string;
18
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ import type { ProjectBindingResponseDto } from './projectBindingResponseDto';
9
+ export interface ProjectBindingResponseDtoDataArrayEnvelope {
10
+ data: ProjectBindingResponseDto[];
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ import type { ProjectBindingResponseDto } from './projectBindingResponseDto';
9
+ export interface ProjectBindingResponseDtoDataEnvelope {
10
+ data: ProjectBindingResponseDto;
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ export interface ProjectEnvResponseDto {
9
+ env: string;
10
+ url?: string;
11
+ notes?: string;
12
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v8.6.2 🍺
4
+ * Do not edit manually.
5
+ * Project Registry API
6
+ * Project workspace, repository links, integrations and settings
7
+ * OpenAPI spec version: 0.1.0
8
+ */
9
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ import type { ProjectIntegrationResponseDtoConfig } from './projectIntegrationResponseDtoConfig';
9
+ export interface ProjectIntegrationResponseDto {
10
+ type: string;
11
+ enabled: boolean;
12
+ credentialsPointer?: string;
13
+ config?: ProjectIntegrationResponseDtoConfig;
14
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ export type ProjectIntegrationResponseDtoConfig = {
9
+ [key: string]: unknown;
10
+ };
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v8.6.2 🍺
4
+ * Do not edit manually.
5
+ * Project Registry API
6
+ * Project workspace, repository links, integrations and settings
7
+ * OpenAPI spec version: 0.1.0
8
+ */
9
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,16 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ export interface ProjectMembershipResponseDto {
9
+ id: string;
10
+ orgId: string;
11
+ projectId: string;
12
+ userId: string;
13
+ roles: string[];
14
+ createdAt: string;
15
+ updatedAt: string;
16
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v8.6.2 🍺
4
+ * Do not edit manually.
5
+ * Project Registry API
6
+ * Project workspace, repository links, integrations and settings
7
+ * OpenAPI spec version: 0.1.0
8
+ */
9
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Generated by orval v8.6.2 🍺
3
+ * Do not edit manually.
4
+ * Project Registry API
5
+ * Project workspace, repository links, integrations and settings
6
+ * OpenAPI spec version: 0.1.0
7
+ */
8
+ import type { ProjectMembershipResponseDto } from './projectMembershipResponseDto';
9
+ export interface ProjectMembershipResponseDtoDataArrayEnvelope {
10
+ data: ProjectMembershipResponseDto[];
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });