@liminalfunctions/framework 1.0.60 → 1.0.61

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/dist/code_generation/generate_client_library.js +0 -1
  2. package/dist/code_generation/generate_client_library.js.map +1 -1
  3. package/dist/utils/mongoose_from_zod.js +1 -1
  4. package/dist/utils/mongoose_from_zod.js.map +1 -1
  5. package/package.json +1 -1
  6. package/src/code_generation/generate_client_library.ts +0 -1
  7. package/src/utils/mongoose_from_zod.ts +3 -1
  8. package/test/tmp/dist/Brief_News_Category.d.ts +26 -0
  9. package/test/tmp/dist/Brief_News_Category.js +104 -0
  10. package/test/tmp/dist/Brief_News_Category.js.map +1 -0
  11. package/test/tmp/dist/Client.d.ts +30 -0
  12. package/test/tmp/dist/Client.js +116 -0
  13. package/test/tmp/dist/Client.js.map +1 -0
  14. package/test/tmp/dist/Institution.d.ts +28 -0
  15. package/test/tmp/dist/Institution.js +113 -0
  16. package/test/tmp/dist/Institution.js.map +1 -0
  17. package/test/tmp/dist/Project.d.ts +46 -0
  18. package/test/tmp/dist/Project.js +167 -0
  19. package/test/tmp/dist/Project.js.map +1 -0
  20. package/test/tmp/dist/index.d.ts +24 -0
  21. package/test/tmp/dist/index.js +35 -0
  22. package/test/tmp/dist/index.js.map +1 -0
  23. package/test/tmp/dist/types/brief_news_category.d.ts +7 -0
  24. package/test/tmp/dist/types/brief_news_category.js +2 -0
  25. package/test/tmp/dist/types/brief_news_category.js.map +1 -0
  26. package/test/tmp/dist/types/brief_news_category_post.d.ts +7 -0
  27. package/test/tmp/dist/types/brief_news_category_post.js +2 -0
  28. package/test/tmp/dist/types/brief_news_category_post.js.map +1 -0
  29. package/test/tmp/dist/types/brief_news_category_put.d.ts +7 -0
  30. package/test/tmp/dist/types/brief_news_category_put.js +2 -0
  31. package/test/tmp/dist/types/brief_news_category_put.js.map +1 -0
  32. package/test/tmp/dist/types/brief_news_category_query.d.ts +26 -0
  33. package/test/tmp/dist/types/brief_news_category_query.js +2 -0
  34. package/test/tmp/dist/types/brief_news_category_query.js.map +1 -0
  35. package/test/tmp/dist/types/client.d.ts +5 -0
  36. package/test/tmp/dist/types/client.js +2 -0
  37. package/test/tmp/dist/types/client.js.map +1 -0
  38. package/test/tmp/dist/types/client_post.d.ts +5 -0
  39. package/test/tmp/dist/types/client_post.js +2 -0
  40. package/test/tmp/dist/types/client_post.js.map +1 -0
  41. package/test/tmp/dist/types/client_put.d.ts +5 -0
  42. package/test/tmp/dist/types/client_put.js +2 -0
  43. package/test/tmp/dist/types/client_put.js.map +1 -0
  44. package/test/tmp/dist/types/client_query.d.ts +18 -0
  45. package/test/tmp/dist/types/client_query.js +2 -0
  46. package/test/tmp/dist/types/client_query.js.map +1 -0
  47. package/test/tmp/dist/types/institution.d.ts +4 -0
  48. package/test/tmp/dist/types/institution.js +2 -0
  49. package/test/tmp/dist/types/institution.js.map +1 -0
  50. package/test/tmp/dist/types/institution_post.d.ts +4 -0
  51. package/test/tmp/dist/types/institution_post.js +2 -0
  52. package/test/tmp/dist/types/institution_post.js.map +1 -0
  53. package/test/tmp/dist/types/institution_put.d.ts +4 -0
  54. package/test/tmp/dist/types/institution_put.js +2 -0
  55. package/test/tmp/dist/types/institution_put.js.map +1 -0
  56. package/test/tmp/dist/types/institution_query.d.ts +14 -0
  57. package/test/tmp/dist/types/institution_query.js +2 -0
  58. package/test/tmp/dist/types/institution_query.js.map +1 -0
  59. package/test/tmp/dist/types/project.d.ts +11 -0
  60. package/test/tmp/dist/types/project.js +2 -0
  61. package/test/tmp/dist/types/project.js.map +1 -0
  62. package/test/tmp/dist/types/project_post.d.ts +11 -0
  63. package/test/tmp/dist/types/project_post.js +2 -0
  64. package/test/tmp/dist/types/project_post.js.map +1 -0
  65. package/test/tmp/dist/types/project_put.d.ts +11 -0
  66. package/test/tmp/dist/types/project_put.js +2 -0
  67. package/test/tmp/dist/types/project_put.js.map +1 -0
  68. package/test/tmp/dist/types/project_query.d.ts +27 -0
  69. package/test/tmp/dist/types/project_query.js +2 -0
  70. package/test/tmp/dist/types/project_query.js.map +1 -0
  71. package/test/tmp/dist/utils/utils.d.ts +11 -0
  72. package/test/tmp/dist/utils/utils.js +16 -0
  73. package/test/tmp/dist/utils/utils.js.map +1 -0
  74. package/test/tmp/package-lock.json +573 -0
  75. package/test/tmp/src/Brief_News_Category.ts +120 -0
  76. package/test/tmp/src/Client.ts +134 -0
  77. package/test/tmp/src/Institution.ts +130 -0
  78. package/test/tmp/src/{Test_Collection.ts → Project.ts} +34 -42
  79. package/test/tmp/src/index.ts +4 -4
  80. package/test/tmp/src/types/brief_news_category.ts +7 -0
  81. package/test/tmp/src/types/brief_news_category_post.ts +7 -0
  82. package/test/tmp/src/types/brief_news_category_put.ts +7 -0
  83. package/test/tmp/src/types/brief_news_category_query.ts +26 -0
  84. package/test/tmp/src/types/client.ts +5 -0
  85. package/test/tmp/src/types/client_post.ts +5 -0
  86. package/test/tmp/src/types/client_put.ts +5 -0
  87. package/test/tmp/src/types/client_query.ts +18 -0
  88. package/test/tmp/src/types/institution.ts +4 -0
  89. package/test/tmp/src/types/institution_post.ts +4 -0
  90. package/test/tmp/src/types/institution_put.ts +4 -0
  91. package/test/tmp/src/types/{test_collection_query.ts → institution_query.ts} +6 -2
  92. package/test/tmp/src/types/project.ts +11 -0
  93. package/test/tmp/src/types/project_post.ts +11 -0
  94. package/test/tmp/src/types/project_put.ts +11 -0
  95. package/test/tmp/src/types/project_query.ts +27 -0
  96. package/test/tmp/src/types/test_collection.ts +0 -9
  97. package/test/tmp/src/types/test_collection_post.ts +0 -9
  98. package/test/tmp/src/types/test_collection_put.ts +0 -9
@@ -0,0 +1,27 @@
1
+ export type project_query = {
2
+ "limit"?: number
3
+ "cursor"?: string
4
+ "sort_order"?: ("ascending" | "descending")
5
+ "_id"?: string
6
+ "_id_gt"?: string
7
+ "_id_lt"?: string
8
+ "_id_in"?: string[]
9
+ "name"?: string
10
+ "name_gt"?: string
11
+ "name_lt"?: string
12
+ "name_in"?: string[]
13
+ "institution_id"?: string
14
+ "institution_id_gt"?: string
15
+ "institution_id_lt"?: string
16
+ "institution_id_in"?: string[]
17
+ "client_id"?: string
18
+ "client_id_gt"?: string
19
+ "client_id_lt"?: string
20
+ "client_id_in"?: string[]
21
+ "project_number"?: number
22
+ "project_number_gt"?: number
23
+ "project_number_gte"?: number
24
+ "project_number_lt"?: number
25
+ "project_number_lte"?: number
26
+ "sort"?: ("_id" | "name" | "institution_id" | "client_id" | "project_number")
27
+ }
@@ -1,9 +0,0 @@
1
- export type test_collection = {
2
- "_id": string
3
- "loop_array": type_DKPQfBlfOoaJOpkm[]
4
- }
5
- type type_DKPQfBlfOoaJOpkm = {
6
- "_id": string
7
- "val": string
8
- "looped_1": type_DKPQfBlfOoaJOpkm
9
- }
@@ -1,9 +0,0 @@
1
- export type test_collection_post = {
2
- "_id"?: string
3
- "loop_array": type_ylTVUJrNKVXwVoDx[]
4
- }
5
- type type_ylTVUJrNKVXwVoDx = {
6
- "_id": string
7
- "val": string
8
- "looped_1": type_ylTVUJrNKVXwVoDx
9
- }
@@ -1,9 +0,0 @@
1
- export type test_collection_put = {
2
- "_id"?: string
3
- "loop_array"?: type_piPoCkhzBsLXRPsX[]
4
- }
5
- type type_piPoCkhzBsLXRPsX = {
6
- "_id": string
7
- "val": string
8
- "looped_1": type_piPoCkhzBsLXRPsX
9
- }