@kittycad/lib 4.0.22 → 4.0.23
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/cjs/index.cjs +1 -1
- package/dist/mjs/index.js +1 -1
- package/dist/types/src/api/payments/list_invoices_for_org.d.ts +10 -4
- package/dist/types/src/api/payments/list_invoices_for_org.d.ts.map +1 -1
- package/dist/types/src/api/payments/list_invoices_for_user.d.ts +10 -4
- package/dist/types/src/api/payments/list_invoices_for_user.d.ts.map +1 -1
- package/dist/types/src/index.d.ts +5 -33
- package/dist/types/src/index.d.ts.map +1 -1
- package/dist/types/src/models.d.ts +77 -237
- package/dist/types/src/models.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/types/src/api/api-calls/get_api_call_metrics.d.ts +0 -24
- package/dist/types/src/api/api-calls/get_api_call_metrics.d.ts.map +0 -1
- package/dist/types/src/api/api-calls/list_api_calls.d.ts +0 -30
- package/dist/types/src/api/api-calls/list_api_calls.d.ts.map +0 -1
- package/dist/types/src/api/api-calls/list_async_operations.d.ts +0 -34
- package/dist/types/src/api/api-calls/list_async_operations.d.ts.map +0 -1
- package/dist/types/src/api/meta/create_event.d.ts +0 -25
- package/dist/types/src/api/meta/create_event.d.ts.map +0 -1
- package/dist/types/src/api/ml/get_ml_prompt.d.ts +0 -24
- package/dist/types/src/api/ml/get_ml_prompt.d.ts.map +0 -1
- package/dist/types/src/api/ml/list_ml_prompts.d.ts +0 -34
- package/dist/types/src/api/ml/list_ml_prompts.d.ts.map +0 -1
- package/dist/types/src/api/orgs/get_any_org.d.ts +0 -24
- package/dist/types/src/api/orgs/get_any_org.d.ts.map +0 -1
- package/dist/types/src/api/orgs/list_orgs.d.ts +0 -30
- package/dist/types/src/api/orgs/list_orgs.d.ts.map +0 -1
- package/dist/types/src/api/users/list_users.d.ts +0 -30
- package/dist/types/src/api/users/list_users.d.ts.map +0 -1
- package/dist/types/src/api/users/list_users_extended.d.ts +0 -30
- package/dist/types/src/api/users/list_users_extended.d.ts.map +0 -1
|
@@ -330,16 +330,6 @@ export interface AnnotationTextOptions {
|
|
|
330
330
|
y: AnnotationTextAlignmentY;
|
|
331
331
|
}
|
|
332
332
|
export type AnnotationType = 't2d' | 't3d';
|
|
333
|
-
export interface ApiCallQueryGroup {
|
|
334
|
-
/**
|
|
335
|
-
* {
|
|
336
|
-
* "format": "int64"
|
|
337
|
-
* }
|
|
338
|
-
*/
|
|
339
|
-
count: number;
|
|
340
|
-
query: string;
|
|
341
|
-
}
|
|
342
|
-
export type ApiCallQueryGroupBy = 'email' | 'method' | 'endpoint' | 'user_id' | 'origin' | 'ip_address';
|
|
343
333
|
export type ApiCallStatus = 'queued' | 'uploaded' | 'in_progress' | 'completed' | 'failed';
|
|
344
334
|
export interface ApiCallWithPrice {
|
|
345
335
|
/**
|
|
@@ -489,60 +479,6 @@ export interface AppClientInfo {
|
|
|
489
479
|
/** The URL for consent. */
|
|
490
480
|
url?: string;
|
|
491
481
|
}
|
|
492
|
-
export interface AsyncApiCall {
|
|
493
|
-
/**
|
|
494
|
-
* {
|
|
495
|
-
* "default": 0,
|
|
496
|
-
* "format": "int16",
|
|
497
|
-
* "description": "The number of times we've attempted to process this job."
|
|
498
|
-
* }
|
|
499
|
-
*/
|
|
500
|
-
attempts?: number;
|
|
501
|
-
/**
|
|
502
|
-
* {
|
|
503
|
-
* "nullable": true,
|
|
504
|
-
* "title": "DateTime",
|
|
505
|
-
* "format": "date-time",
|
|
506
|
-
* "description": "The time and date the async API call was completed."
|
|
507
|
-
* }
|
|
508
|
-
*/
|
|
509
|
-
completed_at?: string;
|
|
510
|
-
/** title:DateTime, format:date-time, description:The time and date the async API call was created. */
|
|
511
|
-
created_at: string;
|
|
512
|
-
/** nullable:true, description:The error the function returned, if any. */
|
|
513
|
-
error?: string;
|
|
514
|
-
/** The unique identifier of the async API call.
|
|
515
|
-
|
|
516
|
-
This is the same as the API call ID. */
|
|
517
|
-
id: Uuid;
|
|
518
|
-
input?: string;
|
|
519
|
-
output: unknown;
|
|
520
|
-
/**
|
|
521
|
-
* {
|
|
522
|
-
* "nullable": true,
|
|
523
|
-
* "title": "DateTime",
|
|
524
|
-
* "format": "date-time",
|
|
525
|
-
* "description": "The time and date the async API call was started."
|
|
526
|
-
* }
|
|
527
|
-
*/
|
|
528
|
-
started_at?: string;
|
|
529
|
-
/** The status of the async API call. */
|
|
530
|
-
status: ApiCallStatus;
|
|
531
|
-
/** The type of async API call. */
|
|
532
|
-
type: AsyncApiCallType;
|
|
533
|
-
/**
|
|
534
|
-
* {
|
|
535
|
-
* "title": "DateTime",
|
|
536
|
-
* "format": "date-time",
|
|
537
|
-
* "description": "The time and date the async API call was last updated."
|
|
538
|
-
* }
|
|
539
|
-
*/
|
|
540
|
-
updated_at: string;
|
|
541
|
-
/** The user ID of the user who created the async API call. */
|
|
542
|
-
user_id: Uuid;
|
|
543
|
-
/** The worker node that is performing or performed the async API call. */
|
|
544
|
-
worker?: string;
|
|
545
|
-
}
|
|
546
482
|
export type AsyncApiCallOutput = {
|
|
547
483
|
/**
|
|
548
484
|
* {
|
|
@@ -978,18 +914,6 @@ This is the same as the API call ID. */
|
|
|
978
914
|
/** The user ID of the user who created the API call. */
|
|
979
915
|
user_id: Uuid;
|
|
980
916
|
};
|
|
981
|
-
export interface AsyncApiCallResultsPage {
|
|
982
|
-
/** list of items on this page of results */
|
|
983
|
-
items: AsyncApiCall[];
|
|
984
|
-
/**
|
|
985
|
-
* {
|
|
986
|
-
* "nullable": true,
|
|
987
|
-
* "description": "token used to fetch the next page of results (if any)"
|
|
988
|
-
* }
|
|
989
|
-
*/
|
|
990
|
-
next_page?: string;
|
|
991
|
-
}
|
|
992
|
-
export type AsyncApiCallType = 'file_conversion' | 'file_volume' | 'file_center_of_mass' | 'file_mass' | 'file_density' | 'file_surface_area' | 'text_to_cad' | 'text_to_cad_iteration' | 'text_to_cad_multi_file_iteration';
|
|
993
917
|
export interface AuthApiKeyResponse {
|
|
994
918
|
/** The session token */
|
|
995
919
|
session_token: string;
|
|
@@ -1312,7 +1236,27 @@ export type BillingUnit = 'file' | 'minute' | 'second' | 'year' | 'period';
|
|
|
1312
1236
|
export type BillingUnitGranularity = 'minute' | 'second';
|
|
1313
1237
|
export type BlendType = 'tangent';
|
|
1314
1238
|
export type BlockReason = 'missing_payment_method' | 'payment_method_failed' | 'upgrade_downgrade_abuse';
|
|
1239
|
+
export interface BodiesCreated {
|
|
1240
|
+
/** All bodies created by this operation. */
|
|
1241
|
+
bodies: BodyCreated[];
|
|
1242
|
+
}
|
|
1243
|
+
export interface BodiesUpdated {
|
|
1244
|
+
/** All bodies created by this operation. */
|
|
1245
|
+
bodies: BodyUpdated[];
|
|
1246
|
+
}
|
|
1247
|
+
export interface BodyCreated {
|
|
1248
|
+
/** format:uuid, description:The body's ID. */
|
|
1249
|
+
id: string;
|
|
1250
|
+
/** Surfaces this body contains. */
|
|
1251
|
+
surfaces: SurfaceCreated[];
|
|
1252
|
+
}
|
|
1315
1253
|
export type BodyType = 'solid' | 'surface';
|
|
1254
|
+
export interface BodyUpdated {
|
|
1255
|
+
/** format:uuid, description:The body's ID. */
|
|
1256
|
+
id: string;
|
|
1257
|
+
/** Surfaces added to this body. */
|
|
1258
|
+
surfaces: SurfaceCreated[];
|
|
1259
|
+
}
|
|
1316
1260
|
export interface BooleanImprint {
|
|
1317
1261
|
/**
|
|
1318
1262
|
* {
|
|
@@ -2273,35 +2217,6 @@ export interface Error {
|
|
|
2273
2217
|
request_id: string;
|
|
2274
2218
|
}
|
|
2275
2219
|
export type ErrorCode = 'internal_engine' | 'internal_api' | 'bad_request' | 'auth_token_missing' | 'auth_token_invalid' | 'invalid_json' | 'invalid_bson' | 'wrong_protocol' | 'connection_problem' | 'message_type_not_accepted' | 'message_type_not_accepted_for_web_r_t_c';
|
|
2276
|
-
export type Event = {
|
|
2277
|
-
/**
|
|
2278
|
-
* {
|
|
2279
|
-
* "nullable": true,
|
|
2280
|
-
* "description": "Attachment URI for where the attachment is stored."
|
|
2281
|
-
* }
|
|
2282
|
-
*/
|
|
2283
|
-
attachment_uri?: string;
|
|
2284
|
-
/** format:date-time, description:Time this event was created. */
|
|
2285
|
-
created_at: string;
|
|
2286
|
-
/** The specific event type from the modeling app. */
|
|
2287
|
-
event_type: ModelingAppEventType;
|
|
2288
|
-
/** nullable:true, format:date-time, description:Time the associated attachment was last compiled. */
|
|
2289
|
-
last_compiled_at?: string;
|
|
2290
|
-
/** nullable:true, description:Project descriptino as given by the user. */
|
|
2291
|
-
project_description?: string;
|
|
2292
|
-
/** Project name as given by the user. */
|
|
2293
|
-
project_name: string;
|
|
2294
|
-
/**
|
|
2295
|
-
* {
|
|
2296
|
-
* "format": "uuid",
|
|
2297
|
-
* "description": "The source app for this event, uuid that is unique to the app."
|
|
2298
|
-
* }
|
|
2299
|
-
*/
|
|
2300
|
-
source_id: string;
|
|
2301
|
-
type: 'modeling_app_event';
|
|
2302
|
-
/** An anonymous user id generated client-side. */
|
|
2303
|
-
user_id: string;
|
|
2304
|
-
};
|
|
2305
2220
|
export interface Export {
|
|
2306
2221
|
/** The files that were exported. */
|
|
2307
2222
|
files: ExportFile[];
|
|
@@ -2393,18 +2308,11 @@ export interface ExtendedUser {
|
|
|
2393
2308
|
*/
|
|
2394
2309
|
username?: string;
|
|
2395
2310
|
}
|
|
2396
|
-
export interface ExtendedUserResultsPage {
|
|
2397
|
-
/** list of items on this page of results */
|
|
2398
|
-
items: ExtendedUser[];
|
|
2399
|
-
/**
|
|
2400
|
-
* {
|
|
2401
|
-
* "nullable": true,
|
|
2402
|
-
* "description": "token used to fetch the next page of results (if any)"
|
|
2403
|
-
* }
|
|
2404
|
-
*/
|
|
2405
|
-
next_page?: string;
|
|
2406
|
-
}
|
|
2407
2311
|
export interface Extrude {
|
|
2312
|
+
/** Any new bodies created by the request. */
|
|
2313
|
+
bodies_created?: BodiesCreated;
|
|
2314
|
+
/** Any existing bodies updated by the request. */
|
|
2315
|
+
bodies_updated?: BodiesUpdated;
|
|
2408
2316
|
}
|
|
2409
2317
|
export type ExtrudeMethod = 'new' | 'merge';
|
|
2410
2318
|
export type ExtrudeReference = {
|
|
@@ -2435,6 +2343,10 @@ export type ExtrudeReference = {
|
|
|
2435
2343
|
};
|
|
2436
2344
|
};
|
|
2437
2345
|
export interface ExtrudeToReference {
|
|
2346
|
+
/** Any new bodies created by the request. */
|
|
2347
|
+
bodies_created?: BodiesCreated;
|
|
2348
|
+
/** Any existing bodies updated by the request. */
|
|
2349
|
+
bodies_updated?: BodiesUpdated;
|
|
2438
2350
|
}
|
|
2439
2351
|
export interface ExtrudedFaceInfo {
|
|
2440
2352
|
/**
|
|
@@ -3167,6 +3079,17 @@ export interface InvoiceLineItem {
|
|
|
3167
3079
|
};
|
|
3168
3080
|
}
|
|
3169
3081
|
export type InvoiceRefundStatus = 'partially_refunded' | 'refunded';
|
|
3082
|
+
export interface InvoiceResultsPage {
|
|
3083
|
+
/** list of items on this page of results */
|
|
3084
|
+
items: Invoice[];
|
|
3085
|
+
/**
|
|
3086
|
+
* {
|
|
3087
|
+
* "nullable": true,
|
|
3088
|
+
* "description": "token used to fetch the next page of results (if any)"
|
|
3089
|
+
* }
|
|
3090
|
+
*/
|
|
3091
|
+
next_page?: string;
|
|
3092
|
+
}
|
|
3170
3093
|
export type InvoiceStatus = 'draft' | 'open' | 'paid' | 'uncollectible' | 'void' | 'unknown';
|
|
3171
3094
|
export interface IpAddrInfo {
|
|
3172
3095
|
/** nullable:true, format:int64, description:Autonomous System Number. */
|
|
@@ -3518,90 +3441,6 @@ export type MlCopilotSupportedModels = 'gpt5_nano' | 'gpt5_mini' | 'gpt5_codex'
|
|
|
3518
3441
|
export type MlCopilotSystemCommand = 'new' | 'bye' | 'continue' | 'interrupt' | 'cancel' | 'answer_now';
|
|
3519
3442
|
export type MlCopilotTool = 'edit_kcl_code' | 'text_to_cad' | 'mechanical_knowledge_base' | 'web_search';
|
|
3520
3443
|
export type MlFeedback = 'thumbs_up' | 'thumbs_down' | 'accepted' | 'rejected';
|
|
3521
|
-
export interface MlPromptMetadata {
|
|
3522
|
-
/** nullable:true, description:Code for the model. */
|
|
3523
|
-
code?: string;
|
|
3524
|
-
/** nullable:true, description:The original source code for the model. */
|
|
3525
|
-
original_source_code?: string;
|
|
3526
|
-
/** The source ranges the user suggested to change. */
|
|
3527
|
-
source_ranges?: SourceRangePrompt[];
|
|
3528
|
-
/** nullable:true, description:The upstream conversation ID, if any. */
|
|
3529
|
-
upstream_conversation_id?: string;
|
|
3530
|
-
}
|
|
3531
|
-
export interface MlPromptResponse {
|
|
3532
|
-
/**
|
|
3533
|
-
* {
|
|
3534
|
-
* "nullable": true,
|
|
3535
|
-
* "title": "DateTime",
|
|
3536
|
-
* "format": "date-time",
|
|
3537
|
-
* "description": "When the prompt was completed."
|
|
3538
|
-
* }
|
|
3539
|
-
*/
|
|
3540
|
-
completed_at?: string;
|
|
3541
|
-
/**
|
|
3542
|
-
* {
|
|
3543
|
-
* "nullable": true,
|
|
3544
|
-
* "description": "The conversation associated with this prompt, if any."
|
|
3545
|
-
* }
|
|
3546
|
-
*/
|
|
3547
|
-
conversation_id?: Uuid;
|
|
3548
|
-
/** title:DateTime, format:date-time, description:The date and time the ML prompt was created. */
|
|
3549
|
-
created_at: string;
|
|
3550
|
-
/** nullable:true, description:The error message if the prompt failed. */
|
|
3551
|
-
error?: string;
|
|
3552
|
-
/** nullable:true, description:Feedback from the user, if any. */
|
|
3553
|
-
feedback?: MlFeedback;
|
|
3554
|
-
/** The unique identifier for the ML prompt. */
|
|
3555
|
-
id: Uuid;
|
|
3556
|
-
/** nullable:true, description:The KCL version being used. */
|
|
3557
|
-
kcl_version?: string;
|
|
3558
|
-
/** nullable:true, description:The metadata for the prompt. */
|
|
3559
|
-
metadata?: MlPromptMetadata;
|
|
3560
|
-
/** The version of the model. */
|
|
3561
|
-
model_version: string;
|
|
3562
|
-
/**
|
|
3563
|
-
* {
|
|
3564
|
-
* "nullable": true,
|
|
3565
|
-
* "description": "The output directory reference for generated files."
|
|
3566
|
-
* }
|
|
3567
|
-
*/
|
|
3568
|
-
output_file?: string;
|
|
3569
|
-
/** nullable:true, description:The name of the project, if any. */
|
|
3570
|
-
project_name?: string;
|
|
3571
|
-
/** The prompt. */
|
|
3572
|
-
prompt: string;
|
|
3573
|
-
/** nullable:true, format:int64, description:Sum of EndOfStream durations, in seconds. */
|
|
3574
|
-
seconds?: number;
|
|
3575
|
-
/**
|
|
3576
|
-
* {
|
|
3577
|
-
* "nullable": true,
|
|
3578
|
-
* "title": "DateTime",
|
|
3579
|
-
* "format": "date-time",
|
|
3580
|
-
* "description": "When the prompt was started."
|
|
3581
|
-
* }
|
|
3582
|
-
*/
|
|
3583
|
-
started_at?: string;
|
|
3584
|
-
/** The status of the prompt. */
|
|
3585
|
-
status: ApiCallStatus;
|
|
3586
|
-
/** The type of prompt. */
|
|
3587
|
-
type: MlPromptType;
|
|
3588
|
-
/** title:DateTime, format:date-time, description:The date and time the ML prompt was last updated. */
|
|
3589
|
-
updated_at: string;
|
|
3590
|
-
/** The user ID of the user who created the ML prompt. */
|
|
3591
|
-
user_id: Uuid;
|
|
3592
|
-
}
|
|
3593
|
-
export interface MlPromptResponseResultsPage {
|
|
3594
|
-
/** list of items on this page of results */
|
|
3595
|
-
items: MlPromptResponse[];
|
|
3596
|
-
/**
|
|
3597
|
-
* {
|
|
3598
|
-
* "nullable": true,
|
|
3599
|
-
* "description": "token used to fetch the next page of results (if any)"
|
|
3600
|
-
* }
|
|
3601
|
-
*/
|
|
3602
|
-
next_page?: string;
|
|
3603
|
-
}
|
|
3604
|
-
export type MlPromptType = 'text_to_cad' | 'text_to_kcl' | 'text_to_kcl_iteration' | 'text_to_kcl_multi_file_iteration' | 'copilot';
|
|
3605
3444
|
export type MlReasoningEffort = 'low' | 'medium' | 'high' | 'xhigh';
|
|
3606
3445
|
export type MlToolResult = {
|
|
3607
3446
|
/**
|
|
@@ -3640,7 +3479,6 @@ export type MlToolResult = {
|
|
|
3640
3479
|
response: string;
|
|
3641
3480
|
type: 'mechanical_knowledge_base';
|
|
3642
3481
|
};
|
|
3643
|
-
export type ModelingAppEventType = 'successful_compile_before_close';
|
|
3644
3482
|
export type ModelingAppShareLinks = 'public' | 'password_protected' | 'organization_only';
|
|
3645
3483
|
export interface ModelingAppSubscriptionTier {
|
|
3646
3484
|
/**
|
|
@@ -6857,6 +6695,8 @@ export interface OrgAdminDetails {
|
|
|
6857
6695
|
block?: BlockReason;
|
|
6858
6696
|
/** nullable:true, description:Human-friendly block reason message. */
|
|
6859
6697
|
block_message?: string;
|
|
6698
|
+
/** Whether this organization is permanently exempt from blocking. */
|
|
6699
|
+
never_block: boolean;
|
|
6860
6700
|
/** Known payment methods on file. */
|
|
6861
6701
|
payment_methods: PaymentMethod[];
|
|
6862
6702
|
payment_methods_summary: string[];
|
|
@@ -7252,17 +7092,6 @@ export interface OrgMemberResultsPage {
|
|
|
7252
7092
|
*/
|
|
7253
7093
|
next_page?: string;
|
|
7254
7094
|
}
|
|
7255
|
-
export interface OrgResultsPage {
|
|
7256
|
-
/** list of items on this page of results */
|
|
7257
|
-
items: Org[];
|
|
7258
|
-
/**
|
|
7259
|
-
* {
|
|
7260
|
-
* "nullable": true,
|
|
7261
|
-
* "description": "token used to fetch the next page of results (if any)"
|
|
7262
|
-
* }
|
|
7263
|
-
*/
|
|
7264
|
-
next_page?: string;
|
|
7265
|
-
}
|
|
7266
7095
|
export type OrgRole = 'admin' | 'member' | 'service_account';
|
|
7267
7096
|
export interface OrientToFace {
|
|
7268
7097
|
/** Camera settings */
|
|
@@ -7917,8 +7746,16 @@ export type RelativeTo = 'sketch_plane' | 'trajectory_curve';
|
|
|
7917
7746
|
export interface RemoveSceneObjects {
|
|
7918
7747
|
}
|
|
7919
7748
|
export interface Revolve {
|
|
7749
|
+
/** Any new bodies created by the request. */
|
|
7750
|
+
bodies_created?: BodiesCreated;
|
|
7751
|
+
/** Any existing bodies updated by the request. */
|
|
7752
|
+
bodies_updated?: BodiesUpdated;
|
|
7920
7753
|
}
|
|
7921
7754
|
export interface RevolveAboutEdge {
|
|
7755
|
+
/** Any new bodies created by the request. */
|
|
7756
|
+
bodies_created?: BodiesCreated;
|
|
7757
|
+
/** Any existing bodies updated by the request. */
|
|
7758
|
+
bodies_updated?: BodiesUpdated;
|
|
7922
7759
|
}
|
|
7923
7760
|
export interface Rotation {
|
|
7924
7761
|
/** Rotate this far about the rotation axis. Defaults to zero (i.e. no rotation). */
|
|
@@ -8417,6 +8254,18 @@ export interface SurfaceArea {
|
|
|
8417
8254
|
}
|
|
8418
8255
|
export interface SurfaceBlend {
|
|
8419
8256
|
}
|
|
8257
|
+
export interface SurfaceCreated {
|
|
8258
|
+
/**
|
|
8259
|
+
* {
|
|
8260
|
+
* "format": "uuid"
|
|
8261
|
+
* }
|
|
8262
|
+
*/
|
|
8263
|
+
from_segments: string[];
|
|
8264
|
+
/** format:uuid, description:The surface's ID. */
|
|
8265
|
+
id: string;
|
|
8266
|
+
/** format:uint32, minimum:0, description:Which number face of the parent body is this? */
|
|
8267
|
+
primitive_face_index: number;
|
|
8268
|
+
}
|
|
8420
8269
|
export interface SurfaceEdgeReference {
|
|
8421
8270
|
/** A list of the edge ids that belong to the body. */
|
|
8422
8271
|
edges: FractionOfEdge[];
|
|
@@ -8424,6 +8273,10 @@ export interface SurfaceEdgeReference {
|
|
|
8424
8273
|
object_id: string;
|
|
8425
8274
|
}
|
|
8426
8275
|
export interface Sweep {
|
|
8276
|
+
/** Any new bodies created by the request. */
|
|
8277
|
+
bodies_created?: BodiesCreated;
|
|
8278
|
+
/** Any existing bodies updated by the request. */
|
|
8279
|
+
bodies_updated?: BodiesUpdated;
|
|
8427
8280
|
}
|
|
8428
8281
|
export interface System {
|
|
8429
8282
|
/** Axis the front face of a model looks along. */
|
|
@@ -8970,6 +8823,10 @@ export interface TransformByForPoint4d {
|
|
|
8970
8823
|
set: boolean;
|
|
8971
8824
|
}
|
|
8972
8825
|
export interface TwistExtrude {
|
|
8826
|
+
/** Any new bodies created by the request. */
|
|
8827
|
+
bodies_created?: BodiesCreated;
|
|
8828
|
+
/** Any existing bodies updated by the request. */
|
|
8829
|
+
bodies_updated?: BodiesUpdated;
|
|
8973
8830
|
}
|
|
8974
8831
|
export type UnitAngle = 'degrees' | 'radians';
|
|
8975
8832
|
export interface UnitAngleConversion {
|
|
@@ -9676,6 +9533,8 @@ export interface UserAdminDetails {
|
|
|
9676
9533
|
* }
|
|
9677
9534
|
*/
|
|
9678
9535
|
cad_user_info?: UserCadInfoAdminDetails;
|
|
9536
|
+
/** Whether this user is permanently exempt from blocking. */
|
|
9537
|
+
never_block: boolean;
|
|
9679
9538
|
/** Known payment methods on file. */
|
|
9680
9539
|
payment_methods: PaymentMethod[];
|
|
9681
9540
|
payment_methods_summary: string[];
|
|
@@ -9863,17 +9722,6 @@ export interface UserResponse {
|
|
|
9863
9722
|
*/
|
|
9864
9723
|
username?: string;
|
|
9865
9724
|
}
|
|
9866
|
-
export interface UserResponseResultsPage {
|
|
9867
|
-
/** list of items on this page of results */
|
|
9868
|
-
items: UserResponse[];
|
|
9869
|
-
/**
|
|
9870
|
-
* {
|
|
9871
|
-
* "nullable": true,
|
|
9872
|
-
* "description": "token used to fetch the next page of results (if any)"
|
|
9873
|
-
* }
|
|
9874
|
-
*/
|
|
9875
|
-
next_page?: string;
|
|
9876
|
-
}
|
|
9877
9725
|
export type Uuid =
|
|
9878
9726
|
/** format:uuid, description:A UUID usually v4 or v7 */
|
|
9879
9727
|
string;
|
|
@@ -10224,8 +10072,6 @@ export interface Models {
|
|
|
10224
10072
|
AnnotationTextAlignmentY: AnnotationTextAlignmentY;
|
|
10225
10073
|
AnnotationTextOptions: AnnotationTextOptions;
|
|
10226
10074
|
AnnotationType: AnnotationType;
|
|
10227
|
-
ApiCallQueryGroup: ApiCallQueryGroup;
|
|
10228
|
-
ApiCallQueryGroupBy: ApiCallQueryGroupBy;
|
|
10229
10075
|
ApiCallStatus: ApiCallStatus;
|
|
10230
10076
|
ApiCallWithPrice: ApiCallWithPrice;
|
|
10231
10077
|
ApiCallWithPriceResultsPage: ApiCallWithPriceResultsPage;
|
|
@@ -10235,10 +10081,7 @@ export interface Models {
|
|
|
10235
10081
|
ApiTokenResultsPage: ApiTokenResultsPage;
|
|
10236
10082
|
ApiTokenUuid: ApiTokenUuid;
|
|
10237
10083
|
AppClientInfo: AppClientInfo;
|
|
10238
|
-
AsyncApiCall: AsyncApiCall;
|
|
10239
10084
|
AsyncApiCallOutput: AsyncApiCallOutput;
|
|
10240
|
-
AsyncApiCallResultsPage: AsyncApiCallResultsPage;
|
|
10241
|
-
AsyncApiCallType: AsyncApiCallType;
|
|
10242
10085
|
AuthApiKeyResponse: AuthApiKeyResponse;
|
|
10243
10086
|
AuthCallback: AuthCallback;
|
|
10244
10087
|
Axis: Axis;
|
|
@@ -10268,7 +10111,11 @@ export interface Models {
|
|
|
10268
10111
|
BillingUnitGranularity: BillingUnitGranularity;
|
|
10269
10112
|
BlendType: BlendType;
|
|
10270
10113
|
BlockReason: BlockReason;
|
|
10114
|
+
BodiesCreated: BodiesCreated;
|
|
10115
|
+
BodiesUpdated: BodiesUpdated;
|
|
10116
|
+
BodyCreated: BodyCreated;
|
|
10271
10117
|
BodyType: BodyType;
|
|
10118
|
+
BodyUpdated: BodyUpdated;
|
|
10272
10119
|
BooleanImprint: BooleanImprint;
|
|
10273
10120
|
BooleanIntersection: BooleanIntersection;
|
|
10274
10121
|
BooleanSubtract: BooleanSubtract;
|
|
@@ -10382,14 +10229,12 @@ export interface Models {
|
|
|
10382
10229
|
EntityType: EntityType;
|
|
10383
10230
|
Error: Error;
|
|
10384
10231
|
ErrorCode: ErrorCode;
|
|
10385
|
-
Event: Event;
|
|
10386
10232
|
Export: Export;
|
|
10387
10233
|
Export2d: Export2d;
|
|
10388
10234
|
Export3d: Export3d;
|
|
10389
10235
|
ExportFile: ExportFile;
|
|
10390
10236
|
ExtendPath: ExtendPath;
|
|
10391
10237
|
ExtendedUser: ExtendedUser;
|
|
10392
|
-
ExtendedUserResultsPage: ExtendedUserResultsPage;
|
|
10393
10238
|
Extrude: Extrude;
|
|
10394
10239
|
ExtrudeMethod: ExtrudeMethod;
|
|
10395
10240
|
ExtrudeReference: ExtrudeReference;
|
|
@@ -10434,6 +10279,7 @@ export interface Models {
|
|
|
10434
10279
|
Invoice: Invoice;
|
|
10435
10280
|
InvoiceLineItem: InvoiceLineItem;
|
|
10436
10281
|
InvoiceRefundStatus: InvoiceRefundStatus;
|
|
10282
|
+
InvoiceResultsPage: InvoiceResultsPage;
|
|
10437
10283
|
InvoiceStatus: InvoiceStatus;
|
|
10438
10284
|
IpAddrInfo: IpAddrInfo;
|
|
10439
10285
|
KclCodeCompletionParams: KclCodeCompletionParams;
|
|
@@ -10461,13 +10307,8 @@ export interface Models {
|
|
|
10461
10307
|
MlCopilotSystemCommand: MlCopilotSystemCommand;
|
|
10462
10308
|
MlCopilotTool: MlCopilotTool;
|
|
10463
10309
|
MlFeedback: MlFeedback;
|
|
10464
|
-
MlPromptMetadata: MlPromptMetadata;
|
|
10465
|
-
MlPromptResponse: MlPromptResponse;
|
|
10466
|
-
MlPromptResponseResultsPage: MlPromptResponseResultsPage;
|
|
10467
|
-
MlPromptType: MlPromptType;
|
|
10468
10310
|
MlReasoningEffort: MlReasoningEffort;
|
|
10469
10311
|
MlToolResult: MlToolResult;
|
|
10470
|
-
ModelingAppEventType: ModelingAppEventType;
|
|
10471
10312
|
ModelingAppShareLinks: ModelingAppShareLinks;
|
|
10472
10313
|
ModelingAppSubscriptionTier: ModelingAppSubscriptionTier;
|
|
10473
10314
|
ModelingCmd: ModelingCmd;
|
|
@@ -10517,7 +10358,6 @@ export interface Models {
|
|
|
10517
10358
|
OrgDetails: OrgDetails;
|
|
10518
10359
|
OrgMember: OrgMember;
|
|
10519
10360
|
OrgMemberResultsPage: OrgMemberResultsPage;
|
|
10520
|
-
OrgResultsPage: OrgResultsPage;
|
|
10521
10361
|
OrgRole: OrgRole;
|
|
10522
10362
|
OrientToFace: OrientToFace;
|
|
10523
10363
|
OriginType: OriginType;
|
|
@@ -10655,6 +10495,7 @@ export interface Models {
|
|
|
10655
10495
|
SupportTier: SupportTier;
|
|
10656
10496
|
SurfaceArea: SurfaceArea;
|
|
10657
10497
|
SurfaceBlend: SurfaceBlend;
|
|
10498
|
+
SurfaceCreated: SurfaceCreated;
|
|
10658
10499
|
SurfaceEdgeReference: SurfaceEdgeReference;
|
|
10659
10500
|
Sweep: Sweep;
|
|
10660
10501
|
System: System;
|
|
@@ -10719,7 +10560,6 @@ export interface Models {
|
|
|
10719
10560
|
UserOrgInfo: UserOrgInfo;
|
|
10720
10561
|
UserOrgRole: UserOrgRole;
|
|
10721
10562
|
UserResponse: UserResponse;
|
|
10722
|
-
UserResponseResultsPage: UserResponseResultsPage;
|
|
10723
10563
|
Uuid: Uuid;
|
|
10724
10564
|
VerificationTokenResponse: VerificationTokenResponse;
|
|
10725
10565
|
ViewIsometric: ViewIsometric;
|