Skip to content

Commit 335d139

Browse files
committed
remove @beta notation
1 parent 6fee504 commit 335d139

3 files changed

Lines changed: 34 additions & 24 deletions

File tree

handwritten/firestore/api-report/firestore.api.md

Lines changed: 34 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -498,10 +498,20 @@ function charLength(fieldName: string): FunctionExpression;
498498
// @beta
499499
function charLength(stringExpression: Expression): FunctionExpression;
500500

501-
// @beta
501+
// Warning: (ae-incompatible-release-tags) The symbol "coalesce" is marked as @public, but its signature references "Expression" which is marked as @beta
502+
// Warning: (ae-incompatible-release-tags) The symbol "coalesce" is marked as @public, but its signature references "FunctionExpression" which is marked as @beta
503+
// Warning: (ae-incompatible-release-tags) The symbol "coalesce" is marked as @public, but its signature references "Expression" which is marked as @beta
504+
// Warning: (ae-incompatible-release-tags) The symbol "coalesce" is marked as @public, but its signature references "FunctionExpression" which is marked as @beta
505+
//
506+
// @public
502507
function coalesce(expression: Expression, replacement: Expression | unknown, ...others: Array<Expression | unknown>): FunctionExpression;
503508

504-
// @beta
509+
// Warning: (ae-incompatible-release-tags) The symbol "coalesce" is marked as @public, but its signature references "Expression" which is marked as @beta
510+
// Warning: (ae-incompatible-release-tags) The symbol "coalesce" is marked as @public, but its signature references "FunctionExpression" which is marked as @beta
511+
// Warning: (ae-incompatible-release-tags) The symbol "coalesce" is marked as @public, but its signature references "Expression" which is marked as @beta
512+
// Warning: (ae-incompatible-release-tags) The symbol "coalesce" is marked as @public, but its signature references "FunctionExpression" which is marked as @beta
513+
//
514+
// @public
505515
function coalesce(fieldName: string, replacement: Expression | unknown, ...others: Array<Expression | unknown>): FunctionExpression;
506516

507517
// Warning: (tsdoc-undefined-tag) The TSDoc tag "@class" is not defined in this configuration
@@ -1651,16 +1661,34 @@ function ifError(tryExpr: Expression, catchExpr: Expression): FunctionExpression
16511661
// @beta
16521662
function ifError(tryExpr: Expression, catchValue: unknown): FunctionExpression;
16531663

1654-
// @beta
1664+
// Warning: (ae-incompatible-release-tags) The symbol "ifNull" is marked as @public, but its signature references "Expression" which is marked as @beta
1665+
// Warning: (ae-incompatible-release-tags) The symbol "ifNull" is marked as @public, but its signature references "FunctionExpression" which is marked as @beta
1666+
// Warning: (ae-incompatible-release-tags) The symbol "ifNull" is marked as @public, but its signature references "Expression" which is marked as @beta
1667+
// Warning: (ae-incompatible-release-tags) The symbol "ifNull" is marked as @public, but its signature references "FunctionExpression" which is marked as @beta
1668+
//
1669+
// @public
16551670
function ifNull(ifExpr: Expression, elseExpr: Expression): FunctionExpression;
16561671

1657-
// @beta
1672+
// Warning: (ae-incompatible-release-tags) The symbol "ifNull" is marked as @public, but its signature references "Expression" which is marked as @beta
1673+
// Warning: (ae-incompatible-release-tags) The symbol "ifNull" is marked as @public, but its signature references "FunctionExpression" which is marked as @beta
1674+
// Warning: (ae-incompatible-release-tags) The symbol "ifNull" is marked as @public, but its signature references "Expression" which is marked as @beta
1675+
// Warning: (ae-incompatible-release-tags) The symbol "ifNull" is marked as @public, but its signature references "FunctionExpression" which is marked as @beta
1676+
//
1677+
// @public
16581678
function ifNull(ifExpr: Expression, elseValue: unknown): FunctionExpression;
16591679

1660-
// @beta
1680+
// Warning: (ae-incompatible-release-tags) The symbol "ifNull" is marked as @public, but its signature references "Expression" which is marked as @beta
1681+
// Warning: (ae-incompatible-release-tags) The symbol "ifNull" is marked as @public, but its signature references "FunctionExpression" which is marked as @beta
1682+
// Warning: (ae-incompatible-release-tags) The symbol "ifNull" is marked as @public, but its signature references "Expression" which is marked as @beta
1683+
// Warning: (ae-incompatible-release-tags) The symbol "ifNull" is marked as @public, but its signature references "FunctionExpression" which is marked as @beta
1684+
//
1685+
// @public
16611686
function ifNull(ifFieldName: string, elseExpr: Expression): FunctionExpression;
16621687

1663-
// @beta
1688+
// Warning: (ae-incompatible-release-tags) The symbol "ifNull" is marked as @public, but its signature references "FunctionExpression" which is marked as @beta
1689+
// Warning: (ae-incompatible-release-tags) The symbol "ifNull" is marked as @public, but its signature references "FunctionExpression" which is marked as @beta
1690+
//
1691+
// @public
16641692
function ifNull(ifFieldName: string, elseValue: unknown): FunctionExpression;
16651693

16661694
// @beta

handwritten/firestore/dev/src/pipelines/expression.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2960,7 +2960,6 @@ export abstract class Expression
29602960
}
29612961

29622962
/**
2963-
* @beta
29642963
* Creates an expression that returns the `elseValue` argument if this expression evaluates to null, else
29652964
* return the result of this expression evaluation.
29662965
*
@@ -2980,7 +2979,6 @@ export abstract class Expression
29802979
ifNull(elseExpression: Expression): FunctionExpression;
29812980

29822981
/**
2983-
* @beta
29842982
* Creates an expression that returns the `elseValue` argument if this expression evaluates to null, else
29852983
* return the result of this expression evaluation.
29862984
*
@@ -3006,7 +3004,6 @@ export abstract class Expression
30063004
}
30073005

30083006
/**
3009-
* @beta
30103007
* Creates an expression that returns the first non-null, non-absent argument, without evaluating
30113008
* the rest of the arguments. When all arguments are null or absent, returns the last argument.
30123009
*
@@ -9327,7 +9324,6 @@ export function ifAbsent(
93279324
}
93289325

93299326
/**
9330-
* @beta
93319327
* Creates an expression that returns the `elseExpr` argument if `ifExpr` is null, else
93329328
* return the result of the `ifExpr` argument evaluation.
93339329
*
@@ -9351,7 +9347,6 @@ export function ifNull(
93519347
): FunctionExpression;
93529348

93539349
/**
9354-
* @beta
93559350
* Creates an expression that returns the `elseValue` argument if `ifExpr` is null, else
93569351
* return the result of the `ifExpr` argument evaluation.
93579352
*
@@ -9375,7 +9370,6 @@ export function ifNull(
93759370
): FunctionExpression;
93769371

93779372
/**
9378-
* @beta
93799373
* Creates an expression that returns the `elseExpr` argument if `ifFieldName` is null, else
93809374
* return the value of the field.
93819375
*
@@ -9400,7 +9394,6 @@ export function ifNull(
94009394
): FunctionExpression;
94019395

94029396
/**
9403-
* @beta
94049397
* Creates an expression that returns the `elseValue` argument if `ifFieldName` is null, else
94059398
* return the value of the field.
94069399
*
@@ -9432,7 +9425,6 @@ export function ifNull(
94329425
}
94339426

94349427
/**
9435-
* @beta
94369428
* Creates an expression that returns the first non-null, non-absent argument, without evaluating
94379429
* the rest of the arguments. When all arguments are null or absent, returns the last argument.
94389430
*
@@ -9455,7 +9447,6 @@ export function coalesce(
94559447
): FunctionExpression;
94569448

94579449
/**
9458-
* @beta
94599450
* Creates an expression that returns the first non-null, non-absent argument, without evaluating
94609451
* the rest of the arguments. When all arguments are null or absent, returns the last argument.
94619452
*

handwritten/firestore/types/firestore.d.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5437,7 +5437,6 @@ declare namespace FirebaseFirestore {
54375437
ifAbsent(elseValueOrExpression: Expression | unknown): Expression;
54385438

54395439
/**
5440-
* @beta
54415440
* Creates an expression that returns the `elseValue` argument if this expression evaluates to null, else
54425441
* return the result of this expression evaluation.
54435442
*
@@ -5457,7 +5456,6 @@ declare namespace FirebaseFirestore {
54575456
ifNull(elseValue: unknown): FunctionExpression;
54585457

54595458
/**
5460-
* @beta
54615459
* Creates an expression that returns the `elseValue` argument if this expression evaluates to null, else
54625460
* return the result of this expression evaluation.
54635461
*
@@ -5477,7 +5475,6 @@ declare namespace FirebaseFirestore {
54775475
ifNull(elseExpression: Expression): FunctionExpression;
54785476

54795477
/**
5480-
* @beta
54815478
* Creates an expression that returns the first non-null, non-absent argument, without evaluating
54825479
* the rest of the arguments. When all arguments are null or absent, returns the last argument.
54835480
*
@@ -10996,7 +10993,6 @@ declare namespace FirebaseFirestore {
1099610993
): Expression;
1099710994

1099810995
/**
10999-
* @beta
1100010996
* Creates an expression that returns the `elseExpr` argument if `ifExpr` is null, else
1100110997
* return the result of the `ifExpr` argument evaluation.
1100210998
*
@@ -11020,7 +11016,6 @@ declare namespace FirebaseFirestore {
1102011016
): FunctionExpression;
1102111017

1102211018
/**
11023-
* @beta
1102411019
* Creates an expression that returns the `elseValue` argument if `ifExpr` is null, else
1102511020
* return the result of the `ifExpr` argument evaluation.
1102611021
*
@@ -11044,7 +11039,6 @@ declare namespace FirebaseFirestore {
1104411039
): FunctionExpression;
1104511040

1104611041
/**
11047-
* @beta
1104811042
* Creates an expression that returns the `elseExpr` argument if `ifFieldName` is null, else
1104911043
* return the value of the field.
1105011044
*
@@ -11069,7 +11063,6 @@ declare namespace FirebaseFirestore {
1106911063
): FunctionExpression;
1107011064

1107111065
/**
11072-
* @beta
1107311066
* Creates an expression that returns the `elseValue` argument if `ifFieldName` is null, else
1107411067
* return the value of the field.
1107511068
*
@@ -11093,7 +11086,6 @@ declare namespace FirebaseFirestore {
1109311086
): FunctionExpression;
1109411087

1109511088
/**
11096-
* @beta
1109711089
* Creates an expression that returns the first non-null, non-absent argument, without evaluating
1109811090
* the rest of the arguments. When all arguments are null or absent, returns the last argument.
1109911091
*
@@ -11116,7 +11108,6 @@ declare namespace FirebaseFirestore {
1111611108
): FunctionExpression;
1111711109

1111811110
/**
11119-
* @beta
1112011111
* Creates an expression that returns the first non-null, non-absent argument, without evaluating
1112111112
* the rest of the arguments. When all arguments are null or absent, returns the last argument.
1112211113
*

0 commit comments

Comments
 (0)