@kinotic-ai/os-api 1.0.13 → 1.0.14

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.
package/dist/index.d.cts CHANGED
@@ -472,6 +472,32 @@ declare class VmNode implements Identifiable6<string> {
472
472
  lastSeen: number | null;
473
473
  constructor(id: string, name: string, hostname: string);
474
474
  }
475
+ /**
476
+ * Sent to the server to initiate an organization sign-up.
477
+ * The user provides {@link orgName}, {@link orgDescription}, {@link email}, and
478
+ * {@link displayName}. The remaining fields ({@link id}, {@link verificationToken},
479
+ * {@link expiresAt}, {@link created}) are populated by the server before the record
480
+ * is persisted.
481
+ */
482
+ interface SignUpRequest {
483
+ id?: string | null;
484
+ verificationToken?: string | null;
485
+ expiresAt?: number | null;
486
+ created?: number | null;
487
+ orgName: string;
488
+ orgDescription?: string | null;
489
+ email: string;
490
+ displayName: string;
491
+ }
492
+ /**
493
+ * Sent to the server to complete an organization sign-up after email verification.
494
+ * The {@link token} comes from the verification email link; the {@link password}
495
+ * is what the user enters on the "set your password" form.
496
+ */
497
+ interface SignUpCompleteRequest {
498
+ token: string;
499
+ password: string;
500
+ }
475
501
  import { IKinotic } from "@kinotic-ai/core";
476
502
  import { CrudServiceProxy, ICrudServiceProxy } from "@kinotic-ai/core";
477
503
  interface IApplicationService extends ICrudServiceProxy<Application> {
@@ -790,4 +816,4 @@ declare const OsApiPlugin: KinoticPlugin<IOsApiExtension>;
790
816
  declare module "@kinotic-ai/core" {
791
817
  interface KinoticSingleton extends IOsApiExtension {}
792
818
  }
793
- export { WorkloadStatus, WorkloadServiceProxy, Workload, VmProviderType, VmNodeStatus, VmNodeServiceProxy, VmNode, VersionDecorator, TimeReferenceDecorator, TextDecorator, TenantSelectionC3Type, TenantIdDecorator, SingleLoggerLevelsDescriptor, QueryOptionsC3Type, QueryDecorator, ProjectType, ProjectService, Project, ProgressType, PageableC3Type, PageC3Type, OsApiPlugin, NotIndexedDecorator, NestedDecorator, NamedQueriesDefinitionService, NamedQueriesDefinition, MigrationService, MigrationResult, MigrationRequest, MigrationDefinition, LoggersDescriptor, LoggerLevelsDescriptor, LogManager, LogLevel, InsightRequest, InsightProgress, IdDecorator, IWorkloadService, IVmNodeService, IProjectService, IOsApiExtension, INamedQueriesDefinitionService, IMigrationService, ILogManager, IEntityDefinitionService, IDataInsightsService, IApplicationService, GroupLoggerLevelsDescriptor, FlattenedDecorator, EsIndexConfigurationDecorator, EntityDefinitionService, EntityDefinition, EntityDecorator, DiscriminatorDecorator, DataInsightsService, DataInsightsComponent, AutoGeneratedIdDecorator, ApplicationService, Application };
819
+ export { WorkloadStatus, WorkloadServiceProxy, Workload, VmProviderType, VmNodeStatus, VmNodeServiceProxy, VmNode, VersionDecorator, TimeReferenceDecorator, TextDecorator, TenantSelectionC3Type, TenantIdDecorator, SingleLoggerLevelsDescriptor, SignUpRequest, SignUpCompleteRequest, QueryOptionsC3Type, QueryDecorator, ProjectType, ProjectService, Project, ProgressType, PageableC3Type, PageC3Type, OsApiPlugin, NotIndexedDecorator, NestedDecorator, NamedQueriesDefinitionService, NamedQueriesDefinition, MigrationService, MigrationResult, MigrationRequest, MigrationDefinition, LoggersDescriptor, LoggerLevelsDescriptor, LogManager, LogLevel, InsightRequest, InsightProgress, IdDecorator, IWorkloadService, IVmNodeService, IProjectService, IOsApiExtension, INamedQueriesDefinitionService, IMigrationService, ILogManager, IEntityDefinitionService, IDataInsightsService, IApplicationService, GroupLoggerLevelsDescriptor, FlattenedDecorator, EsIndexConfigurationDecorator, EntityDefinitionService, EntityDefinition, EntityDecorator, DiscriminatorDecorator, DataInsightsService, DataInsightsComponent, AutoGeneratedIdDecorator, ApplicationService, Application };
package/dist/index.d.ts CHANGED
@@ -472,6 +472,32 @@ declare class VmNode implements Identifiable6<string> {
472
472
  lastSeen: number | null;
473
473
  constructor(id: string, name: string, hostname: string);
474
474
  }
475
+ /**
476
+ * Sent to the server to initiate an organization sign-up.
477
+ * The user provides {@link orgName}, {@link orgDescription}, {@link email}, and
478
+ * {@link displayName}. The remaining fields ({@link id}, {@link verificationToken},
479
+ * {@link expiresAt}, {@link created}) are populated by the server before the record
480
+ * is persisted.
481
+ */
482
+ interface SignUpRequest {
483
+ id?: string | null;
484
+ verificationToken?: string | null;
485
+ expiresAt?: number | null;
486
+ created?: number | null;
487
+ orgName: string;
488
+ orgDescription?: string | null;
489
+ email: string;
490
+ displayName: string;
491
+ }
492
+ /**
493
+ * Sent to the server to complete an organization sign-up after email verification.
494
+ * The {@link token} comes from the verification email link; the {@link password}
495
+ * is what the user enters on the "set your password" form.
496
+ */
497
+ interface SignUpCompleteRequest {
498
+ token: string;
499
+ password: string;
500
+ }
475
501
  import { IKinotic } from "@kinotic-ai/core";
476
502
  import { CrudServiceProxy, ICrudServiceProxy } from "@kinotic-ai/core";
477
503
  interface IApplicationService extends ICrudServiceProxy<Application> {
@@ -790,4 +816,4 @@ declare const OsApiPlugin: KinoticPlugin<IOsApiExtension>;
790
816
  declare module "@kinotic-ai/core" {
791
817
  interface KinoticSingleton extends IOsApiExtension {}
792
818
  }
793
- export { WorkloadStatus, WorkloadServiceProxy, Workload, VmProviderType, VmNodeStatus, VmNodeServiceProxy, VmNode, VersionDecorator, TimeReferenceDecorator, TextDecorator, TenantSelectionC3Type, TenantIdDecorator, SingleLoggerLevelsDescriptor, QueryOptionsC3Type, QueryDecorator, ProjectType, ProjectService, Project, ProgressType, PageableC3Type, PageC3Type, OsApiPlugin, NotIndexedDecorator, NestedDecorator, NamedQueriesDefinitionService, NamedQueriesDefinition, MigrationService, MigrationResult, MigrationRequest, MigrationDefinition, LoggersDescriptor, LoggerLevelsDescriptor, LogManager, LogLevel, InsightRequest, InsightProgress, IdDecorator, IWorkloadService, IVmNodeService, IProjectService, IOsApiExtension, INamedQueriesDefinitionService, IMigrationService, ILogManager, IEntityDefinitionService, IDataInsightsService, IApplicationService, GroupLoggerLevelsDescriptor, FlattenedDecorator, EsIndexConfigurationDecorator, EntityDefinitionService, EntityDefinition, EntityDecorator, DiscriminatorDecorator, DataInsightsService, DataInsightsComponent, AutoGeneratedIdDecorator, ApplicationService, Application };
819
+ export { WorkloadStatus, WorkloadServiceProxy, Workload, VmProviderType, VmNodeStatus, VmNodeServiceProxy, VmNode, VersionDecorator, TimeReferenceDecorator, TextDecorator, TenantSelectionC3Type, TenantIdDecorator, SingleLoggerLevelsDescriptor, SignUpRequest, SignUpCompleteRequest, QueryOptionsC3Type, QueryDecorator, ProjectType, ProjectService, Project, ProgressType, PageableC3Type, PageC3Type, OsApiPlugin, NotIndexedDecorator, NestedDecorator, NamedQueriesDefinitionService, NamedQueriesDefinition, MigrationService, MigrationResult, MigrationRequest, MigrationDefinition, LoggersDescriptor, LoggerLevelsDescriptor, LogManager, LogLevel, InsightRequest, InsightProgress, IdDecorator, IWorkloadService, IVmNodeService, IProjectService, IOsApiExtension, INamedQueriesDefinitionService, IMigrationService, ILogManager, IEntityDefinitionService, IDataInsightsService, IApplicationService, GroupLoggerLevelsDescriptor, FlattenedDecorator, EsIndexConfigurationDecorator, EntityDefinitionService, EntityDefinition, EntityDecorator, DiscriminatorDecorator, DataInsightsService, DataInsightsComponent, AutoGeneratedIdDecorator, ApplicationService, Application };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kinotic-ai/os-api",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"