@narrative.io/data-collaboration-sdk-ts 2.94.1 → 2.95.0-beta.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 (64) hide show
  1. package/build/access-rules/index.d.ts +1 -1
  2. package/build/access-tokens/index.d.ts +1 -1
  3. package/build/access-tokens/types.d.ts +2 -0
  4. package/build/access-tokens/types.js +2 -0
  5. package/build/apps/index.d.ts +8 -1
  6. package/build/apps/index.js +9 -0
  7. package/build/attributes/index.d.ts +1 -1
  8. package/build/authentication/index.d.ts +1 -1
  9. package/build/collaboration-policy/core/filter-builder.js +7 -1
  10. package/build/collaboration-policy/core/jsonschema/json-schema-types.d.ts +45 -0
  11. package/build/collaboration-policy/core/jsonschema/json-schema-types.js +1 -0
  12. package/build/collaboration-policy/core/jsonschema/policy-branches.d.ts +49 -0
  13. package/build/collaboration-policy/core/jsonschema/policy-branches.js +1 -0
  14. package/build/collaboration-policy/core/jsonschema/policy-evaluator.d.ts +22 -0
  15. package/build/collaboration-policy/core/jsonschema/policy-evaluator.js +260 -0
  16. package/build/collaboration-policy/core/jsonschema/sql-builder.d.ts +79 -0
  17. package/build/collaboration-policy/core/jsonschema/sql-builder.js +306 -0
  18. package/build/collaboration-policy/core/jsonschema/sql-poc.d.ts +79 -0
  19. package/build/collaboration-policy/core/jsonschema/sql-poc.js +305 -0
  20. package/build/collaboration-policy/core/types.d.ts +81 -10
  21. package/build/collaboration-policy/index.d.ts +5 -4
  22. package/build/collaboration-policy/index.js +4 -3
  23. package/build/collaboration-policy/useCollaborationPolicy.d.ts +13 -4
  24. package/build/collaboration-policy/useCollaborationPolicy.js +23 -1
  25. package/build/collaboration-policy/utils/path-helpers.d.ts +7 -3
  26. package/build/collaboration-policy/utils/path-helpers.js +6 -22
  27. package/build/company-info/index.d.ts +1 -1
  28. package/build/connections/index.d.ts +1 -1
  29. package/build/contracts/index.d.ts +1 -1
  30. package/build/data-planes/types.d.ts +1 -1
  31. package/build/data-streams/index.d.ts +1 -1
  32. package/build/datasets/index.d.ts +21 -3
  33. package/build/datasets/index.js +31 -2
  34. package/build/datasets/statistics-types.d.ts +81 -0
  35. package/build/datasets/statistics-types.js +1 -0
  36. package/build/datasets/types.d.ts +85 -9
  37. package/build/datasets/types.js +1 -0
  38. package/build/forecast/index.d.ts +1 -1
  39. package/build/index.d.ts +1 -0
  40. package/build/index.js +1 -0
  41. package/build/installations/index.d.ts +1 -1
  42. package/build/jobs/index.d.ts +1 -1
  43. package/build/jobs/types.d.ts +1 -0
  44. package/build/mappings/index.d.ts +1 -1
  45. package/build/model-inference/index.d.ts +1 -1
  46. package/build/model-training/index.d.ts +1 -1
  47. package/build/models/index.d.ts +1 -1
  48. package/build/nql/Ast.d.ts +1 -1
  49. package/build/nql/SubstraitParser.d.ts +771 -0
  50. package/build/nql/SubstraitParser.js +797 -0
  51. package/build/nql/index.d.ts +1 -1
  52. package/build/nql/index.js +1 -1
  53. package/build/nql/types.d.ts +9 -9
  54. package/build/products/index.d.ts +1 -1
  55. package/build/queries/index.d.ts +1 -1
  56. package/build/resources/index.d.ts +1 -1
  57. package/build/rosetta/types.d.ts +1 -1
  58. package/build/rosetta/types.js +1 -1
  59. package/build/rosetta-stone/index.d.ts +1 -1
  60. package/build/subscriptions/index.d.ts +1 -1
  61. package/build/uploads/index.d.ts +1 -1
  62. package/build/views/index.d.ts +1 -1
  63. package/build/workflows/index.d.ts +1 -1
  64. package/package.json +11 -10
@@ -111,4 +111,4 @@ declare class MappingsApi extends BaseApi {
111
111
  */
112
112
  getMapping(mappingId: string): Promise<Mapping>;
113
113
  }
114
- export { type Mapping, MappingsApi, type CreateMapping, type MappingExpressionDependencies, type MappingTestResult, type MappingTestResults, type ObjectMapping, type PropertyMapping, type RawMappingDefinition, type RawObjectMapping, type RawPropertyMapping, type RawValueMapping, type ValueMapping, };
114
+ export { type CreateMapping, type Mapping, type MappingExpressionDependencies, MappingsApi, type MappingTestResult, type MappingTestResults, type ObjectMapping, type PropertyMapping, type RawMappingDefinition, type RawObjectMapping, type RawPropertyMapping, type RawValueMapping, type ValueMapping, };
@@ -15,4 +15,4 @@ declare class ModelInferenceApi extends BaseApi {
15
15
  */
16
16
  runModelInference(request: ModelInferenceRunRequest): Promise<ModelInferenceRunJob>;
17
17
  }
18
- export { ModelInferenceApi, type InferenceConfig, type InferenceMessage, type InferenceModel, type InferenceUsage, type MessageRole, type ModelInferenceRunRequest, type ModelInferenceRunResult, };
18
+ export { type InferenceConfig, type InferenceMessage, type InferenceModel, type InferenceUsage, type MessageRole, ModelInferenceApi, type ModelInferenceRunRequest, type ModelInferenceRunResult, };
@@ -20,4 +20,4 @@ declare class ModelTrainingApi extends BaseApi {
20
20
  */
21
21
  trainClassifier(data: TrainClassifierRequest): Promise<TrainClassifierResponse>;
22
22
  }
23
- export { ModelTrainingApi, type OutputModel, type TrainModelRequest, type TrainModelResponse, type ModelTrainingConfig, type TrainClassifierRequest, type TrainClassifierResponse, };
23
+ export { ModelTrainingApi, type ModelTrainingConfig, type OutputModel, type TrainClassifierRequest, type TrainClassifierResponse, type TrainModelRequest, type TrainModelResponse, };
@@ -28,4 +28,4 @@ declare class ModelsApi extends BaseApi {
28
28
  */
29
29
  deleteModel(modelId: string): Promise<void>;
30
30
  }
31
- export { ModelsApi, type ModelCollaborators, type Model, type CreateModelRequest, type UpdateModelRequest, };
31
+ export { type CreateModelRequest, type Model, type ModelCollaborators, ModelsApi, type UpdateModelRequest, };
@@ -300,4 +300,4 @@ type NqlAst = {
300
300
  type: string;
301
301
  ast_metadata?: AstNodeMetadata;
302
302
  } & (NqlAstList | NqlAggFunction | NqlBinaryOp | NqlCase | NqlFunction | NqlLit | NqlIdent | NqlJoin | NqlTypeSpec | NqlOp | NqlWindow | NqlUnknown | NqlSelect | NqlCreateMaterializedView | NqlExplain | NqlWhen | NqlElse | NqlPlaceholder);
303
- export type { NqlAst, NqlAstList, NqlAggFunction, NqlBinaryOp, NqlBudget, NqlCase, NqlFunction, NqlSimpleType, NqlLit, NqlIdent, NqlIdentColumn, NqlIdentTable, NqlJoin, NqlJoinType, NqlJoinConditionType, NqlTypeSpec, NqlOp, NqlWindow, NqlUnknown, NqlSelect, NqlCreateMaterializedView, NqlExplain, NqlAstType, NqlPlaceholder, NqlElse, NqlWhen, NqlTemplateConstraintLogicalOperator, NqlTemplateConstraint, NqlTemplateConstraintGroup, ExtractPlaceholderType, };
303
+ export type { ExtractPlaceholderType, NqlAggFunction, NqlAst, NqlAstList, NqlAstType, NqlBinaryOp, NqlBudget, NqlCase, NqlCreateMaterializedView, NqlElse, NqlExplain, NqlFunction, NqlIdent, NqlIdentColumn, NqlIdentTable, NqlJoin, NqlJoinConditionType, NqlJoinType, NqlLit, NqlOp, NqlPlaceholder, NqlSelect, NqlSimpleType, NqlTemplateConstraint, NqlTemplateConstraintGroup, NqlTemplateConstraintLogicalOperator, NqlTypeSpec, NqlUnknown, NqlWhen, NqlWindow, };