openxiangda-contracts 2.17.0 → 2.17.2
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/data-view-validation.d.ts +1 -0
- package/dist/data-view-validation.d.ts.map +1 -1
- package/dist/data-view-validation.js +38 -1
- package/dist/data-view-validation.js.map +1 -1
- package/dist/native-compiler/data-surface.d.ts +5 -1
- package/dist/native-compiler/data-surface.d.ts.map +1 -1
- package/dist/native-compiler/data-surface.js +13 -5
- package/dist/native-compiler/data-surface.js.map +1 -1
- package/dist/native-compiler/draft-state.d.ts +3 -0
- package/dist/native-compiler/draft-state.d.ts.map +1 -0
- package/dist/native-compiler/draft-state.js +101 -0
- package/dist/native-compiler/draft-state.js.map +1 -0
- package/dist/native-compiler/index.cjs +3 -3
- package/dist/native-compiler/index.d.ts +1 -0
- package/dist/native-compiler/index.d.ts.map +1 -1
- package/dist/native-compiler/index.js +3 -3
- package/dist/schemas.d.ts +440 -0
- package/dist/schemas.d.ts.map +1 -1
- package/dist/schemas.js +81 -0
- package/dist/schemas.js.map +1 -1
- package/dist/surface.d.ts +26 -0
- package/dist/surface.d.ts.map +1 -1
- package/dist/surface.js.map +1 -1
- package/dist/types.d.ts +9 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/dist/validation.d.ts.map +1 -1
- package/dist/validation.js +2 -1
- package/dist/validation.js.map +1 -1
- package/package.json +1 -1
package/dist/schemas.d.ts
CHANGED
|
@@ -4600,6 +4600,91 @@ export declare const dataResourceSchema: {
|
|
|
4600
4600
|
readonly pattern: "^[A-Za-z][A-Za-z0-9_]{0,62}$";
|
|
4601
4601
|
};
|
|
4602
4602
|
};
|
|
4603
|
+
readonly draftState: {
|
|
4604
|
+
readonly type: "object";
|
|
4605
|
+
readonly additionalProperties: false;
|
|
4606
|
+
readonly required: readonly ["version", "maxBytes", "fields"];
|
|
4607
|
+
readonly properties: {
|
|
4608
|
+
readonly version: {
|
|
4609
|
+
readonly type: "integer";
|
|
4610
|
+
readonly minimum: 1;
|
|
4611
|
+
readonly maximum: 1000000;
|
|
4612
|
+
};
|
|
4613
|
+
readonly maxBytes: {
|
|
4614
|
+
readonly type: "integer";
|
|
4615
|
+
readonly minimum: 2;
|
|
4616
|
+
readonly maximum: 196608;
|
|
4617
|
+
};
|
|
4618
|
+
readonly fields: {
|
|
4619
|
+
readonly type: "object";
|
|
4620
|
+
readonly minProperties: 1;
|
|
4621
|
+
readonly maxProperties: 50;
|
|
4622
|
+
readonly propertyNames: {
|
|
4623
|
+
readonly type: "string";
|
|
4624
|
+
readonly pattern: "^[A-Za-z][A-Za-z0-9_]{0,62}$";
|
|
4625
|
+
};
|
|
4626
|
+
readonly additionalProperties: {
|
|
4627
|
+
readonly oneOf: readonly [{
|
|
4628
|
+
readonly type: "object";
|
|
4629
|
+
readonly additionalProperties: false;
|
|
4630
|
+
readonly required: readonly ["type", "maxLength"];
|
|
4631
|
+
readonly properties: {
|
|
4632
|
+
readonly type: {
|
|
4633
|
+
readonly const: "string";
|
|
4634
|
+
};
|
|
4635
|
+
readonly required: {
|
|
4636
|
+
readonly type: "boolean";
|
|
4637
|
+
};
|
|
4638
|
+
readonly maxLength: {
|
|
4639
|
+
readonly type: "integer";
|
|
4640
|
+
readonly minimum: 1;
|
|
4641
|
+
readonly maximum: 196608;
|
|
4642
|
+
};
|
|
4643
|
+
readonly enum: {
|
|
4644
|
+
readonly type: "array";
|
|
4645
|
+
readonly minItems: 1;
|
|
4646
|
+
readonly maxItems: 100;
|
|
4647
|
+
readonly uniqueItems: true;
|
|
4648
|
+
readonly items: {
|
|
4649
|
+
readonly type: "string";
|
|
4650
|
+
readonly maxLength: 255;
|
|
4651
|
+
};
|
|
4652
|
+
};
|
|
4653
|
+
};
|
|
4654
|
+
}, {
|
|
4655
|
+
readonly type: "object";
|
|
4656
|
+
readonly additionalProperties: false;
|
|
4657
|
+
readonly required: readonly ["type"];
|
|
4658
|
+
readonly properties: {
|
|
4659
|
+
readonly type: {
|
|
4660
|
+
readonly enum: readonly ["number", "integer", "boolean"];
|
|
4661
|
+
};
|
|
4662
|
+
readonly required: {
|
|
4663
|
+
readonly type: "boolean";
|
|
4664
|
+
};
|
|
4665
|
+
};
|
|
4666
|
+
}, {
|
|
4667
|
+
readonly type: "object";
|
|
4668
|
+
readonly additionalProperties: false;
|
|
4669
|
+
readonly required: readonly ["type", "maxBytes"];
|
|
4670
|
+
readonly properties: {
|
|
4671
|
+
readonly type: {
|
|
4672
|
+
readonly const: "json.object";
|
|
4673
|
+
};
|
|
4674
|
+
readonly required: {
|
|
4675
|
+
readonly type: "boolean";
|
|
4676
|
+
};
|
|
4677
|
+
readonly maxBytes: {
|
|
4678
|
+
readonly type: "integer";
|
|
4679
|
+
readonly minimum: 2;
|
|
4680
|
+
readonly maximum: 65536;
|
|
4681
|
+
};
|
|
4682
|
+
};
|
|
4683
|
+
}];
|
|
4684
|
+
};
|
|
4685
|
+
};
|
|
4686
|
+
};
|
|
4687
|
+
};
|
|
4603
4688
|
};
|
|
4604
4689
|
};
|
|
4605
4690
|
readonly detail: {
|
|
@@ -5051,6 +5136,91 @@ export declare const dataResourceSchema: {
|
|
|
5051
5136
|
readonly pattern: "^[A-Za-z][A-Za-z0-9_]{0,62}$";
|
|
5052
5137
|
};
|
|
5053
5138
|
};
|
|
5139
|
+
readonly draftState: {
|
|
5140
|
+
readonly type: "object";
|
|
5141
|
+
readonly additionalProperties: false;
|
|
5142
|
+
readonly required: readonly ["version", "maxBytes", "fields"];
|
|
5143
|
+
readonly properties: {
|
|
5144
|
+
readonly version: {
|
|
5145
|
+
readonly type: "integer";
|
|
5146
|
+
readonly minimum: 1;
|
|
5147
|
+
readonly maximum: 1000000;
|
|
5148
|
+
};
|
|
5149
|
+
readonly maxBytes: {
|
|
5150
|
+
readonly type: "integer";
|
|
5151
|
+
readonly minimum: 2;
|
|
5152
|
+
readonly maximum: 196608;
|
|
5153
|
+
};
|
|
5154
|
+
readonly fields: {
|
|
5155
|
+
readonly type: "object";
|
|
5156
|
+
readonly minProperties: 1;
|
|
5157
|
+
readonly maxProperties: 50;
|
|
5158
|
+
readonly propertyNames: {
|
|
5159
|
+
readonly type: "string";
|
|
5160
|
+
readonly pattern: "^[A-Za-z][A-Za-z0-9_]{0,62}$";
|
|
5161
|
+
};
|
|
5162
|
+
readonly additionalProperties: {
|
|
5163
|
+
readonly oneOf: readonly [{
|
|
5164
|
+
readonly type: "object";
|
|
5165
|
+
readonly additionalProperties: false;
|
|
5166
|
+
readonly required: readonly ["type", "maxLength"];
|
|
5167
|
+
readonly properties: {
|
|
5168
|
+
readonly type: {
|
|
5169
|
+
readonly const: "string";
|
|
5170
|
+
};
|
|
5171
|
+
readonly required: {
|
|
5172
|
+
readonly type: "boolean";
|
|
5173
|
+
};
|
|
5174
|
+
readonly maxLength: {
|
|
5175
|
+
readonly type: "integer";
|
|
5176
|
+
readonly minimum: 1;
|
|
5177
|
+
readonly maximum: 196608;
|
|
5178
|
+
};
|
|
5179
|
+
readonly enum: {
|
|
5180
|
+
readonly type: "array";
|
|
5181
|
+
readonly minItems: 1;
|
|
5182
|
+
readonly maxItems: 100;
|
|
5183
|
+
readonly uniqueItems: true;
|
|
5184
|
+
readonly items: {
|
|
5185
|
+
readonly type: "string";
|
|
5186
|
+
readonly maxLength: 255;
|
|
5187
|
+
};
|
|
5188
|
+
};
|
|
5189
|
+
};
|
|
5190
|
+
}, {
|
|
5191
|
+
readonly type: "object";
|
|
5192
|
+
readonly additionalProperties: false;
|
|
5193
|
+
readonly required: readonly ["type"];
|
|
5194
|
+
readonly properties: {
|
|
5195
|
+
readonly type: {
|
|
5196
|
+
readonly enum: readonly ["number", "integer", "boolean"];
|
|
5197
|
+
};
|
|
5198
|
+
readonly required: {
|
|
5199
|
+
readonly type: "boolean";
|
|
5200
|
+
};
|
|
5201
|
+
};
|
|
5202
|
+
}, {
|
|
5203
|
+
readonly type: "object";
|
|
5204
|
+
readonly additionalProperties: false;
|
|
5205
|
+
readonly required: readonly ["type", "maxBytes"];
|
|
5206
|
+
readonly properties: {
|
|
5207
|
+
readonly type: {
|
|
5208
|
+
readonly const: "json.object";
|
|
5209
|
+
};
|
|
5210
|
+
readonly required: {
|
|
5211
|
+
readonly type: "boolean";
|
|
5212
|
+
};
|
|
5213
|
+
readonly maxBytes: {
|
|
5214
|
+
readonly type: "integer";
|
|
5215
|
+
readonly minimum: 2;
|
|
5216
|
+
readonly maximum: 65536;
|
|
5217
|
+
};
|
|
5218
|
+
};
|
|
5219
|
+
}];
|
|
5220
|
+
};
|
|
5221
|
+
};
|
|
5222
|
+
};
|
|
5223
|
+
};
|
|
5054
5224
|
};
|
|
5055
5225
|
};
|
|
5056
5226
|
readonly detail: {
|
|
@@ -10720,6 +10890,56 @@ export declare const businessProcessCommitSchema: {
|
|
|
10720
10890
|
};
|
|
10721
10891
|
};
|
|
10722
10892
|
};
|
|
10893
|
+
readonly formDraft: {
|
|
10894
|
+
readonly type: "object";
|
|
10895
|
+
readonly additionalProperties: false;
|
|
10896
|
+
readonly required: readonly ["resourceCode", "id", "expectedRevision", "mode"];
|
|
10897
|
+
readonly properties: {
|
|
10898
|
+
readonly resourceCode: {
|
|
10899
|
+
readonly type: "string";
|
|
10900
|
+
readonly pattern: "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$";
|
|
10901
|
+
};
|
|
10902
|
+
readonly id: {
|
|
10903
|
+
readonly type: "string";
|
|
10904
|
+
readonly pattern: "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$";
|
|
10905
|
+
};
|
|
10906
|
+
readonly expectedRevision: {
|
|
10907
|
+
readonly type: "integer";
|
|
10908
|
+
readonly minimum: 1;
|
|
10909
|
+
};
|
|
10910
|
+
readonly mode: {
|
|
10911
|
+
readonly enum: readonly ["create", "update"];
|
|
10912
|
+
};
|
|
10913
|
+
readonly recordId: {
|
|
10914
|
+
readonly type: "string";
|
|
10915
|
+
readonly pattern: "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$";
|
|
10916
|
+
};
|
|
10917
|
+
readonly viewCode: {
|
|
10918
|
+
readonly type: "string";
|
|
10919
|
+
readonly minLength: 1;
|
|
10920
|
+
readonly maxLength: 64;
|
|
10921
|
+
readonly pattern: "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$";
|
|
10922
|
+
};
|
|
10923
|
+
};
|
|
10924
|
+
readonly allOf: readonly [{
|
|
10925
|
+
readonly if: {
|
|
10926
|
+
readonly properties: {
|
|
10927
|
+
readonly mode: {
|
|
10928
|
+
readonly const: "update";
|
|
10929
|
+
};
|
|
10930
|
+
};
|
|
10931
|
+
readonly required: readonly ["mode"];
|
|
10932
|
+
};
|
|
10933
|
+
readonly then: {
|
|
10934
|
+
readonly required: readonly ["recordId"];
|
|
10935
|
+
};
|
|
10936
|
+
readonly else: {
|
|
10937
|
+
readonly not: {
|
|
10938
|
+
readonly required: readonly ["recordId"];
|
|
10939
|
+
};
|
|
10940
|
+
};
|
|
10941
|
+
}];
|
|
10942
|
+
};
|
|
10723
10943
|
readonly workflow: {
|
|
10724
10944
|
readonly type: "object";
|
|
10725
10945
|
readonly additionalProperties: false;
|
|
@@ -22566,6 +22786,91 @@ export declare const contractSchemas: {
|
|
|
22566
22786
|
readonly pattern: "^[A-Za-z][A-Za-z0-9_]{0,62}$";
|
|
22567
22787
|
};
|
|
22568
22788
|
};
|
|
22789
|
+
readonly draftState: {
|
|
22790
|
+
readonly type: "object";
|
|
22791
|
+
readonly additionalProperties: false;
|
|
22792
|
+
readonly required: readonly ["version", "maxBytes", "fields"];
|
|
22793
|
+
readonly properties: {
|
|
22794
|
+
readonly version: {
|
|
22795
|
+
readonly type: "integer";
|
|
22796
|
+
readonly minimum: 1;
|
|
22797
|
+
readonly maximum: 1000000;
|
|
22798
|
+
};
|
|
22799
|
+
readonly maxBytes: {
|
|
22800
|
+
readonly type: "integer";
|
|
22801
|
+
readonly minimum: 2;
|
|
22802
|
+
readonly maximum: 196608;
|
|
22803
|
+
};
|
|
22804
|
+
readonly fields: {
|
|
22805
|
+
readonly type: "object";
|
|
22806
|
+
readonly minProperties: 1;
|
|
22807
|
+
readonly maxProperties: 50;
|
|
22808
|
+
readonly propertyNames: {
|
|
22809
|
+
readonly type: "string";
|
|
22810
|
+
readonly pattern: "^[A-Za-z][A-Za-z0-9_]{0,62}$";
|
|
22811
|
+
};
|
|
22812
|
+
readonly additionalProperties: {
|
|
22813
|
+
readonly oneOf: readonly [{
|
|
22814
|
+
readonly type: "object";
|
|
22815
|
+
readonly additionalProperties: false;
|
|
22816
|
+
readonly required: readonly ["type", "maxLength"];
|
|
22817
|
+
readonly properties: {
|
|
22818
|
+
readonly type: {
|
|
22819
|
+
readonly const: "string";
|
|
22820
|
+
};
|
|
22821
|
+
readonly required: {
|
|
22822
|
+
readonly type: "boolean";
|
|
22823
|
+
};
|
|
22824
|
+
readonly maxLength: {
|
|
22825
|
+
readonly type: "integer";
|
|
22826
|
+
readonly minimum: 1;
|
|
22827
|
+
readonly maximum: 196608;
|
|
22828
|
+
};
|
|
22829
|
+
readonly enum: {
|
|
22830
|
+
readonly type: "array";
|
|
22831
|
+
readonly minItems: 1;
|
|
22832
|
+
readonly maxItems: 100;
|
|
22833
|
+
readonly uniqueItems: true;
|
|
22834
|
+
readonly items: {
|
|
22835
|
+
readonly type: "string";
|
|
22836
|
+
readonly maxLength: 255;
|
|
22837
|
+
};
|
|
22838
|
+
};
|
|
22839
|
+
};
|
|
22840
|
+
}, {
|
|
22841
|
+
readonly type: "object";
|
|
22842
|
+
readonly additionalProperties: false;
|
|
22843
|
+
readonly required: readonly ["type"];
|
|
22844
|
+
readonly properties: {
|
|
22845
|
+
readonly type: {
|
|
22846
|
+
readonly enum: readonly ["number", "integer", "boolean"];
|
|
22847
|
+
};
|
|
22848
|
+
readonly required: {
|
|
22849
|
+
readonly type: "boolean";
|
|
22850
|
+
};
|
|
22851
|
+
};
|
|
22852
|
+
}, {
|
|
22853
|
+
readonly type: "object";
|
|
22854
|
+
readonly additionalProperties: false;
|
|
22855
|
+
readonly required: readonly ["type", "maxBytes"];
|
|
22856
|
+
readonly properties: {
|
|
22857
|
+
readonly type: {
|
|
22858
|
+
readonly const: "json.object";
|
|
22859
|
+
};
|
|
22860
|
+
readonly required: {
|
|
22861
|
+
readonly type: "boolean";
|
|
22862
|
+
};
|
|
22863
|
+
readonly maxBytes: {
|
|
22864
|
+
readonly type: "integer";
|
|
22865
|
+
readonly minimum: 2;
|
|
22866
|
+
readonly maximum: 65536;
|
|
22867
|
+
};
|
|
22868
|
+
};
|
|
22869
|
+
}];
|
|
22870
|
+
};
|
|
22871
|
+
};
|
|
22872
|
+
};
|
|
22873
|
+
};
|
|
22569
22874
|
};
|
|
22570
22875
|
};
|
|
22571
22876
|
readonly detail: {
|
|
@@ -23017,6 +23322,91 @@ export declare const contractSchemas: {
|
|
|
23017
23322
|
readonly pattern: "^[A-Za-z][A-Za-z0-9_]{0,62}$";
|
|
23018
23323
|
};
|
|
23019
23324
|
};
|
|
23325
|
+
readonly draftState: {
|
|
23326
|
+
readonly type: "object";
|
|
23327
|
+
readonly additionalProperties: false;
|
|
23328
|
+
readonly required: readonly ["version", "maxBytes", "fields"];
|
|
23329
|
+
readonly properties: {
|
|
23330
|
+
readonly version: {
|
|
23331
|
+
readonly type: "integer";
|
|
23332
|
+
readonly minimum: 1;
|
|
23333
|
+
readonly maximum: 1000000;
|
|
23334
|
+
};
|
|
23335
|
+
readonly maxBytes: {
|
|
23336
|
+
readonly type: "integer";
|
|
23337
|
+
readonly minimum: 2;
|
|
23338
|
+
readonly maximum: 196608;
|
|
23339
|
+
};
|
|
23340
|
+
readonly fields: {
|
|
23341
|
+
readonly type: "object";
|
|
23342
|
+
readonly minProperties: 1;
|
|
23343
|
+
readonly maxProperties: 50;
|
|
23344
|
+
readonly propertyNames: {
|
|
23345
|
+
readonly type: "string";
|
|
23346
|
+
readonly pattern: "^[A-Za-z][A-Za-z0-9_]{0,62}$";
|
|
23347
|
+
};
|
|
23348
|
+
readonly additionalProperties: {
|
|
23349
|
+
readonly oneOf: readonly [{
|
|
23350
|
+
readonly type: "object";
|
|
23351
|
+
readonly additionalProperties: false;
|
|
23352
|
+
readonly required: readonly ["type", "maxLength"];
|
|
23353
|
+
readonly properties: {
|
|
23354
|
+
readonly type: {
|
|
23355
|
+
readonly const: "string";
|
|
23356
|
+
};
|
|
23357
|
+
readonly required: {
|
|
23358
|
+
readonly type: "boolean";
|
|
23359
|
+
};
|
|
23360
|
+
readonly maxLength: {
|
|
23361
|
+
readonly type: "integer";
|
|
23362
|
+
readonly minimum: 1;
|
|
23363
|
+
readonly maximum: 196608;
|
|
23364
|
+
};
|
|
23365
|
+
readonly enum: {
|
|
23366
|
+
readonly type: "array";
|
|
23367
|
+
readonly minItems: 1;
|
|
23368
|
+
readonly maxItems: 100;
|
|
23369
|
+
readonly uniqueItems: true;
|
|
23370
|
+
readonly items: {
|
|
23371
|
+
readonly type: "string";
|
|
23372
|
+
readonly maxLength: 255;
|
|
23373
|
+
};
|
|
23374
|
+
};
|
|
23375
|
+
};
|
|
23376
|
+
}, {
|
|
23377
|
+
readonly type: "object";
|
|
23378
|
+
readonly additionalProperties: false;
|
|
23379
|
+
readonly required: readonly ["type"];
|
|
23380
|
+
readonly properties: {
|
|
23381
|
+
readonly type: {
|
|
23382
|
+
readonly enum: readonly ["number", "integer", "boolean"];
|
|
23383
|
+
};
|
|
23384
|
+
readonly required: {
|
|
23385
|
+
readonly type: "boolean";
|
|
23386
|
+
};
|
|
23387
|
+
};
|
|
23388
|
+
}, {
|
|
23389
|
+
readonly type: "object";
|
|
23390
|
+
readonly additionalProperties: false;
|
|
23391
|
+
readonly required: readonly ["type", "maxBytes"];
|
|
23392
|
+
readonly properties: {
|
|
23393
|
+
readonly type: {
|
|
23394
|
+
readonly const: "json.object";
|
|
23395
|
+
};
|
|
23396
|
+
readonly required: {
|
|
23397
|
+
readonly type: "boolean";
|
|
23398
|
+
};
|
|
23399
|
+
readonly maxBytes: {
|
|
23400
|
+
readonly type: "integer";
|
|
23401
|
+
readonly minimum: 2;
|
|
23402
|
+
readonly maximum: 65536;
|
|
23403
|
+
};
|
|
23404
|
+
};
|
|
23405
|
+
}];
|
|
23406
|
+
};
|
|
23407
|
+
};
|
|
23408
|
+
};
|
|
23409
|
+
};
|
|
23020
23410
|
};
|
|
23021
23411
|
};
|
|
23022
23412
|
readonly detail: {
|
|
@@ -28532,6 +28922,56 @@ export declare const contractSchemas: {
|
|
|
28532
28922
|
};
|
|
28533
28923
|
};
|
|
28534
28924
|
};
|
|
28925
|
+
readonly formDraft: {
|
|
28926
|
+
readonly type: "object";
|
|
28927
|
+
readonly additionalProperties: false;
|
|
28928
|
+
readonly required: readonly ["resourceCode", "id", "expectedRevision", "mode"];
|
|
28929
|
+
readonly properties: {
|
|
28930
|
+
readonly resourceCode: {
|
|
28931
|
+
readonly type: "string";
|
|
28932
|
+
readonly pattern: "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$";
|
|
28933
|
+
};
|
|
28934
|
+
readonly id: {
|
|
28935
|
+
readonly type: "string";
|
|
28936
|
+
readonly pattern: "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$";
|
|
28937
|
+
};
|
|
28938
|
+
readonly expectedRevision: {
|
|
28939
|
+
readonly type: "integer";
|
|
28940
|
+
readonly minimum: 1;
|
|
28941
|
+
};
|
|
28942
|
+
readonly mode: {
|
|
28943
|
+
readonly enum: readonly ["create", "update"];
|
|
28944
|
+
};
|
|
28945
|
+
readonly recordId: {
|
|
28946
|
+
readonly type: "string";
|
|
28947
|
+
readonly pattern: "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$";
|
|
28948
|
+
};
|
|
28949
|
+
readonly viewCode: {
|
|
28950
|
+
readonly type: "string";
|
|
28951
|
+
readonly minLength: 1;
|
|
28952
|
+
readonly maxLength: 64;
|
|
28953
|
+
readonly pattern: "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$";
|
|
28954
|
+
};
|
|
28955
|
+
};
|
|
28956
|
+
readonly allOf: readonly [{
|
|
28957
|
+
readonly if: {
|
|
28958
|
+
readonly properties: {
|
|
28959
|
+
readonly mode: {
|
|
28960
|
+
readonly const: "update";
|
|
28961
|
+
};
|
|
28962
|
+
};
|
|
28963
|
+
readonly required: readonly ["mode"];
|
|
28964
|
+
};
|
|
28965
|
+
readonly then: {
|
|
28966
|
+
readonly required: readonly ["recordId"];
|
|
28967
|
+
};
|
|
28968
|
+
readonly else: {
|
|
28969
|
+
readonly not: {
|
|
28970
|
+
readonly required: readonly ["recordId"];
|
|
28971
|
+
};
|
|
28972
|
+
};
|
|
28973
|
+
}];
|
|
28974
|
+
};
|
|
28535
28975
|
readonly workflow: {
|
|
28536
28976
|
readonly type: "object";
|
|
28537
28977
|
readonly additionalProperties: false;
|