@toa.io/extensions.exposition 1.0.0-alpha.85 → 1.0.0-alpha.88

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 (91) hide show
  1. package/components/identity.basic/operations/transit.js +3 -3
  2. package/components/identity.basic/operations/transit.js.map +1 -1
  3. package/components/identity.basic/operations/tsconfig.tsbuildinfo +1 -1
  4. package/components/identity.basic/source/transit.ts +3 -3
  5. package/components/octets.storage/manifest.toa.yaml +3 -5
  6. package/components/octets.storage/operations/get.js +1 -1
  7. package/components/octets.storage/operations/head.js +7 -0
  8. package/components/octets.storage/operations/{store.js → put.js} +9 -9
  9. package/documentation/components.md +14 -0
  10. package/documentation/octets.md +17 -47
  11. package/features/identity.feature +11 -4
  12. package/features/{octets.meta.feature → octets.attributes.feature} +13 -12
  13. package/features/octets.cloudinary.feature +68 -0
  14. package/features/octets.download.feature +6 -6
  15. package/features/octets.entries.feature +8 -57
  16. package/features/octets.feature +8 -60
  17. package/features/octets.workflows.feature +0 -36
  18. package/features/steps/.env.example +3 -0
  19. package/features/steps/Parameters.ts +10 -0
  20. package/features/steps/components/octets.tester/manifest.toa.yaml +0 -1
  21. package/features/steps/components/octets.tester/operations/bar.js +0 -1
  22. package/features/steps/components/octets.tester/operations/baz.js +0 -1
  23. package/features/steps/components/octets.tester/operations/foo.js +0 -1
  24. package/package.json +5 -5
  25. package/source/Endpoint.ts +3 -3
  26. package/source/HTTP/Server.ts +4 -0
  27. package/source/RTD/syntax/parse.test.ts +1 -1
  28. package/source/directives/auth/Authorization.ts +9 -9
  29. package/source/directives/auth/Echo.ts +19 -5
  30. package/source/directives/auth/Scheme.ts +1 -1
  31. package/source/directives/auth/types.ts +1 -1
  32. package/source/directives/io/Output.ts +2 -2
  33. package/source/directives/octets/Delete.ts +11 -11
  34. package/source/directives/octets/{Fetch.ts → Get.ts} +17 -34
  35. package/source/directives/octets/Octets.ts +6 -8
  36. package/source/directives/octets/{Store.ts → Put.ts} +9 -14
  37. package/source/directives/octets/Workflow.ts +1 -1
  38. package/source/directives/octets/schemas.ts +4 -6
  39. package/source/directives/octets/workflows/Workflow.ts +2 -3
  40. package/source/directives/vary/embeddings/Language.ts +2 -2
  41. package/source/root.ts +5 -5
  42. package/transpiled/Endpoint.js +3 -3
  43. package/transpiled/Endpoint.js.map +1 -1
  44. package/transpiled/HTTP/Server.js +2 -0
  45. package/transpiled/HTTP/Server.js.map +1 -1
  46. package/transpiled/directives/auth/Authorization.d.ts +1 -1
  47. package/transpiled/directives/auth/Authorization.js +8 -10
  48. package/transpiled/directives/auth/Authorization.js.map +1 -1
  49. package/transpiled/directives/auth/Echo.d.ts +4 -3
  50. package/transpiled/directives/auth/Echo.js +13 -3
  51. package/transpiled/directives/auth/Echo.js.map +1 -1
  52. package/transpiled/directives/auth/Scheme.js +1 -1
  53. package/transpiled/directives/auth/Scheme.js.map +1 -1
  54. package/transpiled/directives/auth/types.d.ts +1 -1
  55. package/transpiled/directives/io/Output.js +1 -1
  56. package/transpiled/directives/io/Output.js.map +1 -1
  57. package/transpiled/directives/octets/Delete.js +8 -8
  58. package/transpiled/directives/octets/Delete.js.map +1 -1
  59. package/transpiled/directives/octets/{Fetch.d.ts → Get.d.ts} +2 -3
  60. package/transpiled/directives/octets/{Fetch.js → Get.js} +19 -24
  61. package/transpiled/directives/octets/Get.js.map +1 -0
  62. package/transpiled/directives/octets/Octets.js +6 -8
  63. package/transpiled/directives/octets/Octets.js.map +1 -1
  64. package/transpiled/directives/octets/{Store.d.ts → Put.d.ts} +2 -2
  65. package/transpiled/directives/octets/{Store.js → Put.js} +11 -14
  66. package/transpiled/directives/octets/Put.js.map +1 -0
  67. package/transpiled/directives/octets/Workflow.js +1 -1
  68. package/transpiled/directives/octets/Workflow.js.map +1 -1
  69. package/transpiled/directives/octets/schemas.d.ts +4 -6
  70. package/transpiled/directives/octets/schemas.js +3 -4
  71. package/transpiled/directives/octets/schemas.js.map +1 -1
  72. package/transpiled/directives/octets/workflows/Workflow.d.ts +1 -1
  73. package/transpiled/directives/octets/workflows/Workflow.js.map +1 -1
  74. package/transpiled/directives/vary/embeddings/Language.js +2 -2
  75. package/transpiled/directives/vary/embeddings/Language.js.map +1 -1
  76. package/transpiled/root.js +5 -5
  77. package/transpiled/root.js.map +1 -1
  78. package/transpiled/tsconfig.tsbuildinfo +1 -1
  79. package/components/octets.storage/operations/fetch.js +0 -46
  80. package/components/octets.storage/operations/list.js +0 -7
  81. package/features/steps/components/octets.tester/operations/diversify.js +0 -16
  82. package/schemas/octets/fetch.cos.yaml +0 -3
  83. package/schemas/octets/permute.cos.yaml +0 -1
  84. package/source/directives/octets/List.ts +0 -72
  85. package/transpiled/directives/octets/Fetch.js.map +0 -1
  86. package/transpiled/directives/octets/List.d.ts +0 -16
  87. package/transpiled/directives/octets/List.js +0 -74
  88. package/transpiled/directives/octets/List.js.map +0 -1
  89. package/transpiled/directives/octets/Store.js.map +0 -1
  90. /package/schemas/octets/{list.cos.yaml → get.cos.yaml} +0 -0
  91. /package/schemas/octets/{store.cos.yaml → put.cos.yaml} +0 -0
@@ -21,15 +21,15 @@ const PREDEFINED = {
21
21
  {
22
22
  verb: 'GET',
23
23
  directives: [
24
- {
25
- family: 'auth',
26
- name: 'echo',
27
- value: null
28
- },
29
24
  {
30
25
  family: 'io',
31
26
  name: 'output',
32
27
  value: ['id', 'roles']
28
+ },
29
+ {
30
+ family: 'auth',
31
+ name: 'echo',
32
+ value: null
33
33
  }
34
34
  ]
35
35
  }
@@ -1 +1 @@
1
- {"version":3,"file":"root.js","sourceRoot":"","sources":["../source/root.ts"],"names":[],"mappings":";;;AAAA,6CAA+C;AAC/C,+BAA8B;AAE9B,SAAgB,OAAO;IACrB,MAAM,KAAK,GAAG,OAAO,CAAC,GAAG,CAAC,cAAc,CAAA;IACxC,MAAM,IAAI,GAAG,KAAK,KAAK,SAAS,CAAC,CAAC,CAAC,IAAA,gBAAM,EAAc,KAAK,CAAC,CAAC,CAAC,CAAC,YAAM,CAAC,UAAU,EAAE,CAAA;IAEnF,IAAA,eAAK,EAAC,IAAI,EAAE,UAAU,CAAC,CAAA;IAEvB,OAAO,IAAI,CAAA;AACb,CAAC;AAPD,0BAOC;AAED,MAAM,UAAU,GAAgB;IAC9B,MAAM,EAAE;QACN;YACE,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE;gBACJ,QAAQ,EAAE,IAAI;gBACd,MAAM,EAAE,EAAE;gBACV,OAAO,EAAE;oBACP;wBACE,IAAI,EAAE,KAAK;wBACX,UAAU,EAAE;4BACV;gCACE,MAAM,EAAE,MAAM;gCACd,IAAI,EAAE,MAAM;gCACZ,KAAK,EAAE,IAAI;6BACZ;4BACD;gCACE,MAAM,EAAE,IAAI;gCACZ,IAAI,EAAE,QAAQ;gCACd,KAAK,EAAE,CAAC,IAAI,EAAE,OAAO,CAAC;6BACvB;yBACF;qBACF;iBACF;gBACD,UAAU,EAAE,EAAE;aACf;SACF;KACF;IACD,OAAO,EAAE,EAAE;IACX,UAAU,EAAE,EAAE;CACf,CAAA"}
1
+ {"version":3,"file":"root.js","sourceRoot":"","sources":["../source/root.ts"],"names":[],"mappings":";;;AAAA,6CAA+C;AAC/C,+BAA8B;AAE9B,SAAgB,OAAO;IACrB,MAAM,KAAK,GAAG,OAAO,CAAC,GAAG,CAAC,cAAc,CAAA;IACxC,MAAM,IAAI,GAAG,KAAK,KAAK,SAAS,CAAC,CAAC,CAAC,IAAA,gBAAM,EAAc,KAAK,CAAC,CAAC,CAAC,CAAC,YAAM,CAAC,UAAU,EAAE,CAAA;IAEnF,IAAA,eAAK,EAAC,IAAI,EAAE,UAAU,CAAC,CAAA;IAEvB,OAAO,IAAI,CAAA;AACb,CAAC;AAPD,0BAOC;AAED,MAAM,UAAU,GAAgB;IAC9B,MAAM,EAAE;QACN;YACE,IAAI,EAAE,WAAW;YACjB,IAAI,EAAE;gBACJ,QAAQ,EAAE,IAAI;gBACd,MAAM,EAAE,EAAE;gBACV,OAAO,EAAE;oBACP;wBACE,IAAI,EAAE,KAAK;wBACX,UAAU,EAAE;4BACV;gCACE,MAAM,EAAE,IAAI;gCACZ,IAAI,EAAE,QAAQ;gCACd,KAAK,EAAE,CAAC,IAAI,EAAE,OAAO,CAAC;6BACvB;4BACD;gCACE,MAAM,EAAE,MAAM;gCACd,IAAI,EAAE,MAAM;gCACZ,KAAK,EAAE,IAAI;6BACZ;yBACF;qBACF;iBACF;gBACD,UAAU,EAAE,EAAE;aACf;SACF;KACF;IACD,OAAO,EAAE,EAAE;IACX,UAAU,EAAE,EAAE;CACf,CAAA"}