@databricks/sdk-uc-onlinetables 0.39.0 → 0.40.0

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/package.js CHANGED
@@ -1,6 +1,6 @@
1
1
  //#region package.json
2
2
  var name = "@databricks/sdk-uc-onlinetables";
3
- var version = "0.39.0";
3
+ var version = "0.40.0";
4
4
 
5
5
  //#endregion
6
6
  export { name, version };
package/dist/v1/model.js CHANGED
@@ -27,7 +27,11 @@ const ProvisioningInfo_State = {
27
27
  DEGRADED: "DEGRADED"
28
28
  };
29
29
  const unmarshalContinuousUpdateStatusSchema = z.object({
30
- last_processed_commit_version: z.union([z.number(), z.bigint()]).transform((v) => BigInt(v)).optional(),
30
+ last_processed_commit_version: z.union([
31
+ z.number(),
32
+ z.bigint(),
33
+ z.string()
34
+ ]).transform((v) => BigInt(v)).optional(),
31
35
  timestamp: z.string().transform((s) => Temporal.Instant.from(s)).optional(),
32
36
  initial_pipeline_sync_progress: z.lazy(() => unmarshalPipelineProgressSchema).optional()
33
37
  }).transform((d) => ({
@@ -36,7 +40,11 @@ const unmarshalContinuousUpdateStatusSchema = z.object({
36
40
  initialPipelineSyncProgress: d.initial_pipeline_sync_progress
37
41
  }));
38
42
  const unmarshalFailedStatusSchema = z.object({
39
- last_processed_commit_version: z.union([z.number(), z.bigint()]).transform((v) => BigInt(v)).optional(),
43
+ last_processed_commit_version: z.union([
44
+ z.number(),
45
+ z.bigint(),
46
+ z.string()
47
+ ]).transform((v) => BigInt(v)).optional(),
40
48
  timestamp: z.string().transform((s) => Temporal.Instant.from(s)).optional()
41
49
  }).transform((d) => ({
42
50
  lastProcessedCommitVersion: d.last_processed_commit_version,
@@ -104,9 +112,21 @@ const unmarshalOnlineTableStatusSchema = z.object({
104
112
  } : void 0
105
113
  }));
106
114
  const unmarshalPipelineProgressSchema = z.object({
107
- latest_version_currently_processing: z.union([z.number(), z.bigint()]).transform((v) => BigInt(v)).optional(),
108
- synced_row_count: z.union([z.number(), z.bigint()]).transform((v) => BigInt(v)).optional(),
109
- total_row_count: z.union([z.number(), z.bigint()]).transform((v) => BigInt(v)).optional(),
115
+ latest_version_currently_processing: z.union([
116
+ z.number(),
117
+ z.bigint(),
118
+ z.string()
119
+ ]).transform((v) => BigInt(v)).optional(),
120
+ synced_row_count: z.union([
121
+ z.number(),
122
+ z.bigint(),
123
+ z.string()
124
+ ]).transform((v) => BigInt(v)).optional(),
125
+ total_row_count: z.union([
126
+ z.number(),
127
+ z.bigint(),
128
+ z.string()
129
+ ]).transform((v) => BigInt(v)).optional(),
110
130
  sync_progress_completion: z.number().optional(),
111
131
  estimated_completion_time_seconds: z.number().optional()
112
132
  }).transform((d) => ({
@@ -118,7 +138,11 @@ const unmarshalPipelineProgressSchema = z.object({
118
138
  }));
119
139
  const unmarshalProvisioningStatusSchema = z.object({ initial_pipeline_sync_progress: z.lazy(() => unmarshalPipelineProgressSchema).optional() }).transform((d) => ({ initialPipelineSyncProgress: d.initial_pipeline_sync_progress }));
120
140
  const unmarshalTriggeredUpdateStatusSchema = z.object({
121
- last_processed_commit_version: z.union([z.number(), z.bigint()]).transform((v) => BigInt(v)).optional(),
141
+ last_processed_commit_version: z.union([
142
+ z.number(),
143
+ z.bigint(),
144
+ z.string()
145
+ ]).transform((v) => BigInt(v)).optional(),
122
146
  timestamp: z.string().transform((s) => Temporal.Instant.from(s)).optional(),
123
147
  triggered_update_progress: z.lazy(() => unmarshalPipelineProgressSchema).optional()
124
148
  }).transform((d) => ({
@@ -1 +1 @@
1
- {"version":3,"file":"model.js","names":[],"sources":["../../src/v1/model.ts"],"sourcesContent":["// Code generated from API definition by Databricks SDK Generator. DO NOT EDIT.\n\nimport {Temporal} from '@js-temporal/polyfill';\nimport {z} from 'zod';\n\n/** The state of an online table. */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const OnlineTableState = {\n /** The default state. It should not be reported by any online tables. */\n ONLINE_TABLE_STATE_UNSPECIFIED: 'ONLINE_TABLE_STATE_UNSPECIFIED',\n /**\n * The online table has just been created and resources are being provisioned. This is also the\n * catch-all state if there is not a more suitable state to report for the online table.\n */\n PROVISIONING: 'PROVISIONING',\n /** The online table is provisioning resources for the data synchronization pipeline. */\n PROVISIONING_PIPELINE_RESOURCES: 'PROVISIONING_PIPELINE_RESOURCES',\n /** The online table is executing the initial data synchronization. */\n PROVISIONING_INITIAL_SNAPSHOT: 'PROVISIONING_INITIAL_SNAPSHOT',\n /** The online table is ready to serve data. */\n ONLINE: 'ONLINE',\n /**\n * The online table is ready to serve data and is continuously updating. Only shown for online\n * tables using the \"Continuous\" sync mode.\n */\n ONLINE_CONTINUOUS_UPDATE: 'ONLINE_CONTINUOUS_UPDATE',\n /**\n * The online table is ready to serve data and an active update is in progress. Only shown for\n * online tables using the \"Triggered\" sync mode.\n */\n ONLINE_TRIGGERED_UPDATE: 'ONLINE_TRIGGERED_UPDATE',\n /**\n * The online table is ready to serve data and there are no active updates. Only shown for online\n * tables using the \"Triggered\" sync mode.\n */\n ONLINE_NO_PENDING_UPDATE: 'ONLINE_NO_PENDING_UPDATE',\n /** The online table has encountered an internal error and is not available for serving. */\n OFFLINE: 'OFFLINE',\n /**\n * The online table is not available for serving because the data synchronization pipeline has\n * failed. Please review the pipeline event logs to troubleshoot.\n */\n OFFLINE_FAILED: 'OFFLINE_FAILED',\n /**\n * The data synchronization pipeline has encountered an error but the online table is still\n * available for serving (potentially stale) data. Please review the pipeline event logs to\n * troubleshoot.\n */\n ONLINE_PIPELINE_FAILED: 'ONLINE_PIPELINE_FAILED',\n /**\n * The online table is available for serving, and is provisioning resources for a newly started\n * data synchronization pipeline.\n */\n ONLINE_UPDATING_PIPELINE_RESOURCES: 'ONLINE_UPDATING_PIPELINE_RESOURCES',\n} as const;\nexport type OnlineTableState =\n | (typeof OnlineTableState)[keyof typeof OnlineTableState]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const ProvisioningInfo_State = {\n STATE_UNSPECIFIED: 'STATE_UNSPECIFIED',\n PROVISIONING: 'PROVISIONING',\n ACTIVE: 'ACTIVE',\n FAILED: 'FAILED',\n DELETING: 'DELETING',\n UPDATING: 'UPDATING',\n DEGRADED: 'DEGRADED',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type ProvisioningInfo_State =\n | (typeof ProvisioningInfo_State)[keyof typeof ProvisioningInfo_State]\n | (string & {});\n\n/**\n * Detailed status of an online table. Shown if the online table is in the ONLINE_CONTINUOUS_UPDATE\n * or the ONLINE_UPDATING_PIPELINE_RESOURCES state.\n */\nexport interface ContinuousUpdateStatus {\n /**\n * The last source table Delta version that was synced to the online table. Note that this Delta\n * version may not be completely synced to the online table yet.\n */\n lastProcessedCommitVersion?: bigint | undefined;\n /**\n * The timestamp of the last time any data was synchronized from the source table to the online\n * table.\n */\n timestamp?: Temporal.Instant | undefined;\n /** Progress of the initial data synchronization. */\n initialPipelineSyncProgress?: PipelineProgress | undefined;\n}\n\n/** Create an online table */\nexport interface CreateOnlineTableRequest {\n /** Specification of the online table to be created. */\n table?: OnlineTable | undefined;\n}\n\n/** Delete an online table. */\nexport interface DeleteOnlineTableRequest {\n /** Full three-part (catalog, schema, table) name of the table. */\n name?: string | undefined;\n}\n\n/**\n * Detailed status of an online table. Shown if the online table is in the OFFLINE_FAILED or the\n * ONLINE_PIPELINE_FAILED state.\n */\nexport interface FailedStatus {\n /**\n * The last source table Delta version that was synced to the online table. Note that this Delta\n * version may only be partially synced to the online table. Only populated if the table is still\n * online and available for serving.\n */\n lastProcessedCommitVersion?: bigint | undefined;\n /**\n * The timestamp of the last time any data was synchronized from the source table to the online\n * table. Only populated if the table is still online and available for serving.\n */\n timestamp?: Temporal.Instant | undefined;\n}\n\n/** Get information about an online table. */\nexport interface GetOnlineTableRequest {\n /** Full three-part (catalog, schema, table) name of the table. */\n name?: string | undefined;\n}\n\n/** Online Table information. */\nexport interface OnlineTable {\n /** Full three-part (catalog, schema, table) name of the table. */\n name?: string | undefined;\n /** Specification of the online table. */\n spec?: OnlineTableSpec | undefined;\n /** Online Table data synchronization status */\n status?: OnlineTableStatus | undefined;\n /** Data serving REST API URL for this table */\n tableServingUrl?: string | undefined;\n /**\n * The provisioning state of the online table entity in Unity Catalog. This is distinct from the\n * state of the data synchronization pipeline (i.e. the table may be in \"ACTIVE\" but the pipeline\n * may be in \"PROVISIONING\" as it runs asynchronously).\n */\n unityCatalogProvisioningState?: ProvisioningInfo_State | undefined;\n}\n\n/** Specification of an online table. */\nexport interface OnlineTableSpec {\n /** Exactly one type of scheduling policy should be applied. */\n schedulingPolicy?:\n | {\n $case: 'runContinuously';\n /** Pipeline runs continuously after generating the initial data. */\n runContinuously: OnlineTableSpec_ContinuousSchedulingPolicy;\n }\n | {\n $case: 'runTriggered';\n /** Pipeline stops after generating the initial data and can be triggered later (manually, through a cron job or through data triggers) */\n runTriggered: OnlineTableSpec_TriggeredSchedulingPolicy;\n }\n | undefined;\n /** Three-part (catalog, schema, table) name of the source Delta table. */\n sourceTableFullName?: string | undefined;\n /** Primary Key columns to be used for data insert/update in the destination. */\n primaryKeyColumns?: string[] | undefined;\n /** Time series key to deduplicate (tie-break) rows with the same primary key. */\n timeseriesKey?: string | undefined;\n /**\n * Whether to create a full-copy pipeline -- a pipeline that stops after creates a full copy of\n * the source table upon initialization and does not process any change data feeds (CDFs)\n * afterwards. The pipeline can still be manually triggered afterwards, but it always perform a\n * full copy of the source table and there are no incremental updates. This mode is useful for\n * syncing views or tables without CDFs to online tables.\n * Note that the full-copy pipeline only supports \"triggered\" scheduling policy.\n */\n performFullCopy?: boolean | undefined;\n /** ID of the associated pipeline. Generated by the server - cannot be set by the caller. */\n pipelineId?: string | undefined;\n}\n\n// eslint-disable-next-line @typescript-eslint/naming-convention, @typescript-eslint/no-empty-object-type -- Proto-style nested message name.\nexport interface OnlineTableSpec_ContinuousSchedulingPolicy {}\n\n// eslint-disable-next-line @typescript-eslint/naming-convention, @typescript-eslint/no-empty-object-type -- Proto-style nested message name.\nexport interface OnlineTableSpec_TriggeredSchedulingPolicy {}\n\n/** Status of an online table. */\nexport interface OnlineTableStatus {\n /** The state of the online table. */\n detailedState?: OnlineTableState | undefined;\n /** A text description of the current state of the online table. */\n message?: string | undefined;\n /** The detailed status based on the online table state. */\n detailedStatus?:\n | {$case: 'provisioningStatus'; provisioningStatus: ProvisioningStatus}\n | {\n $case: 'continuousUpdateStatus';\n continuousUpdateStatus: ContinuousUpdateStatus;\n }\n | {\n $case: 'triggeredUpdateStatus';\n triggeredUpdateStatus: TriggeredUpdateStatus;\n }\n | {$case: 'failedStatus'; failedStatus: FailedStatus}\n | undefined;\n}\n\n/** Progress information of the Online Table data synchronization pipeline. */\nexport interface PipelineProgress {\n /**\n * The source table Delta version that was last processed by the pipeline. The pipeline may not\n * have completely processed this version yet.\n */\n latestVersionCurrentlyProcessing?: bigint | undefined;\n /** The number of rows that have been synced in this update. */\n syncedRowCount?: bigint | undefined;\n /** The total number of rows that need to be synced in this update. This number may be an estimate. */\n totalRowCount?: bigint | undefined;\n /** The completion ratio of this update. This is a number between 0 and 1. */\n syncProgressCompletion?: number | undefined;\n /** The estimated time remaining to complete this update in seconds. */\n estimatedCompletionTimeSeconds?: number | undefined;\n}\n\n/** Status of an asynchronously provisioned resource. */\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface ProvisioningInfo {}\n\n/**\n * Detailed status of an online table. Shown if the online table is in the\n * PROVISIONING_PIPELINE_RESOURCES or the PROVISIONING_INITIAL_SNAPSHOT state.\n */\nexport interface ProvisioningStatus {\n /**\n * Details about initial data synchronization. Only populated when in the\n * PROVISIONING_INITIAL_SNAPSHOT state.\n */\n initialPipelineSyncProgress?: PipelineProgress | undefined;\n}\n\n/**\n * Detailed status of an online table. Shown if the online table is in the ONLINE_TRIGGERED_UPDATE\n * or the ONLINE_NO_PENDING_UPDATE state.\n */\nexport interface TriggeredUpdateStatus {\n /**\n * The last source table Delta version that was synced to the online table. Note that this Delta\n * version may not be completely synced to the online table yet.\n */\n lastProcessedCommitVersion?: bigint | undefined;\n /**\n * The timestamp of the last time any data was synchronized from the source table to the online\n * table.\n */\n timestamp?: Temporal.Instant | undefined;\n /** Progress of the active data synchronization pipeline. */\n triggeredUpdateProgress?: PipelineProgress | undefined;\n}\n\nexport const unmarshalContinuousUpdateStatusSchema: z.ZodType<ContinuousUpdateStatus> =\n z\n .object({\n last_processed_commit_version: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n timestamp: z\n .string()\n .transform(s => Temporal.Instant.from(s))\n .optional(),\n initial_pipeline_sync_progress: z\n .lazy(() => unmarshalPipelineProgressSchema)\n .optional(),\n })\n .transform(d => ({\n lastProcessedCommitVersion: d.last_processed_commit_version,\n timestamp: d.timestamp,\n initialPipelineSyncProgress: d.initial_pipeline_sync_progress,\n }));\n\nexport const unmarshalFailedStatusSchema: z.ZodType<FailedStatus> = z\n .object({\n last_processed_commit_version: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n timestamp: z\n .string()\n .transform(s => Temporal.Instant.from(s))\n .optional(),\n })\n .transform(d => ({\n lastProcessedCommitVersion: d.last_processed_commit_version,\n timestamp: d.timestamp,\n }));\n\nexport const unmarshalOnlineTableSchema: z.ZodType<OnlineTable> = z\n .object({\n name: z.string().optional(),\n spec: z.lazy(() => unmarshalOnlineTableSpecSchema).optional(),\n status: z.lazy(() => unmarshalOnlineTableStatusSchema).optional(),\n table_serving_url: z.string().optional(),\n unity_catalog_provisioning_state: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n spec: d.spec,\n status: d.status,\n tableServingUrl: d.table_serving_url,\n unityCatalogProvisioningState: d.unity_catalog_provisioning_state,\n }));\n\nexport const unmarshalOnlineTableSpecSchema: z.ZodType<OnlineTableSpec> = z\n .object({\n run_continuously: z\n .lazy(() => unmarshalOnlineTableSpec_ContinuousSchedulingPolicySchema)\n .optional(),\n run_triggered: z\n .lazy(() => unmarshalOnlineTableSpec_TriggeredSchedulingPolicySchema)\n .optional(),\n source_table_full_name: z.string().optional(),\n primary_key_columns: z.array(z.string()).optional(),\n timeseries_key: z.string().optional(),\n perform_full_copy: z.boolean().optional(),\n pipeline_id: z.string().optional(),\n })\n .transform(d => ({\n schedulingPolicy:\n d.run_continuously !== undefined\n ? {\n $case: 'runContinuously' as const,\n runContinuously: d.run_continuously,\n }\n : d.run_triggered !== undefined\n ? {$case: 'runTriggered' as const, runTriggered: d.run_triggered}\n : undefined,\n sourceTableFullName: d.source_table_full_name,\n primaryKeyColumns: d.primary_key_columns,\n timeseriesKey: d.timeseries_key,\n performFullCopy: d.perform_full_copy,\n pipelineId: d.pipeline_id,\n }));\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.\nexport const unmarshalOnlineTableSpec_ContinuousSchedulingPolicySchema: z.ZodType<OnlineTableSpec_ContinuousSchedulingPolicy> =\n z.object({});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.\nexport const unmarshalOnlineTableSpec_TriggeredSchedulingPolicySchema: z.ZodType<OnlineTableSpec_TriggeredSchedulingPolicy> =\n z.object({});\n\nexport const unmarshalOnlineTableStatusSchema: z.ZodType<OnlineTableStatus> = z\n .object({\n detailed_state: z.string().optional(),\n message: z.string().optional(),\n provisioning_status: z\n .lazy(() => unmarshalProvisioningStatusSchema)\n .optional(),\n continuous_update_status: z\n .lazy(() => unmarshalContinuousUpdateStatusSchema)\n .optional(),\n triggered_update_status: z\n .lazy(() => unmarshalTriggeredUpdateStatusSchema)\n .optional(),\n failed_status: z.lazy(() => unmarshalFailedStatusSchema).optional(),\n })\n .transform(d => ({\n detailedState: d.detailed_state,\n message: d.message,\n detailedStatus:\n d.provisioning_status !== undefined\n ? {\n $case: 'provisioningStatus' as const,\n provisioningStatus: d.provisioning_status,\n }\n : d.continuous_update_status !== undefined\n ? {\n $case: 'continuousUpdateStatus' as const,\n continuousUpdateStatus: d.continuous_update_status,\n }\n : d.triggered_update_status !== undefined\n ? {\n $case: 'triggeredUpdateStatus' as const,\n triggeredUpdateStatus: d.triggered_update_status,\n }\n : d.failed_status !== undefined\n ? {$case: 'failedStatus' as const, failedStatus: d.failed_status}\n : undefined,\n }));\n\nexport const unmarshalPipelineProgressSchema: z.ZodType<PipelineProgress> = z\n .object({\n latest_version_currently_processing: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n synced_row_count: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n total_row_count: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n sync_progress_completion: z.number().optional(),\n estimated_completion_time_seconds: z.number().optional(),\n })\n .transform(d => ({\n latestVersionCurrentlyProcessing: d.latest_version_currently_processing,\n syncedRowCount: d.synced_row_count,\n totalRowCount: d.total_row_count,\n syncProgressCompletion: d.sync_progress_completion,\n estimatedCompletionTimeSeconds: d.estimated_completion_time_seconds,\n }));\n\nexport const unmarshalProvisioningStatusSchema: z.ZodType<ProvisioningStatus> =\n z\n .object({\n initial_pipeline_sync_progress: z\n .lazy(() => unmarshalPipelineProgressSchema)\n .optional(),\n })\n .transform(d => ({\n initialPipelineSyncProgress: d.initial_pipeline_sync_progress,\n }));\n\nexport const unmarshalTriggeredUpdateStatusSchema: z.ZodType<TriggeredUpdateStatus> =\n z\n .object({\n last_processed_commit_version: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n timestamp: z\n .string()\n .transform(s => Temporal.Instant.from(s))\n .optional(),\n triggered_update_progress: z\n .lazy(() => unmarshalPipelineProgressSchema)\n .optional(),\n })\n .transform(d => ({\n lastProcessedCommitVersion: d.last_processed_commit_version,\n timestamp: d.timestamp,\n triggeredUpdateProgress: d.triggered_update_progress,\n }));\n\nexport const marshalContinuousUpdateStatusSchema: z.ZodType = z\n .object({\n lastProcessedCommitVersion: z.bigint().optional(),\n timestamp: z\n .any()\n .transform((d: Temporal.Instant) => d.toString())\n .optional(),\n initialPipelineSyncProgress: z\n .lazy(() => marshalPipelineProgressSchema)\n .optional(),\n })\n .transform(d => ({\n last_processed_commit_version: d.lastProcessedCommitVersion,\n timestamp: d.timestamp,\n initial_pipeline_sync_progress: d.initialPipelineSyncProgress,\n }));\n\nexport const marshalFailedStatusSchema: z.ZodType = z\n .object({\n lastProcessedCommitVersion: z.bigint().optional(),\n timestamp: z\n .any()\n .transform((d: Temporal.Instant) => d.toString())\n .optional(),\n })\n .transform(d => ({\n last_processed_commit_version: d.lastProcessedCommitVersion,\n timestamp: d.timestamp,\n }));\n\nexport const marshalOnlineTableSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n spec: z.lazy(() => marshalOnlineTableSpecSchema).optional(),\n status: z.lazy(() => marshalOnlineTableStatusSchema).optional(),\n tableServingUrl: z.string().optional(),\n unityCatalogProvisioningState: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n spec: d.spec,\n status: d.status,\n table_serving_url: d.tableServingUrl,\n unity_catalog_provisioning_state: d.unityCatalogProvisioningState,\n }));\n\nexport const marshalOnlineTableSpecSchema: z.ZodType = z\n .object({\n schedulingPolicy: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('runContinuously'),\n runContinuously: z.lazy(\n () => marshalOnlineTableSpec_ContinuousSchedulingPolicySchema\n ),\n }),\n z.object({\n $case: z.literal('runTriggered'),\n runTriggered: z.lazy(\n () => marshalOnlineTableSpec_TriggeredSchedulingPolicySchema\n ),\n }),\n ])\n .optional(),\n sourceTableFullName: z.string().optional(),\n primaryKeyColumns: z.array(z.string()).optional(),\n timeseriesKey: z.string().optional(),\n performFullCopy: z.boolean().optional(),\n pipelineId: z.string().optional(),\n })\n .transform(d => ({\n ...(d.schedulingPolicy?.$case === 'runContinuously' && {\n run_continuously: d.schedulingPolicy.runContinuously,\n }),\n ...(d.schedulingPolicy?.$case === 'runTriggered' && {\n run_triggered: d.schedulingPolicy.runTriggered,\n }),\n source_table_full_name: d.sourceTableFullName,\n primary_key_columns: d.primaryKeyColumns,\n timeseries_key: d.timeseriesKey,\n perform_full_copy: d.performFullCopy,\n pipeline_id: d.pipelineId,\n }));\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.\nexport const marshalOnlineTableSpec_ContinuousSchedulingPolicySchema: z.ZodType =\n z.object({});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.\nexport const marshalOnlineTableSpec_TriggeredSchedulingPolicySchema: z.ZodType =\n z.object({});\n\nexport const marshalOnlineTableStatusSchema: z.ZodType = z\n .object({\n detailedState: z.string().optional(),\n message: z.string().optional(),\n detailedStatus: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('provisioningStatus'),\n provisioningStatus: z.lazy(() => marshalProvisioningStatusSchema),\n }),\n z.object({\n $case: z.literal('continuousUpdateStatus'),\n continuousUpdateStatus: z.lazy(\n () => marshalContinuousUpdateStatusSchema\n ),\n }),\n z.object({\n $case: z.literal('triggeredUpdateStatus'),\n triggeredUpdateStatus: z.lazy(\n () => marshalTriggeredUpdateStatusSchema\n ),\n }),\n z.object({\n $case: z.literal('failedStatus'),\n failedStatus: z.lazy(() => marshalFailedStatusSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n detailed_state: d.detailedState,\n message: d.message,\n ...(d.detailedStatus?.$case === 'provisioningStatus' && {\n provisioning_status: d.detailedStatus.provisioningStatus,\n }),\n ...(d.detailedStatus?.$case === 'continuousUpdateStatus' && {\n continuous_update_status: d.detailedStatus.continuousUpdateStatus,\n }),\n ...(d.detailedStatus?.$case === 'triggeredUpdateStatus' && {\n triggered_update_status: d.detailedStatus.triggeredUpdateStatus,\n }),\n ...(d.detailedStatus?.$case === 'failedStatus' && {\n failed_status: d.detailedStatus.failedStatus,\n }),\n }));\n\nexport const marshalPipelineProgressSchema: z.ZodType = z\n .object({\n latestVersionCurrentlyProcessing: z.bigint().optional(),\n syncedRowCount: z.bigint().optional(),\n totalRowCount: z.bigint().optional(),\n syncProgressCompletion: z.number().optional(),\n estimatedCompletionTimeSeconds: z.number().optional(),\n })\n .transform(d => ({\n latest_version_currently_processing: d.latestVersionCurrentlyProcessing,\n synced_row_count: d.syncedRowCount,\n total_row_count: d.totalRowCount,\n sync_progress_completion: d.syncProgressCompletion,\n estimated_completion_time_seconds: d.estimatedCompletionTimeSeconds,\n }));\n\nexport const marshalProvisioningStatusSchema: z.ZodType = z\n .object({\n initialPipelineSyncProgress: z\n .lazy(() => marshalPipelineProgressSchema)\n .optional(),\n })\n .transform(d => ({\n initial_pipeline_sync_progress: d.initialPipelineSyncProgress,\n }));\n\nexport const marshalTriggeredUpdateStatusSchema: z.ZodType = z\n .object({\n lastProcessedCommitVersion: z.bigint().optional(),\n timestamp: z\n .any()\n .transform((d: Temporal.Instant) => d.toString())\n .optional(),\n triggeredUpdateProgress: z\n .lazy(() => marshalPipelineProgressSchema)\n .optional(),\n })\n .transform(d => ({\n last_processed_commit_version: d.lastProcessedCommitVersion,\n timestamp: d.timestamp,\n triggered_update_progress: d.triggeredUpdateProgress,\n }));\n"],"mappings":"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"}
1
+ {"version":3,"file":"model.js","names":[],"sources":["../../src/v1/model.ts"],"sourcesContent":["// Code generated from API definition by Databricks SDK Generator. DO NOT EDIT.\n\nimport {Temporal} from '@js-temporal/polyfill';\nimport {z} from 'zod';\n\n/** The state of an online table. */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const OnlineTableState = {\n /** The default state. It should not be reported by any online tables. */\n ONLINE_TABLE_STATE_UNSPECIFIED: 'ONLINE_TABLE_STATE_UNSPECIFIED',\n /**\n * The online table has just been created and resources are being provisioned. This is also the\n * catch-all state if there is not a more suitable state to report for the online table.\n */\n PROVISIONING: 'PROVISIONING',\n /** The online table is provisioning resources for the data synchronization pipeline. */\n PROVISIONING_PIPELINE_RESOURCES: 'PROVISIONING_PIPELINE_RESOURCES',\n /** The online table is executing the initial data synchronization. */\n PROVISIONING_INITIAL_SNAPSHOT: 'PROVISIONING_INITIAL_SNAPSHOT',\n /** The online table is ready to serve data. */\n ONLINE: 'ONLINE',\n /**\n * The online table is ready to serve data and is continuously updating. Only shown for online\n * tables using the \"Continuous\" sync mode.\n */\n ONLINE_CONTINUOUS_UPDATE: 'ONLINE_CONTINUOUS_UPDATE',\n /**\n * The online table is ready to serve data and an active update is in progress. Only shown for\n * online tables using the \"Triggered\" sync mode.\n */\n ONLINE_TRIGGERED_UPDATE: 'ONLINE_TRIGGERED_UPDATE',\n /**\n * The online table is ready to serve data and there are no active updates. Only shown for online\n * tables using the \"Triggered\" sync mode.\n */\n ONLINE_NO_PENDING_UPDATE: 'ONLINE_NO_PENDING_UPDATE',\n /** The online table has encountered an internal error and is not available for serving. */\n OFFLINE: 'OFFLINE',\n /**\n * The online table is not available for serving because the data synchronization pipeline has\n * failed. Please review the pipeline event logs to troubleshoot.\n */\n OFFLINE_FAILED: 'OFFLINE_FAILED',\n /**\n * The data synchronization pipeline has encountered an error but the online table is still\n * available for serving (potentially stale) data. Please review the pipeline event logs to\n * troubleshoot.\n */\n ONLINE_PIPELINE_FAILED: 'ONLINE_PIPELINE_FAILED',\n /**\n * The online table is available for serving, and is provisioning resources for a newly started\n * data synchronization pipeline.\n */\n ONLINE_UPDATING_PIPELINE_RESOURCES: 'ONLINE_UPDATING_PIPELINE_RESOURCES',\n} as const;\nexport type OnlineTableState =\n | (typeof OnlineTableState)[keyof typeof OnlineTableState]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const ProvisioningInfo_State = {\n STATE_UNSPECIFIED: 'STATE_UNSPECIFIED',\n PROVISIONING: 'PROVISIONING',\n ACTIVE: 'ACTIVE',\n FAILED: 'FAILED',\n DELETING: 'DELETING',\n UPDATING: 'UPDATING',\n DEGRADED: 'DEGRADED',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type ProvisioningInfo_State =\n | (typeof ProvisioningInfo_State)[keyof typeof ProvisioningInfo_State]\n | (string & {});\n\n/**\n * Detailed status of an online table. Shown if the online table is in the ONLINE_CONTINUOUS_UPDATE\n * or the ONLINE_UPDATING_PIPELINE_RESOURCES state.\n */\nexport interface ContinuousUpdateStatus {\n /**\n * The last source table Delta version that was synced to the online table. Note that this Delta\n * version may not be completely synced to the online table yet.\n */\n lastProcessedCommitVersion?: bigint | undefined;\n /**\n * The timestamp of the last time any data was synchronized from the source table to the online\n * table.\n */\n timestamp?: Temporal.Instant | undefined;\n /** Progress of the initial data synchronization. */\n initialPipelineSyncProgress?: PipelineProgress | undefined;\n}\n\n/** Create an online table */\nexport interface CreateOnlineTableRequest {\n /** Specification of the online table to be created. */\n table?: OnlineTable | undefined;\n}\n\n/** Delete an online table. */\nexport interface DeleteOnlineTableRequest {\n /** Full three-part (catalog, schema, table) name of the table. */\n name?: string | undefined;\n}\n\n/**\n * Detailed status of an online table. Shown if the online table is in the OFFLINE_FAILED or the\n * ONLINE_PIPELINE_FAILED state.\n */\nexport interface FailedStatus {\n /**\n * The last source table Delta version that was synced to the online table. Note that this Delta\n * version may only be partially synced to the online table. Only populated if the table is still\n * online and available for serving.\n */\n lastProcessedCommitVersion?: bigint | undefined;\n /**\n * The timestamp of the last time any data was synchronized from the source table to the online\n * table. Only populated if the table is still online and available for serving.\n */\n timestamp?: Temporal.Instant | undefined;\n}\n\n/** Get information about an online table. */\nexport interface GetOnlineTableRequest {\n /** Full three-part (catalog, schema, table) name of the table. */\n name?: string | undefined;\n}\n\n/** Online Table information. */\nexport interface OnlineTable {\n /** Full three-part (catalog, schema, table) name of the table. */\n name?: string | undefined;\n /** Specification of the online table. */\n spec?: OnlineTableSpec | undefined;\n /** Online Table data synchronization status */\n status?: OnlineTableStatus | undefined;\n /** Data serving REST API URL for this table */\n tableServingUrl?: string | undefined;\n /**\n * The provisioning state of the online table entity in Unity Catalog. This is distinct from the\n * state of the data synchronization pipeline (i.e. the table may be in \"ACTIVE\" but the pipeline\n * may be in \"PROVISIONING\" as it runs asynchronously).\n */\n unityCatalogProvisioningState?: ProvisioningInfo_State | undefined;\n}\n\n/** Specification of an online table. */\nexport interface OnlineTableSpec {\n /** Exactly one type of scheduling policy should be applied. */\n schedulingPolicy?:\n | {\n $case: 'runContinuously';\n /** Pipeline runs continuously after generating the initial data. */\n runContinuously: OnlineTableSpec_ContinuousSchedulingPolicy;\n }\n | {\n $case: 'runTriggered';\n /** Pipeline stops after generating the initial data and can be triggered later (manually, through a cron job or through data triggers) */\n runTriggered: OnlineTableSpec_TriggeredSchedulingPolicy;\n }\n | undefined;\n /** Three-part (catalog, schema, table) name of the source Delta table. */\n sourceTableFullName?: string | undefined;\n /** Primary Key columns to be used for data insert/update in the destination. */\n primaryKeyColumns?: string[] | undefined;\n /** Time series key to deduplicate (tie-break) rows with the same primary key. */\n timeseriesKey?: string | undefined;\n /**\n * Whether to create a full-copy pipeline -- a pipeline that stops after creates a full copy of\n * the source table upon initialization and does not process any change data feeds (CDFs)\n * afterwards. The pipeline can still be manually triggered afterwards, but it always perform a\n * full copy of the source table and there are no incremental updates. This mode is useful for\n * syncing views or tables without CDFs to online tables.\n * Note that the full-copy pipeline only supports \"triggered\" scheduling policy.\n */\n performFullCopy?: boolean | undefined;\n /** ID of the associated pipeline. Generated by the server - cannot be set by the caller. */\n pipelineId?: string | undefined;\n}\n\n// eslint-disable-next-line @typescript-eslint/naming-convention, @typescript-eslint/no-empty-object-type -- Proto-style nested message name.\nexport interface OnlineTableSpec_ContinuousSchedulingPolicy {}\n\n// eslint-disable-next-line @typescript-eslint/naming-convention, @typescript-eslint/no-empty-object-type -- Proto-style nested message name.\nexport interface OnlineTableSpec_TriggeredSchedulingPolicy {}\n\n/** Status of an online table. */\nexport interface OnlineTableStatus {\n /** The state of the online table. */\n detailedState?: OnlineTableState | undefined;\n /** A text description of the current state of the online table. */\n message?: string | undefined;\n /** The detailed status based on the online table state. */\n detailedStatus?:\n | {$case: 'provisioningStatus'; provisioningStatus: ProvisioningStatus}\n | {\n $case: 'continuousUpdateStatus';\n continuousUpdateStatus: ContinuousUpdateStatus;\n }\n | {\n $case: 'triggeredUpdateStatus';\n triggeredUpdateStatus: TriggeredUpdateStatus;\n }\n | {$case: 'failedStatus'; failedStatus: FailedStatus}\n | undefined;\n}\n\n/** Progress information of the Online Table data synchronization pipeline. */\nexport interface PipelineProgress {\n /**\n * The source table Delta version that was last processed by the pipeline. The pipeline may not\n * have completely processed this version yet.\n */\n latestVersionCurrentlyProcessing?: bigint | undefined;\n /** The number of rows that have been synced in this update. */\n syncedRowCount?: bigint | undefined;\n /** The total number of rows that need to be synced in this update. This number may be an estimate. */\n totalRowCount?: bigint | undefined;\n /** The completion ratio of this update. This is a number between 0 and 1. */\n syncProgressCompletion?: number | undefined;\n /** The estimated time remaining to complete this update in seconds. */\n estimatedCompletionTimeSeconds?: number | undefined;\n}\n\n/** Status of an asynchronously provisioned resource. */\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface ProvisioningInfo {}\n\n/**\n * Detailed status of an online table. Shown if the online table is in the\n * PROVISIONING_PIPELINE_RESOURCES or the PROVISIONING_INITIAL_SNAPSHOT state.\n */\nexport interface ProvisioningStatus {\n /**\n * Details about initial data synchronization. Only populated when in the\n * PROVISIONING_INITIAL_SNAPSHOT state.\n */\n initialPipelineSyncProgress?: PipelineProgress | undefined;\n}\n\n/**\n * Detailed status of an online table. Shown if the online table is in the ONLINE_TRIGGERED_UPDATE\n * or the ONLINE_NO_PENDING_UPDATE state.\n */\nexport interface TriggeredUpdateStatus {\n /**\n * The last source table Delta version that was synced to the online table. Note that this Delta\n * version may not be completely synced to the online table yet.\n */\n lastProcessedCommitVersion?: bigint | undefined;\n /**\n * The timestamp of the last time any data was synchronized from the source table to the online\n * table.\n */\n timestamp?: Temporal.Instant | undefined;\n /** Progress of the active data synchronization pipeline. */\n triggeredUpdateProgress?: PipelineProgress | undefined;\n}\n\nexport const unmarshalContinuousUpdateStatusSchema: z.ZodType<ContinuousUpdateStatus> =\n z\n .object({\n last_processed_commit_version: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n timestamp: z\n .string()\n .transform(s => Temporal.Instant.from(s))\n .optional(),\n initial_pipeline_sync_progress: z\n .lazy(() => unmarshalPipelineProgressSchema)\n .optional(),\n })\n .transform(d => ({\n lastProcessedCommitVersion: d.last_processed_commit_version,\n timestamp: d.timestamp,\n initialPipelineSyncProgress: d.initial_pipeline_sync_progress,\n }));\n\nexport const unmarshalFailedStatusSchema: z.ZodType<FailedStatus> = z\n .object({\n last_processed_commit_version: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n timestamp: z\n .string()\n .transform(s => Temporal.Instant.from(s))\n .optional(),\n })\n .transform(d => ({\n lastProcessedCommitVersion: d.last_processed_commit_version,\n timestamp: d.timestamp,\n }));\n\nexport const unmarshalOnlineTableSchema: z.ZodType<OnlineTable> = z\n .object({\n name: z.string().optional(),\n spec: z.lazy(() => unmarshalOnlineTableSpecSchema).optional(),\n status: z.lazy(() => unmarshalOnlineTableStatusSchema).optional(),\n table_serving_url: z.string().optional(),\n unity_catalog_provisioning_state: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n spec: d.spec,\n status: d.status,\n tableServingUrl: d.table_serving_url,\n unityCatalogProvisioningState: d.unity_catalog_provisioning_state,\n }));\n\nexport const unmarshalOnlineTableSpecSchema: z.ZodType<OnlineTableSpec> = z\n .object({\n run_continuously: z\n .lazy(() => unmarshalOnlineTableSpec_ContinuousSchedulingPolicySchema)\n .optional(),\n run_triggered: z\n .lazy(() => unmarshalOnlineTableSpec_TriggeredSchedulingPolicySchema)\n .optional(),\n source_table_full_name: z.string().optional(),\n primary_key_columns: z.array(z.string()).optional(),\n timeseries_key: z.string().optional(),\n perform_full_copy: z.boolean().optional(),\n pipeline_id: z.string().optional(),\n })\n .transform(d => ({\n schedulingPolicy:\n d.run_continuously !== undefined\n ? {\n $case: 'runContinuously' as const,\n runContinuously: d.run_continuously,\n }\n : d.run_triggered !== undefined\n ? {$case: 'runTriggered' as const, runTriggered: d.run_triggered}\n : undefined,\n sourceTableFullName: d.source_table_full_name,\n primaryKeyColumns: d.primary_key_columns,\n timeseriesKey: d.timeseries_key,\n performFullCopy: d.perform_full_copy,\n pipelineId: d.pipeline_id,\n }));\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.\nexport const unmarshalOnlineTableSpec_ContinuousSchedulingPolicySchema: z.ZodType<OnlineTableSpec_ContinuousSchedulingPolicy> =\n z.object({});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.\nexport const unmarshalOnlineTableSpec_TriggeredSchedulingPolicySchema: z.ZodType<OnlineTableSpec_TriggeredSchedulingPolicy> =\n z.object({});\n\nexport const unmarshalOnlineTableStatusSchema: z.ZodType<OnlineTableStatus> = z\n .object({\n detailed_state: z.string().optional(),\n message: z.string().optional(),\n provisioning_status: z\n .lazy(() => unmarshalProvisioningStatusSchema)\n .optional(),\n continuous_update_status: z\n .lazy(() => unmarshalContinuousUpdateStatusSchema)\n .optional(),\n triggered_update_status: z\n .lazy(() => unmarshalTriggeredUpdateStatusSchema)\n .optional(),\n failed_status: z.lazy(() => unmarshalFailedStatusSchema).optional(),\n })\n .transform(d => ({\n detailedState: d.detailed_state,\n message: d.message,\n detailedStatus:\n d.provisioning_status !== undefined\n ? {\n $case: 'provisioningStatus' as const,\n provisioningStatus: d.provisioning_status,\n }\n : d.continuous_update_status !== undefined\n ? {\n $case: 'continuousUpdateStatus' as const,\n continuousUpdateStatus: d.continuous_update_status,\n }\n : d.triggered_update_status !== undefined\n ? {\n $case: 'triggeredUpdateStatus' as const,\n triggeredUpdateStatus: d.triggered_update_status,\n }\n : d.failed_status !== undefined\n ? {$case: 'failedStatus' as const, failedStatus: d.failed_status}\n : undefined,\n }));\n\nexport const unmarshalPipelineProgressSchema: z.ZodType<PipelineProgress> = z\n .object({\n latest_version_currently_processing: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n synced_row_count: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n total_row_count: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n sync_progress_completion: z.number().optional(),\n estimated_completion_time_seconds: z.number().optional(),\n })\n .transform(d => ({\n latestVersionCurrentlyProcessing: d.latest_version_currently_processing,\n syncedRowCount: d.synced_row_count,\n totalRowCount: d.total_row_count,\n syncProgressCompletion: d.sync_progress_completion,\n estimatedCompletionTimeSeconds: d.estimated_completion_time_seconds,\n }));\n\nexport const unmarshalProvisioningStatusSchema: z.ZodType<ProvisioningStatus> =\n z\n .object({\n initial_pipeline_sync_progress: z\n .lazy(() => unmarshalPipelineProgressSchema)\n .optional(),\n })\n .transform(d => ({\n initialPipelineSyncProgress: d.initial_pipeline_sync_progress,\n }));\n\nexport const unmarshalTriggeredUpdateStatusSchema: z.ZodType<TriggeredUpdateStatus> =\n z\n .object({\n last_processed_commit_version: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n timestamp: z\n .string()\n .transform(s => Temporal.Instant.from(s))\n .optional(),\n triggered_update_progress: z\n .lazy(() => unmarshalPipelineProgressSchema)\n .optional(),\n })\n .transform(d => ({\n lastProcessedCommitVersion: d.last_processed_commit_version,\n timestamp: d.timestamp,\n triggeredUpdateProgress: d.triggered_update_progress,\n }));\n\nexport const marshalContinuousUpdateStatusSchema: z.ZodType = z\n .object({\n lastProcessedCommitVersion: z.bigint().optional(),\n timestamp: z\n .any()\n .transform((d: Temporal.Instant) => d.toString())\n .optional(),\n initialPipelineSyncProgress: z\n .lazy(() => marshalPipelineProgressSchema)\n .optional(),\n })\n .transform(d => ({\n last_processed_commit_version: d.lastProcessedCommitVersion,\n timestamp: d.timestamp,\n initial_pipeline_sync_progress: d.initialPipelineSyncProgress,\n }));\n\nexport const marshalFailedStatusSchema: z.ZodType = z\n .object({\n lastProcessedCommitVersion: z.bigint().optional(),\n timestamp: z\n .any()\n .transform((d: Temporal.Instant) => d.toString())\n .optional(),\n })\n .transform(d => ({\n last_processed_commit_version: d.lastProcessedCommitVersion,\n timestamp: d.timestamp,\n }));\n\nexport const marshalOnlineTableSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n spec: z.lazy(() => marshalOnlineTableSpecSchema).optional(),\n status: z.lazy(() => marshalOnlineTableStatusSchema).optional(),\n tableServingUrl: z.string().optional(),\n unityCatalogProvisioningState: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n spec: d.spec,\n status: d.status,\n table_serving_url: d.tableServingUrl,\n unity_catalog_provisioning_state: d.unityCatalogProvisioningState,\n }));\n\nexport const marshalOnlineTableSpecSchema: z.ZodType = z\n .object({\n schedulingPolicy: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('runContinuously'),\n runContinuously: z.lazy(\n () => marshalOnlineTableSpec_ContinuousSchedulingPolicySchema\n ),\n }),\n z.object({\n $case: z.literal('runTriggered'),\n runTriggered: z.lazy(\n () => marshalOnlineTableSpec_TriggeredSchedulingPolicySchema\n ),\n }),\n ])\n .optional(),\n sourceTableFullName: z.string().optional(),\n primaryKeyColumns: z.array(z.string()).optional(),\n timeseriesKey: z.string().optional(),\n performFullCopy: z.boolean().optional(),\n pipelineId: z.string().optional(),\n })\n .transform(d => ({\n ...(d.schedulingPolicy?.$case === 'runContinuously' && {\n run_continuously: d.schedulingPolicy.runContinuously,\n }),\n ...(d.schedulingPolicy?.$case === 'runTriggered' && {\n run_triggered: d.schedulingPolicy.runTriggered,\n }),\n source_table_full_name: d.sourceTableFullName,\n primary_key_columns: d.primaryKeyColumns,\n timeseries_key: d.timeseriesKey,\n perform_full_copy: d.performFullCopy,\n pipeline_id: d.pipelineId,\n }));\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.\nexport const marshalOnlineTableSpec_ContinuousSchedulingPolicySchema: z.ZodType =\n z.object({});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.\nexport const marshalOnlineTableSpec_TriggeredSchedulingPolicySchema: z.ZodType =\n z.object({});\n\nexport const marshalOnlineTableStatusSchema: z.ZodType = z\n .object({\n detailedState: z.string().optional(),\n message: z.string().optional(),\n detailedStatus: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('provisioningStatus'),\n provisioningStatus: z.lazy(() => marshalProvisioningStatusSchema),\n }),\n z.object({\n $case: z.literal('continuousUpdateStatus'),\n continuousUpdateStatus: z.lazy(\n () => marshalContinuousUpdateStatusSchema\n ),\n }),\n z.object({\n $case: z.literal('triggeredUpdateStatus'),\n triggeredUpdateStatus: z.lazy(\n () => marshalTriggeredUpdateStatusSchema\n ),\n }),\n z.object({\n $case: z.literal('failedStatus'),\n failedStatus: z.lazy(() => marshalFailedStatusSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n detailed_state: d.detailedState,\n message: d.message,\n ...(d.detailedStatus?.$case === 'provisioningStatus' && {\n provisioning_status: d.detailedStatus.provisioningStatus,\n }),\n ...(d.detailedStatus?.$case === 'continuousUpdateStatus' && {\n continuous_update_status: d.detailedStatus.continuousUpdateStatus,\n }),\n ...(d.detailedStatus?.$case === 'triggeredUpdateStatus' && {\n triggered_update_status: d.detailedStatus.triggeredUpdateStatus,\n }),\n ...(d.detailedStatus?.$case === 'failedStatus' && {\n failed_status: d.detailedStatus.failedStatus,\n }),\n }));\n\nexport const marshalPipelineProgressSchema: z.ZodType = z\n .object({\n latestVersionCurrentlyProcessing: z.bigint().optional(),\n syncedRowCount: z.bigint().optional(),\n totalRowCount: z.bigint().optional(),\n syncProgressCompletion: z.number().optional(),\n estimatedCompletionTimeSeconds: z.number().optional(),\n })\n .transform(d => ({\n latest_version_currently_processing: d.latestVersionCurrentlyProcessing,\n synced_row_count: d.syncedRowCount,\n total_row_count: d.totalRowCount,\n sync_progress_completion: d.syncProgressCompletion,\n estimated_completion_time_seconds: d.estimatedCompletionTimeSeconds,\n }));\n\nexport const marshalProvisioningStatusSchema: z.ZodType = z\n .object({\n initialPipelineSyncProgress: z\n .lazy(() => marshalPipelineProgressSchema)\n .optional(),\n })\n .transform(d => ({\n initial_pipeline_sync_progress: d.initialPipelineSyncProgress,\n }));\n\nexport const marshalTriggeredUpdateStatusSchema: z.ZodType = z\n .object({\n lastProcessedCommitVersion: z.bigint().optional(),\n timestamp: z\n .any()\n .transform((d: Temporal.Instant) => d.toString())\n .optional(),\n triggeredUpdateProgress: z\n .lazy(() => marshalPipelineProgressSchema)\n .optional(),\n })\n .transform(d => ({\n last_processed_commit_version: d.lastProcessedCommitVersion,\n timestamp: d.timestamp,\n triggered_update_progress: d.triggeredUpdateProgress,\n }));\n"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databricks/sdk-uc-onlinetables",
3
- "version": "0.39.0",
3
+ "version": "0.40.0",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "exports": {
@@ -33,9 +33,9 @@
33
33
  "directory": "packages/uc/onlinetables"
34
34
  },
35
35
  "dependencies": {
36
- "@databricks/sdk-auth": ">=0.39.0 <1.0.0",
37
- "@databricks/sdk-core": ">=0.39.0 <1.0.0",
38
- "@databricks/sdk-options": ">=0.39.0 <1.0.0",
36
+ "@databricks/sdk-auth": ">=0.40.0 <1.0.0",
37
+ "@databricks/sdk-core": ">=0.40.0 <1.0.0",
38
+ "@databricks/sdk-options": ">=0.40.0 <1.0.0",
39
39
  "@js-temporal/polyfill": "^0.5.0",
40
40
  "json-bigint": "^1.0.0",
41
41
  "zod": "^4.3.6"