@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,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 ProjectMembershipResponseDtoDataEnvelope {
10
+ data: ProjectMembershipResponseDto;
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,17 @@
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 ProjectRegistryControllerListProjectsParams = {
9
+ /**
10
+ * Page number (default: 1)
11
+ */
12
+ page?: string;
13
+ /**
14
+ * Items per page (default: 20, max: 100)
15
+ */
16
+ limit?: string;
17
+ };
@@ -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,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
+ export interface ProjectRepoResponseDto {
9
+ provider: string;
10
+ repoFullName: string;
11
+ defaultBranch?: string;
12
+ installationId?: string;
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,24 @@
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 { ProjectEnvResponseDto } from './projectEnvResponseDto';
9
+ import type { ProjectIntegrationResponseDto } from './projectIntegrationResponseDto';
10
+ import type { ProjectRepoResponseDto } from './projectRepoResponseDto';
11
+ import type { ProjectSettingsResponseDto } from './projectSettingsResponseDto';
12
+ export interface ProjectResponseDto {
13
+ id: string;
14
+ orgId: string;
15
+ name: string;
16
+ description?: string;
17
+ status: string;
18
+ repos: ProjectRepoResponseDto[];
19
+ envs: ProjectEnvResponseDto[];
20
+ integrations: ProjectIntegrationResponseDto[];
21
+ settings?: ProjectSettingsResponseDto;
22
+ createdAt: string;
23
+ createdBy: string;
24
+ }
@@ -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 { ProjectResponseDto } from './projectResponseDto';
9
+ export interface ProjectResponseDtoDataEnvelope {
10
+ data: ProjectResponseDto;
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ 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 { ProjectSettingsResponseDtoCloudDetails } from './projectSettingsResponseDtoCloudDetails';
9
+ import type { ProjectSettingsResponseDtoCloudProvider } from './projectSettingsResponseDtoCloudProvider';
10
+ export interface ProjectSettingsResponseDto {
11
+ /** ISO 639-1 language code or "auto" */
12
+ outputLanguage?: string;
13
+ /** Target cloud provider */
14
+ cloudProvider?: ProjectSettingsResponseDtoCloudProvider;
15
+ /** Cloud-specific configuration details */
16
+ cloudDetails?: ProjectSettingsResponseDtoCloudDetails;
17
+ /** Default target branch for merges */
18
+ targetBranch?: string;
19
+ }
@@ -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
+ * Cloud-specific configuration details
10
+ */
11
+ export type ProjectSettingsResponseDtoCloudDetails = {
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,20 @@
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
+ * Target cloud provider
10
+ */
11
+ export type ProjectSettingsResponseDtoCloudProvider = typeof ProjectSettingsResponseDtoCloudProvider[keyof typeof ProjectSettingsResponseDtoCloudProvider];
12
+ export declare const ProjectSettingsResponseDtoCloudProvider: {
13
+ readonly auto: "auto";
14
+ readonly azure: "azure";
15
+ readonly aws: "aws";
16
+ readonly gcp: "gcp";
17
+ readonly self_hosted: "self_hosted";
18
+ readonly hybrid: "hybrid";
19
+ readonly undecided: "undecided";
20
+ };
@@ -0,0 +1,19 @@
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.ProjectSettingsResponseDtoCloudProvider = void 0;
11
+ exports.ProjectSettingsResponseDtoCloudProvider = {
12
+ auto: 'auto',
13
+ azure: 'azure',
14
+ aws: 'aws',
15
+ gcp: 'gcp',
16
+ self_hosted: 'self_hosted',
17
+ hybrid: 'hybrid',
18
+ undecided: 'undecided',
19
+ };
@@ -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 ProjectSummaryResponseDto {
9
+ id: string;
10
+ orgId: string;
11
+ name: string;
12
+ description?: string;
13
+ status: string;
14
+ createdAt: string;
15
+ createdBy: 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 { ProjectSummaryResponseDto } from './projectSummaryResponseDto';
9
+ export interface ProjectSummaryResponseDtoDataArrayEnvelope {
10
+ data: ProjectSummaryResponseDto[];
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
+ import type { PromptClassificationDtoClassification } from './promptClassificationDtoClassification';
9
+ export interface PromptClassificationDto {
10
+ classification: PromptClassificationDtoClassification;
11
+ /** Jaccard similarity score 0-1 */
12
+ similarity: number;
13
+ }
@@ -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
+ export type PromptClassificationDtoClassification = typeof PromptClassificationDtoClassification[keyof typeof PromptClassificationDtoClassification];
9
+ export declare const PromptClassificationDtoClassification: {
10
+ readonly same_scope: "same_scope";
11
+ readonly evolution: "evolution";
12
+ readonly new_direction: "new_direction";
13
+ };
@@ -0,0 +1,15 @@
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.PromptClassificationDtoClassification = void 0;
11
+ exports.PromptClassificationDtoClassification = {
12
+ same_scope: 'same_scope',
13
+ evolution: 'evolution',
14
+ new_direction: 'new_direction',
15
+ };
@@ -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
+ export interface ProvisionOnboardingRequestDto {
9
+ /** Org the wizard is provisioning for. Must match the JWT context. */
10
+ orgId: string;
11
+ /** Project the wizard is provisioning for. Must exist within `orgId`. */
12
+ projectId: string;
13
+ /** Catalog provider id for the source-code resource (e.g. `XEMA_GITEA`, `GITHUB`). Must map to category `source-code`. */
14
+ sourceCodeProviderId: string;
15
+ /** Catalog provider id for the packages resource (e.g. `XEMA_NPM_REGISTRY`, `NPMJS`). Must map to category `packages`. */
16
+ packagesProviderId: string;
17
+ /** When true, persists "Don't ask again before creating platform-managed resources" as the durable org preference. Source of truth lives in `OrgOnboardingPreferences`; localStorage is best-effort UX state. */
18
+ alwaysAllowResourceCreation: boolean;
19
+ }
@@ -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,17 @@
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 ProvisionOnboardingResponseDto {
9
+ /** Org the wizard provisioned for. */
10
+ orgId: string;
11
+ /** Project the wizard provisioned for. */
12
+ projectId: string;
13
+ /** Active `OrgIntegration.id` for the chosen source-code provider. Omitted when the provider is system-shareable (no per-org row). */
14
+ sourceCodeIntegrationId?: string;
15
+ /** Active `OrgIntegration.id` for the chosen packages provider. Omitted when the provider is system-shareable (no per-org row). */
16
+ packagesIntegrationId?: string;
17
+ }
@@ -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 { ProvisionOnboardingResponseDto } from './provisionOnboardingResponseDto';
9
+ export interface ProvisionOnboardingResponseDtoDataEnvelope {
10
+ data: ProvisionOnboardingResponseDto;
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 { PutManifestDtoManifest } from './putManifestDtoManifest';
9
+ export interface PutManifestDto {
10
+ /** Full manifest JSON object conforming to ProjectManifest schema */
11
+ manifest: PutManifestDtoManifest;
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
+ * Full manifest JSON object conforming to ProjectManifest schema
10
+ */
11
+ export type PutManifestDtoManifest = {
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 ResolveWalletsRequestDto {
9
+ /** Wallet names to resolve. Must all exist within the project/org scope; missing names fail-fast with WORKFLOW_WALLET_NOT_FOUND. */
10
+ names: 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,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 { ResolvedWalletsResponseDtoSecrets } from './resolvedWalletsResponseDtoSecrets';
9
+ import type { ResolvedWalletsResponseDtoVars } from './resolvedWalletsResponseDtoVars';
10
+ import type { ResolvedWalletsResponseDtoWalletKeyMap } from './resolvedWalletsResponseDtoWalletKeyMap';
11
+ export interface ResolvedWalletsResponseDto {
12
+ /** Non-secret variables resolved from the requested wallets. Project-scoped wallets override org-scoped wallets sharing the same key. */
13
+ vars: ResolvedWalletsResponseDtoVars;
14
+ /** Secret variables resolved from the requested wallets, decrypted. Treat as sensitive — consumers must redact in logs. */
15
+ secrets: ResolvedWalletsResponseDtoSecrets;
16
+ /** Provenance map: variable key → wallet name that contributed the value. Lets the engine/audit show which wallet served each key. */
17
+ walletKeyMap: ResolvedWalletsResponseDtoWalletKeyMap;
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 { ResolvedWalletsResponseDto } from './resolvedWalletsResponseDto';
9
+ export interface ResolvedWalletsResponseDtoDataEnvelope {
10
+ data: ResolvedWalletsResponseDto;
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
+ * Secret variables resolved from the requested wallets, decrypted. Treat as sensitive — consumers must redact in logs.
10
+ */
11
+ export type ResolvedWalletsResponseDtoSecrets = {
12
+ [key: string]: string;
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,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
+ * Non-secret variables resolved from the requested wallets. Project-scoped wallets override org-scoped wallets sharing the same key.
10
+ */
11
+ export type ResolvedWalletsResponseDtoVars = {
12
+ [key: string]: string;
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,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
+ * Provenance map: variable key → wallet name that contributed the value. Lets the engine/audit show which wallet served each key.
10
+ */
11
+ export type ResolvedWalletsResponseDtoWalletKeyMap = {
12
+ [key: string]: string;
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 RevokeProjectRoleDto {
9
+ userId: string;
10
+ role: 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,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 SetPreferredImageVariantDto {
9
+ /**
10
+ * Workspace-image variant slug to prefer for this project. Set null to clear the preference and let the resolver cascade to the org default.
11
+ * @nullable
12
+ */
13
+ preferredImageVariantSlug?: string | null;
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,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 UpdateProjectDto {
9
+ /** Human-readable project name. */
10
+ name?: string;
11
+ /**
12
+ * Optional project description. Set null to clear the existing description.
13
+ * @nullable
14
+ */
15
+ description?: 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 });