@appwrite.io/console 2.1.3 → 2.2.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/CHANGELOG.md +8 -0
- package/README.md +1 -1
- package/dist/cjs/sdk.js +1564 -187
- package/dist/cjs/sdk.js.map +1 -1
- package/dist/esm/sdk.js +1565 -188
- package/dist/esm/sdk.js.map +1 -1
- package/dist/iife/sdk.js +1564 -187
- package/docs/examples/account/create-key.md +15 -0
- package/docs/examples/account/delete-key.md +13 -0
- package/docs/examples/account/get-key.md +13 -0
- package/docs/examples/account/list-keys.md +13 -0
- package/docs/examples/account/update-key.md +16 -0
- package/docs/examples/avatars/get-screenshot.md +5 -5
- package/docs/examples/backups/create-archive.md +2 -2
- package/docs/examples/backups/create-policy.md +2 -2
- package/docs/examples/backups/create-restoration.md +2 -2
- package/docs/examples/console/{get-regions.md → list-regions.md} +1 -3
- package/docs/examples/databases/create-index.md +2 -2
- package/docs/examples/databases/create-longtext-attribute.md +18 -0
- package/docs/examples/databases/create-mediumtext-attribute.md +18 -0
- package/docs/examples/databases/create-text-attribute.md +18 -0
- package/docs/examples/databases/create-varchar-attribute.md +19 -0
- package/docs/examples/databases/update-collection.md +1 -1
- package/docs/examples/databases/update-longtext-attribute.md +18 -0
- package/docs/examples/databases/update-mediumtext-attribute.md +18 -0
- package/docs/examples/databases/update-text-attribute.md +18 -0
- package/docs/examples/databases/update-varchar-attribute.md +19 -0
- package/docs/examples/databases/update.md +1 -1
- package/docs/examples/functions/create.md +2 -2
- package/docs/examples/functions/list-templates.md +3 -3
- package/docs/examples/functions/update.md +2 -2
- package/docs/examples/migrations/create-appwrite-migration.md +2 -2
- package/docs/examples/migrations/create-firebase-migration.md +2 -2
- package/docs/examples/migrations/create-n-host-migration.md +2 -2
- package/docs/examples/migrations/create-supabase-migration.md +2 -2
- package/docs/examples/migrations/get-appwrite-report.md +2 -2
- package/docs/examples/migrations/get-firebase-report.md +2 -2
- package/docs/examples/migrations/get-n-host-report.md +2 -2
- package/docs/examples/migrations/get-supabase-report.md +2 -2
- package/docs/examples/organizations/create-key.md +16 -0
- package/docs/examples/organizations/create.md +2 -2
- package/docs/examples/organizations/delete-key.md +14 -0
- package/docs/examples/organizations/estimation-create-organization.md +2 -2
- package/docs/examples/organizations/estimation-update-plan.md +2 -2
- package/docs/examples/organizations/get-key.md +14 -0
- package/docs/examples/organizations/list-keys.md +14 -0
- package/docs/examples/organizations/list-regions.md +13 -0
- package/docs/examples/organizations/update-key.md +17 -0
- package/docs/examples/organizations/update-plan.md +2 -2
- package/docs/examples/projects/create-jwt.md +2 -2
- package/docs/examples/projects/create-key.md +2 -2
- package/docs/examples/projects/update-key.md +2 -2
- package/docs/examples/sites/list-templates.md +3 -3
- package/docs/examples/tablesdb/create-index.md +2 -2
- package/docs/examples/tablesdb/create-longtext-column.md +18 -0
- package/docs/examples/tablesdb/create-mediumtext-column.md +18 -0
- package/docs/examples/tablesdb/create-text-column.md +18 -0
- package/docs/examples/tablesdb/create-varchar-column.md +19 -0
- package/docs/examples/tablesdb/update-longtext-column.md +18 -0
- package/docs/examples/tablesdb/update-mediumtext-column.md +18 -0
- package/docs/examples/tablesdb/update-table.md +1 -1
- package/docs/examples/tablesdb/update-text-column.md +18 -0
- package/docs/examples/tablesdb/update-varchar-column.md +19 -0
- package/docs/examples/tablesdb/update.md +1 -1
- package/docs/examples/teams/create-membership.md +2 -2
- package/docs/examples/teams/update-membership.md +2 -2
- package/package.json +1 -1
- package/src/channel.ts +8 -4
- package/src/client.ts +3 -28
- package/src/enums/browser-permission.ts +22 -0
- package/src/enums/deployment-status.ts +1 -0
- package/src/enums/frameworks.ts +17 -0
- package/src/enums/order-by.ts +4 -0
- package/src/enums/resources.ts +13 -0
- package/src/enums/roles.ts +7 -0
- package/src/enums/runtimes.ts +66 -0
- package/src/enums/scopes.ts +65 -0
- package/src/enums/services.ts +5 -0
- package/src/enums/use-cases.ts +11 -0
- package/src/index.ts +9 -1
- package/src/models.ts +349 -1
- package/src/services/account.ts +364 -56
- package/src/services/assistant.ts +1 -1
- package/src/services/avatars.ts +17 -16
- package/src/services/backups.ts +37 -36
- package/src/services/console.ts +11 -42
- package/src/services/databases.ts +1060 -280
- package/src/services/domains.ts +44 -44
- package/src/services/functions.ts +60 -57
- package/src/services/graphql.ts +2 -2
- package/src/services/health.ts +22 -20
- package/src/services/messaging.ts +56 -56
- package/src/services/migrations.ts +79 -78
- package/src/services/organizations.ts +466 -70
- package/src/services/project.ts +5 -5
- package/src/services/projects.ts +86 -85
- package/src/services/proxy.ts +8 -8
- package/src/services/sites.ts +42 -40
- package/src/services/storage.ts +16 -16
- package/src/services/tables-db.ts +1050 -268
- package/src/services/teams.ts +31 -30
- package/src/services/tokens.ts +5 -5
- package/src/services/users.ts +49 -49
- package/src/services/vcs.ts +10 -10
- package/types/channel.d.ts +5 -4
- package/types/enums/browser-permission.d.ts +22 -0
- package/types/enums/deployment-status.d.ts +1 -0
- package/types/enums/frameworks.d.ts +17 -0
- package/types/enums/order-by.d.ts +4 -0
- package/types/enums/resources.d.ts +13 -0
- package/types/enums/roles.d.ts +7 -0
- package/types/enums/runtimes.d.ts +66 -0
- package/types/enums/scopes.d.ts +65 -0
- package/types/enums/services.d.ts +5 -0
- package/types/enums/use-cases.d.ts +11 -0
- package/types/index.d.ts +9 -1
- package/types/models.d.ts +341 -1
- package/types/services/account.d.ts +111 -0
- package/types/services/avatars.d.ts +5 -4
- package/types/services/backups.d.ts +13 -12
- package/types/services/console.d.ts +1 -13
- package/types/services/databases.d.ts +303 -8
- package/types/services/functions.d.ts +18 -15
- package/types/services/health.d.ts +2 -0
- package/types/services/migrations.d.ts +33 -32
- package/types/services/organizations.d.ts +161 -17
- package/types/services/projects.d.ts +13 -12
- package/types/services/sites.d.ts +9 -7
- package/types/services/tables-db.d.ts +305 -8
- package/types/services/teams.d.ts +9 -8
- package/src/enums/billing-plan.ts +0 -17
- package/types/enums/billing-plan.d.ts +0 -17
package/src/index.ts
CHANGED
|
@@ -38,6 +38,7 @@ export { Role } from './role';
|
|
|
38
38
|
export { ID } from './id';
|
|
39
39
|
export { Channel } from './channel';
|
|
40
40
|
export { Operator, Condition } from './operator';
|
|
41
|
+
export { Scopes } from './enums/scopes';
|
|
41
42
|
export { AuthenticatorType } from './enums/authenticator-type';
|
|
42
43
|
export { AuthenticationFactor } from './enums/authentication-factor';
|
|
43
44
|
export { OAuthProvider } from './enums/o-auth-provider';
|
|
@@ -46,15 +47,20 @@ export { CreditCard } from './enums/credit-card';
|
|
|
46
47
|
export { Flag } from './enums/flag';
|
|
47
48
|
export { Theme } from './enums/theme';
|
|
48
49
|
export { Timezone } from './enums/timezone';
|
|
50
|
+
export { BrowserPermission } from './enums/browser-permission';
|
|
49
51
|
export { ImageFormat } from './enums/image-format';
|
|
52
|
+
export { Services } from './enums/services';
|
|
50
53
|
export { Platform } from './enums/platform';
|
|
51
54
|
export { ConsoleResourceType } from './enums/console-resource-type';
|
|
52
55
|
export { UsageRange } from './enums/usage-range';
|
|
53
56
|
export { RelationshipType } from './enums/relationship-type';
|
|
54
57
|
export { RelationMutate } from './enums/relation-mutate';
|
|
55
58
|
export { IndexType } from './enums/index-type';
|
|
59
|
+
export { OrderBy } from './enums/order-by';
|
|
56
60
|
export { FilterType } from './enums/filter-type';
|
|
57
61
|
export { Runtime } from './enums/runtime';
|
|
62
|
+
export { Runtimes } from './enums/runtimes';
|
|
63
|
+
export { UseCases } from './enums/use-cases';
|
|
58
64
|
export { TemplateReferenceType } from './enums/template-reference-type';
|
|
59
65
|
export { VCSReferenceType } from './enums/vcs-reference-type';
|
|
60
66
|
export { DeploymentDownloadType } from './enums/deployment-download-type';
|
|
@@ -62,7 +68,7 @@ export { ExecutionMethod } from './enums/execution-method';
|
|
|
62
68
|
export { Name } from './enums/name';
|
|
63
69
|
export { MessagePriority } from './enums/message-priority';
|
|
64
70
|
export { SmtpEncryption } from './enums/smtp-encryption';
|
|
65
|
-
export {
|
|
71
|
+
export { Resources } from './enums/resources';
|
|
66
72
|
export { ProjectUsageRange } from './enums/project-usage-range';
|
|
67
73
|
export { Region } from './enums/region';
|
|
68
74
|
export { Api } from './enums/api';
|
|
@@ -80,8 +86,10 @@ export { ProxyResourceType } from './enums/proxy-resource-type';
|
|
|
80
86
|
export { Framework } from './enums/framework';
|
|
81
87
|
export { BuildRuntime } from './enums/build-runtime';
|
|
82
88
|
export { Adapter } from './enums/adapter';
|
|
89
|
+
export { Frameworks } from './enums/frameworks';
|
|
83
90
|
export { Compression } from './enums/compression';
|
|
84
91
|
export { ImageGravity } from './enums/image-gravity';
|
|
92
|
+
export { Roles } from './enums/roles';
|
|
85
93
|
export { PasswordHash } from './enums/password-hash';
|
|
86
94
|
export { MessagingProviderType } from './enums/messaging-provider-type';
|
|
87
95
|
export { VCSDetectionType } from './enums/vcs-detection-type';
|
package/src/models.ts
CHANGED
|
@@ -1446,6 +1446,178 @@ export namespace Models {
|
|
|
1446
1446
|
default?: any[];
|
|
1447
1447
|
}
|
|
1448
1448
|
|
|
1449
|
+
/**
|
|
1450
|
+
* AttributeVarchar
|
|
1451
|
+
*/
|
|
1452
|
+
export type AttributeVarchar = {
|
|
1453
|
+
/**
|
|
1454
|
+
* Attribute Key.
|
|
1455
|
+
*/
|
|
1456
|
+
key: string;
|
|
1457
|
+
/**
|
|
1458
|
+
* Attribute type.
|
|
1459
|
+
*/
|
|
1460
|
+
type: string;
|
|
1461
|
+
/**
|
|
1462
|
+
* Attribute status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed`
|
|
1463
|
+
*/
|
|
1464
|
+
status: AttributeStatus;
|
|
1465
|
+
/**
|
|
1466
|
+
* Error message. Displays error generated on failure of creating or deleting an attribute.
|
|
1467
|
+
*/
|
|
1468
|
+
error: string;
|
|
1469
|
+
/**
|
|
1470
|
+
* Is attribute required?
|
|
1471
|
+
*/
|
|
1472
|
+
required: boolean;
|
|
1473
|
+
/**
|
|
1474
|
+
* Is attribute an array?
|
|
1475
|
+
*/
|
|
1476
|
+
array?: boolean;
|
|
1477
|
+
/**
|
|
1478
|
+
* Attribute creation date in ISO 8601 format.
|
|
1479
|
+
*/
|
|
1480
|
+
$createdAt: string;
|
|
1481
|
+
/**
|
|
1482
|
+
* Attribute update date in ISO 8601 format.
|
|
1483
|
+
*/
|
|
1484
|
+
$updatedAt: string;
|
|
1485
|
+
/**
|
|
1486
|
+
* Attribute size.
|
|
1487
|
+
*/
|
|
1488
|
+
size: number;
|
|
1489
|
+
/**
|
|
1490
|
+
* Default value for attribute when not provided. Cannot be set when attribute is required.
|
|
1491
|
+
*/
|
|
1492
|
+
default?: string;
|
|
1493
|
+
}
|
|
1494
|
+
|
|
1495
|
+
/**
|
|
1496
|
+
* AttributeText
|
|
1497
|
+
*/
|
|
1498
|
+
export type AttributeText = {
|
|
1499
|
+
/**
|
|
1500
|
+
* Attribute Key.
|
|
1501
|
+
*/
|
|
1502
|
+
key: string;
|
|
1503
|
+
/**
|
|
1504
|
+
* Attribute type.
|
|
1505
|
+
*/
|
|
1506
|
+
type: string;
|
|
1507
|
+
/**
|
|
1508
|
+
* Attribute status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed`
|
|
1509
|
+
*/
|
|
1510
|
+
status: AttributeStatus;
|
|
1511
|
+
/**
|
|
1512
|
+
* Error message. Displays error generated on failure of creating or deleting an attribute.
|
|
1513
|
+
*/
|
|
1514
|
+
error: string;
|
|
1515
|
+
/**
|
|
1516
|
+
* Is attribute required?
|
|
1517
|
+
*/
|
|
1518
|
+
required: boolean;
|
|
1519
|
+
/**
|
|
1520
|
+
* Is attribute an array?
|
|
1521
|
+
*/
|
|
1522
|
+
array?: boolean;
|
|
1523
|
+
/**
|
|
1524
|
+
* Attribute creation date in ISO 8601 format.
|
|
1525
|
+
*/
|
|
1526
|
+
$createdAt: string;
|
|
1527
|
+
/**
|
|
1528
|
+
* Attribute update date in ISO 8601 format.
|
|
1529
|
+
*/
|
|
1530
|
+
$updatedAt: string;
|
|
1531
|
+
/**
|
|
1532
|
+
* Default value for attribute when not provided. Cannot be set when attribute is required.
|
|
1533
|
+
*/
|
|
1534
|
+
default?: string;
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1537
|
+
/**
|
|
1538
|
+
* AttributeMediumtext
|
|
1539
|
+
*/
|
|
1540
|
+
export type AttributeMediumtext = {
|
|
1541
|
+
/**
|
|
1542
|
+
* Attribute Key.
|
|
1543
|
+
*/
|
|
1544
|
+
key: string;
|
|
1545
|
+
/**
|
|
1546
|
+
* Attribute type.
|
|
1547
|
+
*/
|
|
1548
|
+
type: string;
|
|
1549
|
+
/**
|
|
1550
|
+
* Attribute status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed`
|
|
1551
|
+
*/
|
|
1552
|
+
status: AttributeStatus;
|
|
1553
|
+
/**
|
|
1554
|
+
* Error message. Displays error generated on failure of creating or deleting an attribute.
|
|
1555
|
+
*/
|
|
1556
|
+
error: string;
|
|
1557
|
+
/**
|
|
1558
|
+
* Is attribute required?
|
|
1559
|
+
*/
|
|
1560
|
+
required: boolean;
|
|
1561
|
+
/**
|
|
1562
|
+
* Is attribute an array?
|
|
1563
|
+
*/
|
|
1564
|
+
array?: boolean;
|
|
1565
|
+
/**
|
|
1566
|
+
* Attribute creation date in ISO 8601 format.
|
|
1567
|
+
*/
|
|
1568
|
+
$createdAt: string;
|
|
1569
|
+
/**
|
|
1570
|
+
* Attribute update date in ISO 8601 format.
|
|
1571
|
+
*/
|
|
1572
|
+
$updatedAt: string;
|
|
1573
|
+
/**
|
|
1574
|
+
* Default value for attribute when not provided. Cannot be set when attribute is required.
|
|
1575
|
+
*/
|
|
1576
|
+
default?: string;
|
|
1577
|
+
}
|
|
1578
|
+
|
|
1579
|
+
/**
|
|
1580
|
+
* AttributeLongtext
|
|
1581
|
+
*/
|
|
1582
|
+
export type AttributeLongtext = {
|
|
1583
|
+
/**
|
|
1584
|
+
* Attribute Key.
|
|
1585
|
+
*/
|
|
1586
|
+
key: string;
|
|
1587
|
+
/**
|
|
1588
|
+
* Attribute type.
|
|
1589
|
+
*/
|
|
1590
|
+
type: string;
|
|
1591
|
+
/**
|
|
1592
|
+
* Attribute status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed`
|
|
1593
|
+
*/
|
|
1594
|
+
status: AttributeStatus;
|
|
1595
|
+
/**
|
|
1596
|
+
* Error message. Displays error generated on failure of creating or deleting an attribute.
|
|
1597
|
+
*/
|
|
1598
|
+
error: string;
|
|
1599
|
+
/**
|
|
1600
|
+
* Is attribute required?
|
|
1601
|
+
*/
|
|
1602
|
+
required: boolean;
|
|
1603
|
+
/**
|
|
1604
|
+
* Is attribute an array?
|
|
1605
|
+
*/
|
|
1606
|
+
array?: boolean;
|
|
1607
|
+
/**
|
|
1608
|
+
* Attribute creation date in ISO 8601 format.
|
|
1609
|
+
*/
|
|
1610
|
+
$createdAt: string;
|
|
1611
|
+
/**
|
|
1612
|
+
* Attribute update date in ISO 8601 format.
|
|
1613
|
+
*/
|
|
1614
|
+
$updatedAt: string;
|
|
1615
|
+
/**
|
|
1616
|
+
* Default value for attribute when not provided. Cannot be set when attribute is required.
|
|
1617
|
+
*/
|
|
1618
|
+
default?: string;
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1449
1621
|
/**
|
|
1450
1622
|
* Table
|
|
1451
1623
|
*/
|
|
@@ -2120,6 +2292,178 @@ export namespace Models {
|
|
|
2120
2292
|
default?: any[];
|
|
2121
2293
|
}
|
|
2122
2294
|
|
|
2295
|
+
/**
|
|
2296
|
+
* ColumnVarchar
|
|
2297
|
+
*/
|
|
2298
|
+
export type ColumnVarchar = {
|
|
2299
|
+
/**
|
|
2300
|
+
* Column Key.
|
|
2301
|
+
*/
|
|
2302
|
+
key: string;
|
|
2303
|
+
/**
|
|
2304
|
+
* Column type.
|
|
2305
|
+
*/
|
|
2306
|
+
type: string;
|
|
2307
|
+
/**
|
|
2308
|
+
* Column status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed`
|
|
2309
|
+
*/
|
|
2310
|
+
status: ColumnStatus;
|
|
2311
|
+
/**
|
|
2312
|
+
* Error message. Displays error generated on failure of creating or deleting an column.
|
|
2313
|
+
*/
|
|
2314
|
+
error: string;
|
|
2315
|
+
/**
|
|
2316
|
+
* Is column required?
|
|
2317
|
+
*/
|
|
2318
|
+
required: boolean;
|
|
2319
|
+
/**
|
|
2320
|
+
* Is column an array?
|
|
2321
|
+
*/
|
|
2322
|
+
array?: boolean;
|
|
2323
|
+
/**
|
|
2324
|
+
* Column creation date in ISO 8601 format.
|
|
2325
|
+
*/
|
|
2326
|
+
$createdAt: string;
|
|
2327
|
+
/**
|
|
2328
|
+
* Column update date in ISO 8601 format.
|
|
2329
|
+
*/
|
|
2330
|
+
$updatedAt: string;
|
|
2331
|
+
/**
|
|
2332
|
+
* Column size.
|
|
2333
|
+
*/
|
|
2334
|
+
size: number;
|
|
2335
|
+
/**
|
|
2336
|
+
* Default value for column when not provided. Cannot be set when column is required.
|
|
2337
|
+
*/
|
|
2338
|
+
default?: string;
|
|
2339
|
+
}
|
|
2340
|
+
|
|
2341
|
+
/**
|
|
2342
|
+
* ColumnText
|
|
2343
|
+
*/
|
|
2344
|
+
export type ColumnText = {
|
|
2345
|
+
/**
|
|
2346
|
+
* Column Key.
|
|
2347
|
+
*/
|
|
2348
|
+
key: string;
|
|
2349
|
+
/**
|
|
2350
|
+
* Column type.
|
|
2351
|
+
*/
|
|
2352
|
+
type: string;
|
|
2353
|
+
/**
|
|
2354
|
+
* Column status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed`
|
|
2355
|
+
*/
|
|
2356
|
+
status: ColumnStatus;
|
|
2357
|
+
/**
|
|
2358
|
+
* Error message. Displays error generated on failure of creating or deleting an column.
|
|
2359
|
+
*/
|
|
2360
|
+
error: string;
|
|
2361
|
+
/**
|
|
2362
|
+
* Is column required?
|
|
2363
|
+
*/
|
|
2364
|
+
required: boolean;
|
|
2365
|
+
/**
|
|
2366
|
+
* Is column an array?
|
|
2367
|
+
*/
|
|
2368
|
+
array?: boolean;
|
|
2369
|
+
/**
|
|
2370
|
+
* Column creation date in ISO 8601 format.
|
|
2371
|
+
*/
|
|
2372
|
+
$createdAt: string;
|
|
2373
|
+
/**
|
|
2374
|
+
* Column update date in ISO 8601 format.
|
|
2375
|
+
*/
|
|
2376
|
+
$updatedAt: string;
|
|
2377
|
+
/**
|
|
2378
|
+
* Default value for column when not provided. Cannot be set when column is required.
|
|
2379
|
+
*/
|
|
2380
|
+
default?: string;
|
|
2381
|
+
}
|
|
2382
|
+
|
|
2383
|
+
/**
|
|
2384
|
+
* ColumnMediumtext
|
|
2385
|
+
*/
|
|
2386
|
+
export type ColumnMediumtext = {
|
|
2387
|
+
/**
|
|
2388
|
+
* Column Key.
|
|
2389
|
+
*/
|
|
2390
|
+
key: string;
|
|
2391
|
+
/**
|
|
2392
|
+
* Column type.
|
|
2393
|
+
*/
|
|
2394
|
+
type: string;
|
|
2395
|
+
/**
|
|
2396
|
+
* Column status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed`
|
|
2397
|
+
*/
|
|
2398
|
+
status: ColumnStatus;
|
|
2399
|
+
/**
|
|
2400
|
+
* Error message. Displays error generated on failure of creating or deleting an column.
|
|
2401
|
+
*/
|
|
2402
|
+
error: string;
|
|
2403
|
+
/**
|
|
2404
|
+
* Is column required?
|
|
2405
|
+
*/
|
|
2406
|
+
required: boolean;
|
|
2407
|
+
/**
|
|
2408
|
+
* Is column an array?
|
|
2409
|
+
*/
|
|
2410
|
+
array?: boolean;
|
|
2411
|
+
/**
|
|
2412
|
+
* Column creation date in ISO 8601 format.
|
|
2413
|
+
*/
|
|
2414
|
+
$createdAt: string;
|
|
2415
|
+
/**
|
|
2416
|
+
* Column update date in ISO 8601 format.
|
|
2417
|
+
*/
|
|
2418
|
+
$updatedAt: string;
|
|
2419
|
+
/**
|
|
2420
|
+
* Default value for column when not provided. Cannot be set when column is required.
|
|
2421
|
+
*/
|
|
2422
|
+
default?: string;
|
|
2423
|
+
}
|
|
2424
|
+
|
|
2425
|
+
/**
|
|
2426
|
+
* ColumnLongtext
|
|
2427
|
+
*/
|
|
2428
|
+
export type ColumnLongtext = {
|
|
2429
|
+
/**
|
|
2430
|
+
* Column Key.
|
|
2431
|
+
*/
|
|
2432
|
+
key: string;
|
|
2433
|
+
/**
|
|
2434
|
+
* Column type.
|
|
2435
|
+
*/
|
|
2436
|
+
type: string;
|
|
2437
|
+
/**
|
|
2438
|
+
* Column status. Possible values: `available`, `processing`, `deleting`, `stuck`, or `failed`
|
|
2439
|
+
*/
|
|
2440
|
+
status: ColumnStatus;
|
|
2441
|
+
/**
|
|
2442
|
+
* Error message. Displays error generated on failure of creating or deleting an column.
|
|
2443
|
+
*/
|
|
2444
|
+
error: string;
|
|
2445
|
+
/**
|
|
2446
|
+
* Is column required?
|
|
2447
|
+
*/
|
|
2448
|
+
required: boolean;
|
|
2449
|
+
/**
|
|
2450
|
+
* Is column an array?
|
|
2451
|
+
*/
|
|
2452
|
+
array?: boolean;
|
|
2453
|
+
/**
|
|
2454
|
+
* Column creation date in ISO 8601 format.
|
|
2455
|
+
*/
|
|
2456
|
+
$createdAt: string;
|
|
2457
|
+
/**
|
|
2458
|
+
* Column update date in ISO 8601 format.
|
|
2459
|
+
*/
|
|
2460
|
+
$updatedAt: string;
|
|
2461
|
+
/**
|
|
2462
|
+
* Default value for column when not provided. Cannot be set when column is required.
|
|
2463
|
+
*/
|
|
2464
|
+
default?: string;
|
|
2465
|
+
}
|
|
2466
|
+
|
|
2123
2467
|
/**
|
|
2124
2468
|
* Index
|
|
2125
2469
|
*/
|
|
@@ -3944,7 +4288,7 @@ export namespace Models {
|
|
|
3944
4288
|
*/
|
|
3945
4289
|
screenshotDark: string;
|
|
3946
4290
|
/**
|
|
3947
|
-
* The deployment status. Possible values are "waiting", "processing", "building", "ready", and "failed".
|
|
4291
|
+
* The deployment status. Possible values are "waiting", "processing", "building", "ready", "canceled" and "failed".
|
|
3948
4292
|
*/
|
|
3949
4293
|
status: DeploymentStatus;
|
|
3950
4294
|
/**
|
|
@@ -6669,6 +7013,10 @@ export namespace Models {
|
|
|
6669
7013
|
* Image Transformations
|
|
6670
7014
|
*/
|
|
6671
7015
|
imageTransformations: number;
|
|
7016
|
+
/**
|
|
7017
|
+
* Screenshots generated
|
|
7018
|
+
*/
|
|
7019
|
+
screenshotsGenerated: number;
|
|
6672
7020
|
/**
|
|
6673
7021
|
* Members
|
|
6674
7022
|
*/
|