@firmer/mesh 0.0.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 (111) hide show
  1. package/README.md +24 -0
  2. package/dist/asm/index.d.ts +11 -0
  3. package/dist/cause/codeable.d.ts +5 -0
  4. package/dist/cause/errors.d.ts +1 -0
  5. package/dist/cause/index.d.ts +3 -0
  6. package/dist/cause/status.d.ts +46 -0
  7. package/dist/codec/codec.d.ts +43 -0
  8. package/dist/codec/index.d.ts +2 -0
  9. package/dist/codec/json.d.ts +12 -0
  10. package/dist/grpc/consumer.d.ts +8 -0
  11. package/dist/grpc/index.d.ts +3 -0
  12. package/dist/grpc/interceptor.d.ts +2 -0
  13. package/dist/grpc/provider.d.ts +5 -0
  14. package/dist/http/consumer.d.ts +12 -0
  15. package/dist/http/index.d.ts +2 -0
  16. package/dist/http/provider.d.ts +5 -0
  17. package/dist/index.d.ts +116 -0
  18. package/dist/macro/ark.d.ts +84 -0
  19. package/dist/macro/binding.d.ts +1 -0
  20. package/dist/macro/dsa.d.ts +20 -0
  21. package/dist/macro/env.d.ts +43 -0
  22. package/dist/macro/idx.d.ts +12 -0
  23. package/dist/macro/index.d.ts +10 -0
  24. package/dist/macro/inspector.d.ts +144 -0
  25. package/dist/macro/loader.d.ts +15 -0
  26. package/dist/macro/mpi.d.ts +21 -0
  27. package/dist/macro/mps.d.ts +12 -0
  28. package/dist/macro/spi.d.ts +13 -0
  29. package/dist/mesh.d.ts +2 -0
  30. package/dist/mesh.js +11088 -0
  31. package/dist/mesh.umd.cjs +24 -0
  32. package/dist/mpc/compiler.d.ts +23 -0
  33. package/dist/mpc/consumer.d.ts +28 -0
  34. package/dist/mpc/consumer_filter.d.ts +6 -0
  35. package/dist/mpc/context.d.ts +33 -0
  36. package/dist/mpc/eden.d.ts +44 -0
  37. package/dist/mpc/execution.d.ts +74 -0
  38. package/dist/mpc/filter.d.ts +19 -0
  39. package/dist/mpc/hook.d.ts +23 -0
  40. package/dist/mpc/index.d.ts +16 -0
  41. package/dist/mpc/invoker.d.ts +57 -0
  42. package/dist/mpc/mesh.d.ts +42 -0
  43. package/dist/mpc/mesh_eden.d.ts +25 -0
  44. package/dist/mpc/mock.d.ts +7 -0
  45. package/dist/mpc/provider.d.ts +10 -0
  46. package/dist/mpc/proxy.d.ts +6 -0
  47. package/dist/mpc/reference.d.ts +21 -0
  48. package/dist/mpc/service.d.ts +7 -0
  49. package/dist/mpc/urn.d.ts +32 -0
  50. package/dist/psi/builtin.d.ts +49 -0
  51. package/dist/psi/cache.d.ts +44 -0
  52. package/dist/psi/cipher.d.ts +73 -0
  53. package/dist/psi/cluster.d.ts +11 -0
  54. package/dist/psi/commerce.d.ts +20 -0
  55. package/dist/psi/context.d.ts +148 -0
  56. package/dist/psi/cryptor.d.ts +23 -0
  57. package/dist/psi/datahouse.d.ts +24 -0
  58. package/dist/psi/dispatcher.d.ts +13 -0
  59. package/dist/psi/endpoint.d.ts +14 -0
  60. package/dist/psi/evaluator.d.ts +20 -0
  61. package/dist/psi/graph.d.ts +11 -0
  62. package/dist/psi/index.d.ts +29 -0
  63. package/dist/psi/kms.d.ts +20 -0
  64. package/dist/psi/kv.d.ts +24 -0
  65. package/dist/psi/licenser.d.ts +24 -0
  66. package/dist/psi/locker.d.ts +19 -0
  67. package/dist/psi/network.d.ts +49 -0
  68. package/dist/psi/pipeline.d.ts +28 -0
  69. package/dist/psi/publisher.d.ts +12 -0
  70. package/dist/psi/registry.d.ts +20 -0
  71. package/dist/psi/routable.d.ts +37 -0
  72. package/dist/psi/savepoint.d.ts +24 -0
  73. package/dist/psi/scheduler.d.ts +47 -0
  74. package/dist/psi/sequence.d.ts +20 -0
  75. package/dist/psi/subscriber.d.ts +11 -0
  76. package/dist/psi/tokenizer.d.ts +48 -0
  77. package/dist/psi/transport.d.ts +33 -0
  78. package/dist/psi/vfs.d.ts +32 -0
  79. package/dist/psi/workflow.d.ts +35 -0
  80. package/dist/schema/citizen.d.ts +25 -0
  81. package/dist/schema/index.d.ts +2 -0
  82. package/dist/schema/schema.d.ts +2 -0
  83. package/dist/system/index.d.ts +1 -0
  84. package/dist/system/mesh_network.d.ts +15 -0
  85. package/dist/test/network.test.d.ts +4 -0
  86. package/dist/tool/addrs.d.ts +11 -0
  87. package/dist/tool/index.d.ts +3 -0
  88. package/dist/tool/table.d.ts +7 -0
  89. package/dist/tool/tool.d.ts +31 -0
  90. package/dist/types/builtin.d.ts +121 -0
  91. package/dist/types/cipher.d.ts +111 -0
  92. package/dist/types/document.d.ts +34 -0
  93. package/dist/types/entity.d.ts +59 -0
  94. package/dist/types/enums.d.ts +2 -0
  95. package/dist/types/environ.d.ts +52 -0
  96. package/dist/types/event.d.ts +55 -0
  97. package/dist/types/index.d.ts +20 -0
  98. package/dist/types/keys.d.ts +41 -0
  99. package/dist/types/license.d.ts +111 -0
  100. package/dist/types/oauth2.d.ts +138 -0
  101. package/dist/types/payload.d.ts +29 -0
  102. package/dist/types/principal.d.ts +35 -0
  103. package/dist/types/registration.d.ts +114 -0
  104. package/dist/types/route.d.ts +90 -0
  105. package/dist/types/savepoint.d.ts +34 -0
  106. package/dist/types/script.d.ts +26 -0
  107. package/dist/types/status.d.ts +13 -0
  108. package/dist/types/transport.d.ts +40 -0
  109. package/dist/types/version.d.ts +10 -0
  110. package/dist/types/workflow.d.ts +190 -0
  111. package/package.json +56 -0
@@ -0,0 +1,21 @@
1
+ export declare class MPI {
2
+ readonly name: string;
3
+ readonly version: string;
4
+ readonly proto: string;
5
+ readonly codec: string;
6
+ readonly flags: number;
7
+ readonly timeout: number;
8
+ readonly retries: number;
9
+ readonly mdc: string;
10
+ readonly zone: string;
11
+ readonly cluster: string;
12
+ readonly cell: string;
13
+ readonly group: string;
14
+ readonly address: string;
15
+ kind: any;
16
+ retype: any;
17
+ attributes: Map<string, string>;
18
+ constructor(name: string, version: string, proto: string, codec: string, flags: number, timeout: number, retries: number, mdc: string, zone: string, cluster: string, cell: string, group: string, address: string, retype: any);
19
+ decorate<T>(target: Object, propertyKey: string | symbol, descriptor?: TypedPropertyDescriptor<T>): TypedPropertyDescriptor<T> | void;
20
+ }
21
+ export declare function mpi(name?: string, retype?: any, timeout?: number, version?: string, proto?: string, codec?: string, flags?: number, retries?: number, mdc?: string, zone?: string, cluster?: string, cell?: string, group?: string, address?: string): PropertyDecorator & MethodDecorator;
@@ -0,0 +1,12 @@
1
+ export declare class MPS {
2
+ private readonly name;
3
+ private readonly version;
4
+ private readonly proto;
5
+ private readonly codec;
6
+ private readonly flags;
7
+ private readonly timeout;
8
+ private traits?;
9
+ constructor(name: string, version: string, proto: string, codec: string, flags: number, timeout: number);
10
+ decorate<TFunction extends Function>(target: TFunction): TFunction | void;
11
+ }
12
+ export declare function mps(name?: string, version?: string, proto?: string, codec?: string, flags?: number, timeout?: number): ClassDecorator;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Metadata annotation for Serial Peripheral Interface. Can be used with {@link ServiceLoader#load(Class)}
3
+ * or dependency injection at compile time and runtime time.
4
+ */
5
+ export declare class SPI {
6
+ readonly name: string;
7
+ readonly pattern: string;
8
+ readonly priority: number;
9
+ readonly prototype: boolean;
10
+ constructor(name: string, pattern: string, priority: number, prototype: boolean);
11
+ decorate<TFunction extends Function>(target: TFunction): TFunction | void;
12
+ }
13
+ export declare function spi(name?: string, pattern?: string, priority?: number, prototype?: boolean): ClassDecorator;
package/dist/mesh.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from './index'
2
+ export {}