@cirrobio/api-client 0.1.30 → 0.2.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 (98) hide show
  1. package/.openapi-generator/FILES +22 -0
  2. package/README.md +1 -1
  3. package/dist/apis/FileApi.d.ts +14 -0
  4. package/dist/apis/FileApi.js +60 -0
  5. package/dist/apis/GovernanceApi.d.ts +127 -1
  6. package/dist/apis/GovernanceApi.js +555 -1
  7. package/dist/apis/SharingApi.d.ts +131 -0
  8. package/dist/apis/SharingApi.js +545 -0
  9. package/dist/apis/ToolsApi.d.ts +31 -0
  10. package/dist/apis/ToolsApi.js +137 -0
  11. package/dist/apis/index.d.ts +2 -0
  12. package/dist/apis/index.js +2 -0
  13. package/dist/models/AccessType.d.ts +3 -1
  14. package/dist/models/AccessType.js +2 -0
  15. package/dist/models/ClassificationInput.d.ts +6 -0
  16. package/dist/models/ClassificationInput.js +3 -0
  17. package/dist/models/ContactInput.d.ts +55 -0
  18. package/dist/models/ContactInput.js +62 -0
  19. package/dist/models/DatasetCondition.d.ts +38 -0
  20. package/dist/models/DatasetCondition.js +54 -0
  21. package/dist/models/DatasetConditionField.d.ts +24 -0
  22. package/dist/models/DatasetConditionField.js +39 -0
  23. package/dist/models/GovernanceClassification.d.ts +6 -0
  24. package/dist/models/GovernanceClassification.js +3 -0
  25. package/dist/models/GovernanceContact.d.ts +61 -0
  26. package/dist/models/GovernanceContact.js +65 -0
  27. package/dist/models/GovernanceExpiry.d.ts +44 -0
  28. package/dist/models/GovernanceExpiry.js +55 -0
  29. package/dist/models/GovernanceExpiryType.d.ts +25 -0
  30. package/dist/models/GovernanceExpiryType.js +40 -0
  31. package/dist/models/GovernanceFile.d.ts +50 -0
  32. package/dist/models/GovernanceFile.js +57 -0
  33. package/dist/models/GovernanceFileType.d.ts +23 -0
  34. package/dist/models/GovernanceFileType.js +38 -0
  35. package/dist/models/GovernanceRequirement.d.ts +108 -0
  36. package/dist/models/GovernanceRequirement.js +81 -0
  37. package/dist/models/GovernanceRequirementFile.d.ts +50 -0
  38. package/dist/models/GovernanceRequirementFile.js +57 -0
  39. package/dist/models/GovernanceScope.d.ts +23 -0
  40. package/dist/models/GovernanceScope.js +38 -0
  41. package/dist/models/GovernanceTrainingVerification.d.ts +23 -0
  42. package/dist/models/GovernanceTrainingVerification.js +38 -0
  43. package/dist/models/GovernanceType.d.ts +26 -0
  44. package/dist/models/GovernanceType.js +41 -0
  45. package/dist/models/MoveDatasetInput.d.ts +43 -0
  46. package/dist/models/MoveDatasetInput.js +56 -0
  47. package/dist/models/MoveDatasetResponse.d.ts +43 -0
  48. package/dist/models/MoveDatasetResponse.js +56 -0
  49. package/dist/models/NamedItem.d.ts +37 -0
  50. package/dist/models/NamedItem.js +53 -0
  51. package/dist/models/ProjectSettings.d.ts +6 -0
  52. package/dist/models/ProjectSettings.js +2 -0
  53. package/dist/models/RequirementInput.d.ts +96 -0
  54. package/dist/models/RequirementInput.js +81 -0
  55. package/dist/models/Share.d.ts +86 -0
  56. package/dist/models/Share.js +78 -0
  57. package/dist/models/ShareDetail.d.ts +106 -0
  58. package/dist/models/ShareDetail.js +89 -0
  59. package/dist/models/ShareInput.d.ts +62 -0
  60. package/dist/models/ShareInput.js +65 -0
  61. package/dist/models/ShareType.d.ts +24 -0
  62. package/dist/models/ShareType.js +39 -0
  63. package/dist/models/index.d.ts +20 -0
  64. package/dist/models/index.js +20 -0
  65. package/dist/runtime.js +1 -1
  66. package/package.json +1 -1
  67. package/src/apis/FileApi.ts +52 -0
  68. package/src/apis/GovernanceApi.ts +457 -1
  69. package/src/apis/SharingApi.ts +442 -0
  70. package/src/apis/ToolsApi.ts +80 -0
  71. package/src/apis/index.ts +2 -0
  72. package/src/models/AccessType.ts +3 -1
  73. package/src/models/ClassificationInput.ts +9 -0
  74. package/src/models/ContactInput.ts +102 -0
  75. package/src/models/DatasetCondition.ts +82 -0
  76. package/src/models/DatasetConditionField.ts +38 -0
  77. package/src/models/GovernanceClassification.ts +9 -0
  78. package/src/models/GovernanceContact.ts +111 -0
  79. package/src/models/GovernanceExpiry.ts +88 -0
  80. package/src/models/GovernanceExpiryType.ts +39 -0
  81. package/src/models/GovernanceFile.ts +96 -0
  82. package/src/models/GovernanceFileType.ts +37 -0
  83. package/src/models/GovernanceRequirement.ts +194 -0
  84. package/src/models/GovernanceRequirementFile.ts +96 -0
  85. package/src/models/GovernanceScope.ts +37 -0
  86. package/src/models/GovernanceTrainingVerification.ts +37 -0
  87. package/src/models/GovernanceType.ts +40 -0
  88. package/src/models/MoveDatasetInput.ts +84 -0
  89. package/src/models/MoveDatasetResponse.ts +84 -0
  90. package/src/models/NamedItem.ts +75 -0
  91. package/src/models/ProjectSettings.ts +8 -0
  92. package/src/models/RequirementInput.ts +182 -0
  93. package/src/models/Share.ts +154 -0
  94. package/src/models/ShareDetail.ts +193 -0
  95. package/src/models/ShareInput.ts +116 -0
  96. package/src/models/ShareType.ts +38 -0
  97. package/src/models/index.ts +20 -0
  98. package/src/runtime.ts +1 -1
@@ -22,6 +22,7 @@ export * from './ColumnDefinition';
22
22
  export * from './ComputeEnvironmentConfiguration';
23
23
  export * from './ComputeEnvironmentConfigurationInput';
24
24
  export * from './Contact';
25
+ export * from './ContactInput';
25
26
  export * from './CreateNotebookInstanceRequest';
26
27
  export * from './CreateProjectAccessRequest';
27
28
  export * from './CreateReferenceRequest';
@@ -32,6 +33,8 @@ export * from './Dashboard';
32
33
  export * from './DashboardRequest';
33
34
  export * from './Dataset';
34
35
  export * from './DatasetAssetsManifest';
36
+ export * from './DatasetCondition';
37
+ export * from './DatasetConditionField';
35
38
  export * from './DatasetDetail';
36
39
  export * from './DatasetViz';
37
40
  export * from './EnvironmentType';
@@ -47,12 +50,24 @@ export * from './FormSchema';
47
50
  export * from './GenerateSftpCredentialsRequest';
48
51
  export * from './GetExecutionLogsResponse';
49
52
  export * from './GovernanceClassification';
53
+ export * from './GovernanceContact';
54
+ export * from './GovernanceExpiry';
55
+ export * from './GovernanceExpiryType';
56
+ export * from './GovernanceFile';
57
+ export * from './GovernanceFileType';
58
+ export * from './GovernanceRequirement';
59
+ export * from './GovernanceScope';
60
+ export * from './GovernanceTrainingVerification';
61
+ export * from './GovernanceType';
50
62
  export * from './ImportDataRequest';
51
63
  export * from './InviteUserRequest';
52
64
  export * from './InviteUserResponse';
53
65
  export * from './LogEntry';
54
66
  export * from './LoginProvider';
55
67
  export * from './MetricRecord';
68
+ export * from './MoveDatasetInput';
69
+ export * from './MoveDatasetResponse';
70
+ export * from './NamedItem';
56
71
  export * from './NotebookInstance';
57
72
  export * from './NotebookInstanceStatusResponse';
58
73
  export * from './OpenNotebookInstanceResponse';
@@ -78,6 +93,7 @@ export * from './Reference';
78
93
  export * from './ReferenceType';
79
94
  export * from './RepositoryType';
80
95
  export * from './RequestStatus';
96
+ export * from './RequirementInput';
81
97
  export * from './ResourcesInfo';
82
98
  export * from './RunAnalysisRequest';
83
99
  export * from './Sample';
@@ -85,6 +101,10 @@ export * from './SampleRequest';
85
101
  export * from './ServiceConnection';
86
102
  export * from './SetUserProjectRoleRequest';
87
103
  export * from './SftpCredentials';
104
+ export * from './Share';
105
+ export * from './ShareDetail';
106
+ export * from './ShareInput';
107
+ export * from './ShareType';
88
108
  export * from './Status';
89
109
  export * from './StopExecutionResponse';
90
110
  export * from './SyncStatus';
package/src/runtime.ts CHANGED
@@ -13,7 +13,7 @@
13
13
  */
14
14
 
15
15
 
16
- export const BASE_PATH = "https://app.cirro.bio/api".replace(/\/+$/, "");
16
+ export const BASE_PATH = "https://dev.cirro.bio/api".replace(/\/+$/, "");
17
17
 
18
18
  export interface ConfigurationParameters {
19
19
  basePath?: string; // override base path