@forge/manifest 12.4.0 → 12.4.1-next.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 +6 -0
- package/out/schema/manifest-schema.json +39 -6
- package/out/schema/manifest.d.ts +46 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6955,10 +6955,11 @@
|
|
|
6955
6955
|
"path": {
|
|
6956
6956
|
"type": "string"
|
|
6957
6957
|
},
|
|
6958
|
-
"
|
|
6958
|
+
"connectFieldType": {
|
|
6959
6959
|
"enum": [
|
|
6960
6960
|
"MULTI_SELECT",
|
|
6961
|
-
"SINGLE_SELECT"
|
|
6961
|
+
"SINGLE_SELECT",
|
|
6962
|
+
"TEXT"
|
|
6962
6963
|
],
|
|
6963
6964
|
"type": "string"
|
|
6964
6965
|
}
|
|
@@ -7425,10 +7426,11 @@
|
|
|
7425
7426
|
"path": {
|
|
7426
7427
|
"type": "string"
|
|
7427
7428
|
},
|
|
7428
|
-
"
|
|
7429
|
+
"connectFieldType": {
|
|
7429
7430
|
"enum": [
|
|
7430
7431
|
"MULTI_SELECT",
|
|
7431
|
-
"SINGLE_SELECT"
|
|
7432
|
+
"SINGLE_SELECT",
|
|
7433
|
+
"TEXT"
|
|
7432
7434
|
],
|
|
7433
7435
|
"type": "string"
|
|
7434
7436
|
}
|
|
@@ -7850,10 +7852,11 @@
|
|
|
7850
7852
|
"path": {
|
|
7851
7853
|
"type": "string"
|
|
7852
7854
|
},
|
|
7853
|
-
"
|
|
7855
|
+
"connectFieldType": {
|
|
7854
7856
|
"enum": [
|
|
7855
7857
|
"MULTI_SELECT",
|
|
7856
|
-
"SINGLE_SELECT"
|
|
7858
|
+
"SINGLE_SELECT",
|
|
7859
|
+
"TEXT"
|
|
7857
7860
|
],
|
|
7858
7861
|
"type": "string"
|
|
7859
7862
|
}
|
|
@@ -29350,6 +29353,30 @@
|
|
|
29350
29353
|
],
|
|
29351
29354
|
"additionalProperties": false
|
|
29352
29355
|
},
|
|
29356
|
+
"capabilities": {
|
|
29357
|
+
"type": "object",
|
|
29358
|
+
"description": "Capabilities supported by the connector. Expected for new connectors but optional in the schema for backward compatibility.",
|
|
29359
|
+
"properties": {
|
|
29360
|
+
"replicatesPermissions": {
|
|
29361
|
+
"type": "boolean",
|
|
29362
|
+
"description": "Whether the connector replicates source access controls."
|
|
29363
|
+
},
|
|
29364
|
+
"syncFidelity": {
|
|
29365
|
+
"type": "string",
|
|
29366
|
+
"enum": [
|
|
29367
|
+
"append",
|
|
29368
|
+
"upsert",
|
|
29369
|
+
"mirror"
|
|
29370
|
+
],
|
|
29371
|
+
"description": "How faithfully the connector tracks the source. append: creates entities only (one-time or append-only import). upsert: creates and updates entities on an ongoing basis. mirror: creates, updates, and deletes entities to fully mirror the source."
|
|
29372
|
+
},
|
|
29373
|
+
"supportsIncrementalSync": {
|
|
29374
|
+
"type": "boolean",
|
|
29375
|
+
"description": "Whether the connector supports delta sync (only changed items) rather than requiring a full re-sync."
|
|
29376
|
+
}
|
|
29377
|
+
},
|
|
29378
|
+
"additionalProperties": false
|
|
29379
|
+
},
|
|
29353
29380
|
"key": {
|
|
29354
29381
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
29355
29382
|
}
|
|
@@ -33740,6 +33767,12 @@
|
|
|
33740
33767
|
"maxLength": 255,
|
|
33741
33768
|
"minLength": 1,
|
|
33742
33769
|
"pattern": "^[a-zA-Z0-9-._]+$"
|
|
33770
|
+
},
|
|
33771
|
+
"streaming": {
|
|
33772
|
+
"type": "boolean",
|
|
33773
|
+
"title": "streaming",
|
|
33774
|
+
"default": false,
|
|
33775
|
+
"description": "Whether the endpoint supports streaming capability."
|
|
33743
33776
|
}
|
|
33744
33777
|
},
|
|
33745
33778
|
"required": [
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -519,6 +519,10 @@ export type ActionExtensionKey1 = string;
|
|
|
519
519
|
* The key of the endpoint that should be invoked.
|
|
520
520
|
*/
|
|
521
521
|
export type Endpoint1 = string;
|
|
522
|
+
/**
|
|
523
|
+
* Whether the endpoint supports streaming capability.
|
|
524
|
+
*/
|
|
525
|
+
export type Streaming = boolean;
|
|
522
526
|
/**
|
|
523
527
|
* The domains that this object provider should match.
|
|
524
528
|
*/
|
|
@@ -14570,7 +14574,7 @@ export interface Modules {
|
|
|
14570
14574
|
connectFieldProperty?: {
|
|
14571
14575
|
key?: string;
|
|
14572
14576
|
path?: string;
|
|
14573
|
-
|
|
14577
|
+
connectFieldType?: 'MULTI_SELECT' | 'SINGLE_SELECT' | 'TEXT';
|
|
14574
14578
|
[k: string]: unknown;
|
|
14575
14579
|
};
|
|
14576
14580
|
isUIModificationsEnabled?: boolean;
|
|
@@ -14691,7 +14695,7 @@ export interface Modules {
|
|
|
14691
14695
|
connectFieldProperty?: {
|
|
14692
14696
|
key?: string;
|
|
14693
14697
|
path?: string;
|
|
14694
|
-
|
|
14698
|
+
connectFieldType?: 'MULTI_SELECT' | 'SINGLE_SELECT' | 'TEXT';
|
|
14695
14699
|
[k: string]: unknown;
|
|
14696
14700
|
};
|
|
14697
14701
|
isUIModificationsEnabled?: boolean;
|
|
@@ -14802,7 +14806,7 @@ export interface Modules {
|
|
|
14802
14806
|
connectFieldProperty?: {
|
|
14803
14807
|
key?: string;
|
|
14804
14808
|
path?: string;
|
|
14805
|
-
|
|
14809
|
+
connectFieldType?: 'MULTI_SELECT' | 'SINGLE_SELECT' | 'TEXT';
|
|
14806
14810
|
[k: string]: unknown;
|
|
14807
14811
|
};
|
|
14808
14812
|
isUIModificationsEnabled?: boolean;
|
|
@@ -14922,7 +14926,7 @@ export interface Modules {
|
|
|
14922
14926
|
connectFieldProperty?: {
|
|
14923
14927
|
key?: string;
|
|
14924
14928
|
path?: string;
|
|
14925
|
-
|
|
14929
|
+
connectFieldType?: 'MULTI_SELECT' | 'SINGLE_SELECT' | 'TEXT';
|
|
14926
14930
|
[k: string]: unknown;
|
|
14927
14931
|
};
|
|
14928
14932
|
isUIModificationsEnabled?: boolean;
|
|
@@ -15043,7 +15047,7 @@ export interface Modules {
|
|
|
15043
15047
|
connectFieldProperty?: {
|
|
15044
15048
|
key?: string;
|
|
15045
15049
|
path?: string;
|
|
15046
|
-
|
|
15050
|
+
connectFieldType?: 'MULTI_SELECT' | 'SINGLE_SELECT' | 'TEXT';
|
|
15047
15051
|
[k: string]: unknown;
|
|
15048
15052
|
};
|
|
15049
15053
|
isUIModificationsEnabled?: boolean;
|
|
@@ -15154,7 +15158,7 @@ export interface Modules {
|
|
|
15154
15158
|
connectFieldProperty?: {
|
|
15155
15159
|
key?: string;
|
|
15156
15160
|
path?: string;
|
|
15157
|
-
|
|
15161
|
+
connectFieldType?: 'MULTI_SELECT' | 'SINGLE_SELECT' | 'TEXT';
|
|
15158
15162
|
[k: string]: unknown;
|
|
15159
15163
|
};
|
|
15160
15164
|
isUIModificationsEnabled?: boolean;
|
|
@@ -24448,6 +24452,7 @@ export interface Modules {
|
|
|
24448
24452
|
*/
|
|
24449
24453
|
jsonRpcTransport: {
|
|
24450
24454
|
endpoint: Endpoint1;
|
|
24455
|
+
streaming?: Streaming;
|
|
24451
24456
|
};
|
|
24452
24457
|
};
|
|
24453
24458
|
};
|
|
@@ -24470,6 +24475,7 @@ export interface Modules {
|
|
|
24470
24475
|
*/
|
|
24471
24476
|
jsonRpcTransport: {
|
|
24472
24477
|
endpoint: Endpoint1;
|
|
24478
|
+
streaming?: Streaming;
|
|
24473
24479
|
};
|
|
24474
24480
|
};
|
|
24475
24481
|
};
|
|
@@ -24630,6 +24636,23 @@ export interface Modules {
|
|
|
24630
24636
|
[k: string]: unknown;
|
|
24631
24637
|
};
|
|
24632
24638
|
};
|
|
24639
|
+
/**
|
|
24640
|
+
* Capabilities supported by the connector. Expected for new connectors but optional in the schema for backward compatibility.
|
|
24641
|
+
*/
|
|
24642
|
+
capabilities?: {
|
|
24643
|
+
/**
|
|
24644
|
+
* Whether the connector replicates source access controls.
|
|
24645
|
+
*/
|
|
24646
|
+
replicatesPermissions?: boolean;
|
|
24647
|
+
/**
|
|
24648
|
+
* How faithfully the connector tracks the source. append: creates entities only (one-time or append-only import). upsert: creates and updates entities on an ongoing basis. mirror: creates, updates, and deletes entities to fully mirror the source.
|
|
24649
|
+
*/
|
|
24650
|
+
syncFidelity?: 'append' | 'upsert' | 'mirror';
|
|
24651
|
+
/**
|
|
24652
|
+
* Whether the connector supports delta sync (only changed items) rather than requiring a full re-sync.
|
|
24653
|
+
*/
|
|
24654
|
+
supportsIncrementalSync?: boolean;
|
|
24655
|
+
};
|
|
24633
24656
|
key: ModuleKeySchema;
|
|
24634
24657
|
},
|
|
24635
24658
|
...{
|
|
@@ -24747,6 +24770,23 @@ export interface Modules {
|
|
|
24747
24770
|
[k: string]: unknown;
|
|
24748
24771
|
};
|
|
24749
24772
|
};
|
|
24773
|
+
/**
|
|
24774
|
+
* Capabilities supported by the connector. Expected for new connectors but optional in the schema for backward compatibility.
|
|
24775
|
+
*/
|
|
24776
|
+
capabilities?: {
|
|
24777
|
+
/**
|
|
24778
|
+
* Whether the connector replicates source access controls.
|
|
24779
|
+
*/
|
|
24780
|
+
replicatesPermissions?: boolean;
|
|
24781
|
+
/**
|
|
24782
|
+
* How faithfully the connector tracks the source. append: creates entities only (one-time or append-only import). upsert: creates and updates entities on an ongoing basis. mirror: creates, updates, and deletes entities to fully mirror the source.
|
|
24783
|
+
*/
|
|
24784
|
+
syncFidelity?: 'append' | 'upsert' | 'mirror';
|
|
24785
|
+
/**
|
|
24786
|
+
* Whether the connector supports delta sync (only changed items) rather than requiring a full re-sync.
|
|
24787
|
+
*/
|
|
24788
|
+
supportsIncrementalSync?: boolean;
|
|
24789
|
+
};
|
|
24750
24790
|
key: ModuleKeySchema;
|
|
24751
24791
|
}[]
|
|
24752
24792
|
];
|